diff --git a/rome.json b/rome.json index b51c9959a..f81048097 100644 --- a/rome.json +++ b/rome.json @@ -22,7 +22,8 @@ "./src/cubing/search/search-worker-inside-generated-string.js", "./src/cubing/vendor/gpl/cs0x7f/**/*", "./src/cubing/vendor/mpl/twsearch/*.js", - "./src/cubing/vendor/mpl/xyzzy/*.js" + "./src/cubing/vendor/mpl/xyzzy/*.js", + "./src/sites/experiments.cubing.net/cubing.js/rust/wasm/*.js" ] }, "formatter": { @@ -32,7 +33,8 @@ "./src/cubing/search/search-worker-inside-generated-string.js", "./src/cubing/vendor/gpl/cs0x7f/**/*", "./src/cubing/vendor/mpl/twsearch/*.js", - "./src/cubing/vendor/mpl/xyzzy/*.js" + "./src/cubing/vendor/mpl/xyzzy/*.js", + "./src/sites/experiments.cubing.net/cubing.js/rust/wasm/*.js" ] } } diff --git a/src/sites/experiments.cubing.net/cubing.js/index.html b/src/sites/experiments.cubing.net/cubing.js/index.html index b2126cf49..01e42c466 100644 --- a/src/sites/experiments.cubing.net/cubing.js/index.html +++ b/src/sites/experiments.cubing.net/cubing.js/index.html @@ -162,6 +162,7 @@

Dev Apps & Demos

🖼 svg-state-editor +
🦀 rust/wasm
📃 stub

diff --git a/src/sites/experiments.cubing.net/cubing.js/rust/wasm/.htaccess b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/.htaccess new file mode 100644 index 000000000..3c9fc49f2 --- /dev/null +++ b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/.htaccess @@ -0,0 +1,2 @@ +# Dreamhost 🤨 +AddType application/wasm .wasm diff --git a/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm.d.ts b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm.d.ts new file mode 100644 index 000000000..0731131d2 --- /dev/null +++ b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm.d.ts @@ -0,0 +1,47 @@ +/* tslint:disable */ +/* eslint-disable */ +/** +*/ +export function greet(): void; +/** +*/ +export function internal_init(): void; +/** +* @param {string} alg_str +* @returns {string} +*/ +export function invert_alg(alg_str: string): string; + +export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module; + +export interface InitOutput { + readonly memory: WebAssembly.Memory; + readonly invert_alg: (a: number, b: number, c: number) => void; + readonly greet: () => void; + readonly internal_init: () => void; + readonly __wbindgen_add_to_stack_pointer: (a: number) => number; + readonly __wbindgen_malloc: (a: number) => number; + readonly __wbindgen_realloc: (a: number, b: number, c: number) => number; + readonly __wbindgen_free: (a: number, b: number) => void; +} + +export type SyncInitInput = BufferSource | WebAssembly.Module; +/** +* Instantiates the given `module`, which can either be bytes or +* a precompiled `WebAssembly.Module`. +* +* @param {SyncInitInput} module +* +* @returns {InitOutput} +*/ +export function initSync(module: SyncInitInput): InitOutput; + +/** +* If `module_or_path` is {RequestInfo} or {URL}, makes a request and +* for everything else, calls `WebAssembly.instantiate` directly. +* +* @param {InitInput | Promise} module_or_path +* +* @returns {Promise} +*/ +export default function init (module_or_path?: InitInput | Promise): Promise; diff --git a/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm.js b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm.js new file mode 100644 index 000000000..57a17df72 --- /dev/null +++ b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm.js @@ -0,0 +1,273 @@ +// Mangled so that bundlers don't try to inline the source. +const node_fs_promises_mangled = "node:-fs/pr-omises"; +const node_fs_promises_unmangled = () => node_fs_promises_mangled.replace(/-/g, ""); + +let wasm; + +const cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }); + +cachedTextDecoder.decode(); + +let cachedUint8Memory0 = null; + +function getUint8Memory0() { + if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) { + cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer); + } + return cachedUint8Memory0; +} + +function getStringFromWasm0(ptr, len) { + return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len)); +} + +const heap = new Array(128).fill(undefined); + +heap.push(undefined, null, true, false); + +let heap_next = heap.length; + +function addHeapObject(obj) { + if (heap_next === heap.length) heap.push(heap.length + 1); + const idx = heap_next; + heap_next = heap[idx]; + + heap[idx] = obj; + return idx; +} + +function getObject(idx) { return heap[idx]; } + +function dropObject(idx) { + if (idx < 132) return; + heap[idx] = heap_next; + heap_next = idx; +} + +function takeObject(idx) { + const ret = getObject(idx); + dropObject(idx); + return ret; +} +/** +*/ +export function greet() { + wasm.greet(); +} + +/** +*/ +export function internal_init() { + wasm.internal_init(); +} + +let WASM_VECTOR_LEN = 0; + +const cachedTextEncoder = new TextEncoder('utf-8'); + +const encodeString = (typeof cachedTextEncoder.encodeInto === 'function' + ? function (arg, view) { + return cachedTextEncoder.encodeInto(arg, view); +} + : function (arg, view) { + const buf = cachedTextEncoder.encode(arg); + view.set(buf); + return { + read: arg.length, + written: buf.length + }; +}); + +function passStringToWasm0(arg, malloc, realloc) { + + if (realloc === undefined) { + const buf = cachedTextEncoder.encode(arg); + const ptr = malloc(buf.length); + getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf); + WASM_VECTOR_LEN = buf.length; + return ptr; + } + + let len = arg.length; + let ptr = malloc(len); + + const mem = getUint8Memory0(); + + let offset = 0; + + for (; offset < len; offset++) { + const code = arg.charCodeAt(offset); + if (code > 0x7F) break; + mem[ptr + offset] = code; + } + + if (offset !== len) { + if (offset !== 0) { + arg = arg.slice(offset); + } + ptr = realloc(ptr, len, len = offset + arg.length * 3); + const view = getUint8Memory0().subarray(ptr + offset, ptr + len); + const ret = encodeString(arg, view); + + offset += ret.written; + } + + WASM_VECTOR_LEN = offset; + return ptr; +} + +let cachedInt32Memory0 = null; + +function getInt32Memory0() { + if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) { + cachedInt32Memory0 = new Int32Array(wasm.memory.buffer); + } + return cachedInt32Memory0; +} +/** +* @param {string} alg_str +* @returns {string} +*/ +export function invert_alg(alg_str) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0(alg_str, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); + const len0 = WASM_VECTOR_LEN; + wasm.invert_alg(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr1 = r0; + var len1 = r1; + if (r3) { + ptr1 = 0; len1 = 0; + throw takeObject(r2); + } + return getStringFromWasm0(ptr1, len1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(ptr1, len1); + } +} + +async function load(module, imports) { + if (typeof Response === 'function' && module instanceof Response) { + if (typeof WebAssembly.instantiateStreaming === 'function') { + try { + return await WebAssembly.instantiateStreaming(module, imports); + + } catch (e) { + if (module.headers.get('Content-Type') != 'application/wasm') { + console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e); + + } else { + throw e; + } + } + } + + const bytes = await module.arrayBuffer(); + return await WebAssembly.instantiate(bytes, imports); + + } else { + const instance = await WebAssembly.instantiate(module, imports); + + if (instance instanceof WebAssembly.Instance) { + return { instance, module }; + + } else { + return instance; + } + } +} + +function getImports() { + const imports = {}; + imports.wbg = {}; + imports.wbg.__wbg_alert_8755b7883b6ce0ef = function(arg0, arg1) { + alert(getStringFromWasm0(arg0, arg1)); + }; + imports.wbg.__wbindgen_string_new = function(arg0, arg1) { + const ret = getStringFromWasm0(arg0, arg1); + return addHeapObject(ret); + }; + imports.wbg.__wbg_new_abda76e883ba8a5f = function() { + const ret = new Error(); + return addHeapObject(ret); + }; + imports.wbg.__wbg_stack_658279fe44541cf6 = function(arg0, arg1) { + const ret = getObject(arg1).stack; + const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); + const len0 = WASM_VECTOR_LEN; + getInt32Memory0()[arg0 / 4 + 1] = len0; + getInt32Memory0()[arg0 / 4 + 0] = ptr0; + }; + imports.wbg.__wbg_error_f851667af71bcfc6 = function(arg0, arg1) { + try { + console.error(getStringFromWasm0(arg0, arg1)); + } finally { + wasm.__wbindgen_free(arg0, arg1); + } + }; + imports.wbg.__wbindgen_object_drop_ref = function(arg0) { + takeObject(arg0); + }; + + return imports; +} + +function initMemory(imports, maybe_memory) { + +} + +function finalizeInit(instance, module) { + wasm = instance.exports; + init.__wbindgen_wasm_module = module; + cachedInt32Memory0 = null; + cachedUint8Memory0 = null; + + + return wasm; +} + +function initSync(module) { + const imports = getImports(); + + initMemory(imports); + + if (!(module instanceof WebAssembly.Module)) { + module = new WebAssembly.Module(module); + } + + const instance = new WebAssembly.Instance(module, imports); + + return finalizeInit(instance, module); +} + +async function init(input) { + if (typeof input === 'undefined') { + input = new URL('hello_wasm_bg.wasm', import.meta.url); + } + const imports = getImports(); + + if (typeof input === 'string' || (typeof Request === 'function' && input instanceof Request) || (typeof URL === 'function' && input instanceof URL)) { + try { + input = await fetch(input); + } catch (e) { + if (!(e instanceof TypeError)) { + throw e; + } + input = await (await import(node_fs_promises_unmangled())).readFile(input); + } + } + + initMemory(imports); + + const { instance, module } = await load(await input, imports); + + return finalizeInit(instance, module); +} + +export { initSync } +export default init; diff --git a/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm_bg.js b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm_bg.js new file mode 100644 index 000000000..f0a644917 --- /dev/null +++ b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm_bg.js @@ -0,0 +1,191 @@ +let wasm; +export function __wbg_set_wasm(val) { + wasm = val; +} + + +const lTextDecoder = typeof TextDecoder === 'undefined' ? (0, module.require)('util').TextDecoder : TextDecoder; + +let cachedTextDecoder = new lTextDecoder('utf-8', { ignoreBOM: true, fatal: true }); + +cachedTextDecoder.decode(); + +let cachedUint8Memory0 = null; + +function getUint8Memory0() { + if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) { + cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer); + } + return cachedUint8Memory0; +} + +function getStringFromWasm0(ptr, len) { + return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len)); +} + +const heap = new Array(128).fill(undefined); + +heap.push(undefined, null, true, false); + +let heap_next = heap.length; + +function addHeapObject(obj) { + if (heap_next === heap.length) heap.push(heap.length + 1); + const idx = heap_next; + heap_next = heap[idx]; + + heap[idx] = obj; + return idx; +} + +function getObject(idx) { return heap[idx]; } + +function dropObject(idx) { + if (idx < 132) return; + heap[idx] = heap_next; + heap_next = idx; +} + +function takeObject(idx) { + const ret = getObject(idx); + dropObject(idx); + return ret; +} +/** +*/ +export function greet() { + wasm.greet(); +} + +/** +*/ +export function internal_init() { + wasm.internal_init(); +} + +let WASM_VECTOR_LEN = 0; + +const lTextEncoder = typeof TextEncoder === 'undefined' ? (0, module.require)('util').TextEncoder : TextEncoder; + +let cachedTextEncoder = new lTextEncoder('utf-8'); + +const encodeString = (typeof cachedTextEncoder.encodeInto === 'function' + ? function (arg, view) { + return cachedTextEncoder.encodeInto(arg, view); +} + : function (arg, view) { + const buf = cachedTextEncoder.encode(arg); + view.set(buf); + return { + read: arg.length, + written: buf.length + }; +}); + +function passStringToWasm0(arg, malloc, realloc) { + + if (realloc === undefined) { + const buf = cachedTextEncoder.encode(arg); + const ptr = malloc(buf.length); + getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf); + WASM_VECTOR_LEN = buf.length; + return ptr; + } + + let len = arg.length; + let ptr = malloc(len); + + const mem = getUint8Memory0(); + + let offset = 0; + + for (; offset < len; offset++) { + const code = arg.charCodeAt(offset); + if (code > 0x7F) break; + mem[ptr + offset] = code; + } + + if (offset !== len) { + if (offset !== 0) { + arg = arg.slice(offset); + } + ptr = realloc(ptr, len, len = offset + arg.length * 3); + const view = getUint8Memory0().subarray(ptr + offset, ptr + len); + const ret = encodeString(arg, view); + + offset += ret.written; + } + + WASM_VECTOR_LEN = offset; + return ptr; +} + +let cachedInt32Memory0 = null; + +function getInt32Memory0() { + if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) { + cachedInt32Memory0 = new Int32Array(wasm.memory.buffer); + } + return cachedInt32Memory0; +} +/** +* @param {string} alg_str +* @returns {string} +*/ +export function invert_alg(alg_str) { + try { + const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); + const ptr0 = passStringToWasm0(alg_str, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); + const len0 = WASM_VECTOR_LEN; + wasm.invert_alg(retptr, ptr0, len0); + var r0 = getInt32Memory0()[retptr / 4 + 0]; + var r1 = getInt32Memory0()[retptr / 4 + 1]; + var r2 = getInt32Memory0()[retptr / 4 + 2]; + var r3 = getInt32Memory0()[retptr / 4 + 3]; + var ptr1 = r0; + var len1 = r1; + if (r3) { + ptr1 = 0; len1 = 0; + throw takeObject(r2); + } + return getStringFromWasm0(ptr1, len1); + } finally { + wasm.__wbindgen_add_to_stack_pointer(16); + wasm.__wbindgen_free(ptr1, len1); + } +} + +export function __wbg_alert_8755b7883b6ce0ef(arg0, arg1) { + alert(getStringFromWasm0(arg0, arg1)); +}; + +export function __wbindgen_string_new(arg0, arg1) { + const ret = getStringFromWasm0(arg0, arg1); + return addHeapObject(ret); +}; + +export function __wbg_new_abda76e883ba8a5f() { + const ret = new Error(); + return addHeapObject(ret); +}; + +export function __wbg_stack_658279fe44541cf6(arg0, arg1) { + const ret = getObject(arg1).stack; + const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); + const len0 = WASM_VECTOR_LEN; + getInt32Memory0()[arg0 / 4 + 1] = len0; + getInt32Memory0()[arg0 / 4 + 0] = ptr0; +}; + +export function __wbg_error_f851667af71bcfc6(arg0, arg1) { + try { + console.error(getStringFromWasm0(arg0, arg1)); + } finally { + wasm.__wbindgen_free(arg0, arg1); + } +}; + +export function __wbindgen_object_drop_ref(arg0) { + takeObject(arg0); +}; + diff --git a/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm_bg.wasm b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm_bg.wasm new file mode 100644 index 000000000..872d6e0db Binary files /dev/null and b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm_bg.wasm differ diff --git a/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm_bg.wasm.d.ts b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm_bg.wasm.d.ts new file mode 100644 index 000000000..72e5c088e --- /dev/null +++ b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/hello_wasm_bg.wasm.d.ts @@ -0,0 +1,10 @@ +/* tslint:disable */ +/* eslint-disable */ +export const memory: WebAssembly.Memory; +export function invert_alg(a: number, b: number, c: number): void; +export function greet(): void; +export function internal_init(): void; +export function __wbindgen_add_to_stack_pointer(a: number): number; +export function __wbindgen_malloc(a: number): number; +export function __wbindgen_realloc(a: number, b: number, c: number): number; +export function __wbindgen_free(a: number, b: number): void; diff --git a/src/sites/experiments.cubing.net/cubing.js/rust/wasm/index.css b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/index.css new file mode 100644 index 000000000..54b7ab691 --- /dev/null +++ b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/index.css @@ -0,0 +1,37 @@ +/* From: https://github.com/lgarron/minimal-html-style (v1.0.0) */ +html { + font-family: -apple-system, Roboto, Ubuntu, Tahoma, sans-serif; + font-size: 1.25rem; + padding: 2em; + display: grid; + justify-content: center; +} + +body { + width: 100%; + max-width: 40em; + margin: 0; +} + +@media (prefers-color-scheme: dark) { + html { + background: #000D; + color: #EEE; + } + + a { + color: #669df5; + } + + a:visited { + color: #af73d5; + } +} + +.output { + white-space: pre-wrap; +} + +.output.error { + background: rgba(255, 0, 0, 0.2); +} diff --git a/src/sites/experiments.cubing.net/cubing.js/rust/wasm/index.html b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/index.html new file mode 100644 index 000000000..ecfd4ea94 --- /dev/null +++ b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/index.html @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + +
+ + + +
+ Rust +
+
+ +
+ JS +
+
+ + + diff --git a/src/sites/experiments.cubing.net/cubing.js/rust/wasm/index.ts b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/index.ts new file mode 100644 index 000000000..ca6aa6655 --- /dev/null +++ b/src/sites/experiments.cubing.net/cubing.js/rust/wasm/index.ts @@ -0,0 +1,67 @@ +console.log("loading…"); + +import { Alg } from "cubing/alg"; +import { default as init, internal_init, invert_alg } from "./hello_wasm.js"; +import { solutionAlg } from "../../stress-tests/40x40x40-solve.js"; + +(async () => { + console.log("Initializating WASM"); + + // Note: the initialization relies on proper handling of `new URL(…, import.meta.url)`, which `esbuild` does not properly support yet: https://github.com/evanw/esbuild/issues/795 + // However, we're lucky in that `esbuild` (currently) inlines the relevant code in the entry file for this folder, which allows the WASM import to work. + // This could easily break at some point, if `esbuild` does not support `new URL(…, import.meta.url)` first. + // If that happens, we can use an `esbuild`-specific workaround, at the expense of compatibility with other bundlers: https://github.com/evanw/esbuild/issues/312#issuecomment-1025066671 + await init(); + internal_init(); + + console.log("Initialized!"); + console.log("Inverted alg test:", invert_alg("R U R'")); + + if (!globalThis.document) { + console.info("Not running in a browser. Exiting!"); + process.exit(1); + } + + const input = document.querySelector(".input") as HTMLInputElement; + function register(elem: Element, f: (s: string) => string) { + const output = elem.querySelector(".output")!; + const durationElem = elem.querySelector(".duration")!; + durationElem.textContent = ""; + input.addEventListener("input", () => { + try { + const start = performance.now(); + output.textContent = f(input.value); + const duration = performance.now() - start; + durationElem.textContent = ` (≈${Math.round(duration * 1_000)}µs)`; + output.classList.remove("error"); + } catch (e) { + output.textContent = e; + output.classList.add("error"); + } + }); + } + + register(document.querySelector("#rust")!, invert_alg); + register(document.querySelector("#js")!, (s) => { + return new Alg(s).invert().toString(); + }); + + document.getElementById("use-wr")!.addEventListener("click", () => { + input.value = `y x' // inspection +U R2 U' F' L F' U' L' // XX-Cross + EO +U' R U R' // 3rd slot +R' U R U2' R' U R // 4th slot +U R' U' R U' R' U2 R // OLL / ZBLL +U // AUF + +// from http://cubesolv.es/solve/5757`; + input.dispatchEvent(new CustomEvent("input")); + }); + document + .getElementById("use-40x40x40x40-solution")! + .addEventListener("click", async () => { + const alg = solutionAlg; + input.value = alg.toString(); + input.dispatchEvent(new CustomEvent("input")); + }); +})(); diff --git a/src/sites/experiments.cubing.net/cubing.js/stress-tests/40x40x40-solve.ts b/src/sites/experiments.cubing.net/cubing.js/stress-tests/40x40x40-solve.ts new file mode 100644 index 000000000..30a0b7571 --- /dev/null +++ b/src/sites/experiments.cubing.net/cubing.js/stress-tests/40x40x40-solve.ts @@ -0,0 +1,44 @@ +import { Move, QuantumMove } from "../../../../cubing/alg"; +import { AlgBuilder } from "../../../../cubing/alg/AlgBuilder"; + +const icsMoves = + "3,2,1,-1,2927,2,2,37,37,4785,2,0,1,1,5328,2,2,20,20,6166,1,2,1,-1,6666,3,2,28,28,7230,2,2,1,-1,7538,3,2,1,-1,10054,3,2,35,35,11989,1,2,1,-1,14032,2,0,1,1,14527,1,2,1,-1,14805,2,2,12,12,15405,2,2,13,13,15607,2,2,17,17,16222,2,2,7,7,16697,2,2,6,6,16871,2,2,36,36,17899,3,2,1,-1,18258,3,2,1,-1,19518,3,2,1,-1,19936,1,1,1,1,21154,3,2,1,-1,22566,2,2,33,33,23481,2,2,8,8,24734,2,0,1,1,25262,1,2,1,-1,25548,3,2,9,9,26497,2,1,1,1,27861,3,2,1,-1,28137,2,2,30,30,28612,1,2,1,-1,29218,1,2,-1,-1,29869,3,1,1,1,30066,3,2,22,22,32756,2,1,1,1,33036,2,1,1,1,33849,3,2,5,5,34216,2,1,1,1,34422,3,2,1,-1,34735,2,2,4,4,35750,2,2,11,11,36221,2,2,23,23,37033,2,2,29,29,37708,2,2,39,39,38216,1,2,1,-1,38520,1,2,-1,-1,39059,3,1,1,1,39272,3,2,35,35,39949,3,2,18,18,41205,3,2,16,16,41532,1,2,-1,-1,42774,3,1,1,1,43000,3,2,34,34,43710,3,2,27,27,44297,3,2,19,19,45135,3,2,3,3,46188,1,2,1,1,47612,1,1,1,1,47803,3,2,32,32,50029,3,2,38,38,50541,1,2,1,1,51832,1,1,1,1,52175,2,1,1,1,54412,3,2,1,-1,54711,2,2,15,15,55458,2,2,21,21,55930,2,2,26,26,56756,2,0,1,1,57301,1,2,1,-1,57610,3,2,10,10,58645,1,2,1,1,59411,1,1,1,1,59598,3,2,14,14,60527,3,2,25,25,61569,1,2,1,-1,62323,3,0,1,1,63657,3,2,31,31,65343,3,2,28,28,65745,3,2,20,20,66262,3,2,13,13,67102,3,2,1,-1,67586,2,2,12,12,69680,2,2,7,7,70230,2,0,1,1,70669,2,2,3,3,71693,1,2,1,-1,73445,3,2,34,34,74395,3,2,29,29,74796,3,2,5,5,76429,1,2,1,-1,76663,1,2,1,-1,79138,1,2,27,27,80134,2,0,1,1,81080,1,2,1,-1,81351,2,2,15,15,82330,2,1,1,1,82537,1,2,1,-1,83458,1,1,1,1,84138,3,2,14,14,85011,3,2,1,-1,85759,2,2,24,24,87017,2,0,1,1,88103,2,2,18,18,89498,1,2,1,-1,89897,3,2,-1,-1,92213,3,2,6,6,93066,3,1,1,1,93237,2,1,1,1,95333,2,1,1,1,95671,3,2,35,35,96015,2,1,1,1,96185,3,2,1,-1,96551,2,2,33,33,97821,2,2,21,21,98756,2,2,8,8,99778,2,2,4,4,100232,1,2,1,-1,100700,3,2,-1,-1,101779,3,1,1,1,102042,3,2,32,32,103256,2,1,1,1,104947,3,2,1,-1,105397,2,2,17,17,106398,2,2,19,19,106735,2,2,2,2,107662,2,2,36,36,108715,1,2,1,-1,109196,1,2,1,1,109860,1,1,1,1,110006,3,2,16,16,110775,3,2,38,38,112067,2,1,1,1,112337,3,2,1,-1,112646,2,2,30,30,113514,1,2,1,-1,114646,1,2,1,1,115455,1,1,1,1,115626,3,2,25,25,116780,3,2,26,26,117018,2,1,1,1,118104,3,2,1,-1,118520,2,2,37,37,119365,2,2,23,23,120210,2,2,10,10,120875,1,2,1,-1,121177,1,2,1,1,121748,1,1,1,1,121885,3,2,9,9,122877,3,2,22,22,123878,2,1,1,1,124929,3,2,1,-1,125214,2,2,39,39,126060,2,2,11,11,127308,1,2,1,-1,127690,1,2,1,-1,128145,3,0,1,1,129435,3,2,3,3,131134,3,2,1,-1,131414,2,0,1,1,132952,2,2,12,12,134500,2,2,7,7,134870,1,2,1,-1,135151,3,2,16,16,136513,3,2,30,30,137605,2,1,1,1,137924,3,2,1,-1,138199,2,2,34,34,138880,3,2,1,-1,139184,1,2,17,17,140826,3,2,1,-1,141167,3,2,8,8,142033,1,2,1,-1,143507,2,0,1,1,144072,1,2,1,-1,144348,2,2,37,37,145055,2,2,33,33,145838,1,2,1,-1,147574,3,2,1,-1,148210,2,2,15,15,148585,1,2,1,-1,148924,1,1,1,1,149333,3,2,20,20,150194,3,2,21,21,150426,3,2,23,23,150862,3,2,24,24,151103,3,2,29,29,151795,3,2,1,-1,152868,2,2,5,5,154402,2,0,1,1,155279,2,2,35,35,155866,2,2,38,38,156367,2,2,28,28,157008,1,2,1,-1,157736,3,2,31,31,159433,3,2,-1,-1,160416,3,1,1,1,160708,3,2,25,25,162191,2,1,1,1,163121,3,2,1,-1,163493,2,2,22,22,164033,1,2,1,-1,164279,1,2,1,1,165230,1,1,1,1,165400,2,1,1,1,167060,3,2,1,-1,167358,2,2,8,8,168168,1,2,1,-1,168540,1,2,1,1,169118,1,1,1,1,169294,3,2,4,4,169797,3,2,11,11,170394,3,2,36,36,171781,2,1,1,1,172009,3,2,1,-1,172348,2,2,27,27,173099,2,2,19,19,173712,1,2,1,-1,174059,1,2,1,1,174703,1,1,1,1,174867,3,2,10,10,175614,3,2,26,26,176424,2,1,1,1,176919,3,2,1,-1,177201,2,2,18,18,177887,2,2,13,13,178303,2,2,1,-1,178528,1,1,1,1,179778,3,2,1,-1,180098,3,2,19,19,181657,3,2,10,10,182092,3,2,7,7,182418,3,2,1,-1,182678,2,0,1,1,184156,2,2,20,20,185746,2,2,6,6,186338,1,2,1,-1,186614,3,2,5,5,187359,3,2,4,4,187595,3,2,30,30,188435,1,2,1,-1,189045,3,2,28,28,190133,1,2,1,-1,191496,1,2,35,35,192616,2,0,1,1,193761,1,2,1,-1,194046,2,2,13,13,194757,2,2,17,17,195190,2,2,18,18,195367,2,2,31,31,196252,2,2,33,33,196554,2,2,39,39,197033,2,1,1,1,197251,1,2,1,-1,197733,1,1,1,1,198212,3,2,21,21,198983,3,2,1,-1,199841,2,2,32,32,200676,2,2,29,29,201051,2,2,10,10,201746,2,2,10,10,202583,2,2,11,11,202792,2,0,1,1,203103,2,2,3,3,203939,2,2,27,27,204799,1,2,1,-1,205165,3,2,36,36,205778,1,2,1,1,207146,1,1,1,1,207319,3,2,8,8,208136,3,2,9,9,208390,3,2,2,2,208844,3,2,26,26,209663,3,2,24,24,209985,2,1,1,1,210475,3,2,1,-1,210744,2,2,37,37,211545,1,2,1,-1,211936,1,2,1,1,212568,1,1,1,1,212765,3,2,15,15,213593,2,1,1,1,214192,2,1,1,1,214669,3,2,34,34,214972,2,1,1,1,215182,3,2,1,-1,215422,2,2,38,38,216057,2,2,22,22,216540,2,2,16,16,217045,1,2,1,-1,217521,1,2,1,1,218097,1,1,1,1,218298,3,2,25,25,219282,3,2,28,28,219731,3,2,23,23,220173,2,1,1,1,220876,3,2,1,-1,221126,2,2,12,12,221792,2,2,1,-1,221997,3,2,-1,-1,222920,3,1,1,1,223113,3,2,1,1,223963,3,2,4,4,224475,3,2,18,18,225401,3,2,21,21,225973,3,2,28,28,226477,3,2,1,-1,227294,3,2,39,39,227797,2,2,32,32,229749,2,2,12,12,231212,2,0,1,1,231977,2,2,10,10,232973,2,2,16,16,233891,2,2,25,25,234525,1,2,1,-1,235549,3,2,34,34,236264,3,2,36,36,236779,1,2,1,-1,239072,3,2,30,30,241718,1,2,1,-1,242037,2,0,1,1,245263,1,2,1,-1,245555,2,2,2,2,246426,2,2,11,11,247592,2,2,35,35,248937,2,1,1,1,249210,2,2,1,-1,249552,3,2,1,-1,249990,1,1,1,1,250462,3,2,26,26,251321,3,2,15,15,252849,3,2,1,-1,253478,2,2,30,30,255890,2,2,23,23,256409,2,2,38,38,257208,2,0,1,1,257457,1,2,1,-1,259707,3,2,33,33,260744,3,2,22,22,261978,3,2,5,5,262881,3,2,1,1,263325,1,1,1,1,263500,3,2,3,3,264557,3,2,14,14,265028,3,2,13,13,265230,3,2,17,17,265672,3,2,24,24,266521,2,1,1,1,267899,3,2,1,-1,268191,2,2,9,9,270368,2,2,6,6,270653,1,2,1,-1,270995,3,2,1,1,271405,1,1,1,1,271588,3,2,19,19,273268,3,2,27,27,274146,3,2,29,29,274572,3,2,37,37,275425,2,1,1,1,275641,3,2,1,-1,275948,2,2,31,31,276914,2,2,20,20,277783,2,2,1,-1,278679,3,2,1,-1,279699,3,2,1,-1,280435,3,2,1,-1,281358,3,2,1,-1,283092,3,2,1,-1,283387,3,1,1,-1,283945,1,1,1,-1,285288,1,1,1,-1,285536,3,1,1,-1,287878,1,2,1,1,288458,1,1,1,1,288669,3,2,1,-1,290671,2,2,1,-1,292697,3,2,1,-1,293525,3,2,1,-1,294360,3,2,1,-1,295329,3,2,1,-1,297419,3,2,1,-1,298037,3,1,1,-1,298380,1,1,1,-1,300698,1,1,1,-1,300990,3,0,1,-1,303427,1,0,1,-1,305293,1,0,1,-1,305621,3,0,1,-1,306719,3,1,1,-1,307051,1,2,1,1,307806,1,1,1,1,307930,1,2,1,-1,308181,3,2,8,8,309053,3,2,1,1,309564,3,1,1,-1,309833,1,0,1,1,310310,3,1,1,1,310460,1,1,1,-1,310688,3,2,1,1,311163,3,2,6,6,312091,3,2,1,-1,313941,2,2,26,26,315403,2,2,12,12,316667,2,2,7,7,317082,2,0,1,1,317338,2,2,11,11,318542,1,2,1,-1,320590,3,2,17,17,321343,3,2,25,25,321875,3,2,13,13,323348,3,2,33,33,323956,3,2,39,39,324668,1,2,1,-1,325053,3,2,9,9,327975,1,2,1,-1,328475,1,2,27,27,329490,1,2,31,31,330400,1,2,15,15,331300,1,2,8,8,331830,2,0,1,1,332851,1,2,1,-1,333163,2,2,3,3,334572,2,2,18,18,335099,2,2,32,32,336003,2,2,34,34,336478,2,1,1,1,336692,2,2,1,-1,337237,3,2,1,-1,337641,1,1,1,1,338291,3,2,29,29,339136,3,2,1,-1,340758,2,2,19,19,341434,2,2,10,10,342346,2,2,30,30,343347,2,2,38,38,343850,2,0,1,1,344151,2,2,14,14,346356,1,2,1,-1,347112,3,2,4,4,348067,3,2,9,9,348565,3,2,21,21,349625,3,2,35,35,350849,2,1,1,1,351091,3,2,1,-1,351358,2,2,24,24,352249,1,2,1,-1,352647,3,2,1,1,353334,1,1,1,1,353599,3,2,23,23,354586,3,2,5,5,356349,3,2,2,2,357034,3,2,37,37,358338,2,1,1,1,359032,3,2,1,-1,359316,2,2,28,28,361110,1,2,1,-1,362440,1,2,1,-1,362603,3,2,-1,-1,363784,3,1,1,1,363987,3,2,1,1,364730,3,2,4,4,365104,3,2,8,8,365510,3,2,20,20,366251,3,2,19,19,366424,3,2,29,29,367459,3,2,1,-1,367717,2,2,39,39,369273,2,2,21,21,370098,2,2,12,12,370746,2,0,1,1,371213,2,2,14,14,372173,2,2,22,22,373398,2,2,37,37,374204,1,2,1,-1,374507,3,2,3,3,376808,1,2,1,-1,377045,3,2,10,10,377757,1,2,1,-1,379356,1,2,32,32,380140,1,2,33,33,380372,1,2,30,30,380884,1,2,28,28,381319,1,2,25,25,381729,1,2,13,13,382688,1,2,17,17,383135,1,2,6,6,383904,1,2,5,5,384142,2,0,1,1,384489,1,2,1,-1,384797,2,2,10,10,385498,2,2,31,31,386893,2,2,34,34,387269,2,1,1,1,387438,1,2,1,-1,387816,1,1,1,1,388357,3,2,24,24,389097,3,2,23,23,389303,3,2,18,18,389883,3,2,16,16,390279,3,2,1,-1,391340,2,2,38,38,392141,2,2,26,26,392919,2,2,15,15,393500,2,0,1,1,394208,1,2,1,-1,396147,3,2,36,36,396757,3,2,35,35,396961,3,2,27,27,397775,3,2,11,11,399108,3,2,1,-1,399508,1,2,1,-1,400067,1,2,1,-1,400293,3,2,-1,-1,401373,3,2,1,1,402120,1,1,1,1,402310,3,2,1,-1,402773,3,2,16,16,403682,3,2,17,17,403889,3,2,18,18,404123,3,2,25,25,404712,3,2,26,26,404936,3,2,29,29,405446,3,2,1,-1,405719,2,2,33,33,406515,2,2,39,39,407041,2,2,24,24,407983,2,2,22,22,408300,2,2,8,8,409276,2,2,4,4,409784,2,0,1,1,410063,1,2,1,-1,410866,3,2,32,32,411949,3,2,19,19,412977,3,2,14,14,413390,3,2,1,-1,413990,3,2,1,-1,414158,1,2,38,38,415971,1,2,35,35,416551,1,2,21,21,417264,1,2,9,9,417935,1,2,2,2,418468,3,2,1,-1,418708,3,2,7,7,419352,3,2,11,11,419770,3,2,30,30,420745,1,2,1,-1,421014,2,0,1,1,421459,1,2,1,-1,421829,2,2,34,34,422455,2,2,30,30,423057,2,2,23,23,423497,2,2,13,13,424212,2,2,11,11,424452,2,2,5,5,425017,1,2,1,-1,425359,1,2,1,-1,426374,3,2,1,-1,426918,3,1,1,1,427493,1,2,1,1,427699,1,1,1,1,427837,3,2,3,3,428242,3,2,7,7,429102,3,2,10,10,429479,3,2,12,12,429800,3,2,15,15,430193,3,2,27,27,430894,1,2,1,-1,431231,3,2,1,-1,432296,3,2,1,-1,432828,3,2,1,-1,433453,3,2,1,-1,434194,3,2,1,-1,434811,3,1,1,1,435349,3,2,1,1,435505,1,1,1,1,435679,2,1,1,1,436799,1,2,1,-1,437015,2,2,6,6,437748,1,0,1,1,438360,3,2,1,1,438507,3,0,1,1,438740,3,2,1,-1,440180,3,2,36,36,441925,3,2,6,6,443963,3,2,1,-1,444234,2,2,7,7,445294,2,2,34,34,447749,2,2,39,39,448260,2,0,1,1,448571,2,2,39,39,449457,2,2,29,29,450443,2,2,27,27,450708,2,2,25,25,451225,2,2,24,24,451423,2,2,39,39,452164,2,2,16,16,453500,2,2,14,14,453963,2,2,13,13,454112,2,2,12,12,454336,2,2,8,8,455438,1,2,1,-1,455841,3,2,31,31,456961,3,2,35,35,457332,3,2,10,10,458203,3,2,9,9,458376,3,2,5,5,459425,2,1,1,1,459634,3,2,1,-1,459931,3,2,2,2,460620,2,2,4,4,460992,3,2,1,-1,461612,1,2,32,32,463162,1,2,28,28,463639,1,2,23,23,464069,1,2,21,21,464455,1,2,15,15,465504,2,0,1,1,465810,1,2,1,-1,466076,2,2,19,19,467066,2,2,26,26,467827,2,2,1,-1,468179,3,2,1,-1,468960,3,2,1,-1,469778,3,2,1,-1,470470,1,2,37,37,471382,2,2,1,-1,471644,1,2,1,-1,472736,3,2,1,-1,473011,3,2,1,-1,473216,2,1,1,1,474026,1,2,32,32,474263,2,1,1,1,474473,3,2,32,32,474646,2,1,1,1,474976,2,1,1,1,475278,1,2,31,31,475517,2,1,1,1,475720,3,2,31,31,475888,2,1,1,1,476273,1,2,27,27,476495,1,2,26,26,476679,2,1,1,1,476884,3,2,27,27,477109,3,2,26,26,477276,2,1,1,1,477762,1,2,22,22,477960,2,1,1,1,478193,3,2,22,22,478373,1,2,20,20,478806,1,2,18,18,479021,2,1,1,1,479218,3,2,18,18,479378,3,2,20,20,479716,2,1,1,1,480157,1,2,21,21,480381,2,1,1,1,480610,3,2,21,21,480803,2,1,1,1,481550,2,1,1,1,482070,2,1,1,1,482653,1,2,3,3,482844,2,1,1,1,483051,3,2,3,3,483282,2,1,1,1,483550,2,1,1,1,484004,1,2,2,2,484237,2,1,1,1,484454,3,2,2,2,484650,2,1,1,1,485151,2,1,1,1,485361,2,1,1,1,485868,1,2,12,12,486077,1,2,14,14,486352,2,1,1,1,486547,3,2,14,14,486723,3,2,13,13,486925,1,2,13,13,487492,3,2,12,12,487675,1,2,1,-1,487940,3,2,1,1,488415,3,1,1,1,488648,1,1,1,1,489092,1,0,1,1,489744,3,1,1,1,489976,1,2,1,1,490143,1,1,1,1,490384,3,2,1,-1,490651,2,1,1,1,491168,2,1,1,1,491611,1,2,5,5,491849,1,2,8,8,492216,2,1,1,1,492416,3,2,8,8,492596,3,2,5,5,493164,2,1,1,1,493886,2,1,1,1,494346,1,2,22,22,494630,3,2,22,22,494930,2,1,1,1,495148,1,2,22,22,495322,2,1,1,1,495540,3,2,22,22,495734,2,1,1,1,495996,1,2,25,25,496249,1,2,24,24,496417,2,1,1,1,496621,3,2,25,25,496900,3,2,24,24,497076,2,1,1,1,497485,2,1,1,1,497725,1,2,18,18,498083,2,1,1,1,498268,3,2,18,18,498473,2,1,1,1,498801,1,2,13,13,499069,2,1,1,1,499278,3,2,13,13,499485,2,1,1,1,500097,1,2,25,25,500495,2,1,1,1,500799,3,2,25,25,501005,1,2,1,-1,501428,3,2,1,-1,501651,2,1,1,1,502264,2,1,1,1,502774,1,2,31,31,503194,1,2,30,30,503387,2,1,1,1,503592,3,2,31,31,503822,3,2,30,30,503976,2,1,1,1,504397,1,2,25,25,504677,2,1,1,1,504884,3,2,25,25,505090,2,1,1,1,505615,2,1,1,1,505980,1,2,37,37,506422,2,1,1,1,506643,3,2,37,37,506857,1,2,1,-1,507192,1,0,1,1,508457,3,1,1,1,508683,1,2,1,1,508859,1,1,1,1,509030,3,2,1,-1,509367,2,1,1,1,509886,2,1,1,1,510286,1,2,8,8,510612,2,1,1,1,510813,3,2,8,8,511042,2,1,1,1,511665,2,1,1,1,512181,1,2,29,29,512453,2,1,1,1,512663,3,2,29,29,512880,2,1,1,1,513167,1,2,25,25,513434,2,1,1,1,513611,3,2,25,25,513807,1,2,1,-1,514086,3,2,1,-1,514592,3,2,1,-1,515237,3,2,16,16,516317,3,2,13,13,516822,3,2,12,12,516993,3,2,10,10,517416,3,2,8,8,517840,3,2,7,7,518211,3,2,5,5,518620,3,2,4,4,518830,3,2,3,3,519145,1,2,1,-1,519386,3,1,1,1,519842,1,0,1,1,520017,3,2,1,1,520282,1,1,1,1,520467,3,0,1,1,520658,3,2,1,-1,520912,1,2,5,5,521486,1,2,4,4,521676,1,2,3,3,521947,1,2,7,7,522410,1,2,8,8,522627,1,2,10,10,523067,1,2,12,12,523372,1,2,13,13,523560,1,2,16,16,523963,1,2,1,-1,524326,1,0,1,1,524950,3,1,1,1,525183,1,2,1,1,525346,1,1,1,1,525496,3,2,1,-1,525795,3,2,5,5,526414,3,2,7,7,526711,3,2,10,10,527092,3,2,13,13,527700,1,2,13,13,528151,3,2,12,12,528333,3,2,22,22,529225,3,2,23,23,529427,3,2,24,24,529778,3,2,25,25,530011,3,2,26,26,530425,3,2,28,28,530824,3,2,33,33,531328,3,2,37,37,531909,3,2,38,38,532098,3,2,39,39,532342,1,2,1,-1,532783,3,1,1,1,533322,1,0,1,1,533486,3,2,1,1,533670,1,1,1,1,533872,3,0,1,1,534077,3,2,1,-1,534309,1,2,5,5,534846,1,2,7,7,535125,1,2,10,10,535764,1,2,12,12,535982,1,2,22,22,536746,1,2,23,23,536949,1,2,24,24,537154,1,2,25,25,537370,1,2,26,26,537597,1,2,28,28,538016,1,2,33,33,538527,1,2,37,37,538951,1,2,38,38,539137,1,2,39,39,539357,1,2,1,-1,539705,1,0,1,1,540377,3,1,1,1,540580,1,2,1,1,540749,1,1,1,1,540898,3,2,1,-1,541205,3,2,22,22,542452,3,2,23,23,542685,3,2,25,25,543038,3,2,26,26,543326,3,2,28,28,543687,3,2,33,33,544498,3,2,37,37,545010,3,2,38,38,545233,3,2,39,39,545454,1,2,1,-1,545951,3,1,1,1,546942,1,0,1,1,547131,3,2,1,1,547313,1,1,1,1,547517,3,0,1,1,547695,3,2,1,-1,547927,1,2,22,22,548845,1,2,23,23,549037,1,2,25,25,549377,1,2,26,26,549584,1,2,28,28,550030,1,2,33,33,550659,1,2,37,37,551180,1,2,38,38,551341,1,2,39,39,551550,3,2,39,39,552317,3,2,36,36,552660,3,2,34,34,553011,3,2,30,30,553474,3,2,28,28,553709,3,2,26,26,554189,3,2,25,25,554387,3,2,24,24,554605,3,2,22,22,554999,3,2,19,19,555411,3,2,17,17,555926,3,2,16,16,556120,3,2,15,15,556300,3,2,13,13,556732,3,2,11,11,557042,3,2,7,7,557443,3,2,5,5,557748,3,2,2,2,558129,1,2,1,-1,558395,3,1,1,1,558764,1,0,1,1,558908,3,2,1,1,559092,1,1,1,1,559282,3,0,1,1,559465,1,2,2,2,559865,1,2,5,5,560309,1,2,7,7,560716,1,2,11,11,561215,1,2,13,13,561603,1,2,15,15,561906,1,2,16,16,562114,1,2,17,17,562313,1,2,19,19,562982,1,2,22,22,563360,1,2,24,24,563742,1,2,25,25,563937,1,2,26,26,564163,1,2,28,28,564546,1,2,30,30,565113,1,2,34,34,565561,1,2,36,36,565914,1,1,2,2,566329,2,2,18,18,567206,2,2,15,15,567627,2,2,13,13,567913,1,2,39,39,569153,2,2,10,10,570039,2,2,9,9,570262,2,2,3,3,570967,2,1,1,1,571492,3,2,3,3,571869,3,2,1,-1,572102,3,2,9,9,572586,3,2,10,10,572820,3,2,13,13,573284,3,2,15,15,573529,3,2,18,18,573868,2,0,1,1,574144,3,2,18,18,574356,3,2,15,15,574790,3,2,13,13,575028,3,2,10,10,575380,3,2,9,9,575570,3,2,3,3,576142,3,1,1,1,576872,1,0,1,1,577025,3,2,1,1,577237,1,1,1,1,577410,3,0,1,1,577611,3,2,2,2,578079,1,2,2,2,578346,3,2,3,3,578562,3,2,10,10,579003,3,2,10,10,579198,1,2,10,10,579580,3,2,9,9,579750,3,2,13,13,580159,3,2,15,15,580458,3,2,18,18,580797,1,0,1,-1,581204,1,0,1,-1,581579,1,0,1,-1,581999,3,2,1,-1,583139,1,2,1,-1,583584,3,2,1,-1,583996,1,2,1,1,584510,3,0,1,1,584828,1,1,1,1,584998,3,2,1,1,585136,1,2,1,1,585650,1,0,1,1,585906,3,0,1,-1,586211,3,2,1,-1,586485,3,2,1,-1,587080,1,2,1,-1,587432,1,2,1,-1,587774,1,2,1,1,588314,1,1,1,1,588499,3,2,1,1,588657,3,1,1,1,588830,1,0,1,-1,589125,1,1,1,-1,589368,1,1,1,-1,589598,1,1,1,1,590124,3,0,1,1,590356,1,1,1,1,590581,1,0,1,1,590703,3,0,1,-1,591002,1,2,2,2,591543,3,0,1,-1,592497,3,2,1,-1,592888,3,2,1,-1,593689,1,0,1,-1,594497,3,2,1,1,595099,2,0,1,1,595354,1,2,1,1,595581,1,0,1,-1,595880,3,1,1,1,596434,1,0,1,1,596606,3,2,1,1,596842,1,0,1,-1,597115,1,2,1,1,597688,3,2,1,-1,597930,1,1,1,-1,598228,1,1,1,-1,598673,1,1,1,1,599276,3,1,1,-1,599581,3,0,1,-1,599964,1,2,1,1,600375,1,0,1,-1,600611,1,2,1,1,601072,1,1,1,1,601280,3,2,1,1,601421,3,0,1,-1,601705,3,2,1,1,602071,1,0,1,-1,602329,1,1,1,-1,602542,3,1,1,1,603073,1,2,1,1,603259,3,1,1,1,603485,3,2,1,1,603616,3,1,1,1,603796,1,0,1,1,603958,3,1,1,1,604143,3,0,1,1,604336,1,1,1,-1,604639,1,1,1,1,605044,1,1,1,-1,605380,3,1,1,-1,605631,1,2,1,1,606010,3,1,1,1,606212,3,2,1,1,606317,2,1,1,1,606520,3,0,1,1,606742,3,1,1,1,606891,1,0,1,1,607022,3,1,1,-1,607334,3,1,1,1,607872,1,1,1,1,608305,1,2,1,1,608517,3,1,1,1,608713,3,2,1,1,608817,2,1,1,1,609099,1,2,1,1,609297,3,2,2,2,609593,1,2,2,2,610225,3,1,1,1,610394,3,2,1,1,610550,3,2,1,-1,611000,1,2,1,-1,612016,1,0,1,1,612886,1,2,1,1,613098,1,1,1,1,613262,3,2,1,1,613418,3,1,1,1,613614,3,0,1,1,613774,1,1,1,1,614290,1,1,1,-1,614734,1,1,1,-1,615115,3,2,1,1,616360,1,1,1,1,616533,1,2,1,1,616703,1,1,1,-1,617144,2,2,-20,-1,617925,2,2,-20,-1,618461,2,2,1,20,618738,2,1,1,1,619207,2,2,1,20,619522,2,2,1,1,620201,2,1,1,1,620396,2,2,1,20,620982,3,0,1,1,621610,3,1,1,1,621784,1,0,1,1,621931,3,2,1,-1,628649,3,2,1,-1,629502,3,2,1,-1,629811,1,2,1,-1,630151,1,1,38,38,631271,1,1,25,25,631821,1,1,22,22,632194,1,1,15,15,632664,1,1,12,12,633027,1,1,11,11,633234,1,1,9,9,633573,1,1,7,7,633892,3,2,2,2,634034,3,1,1,-1,634255,3,1,5,5,634911,3,1,7,7,635300,3,1,8,8,635490,3,1,9,9,635720,3,1,10,10,635929,3,1,11,11,636148,3,1,12,12,636353,3,1,13,13,636558,3,1,15,15,636913,3,1,22,22,637468,3,1,25,25,638084,3,1,26,26,638255,3,1,32,32,638747,3,1,36,36,639242,3,1,38,38,639449,3,1,1,-1,639662,2,1,38,38,640351,2,1,35,35,640676,2,1,28,28,641118,2,1,27,27,641355,2,1,7,7,642085,3,1,1,-1,642308,1,1,2,2,642950,1,1,8,8,643308,1,1,14,14,643791,1,1,24,24,644669,1,1,30,30,645109,1,1,31,31,645282,3,1,1,-1,645518,1,2,2,2,645758,1,1,39,39,646364,1,1,30,30,646883,1,1,9,9,647668,1,1,8,8,647867,1,1,12,12,648243,3,2,3,3,648442,3,1,1,-1,648703,3,1,8,8,649423,3,1,9,9,649598,3,1,10,10,649789,3,1,13,13,650128,1,1,14,14,650637,3,1,14,14,651079,3,1,14,14,651260,3,1,12,12,651551,3,1,16,16,651876,3,1,20,20,652272,3,1,27,27,652828,3,1,29,29,653218,3,1,30,30,653392,3,1,31,31,653606,3,1,39,39,654182,3,1,1,-1,654387,2,1,32,32,655168,2,1,19,19,655742,2,1,13,13,656174,2,1,10,10,656491,3,1,1,-1,656761,1,1,5,5,657338,1,1,2,2,657682,1,1,10,10,658112,1,1,14,14,658457,1,1,18,18,658830,1,1,20,20,659066,1,1,36,36,659737,1,1,38,38,660023,1,1,39,39,660219,3,1,1,-1,660465,1,2,3,3,660688,1,1,39,39,661230,1,1,35,35,661638,1,1,34,34,661841,1,1,26,26,662309,1,1,21,21,662702,1,1,5,5,663261,1,1,3,3,663510,3,2,4,4,663670,3,1,1,-1,663880,3,1,3,3,664149,3,1,2,2,664431,3,1,5,5,664720,3,1,8,8,665111,3,1,10,10,665333,3,1,12,12,665610,3,1,20,20,666113,3,1,21,21,666285,3,1,26,26,666762,3,1,34,34,667271,3,1,35,35,667460,3,1,38,38,667794,3,1,39,39,667990,3,1,1,-1,668224,2,1,32,32,668883,2,1,29,29,669174,2,1,25,25,669579,2,1,23,23,669788,2,1,18,18,670268,2,1,15,15,670609,2,1,10,10,671216,3,1,1,-1,671492,1,1,6,6,671992,1,1,8,8,672273,1,1,9,9,672471,1,1,24,24,673074,1,1,26,26,673279,1,1,35,35,673757,1,1,38,38,674084,1,1,39,39,674264,3,1,1,-1,674476,1,2,4,4,674714,1,1,37,37,675003,1,1,28,28,675495,1,1,22,22,675915,1,1,20,20,676151,1,1,17,17,676496,1,1,9,9,676937,1,1,6,6,677226,3,2,4,4,677429,3,1,1,-1,677631,1,1,1,-1,678103,1,2,4,4,678389,3,2,5,5,678561,3,1,1,-1,678764,3,1,6,6,679288,3,1,8,8,679595,3,1,9,9,679751,3,1,15,15,680367,3,1,16,16,680565,3,1,17,17,680736,3,1,20,20,681251,3,1,22,22,681433,3,1,28,28,681887,3,1,31,31,682230,3,1,37,37,682647,3,1,1,-1,682881,2,1,33,33,683565,2,1,22,22,684056,3,1,1,-1,684709,1,1,23,23,685557,1,1,24,24,685752,1,1,27,27,686125,1,1,29,29,686468,1,1,30,30,686646,3,1,1,-1,686847,1,2,5,5,687124,1,1,38,38,687760,1,1,39,39,687976,1,1,31,31,688433,1,1,29,29,688678,1,1,24,24,689098,1,1,22,22,689350,1,1,18,18,689730,1,1,8,8,690274,3,2,6,6,690437,3,1,1,-1,690710,3,1,8,8,691048,3,1,7,7,691261,3,1,12,12,691776,3,1,18,18,692196,3,1,19,19,692361,3,1,23,23,692770,3,1,24,24,692944,1,1,23,23,693420,3,1,22,22,693623,3,1,29,29,694163,3,1,31,31,694469,3,1,32,32,694653,3,1,38,38,695085,3,1,39,39,695268,3,1,1,-1,695503,2,1,36,36,695968,2,1,35,35,696172,2,1,39,39,696539,2,1,31,31,697023,2,1,20,20,697592,2,1,19,19,697791,2,1,16,16,698176,2,1,7,7,698657,3,1,1,-1,699017,1,1,12,12,699735,1,1,21,21,700286,1,1,24,24,700617,1,1,27,27,701090,1,1,28,28,701274,1,1,38,38,701752,3,1,1,-1,701949,1,2,6,6,702182,1,1,34,34,702700,1,1,29,29,703070,1,1,25,25,703506,1,1,14,14,703977,1,1,2,2,704634,3,2,7,7,704810,3,1,1,-1,704963,3,1,2,2,705210,3,1,5,5,705612,3,1,6,6,705776,3,1,14,14,706353,3,1,17,17,706622,3,1,19,19,706866,3,1,24,24,707344,3,1,25,25,707538,3,1,26,26,707724,3,1,27,27,707961,3,1,29,29,708306,3,1,34,34,708740,3,1,36,36,708927,3,1,1,-1,709209,2,1,25,25,710167,2,1,22,22,710487,2,1,11,11,711176,2,1,4,4,712101,3,1,1,-1,712390,1,1,5,5,712956,1,1,6,6,713138,1,1,7,7,713327,1,1,3,3,713732,1,1,15,15,714199,3,1,15,15,714567,1,1,16,16,714780,1,1,26,26,715350,1,1,30,30,715720,3,1,1,-1,715891,1,2,7,7,716162,1,1,34,34,716703,1,1,35,35,716879,1,1,39,39,717318,1,1,24,24,717931,1,1,14,14,718432,1,1,6,6,718858,1,1,2,2,719230,3,2,8,8,719364,3,1,1,-1,719570,3,1,2,2,719808,3,1,5,5,720317,3,1,6,6,720524,3,1,7,7,720713,3,1,11,11,721146,3,1,13,13,721552,3,1,14,14,721724,3,1,17,17,722174,3,1,24,24,722640,3,1,30,30,723114,3,1,34,34,723598,3,1,35,35,723768,3,1,37,37,724066,3,1,39,39,724382,3,1,1,-1,724688,2,1,34,34,725368,2,1,36,36,725575,2,1,19,19,726355,2,1,12,12,726759,2,1,7,7,727157,3,1,1,-1,727409,1,1,5,5,728006,1,1,7,7,728230,1,1,10,10,728619,1,1,11,11,728801,1,1,15,15,729181,1,1,20,20,729651,1,1,21,21,729852,1,1,24,24,730228,1,1,38,38,730809,3,1,1,-1,731016,1,2,8,8,731268,1,1,14,14,732185,1,1,5,5,732729,3,2,9,9,732875,3,1,1,-1,733048,3,1,5,5,733343,3,1,13,13,733952,3,1,14,14,734107,3,1,16,16,734481,3,1,20,20,734909,3,1,21,21,735093,3,1,33,33,735738,3,1,34,34,735936,3,1,1,-1,736311,2,1,28,28,737084,2,1,12,12,737963,3,1,1,-1,738303,1,1,3,3,738993,1,1,26,26,739668,1,1,27,27,739861,1,1,32,32,740306,1,1,35,35,740723,1,1,36,36,740882,3,1,1,-1,741069,1,2,9,9,741367,1,1,38,38,741769,1,1,39,39,741973,1,1,34,34,742381,1,1,28,28,742824,1,1,26,26,743085,1,1,22,22,743462,1,1,21,21,743669,1,1,19,19,743969,1,1,7,7,744564,1,1,6,6,744781,1,1,5,5,744988,1,1,2,2,745335,3,2,10,10,745489,3,1,1,-1,745679,3,1,2,2,745973,3,1,5,5,746540,3,1,5,5,746780,1,1,5,5,747223,3,1,4,4,747431,3,1,6,6,747741,3,1,7,7,747911,3,1,10,10,748282,3,1,19,19,748820,3,1,21,21,749221,3,1,22,22,749394,3,1,26,26,749903,3,1,28,28,750106,3,1,34,34,750657,3,1,38,38,751027,3,1,39,39,751209,3,1,1,-1,751466,2,1,36,36,751992,2,1,31,31,752483,2,1,26,26,752961,2,1,25,25,753160,2,1,30,30,753572,2,1,18,18,754146,2,1,11,11,754595,2,1,10,10,754791,3,1,1,-1,755039,1,1,7,7,755788,1,1,2,2,756213,1,1,13,13,756656,1,1,16,16,757036,1,1,17,17,757232,1,1,27,27,757829,1,1,33,33,758218,3,1,1,-1,758387,1,2,10,10,758630,1,1,33,33,758984,1,1,31,31,759201,1,1,37,37,759677,1,1,12,12,760468,1,1,3,3,760940,3,2,11,11,761104,3,1,1,-1,761287,3,1,3,3,761519,3,1,2,2,761889,3,1,9,9,762363,3,1,12,12,762617,3,1,17,17,763210,3,1,20,20,763488,3,1,31,31,764030,3,1,33,33,764240,3,1,37,37,764616,3,1,1,-1,764848,2,1,39,39,765583,2,1,13,13,766634,3,1,1,-1,766860,1,1,4,4,767558,1,1,9,9,767944,1,1,15,15,768439,1,1,36,36,769049,1,1,37,37,769235,3,1,1,-1,769476,1,2,12,12,769736,3,2,12,12,770175,1,2,11,11,770377,1,1,34,34,770734,1,1,29,29,771129,1,2,11,11,771425,3,2,11,11,772140,1,1,27,27,772304,1,1,8,8,772961,1,1,5,5,773296,1,1,2,2,773639,3,2,12,12,773776,3,1,1,-1,773984,3,1,2,2,774223,3,1,5,5,774693,3,1,8,8,775069,3,1,9,9,775243,3,1,10,10,775444,3,1,12,12,775786,3,1,15,15,776116,3,1,27,27,776674,3,1,34,34,777097,3,1,35,35,777251,3,1,1,-1,777484,2,1,35,35,777948,2,1,37,37,778184,2,1,24,24,778743,2,1,21,21,779034,2,1,17,17,779457,2,1,13,13,779853,2,1,11,11,780528,2,1,8,8,780867,3,1,1,-1,781088,1,1,6,6,781618,1,1,19,19,782201,1,1,25,25,782605,1,1,30,30,783021,1,1,33,33,783329,1,1,36,36,783795,1,1,39,39,784109,3,1,1,-1,784307,1,2,12,12,784577,1,1,27,27,785189,1,1,22,22,785562,1,1,7,7,786176,3,2,13,13,786321,3,1,1,-1,786535,3,1,7,7,786810,3,1,4,4,787154,3,1,21,21,788090,3,1,22,22,788305,1,1,21,21,788647,3,1,20,20,788861,3,1,27,27,789387,3,1,35,35,789842,3,1,39,39,790247,3,1,1,-1,790479,2,1,35,35,790952,2,1,37,37,791183,2,1,32,32,791628,2,1,24,24,792076,2,1,15,15,792661,3,1,1,-1,792884,1,1,6,6,793476,1,1,13,13,793855,1,1,14,14,794051,1,1,31,31,794788,1,1,34,34,795103,1,1,34,34,795226,3,1,1,-1,796016,1,2,13,13,796655,1,1,37,37,797097,1,1,16,16,797857,1,1,3,3,798437,3,2,14,14,798606,3,1,1,-1,798868,3,1,3,3,799230,3,1,8,8,799616,3,1,9,9,799795,3,1,16,16,800328,3,1,17,17,800539,3,1,22,22,801014,3,1,35,35,801616,3,1,37,37,801866,3,1,1,-1,802124,2,1,31,31,802830,2,1,30,30,803020,2,2,14,14,803484,2,2,14,14,803898,2,1,24,24,804161,2,1,21,21,804473,2,1,19,19,804712,2,1,13,13,805185,2,1,11,11,805388,3,1,1,-1,805682,1,1,8,8,806224,1,1,3,3,806652,1,1,2,2,806889,1,1,12,12,807412,1,1,22,22,808007,1,1,38,38,808706,3,1,1,-1,808891,1,2,14,14,809127,1,1,32,32,809857,1,1,26,26,810261,1,1,24,24,810518,1,1,20,20,810991,1,1,17,17,811327,1,1,12,12,811777,1,1,5,5,812304,1,1,2,2,812691,3,2,15,15,812858,3,1,1,-1,813137,3,1,2,2,813494,3,1,5,5,813833,3,1,10,10,814309,3,1,11,11,814480,3,1,12,12,814665,3,1,17,17,815302,3,1,20,20,815618,3,1,24,24,816143,3,1,25,25,816325,3,1,26,26,816526,3,1,27,27,816720,3,1,30,30,817260,3,1,32,32,817467,3,1,35,35,817918,3,1,36,36,818109,3,1,1,-1,818317,2,1,29,29,819038,2,1,28,28,819231,2,1,22,22,819725,2,1,20,20,820024,2,1,19,19,820356,2,1,20,20,820563,2,1,14,14,821049,2,1,5,5,821542,2,1,3,3,821781,3,1,1,-1,822062,1,1,8,8,822626,1,1,9,9,822831,1,1,13,13,823238,1,1,21,21,823714,1,1,26,26,824425,1,1,27,27,824577,1,1,35,35,825117,1,1,36,36,825294,1,1,38,38,825586,3,1,1,-1,825789,1,2,15,15,826037,1,1,37,37,826377,1,1,36,36,826597,1,1,35,35,826822,1,1,25,25,827291,1,1,16,16,827823,1,1,9,9,828278,1,1,8,8,828487,1,1,3,3,828924,3,2,16,16,829087,3,1,1,-1,829284,3,1,3,3,829521,3,1,7,7,829972,3,1,8,8,830159,3,1,9,9,830366,3,1,10,10,830533,3,1,13,13,830916,3,1,16,16,831252,3,1,17,17,831429,3,1,25,25,831943,3,1,27,27,832342,3,1,28,28,832553,3,1,29,29,832723,3,1,35,35,833331,3,1,37,37,833516,3,1,37,37,833698,3,1,36,36,834058,1,1,37,37,834283,1,1,37,37,834344,3,1,1,-1,834809,3,1,37,37,835123,2,1,33,33,835554,2,1,30,30,835900,2,1,20,20,836397,2,1,18,18,836706,2,1,17,17,836928,2,1,11,11,837404,2,1,6,6,837839,3,1,1,-1,838083,1,1,5,5,838573,1,1,19,19,839192,1,1,22,22,839454,1,1,25,25,839798,3,1,1,-1,840183,1,2,16,16,840545,1,1,38,38,840920,1,1,34,34,841257,1,1,30,30,841579,1,1,22,22,842089,1,1,21,21,842255,1,1,11,11,842792,1,1,9,9,843031,1,1,5,5,843430,3,2,17,17,843571,3,1,1,-1,843772,3,1,5,5,844015,3,2,17,17,844183,3,2,17,17,844672,3,1,7,7,844972,1,1,7,7,845945,2,2,17,17,846164,3,1,7,7,846430,3,1,9,9,846825,3,1,11,11,846995,3,1,21,21,847516,3,1,22,22,847693,3,1,25,25,848028,3,1,26,26,848193,3,1,28,28,848594,3,1,29,29,848779,3,1,30,30,848979,3,1,34,34,849383,3,1,38,38,849781,3,1,39,39,850025,3,1,1,-1,850289,2,1,29,29,851045,2,1,28,28,851268,2,1,20,20,851802,2,1,18,18,852061,2,1,14,14,852485,2,1,11,11,852779,2,1,4,4,853274,3,1,1,-1,853515,1,1,9,9,854094,3,1,1,-1,854727,1,2,17,17,855076,1,1,37,37,855422,1,1,32,32,855729,3,1,32,32,856083,1,1,33,33,856287,1,1,29,29,856662,1,1,28,28,856904,1,1,25,25,857258,1,1,17,17,857754,1,1,16,16,857939,3,2,18,18,858277,3,1,1,-1,858468,3,1,7,7,859148,3,1,13,13,859625,3,1,15,15,859970,3,1,16,16,860140,3,1,17,17,860328,3,1,25,25,860957,3,1,28,28,861295,3,1,29,29,861466,3,1,32,32,861909,3,1,33,33,862064,3,1,37,37,862503,3,1,38,38,862697,3,1,1,-1,862932,2,1,21,21,864020,2,1,14,14,864647,2,1,10,10,865123,2,1,9,9,865305,2,1,8,8,865526,2,1,7,7,865741,2,1,3,3,866260,3,1,1,-1,866522,1,1,15,15,867433,1,1,20,20,867879,1,1,27,27,868459,1,1,30,30,868682,3,1,30,30,869270,1,1,29,29,869499,1,1,33,33,869848,1,1,37,37,870332,1,1,39,39,870564,3,1,1,-1,870760,1,2,18,18,871008,1,1,25,25,871883,1,1,22,22,872150,1,1,10,10,872737,1,1,9,9,872938,1,1,4,4,873378,3,2,19,19,873543,1,2,19,19,873957,3,1,4,4,874168,1,1,3,3,874388,3,2,19,19,874609,3,1,1,-1,874981,3,1,3,3,875558,3,1,2,2,875747,3,1,5,5,876089,3,1,9,9,876514,3,1,10,10,876697,3,1,15,15,877146,3,1,22,22,877694,3,1,25,25,877940,3,1,31,31,878503,1,1,38,38,879316,3,1,38,38,879799,3,1,38,38,879976,3,1,1,-1,880236,2,1,34,34,880813,2,1,28,28,881265,2,1,23,23,881663,2,1,17,17,882161,2,1,15,15,882481,2,1,14,14,882814,2,1,15,15,882993,2,1,11,11,883495,2,1,9,9,883704,3,1,1,-1,883962,1,1,7,7,884458,1,1,3,3,884832,1,1,10,10,885252,1,1,12,12,885466,1,1,31,31,886175,1,1,33,33,886484,1,1,39,39,886896,3,1,1,-1,887082,1,2,19,19,887322,1,1,37,37,887602,1,1,24,24,888199,1,1,23,23,888405,1,1,11,11,889056,1,1,9,9,889363,1,1,8,8,889553,1,1,5,5,889875,1,1,3,3,890165,3,2,20,20,890320,3,1,1,-1,890529,3,1,3,3,890791,3,1,5,5,891016,3,1,8,8,891397,3,1,9,9,891581,3,1,11,11,891803,3,1,16,16,892315,3,1,22,22,892816,3,1,23,23,892986,3,1,24,24,893192,3,1,25,25,893373,3,1,29,29,893786,3,1,37,37,894284,3,1,1,-1,894526,2,1,32,32,895110,2,1,38,38,895495,2,1,28,28,896076,2,1,23,23,896526,2,1,21,21,896786,2,1,17,17,897239,2,1,15,15,897521,2,1,14,14,897712,2,1,7,7,898247,2,1,5,5,898490,3,1,1,-1,898756,1,1,2,2,899624,1,1,30,30,900362,1,1,38,38,900848,3,1,1,-1,901050,3,1,38,38,901474,1,1,39,39,901687,1,2,20,20,901825,1,1,32,32,902405,1,1,31,31,902607,1,1,30,30,902805,1,1,29,29,903015,1,1,39,39,903596,1,1,25,25,904100,1,1,15,15,904693,1,1,12,12,904962,1,1,8,8,905423,1,1,7,7,905611,1,1,6,6,905840,1,1,3,3,906206,3,2,21,21,906326,3,1,1,-1,906554,3,1,3,3,906789,3,1,2,2,907102,3,1,6,6,907560,3,1,7,7,907732,3,1,8,8,907918,3,1,9,9,908116,3,1,12,12,908513,3,1,14,14,908802,3,1,15,15,908998,3,1,17,17,909279,3,1,22,22,909715,3,1,25,25,910013,3,1,28,28,910521,3,1,29,29,910704,3,1,30,30,910936,3,1,31,31,911106,3,1,32,32,911319,3,1,34,34,911681,3,1,39,39,912116,3,1,1,-1,912329,2,1,30,30,913281,2,1,23,23,913763,2,1,18,18,914260,2,1,10,10,914698,3,1,1,-1,914944,1,1,7,7,915485,1,1,5,5,915723,1,1,9,9,916092,1,1,11,11,916337,1,1,21,21,916969,1,1,29,29,917402,1,1,38,38,917985,1,1,39,39,918161,3,1,1,-1,918357,1,2,21,21,918629,1,1,37,37,918909,1,1,29,29,919378,1,1,22,22,919862,1,1,21,21,920055,1,1,20,20,920260,1,1,18,18,920576,1,1,11,11,921090,1,1,8,8,921421,1,1,7,7,921629,3,2,22,22,921824,3,1,1,-1,922021,3,1,7,7,922397,3,1,8,8,922599,3,1,11,11,922990,3,1,12,12,923180,3,1,17,17,923729,3,1,18,18,923920,3,1,19,19,924125,3,1,20,20,924366,3,1,21,21,924551,3,1,22,22,924745,3,1,24,24,925081,3,1,29,29,925573,3,1,33,33,925943,3,1,37,37,926370,3,1,1,-1,926646,2,1,39,39,927401,2,1,32,32,927872,2,1,26,26,928288,2,1,25,25,928512,2,1,23,23,928795,2,1,16,16,929376,3,1,1,-1,929870,1,1,2,2,930517,1,1,17,17,931087,1,1,21,21,931481,1,1,27,27,931958,1,1,30,30,932256,1,1,28,28,932527,3,1,27,27,932760,1,1,34,34,933311,1,1,37,37,933642,3,1,1,-1,933830,1,2,22,22,934474,1,1,37,37,934810,1,1,36,36,935008,1,1,32,32,935392,1,1,18,18,936056,1,1,9,9,936559,1,1,6,6,936876,3,2,23,23,937038,3,1,1,-1,937230,3,1,6,6,937626,3,1,8,8,937891,3,1,9,9,938071,3,1,17,17,938567,3,1,18,18,938748,3,1,25,25,939256,3,1,32,32,939763,3,1,33,33,939988,3,1,36,36,940340,3,1,37,37,940510,3,1,1,-1,940765,2,1,36,36,941255,2,1,39,39,941621,2,1,32,32,942073,2,1,22,22,942579,2,1,4,4,943381,3,1,1,-1,943631,1,1,7,7,944297,1,1,9,9,944562,1,1,11,11,944812,1,1,3,3,945265,1,1,15,15,945721,1,1,18,18,946044,1,1,23,23,946601,1,1,24,24,946771,1,1,27,27,947128,1,1,29,29,947465,1,1,30,30,947666,1,1,34,34,948178,1,1,35,35,948348,1,1,37,37,948618,3,1,1,-1,948822,1,2,23,23,949127,1,1,36,36,949363,1,1,34,34,949612,1,1,33,33,949810,1,1,31,31,950099,1,1,30,30,950316,1,1,28,28,950683,1,1,25,25,951100,1,1,24,24,951296,1,1,21,21,951702,1,1,20,20,951902,1,1,15,15,952361,1,1,3,3,952871,3,2,24,24,953005,3,1,1,-1,953293,3,1,3,3,953584,3,1,4,4,953809,3,1,7,7,954197,3,1,14,14,954729,3,1,15,15,954909,3,2,22,22,955078,3,1,20,20,955523,3,1,21,21,955725,1,2,22,22,956559,3,1,23,23,956962,3,1,24,24,957173,3,1,25,25,957368,3,1,28,28,957986,3,1,29,29,958156,3,1,30,30,958363,3,1,31,31,958568,3,1,33,33,958907,3,1,34,34,959095,3,1,36,36,959373,3,1,1,-1,959606,2,1,35,35,960121,2,1,13,13,961121,2,1,9,9,961488,2,1,8,8,961660,3,1,1,-1,961898,1,1,3,3,962577,1,1,10,10,963056,1,1,26,26,963731,1,1,33,33,964263,1,1,38,38,964693,3,1,1,-1,964851,1,2,24,24,965174,1,1,36,36,965450,1,1,21,21,966107,1,1,12,12,966658,3,2,25,25,966817,3,1,1,-1,967033,3,1,2,2,967894,3,1,3,3,968102,3,1,4,4,968309,3,1,10,10,968828,3,1,12,12,969050,3,1,21,21,969529,3,1,36,36,970181,3,1,1,-1,970421,2,1,36,36,971017,2,1,23,23,971594,2,2,25,25,971976,2,2,25,25,972451,2,1,17,17,972647,2,1,9,9,973277,2,1,7,7,973477,2,1,5,5,973702,3,1,1,-1,973949,1,1,6,6,974424,1,1,4,4,974724,1,1,3,3,974918,1,1,11,11,975413,3,1,1,-1,975949,1,2,25,25,976291,1,1,31,31,976595,1,1,39,39,977055,1,1,10,10,977735,3,2,26,26,977915,3,1,1,-1,978146,3,1,10,10,978454,3,1,7,7,978895,3,1,1,1,979199,1,1,1,1,979633,3,1,2,2,979826,3,1,12,12,980349,3,1,13,13,980519,3,1,19,19,980982,3,1,23,23,981314,3,1,28,28,981882,3,1,30,30,982166,3,1,31,31,982340,3,1,33,33,982666,3,1,35,35,982905,3,1,39,39,983306,3,1,1,-1,983528,2,1,28,28,984431,2,1,25,25,984765,2,1,23,23,985012,2,1,18,18,985564,2,1,8,8,986142,2,1,7,7,986325,3,1,1,-1,986574,1,1,6,6,987040,1,1,3,3,987324,1,1,15,15,987835,1,1,16,16,988023,3,1,1,-1,988617,1,1,38,38,989091,1,2,26,26,989293,1,1,34,34,989687,1,1,30,30,990044,1,1,21,21,990535,1,1,10,10,991011,1,1,5,5,991356,3,2,27,27,991542,3,1,1,-1,991738,3,1,5,5,992035,3,1,10,10,992447,1,2,27,27,993088,3,2,27,27,993474,3,1,21,21,993658,3,1,27,27,994268,3,1,29,29,994554,3,1,30,30,994723,3,1,34,34,995156,3,1,36,36,995433,3,1,37,37,995770,1,1,36,36,995999,3,1,39,39,996336,3,1,1,-1,996542,2,1,21,21,997770,2,1,18,18,997999,2,1,17,17,998422,2,1,16,16,998657,2,1,18,18,998934,2,1,19,19,999136,2,1,14,14,999664,3,1,1,-1,999951,1,1,4,4,1000689,1,2,26,26,1000872,1,1,2,2,1001077,3,1,2,2,1001413,3,2,26,26,1001822,1,1,2,2,1002081,1,1,3,3,1002279,1,1,8,8,1002756,1,1,31,31,1003609,1,1,33,33,1003821,1,1,36,36,1004136,3,1,1,-1,1004318,1,2,27,27,1004538,1,1,39,39,1005148,1,1,28,28,1005581,1,1,27,27,1005783,1,1,17,17,1006391,1,1,16,16,1006563,1,1,11,11,1006966,1,1,6,6,1007489,1,1,5,5,1007675,1,1,3,3,1007950,1,1,2,2,1008169,3,2,28,28,1008323,3,1,1,-1,1008561,3,2,28,28,1008902,3,2,28,28,1009357,3,1,3,3,1009565,1,1,3,3,1010123,2,2,28,28,1010328,3,1,3,3,1010499,3,1,5,5,1010844,3,1,6,6,1011019,3,1,9,9,1011421,3,1,11,11,1011691,3,1,12,12,1011871,3,1,16,16,1012328,3,1,17,17,1012515,3,1,18,18,1012721,3,1,27,27,1013330,3,1,28,28,1013529,3,1,39,39,1014096,3,1,1,-1,1014332,2,1,31,31,1015057,2,1,28,28,1015397,2,1,26,26,1015636,2,1,21,21,1016154,3,1,1,-1,1016606,1,1,10,10,1017259,1,1,12,12,1017462,1,1,16,16,1017968,1,1,23,23,1018591,1,1,25,25,1018793,1,1,27,27,1019090,1,1,32,32,1019559,1,1,36,36,1019985,1,1,33,33,1020291,3,1,32,32,1020489,3,1,1,-1,1020718,1,2,28,28,1021022,1,1,36,36,1021461,1,1,31,31,1021812,1,1,27,27,1022172,1,1,25,25,1022413,1,1,21,21,1022891,3,2,29,29,1023157,1,2,29,29,1023818,1,1,10,10,1024006,3,2,29,29,1024128,3,1,1,-1,1024364,3,1,10,10,1024617,3,1,3,3,1025035,3,1,12,12,1025513,3,1,13,13,1025708,3,1,14,14,1025918,3,1,21,21,1026673,3,1,25,25,1026970,3,1,27,27,1027336,3,1,29,29,1027521,3,1,31,31,1027918,3,1,32,32,1028120,3,1,36,36,1028506,3,1,1,-1,1028730,2,1,27,27,1029517,3,1,1,-1,1030330,1,1,15,15,1031165,1,1,30,30,1031813,1,1,33,33,1032155,1,1,34,34,1032316,3,1,1,-1,1032521,1,2,29,29,1032862,1,1,35,35,1033106,1,1,30,30,1033538,1,1,27,27,1033892,1,1,24,24,1034251,1,1,23,23,1034468,1,1,22,22,1034679,1,1,3,3,1035644,3,2,30,30,1035793,3,1,1,-1,1035996,3,1,3,3,1036218,3,1,22,22,1037141,3,1,23,23,1037337,3,1,24,24,1037511,3,1,16,16,1037963,3,1,27,27,1038462,3,1,28,28,1038631,3,1,30,30,1038963,3,1,35,35,1039359,3,1,37,37,1039611,3,1,1,-1,1039820,2,1,30,30,1040478,2,1,29,29,1040699,2,1,18,18,1041349,2,1,7,7,1041814,3,1,1,-1,1042071,1,1,6,6,1042615,1,1,5,5,1042840,1,1,10,10,1043220,1,1,14,14,1043618,1,1,15,15,1043831,1,1,22,22,1044382,1,1,24,24,1044602,1,1,36,36,1045146,1,1,37,37,1045313,3,1,1,-1,1045552,1,2,30,30,1045822,1,1,34,34,1046206,1,1,31,31,1046569,1,1,22,22,1047085,1,1,21,21,1047285,1,1,20,20,1047529,1,1,19,19,1047751,1,1,11,11,1048390,1,1,9,9,1048650,1,1,8,8,1048847,1,1,2,2,1049296,3,2,31,31,1049454,3,1,1,-1,1049684,3,1,2,2,1049941,3,1,6,6,1050372,3,1,8,8,1050698,3,1,9,9,1050867,3,1,11,11,1051146,3,1,19,19,1051910,3,1,20,20,1052102,3,1,21,21,1052309,3,1,22,22,1052500,3,1,26,26,1052922,3,1,31,31,1054074,3,1,33,33,1054431,3,1,34,34,1054633,3,1,38,38,1055060,3,1,1,-1,1055295,2,1,28,28,1056067,2,1,23,23,1056473,2,1,16,16,1056918,2,1,7,7,1057423,3,1,1,-1,1057642,1,1,10,10,1058307,1,1,25,25,1059085,1,1,30,30,1059444,1,1,37,37,1059850,3,1,1,-1,1060038,1,2,31,31,1060260,1,1,35,35,1060664,1,1,31,31,1061090,1,1,29,29,1061342,1,1,26,26,1061699,1,1,9,9,1062385,1,1,7,7,1062619,3,2,32,32,1062764,3,1,1,-1,1062971,3,1,7,7,1063230,3,1,6,6,1063546,3,1,9,9,1063890,3,1,11,11,1064148,3,1,17,17,1064791,3,1,22,22,1065198,3,1,26,26,1065565,3,1,29,29,1066021,3,1,30,30,1066213,3,1,31,31,1066428,3,1,35,35,1066849,3,1,38,38,1067087,3,1,1,-1,1067328,2,1,36,36,1067969,2,1,29,29,1068455,2,1,27,27,1068662,2,1,24,24,1068934,2,1,22,22,1069193,2,1,15,15,1069779,2,1,10,10,1070212,2,1,8,8,1070424,2,1,5,5,1070820,3,1,1,-1,1071133,1,1,3,3,1071791,1,1,12,12,1072670,1,1,18,18,1073164,1,1,33,33,1073736,3,1,1,-1,1073924,1,1,39,39,1074380,1,2,32,32,1074570,1,1,37,37,1074865,1,1,34,34,1075159,1,1,33,33,1075346,1,1,24,24,1075873,1,1,22,22,1076114,1,1,15,15,1076632,1,1,3,3,1077093,3,2,33,33,1077237,3,1,1,-1,1077453,3,1,3,3,1077736,3,1,5,5,1078024,3,1,6,6,1078219,3,1,10,10,1078602,3,1,15,15,1079016,3,1,18,18,1079336,3,1,22,22,1079778,3,1,24,24,1079990,3,1,26,26,1080220,3,1,33,33,1080832,3,1,34,34,1081015,3,1,37,37,1081386,3,1,1,-1,1081612,2,1,4,4,1083099,3,1,1,-1,1083304,1,1,8,8,1083847,1,1,12,12,1084230,1,1,14,14,1084462,1,1,38,38,1085309,3,1,1,-1,1085525,1,2,33,33,1085803,1,1,39,39,1086107,1,1,34,34,1086596,1,1,27,27,1087043,1,1,3,3,1087767,3,2,34,34,1087906,3,1,1,-1,1088132,3,1,3,3,1088401,3,1,4,4,1088632,3,1,6,6,1088951,3,1,9,9,1089395,3,1,11,11,1089594,3,1,15,15,1090032,3,1,16,16,1090196,3,1,19,19,1090517,3,1,24,24,1090956,3,1,27,27,1091300,3,1,29,29,1091594,3,1,30,30,1091776,3,1,34,34,1092232,3,1,39,39,1092607,3,1,1,-1,1092846,2,1,35,35,1093394,2,1,37,37,1093593,2,1,33,33,1093916,2,1,31,31,1094151,2,1,26,26,1094632,2,1,22,22,1094957,2,1,4,4,1095734,3,1,1,-1,1096033,1,1,3,3,1096725,1,1,14,14,1097179,1,1,20,20,1097552,1,1,25,25,1097958,3,1,1,-1,1098286,1,1,38,38,1098718,1,2,34,34,1098860,1,1,30,30,1099531,1,1,27,27,1099936,1,1,23,23,1100277,1,1,3,3,1101008,3,2,35,35,1101160,3,1,1,-1,1101365,3,1,3,3,1101587,3,1,12,12,1102323,3,1,15,15,1102603,3,1,22,22,1103044,3,1,27,27,1103506,3,1,23,23,1103822,3,1,30,30,1104286,3,1,31,31,1104452,3,1,34,34,1104779,3,1,38,38,1105097,3,1,1,-1,1105337,2,1,36,36,1105892,2,1,31,31,1106263,2,1,22,22,1106771,2,1,21,21,1106964,2,1,16,16,1107419,2,1,13,13,1107798,2,1,10,10,1108201,2,1,9,9,1108399,3,1,1,-1,1108700,1,1,6,6,1109256,1,1,12,12,1109687,1,1,14,14,1109900,1,1,18,18,1110275,1,1,20,20,1110543,1,1,37,37,1111165,3,1,1,-1,1111351,1,2,35,35,1111589,1,1,36,36,1111928,1,1,38,38,1112207,1,1,39,39,1112405,1,1,34,34,1112779,1,1,33,33,1112979,1,1,21,21,1113514,1,1,20,20,1113762,1,1,15,15,1114183,3,2,36,36,1114544,3,1,1,-1,1114754,3,1,10,10,1115536,3,1,15,15,1115933,3,1,20,20,1116344,3,1,21,21,1116531,3,1,23,23,1116750,3,1,30,30,1117287,3,1,33,33,1117702,3,1,34,34,1117885,3,1,36,36,1118140,3,1,38,38,1118479,3,1,39,39,1118661,3,1,1,-1,1118898,2,1,30,30,1119611,2,1,26,26,1120003,2,1,26,26,1120221,2,1,26,26,1120750,2,1,27,27,1120922,2,1,14,14,1121474,2,1,13,13,1121675,2,1,11,11,1121917,2,1,10,10,1122139,2,1,6,6,1122522,2,1,3,3,1122896,2,1,2,2,1123103,3,1,1,-1,1123371,1,1,4,4,1123991,1,1,23,23,1124521,3,1,1,-1,1124771,1,2,36,36,1125162,1,1,32,32,1125469,1,1,36,36,1125781,1,1,24,24,1126281,1,1,22,22,1126557,1,1,21,21,1126738,1,1,14,14,1127241,1,1,13,13,1127443,1,1,12,12,1127668,1,1,8,8,1128118,1,1,6,6,1128380,1,1,4,4,1128654,3,2,37,37,1128791,3,1,1,-1,1129033,3,1,4,4,1129303,3,1,5,5,1129489,3,1,6,6,1129678,3,1,8,8,1129951,3,1,9,9,1130151,3,1,12,12,1130460,3,1,13,13,1130657,3,1,14,14,1130846,3,1,16,16,1131167,3,1,21,21,1131611,3,1,22,22,1131819,3,1,24,24,1132103,3,1,29,29,1132742,3,1,32,32,1133210,3,1,36,36,1133582,3,1,37,37,1133766,3,1,1,-1,1133998,2,1,35,35,1134494,2,1,37,37,1134712,2,1,29,29,1135192,2,1,16,16,1135817,2,1,15,15,1136059,2,1,11,11,1136502,2,2,37,37,1136918,2,2,37,37,1137300,2,1,5,5,1137511,2,1,4,4,1137690,3,1,1,-1,1137952,1,1,5,5,1138399,1,1,10,10,1138812,1,1,12,12,1139111,1,1,13,13,1139309,1,1,28,28,1140059,1,1,30,30,1140491,1,1,31,31,1140664,1,1,32,32,1140849,1,1,38,38,1141376,1,1,39,39,1141532,3,1,1,-1,1141737,1,2,37,37,1142002,1,1,30,30,1142642,1,1,8,8,1143243,1,1,3,3,1143620,3,2,38,38,1143756,3,1,1,-1,1143963,3,1,3,3,1144203,3,1,6,6,1144638,3,1,8,8,1144822,3,1,12,12,1145286,3,1,16,16,1145737,3,1,17,17,1145926,3,1,18,18,1146111,3,1,29,29,1146855,3,1,30,30,1147031,3,1,1,-1,1147255,2,1,34,34,1147792,2,1,26,26,1148312,2,1,22,22,1148626,2,1,18,18,1149099,2,1,17,17,1149289,2,1,15,15,1149572,2,1,10,10,1150092,2,1,9,9,1150289,2,1,4,4,1150681,2,1,2,2,1150960,3,1,1,-1,1151205,1,1,17,17,1152159,1,1,25,25,1152594,1,1,32,32,1153025,3,1,1,-1,1153195,1,2,38,38,1153438,1,1,33,33,1153780,1,1,37,37,1154147,1,1,24,24,1154630,1,1,21,21,1154899,1,1,17,17,1155348,1,1,12,12,1155783,1,1,2,2,1156316,3,2,39,39,1156439,3,1,1,-1,1156658,3,1,2,2,1156866,3,1,6,6,1157271,3,1,8,8,1157503,3,1,12,12,1157908,3,1,17,17,1158302,3,1,21,21,1158700,3,1,24,24,1159012,3,1,27,27,1159376,3,1,33,33,1159948,3,1,37,37,1160187,3,1,1,-1,1160435,2,1,35,35,1161326,2,1,34,34,1161509,2,1,32,32,1161828,2,1,23,23,1162338,2,1,19,19,1162728,2,1,17,17,1162951,2,1,4,4,1163515,3,1,1,-1,1163787,1,1,6,6,1164361,1,1,5,5,1164564,1,1,10,10,1164944,1,1,24,24,1165629,1,1,37,37,1166131,1,1,39,39,1166349,3,1,1,-1,1166548,1,2,39,39,1166873,3,2,1,-1,1167150,1,1,1,-1,1167327,3,2,-1,-1,1167824,3,1,1,-1,1168148,1,1,1,-1,1168302,3,2,31,31,1168616,3,1,24,24,1168776,1,2,31,31,1168923,1,1,24,24,1169094,3,2,32,32,1169253,3,1,25,25,1169427,1,2,32,32,1169595,1,1,25,25,1169771,3,1,1,-1,1170000,1,1,1,-1,1170153,3,2,33,33,1170476,3,1,20,20,1170657,1,2,33,33,1170814,1,1,20,20,1171000,1,2,1,-1,1171226,1,1,1,-1,1171390,1,1,1,-1,1172137,3,1,1,-1,1172481,3,1,1,-1,1172646,3,1,1,-1,1172933,1,1,1,-1,1173127,3,2,33,33,1173646,3,2,32,32,1173802,3,1,16,16,1173968,1,2,33,33,1174222,1,2,32,32,1174410,1,1,16,16,1174578,3,1,1,-1,1174833,1,1,1,-1,1175027,3,2,32,32,1175342,3,1,19,19,1175496,1,2,32,32,1175671,1,1,19,19,1175830,3,2,34,34,1176221,3,1,18,18,1176391,1,2,34,34,1176555,1,1,18,18,1176699,3,1,1,-1,1176964,1,1,1,-1,1177126,3,1,1,-1,1177613,1,1,1,-1,1177812,3,2,38,38,1178105,3,1,20,20,1178282,1,2,38,38,1178449,1,1,20,20,1178633,3,1,1,-1,1178963,1,1,1,-1,1179197,3,2,34,34,1179780,3,1,21,21,1179978,1,2,34,34,1180124,1,1,21,21,1180291,3,1,1,-1,1180589,1,1,1,-1,1180792,3,2,27,27,1181167,3,1,24,24,1181348,1,2,27,27,1181502,1,1,24,24,1181676,3,1,1,-1,1181963,1,1,1,-1,1182197,3,2,37,37,1182726,3,1,25,25,1182946,1,2,37,37,1183080,1,1,25,25,1183252,3,1,1,-1,1183758,1,1,1,-1,1183969,3,2,32,32,1184325,3,1,34,34,1184474,1,2,32,32,1184639,1,1,34,34,1184809,3,2,34,34,1185084,3,1,32,32,1185295,1,2,34,34,1185397,1,1,32,32,1185585,3,1,1,-1,1185867,1,1,1,-1,1186100,3,2,36,36,1186534,3,1,37,37,1186721,1,2,36,36,1186872,1,1,37,37,1187057,3,1,1,-1,1187358,1,1,1,-1,1187552,3,2,29,29,1187823,3,1,37,37,1187992,1,2,29,29,1188160,1,1,37,37,1188330,3,1,1,-1,1188709,1,1,1,-1,1188989,3,2,18,18,1189265,3,1,30,30,1189432,1,2,18,18,1189598,1,1,30,30,1189763,3,1,1,-1,1190064,1,1,1,-1,1190283,3,1,1,-1,1190721,1,1,1,-1,1190947,3,1,1,-1,1191228,1,1,1,-1,1191464,3,2,16,16,1191795,3,1,21,21,1191974,1,2,16,16,1192105,1,1,21,21,1192289,3,2,17,17,1192455,3,1,23,23,1192644,1,2,17,17,1192809,1,1,23,23,1192965,3,1,1,-1,1193203,1,1,1,-1,1193422,3,1,1,-1,1193800,1,1,1,-1,1194005,3,2,13,13,1194342,3,1,28,28,1194513,3,1,30,30,1194763,1,2,13,13,1194923,1,1,30,30,1195106,1,1,28,28,1195321,3,1,1,-1,1195646,1,1,1,-1,1195829,3,2,18,18,1196120,3,1,36,36,1196304,1,2,18,18,1196458,1,1,36,36,1196628,3,1,1,-1,1197001,1,1,1,-1,1197235,3,2,8,8,1197595,3,1,28,28,1197808,1,2,8,8,1197953,1,1,28,28,1198116,3,2,10,10,1198380,3,1,32,32,1198569,1,2,10,10,1198727,1,1,32,32,1198914,3,1,1,-1,1199192,1,1,1,-1,1199396,3,2,9,9,1199923,3,2,6,6,1200221,3,1,37,37,1200377,1,2,6,6,1200529,1,2,9,9,1200849,1,1,37,37,1201034,3,2,6,6,1201400,1,2,6,6,1201749,3,2,5,5,1201993,3,1,36,36,1202175,1,2,5,5,1202321,1,1,36,36,1202500,3,1,1,-1,1202957,3,1,1,-1,1203352,1,1,1,-1,1203995,1,1,1,-1,1204258,3,2,2,2,1204706,3,1,23,23,1204895,1,2,2,2,1205037,1,1,23,23,1205214,3,1,1,-1,1205506,1,1,1,-1,1205776,3,1,1,-1,1206451,1,1,1,-1,1206621,3,1,1,-1,1207095,1,1,1,-1,1207363,3,2,7,7,1207744,3,1,13,13,1207941,1,2,7,7,1208085,1,1,13,13,1208286,3,1,1,-1,1208589,1,1,1,-1,1208793,3,1,1,-1,1209482,1,1,1,-1,1209673,3,2,3,3,1210120,3,1,4,4,1210288,1,2,3,3,1210455,1,1,4,4,1210602,3,1,1,-1,1210899,1,1,1,-1,1211149,3,2,11,11,1211507,3,1,5,5,1211686,1,2,11,11,1211834,1,1,5,5,1211998,3,2,13,13,1212294,3,1,9,9,1212465,1,2,13,13,1212605,1,1,9,9,1212770,3,1,1,-1,1213000,1,1,1,-1,1213181,3,1,1,-1,1213599,1,1,1,-1,1213799,3,1,1,-1,1214353,1,1,1,-1,1214572,3,2,16,16,1214990,3,1,15,15,1215151,1,2,16,16,1215306,1,1,15,15,1215460,3,2,17,17,1215692,3,1,12,12,1215870,1,2,17,17,1216234,1,1,12,12,1216433,3,2,17,17,1216783,3,1,17,17,1216954,1,2,17,17,1217125,1,1,17,17,1217285,3,1,1,-1,1217578,1,1,1,-1,1217768,3,2,25,25,1218271,3,1,15,15,1218387,1,2,25,25,1218554,1,1,15,15,1218720,3,1,1,-1,1218996,1,1,1,-1,1219249,3,2,27,27,1219639,3,1,11,11,1219834,1,2,27,27,1220009,1,1,11,11,1220181,3,1,1,-1,1220441,1,1,1,-1,1220584,3,2,27,27,1220854,3,1,7,7,1221047,1,2,27,27,1221227,1,1,7,7,1221352,3,1,1,-1,1221598,1,1,1,-1,1221786,3,2,32,32,1222306,3,1,2,2,1222487,1,2,32,32,1222923,1,1,2,2,1223087,3,1,1,-1,1223373,1,1,1,-1,1223529,3,2,34,34,1224103,3,1,8,8,1224300,1,2,34,34,1224479,1,1,8,8,1224606,3,1,1,-1,1224958,1,1,1,-1,1225256,3,2,31,31,1225774,3,1,14,14,1225967,1,2,31,31,1226099,1,1,14,14,1226290,3,1,1,-1,1226593,1,1,1,-1,1226832,3,2,-1,-1,1227347,3,1,1,-1,1231075,1,1,1,-1,1231273,3,2,36,36,1231680,3,1,15,15,1231847,1,2,36,36,1232001,1,1,15,15,1232145,3,2,38,38,1232501,3,1,19,19,1232659,1,2,38,38,1232833,1,1,19,19,1233011,3,1,1,-1,1233316,1,1,1,-1,1233549,3,2,31,31,1233826,3,1,21,21,1233998,1,2,31,31,1234134,1,1,21,21,1234306,3,1,1,-1,1234502,1,1,1,-1,1234684,3,2,32,32,1235550,3,1,17,17,1235729,1,2,32,32,1235895,1,1,17,17,1236067,3,1,1,-1,1236449,1,1,1,-1,1236676,3,1,1,-1,1237125,1,1,1,-1,1237429,3,2,28,28,1237935,3,2,27,27,1238076,3,1,8,8,1238286,1,2,28,28,1238538,1,2,27,27,1238740,1,1,8,8,1238923,3,1,1,-1,1239253,1,1,1,-1,1239437,3,1,1,-1,1239906,1,1,1,-1,1240108,3,1,1,-1,1240455,1,1,1,-1,1240696,3,1,1,-1,1241088,1,1,1,-1,1241290,3,2,7,7,1241606,3,1,2,2,1241804,1,2,7,7,1241947,1,1,2,2,1242099,3,1,1,-1,1242476,1,1,1,-1,1242703,3,2,5,5,1243019,3,1,15,15,1243233,1,2,5,5,1243352,1,1,15,15,1243531,3,2,3,3,1243771,1,2,3,3,1244320,3,2,4,4,1244523,3,1,12,12,1244722,1,2,4,4,1244886,1,1,12,12,1245059,3,1,1,-1,1245334,1,1,1,-1,1245512,3,1,1,-1,1245894,1,1,1,-1,1246108,3,2,10,10,1246385,3,1,19,19,1246563,1,2,10,10,1246738,1,1,19,19,1246872,3,2,12,12,1247203,3,1,17,17,1247385,1,2,12,12,1247516,1,2,12,12,1247709,3,2,12,12,1248087,1,1,17,17,1248303,3,1,1,-1,1248617,1,1,1,-1,1248773,3,2,20,20,1249226,3,1,21,21,1249426,1,2,20,20,1249552,1,1,21,21,1249735,3,1,1,-1,1250006,1,1,1,-1,1250168,3,2,24,24,1250449,3,2,26,26,1250750,3,1,23,23,1250920,1,2,26,26,1251125,1,2,24,24,1251363,1,1,23,23,1251531,3,1,1,-1,1251829,1,1,1,-1,1252039,3,1,1,-1,1252565,1,1,1,-1,1252781,3,2,33,33,1253035,3,1,26,26,1253216,1,2,33,33,1253376,1,1,26,26,1253546,3,1,1,-1,1253865,1,1,1,-1,1254052,3,2,33,33,1254327,3,1,37,37,1254492,3,1,38,38,1254701,1,2,33,33,1254896,1,1,38,38,1255052,1,1,37,37,1255277,3,1,1,-1,1255589,1,1,1,-1,1255765,3,1,1,-1,1256233,1,1,1,-1,1256435,3,2,8,8,1256839,3,1,31,31,1256987,1,2,8,8,1257146,1,1,31,31,1257322,3,2,7,7,1257724,3,1,27,27,1257952,1,2,7,7,1258073,1,1,27,27,1258267,3,2,-1,-1,1258987,3,1,1,-1,1259278,1,1,1,-1,1259491,3,2,32,32,1259794,3,1,24,24,1259965,1,2,32,32,1260125,1,1,24,24,1260303,3,1,1,-1,1260531,1,1,1,-1,1260708,3,2,33,33,1261001,3,1,18,18,1261172,1,2,33,33,1261351,1,1,18,18,1261524,3,1,1,-1,1261846,1,1,1,-1,1262022,3,2,33,33,1262493,3,1,38,38,1262668,1,2,33,33,1262831,1,1,38,38,1263004,3,1,1,-1,1263286,1,1,1,-1,1263480,3,2,24,24,1263874,3,2,20,20,1264435,3,1,28,28,1264609,1,2,20,20,1264788,1,2,24,24,1265154,1,1,28,28,1265352,3,1,1,-1,1265603,1,1,1,-1,1265795,3,2,18,18,1266063,3,1,36,36,1266236,1,2,18,18,1266379,1,1,36,36,1266571,3,1,1,-1,1267012,1,1,1,-1,1267216,3,2,21,21,1267657,3,1,15,15,1267856,1,2,21,21,1267994,1,1,15,15,1268165,3,2,18,18,1268539,3,1,20,20,1268748,1,2,18,18,1268903,1,1,20,20,1269056,3,2,16,16,1269429,3,1,15,15,1269636,1,2,16,16,1269787,1,1,15,15,1269958,3,1,1,-1,1270212,1,1,1,-1,1270418,3,2,21,21,1271013,3,1,5,5,1271186,1,2,21,21,1271384,1,1,5,5,1271532,3,2,24,24,1271777,3,1,8,8,1272009,1,2,24,24,1272116,1,1,8,8,1272308,3,1,1,-1,1272548,1,1,1,-1,1272793,3,2,27,27,1273059,3,1,5,5,1273202,1,2,27,27,1273354,1,1,5,5,1273536,3,2,29,29,1273802,3,1,3,3,1274110,1,2,29,29,1274313,1,1,3,3,1274510,3,2,34,34,1274852,3,1,6,6,1275058,1,2,34,34,1275196,1,1,6,6,1275379,3,1,1,-1,1275699,1,1,1,-1,1275895,3,1,1,-1,1276455,1,1,1,-1,1276696,3,2,4,4,1277127,3,1,18,18,1277298,1,2,4,4,1277463,1,1,18,18,1277638,3,2,5,5,1277979,3,1,13,13,1278169,1,2,5,5,1278288,1,1,13,13,1278480,3,2,-1,-1,1279065,3,1,1,-1,1279404,1,1,1,-1,1279641,3,2,19,19,1279948,3,1,9,9,1280107,1,2,19,19,1280244,1,1,9,9,1280426,3,2,15,15,1280833,3,1,3,3,1281041,1,2,15,15,1281210,1,1,3,3,1281373,3,2,1,-1,1281682,3,1,1,-1,1282461,1,1,1,-1,1282622,3,2,19,19,1283025,3,1,13,13,1283216,1,2,19,19,1283405,1,1,13,13,1283518,3,1,1,-1,1283776,1,1,1,-1,1284022,3,2,25,25,1284408,3,1,16,16,1284622,1,2,25,25,1284737,1,1,16,16,1284925,3,2,26,26,1285263,3,1,11,11,1285434,1,2,26,26,1285872,1,1,11,11,1286052,3,1,1,-1,1286440,1,1,1,-1,1286626,3,2,19,19,1286966,3,1,4,4,1287138,1,2,19,19,1287265,1,1,4,4,1287449,3,1,1,-1,1287735,1,1,1,-1,1287957,3,1,1,-1,1288353,1,1,1,-1,1288607,3,2,31,31,1288933,3,1,3,3,1289078,1,2,31,31,1289241,1,1,3,3,1289414,3,2,33,33,1289676,3,1,2,2,1289854,1,2,33,33,1290014,1,1,2,2,1290194,3,1,1,-1,1290498,1,1,1,-1,1290703,3,1,1,-1,1291118,1,1,1,-1,1291320,3,2,38,38,1291594,3,1,7,7,1291789,1,2,38,38,1291963,1,1,7,7,1292156,3,1,1,-1,1292532,1,1,1,-1,1292765,3,2,34,34,1293136,3,1,13,13,1293325,3,1,10,10,1293644,1,2,34,34,1293823,1,1,10,10,1293967,1,1,13,13,1294335,3,1,1,-1,1294594,1,1,1,-1,1294808,3,1,1,-1,1295273,1,1,1,-1,1295490,3,2,32,32,1295797,3,1,21,21,1295983,3,1,23,23,1296230,1,2,32,32,1296425,1,1,23,23,1296635,1,1,21,21,1296871,3,2,33,33,1297150,3,1,19,19,1297311,1,2,33,33,1297484,1,1,19,19,1297683,3,1,1,-1,1298022,1,1,1,-1,1298224,3,2,35,35,1298698,3,2,32,32,1299003,3,1,28,28,1299169,1,2,32,32,1299312,1,2,35,35,1299680,1,1,28,28,1299989,3,1,1,-1,1300304,1,1,1,-1,1300520,3,1,1,-1,1300964,1,1,1,-1,1301159,3,2,31,31,1301439,3,1,32,32,1301615,1,2,31,31,1301777,1,1,32,32,1301951,3,1,1,-1,1302242,1,1,1,-1,1302475,3,2,25,25,1302811,3,1,28,28,1302987,1,2,25,25,1303154,1,1,28,28,1303320,3,2,25,25,1303637,3,1,24,24,1303812,1,2,25,25,1303978,1,1,24,24,1304174,3,1,1,-1,1304401,1,1,1,-1,1304628,3,2,24,24,1305038,3,1,22,22,1305173,1,2,24,24,1305297,1,1,22,22,1305437,3,1,1,-1,1305843,1,1,1,-1,1306066,3,1,1,-1,1306462,1,1,1,-1,1306730,3,1,1,-1,1307204,1,1,1,-1,1307448,3,2,17,17,1307755,3,1,24,24,1307992,1,2,17,17,1308069,1,1,24,24,1308369,3,1,1,-1,1308811,1,1,1,-1,1309001,3,2,19,19,1309389,3,1,30,30,1309578,1,2,19,19,1309747,1,1,30,30,1309887,3,1,1,-1,1310154,1,1,1,-1,1310360,3,1,1,-1,1310740,1,1,1,-1,1310972,3,2,10,10,1311307,3,1,35,35,1311476,1,2,10,10,1311617,1,1,35,35,1311798,3,1,1,-1,1312075,1,1,1,-1,1312305,3,2,4,4,1312724,3,1,37,37,1312925,1,2,4,4,1313054,1,1,37,37,1313256,3,1,1,-1,1313522,1,1,1,-1,1313759,3,2,8,8,1314023,3,1,33,33,1314206,1,2,8,8,1314364,1,1,33,33,1314540,3,2,11,11,1314868,3,1,30,30,1315040,1,2,11,11,1315207,1,1,30,30,1315351,3,1,1,-1,1315612,1,1,1,-1,1315866,3,2,4,4,1316270,3,1,30,30,1316440,1,2,4,4,1316596,1,1,30,30,1316778,3,1,1,-1,1317078,1,1,1,-1,1317282,3,2,2,2,1317727,3,1,21,21,1317921,1,2,2,2,1318089,1,1,21,21,1318261,3,1,1,-1,1318537,1,1,1,-1,1318816,3,2,7,7,1319210,3,1,20,20,1319391,1,2,7,7,1319564,1,1,20,20,1319724,3,2,11,11,1320068,3,1,21,21,1320237,3,1,19,19,1320450,1,2,11,11,1320587,1,1,19,19,1320774,1,1,21,21,1321034,3,2,13,13,1321222,3,1,21,21,1321396,1,2,13,13,1321559,1,1,21,21,1321735,3,1,1,-1,1322033,1,1,1,-1,1322271,3,1,1,-1,1322582,1,1,1,-1,1322811,3,2,14,14,1323223,3,1,15,15,1323403,3,2,14,14,1323564,1,1,15,15,1323743,3,1,1,-1,1324088,1,1,1,-1,1324363,3,2,11,11,1324869,3,1,7,7,1325082,1,2,11,11,1325243,1,1,7,7,1325408,3,2,13,13,1325709,3,1,5,5,1325910,1,2,13,13,1326050,1,1,5,5,1326229,3,1,1,-1,1326502,1,1,1,-1,1326725,3,2,6,6,1327282,3,1,2,2,1327470,1,2,6,6,1327647,1,1,2,2,1327818,3,1,1,-1,1328113,1,1,1,-1,1328327,3,2,5,5,1328658,3,1,7,7,1328846,1,2,5,5,1328975,1,1,7,7,1329135,3,2,6,6,1329435,3,1,11,11,1329773,1,2,6,6,1330026,1,1,11,11,1330211,3,2,-1,-1,1330823,3,1,1,-1,1331084,1,1,1,-1,1331296,3,2,35,35,1331581,3,1,5,5,1331744,1,2,35,35,1331888,1,1,5,5,1332050,3,2,33,33,1332343,3,1,4,4,1332522,1,2,33,33,1332718,1,1,4,4,1332938,3,1,1,-1,1333163,1,1,1,-1,1333398,3,2,36,36,1333850,3,1,2,2,1334047,1,2,36,36,1334208,1,1,2,2,1334390,3,1,1,-1,1334685,1,1,1,-1,1334894,3,2,28,28,1335198,3,1,3,3,1335409,1,2,28,28,1335539,1,1,3,3,1335701,3,2,31,31,1335981,3,1,5,5,1336186,1,2,31,31,1336347,1,1,5,5,1336525,3,1,1,-1,1336926,1,1,1,-1,1337132,3,2,23,23,1337584,3,2,21,21,1337943,3,1,3,3,1338122,1,2,21,21,1338271,1,2,23,23,1338571,1,1,3,3,1338806,3,2,25,25,1339053,3,1,5,5,1339247,1,2,25,25,1339410,1,1,5,5,1339545,3,1,1,-1,1339900,1,1,1,-1,1340092,3,2,30,30,1340455,3,1,13,13,1340588,1,2,30,30,1340718,1,1,13,13,1340942,3,2,32,32,1341229,3,1,11,11,1341406,1,2,32,32,1341551,1,1,11,11,1341731,3,1,1,-1,1341963,1,1,1,-1,1342139,3,1,1,-1,1342575,1,1,1,-1,1342739,3,2,34,34,1343023,3,1,15,15,1343217,1,2,34,34,1343352,1,1,15,15,1343528,3,1,1,-1,1343871,1,1,1,-1,1344079,3,2,20,20,1344383,3,1,14,14,1344554,1,2,20,20,1344709,1,1,14,14,1344880,3,2,22,22,1345095,3,1,15,15,1345298,1,2,22,22,1345461,1,1,15,15,1345645,3,2,24,24,1345911,3,1,12,12,1346104,1,2,24,24,1346272,1,1,12,12,1346425,3,1,1,-1,1346727,1,1,1,-1,1346951,3,2,19,19,1347362,3,1,18,18,1347656,1,2,19,19,1347896,1,1,18,18,1348045,3,1,1,-1,1348343,1,1,1,-1,1348539,3,2,21,21,1348842,3,1,22,22,1349023,1,2,21,21,1349153,1,1,22,22,1349361,3,1,1,-1,1349670,1,1,1,-1,1349896,3,2,16,16,1350264,3,1,24,24,1350432,1,2,16,16,1350604,1,1,24,24,1350755,3,2,18,18,1350976,3,1,26,26,1351175,1,2,18,18,1351346,1,1,26,26,1351503,3,1,1,-1,1351797,1,1,1,-1,1351993,3,2,14,14,1352349,3,1,29,29,1352521,1,2,14,14,1352675,1,1,29,29,1352849,3,2,11,11,1353192,3,1,30,30,1353386,1,2,11,11,1353524,1,1,30,30,1353730,3,1,1,-1,1354045,1,1,1,-1,1354239,3,2,11,11,1354576,3,1,36,36,1354749,1,2,11,11,1354914,1,1,36,36,1355096,3,2,14,14,1355431,3,1,35,35,1355621,1,2,14,14,1355775,1,1,35,35,1355960,3,1,1,-1,1356223,1,1,1,-1,1356426,3,2,19,19,1356780,3,1,32,32,1356956,1,2,19,19,1357123,1,1,32,32,1357297,3,2,20,20,1357557,3,1,31,31,1357848,1,2,20,20,1358068,1,1,31,31,1358286,3,1,1,-1,1358578,1,1,1,-1,1358752,3,2,24,24,1359090,3,1,38,38,1359278,1,2,24,24,1359430,1,1,38,38,1359795,3,1,1,-1,1360150,1,1,1,-1,1360366,3,2,38,38,1360876,3,1,34,34,1361038,1,2,38,38,1361211,1,1,33,33,1361398,3,2,37,37,1361774,1,2,37,37,1362471,3,2,37,37,1362701,3,1,38,38,1362898,1,2,37,37,1363032,1,1,38,38,1363210,1,1,34,34,1363555,3,1,33,33,1363746,3,1,1,-1,1364053,1,1,1,-1,1364234,3,1,1,-1,1364693,1,1,1,-1,1364934,3,2,31,31,1365323,3,1,26,26,1365520,1,2,31,31,1365649,1,1,26,26,1365827,3,1,1,-1,1366298,1,1,1,-1,1366544,3,2,5,5,1367013,3,1,23,23,1367207,1,2,5,5,1367355,1,1,23,23,1367547,3,1,1,-1,1367771,1,1,1,-1,1367991,3,2,2,2,1368604,3,1,36,36,1368793,1,2,2,2,1369092,1,1,36,36,1369272,3,1,1,-1,1369641,1,1,1,-1,1369845,3,2,4,4,1370161,3,1,20,20,1370334,1,2,4,4,1370472,1,1,20,20,1370692,3,2,10,10,1371019,3,1,21,21,1371205,1,2,10,10,1371377,1,1,21,21,1371557,3,1,1,-1,1371811,1,1,1,-1,1372052,3,2,11,11,1372537,3,1,12,12,1372765,1,2,11,11,1372936,1,1,12,12,1373103,3,1,1,-1,1373371,1,1,1,-1,1373584,3,2,2,2,1374096,3,1,7,7,1374264,1,2,2,2,1374432,1,1,7,7,1374611,3,1,1,-1,1374866,1,1,1,-1,1375072,3,2,-1,-1,1375824,3,1,1,-1,1376061,1,1,1,-1,1376311,3,2,36,36,1376606,3,2,33,33,1376953,3,2,34,34,1377435,3,2,37,37,1377795,3,1,10,10,1377961,1,2,37,37,1378168,1,2,34,34,1378505,1,1,10,10,1378691,1,2,36,36,1378984,1,2,33,33,1379298,3,1,1,-1,1379602,1,1,1,-1,1379763,3,2,33,33,1380072,3,1,12,12,1380238,1,2,33,33,1380390,1,1,12,12,1380579,3,2,38,38,1380987,3,1,6,6,1381290,1,2,38,38,1381502,1,1,6,6,1381706,1,1,1,-1,1382221,1,1,1,-1,1382553,3,1,1,-1,1382981,3,1,1,-1,1383194,3,1,1,-1,1383426,1,1,1,-1,1383937,3,2,32,32,1384232,3,1,23,23,1384407,1,2,32,32,1384541,1,1,23,23,1384713,3,1,1,-1,1385022,1,1,1,-1,1385223,3,2,32,32,1385528,3,1,31,31,1385701,1,2,32,32,1385843,1,1,31,31,1386011,3,2,38,38,1386370,3,1,34,34,1386596,1,2,38,38,1386740,1,1,34,34,1386917,3,1,1,-1,1387224,1,1,1,-1,1387449,3,2,23,23,1387807,3,1,30,30,1388051,1,2,23,23,1388163,1,1,30,30,1388386,3,2,17,17,1388950,3,1,30,30,1389117,1,2,17,17,1389258,1,1,30,30,1389435,3,1,1,-1,1389813,1,1,1,-1,1390034,3,2,25,25,1390505,1,2,26,26,1390816,3,2,26,26,1391288,3,1,18,18,1391473,1,2,25,25,1391632,1,1,18,18,1391827,3,1,1,-1,1392098,1,1,1,-1,1392244,3,2,18,18,1392544,3,1,13,13,1392712,1,2,18,18,1392852,1,1,13,13,1393032,3,2,19,19,1393193,3,1,14,14,1393371,1,2,19,19,1393544,1,1,14,14,1393698,3,1,1,-1,1394130,1,1,1,-1,1394309,3,2,2,2,1394693,3,1,10,10,1394880,1,2,2,2,1395032,1,1,10,10,1395191,3,2,2,2,1395579,3,1,3,3,1395798,1,2,2,2,1395935,1,1,3,3,1396156,3,1,1,-1,1396600,1,1,1,-1,1396727,3,2,2,2,1397243,3,1,26,26,1397459,1,2,2,2,1397618,1,1,26,26,1397803,3,2,4,4,1398115,3,1,22,22,1398311,1,2,3,3,1398451,3,2,3,3,1399054,1,2,4,4,1399313,1,1,22,22,1399498,3,2,2,2,1399779,3,1,21,21,1399968,1,2,2,2,1400145,1,1,21,21,1400324,3,2,1,-1,1400609,3,1,1,-1,1401099,1,1,1,-1,1401296,3,1,1,-1,1401802,1,1,1,-1,1402060,3,1,1,-1,1402449,1,1,1,-1,1402714,3,2,-1,-1,1403633,3,1,1,-1,1403871,1,1,1,-1,1404113,3,2,35,35,1404546,3,1,7,7,1404724,1,2,35,35,1404865,1,1,7,7,1405033,3,1,1,-1,1405306,1,1,1,-1,1405509,3,1,1,-1,1405978,1,1,1,-1,1406226,3,1,1,-1,1406668,1,1,1,-1,1406891,3,2,32,32,1407233,3,1,20,20,1407409,1,2,32,32,1407573,1,1,20,20,1407716,3,1,1,-1,1408020,1,1,1,-1,1408240,3,1,1,-1,1408679,1,1,1,-1,1408890,3,1,1,-1,1409332,1,1,1,-1,1409545,3,2,18,18,1409838,3,1,22,22,1410122,1,2,18,18,1410428,1,1,22,22,1410634,3,2,19,19,1410938,3,1,19,19,1411115,1,2,19,19,1411273,1,1,19,19,1411418,3,1,1,-1,1411745,1,1,1,-1,1411944,3,2,20,20,1412533,3,1,27,27,1412733,1,2,20,20,1412897,1,1,27,27,1413046,3,1,1,-1,1413321,1,1,1,-1,1413555,3,2,29,29,1413850,3,1,28,28,1414033,1,2,29,29,1414159,1,1,28,28,1414332,3,1,1,-1,1414633,1,1,1,-1,1414777,3,2,33,33,1415305,3,2,32,32,1415459,3,1,32,32,1415647,1,2,32,32,1415852,1,2,33,33,1416059,1,1,32,32,1416269,3,1,1,-1,1416566,1,1,1,-1,1416810,3,2,38,38,1417386,3,1,24,24,1417622,1,2,38,38,1418043,1,1,24,24,1418219,3,1,1,-1,1418598,1,1,1,-1,1418816,3,1,1,-1,1419243,1,1,1,-1,1419487,3,2,28,28,1419832,3,1,37,37,1420026,1,2,28,28,1420180,1,1,37,37,1420338,3,2,31,31,1420640,3,1,36,36,1420809,1,2,31,31,1420981,1,1,36,36,1421152,3,1,1,-1,1421455,1,1,1,-1,1421656,3,2,23,23,1421954,3,1,38,38,1422134,1,2,23,23,1422280,1,1,38,38,1422479,3,2,24,24,1422672,3,1,39,39,1422855,1,2,24,24,1423008,1,1,39,39,1423192,3,1,1,-1,1423497,1,1,1,-1,1423703,3,2,17,17,1423998,3,1,37,37,1424210,1,2,17,17,1424306,1,1,37,37,1424575,3,1,1,-1,1424818,1,1,1,-1,1425012,3,2,20,20,1425401,3,1,35,35,1425572,1,2,20,20,1425727,1,1,35,35,1425897,3,2,16,16,1426347,3,1,34,34,1426510,1,2,16,16,1426640,1,1,34,34,1426824,3,1,1,-1,1427117,1,1,1,-1,1427305,3,2,11,11,1427698,3,1,35,35,1427864,1,2,11,11,1427997,1,1,35,35,1428186,3,1,1,-1,1428432,1,1,1,-1,1428692,3,2,2,2,1429131,3,1,34,34,1429294,1,2,2,2,1429441,1,1,34,34,1429658,3,1,1,-1,1429966,1,1,1,-1,1430235,3,2,13,13,1430683,3,1,26,26,1430868,1,2,13,13,1431016,1,1,26,26,1431200,3,1,1,-1,1431440,1,1,1,-1,1431666,3,2,8,8,1432104,3,1,26,26,1432308,1,2,8,8,1432478,1,1,26,26,1432620,3,1,1,-1,1432895,1,1,1,-1,1433128,3,2,12,12,1433538,3,1,22,22,1433735,1,2,12,12,1433874,1,1,22,22,1434076,3,1,1,-1,1434380,1,1,1,-1,1434598,3,2,12,12,1435036,3,1,18,18,1435204,1,2,12,12,1435368,1,1,18,18,1435538,3,1,1,-1,1435820,1,1,1,-1,1436084,3,2,8,8,1436366,3,1,18,18,1436560,1,2,8,8,1436738,1,1,18,18,1436901,3,2,4,4,1437342,3,1,16,16,1437518,1,2,4,4,1437651,1,1,16,16,1437885,3,1,1,-1,1438142,1,1,1,-1,1438365,3,2,6,6,1438818,3,1,9,9,1438970,1,2,6,6,1439131,1,1,9,9,1439313,3,2,7,7,1439541,3,1,8,8,1439715,1,2,7,7,1439890,1,1,8,8,1440091,3,1,1,-1,1440310,1,1,1,-1,1440562,3,2,2,2,1441034,3,1,4,4,1441208,1,2,2,2,1441345,1,1,4,4,1441549,3,2,7,7,1442091,3,1,4,4,1442315,1,1,4,4,1442588,1,2,7,7,1442764,3,2,6,6,1442967,3,1,4,4,1443136,1,2,6,6,1443305,1,1,4,4,1443450,3,1,1,-1,1443721,1,1,1,-1,1443942,3,1,1,-1,1444352,1,1,1,-1,1444622,3,2,15,15,1444964,3,1,4,4,1445202,1,1,4,4,1445453,3,1,4,4,1445909,1,2,15,15,1446491,1,1,4,4,1446702,3,2,17,17,1446934,3,1,6,6,1447107,1,2,17,17,1447275,1,1,6,6,1447448,3,1,1,-1,1447681,1,1,1,-1,1447862,3,2,22,22,1448231,3,1,6,6,1448396,1,2,22,22,1448593,1,1,6,6,1448779,3,1,1,-1,1449102,1,1,1,-1,1449293,3,1,1,-1,1449718,1,1,1,-1,1449971,3,2,23,23,1450302,3,1,10,10,1450464,1,2,23,23,1450630,1,1,10,10,1450798,3,1,1,-1,1451087,1,1,1,-1,1451347,3,2,31,31,1451853,3,1,4,4,1452004,1,2,31,31,1452130,1,1,4,4,1452329,3,1,1,-1,1452641,1,1,1,-1,1452929,3,2,-1,-1,1453362,3,1,1,-1,1453769,1,1,1,-1,1454016,3,1,1,-1,1454508,1,1,1,-1,1454811,3,2,39,39,1455363,3,1,10,10,1455566,1,2,39,39,1455716,1,1,10,10,1455886,3,1,1,-1,1456202,1,1,1,-1,1456417,3,2,38,38,1456684,3,1,16,16,1456848,1,2,38,38,1457015,1,1,16,16,1457188,3,1,1,-1,1457520,1,1,1,-1,1457713,3,2,31,31,1458024,3,1,19,19,1458172,1,2,31,31,1458332,1,1,19,19,1458496,3,1,1,-1,1458772,1,1,1,-1,1459039,3,2,24,24,1459400,3,1,20,20,1459552,1,2,24,24,1459732,1,1,20,20,1459892,3,1,1,-1,1460196,1,1,1,-1,1460396,3,1,1,-1,1460844,1,1,1,-1,1461045,3,1,1,-1,1461433,1,1,1,-1,1461725,3,2,36,36,1462047,3,1,28,28,1462243,1,2,36,36,1462410,1,1,28,28,1462575,3,2,38,38,1462876,3,1,25,25,1463061,1,2,38,38,1463223,1,1,25,25,1463395,3,1,1,-1,1463789,1,1,1,-1,1464022,3,2,36,36,1464310,3,1,37,37,1464483,1,2,36,36,1464645,1,1,37,37,1464844,3,2,38,38,1465111,3,1,36,36,1465422,1,2,38,38,1465634,1,1,36,36,1465877,3,1,1,-1,1466491,1,1,1,-1,1466678,3,2,28,28,1467215,3,1,37,37,1467466,1,2,28,28,1467637,1,1,37,37,1467807,3,1,1,-1,1468105,1,1,1,-1,1468308,3,2,17,17,1468577,3,1,39,39,1468749,1,2,17,17,1468883,1,1,39,39,1469097,3,1,1,-1,1469405,1,1,1,-1,1469648,3,2,15,15,1469947,3,1,31,31,1470125,1,2,15,15,1470254,1,1,31,31,1470423,3,1,1,-1,1470760,1,1,1,-1,1470928,3,2,6,6,1471322,3,1,32,32,1471441,1,2,6,6,1471593,1,1,32,32,1471761,3,1,1,-1,1472207,1,1,1,-1,1472417,3,2,12,12,1472715,3,1,21,21,1472878,1,2,12,12,1473044,1,1,21,21,1473223,3,1,1,-1,1473486,1,1,1,-1,1473705,3,1,1,-1,1474073,1,1,1,-1,1474324,3,2,6,6,1474686,3,2,5,5,1474854,3,1,12,12,1475051,1,2,5,5,1475234,1,2,6,6,1475489,1,1,12,12,1475663,3,1,1,-1,1475954,1,1,1,-1,1476170,3,2,3,3,1476670,3,1,2,2,1476883,1,2,3,3,1477039,1,1,2,2,1477179,3,2,7,7,1477494,3,1,4,4,1477665,1,2,7,7,1477834,1,1,4,4,1478006,3,1,1,-1,1478267,1,1,1,-1,1478470,3,2,12,12,1478871,3,1,5,5,1479043,1,2,12,12,1479213,1,1,5,5,1479393,3,1,1,-1,1479642,1,1,1,-1,1479845,3,2,19,19,1480380,3,1,5,5,1480547,1,2,19,19,1480711,1,1,5,5,1480881,3,1,1,-1,1481187,1,1,1,-1,1481403,3,2,16,16,1481701,3,1,12,12,1481874,1,2,16,16,1482018,1,1,12,12,1482206,3,1,1,-1,1482455,1,1,1,-1,1482688,3,2,26,26,1483230,3,1,2,2,1483437,1,2,26,26,1483573,1,1,2,2,1483740,3,1,1,-1,1484072,1,1,1,-1,1484323,3,1,1,-1,1484723,1,1,1,-1,1485056,3,2,-1,-1,1485842,3,1,1,-1,1486144,1,1,1,-1,1486343,3,2,31,31,1486647,3,1,10,10,1486826,1,2,31,31,1486951,1,1,10,10,1487123,3,2,34,34,1487400,3,1,9,9,1487565,3,1,8,8,1487777,1,2,34,34,1487911,1,1,8,8,1488158,1,1,9,9,1488312,3,1,1,-1,1488619,1,1,1,-1,1488828,3,2,33,33,1489511,3,1,14,14,1489706,1,2,33,33,1489844,1,1,14,14,1490016,3,1,1,-1,1490285,1,1,1,-1,1490480,3,2,27,27,1490879,3,2,26,26,1491055,3,1,18,18,1491257,1,2,27,27,1491462,1,2,26,26,1491649,1,1,18,18,1491830,3,2,32,32,1492205,3,1,17,17,1492373,1,2,32,32,1492517,1,1,17,17,1492690,3,1,1,-1,1493089,1,1,1,-1,1493301,3,2,28,28,1493745,3,1,29,29,1493943,1,2,28,28,1494079,1,1,29,29,1494277,3,2,34,34,1494719,3,1,26,26,1494920,1,1,26,26,1495252,3,1,26,26,1495633,1,2,34,34,1495804,1,1,26,26,1496008,3,1,1,-1,1496348,1,1,1,-1,1496507,3,2,37,37,1496821,3,1,37,37,1497026,1,2,37,37,1497192,1,1,37,37,1497370,3,1,1,-1,1497681,1,1,1,-1,1497885,3,2,17,17,1498316,3,1,39,39,1498487,1,2,17,17,1498649,1,1,39,39,1498802,3,2,13,13,1499203,3,1,37,37,1499371,1,2,13,13,1499535,1,1,37,37,1499744,3,1,1,-1,1500122,1,1,1,-1,1500328,3,2,16,16,1500727,3,2,12,12,1501166,3,1,22,22,1501335,1,2,12,12,1501505,1,2,16,16,1502049,1,1,22,22,1502212,3,1,1,-1,1502461,1,1,1,-1,1502632,3,2,23,23,1502923,3,1,23,23,1503106,1,2,23,23,1503248,1,1,23,23,1503472,3,1,1,-1,1503749,1,1,1,-1,1503950,3,2,16,16,1504330,3,1,16,16,1504493,1,2,16,16,1504646,1,1,16,16,1504806,3,1,1,-1,1505072,1,1,1,-1,1505276,3,2,8,8,1505543,3,1,18,18,1505720,1,2,8,8,1505885,1,1,18,18,1506059,3,1,1,-1,1506395,1,1,1,-1,1506598,3,2,5,5,1506916,3,1,9,9,1507089,1,2,5,5,1507244,1,1,9,9,1507412,3,1,1,-1,1507679,1,1,1,-1,1507886,3,2,10,10,1508164,3,1,6,6,1508324,1,2,10,10,1508501,1,1,6,6,1508669,3,1,1,-1,1508969,1,1,1,-1,1509214,3,2,15,15,1509482,3,1,9,9,1509651,1,2,15,15,1509817,1,1,9,9,1509987,3,2,16,16,1510203,3,1,7,7,1510404,1,2,16,16,1510566,1,2,16,16,1510742,3,2,15,15,1511049,1,2,15,15,1511647,1,2,16,16,1511864,1,2,16,16,1512365,1,2,16,16,1512531,1,1,7,7,1512843,3,2,15,15,1513110,3,1,4,4,1513288,1,2,15,15,1513412,1,1,4,4,1513651,3,1,1,-1,1513900,1,1,1,-1,1514136,3,2,26,26,1514816,3,1,2,2,1514995,1,2,26,26,1515165,1,1,2,2,1515354,3,2,-1,-1,1516239,3,1,1,-1,1516444,1,1,1,-1,1516646,3,2,36,36,1517015,3,1,14,14,1517193,1,2,36,36,1517356,1,1,14,14,1517525,3,2,1,-1,1517776,3,1,1,-1,1518202,1,1,1,-1,1518447,3,2,32,32,1518777,3,1,14,14,1518956,1,2,32,32,1519120,1,1,14,14,1519271,3,2,30,30,1519628,3,1,12,12,1519803,1,2,30,30,1519970,1,1,12,12,1520150,3,2,35,35,1520494,3,1,11,11,1520691,1,2,35,35,1520863,1,1,11,11,1521067,3,1,1,-1,1521497,1,1,1,-1,1521717,3,2,36,36,1521981,3,1,7,7,1522144,1,2,36,36,1522288,1,1,7,7,1522482,3,1,1,-1,1522696,1,1,1,-1,1522893,3,1,1,-1,1523269,1,1,1,-1,1523540,3,2,30,30,1523945,3,1,8,8,1524248,1,2,30,30,1524563,1,1,8,8,1524759,3,1,1,-1,1524995,1,1,1,-1,1525268,3,1,1,-1,1525544,1,1,1,-1,1525740,3,2,29,29,1526258,3,1,2,2,1526503,1,2,29,29,1526689,1,1,2,2,1526860,3,1,1,-1,1527266,1,1,1,-1,1527480,3,2,15,15,1527759,3,1,7,7,1527932,1,2,15,15,1528092,1,1,7,7,1528285,3,2,17,17,1528596,3,1,2,2,1528806,1,2,17,17,1528979,1,1,2,2,1529173,3,1,1,-1,1529504,1,1,1,-1,1529724,3,2,11,11,1530194,3,2,13,13,1530428,3,1,10,10,1530621,1,2,13,13,1530773,1,2,11,11,1531045,1,1,10,10,1531244,3,1,1,-1,1531578,1,1,1,-1,1531794,3,2,2,2,1532277,3,1,6,6,1532463,1,2,2,2,1532599,1,1,6,6,1532827,3,1,1,-1,1533145,1,1,1,-1,1533362,3,2,7,7,1533656,3,1,12,12,1533827,1,2,7,7,1533958,1,1,12,12,1534155,3,2,6,6,1534363,3,1,13,13,1534560,1,2,6,6,1534725,1,1,13,13,1534896,3,1,1,-1,1535151,1,1,1,-1,1535407,3,2,6,6,1535689,3,1,15,15,1535898,1,2,6,6,1536070,1,1,15,15,1536267,3,2,4,4,1536531,3,1,14,14,1536716,1,2,4,4,1536877,1,1,14,14,1537049,3,1,1,-1,1537394,1,1,1,-1,1537600,3,2,15,15,1537875,3,2,14,14,1538029,3,1,15,15,1538272,1,2,14,14,1538439,1,2,15,15,1538872,1,1,15,15,1539079,3,1,1,-1,1539364,1,1,1,-1,1539595,3,2,23,23,1540037,3,1,13,13,1540211,1,2,23,23,1540352,1,1,13,13,1540551,3,1,1,-1,1540806,1,1,1,-1,1540985,3,2,25,25,1541282,3,1,14,14,1541438,1,2,25,25,1541643,1,1,14,14,1541779,3,2,27,27,1542068,1,2,27,27,1542486,3,2,28,28,1542695,3,1,15,15,1542912,1,2,28,28,1543028,1,1,15,15,1543301,3,1,1,-1,1543605,1,1,1,-1,1543809,3,2,30,30,1544111,3,1,20,20,1544331,3,1,15,15,1544625,1,1,15,15,1545096,3,1,17,17,1545374,1,2,30,30,1545539,1,1,17,17,1545725,1,1,20,20,1546099,3,1,1,-1,1546358,1,1,1,-1,1546528,3,2,39,39,1547406,3,1,22,22,1547639,1,2,39,39,1547810,1,1,22,22,1548050,3,1,1,-1,1548559,1,1,1,-1,1548734,3,2,33,33,1549281,3,1,25,25,1549462,1,2,33,33,1549602,1,1,25,25,1549871,3,1,1,-1,1550553,1,1,1,-1,1550777,3,2,39,39,1551281,3,1,28,28,1551488,1,2,39,39,1551631,1,1,28,28,1551841,3,1,1,-1,1552176,1,1,1,-1,1552452,3,2,37,37,1552855,3,1,34,34,1553050,1,2,37,37,1553209,1,1,34,34,1553396,3,1,1,-1,1553727,1,1,1,-1,1553943,3,2,35,35,1554285,3,1,39,39,1554442,1,2,35,35,1554579,1,1,39,39,1554780,3,2,38,38,1555085,3,1,38,38,1555258,1,2,38,38,1555439,1,1,38,38,1555644,3,1,1,-1,1556041,1,1,1,-1,1556249,3,2,29,29,1556648,3,1,35,35,1556851,3,1,38,38,1557203,1,2,29,29,1557362,1,1,38,38,1557564,1,1,35,35,1557884,3,1,1,-1,1558168,1,1,1,-1,1558379,3,2,25,25,1558662,3,1,37,37,1558855,1,2,25,25,1559034,1,1,37,37,1559211,3,1,1,-1,1559539,1,1,1,-1,1559702,3,1,1,-1,1560217,1,1,1,-1,1560481,3,2,12,12,1560795,3,1,32,32,1560960,1,2,12,12,1561125,1,1,32,32,1561319,3,1,1,-1,1561605,1,1,1,-1,1561809,3,2,16,16,1562119,3,1,26,26,1562446,1,2,16,16,1562681,1,1,26,26,1562894,3,1,1,-1,1563271,1,1,1,-1,1563508,3,2,5,5,1563843,3,1,26,26,1564022,1,2,5,5,1564171,1,1,26,26,1564343,3,1,1,-1,1564587,1,1,1,-1,1564800,3,2,8,8,1565205,3,1,22,22,1565387,1,2,8,8,1565537,1,1,22,22,1565685,3,2,9,9,1565845,3,1,23,23,1566053,1,2,9,9,1566202,1,1,23,23,1566385,3,1,1,-1,1566671,1,1,1,-1,1566866,3,2,9,9,1567255,3,1,29,29,1567418,1,2,9,9,1567563,1,1,29,29,1567753,3,1,1,-1,1568135,1,1,1,-1,1568400,3,2,5,5,1568942,3,1,35,35,1569111,1,2,5,5,1569251,1,1,35,35,1569432,3,1,1,-1,1569722,1,1,1,-1,1570233,3,2,2,2,1570540,3,1,39,39,1570705,1,2,2,2,1570844,1,1,39,39,1571062,3,1,1,-1,1571327,1,1,1,-1,1571504,3,1,1,-1,1572139,1,1,1,-1,1572366,3,2,13,13,1573018,3,1,19,19,1573268,1,2,13,13,1573392,1,1,19,19,1573620,3,1,1,-1,1573922,1,1,1,-1,1574141,3,2,11,11,1574579,3,1,14,14,1574966,1,2,11,11,1575133,1,1,14,14,1575377,3,1,1,-1,1575704,1,1,1,-1,1575905,3,1,1,-1,1576345,1,1,1,-1,1576598,3,1,1,-1,1576905,1,1,1,-1,1577145,3,2,-1,-1,1577804,3,1,1,-1,1578180,1,1,1,-1,1578380,3,2,32,32,1578819,3,2,29,29,1579440,3,1,6,6,1579603,1,2,29,29,1579777,1,2,32,32,1580173,1,1,6,6,1580376,3,1,1,-1,1580616,1,1,1,-1,1580832,3,2,35,35,1581164,3,1,3,3,1581414,1,1,3,3,1581654,3,1,3,3,1582104,1,2,35,35,1582346,1,1,3,3,1582500,3,1,1,-1,1582810,1,1,1,-1,1583013,3,2,27,27,1583395,3,1,3,3,1583605,1,2,27,27,1583738,1,1,3,3,1583906,3,1,1,-1,1584301,1,1,1,-1,1584505,3,1,1,-1,1584843,1,1,1,-1,1585032,3,1,1,-1,1585498,1,1,1,-1,1585764,3,2,7,7,1586069,3,1,13,13,1586232,1,2,7,7,1586371,1,1,13,13,1586544,3,2,9,9,1586815,3,2,8,8,1586983,3,1,12,12,1587348,1,2,9,9,1587575,1,2,8,8,1587770,1,1,12,12,1587943,3,1,1,-1,1588302,1,1,1,-1,1588509,3,2,9,9,1588787,3,1,19,19,1589020,1,2,9,9,1589171,1,1,19,19,1589326,3,1,1,-1,1589628,1,1,1,-1,1589840,3,2,8,8,1590327,3,1,24,24,1590614,1,2,8,8,1590753,1,1,24,24,1590953,3,1,1,-1,1591426,1,1,1,-1,1591634,3,2,5,5,1591973,3,2,3,3,1592280,3,1,36,36,1592483,1,2,3,3,1592624,1,2,5,5,1592894,1,1,36,36,1593071,3,1,1,-1,1593309,1,1,1,-1,1593512,3,1,1,-1,1593940,1,1,1,-1,1594147,3,1,1,-1,1594460,1,1,1,-1,1594704,3,2,20,20,1595107,3,1,39,39,1595306,1,2,20,20,1595449,1,1,39,39,1595644,3,1,1,-1,1595916,1,1,1,-1,1596103,3,2,26,26,1596565,3,1,35,35,1596771,1,2,26,26,1596935,1,1,35,35,1597107,3,1,1,-1,1598016,1,1,1,-1,1598225,3,1,1,-1,1598698,1,1,1,-1,1598900,3,2,36,36,1599316,3,1,20,20,1599541,1,2,36,36,1599684,1,1,20,20,1599888,3,1,1,-1,1600123,1,1,1,-1,1600366,3,2,20,20,1600936,3,1,15,15,1601108,1,2,20,20,1601241,1,1,15,15,1601456,3,1,1,-1,1601747,1,1,1,-1,1601984,3,2,-1,-1,1602510,3,1,1,-1,1602815,1,1,1,-1,1603075,3,2,34,34,1603381,3,1,2,2,1603587,1,2,34,34,1603723,1,1,2,2,1603890,3,1,1,-1,1604247,1,1,1,-1,1604497,3,2,27,27,1604787,3,1,8,8,1604964,1,2,27,27,1605099,1,1,8,8,1605304,3,1,1,-1,1605680,1,1,1,-1,1605944,3,2,14,14,1606431,3,1,6,6,1606731,1,2,14,14,1607005,1,1,6,6,1607181,3,1,1,-1,1607438,1,1,1,-1,1607616,3,2,7,7,1607913,3,1,5,5,1608079,1,2,7,7,1608220,1,1,5,5,1608391,3,1,1,-1,1608697,1,1,1,-1,1608863,3,2,8,8,1609209,3,1,10,10,1609378,1,2,8,8,1609505,1,1,10,10,1609682,3,2,11,11,1610030,3,1,15,15,1610224,1,2,11,11,1610406,1,1,15,15,1610600,3,2,22,22,1611079,3,1,15,15,1611321,1,2,22,22,1611513,1,1,15,15,1611694,3,1,1,-1,1612100,1,1,1,-1,1612278,3,2,5,5,1612622,3,1,25,25,1612813,1,2,5,5,1612952,1,1,25,25,1613111,3,1,1,-1,1613454,1,1,1,-1,1613624,3,2,7,7,1613963,3,1,36,36,1614133,1,2,7,7,1614275,1,1,36,36,1614443,3,2,8,8,1614656,1,2,8,8,1614993,3,2,9,9,1615165,3,1,37,37,1615359,1,2,9,9,1615524,1,1,37,37,1615696,1,1,38,38,1616073,3,1,38,38,1616550,3,2,4,4,1616851,3,1,39,39,1617085,1,2,4,4,1617202,1,1,39,39,1617401,3,1,1,-1,1617763,1,1,1,-1,1617944,3,2,21,21,1618253,3,1,35,35,1618427,1,2,21,21,1618583,1,1,35,35,1618750,3,2,24,24,1619073,3,1,38,38,1619307,1,2,24,24,1619435,1,1,38,38,1619651,3,1,1,-1,1619951,1,1,1,-1,1620092,3,2,32,32,1620432,3,1,39,39,1620630,1,2,32,32,1620804,1,1,39,39,1621006,3,1,1,-1,1621354,1,1,1,-1,1621544,3,2,34,34,1621830,3,1,31,31,1622003,1,2,34,34,1622198,1,1,31,31,1622361,3,2,36,36,1622715,3,1,27,27,1622909,1,2,36,36,1623122,1,1,27,27,1623276,3,1,1,-1,1623822,1,1,1,-1,1624045,3,2,34,34,1624303,3,1,18,18,1624510,1,2,34,34,1624651,1,1,18,18,1624846,3,1,1,-1,1625310,1,1,1,-1,1625483,3,2,-1,-1,1626201,3,1,1,-1,1626474,1,1,1,-1,1626681,3,2,31,31,1626957,3,1,6,6,1627120,1,2,31,31,1627319,1,1,6,6,1627467,3,1,1,-1,1627735,1,1,1,-1,1627930,3,2,37,37,1628220,3,1,5,5,1628378,1,2,37,37,1628545,1,1,5,5,1628781,3,1,1,-1,1629358,1,1,1,-1,1629536,3,2,7,7,1630100,3,1,6,6,1630308,1,2,7,7,1630477,1,1,6,6,1630689,3,1,1,20,1631571,2,2,1,1,1631835,1,1,1,20,1632009,3,1,-20,-1,1632214,2,2,1,1,1632456,1,1,-20,-1,1632644,3,1,1,-1,1633258,1,1,1,-1,1633472,3,2,12,12,1633776,3,1,19,19,1633948,1,2,12,12,1634100,1,1,19,19,1634281,3,1,1,-1,1634514,1,1,1,-1,1634745,3,1,1,-1,1635153,1,1,1,-1,1635405,3,1,1,-1,1636052,1,1,1,-1,1636247,3,2,23,23,1636525,3,1,14,14,1636681,1,2,23,23,1636855,1,1,14,14,1637021,3,2,24,24,1637259,3,1,13,13,1637473,1,2,24,24,1637599,1,1,13,13,1637804,3,1,1,-1,1638076,1,1,1,-1,1638284,3,2,27,27,1638616,3,1,14,14,1638798,1,2,27,27,1639004,1,1,14,14,1639126,3,1,1,-1,1639378,1,1,1,-1,1639576,3,2,29,29,1640024,3,1,10,10,1640192,1,2,29,29,1640348,1,1,10,10,1640519,3,2,32,32,1640817,3,1,10,10,1640977,3,1,9,9,1641197,1,2,32,32,1641374,1,1,9,9,1641730,1,1,10,10,1641893,3,1,1,-1,1642191,1,1,1,-1,1642444,3,2,38,38,1642841,3,1,6,6,1643031,1,2,38,38,1643209,1,1,6,6,1643388,3,2,34,34,1643794,3,1,4,4,1643964,1,2,34,34,1644131,1,1,4,4,1644292,3,1,1,-1,1644613,1,1,1,-1,1644847,3,2,27,27,1645531,3,1,9,9,1645880,1,2,27,27,1646136,1,1,9,9,1646329,3,1,1,-1,1647041,1,1,1,-1,1647199,3,2,30,30,1647481,3,1,4,4,1647676,1,2,30,30,1647862,1,1,4,4,1647984,3,1,1,-1,1648341,1,1,1,-1,1648590,3,1,1,-1,1649067,1,1,1,-1,1649349,3,1,1,-1,1649930,1,1,1,-1,1650242,3,2,16,16,1650676,3,1,8,8,1650862,1,2,16,16,1650990,1,1,8,8,1651150,3,2,18,18,1651485,3,1,10,10,1651701,1,2,18,18,1651866,1,1,10,10,1652033,3,2,19,19,1652199,3,1,11,11,1652512,1,2,19,19,1652774,1,1,11,11,1653020,3,2,23,23,1653365,3,1,11,11,1653878,1,2,23,23,1654031,1,1,11,11,1654215,3,1,1,-1,1654546,1,1,1,-1,1654747,3,2,15,15,1655058,3,1,11,11,1655216,1,2,15,15,1655360,1,1,11,11,1655561,3,2,16,16,1655760,3,1,14,14,1656047,1,2,16,16,1656208,1,1,14,14,1656417,3,1,1,-1,1656716,1,1,1,-1,1656917,3,2,11,11,1657267,3,1,9,9,1657444,1,2,11,11,1657600,1,1,9,9,1657780,3,1,1,-1,1658077,1,1,1,-1,1658309,3,1,1,-1,1658662,1,1,1,-1,1658892,3,2,2,2,1659229,3,1,5,5,1659406,1,2,2,2,1659598,1,1,5,5,1659774,3,2,2,2,1660150,3,1,9,9,1660352,1,2,2,2,1660510,1,1,9,9,1660691,3,1,1,-1,1660958,1,1,1,-1,1661156,3,2,3,3,1661475,3,1,11,11,1661695,1,2,3,3,1661809,1,1,11,11,1662022,3,1,1,-1,1662314,1,1,1,-1,1662530,3,2,2,2,1662865,3,1,16,16,1663084,1,2,2,2,1663231,1,1,16,16,1663418,3,1,1,-1,1663683,1,1,1,-1,1663947,3,2,9,9,1664396,3,1,11,11,1664559,1,2,9,9,1664733,1,1,11,11,1664897,3,1,1,-1,1665207,1,1,1,-1,1665437,3,1,1,-1,1665950,1,1,1,-1,1666178,3,2,2,2,1666764,3,1,25,25,1666976,1,2,2,2,1667105,1,1,25,25,1667329,3,2,5,5,1667673,3,1,22,22,1667906,1,2,5,5,1668045,1,1,22,22,1668318,3,1,1,-1,1668578,1,1,1,-1,1668774,3,2,2,2,1669096,3,1,29,29,1669257,3,1,30,30,1669486,1,2,2,2,1669654,1,1,30,30,1669857,1,1,29,29,1670065,3,1,1,-1,1670508,1,1,1,-1,1670750,3,1,1,-1,1671149,1,1,1,-1,1671369,3,2,6,6,1671667,3,2,5,5,1671842,3,1,33,33,1672007,1,2,6,6,1672247,1,2,5,5,1672434,1,1,33,33,1672613,3,1,1,-1,1672855,1,1,1,-1,1673131,3,2,8,8,1673524,3,1,30,30,1673740,1,2,8,8,1673900,1,1,30,30,1674068,3,1,1,-1,1674343,1,1,1,-1,1674610,3,1,1,-1,1674963,1,1,1,-1,1675190,3,2,14,14,1675838,3,1,25,25,1676076,1,2,14,14,1676242,1,1,25,25,1676447,3,1,1,-1,1676676,1,1,1,-1,1676908,3,1,1,-1,1677293,1,1,1,-1,1677557,3,1,1,-1,1677909,1,1,1,-1,1678140,3,2,21,21,1678473,3,1,21,21,1678654,1,2,21,21,1678808,1,1,21,21,1678987,3,1,1,-1,1679247,1,1,1,-1,1679523,3,1,1,-1,1679894,1,1,1,-1,1680100,3,2,28,28,1680810,3,1,22,22,1681022,1,2,28,28,1681179,1,1,22,22,1681355,3,1,1,-1,1681669,1,1,1,-1,1681948,3,1,1,-1,1682524,1,1,1,-1,1682726,3,1,1,-1,1683242,1,1,1,-1,1683508,3,2,23,23,1683810,3,1,29,29,1683979,3,1,31,31,1684221,1,2,23,23,1684394,1,1,31,31,1684633,1,1,29,29,1684892,3,1,1,-1,1685420,1,1,1,-1,1685641,3,2,19,19,1686013,3,1,27,27,1686220,1,2,19,19,1686352,1,1,27,27,1686556,3,1,1,-1,1686985,1,1,1,-1,1687204,3,2,16,16,1687521,3,1,27,27,1687689,1,2,16,16,1687843,1,1,27,27,1688025,3,2,17,17,1688158,3,1,28,28,1688362,1,2,17,17,1688524,1,1,28,28,1688698,3,2,19,19,1688874,1,2,19,19,1689269,3,2,18,18,1689484,3,1,29,29,1689649,1,2,18,18,1689784,1,1,29,29,1689999,3,1,1,-1,1690286,1,1,1,-1,1690475,3,2,16,16,1691008,3,1,30,30,1691185,1,2,16,16,1691344,1,1,30,30,1691529,3,1,1,-1,1691834,1,1,1,-1,1692069,3,2,15,15,1692635,3,2,14,14,1692785,3,1,37,37,1692953,1,2,15,15,1693175,1,2,14,14,1693380,1,1,37,37,1693519,3,1,1,-1,1693858,1,1,1,-1,1694059,3,2,23,23,1694443,3,1,37,37,1694647,1,2,23,23,1694808,1,1,37,37,1694979,3,1,1,-1,1695256,1,1,1,-1,1695488,3,2,28,28,1695768,3,1,38,38,1695958,1,2,28,28,1696103,1,1,38,38,1696271,3,2,30,30,1696510,3,1,38,38,1696710,3,1,39,39,1696946,1,2,29,29,1697118,1,1,39,39,1697314,3,1,39,39,1697711,3,2,29,29,1697937,1,2,30,30,1698137,1,1,39,39,1698322,1,1,38,38,1698558,3,1,1,-1,1698826,1,1,1,-1,1699028,3,1,1,-1,1699440,1,1,1,-1,1699642,3,2,33,33,1699973,3,1,35,35,1700184,1,2,33,33,1700320,1,1,35,35,1700515,3,1,1,-1,1700806,1,1,1,-1,1701061,3,2,22,22,1701743,3,1,35,35,1701951,1,2,22,22,1702086,1,1,35,35,1702324,3,1,1,-1,1702586,1,1,1,-1,1702797,3,1,1,-1,1703197,1,1,1,-1,1703433,3,1,1,-1,1703886,1,1,1,-1,1704179,3,2,29,29,1704519,3,1,31,31,1704696,1,2,29,29,1704870,1,1,31,31,1705052,3,2,28,28,1705273,1,2,29,29,1705592,3,2,29,29,1706063,3,1,32,32,1706279,1,2,28,28,1706437,1,1,32,32,1706614,3,1,1,-1,1706913,1,1,1,-1,1707098,3,2,32,32,1707490,3,1,30,30,1707674,1,2,32,32,1707833,1,1,30,30,1708006,3,1,1,-1,1708312,1,1,1,-1,1708508,3,2,39,39,1708882,3,2,37,37,1709084,3,1,30,30,1709283,1,2,37,37,1709427,1,2,39,39,1709700,1,1,30,30,1709935,3,1,1,-1,1710285,1,1,1,-1,1710512,3,2,39,39,1711195,3,1,22,22,1711404,1,2,39,39,1711532,1,1,22,22,1711741,3,1,1,-1,1711976,1,1,1,-1,1712175,3,1,1,-1,1712686,1,1,1,-1,1712850,3,2,33,33,1713331,3,1,19,19,1713497,1,2,33,33,1713681,1,1,19,19,1713875,3,1,1,-1,1714213,1,1,1,-1,1714484,3,2,35,35,1714952,3,1,15,15,1715159,1,2,35,35,1715315,1,1,15,15,1715506,3,2,-1,-1,1715874,3,1,1,-1,1716110,1,1,1,-1,1716315,3,1,1,-1,1716791,1,1,1,-1,1717057,3,2,33,33,1717639,3,1,11,11,1717822,1,2,33,33,1717994,1,1,11,11,1718147,3,1,1,-1,1718387,1,1,1,-1,1718625,3,1,1,-1,1718928,1,1,1,-1,1719167,3,2,27,27,1719580,3,1,6,6,1719723,1,2,27,27,1719886,1,1,6,6,1720074,3,1,1,-1,1720384,1,1,1,-1,1720620,3,2,19,19,1720928,1,2,19,19,1721332,3,2,20,20,1721519,3,1,4,4,1721744,1,2,20,20,1721910,1,1,4,4,1722075,3,2,22,22,1722349,3,1,3,3,1722650,1,2,22,22,1722888,1,1,3,3,1723108,3,1,1,-1,1724261,1,1,1,-1,1724425,3,1,1,-1,1724999,1,1,1,-1,1725241,3,1,1,-1,1725586,1,1,1,-1,1725847,3,1,1,-1,1726226,1,1,1,-1,1726468,3,1,1,-1,1726872,1,1,1,-1,1727113,3,2,10,10,1727442,3,1,14,14,1727620,1,2,10,10,1727756,1,1,14,14,1727933,3,1,1,-1,1728269,1,1,1,-1,1728497,3,2,2,2,1728919,3,1,18,18,1729081,1,2,2,2,1729244,1,1,18,18,1729416,3,2,3,3,1729590,1,2,3,3,1730022,3,2,4,4,1730230,3,1,19,19,1730402,1,2,4,4,1730593,1,1,19,19,1730742,3,1,1,-1,1731047,1,1,1,-1,1731267,3,1,1,-1,1731719,1,1,1,-1,1731997,3,2,11,11,1732436,3,1,24,24,1732602,1,2,11,11,1732789,1,1,24,24,1732966,3,1,1,-1,1733301,1,1,1,-1,1733519,3,2,10,10,1733801,3,1,29,29,1733979,1,2,10,10,1734105,1,1,29,29,1734307,3,1,1,-1,1734647,1,1,1,-1,1734889,3,1,1,-1,1735297,1,1,1,-1,1735505,3,2,11,11,1735827,3,1,34,34,1736142,1,2,11,11,1736542,1,1,34,34,1736724,3,2,15,15,1737095,3,1,37,37,1737300,1,2,15,15,1737443,1,1,37,37,1737647,3,1,1,-1,1737902,1,1,1,-1,1738145,3,1,1,-1,1738552,1,1,1,-1,1738825,3,2,25,25,1739162,3,1,33,33,1739352,1,2,25,25,1739764,1,1,33,33,1739972,3,1,1,-1,1740239,1,1,1,-1,1740451,3,2,25,25,1740783,3,1,30,30,1740962,3,1,31,31,1741187,1,2,25,25,1741372,1,1,31,31,1741547,1,1,30,30,1741736,3,2,26,26,1742026,3,1,29,29,1742209,1,2,26,26,1742373,1,1,29,29,1742549,3,1,1,-1,1742817,1,1,1,-1,1743055,3,2,21,21,1743609,3,1,26,26,1743789,1,2,21,21,1743945,1,1,26,26,1744114,3,1,1,-1,1744350,1,1,1,-1,1744602,3,2,24,24,1745132,3,1,18,18,1745307,3,1,19,19,1745504,1,2,24,24,1745675,1,1,19,19,1745852,1,1,18,18,1746052,3,1,1,-1,1746322,1,1,1,-1,1746551,3,2,30,30,1746944,3,1,19,19,1747136,1,2,30,30,1747281,1,1,19,19,1747443,3,1,1,-1,1747706,1,1,1,-1,1747927,3,2,34,34,1748353,3,1,17,17,1748526,1,2,34,34,1748635,1,1,17,17,1748884,3,2,36,36,1749110,3,1,18,18,1749309,1,2,36,36,1749473,1,1,18,18,1749641,3,1,1,-1,1749896,1,1,1,-1,1750121,3,1,1,-1,1750443,1,1,1,-1,1750711,3,1,1,-1,1751147,1,1,1,-1,1751443,3,2,33,33,1751884,3,1,20,20,1752098,1,2,33,33,1752288,1,1,20,20,1752423,3,1,1,-1,1752717,1,1,1,-1,1752932,3,2,35,35,1753236,3,2,36,36,1753440,3,1,24,24,1753752,1,2,36,36,1753973,1,2,35,35,1754161,1,1,24,24,1754325,3,2,35,35,1754553,3,1,26,26,1754740,1,2,35,35,1754926,1,1,26,26,1755099,3,1,1,-1,1755368,1,1,1,-1,1755607,3,2,34,34,1756051,3,1,28,28,1756219,1,2,34,34,1756350,1,1,28,28,1756530,3,2,39,39,1756927,3,1,29,29,1757101,1,2,39,39,1757261,1,1,29,29,1757444,3,2,33,33,1757910,3,1,30,30,1758225,1,2,33,33,1758454,1,1,30,30,1758688,3,1,1,-1,1758926,1,1,1,-1,1759143,3,2,28,28,1759519,1,2,28,28,1759921,3,2,29,29,1760128,3,1,26,26,1760322,1,2,29,29,1760463,1,1,26,26,1760694,3,2,31,31,1760860,3,1,27,27,1761037,1,2,31,31,1761207,1,1,27,27,1761377,3,2,32,32,1761622,3,1,25,25,1761851,1,2,32,32,1762020,1,1,25,25,1762199,3,1,1,-1,1762499,1,1,1,-1,1762708,3,1,1,-1,1763144,1,1,1,-1,1763393,3,2,28,28,1763720,3,1,35,35,1764029,1,2,28,28,1764263,1,1,35,35,1764468,3,1,1,-1,1764714,1,1,1,-1,1764942,3,2,35,35,1765384,3,1,33,33,1765555,1,2,35,35,1765699,1,1,33,33,1765861,3,2,38,38,1766263,3,1,39,39,1766465,1,2,38,38,1766618,1,1,39,39,1766815,3,1,1,-1,1767174,1,1,1,-1,1767413,3,2,-1,-1,1768096,3,1,1,-1,1768402,1,1,1,-1,1768654,3,2,32,32,1768942,3,1,36,36,1769123,1,2,32,32,1769276,1,1,36,36,1769461,3,1,1,-1,1769733,1,1,1,-1,1769995,3,2,25,25,1770343,3,1,35,35,1770533,1,1,35,35,1770661,1,1,35,35,1770814,3,1,35,35,1771274,3,1,35,35,1771445,1,2,25,25,1771799,1,1,35,35,1771992,3,2,27,27,1772275,3,1,37,37,1772467,1,2,27,27,1772643,1,1,37,37,1772806,3,1,1,-1,1773090,1,1,1,-1,1773317,3,2,23,23,1773616,3,1,38,38,1773888,1,2,23,23,1774091,1,1,38,38,1774263,3,1,1,-1,1774723,1,1,1,-1,1774914,3,1,1,-1,1775333,1,1,1,-1,1775582,3,2,6,6,1775885,3,1,35,35,1776073,3,1,38,38,1776480,1,2,6,6,1776612,1,1,38,38,1776802,1,1,35,35,1777088,3,1,1,-1,1777358,1,1,1,-1,1777559,3,2,4,4,1777972,3,1,25,25,1778159,3,1,23,23,1778407,1,2,4,4,1778499,1,1,23,23,1778827,1,1,25,25,1779013,3,1,1,-1,1779277,1,1,1,-1,1779520,3,1,1,-1,1780127,1,1,1,-1,1780355,3,2,18,18,1780805,3,1,28,28,1781030,1,2,18,18,1781169,1,1,28,28,1781356,3,2,20,20,1781622,3,1,27,27,1781933,1,2,20,20,1782156,1,1,27,27,1782356,3,1,1,-1,1782662,1,1,1,-1,1782904,3,2,17,17,1783248,3,2,16,16,1783393,3,1,17,17,1783585,1,2,17,17,1783818,1,2,16,16,1783992,1,1,17,17,1784199,3,2,19,19,1784514,3,2,18,18,1784683,3,1,21,21,1784880,1,2,19,19,1785089,1,2,18,18,1785321,1,1,21,21,1785491,3,1,1,-1,1785820,1,1,1,-1,1786079,3,2,20,20,1786521,3,1,16,16,1786928,1,2,20,20,1787201,1,1,16,16,1787406,3,2,24,24,1787745,3,1,15,15,1787945,1,2,24,24,1788110,1,1,15,15,1788259,3,2,27,27,1788550,3,1,17,17,1788887,1,2,27,27,1789105,1,1,17,17,1789269,3,1,1,-1,1789634,1,1,1,-1,1789836,3,1,1,-1,1790236,1,1,1,-1,1790490,3,1,1,-1,1790905,1,1,1,-1,1791210,3,1,1,-1,1791510,1,1,1,-1,1791745,3,2,7,7,1792018,3,1,8,8,1792212,1,2,7,7,1792344,1,1,8,8,1792517,3,2,8,8,1792797,3,1,5,5,1792989,1,2,8,8,1793130,1,1,5,5,1793343,3,2,9,9,1793637,3,1,2,2,1793976,1,2,9,9,1794218,1,1,2,2,1794391,3,1,1,-1,1794661,1,1,1,-1,1794876,3,2,14,14,1795401,3,1,3,3,1795568,1,2,14,14,1795725,1,1,3,3,1795888,3,2,17,17,1796196,3,1,4,4,1796386,3,1,5,5,1796573,1,2,17,17,1796777,1,1,5,5,1796984,1,1,4,4,1797150,3,2,13,13,1797645,3,1,8,8,1797911,1,2,13,13,1798056,1,1,8,8,1798243,3,1,1,-1,1798701,1,1,1,-1,1798911,3,2,21,21,1799206,3,1,8,8,1799414,1,2,21,21,1799548,1,1,8,8,1799716,3,1,1,-1,1800046,1,1,1,-1,1800271,3,2,29,29,1800680,3,1,8,8,1800879,1,2,29,29,1801045,1,1,8,8,1801219,3,1,1,-1,1801478,1,1,1,-1,1801713,3,2,37,37,1802255,3,1,3,3,1802474,1,2,37,37,1802656,1,1,3,3,1802808,3,1,1,-1,1803112,1,1,1,-1,1803351,3,2,34,34,1803926,3,1,11,11,1804071,3,1,13,13,1804322,1,2,34,34,1804513,1,1,13,13,1804709,1,1,11,11,1804944,3,2,38,38,1805352,3,1,11,11,1805549,1,2,38,38,1805718,1,1,11,11,1805899,3,1,1,-1,1806194,1,1,1,-1,1806404,3,2,32,32,1806854,3,1,13,13,1807078,1,2,32,32,1807223,1,1,13,13,1807385,3,1,1,-1,1807698,1,1,1,-1,1807928,3,2,31,31,1808258,3,1,18,18,1808475,1,2,31,31,1808647,1,1,18,18,1808806,3,2,35,35,1809114,3,1,19,19,1809417,1,2,35,35,1809580,1,1,19,19,1809755,3,1,1,-1,1810065,1,1,1,-1,1810244,3,2,34,34,1810578,3,1,21,21,1810781,1,2,34,34,1810979,1,1,21,21,1811462,3,2,36,36,1811702,3,2,35,35,1811899,3,1,22,22,1812061,1,2,36,36,1812277,1,2,35,35,1812468,1,1,22,22,1812636,3,2,35,35,1812852,3,1,23,23,1813023,1,2,35,35,1813178,1,1,23,23,1813360,3,1,1,-1,1813686,1,1,1,-1,1813907,3,2,33,33,1814206,3,1,28,28,1814549,1,2,33,33,1814852,1,1,28,28,1815075,3,1,1,-1,1815713,1,1,1,-1,1815943,3,2,27,27,1816365,3,2,29,29,1816622,3,1,27,27,1816799,1,2,29,29,1817004,1,2,27,27,1817238,1,1,27,27,1817381,3,1,1,-1,1817614,1,1,1,-1,1817813,3,2,27,27,1818093,3,1,24,24,1818279,1,2,27,27,1818401,1,1,24,24,1818618,3,1,1,-1,1818934,1,1,1,-1,1819105,3,2,25,25,1819377,3,1,28,28,1819545,1,2,25,25,1819714,1,1,28,28,1819876,3,2,24,24,1820261,3,1,31,31,1820460,1,2,24,24,1820604,1,1,31,31,1820793,3,1,1,-1,1821024,1,1,1,-1,1821195,3,2,29,29,1821678,3,1,29,29,1821930,1,2,29,29,1822052,1,1,29,29,1822255,3,1,1,-1,1822539,1,1,1,-1,1822754,3,1,1,-1,1823285,1,1,1,-1,1823516,3,2,-1,-1,1824186,3,1,1,-1,1824538,1,1,1,-1,1824759,3,2,38,38,1825114,3,2,37,37,1825310,3,1,24,24,1825517,1,2,38,38,1825728,1,2,37,37,1825916,1,1,24,24,1826084,3,2,38,38,1826269,3,1,26,26,1826461,1,2,38,38,1826606,1,1,26,26,1826805,3,1,1,-1,1827106,1,1,1,-1,1827325,3,2,33,33,1827627,3,2,29,29,1827951,3,1,25,25,1828101,1,2,29,29,1828288,1,2,33,33,1828669,1,1,25,25,1828878,3,1,1,-1,1829211,1,1,1,-1,1829375,3,2,30,30,1829882,3,1,35,35,1830016,1,2,30,30,1830197,1,1,35,35,1830401,3,2,32,32,1830739,3,2,29,29,1831176,3,1,34,34,1831352,1,2,29,29,1831496,1,2,32,32,1831835,1,1,34,34,1832199,3,1,1,-1,1832480,1,1,1,-1,1832683,3,2,28,28,1832950,3,1,30,30,1833142,1,2,28,28,1833292,1,1,30,30,1833468,3,1,1,-1,1833765,1,1,1,-1,1833958,3,2,23,23,1834229,3,1,35,35,1834442,3,1,39,39,1834982,1,2,23,23,1835130,1,1,39,39,1835355,1,1,35,35,1835726,3,1,1,-1,1836049,1,1,1,-1,1836211,3,2,19,19,1836475,3,1,37,37,1836653,1,2,19,19,1836822,1,1,37,37,1836992,3,1,1,-1,1837388,1,1,1,-1,1837602,3,2,3,3,1838017,3,1,36,36,1838182,1,2,3,3,1838342,1,1,36,36,1838515,3,2,8,8,1838992,3,1,32,32,1839269,1,2,8,8,1839431,1,1,32,32,1839582,3,2,11,11,1839904,1,2,12,12,1840243,3,2,12,12,1840549,3,2,12,12,1840686,3,1,34,34,1840928,1,2,12,12,1841095,1,1,34,34,1841276,1,2,11,11,1841537,3,1,1,-1,1841813,1,1,1,-1,1842023,3,2,10,10,1842324,3,1,28,28,1842522,1,2,10,10,1842685,1,1,28,28,1842891,3,1,1,-1,1843170,1,1,1,-1,1843402,3,2,15,15,1843808,3,1,27,27,1844009,1,2,15,15,1844146,1,1,27,27,1844316,3,2,19,19,1844650,3,1,27,27,1844833,1,2,19,19,1844989,1,1,27,27,1845164,3,2,14,14,1845571,3,1,28,28,1845771,1,2,14,14,1845911,1,1,28,28,1846106,3,1,1,-1,1846452,1,1,1,-1,1846668,3,2,2,2,1847066,1,2,3,3,1847372,1,2,2,2,1847605,1,1,27,27,1847854,3,1,27,27,1848315,3,2,2,2,1848483,3,1,27,27,1849074,1,2,2,2,1849244,1,1,27,27,1849543,1,2,3,3,1849854,1,2,3,3,1850089,1,2,3,3,1850563,3,1,1,-1,1851139,1,1,1,-1,1851351,3,2,12,12,1851711,3,2,8,8,1852054,3,1,24,24,1852217,1,2,8,8,1852373,1,2,12,12,1852769,1,1,24,24,1852971,3,1,1,-1,1853210,1,1,1,-1,1853413,3,2,13,13,1853686,3,2,12,12,1853849,3,1,21,21,1854029,1,2,13,13,1854241,1,2,12,12,1854428,1,1,21,21,1854594,3,2,11,11,1854914,3,1,20,20,1855080,1,2,11,11,1855242,1,1,20,20,1855420,3,2,13,13,1855687,1,2,14,14,1855988,1,2,13,13,1856201,3,2,14,14,1856770,3,2,13,13,1857042,3,1,19,19,1857249,1,2,13,13,1857391,1,1,19,19,1857565,3,2,14,14,1857791,3,1,18,18,1858139,1,2,14,14,1858368,1,1,18,18,1858576,3,1,1,-1,1858875,1,1,1,-1,1859090,3,2,10,10,1859329,3,1,12,12,1859524,1,2,10,10,1859662,1,1,12,12,1859839,3,2,6,6,1860267,3,1,16,16,1860476,1,2,6,6,1860643,1,1,16,16,1860819,3,1,1,-1,1861083,1,1,1,-1,1861251,3,2,2,2,1861553,3,1,11,11,1861719,1,2,2,2,1861895,1,1,11,11,1862061,3,2,3,3,1862271,3,1,10,10,1862475,1,2,3,3,1862616,1,1,10,10,1862813,3,1,1,-1,1863190,1,1,1,-1,1863425,3,2,22,22,1863874,3,1,21,21,1864057,1,2,22,22,1864203,1,1,21,21,1864407,3,1,1,-1,1864676,1,1,1,-1,1864910,3,2,28,28,1865327,3,1,12,12,1865526,1,2,28,28,1865667,1,1,12,12,1865835,3,1,1,-1,1866153,1,1,1,-1,1866340,3,2,30,30,1866647,3,1,14,14,1866825,1,2,30,30,1866958,1,1,14,14,1867146,3,2,32,32,1867371,3,1,16,16,1867591,1,2,32,32,1868012,1,1,16,16,1868207,3,1,1,-1,1868509,1,1,1,-1,1868688,3,1,1,-1,1869117,1,1,1,-1,1869329,3,2,28,28,1869638,3,2,27,27,1869807,3,1,7,7,1870001,1,2,28,28,1870217,1,2,27,27,1870409,1,1,7,7,1870578,3,1,1,-1,1870813,1,1,1,-1,1871023,3,2,24,24,1871309,3,1,6,6,1871531,1,2,24,24,1871672,1,1,6,6,1871878,3,2,27,27,1872211,3,1,2,2,1872458,1,1,2,2,1872804,3,1,2,2,1873232,1,2,27,27,1873709,1,1,2,2,1873913,3,2,-1,-1,1874316,3,1,1,-1,1874665,1,1,1,-1,1874890,3,2,31,31,1875173,3,1,17,17,1875348,1,2,31,31,1875504,1,1,17,17,1875721,3,2,38,38,1876304,3,1,13,13,1876492,1,2,38,38,1876641,1,1,13,13,1876830,3,1,1,-1,1877242,1,1,1,-1,1877447,3,1,1,-1,1877919,1,1,1,-1,1878131,3,2,-1,-1,1879118,3,1,1,-1,1879422,1,1,1,-1,1879618,3,2,28,28,1879893,3,1,13,13,1880063,1,2,28,28,1880223,1,1,13,13,1880424,3,2,30,30,1880704,3,1,11,11,1880927,1,2,30,30,1881072,1,1,11,11,1881450,3,1,1,-1,1881806,1,1,1,-1,1882012,3,2,21,21,1882423,3,1,16,16,1882633,1,2,21,21,1882758,1,1,16,16,1882966,3,1,1,-1,1883329,1,1,1,-1,1883482,3,2,14,14,1883813,3,1,28,28,1883983,1,2,14,14,1884152,1,1,28,28,1884359,3,2,-1,-1,1885074,3,1,1,-1,1885421,1,1,1,-1,1885606,3,2,15,15,1886020,3,1,24,24,1886190,1,2,15,15,1886351,1,1,24,24,1886532,3,2,1,-1,1887013,3,1,1,-1,1887577,1,1,1,-1,1887765,3,1,1,-1,1888229,1,1,1,-1,1888493,3,1,1,-1,1888912,1,1,1,-1,1889153,3,2,35,35,1889700,3,1,36,36,1889894,1,2,35,35,1890037,1,1,36,36,1890224,3,2,31,31,1890608,3,1,38,38,1890779,1,2,31,31,1890953,1,1,38,38,1891128,3,1,1,-1,1891493,1,1,1,-1,1891722,3,1,1,-1,1892056,1,1,1,-1,1892303,3,2,27,27,1892719,3,1,9,9,1892914,1,2,27,27,1893069,1,1,9,9,1893229,3,1,1,-1,1893579,1,1,1,-1,1893805,3,2,-1,-1,1894654,3,1,1,-1,1894980,1,1,1,-1,1895193,3,1,1,-1,1895602,1,1,1,-1,1895821,3,2,25,25,1896320,3,1,23,23,1896592,1,2,25,25,1896746,1,1,23,23,1897052,3,1,1,-1,1897442,1,1,1,-1,1897646,3,1,1,-1,1897993,1,1,1,-1,1898223,3,2,4,4,1898642,3,1,21,21,1898819,1,2,4,4,1898973,1,1,21,21,1899147,3,1,1,-1,1899452,1,1,1,-1,1899683,3,2,-1,-1,1900408,3,1,1,-1,1900679,1,1,1,-1,1900918,3,2,25,25,1901281,3,1,13,13,1901458,1,2,25,25,1901591,1,1,13,13,1901764,3,2,31,31,1902148,3,1,15,15,1902346,1,2,31,31,1902512,1,1,15,15,1902679,3,1,1,-1,1903021,1,1,1,-1,1903261,3,1,1,-1,1903537,1,1,1,-1,1903816,3,1,1,-1,1904148,1,1,1,-1,1904354,3,1,1,-1,1904757,1,1,1,-1,1905032,3,2,11,11,1905364,3,1,29,29,1905542,1,2,11,11,1905711,1,1,29,29,1905900,3,2,5,5,1906397,3,1,34,34,1906583,1,2,5,5,1906729,1,1,34,34,1906947,3,2,-1,-1,1907647,3,1,1,-1,1908121,1,1,1,-1,1908338,3,2,37,37,1908669,3,1,31,31,1908849,1,2,37,37,1909019,1,1,31,31,1909206,3,1,1,-1,1909529,1,1,1,-1,1909733,3,2,19,19,1910094,3,1,23,23,1910263,1,2,19,19,1910427,1,1,23,23,1910576,3,2,14,14,1911077,3,1,13,13,1911276,1,2,14,14,1911420,1,1,13,13,1911582,3,2,1,-1,1911903,3,1,1,-1,1912371,1,1,1,-1,1912681,3,2,16,16,1913006,3,1,19,19,1913208,1,2,16,16,1913344,1,1,19,19,1913558,3,1,1,-1,1914140,1,1,1,-1,1914358,3,2,-1,-1,1915081,3,1,1,-1,1915344,1,1,1,-1,1915613,3,2,31,31,1915958,3,1,5,5,1916157,1,2,31,31,1916289,1,1,5,5,1916491,3,1,1,-1,1916783,1,1,1,-1,1917042,3,2,-1,-1,1917862,3,1,1,-1,1918165,1,1,1,-1,1918432,3,2,12,12,1919097,3,1,23,23,1919282,1,2,12,12,1919423,1,1,23,23,1919625,3,1,1,-1,1919866,1,1,1,-1,1920064,3,2,2,2,1920648,3,1,37,37,1920855,1,2,2,2,1920990,1,1,37,37,1921184,3,2,1,-1,1921563,3,1,1,-1,1922142,1,1,1,-1,1922346,3,2,23,23,1922665,3,1,28,28,1922856,1,2,23,23,1923005,1,1,28,28,1923188,3,1,1,-1,1923539,1,1,1,-1,1923837,3,1,1,-1,1924113,1,1,1,-1,1924387,3,2,29,29,1924793,3,1,39,39,1925003,1,2,29,29,1925132,1,1,39,39,1925428,3,1,1,-1,1925838,1,1,1,-1,1926110,3,2,-1,-1,1926461,3,1,1,-1,1926682,1,1,1,-1,1926960,3,1,1,-1,1927632,1,1,1,-1,1927906,3,2,25,25,1928255,3,1,27,27,1928426,1,2,25,25,1928560,1,1,27,27,1928755,3,1,1,-1,1929093,1,1,1,-1,1929266,3,2,11,11,1929642,3,1,31,31,1929788,1,2,11,11,1929946,1,1,31,31,1930180,3,2,-1,-1,1930797,3,1,1,-1,1931027,1,1,1,-1,1931248,3,2,38,38,1931826,3,1,3,3,1932048,1,2,38,38,1932181,1,1,2,2,1932361,3,1,2,2,1933513,1,1,3,3,1933719,3,1,1,-1,1934177,1,1,1,-1,1934428,3,2,-1,-1,1935448,3,1,1,-1,1935783,1,1,1,-1,1936022,3,2,27,27,1936597,3,1,38,38,1936793,1,2,27,27,1936930,1,1,38,38,1937127,3,2,7,7,1937909,3,1,28,28,1938077,1,2,7,7,1938249,1,1,28,28,1938428,3,2,1,-1,1938694,3,2,-1,-1,1939439,3,2,-1,-1,1940320,3,1,1,-1,1940697,1,1,1,-1,1941032,3,1,1,20,1941925,2,2,1,1,1942186,1,1,1,20,1942532,3,1,-20,-1,1942712,2,2,1,1,1942948,1,1,-20,-1,1943119,1,1,1,-1,1943544,1,2,1,-1,1943759,1,1,32,32,1944917,1,1,30,30,1945229,1,1,23,23,1945696,1,1,20,20,1945988,1,1,38,38,1946847,1,1,13,13,1947534,1,1,8,8,1947957,1,1,4,4,1948331,1,2,2,2,1948504,2,1,1,1,1948822,3,2,2,2,1949063,3,1,1,-1,1949319,3,1,4,4,1949930,3,1,8,8,1950369,3,1,9,9,1950552,3,1,10,10,1950746,3,1,13,13,1951127,3,1,20,20,1951636,3,1,22,22,1952008,3,1,23,23,1952175,3,1,28,28,1952657,3,1,29,29,1952840,3,1,30,30,1953041,3,1,32,32,1953347,3,1,35,35,1953840,3,1,38,38,1954113,3,1,1,-1,1954330,2,1,29,29,1955108,2,1,28,28,1955311,2,1,17,17,1955921,2,1,9,9,1956401,3,1,1,-1,1956711,1,1,7,7,1957477,1,1,8,8,1957673,1,1,2,2,1958079,1,1,16,16,1958685,1,1,26,26,1959198,1,1,35,35,1959820,1,1,36,36,1959979,3,1,1,-1,1960172,1,2,2,2,1960418,2,1,1,1,1961167,3,2,2,2,1961406,1,1,2,2,1961573,1,1,5,5,1961912,1,1,10,10,1962396,1,1,12,12,1962631,1,1,17,17,1963532,1,1,29,29,1964051,1,2,3,3,1964221,2,1,1,1,1964761,3,2,3,3,1964959,3,1,1,-1,1965132,3,1,2,2,1965609,3,1,5,5,1965902,3,1,9,9,1966273,3,1,10,10,1966460,3,1,12,12,1966702,3,1,17,17,1967182,3,1,21,21,1967662,3,1,23,23,1967895,3,1,29,29,1968365,3,1,1,-1,1968747,2,1,35,35,1969311,2,1,28,28,1969690,2,1,26,26,1970229,2,1,22,22,1970664,2,1,20,20,1970878,2,1,9,9,1971815,2,1,5,5,1972265,3,1,1,-1,1972646,1,1,10,10,1973493,1,1,18,18,1973983,1,1,19,19,1974211,1,1,37,37,1974883,1,1,38,38,1975069,3,1,1,-1,1975257,1,2,3,3,1975469,2,1,1,1,1976053,3,2,3,3,1976301,1,1,4,4,1976626,1,1,10,10,1977234,1,1,12,12,1977512,1,1,28,28,1978249,1,1,32,32,1978720,1,1,35,35,1978966,1,2,4,4,1979139,2,1,1,1,1979755,3,2,4,4,1979954,3,1,1,-1,1980173,3,1,3,3,1980750,3,1,4,4,1980908,3,1,6,6,1981187,3,1,10,10,1981589,3,1,12,12,1981803,3,1,15,15,1982243,3,1,27,27,1982820,3,1,28,28,1983019,3,1,32,32,1983497,3,1,35,35,1983776,3,1,1,-1,1984003,2,1,32,32,1984712,2,1,28,28,1985125,2,1,27,27,1985319,2,1,26,26,1985495,2,1,19,19,1986292,2,1,14,14,1986733,2,1,7,7,1987242,2,1,5,5,1987471,2,1,3,3,1987749,2,1,2,2,1987946,3,1,1,-1,1988191,1,1,3,3,1988828,1,1,17,17,1989496,1,1,23,23,1989949,1,1,29,29,1990393,3,1,1,-1,1990603,1,2,4,4,1990912,2,1,1,1,1991472,3,2,4,4,1991665,1,1,5,5,1991976,1,1,7,7,1992398,1,1,8,8,1992571,1,1,18,18,1993162,1,1,24,24,1993695,1,1,34,34,1994176,1,2,5,5,1994336,2,1,1,1,1995096,3,2,5,5,1995298,3,1,1,-1,1995498,3,1,3,3,1996085,3,1,5,5,1996479,3,1,6,6,1996656,3,1,7,7,1996840,3,1,8,8,1997089,3,1,9,9,1997263,3,1,10,10,1997435,3,1,18,18,1997974,3,1,27,27,1998495,3,1,25,25,1998834,3,1,29,29,1999308,1,1,25,25,1999707,3,1,24,24,1999914,3,1,34,34,2000395,3,1,1,-1,2000594,2,1,39,39,2001454,2,1,27,27,2001964,2,1,14,14,2002659,2,1,10,10,2003341,2,1,9,9,2003520,2,1,6,6,2003902,3,1,1,-1,2004134,1,1,4,4,2004628,1,1,10,10,2004982,1,1,13,13,2005277,1,1,16,16,2005660,1,1,21,21,2006157,1,1,28,28,2006907,1,1,33,33,2007268,3,1,1,-1,2007473,1,2,5,5,2007728,2,1,1,1,2008400,3,2,5,5,2008644,1,1,4,4,2008944,1,1,5,5,2009142,1,1,7,7,2009449,1,1,19,19,2010031,1,1,21,21,2010334,1,1,22,22,2010504,1,1,27,27,2011014,1,1,29,29,2011349,1,1,30,30,2011549,1,1,32,32,2011932,1,1,34,34,2012223,1,1,33,33,2012462,1,1,39,39,2012948,1,2,6,6,2013131,2,1,1,1,2013795,3,2,6,6,2014004,3,1,1,-1,2014180,3,1,4,4,2014777,3,1,5,5,2014955,3,1,6,6,2015151,3,1,7,7,2015356,3,1,10,10,2015872,3,1,17,17,2016380,3,1,19,19,2016720,3,1,20,20,2016888,3,1,21,21,2017122,3,1,22,22,2017319,3,1,27,27,2017803,3,1,28,28,2018003,3,1,29,29,2018201,3,1,30,30,2018378,3,1,31,31,2018580,3,1,33,33,2018958,3,1,34,34,2019165,3,1,39,39,2019631,3,1,1,-1,2020039,2,1,37,37,2020692,2,1,25,25,2021224,2,1,24,24,2021435,2,1,22,22,2021840,2,1,20,20,2022210,2,1,16,16,2022625,2,1,14,14,2022905,2,1,13,13,2023102,2,1,3,3,2023743,3,1,1,-1,2024063,1,1,6,6,2024624,1,1,12,12,2025034,1,1,18,18,2025582,1,1,19,19,2025921,1,1,26,26,2026437,1,1,32,32,2026914,1,1,38,38,2027342,3,1,1,-1,2027559,1,2,6,6,2027829,2,1,1,1,2028761,3,2,6,6,2029006,1,1,3,3,2029308,1,1,4,4,2029501,1,1,5,5,2029700,1,1,14,14,2030318,1,1,16,16,2030552,1,1,21,21,2030959,1,1,22,22,2031189,1,1,38,38,2031915,1,2,7,7,2032085,3,2,7,7,2032922,1,2,7,7,2033274,2,1,1,1,2033512,3,2,7,7,2033712,3,1,1,-1,2033863,3,1,3,3,2034363,3,1,4,4,2034562,3,1,5,5,2034726,3,1,14,14,2035307,3,1,15,15,2035482,3,1,16,16,2035650,3,1,20,20,2036223,3,1,21,21,2036426,3,1,22,22,2036605,3,1,23,23,2036837,3,1,24,24,2037036,3,1,25,25,2037241,3,1,28,28,2037717,3,1,30,30,2037956,3,1,38,38,2038510,3,1,1,-1,2038757,2,1,39,39,2039511,2,1,23,23,2040098,2,1,12,12,2040750,2,1,10,10,2040993,2,1,7,7,2041393,2,1,3,3,2041876,3,1,1,-1,2042096,1,1,5,5,2042611,1,1,3,3,2042890,1,1,26,26,2043900,1,1,30,30,2044274,1,1,36,36,2044704,1,1,38,38,2044962,3,1,1,-1,2045178,1,2,7,7,2045393,2,1,1,1,2046369,3,2,7,7,2046605,1,1,7,7,2047015,1,1,10,10,2047454,1,1,11,11,2047641,1,1,14,14,2047972,1,1,18,18,2048586,1,1,23,23,2048926,1,1,37,37,2049689,1,2,8,8,2049863,2,1,1,1,2050545,3,2,8,8,2050816,3,1,1,-1,2050988,3,1,2,2,2051625,3,1,7,7,2052077,3,1,8,8,2052268,3,1,10,10,2052609,3,1,11,11,2052791,3,1,14,14,2053191,3,1,17,17,2053595,3,1,18,18,2053778,3,1,23,23,2054260,3,1,29,29,2054786,3,1,30,30,2054963,3,1,34,34,2055443,3,1,37,37,2055744,3,1,1,-1,2055983,2,1,38,38,2056667,2,1,22,22,2057500,2,1,19,19,2057624,2,1,6,6,2058253,2,1,4,4,2058519,2,1,2,2,2058795,3,1,1,-1,2059074,1,1,3,3,2059820,1,1,11,11,2060301,1,1,25,25,2060831,1,1,28,28,2061249,1,1,30,30,2061457,1,1,35,35,2061918,1,1,36,36,2062059,3,1,1,-1,2062262,1,2,8,8,2062572,2,1,1,1,2063685,3,2,8,8,2063956,1,1,3,3,2064162,1,1,12,12,2064732,1,1,18,18,2065495,1,1,23,23,2065833,1,1,31,31,2066311,1,1,33,33,2066543,1,2,9,9,2066721,2,1,1,1,2067451,3,2,9,9,2067666,3,1,1,-1,2067891,3,1,3,3,2068503,3,1,8,8,2068955,3,2,8,8,2069285,1,2,8,8,2069799,3,1,12,12,2070045,3,1,16,16,2070554,3,1,18,18,2070751,3,1,22,22,2071320,3,1,23,23,2071502,3,1,30,30,2071969,3,1,31,31,2072148,3,1,33,33,2072517,3,1,34,34,2072685,3,1,38,38,2073117,3,1,1,-1,2073363,2,1,35,35,2073939,2,1,37,37,2074161,2,1,33,33,2074864,2,1,32,32,2074872,2,1,29,29,2075235,2,1,24,24,2075656,2,1,14,14,2076230,2,1,13,13,2076457,2,1,10,10,2076858,2,1,5,5,2077260,3,1,1,-1,2077540,1,1,2,2,2078186,1,1,8,8,2078584,1,1,15,15,2078994,1,1,19,19,2079397,1,1,25,25,2079837,3,1,1,-1,2080342,1,2,9,9,2081341,2,1,1,1,2081941,3,2,9,9,2082127,1,1,6,6,2082642,1,1,7,7,2082811,1,1,10,10,2083211,1,1,12,12,2083439,1,1,14,14,2083820,1,1,15,15,2084023,1,1,21,21,2084524,1,1,34,34,2085172,1,2,10,10,2085323,2,1,1,1,2086056,3,2,10,10,2086241,3,1,1,-1,2086443,3,1,2,2,2087008,3,1,6,6,2087419,3,1,7,7,2087595,3,1,10,10,2087989,3,1,11,11,2088195,3,1,12,12,2088373,3,1,14,14,2088727,3,1,15,15,2088892,3,1,21,21,2089355,3,1,26,26,2089810,3,1,29,29,2090210,3,1,32,32,2090645,3,1,34,34,2090899,3,1,1,-1,2091125,2,1,35,35,2091676,2,1,38,38,2091950,2,1,28,28,2092444,2,1,5,5,2093199,2,1,4,4,2093410,3,1,1,-1,2093664,1,1,3,3,2094347,1,1,7,7,2094750,1,1,8,8,2094922,1,1,10,10,2095195,1,1,18,18,2095707,1,1,20,20,2095972,1,1,24,24,2096419,1,1,32,32,2096881,1,1,34,34,2097128,3,1,1,-1,2097359,1,2,10,10,2097597,2,1,1,1,2098222,3,2,10,10,2098453,1,1,10,10,2098952,1,1,22,22,2099528,1,1,23,23,2099704,1,1,30,30,2100182,1,2,11,11,2100359,2,1,1,1,2100959,3,2,11,11,2101156,3,1,1,-1,2101394,3,1,4,4,2101985,3,1,7,7,2102321,3,1,10,10,2102652,3,1,13,13,2103094,3,1,17,17,2103471,3,1,22,22,2103915,3,1,23,23,2104086,3,1,25,25,2104386,3,1,27,27,2104652,3,1,29,29,2104920,3,1,30,30,2105097,3,1,36,36,2105652,3,1,1,-1,2105934,2,1,31,31,2106697,2,1,17,17,2107409,2,1,12,12,2107881,2,1,11,11,2108084,2,1,10,10,2108271,2,1,2,2,2108772,3,1,1,-1,2109053,1,1,6,6,2109618,1,1,8,8,2109862,1,1,17,17,2110473,1,1,26,26,2111042,1,1,32,32,2111456,1,1,35,35,2111786,1,1,37,37,2112064,3,1,1,-1,2112389,1,2,11,11,2112641,2,1,1,1,2113276,3,2,11,11,2113586,1,1,2,2,2113796,1,1,4,4,2114117,1,1,4,4,2114935,1,1,5,5,2115137,1,1,16,16,2115886,1,1,17,17,2116066,1,1,29,29,2116732,1,1,39,39,2117473,1,1,30,30,2118034,1,2,12,12,2118184,2,1,1,1,2118789,3,2,12,12,2118987,3,1,1,-1,2119160,3,1,2,2,2119804,3,1,4,4,2120177,3,1,5,5,2120349,3,1,6,6,2120532,3,1,12,12,2121019,3,1,16,16,2121389,3,1,17,17,2121564,3,1,21,21,2121992,3,1,30,30,2122513,3,1,36,36,2122947,3,1,39,39,2123231,3,1,1,-1,2123527,2,1,35,35,2124094,2,1,36,36,2124275,2,1,33,33,2124654,2,1,29,29,2125048,2,1,28,28,2125253,2,1,25,25,2125725,2,1,13,13,2126655,2,1,9,9,2126999,2,1,8,8,2127197,2,1,7,7,2127399,2,1,3,3,2127841,3,1,1,-1,2128104,1,1,10,10,2128782,1,1,12,12,2129056,1,1,14,14,2129364,1,1,20,20,2129902,1,1,22,22,2130214,1,1,23,23,2130403,3,1,1,-1,2130828,1,2,12,12,2131137,2,1,1,1,2131962,3,2,12,12,2132212,1,1,3,3,2132629,1,1,4,4,2132832,1,1,5,5,2132991,1,1,8,8,2133423,1,1,16,16,2133941,1,1,19,19,2134283,1,1,21,21,2134508,1,1,23,23,2135039,1,1,24,24,2135236,1,1,25,25,2135427,1,1,26,26,2135606,1,1,32,32,2136184,1,2,13,13,2136356,2,1,1,1,2136920,3,2,13,13,2137104,3,1,1,-1,2137294,3,1,3,3,2137812,3,1,4,4,2137985,3,1,5,5,2138210,3,1,8,8,2138617,3,1,16,16,2139092,3,1,17,17,2139275,3,1,19,19,2139564,3,1,21,21,2139802,3,1,23,23,2140261,3,1,24,24,2140453,3,1,25,25,2140650,3,1,26,26,2140830,3,1,29,29,2141311,3,1,32,32,2141607,3,1,30,30,2142012,3,1,37,37,2142488,3,1,1,-1,2142722,2,1,33,33,2143341,2,1,39,39,2143775,2,1,27,27,2144294,2,1,22,22,2144757,2,1,21,21,2144952,2,1,15,15,2145449,2,1,13,13,2145693,3,1,1,-1,2146106,1,1,9,9,2146870,1,1,10,10,2147050,1,1,17,17,2147551,1,1,18,18,2147719,3,1,1,-1,2148298,1,1,34,34,2148741,1,2,13,13,2149148,2,1,1,1,2149791,3,2,13,13,2150003,1,1,3,3,2150206,1,1,6,6,2150533,1,1,11,11,2150972,1,1,13,13,2151496,1,1,14,14,2151660,1,1,15,15,2151870,1,1,16,16,2152067,1,1,20,20,2152444,1,1,22,22,2152802,1,1,23,23,2152980,1,1,27,27,2153393,1,1,28,28,2153583,1,1,37,37,2154135,1,2,14,14,2154297,2,1,1,1,2154816,3,2,14,14,2155022,3,1,1,-1,2155217,3,1,3,3,2155732,3,1,6,6,2156069,3,1,11,11,2156476,3,1,13,13,2156947,3,1,14,14,2157119,3,1,15,15,2157321,3,1,16,16,2157487,3,1,20,20,2157941,3,1,21,21,2158135,3,1,22,22,2158375,3,1,23,23,2158519,3,1,27,27,2159214,3,1,28,28,2159384,3,1,29,29,2159572,3,1,32,32,2160033,3,1,34,34,2160248,3,1,37,37,2160607,3,1,1,-1,2160810,2,1,39,39,2161526,2,1,31,31,2162074,2,1,26,26,2162509,2,1,25,25,2162679,2,1,15,15,2163255,2,1,12,12,2163537,2,1,10,10,2163827,2,1,8,8,2164076,2,1,2,2,2164987,3,1,1,-1,2165255,1,1,14,14,2166098,1,1,17,17,2166514,1,1,18,18,2166682,3,1,1,-1,2167421,1,2,14,14,2167694,2,1,1,1,2168272,3,2,14,14,2168473,1,1,4,4,2168706,1,1,6,6,2169087,1,1,7,7,2169290,1,1,8,8,2169486,1,1,9,9,2169652,1,1,12,12,2170110,1,1,13,13,2170311,1,1,26,26,2170981,1,1,29,29,2171357,1,1,34,34,2171841,1,2,15,15,2172000,2,1,1,1,2172579,3,2,15,15,2172814,3,1,1,-1,2173023,3,1,4,4,2173586,3,1,6,6,2174001,3,1,7,7,2174180,3,1,8,8,2174375,3,1,9,9,2174550,3,1,10,10,2174786,3,1,12,12,2175144,3,1,13,13,2175352,3,1,16,16,2175795,3,1,19,19,2176237,3,1,26,26,2176717,3,1,27,27,2176918,3,1,28,28,2177089,3,1,29,29,2177288,3,1,32,32,2177736,3,1,34,34,2177973,3,1,37,37,2178371,3,1,1,-1,2178616,2,1,39,39,2179557,2,1,29,29,2180021,2,1,14,14,2180779,2,1,7,7,2181236,3,1,1,-1,2181493,1,1,6,6,2182137,1,1,17,17,2182684,1,1,21,21,2183171,1,1,32,32,2183843,1,1,35,35,2184441,1,1,36,36,2184615,3,1,1,-1,2184824,1,2,15,15,2185053,2,1,1,1,2185676,3,2,15,15,2185878,1,1,3,3,2186104,1,1,9,9,2186561,1,1,10,10,2186751,1,1,22,22,2187532,1,1,25,25,2187912,1,1,27,27,2188117,1,1,36,36,2188720,1,2,16,16,2188851,2,1,1,1,2189469,3,2,16,16,2189676,3,1,1,-1,2189906,3,1,2,2,2190587,3,1,3,3,2190789,3,1,4,4,2190953,3,1,9,9,2191400,3,1,10,10,2191563,3,1,19,19,2192188,3,1,22,22,2192532,3,1,23,23,2192726,3,1,24,24,2192904,3,1,25,25,2193097,3,1,26,26,2193482,3,1,26,26,2194056,3,1,24,24,2194399,3,1,27,27,2194728,3,1,33,33,2195373,3,1,36,36,2195735,3,1,37,37,2195914,3,1,10,10,2196685,3,1,1,-1,2196997,2,1,10,10,2197677,2,1,12,12,2197909,2,1,19,19,2198457,2,1,21,21,2198695,2,1,25,25,2199133,2,1,30,30,2199550,2,1,32,32,2200011,2,1,33,33,2200185,2,1,34,34,2200362,3,1,1,-1,2200629,1,1,36,36,2201174,1,1,33,33,2201482,1,1,29,29,2202002,1,1,24,24,2202432,1,1,19,19,2203052,1,1,18,18,2203251,1,1,17,17,2203462,1,1,8,8,2203961,3,1,1,-1,2204156,1,2,16,16,2204377,2,1,1,1,2204734,3,2,16,16,2204946,1,1,6,6,2205276,1,1,12,12,2205674,1,1,25,25,2206294,1,1,27,27,2206506,1,1,32,32,2207014,1,1,34,34,2207250,1,1,36,36,2207534,1,2,17,17,2207718,2,1,1,1,2208533,3,2,17,17,2208803,3,1,1,-1,2209154,3,1,3,3,2209588,3,1,5,5,2209957,3,1,6,6,2210132,3,1,10,10,2210611,3,1,11,11,2210787,3,1,12,12,2210994,3,1,13,13,2211221,3,1,18,18,2211677,3,1,19,19,2211866,3,1,21,21,2212144,3,1,24,24,2212557,3,1,25,25,2212788,3,1,26,26,2212970,3,1,27,27,2213162,3,1,32,32,2213968,3,1,34,34,2214257,3,1,36,36,2214484,3,1,1,-1,2214717,2,1,22,22,2215668,2,1,16,16,2216168,2,1,11,11,2216628,2,1,8,8,2216982,3,1,1,-1,2217218,1,1,7,7,2217920,1,1,9,9,2218141,1,1,2,2,2218638,1,1,13,13,2219055,1,1,15,15,2219252,1,1,18,18,2219662,1,1,29,29,2220233,1,1,32,32,2220549,1,1,37,37,2221081,3,1,1,-1,2221257,1,2,17,17,2221465,2,1,2,2,2222167,3,2,17,17,2222408,1,2,17,17,2222720,2,1,2,2,2222983,2,1,1,1,2223161,3,2,17,17,2223396,1,1,6,6,2223804,1,1,10,10,2224193,1,1,11,11,2224382,1,1,19,19,2224986,1,1,21,21,2225227,1,1,27,27,2225682,1,1,30,30,2226053,1,1,37,37,2226592,1,2,18,18,2226775,2,1,1,1,2227538,3,2,18,18,2227752,3,1,1,-1,2227954,3,1,5,5,2228671,3,1,6,6,2228858,3,1,10,10,2229345,3,1,11,11,2229505,3,1,17,17,2230096,3,1,19,19,2230309,3,1,22,22,2230924,3,1,22,22,2231099,3,2,17,17,2231257,1,2,17,17,2231938,1,1,22,22,2232179,1,1,21,21,2232413,3,1,21,21,2232750,3,1,21,21,2232884,3,1,23,23,2233191,3,1,25,25,2233594,3,1,27,27,2233800,3,1,29,29,2234206,3,1,30,30,2234386,3,1,37,37,2234863,3,1,1,-1,2235049,2,1,36,36,2235549,2,1,34,34,2235801,2,1,27,27,2236271,2,1,14,14,2236880,2,1,11,11,2237264,2,1,8,8,2237526,2,1,10,10,2237831,2,1,11,11,2238037,2,1,5,5,2238543,2,1,3,3,2238817,3,1,1,-1,2239089,1,1,12,12,2240037,1,1,17,17,2240721,1,1,19,19,2240955,1,1,23,23,2241470,1,1,26,26,2241739,3,1,1,-1,2242286,1,2,18,18,2242652,2,1,2,2,2243366,2,1,2,2,2243762,2,1,1,1,2243981,3,2,18,18,2244208,1,1,4,4,2244514,1,1,5,5,2244694,1,1,15,15,2245280,1,1,27,27,2245918,1,1,29,29,2246155,1,1,37,37,2246771,1,2,19,19,2246936,2,1,1,1,2247600,3,2,19,19,2247854,3,1,1,-1,2248020,3,1,4,4,2248551,3,1,5,5,2248728,3,1,9,9,2249140,3,1,10,10,2249304,3,1,13,13,2249738,3,1,15,15,2250026,3,1,16,16,2250246,3,1,18,18,2250773,3,1,23,23,2251271,3,1,26,26,2252193,3,1,27,27,2252394,3,1,29,29,2252839,3,1,30,30,2252998,3,1,37,37,2253450,3,1,1,-1,2253702,2,1,33,33,2254332,2,1,31,31,2254658,2,1,30,30,2254844,2,1,28,28,2255148,2,1,20,20,2255771,2,1,13,13,2256323,2,1,4,4,2256835,3,1,1,-1,2257101,1,1,15,15,2257911,1,1,22,22,2258530,1,1,31,31,2259042,3,1,1,-1,2259301,3,1,31,31,2259740,1,1,32,32,2259924,1,2,19,19,2260114,2,1,1,1,2260786,3,2,19,19,2260973,1,1,11,11,2261547,1,1,20,20,2262047,1,1,23,23,2262382,1,1,29,29,2262894,1,1,30,30,2263116,1,1,35,35,2263519,1,2,20,20,2263672,2,1,1,1,2264494,3,2,20,20,2264705,3,1,1,-1,2264895,3,1,2,2,2265422,3,1,6,6,2265798,3,1,7,7,2265968,3,1,11,11,2266419,3,1,19,19,2266945,3,1,20,20,2267114,3,1,22,22,2267417,3,1,23,23,2267599,3,1,29,29,2268093,3,1,30,30,2268266,3,1,32,32,2268482,3,1,35,35,2268956,3,1,37,37,2269152,3,1,1,-1,2269392,2,1,36,36,2269942,2,1,31,31,2270206,2,1,30,30,2270716,2,1,31,31,2270911,2,1,33,33,2271211,2,1,24,24,2271812,2,1,14,14,2272395,2,1,9,9,2272755,2,1,4,4,2273223,3,1,1,-1,2273492,1,1,7,7,2274141,1,1,23,23,2275046,1,1,26,26,2275422,1,1,32,32,2275828,3,1,1,-1,2276009,1,2,20,20,2276254,2,1,1,1,2276821,3,2,20,20,2277022,1,1,21,21,2277734,1,1,24,24,2278111,1,1,25,25,2278289,1,1,29,29,2278754,1,1,35,35,2279190,1,2,21,21,2279330,2,1,1,1,2279966,3,2,21,21,2280169,3,1,1,-1,2280353,3,1,3,3,2280962,3,1,8,8,2281404,3,1,9,9,2281579,3,1,15,15,2282110,3,1,21,21,2282560,3,1,24,24,2282961,3,1,25,25,2283129,3,1,28,28,2283549,3,1,29,29,2283741,3,1,31,31,2283980,3,1,33,33,2284459,3,1,35,35,2284596,3,1,35,35,2284791,3,1,37,37,2285130,3,1,37,37,2285484,3,1,36,36,2285867,1,1,35,35,2286171,3,1,34,34,2286494,1,1,37,37,2286871,3,1,1,-1,2287096,2,1,33,33,2287716,2,1,30,30,2288151,2,1,28,28,2288454,2,1,26,26,2288696,2,1,17,17,2289303,2,1,13,13,2289706,2,1,7,7,2290160,2,1,6,6,2290349,2,1,2,2,2290728,3,1,1,-1,2290961,1,1,4,4,2291641,1,1,14,14,2292092,1,1,15,15,2292291,1,1,22,22,2292873,1,1,23,23,2293073,1,1,29,29,2293577,3,1,1,-1,2293777,1,2,21,21,2294590,2,1,1,1,2294867,3,2,21,21,2295104,1,1,3,3,2295318,1,1,14,14,2295831,1,1,21,21,2296357,1,1,22,22,2296530,1,1,24,24,2296832,1,1,28,28,2297318,1,1,29,29,2297486,1,1,32,32,2297847,1,1,33,33,2298079,1,2,22,22,2298350,2,1,1,1,2299150,3,2,22,22,2299360,3,1,1,-1,2299558,3,1,2,2,2300341,3,1,12,12,2300836,3,1,14,14,2301075,3,1,17,17,2301518,3,1,20,20,2302015,3,1,21,21,2302193,3,1,22,22,2302349,3,1,24,24,2302829,3,1,26,26,2303095,3,1,28,28,2303508,3,1,29,29,2303701,3,1,32,32,2304183,3,1,33,33,2304359,3,1,34,34,2304544,3,1,38,38,2304891,3,1,36,36,2305361,3,1,1,-1,2305597,2,1,27,27,2306595,2,1,11,11,2307311,3,1,1,-1,2307634,1,1,17,17,2308555,1,1,21,21,2308954,1,1,22,22,2309176,1,1,29,29,2309696,3,1,1,-1,2309903,1,1,37,37,2310490,1,2,22,22,2310651,2,1,1,1,2311242,3,2,22,22,2311465,1,1,3,3,2311699,1,1,8,8,2312164,1,1,12,12,2312521,1,1,21,21,2313077,1,1,27,27,2313553,1,1,33,33,2314072,1,2,23,23,2314238,2,1,1,1,2314975,3,2,23,23,2315378,3,1,1,-1,2315678,3,1,3,3,2316332,3,1,6,6,2316626,3,1,8,8,2317072,3,1,9,9,2317223,3,1,10,10,2317422,3,1,11,11,2317666,3,1,13,13,2317854,3,1,13,13,2318052,3,1,12,12,2318728,3,1,18,18,2319321,3,1,21,21,2319725,3,1,24,24,2320125,3,1,27,27,2320534,3,1,31,31,2320987,3,1,33,33,2321293,3,1,34,34,2321460,3,1,39,39,2321958,3,1,1,-1,2322209,2,1,35,35,2322706,2,1,37,37,2323029,2,1,38,38,2323182,2,1,25,25,2323760,2,1,22,22,2324061,2,1,20,20,2324342,2,1,11,11,2324949,2,1,9,9,2325194,2,1,6,6,2325559,2,1,4,4,2325823,3,1,1,-1,2326092,1,1,7,7,2326671,1,1,13,13,2327147,1,1,29,29,2328068,3,1,1,-1,2328266,1,2,23,23,2328506,2,1,1,1,2329246,3,2,23,23,2329503,1,1,7,7,2329856,1,1,10,10,2330165,1,1,23,23,2330877,1,1,27,27,2331264,1,1,33,33,2331806,1,1,34,34,2332002,1,2,24,24,2332284,2,1,1,1,2333034,3,2,24,24,2333261,3,1,1,-1,2333473,3,1,3,3,2334006,3,1,5,5,2334368,3,1,6,6,2334564,3,1,7,7,2334804,3,1,10,10,2335221,3,1,20,20,2335952,3,1,23,23,2336163,3,1,27,27,2336632,3,1,33,33,2337161,3,1,34,34,2337351,3,1,36,36,2337696,3,1,1,-1,2337921,2,1,35,35,2338477,2,1,33,33,2338721,2,1,26,26,2339231,2,1,16,16,2339827,2,1,10,10,2340402,2,1,2,2,2340951,3,1,1,-1,2341216,1,1,8,8,2342006,1,1,27,27,2342781,1,1,28,28,2342987,1,1,31,31,2343389,1,1,33,33,2343662,3,1,1,-1,2343936,1,2,24,24,2344211,2,1,1,1,2345024,3,2,24,24,2345271,1,1,5,5,2345526,1,1,14,14,2345977,1,1,18,18,2346340,1,1,23,23,2346793,1,1,30,30,2347292,1,1,33,33,2347594,1,1,36,36,2347971,1,1,38,38,2348182,1,2,25,25,2348367,2,1,1,1,2349025,3,2,25,25,2349208,3,1,1,-1,2349397,3,1,3,3,2349949,3,1,5,5,2350180,1,1,10,10,2350672,3,1,10,10,2351100,3,1,11,11,2351469,3,1,10,10,2351670,3,1,13,13,2352118,3,1,14,14,2352289,3,1,18,18,2352759,3,1,21,21,2353113,3,1,23,23,2353334,3,1,30,30,2354183,3,1,33,33,2354693,3,1,36,36,2354947,3,1,38,38,2355372,3,1,39,39,2355547,3,1,1,-1,2355783,2,1,34,34,2356339,2,1,35,35,2356533,2,1,36,36,2356705,2,1,30,30,2357239,2,1,21,21,2357782,2,1,17,17,2358151,2,1,4,4,2359064,3,1,1,-1,2359294,1,1,7,7,2359755,1,1,9,9,2360009,1,1,4,4,2360361,1,1,2,2,2360654,1,1,18,18,2361293,1,1,20,20,2361501,1,1,28,28,2362115,1,1,32,32,2362481,3,1,1,-1,2362729,1,2,25,25,2362994,2,1,1,1,2363563,3,2,25,25,2363767,1,1,6,6,2364124,1,1,11,11,2364531,1,1,12,12,2364700,1,1,14,14,2364998,1,1,16,16,2365335,1,1,18,18,2365574,1,1,22,22,2366521,1,1,26,26,2366905,1,1,28,28,2367244,1,1,29,29,2367432,1,1,37,37,2367907,1,2,26,26,2368084,2,1,1,1,2368722,3,2,26,26,2368911,3,1,1,-1,2369120,3,1,3,3,2369683,3,1,4,4,2369878,3,1,5,5,2370089,3,1,6,6,2370321,3,1,7,7,2370504,3,1,8,8,2370711,3,1,11,11,2371183,3,1,12,12,2371348,3,1,14,14,2371652,3,1,16,16,2371962,3,1,17,17,2372164,3,1,18,18,2372354,3,1,22,22,2372981,3,1,25,25,2373422,3,1,26,26,2373605,3,1,27,27,2373813,3,1,28,28,2374020,3,1,29,29,2374234,3,1,37,37,2374798,3,1,1,-1,2375071,2,1,25,25,2376110,2,1,23,23,2376389,2,1,18,18,2377304,2,1,13,13,2377875,2,1,11,11,2378185,2,1,10,10,2378388,2,1,2,2,2378993,3,1,1,-1,2379242,1,1,8,8,2379981,1,1,16,16,2380429,1,1,19,19,2380654,1,1,21,21,2381172,3,1,19,19,2381549,1,1,18,18,2381757,1,1,24,24,2382183,1,1,36,36,2382802,1,1,38,38,2383083,1,1,39,39,2383253,3,1,1,-1,2383517,1,2,26,26,2383791,2,1,1,1,2384513,3,2,26,26,2384713,1,1,3,3,2384956,1,1,19,19,2385746,1,1,23,23,2386120,1,1,32,32,2386657,1,2,27,27,2386817,2,1,1,1,2387402,3,2,27,27,2387624,3,1,1,-1,2387831,3,1,2,2,2388366,3,1,3,3,2388557,3,1,6,6,2388864,3,1,15,15,2389382,3,1,16,16,2389555,3,1,17,17,2389776,3,1,19,19,2390087,3,1,23,23,2390691,3,1,31,31,2391268,3,1,32,32,2391435,3,1,33,33,2391653,3,1,34,34,2391819,3,1,35,35,2392015,3,1,38,38,2392474,3,1,1,-1,2392737,2,1,33,33,2393297,2,1,31,31,2393558,2,1,16,16,2394255,2,1,13,13,2394590,2,1,11,11,2394890,2,1,10,10,2395091,3,1,1,-1,2395500,1,1,5,5,2395976,1,1,8,8,2396257,1,1,21,21,2397059,1,1,24,24,2397364,1,1,28,28,2397803,1,1,34,34,2398280,3,1,1,-1,2398465,1,2,27,27,2398699,2,1,1,1,2399295,3,2,27,27,2399500,1,1,22,22,2400299,1,1,23,23,2400492,1,1,25,25,2400899,1,1,28,28,2401281,1,2,28,28,2401448,2,1,1,1,2402024,3,2,28,28,2402261,3,1,1,-1,2402464,3,1,4,4,2403010,3,1,6,6,2403358,3,1,7,7,2403531,3,1,10,10,2403897,3,1,18,18,2404343,3,1,21,21,2404804,3,1,22,22,2404984,3,1,23,23,2405196,3,1,24,24,2405395,3,1,25,25,2405562,3,1,28,28,2406005,3,1,29,29,2406211,3,1,30,30,2406419,3,1,31,31,2406641,3,1,1,-1,2406951,2,1,29,29,2407853,2,1,18,18,2408418,2,1,12,12,2408891,2,1,11,11,2409063,2,1,10,10,2409304,2,1,3,3,2409731,2,1,2,2,2409932,3,1,1,-1,2410140,1,1,13,13,2411088,1,1,16,16,2411426,1,1,18,18,2411662,1,1,22,22,2412279,1,1,28,28,2412707,1,1,30,30,2412970,1,1,38,38,2413499,3,1,1,-1,2413728,1,2,28,28,2413983,2,1,1,1,2414564,3,2,28,28,2414798,1,1,11,11,2415300,1,1,20,20,2415910,1,1,21,21,2416089,1,1,28,28,2416597,1,1,34,34,2417079,1,1,36,36,2417342,1,2,29,29,2417512,2,1,1,1,2418055,3,2,29,29,2418254,3,1,1,-1,2418448,3,1,3,3,2418948,3,1,4,4,2419111,3,1,11,11,2419624,3,1,16,16,2420019,3,1,17,17,2420198,3,1,20,20,2420606,3,1,21,21,2420780,3,1,27,27,2421221,3,1,28,28,2421421,3,1,34,34,2421836,3,1,35,35,2422029,3,1,36,36,2422254,3,1,1,-1,2422531,2,1,34,34,2423072,2,1,38,38,2423385,2,1,22,22,2424002,2,1,14,14,2424515,2,1,8,8,2425019,2,1,5,5,2425418,2,1,4,4,2425590,2,1,3,3,2425802,3,1,1,-1,2426095,1,1,11,11,2427014,1,1,14,14,2427588,1,1,16,16,2427761,1,1,15,15,2428649,3,1,14,14,2428881,1,1,21,21,2429418,1,1,24,24,2429797,1,1,25,25,2429972,1,1,27,27,2430367,3,1,1,-1,2430580,1,2,29,29,2430880,2,1,1,1,2431390,3,2,29,29,2431654,1,1,2,2,2431833,1,1,4,4,2432067,1,1,7,7,2432463,1,1,9,9,2432680,1,1,12,12,2433113,1,1,13,13,2433310,1,1,37,37,2434306,1,2,30,30,2434465,2,1,1,1,2435049,3,2,30,30,2435354,3,1,1,-1,2435614,3,1,4,4,2436128,3,1,2,2,2436341,3,1,7,7,2436846,3,1,8,8,2437041,3,1,12,12,2437526,3,1,13,13,2437690,3,1,9,9,2438063,3,1,8,8,2438247,3,1,17,17,2438777,3,1,26,26,2439391,3,1,28,28,2439632,3,1,36,36,2440099,3,1,37,37,2440271,3,1,1,-1,2440507,2,1,36,36,2441220,2,1,21,21,2441859,2,1,18,18,2442180,2,1,12,12,2442717,2,1,3,3,2443452,3,1,1,-1,2443733,1,1,6,6,2444499,1,1,7,7,2444663,1,1,10,10,2445066,1,1,11,11,2445236,1,1,25,25,2445973,1,1,28,28,2446233,1,1,35,35,2446836,1,1,37,37,2447065,1,1,27,27,2447512,3,1,1,-1,2447709,1,2,30,30,2448092,2,1,1,1,2448663,3,2,30,30,2448862,1,1,2,2,2449044,1,1,6,6,2449400,1,1,15,15,2449858,1,1,24,24,2450334,1,1,25,25,2450506,1,1,28,28,2450901,1,1,29,29,2451075,1,1,31,31,2451440,1,1,36,36,2451968,1,1,39,39,2452258,1,2,31,31,2452439,2,1,1,1,2453288,3,2,31,31,2453496,3,1,1,-1,2453713,3,1,2,2,2454273,3,1,4,4,2454472,3,1,6,6,2454783,3,1,15,15,2455308,3,1,19,19,2455790,3,1,22,22,2456050,3,1,24,24,2456413,3,1,25,25,2456852,3,1,28,28,2457417,3,1,29,29,2457587,3,1,31,31,2457873,3,1,36,36,2458334,3,1,39,39,2458611,3,1,1,-1,2458844,2,1,37,37,2459369,2,1,34,34,2459702,2,1,33,33,2459911,2,1,29,29,2460447,2,1,26,26,2460695,2,1,21,21,2461055,2,1,21,21,2461503,2,1,23,23,2461706,2,1,20,20,2462117,2,1,19,19,2462450,2,1,20,20,2462618,2,1,16,16,2463063,3,1,1,-1,2463666,1,1,12,12,2464617,1,1,17,17,2464986,1,1,20,20,2465401,1,1,21,21,2465595,1,1,22,22,2465799,3,1,1,-1,2466513,1,2,31,31,2466830,2,1,1,1,2467443,3,2,31,31,2467646,1,1,6,6,2467964,1,1,13,13,2468466,1,1,17,17,2468910,1,1,24,24,2469723,1,1,26,26,2469984,1,1,34,34,2470492,1,2,32,32,2470637,2,1,1,1,2471211,3,2,32,32,2471419,3,1,1,-1,2471609,3,1,6,6,2472367,3,1,11,11,2472805,3,1,13,13,2473145,3,1,14,14,2473306,3,1,17,17,2473755,3,1,25,25,2474288,3,1,26,26,2474504,3,1,24,24,2474940,3,1,29,29,2475489,3,1,34,34,2475931,3,1,1,-1,2476209,2,1,32,32,2476873,2,1,34,34,2477079,2,1,36,36,2477326,2,1,39,39,2477770,2,1,27,27,2478306,2,1,24,24,2478636,2,1,14,14,2479395,2,1,5,5,2479870,2,1,4,4,2480066,3,1,1,-1,2480442,1,1,6,6,2481094,1,1,7,7,2481289,1,1,11,11,2481661,1,1,20,20,2482408,1,1,29,29,2482891,1,1,33,33,2483291,1,1,34,34,2483488,1,1,37,37,2483817,3,1,1,-1,2484064,1,2,32,32,2484314,2,1,1,1,2484909,3,2,32,32,2485157,1,1,21,21,2485959,1,1,22,22,2486128,1,1,24,24,2486435,1,1,38,38,2487124,1,1,39,39,2487692,1,1,37,37,2487930,1,1,35,35,2488168,1,2,33,33,2488514,2,1,1,1,2489164,3,2,33,33,2489365,3,1,1,-1,2489558,3,1,10,10,2490417,3,1,13,13,2490840,1,1,13,13,2491438,3,1,14,14,2491631,3,1,19,19,2492101,3,1,21,21,2492476,3,1,22,22,2492647,3,1,24,24,2492953,3,1,28,28,2493397,3,1,33,33,2493816,3,1,35,35,2494112,3,1,37,37,2494412,3,1,39,39,2494932,3,1,1,-1,2495147,2,1,23,23,2496118,2,1,13,13,2496767,2,1,6,6,2497556,2,1,4,4,2497846,3,1,1,-1,2498149,1,1,7,7,2498768,1,1,8,8,2498940,1,1,20,20,2499518,1,1,26,26,2500029,1,1,27,27,2500226,1,1,28,28,2500436,1,1,29,29,2500595,1,1,31,31,2501279,1,1,32,32,2501433,1,1,36,36,2501858,3,1,1,-1,2502079,1,2,33,33,2502355,2,1,1,1,2502951,3,2,33,33,2503177,1,1,6,6,2503573,1,1,12,12,2504248,1,1,13,13,2504435,1,1,14,14,2504607,1,1,19,19,2505364,1,1,22,22,2505666,1,1,29,29,2506240,1,1,33,33,2506671,1,1,39,39,2507064,1,2,34,34,2507212,2,1,1,1,2507896,3,2,34,34,2508144,3,1,1,-1,2508276,3,1,3,3,2508862,3,1,7,7,2509337,3,1,7,7,2509546,1,1,7,7,2510104,3,1,8,8,2510271,3,2,34,34,2510695,1,2,34,34,2511210,3,1,12,12,2511504,3,1,13,13,2511678,3,1,14,14,2511872,3,1,19,19,2512329,3,1,22,22,2512630,3,1,28,28,2513130,3,1,29,29,2513330,3,1,33,33,2513749,3,1,39,39,2514214,3,1,1,-1,2514493,2,1,34,34,2515037,2,1,37,37,2515381,2,1,38,38,2515581,2,1,24,24,2516190,2,1,23,23,2516406,3,1,1,-1,2517065,1,1,11,11,2517812,1,1,13,13,2518227,1,1,14,14,2518357,1,1,21,21,2518896,1,1,33,33,2519519,3,1,1,-1,2519742,1,2,34,34,2519979,2,1,1,1,2520558,3,2,34,34,2520806,1,1,2,2,2521009,1,1,7,7,2521397,1,1,9,9,2521603,1,1,12,12,2521978,1,2,35,35,2522944,2,1,1,1,2523605,3,2,35,35,2523779,3,1,1,-1,2523994,3,1,2,2,2524603,3,1,4,4,2524802,3,1,7,7,2525190,3,1,9,9,2525516,3,1,10,10,2525687,3,1,12,12,2525963,3,1,18,18,2526388,3,1,19,19,2526579,3,1,27,27,2527043,3,1,29,29,2527294,3,1,31,31,2527548,3,1,33,33,2528129,3,1,34,34,2528294,3,1,38,38,2528704,3,1,1,-1,2528953,2,1,32,32,2529697,2,1,29,29,2530037,2,1,25,25,2530468,2,1,23,23,2530746,2,1,22,22,2530948,2,1,6,6,2531866,3,1,1,-1,2532141,1,1,3,3,2532922,1,1,7,7,2533370,1,1,9,9,2533589,1,1,11,11,2533839,1,1,15,15,2534268,1,1,20,20,2534851,1,1,16,16,2535161,1,1,24,24,2535822,1,1,35,35,2536307,1,1,36,36,2536476,3,1,1,-1,2536674,1,2,35,35,2536914,2,1,1,1,2537455,3,2,35,35,2537732,1,1,9,9,2538278,1,1,11,11,2538518,1,1,16,16,2538982,1,1,19,19,2539268,1,1,21,21,2539630,1,1,23,23,2539939,1,1,26,26,2540353,1,1,28,28,2540632,1,1,30,30,2540891,1,1,35,35,2541370,1,1,36,36,2541543,1,1,39,39,2541956,1,2,36,36,2542073,2,1,1,1,2542757,3,2,36,36,2542972,3,1,1,-1,2543160,3,1,9,9,2543998,3,1,11,11,2544311,3,1,13,13,2544679,3,1,14,14,2544871,3,1,16,16,2545166,3,1,19,19,2545543,3,1,21,21,2546040,3,1,22,22,2546214,3,1,23,23,2546383,3,1,26,26,2546823,3,1,28,28,2547085,3,1,30,30,2547295,3,1,35,35,2547975,3,1,36,36,2548145,3,1,38,38,2548464,3,1,39,39,2548666,3,1,1,-1,2548910,2,1,28,28,2549873,2,1,24,24,2550233,2,1,20,20,2550666,2,1,17,17,2550970,2,1,15,15,2551199,2,1,8,8,2551746,3,1,1,-1,2551991,1,1,7,7,2552627,1,1,11,11,2553000,1,1,22,22,2553964,1,1,27,27,2554361,1,1,36,36,2554864,1,1,39,39,2555173,3,1,1,-1,2555382,1,2,36,36,2555561,2,1,1,1,2556241,3,2,36,36,2556416,1,1,14,14,2556977,1,1,28,28,2557974,1,1,32,32,2558368,1,1,37,37,2558738,1,2,37,37,2558891,2,1,1,1,2559458,3,2,37,37,2559662,3,1,1,-1,2559838,3,1,5,5,2560422,3,1,14,14,2560964,3,1,17,17,2561294,1,1,16,16,2561831,3,1,18,18,2562049,3,1,17,17,2562578,3,1,26,26,2563439,3,1,28,28,2563693,3,1,32,32,2564176,3,1,37,37,2564521,3,1,17,17,2565054,3,1,1,-1,2565265,2,1,21,21,2566007,2,1,22,22,2566218,2,1,23,23,2566374,2,1,33,33,2566929,2,1,8,8,2567535,2,1,7,7,2567768,2,1,6,6,2567972,2,1,3,3,2568348,3,1,1,-1,2568590,1,1,5,5,2569146,1,1,4,4,2569346,1,1,16,16,2569977,1,1,18,18,2570216,1,1,30,30,2570823,3,1,1,-1,2571166,1,2,37,37,2571498,2,1,1,1,2572071,3,2,37,37,2572314,1,1,2,2,2572459,1,1,17,17,2573100,1,1,19,19,2573400,1,1,25,25,2574010,1,1,26,26,2574183,1,1,28,28,2574562,1,1,29,29,2574764,1,1,30,30,2575002,1,1,31,31,2575165,1,1,33,33,2575643,1,2,38,38,2575921,2,1,1,1,2576496,3,2,38,38,2576754,3,1,1,-1,2577023,3,1,2,2,2577678,3,1,8,8,2578145,3,1,10,10,2578353,3,1,14,14,2578916,1,1,14,14,2579316,3,1,15,15,2579520,3,1,16,16,2579718,3,1,17,17,2579893,3,1,19,19,2580713,3,1,25,25,2581217,3,1,26,26,2581526,3,1,28,28,2582038,3,1,29,29,2582235,3,1,30,30,2582407,3,1,31,31,2582637,3,1,33,33,2583010,3,1,36,36,2583498,3,1,37,37,2583664,3,1,38,38,2583861,3,1,1,-1,2584178,2,1,36,36,2584715,2,1,39,39,2585012,2,1,30,30,2585555,2,1,27,27,2585863,2,1,21,21,2586417,2,1,17,17,2586909,2,1,14,14,2587735,2,1,11,11,2588123,2,1,10,10,2588347,2,1,5,5,2588804,3,1,1,-1,2589029,1,1,23,23,2590251,1,1,28,28,2590679,1,1,33,33,2591176,1,1,37,37,2591564,3,1,1,-1,2591771,1,2,38,38,2592029,2,1,1,1,2592739,3,2,38,38,2592942,1,1,7,7,2593389,1,1,9,9,2593541,1,1,16,16,2594163,1,1,17,17,2594351,1,1,32,32,2595362,1,1,33,33,2595539,1,1,34,34,2595710,1,1,38,38,2596151,1,2,39,39,2596332,2,1,1,1,2597010,3,2,39,39,2597203,3,1,1,-1,2597406,3,1,7,7,2598056,3,1,9,9,2598327,3,1,15,15,2598828,3,1,16,16,2599002,3,1,17,17,2599179,3,1,19,19,2599582,3,1,20,20,2599781,3,1,21,21,2599990,3,1,23,23,2600336,3,1,30,30,2600804,3,1,32,32,2601457,3,1,33,33,2601626,3,1,34,34,2601823,3,1,38,38,2602242,3,1,1,-1,2602471,2,1,38,38,2603128,2,1,31,31,2603573,2,1,30,30,2603765,2,1,29,29,2603980,2,1,22,22,2604482,2,1,18,18,2604852,2,1,14,14,2605393,3,1,1,-1,2605643,1,1,4,4,2606463,1,1,2,2,2606721,1,1,13,13,2607636,1,1,24,24,2608205,1,1,32,32,2608647,1,1,36,36,2609046,1,1,37,37,2609248,3,1,1,-1,2609451,1,2,39,39,2609794,2,1,1,1,2610470,3,2,39,39,2610720,1,1,3,3,2611487,3,1,3,3,2612004,3,1,3,3,2612149,3,1,4,4,2612406,1,1,5,5,2612682,3,1,8,8,2613116,3,1,9,9,2613295,2,1,11,11,2613723,1,1,12,12,2613961,3,1,13,13,2614164,1,1,14,14,2614416,2,1,15,15,2614741,3,1,17,17,2615148,2,1,18,18,2615499,2,1,17,17,2616351,1,1,19,19,2616885,2,1,20,20,2617226,1,1,21,21,2617512,2,1,23,23,2617795,2,1,22,22,2618647,1,1,23,23,2618922,3,1,25,25,2619370,2,1,26,26,2619630,1,1,27,27,2619898,1,1,28,28,2620117,1,1,29,29,2620305,3,1,30,30,2620577,3,1,31,31,2620789,2,1,32,32,2621091,3,1,33,33,2621394,3,1,34,34,2621595,1,1,35,35,2621956,3,1,36,36,2622205,3,1,37,37,2622413,3,1,38,38,2622596,1,1,-1,-1,2623068,1,2,-20,-1,2623802,2,1,1,1,2624113,3,2,-20,-1,2624348,1,2,1,20,2624583,2,1,1,1,2624813,3,2,1,20,2625022,1,1,1,-1,2625538,3,1,1,-1,2626211,1,1,1,-1,2626483,3,2,-1,-1,2627001,3,1,1,-1,2627366,1,1,1,-1,2627667,2,2,22,22,2627977,3,1,3,3,2628139,2,2,22,22,2628336,1,1,3,3,2628505,3,1,1,-1,2628744,1,1,1,-1,2628930,2,2,25,25,2629234,3,1,4,4,2629390,2,2,25,25,2629600,1,1,4,4,2629759,2,2,28,28,2630074,3,1,2,2,2630246,2,2,28,28,2630458,1,1,2,2,2630650,3,1,1,-1,2630920,1,1,1,-1,2631097,2,2,30,30,2631399,3,1,7,7,2631589,2,2,30,30,2631816,1,1,7,7,2631945,3,1,1,-1,2632267,1,1,1,-1,2632481,2,2,38,38,2633079,3,1,17,17,2633193,2,2,38,38,2633436,1,1,17,17,2633598,3,1,1,-1,2633828,1,1,1,-1,2634012,2,2,39,39,2634625,3,1,14,14,2634785,2,2,39,39,2635013,1,1,14,14,2635195,3,1,1,-1,2635530,1,1,1,-1,2635710,2,2,29,29,2636041,3,1,17,17,2636209,2,2,29,29,2636446,1,1,17,17,2636610,3,1,1,-1,2636856,1,1,1,-1,2637053,2,2,26,26,2637340,3,1,18,18,2637504,3,1,15,15,2637745,2,2,26,26,2637978,2,2,26,26,2638375,1,1,15,15,2638713,3,1,16,16,2638926,2,2,26,26,2639157,1,1,16,16,2639299,1,1,18,18,2639563,3,1,1,-1,2639870,1,1,1,-1,2640053,2,2,23,23,2640412,3,1,12,12,2640570,2,2,23,23,2640785,1,1,12,12,2640941,2,2,25,25,2641237,3,1,14,14,2641404,2,2,25,25,2641636,1,1,14,14,2641805,3,1,1,-1,2642044,1,1,1,-1,2642258,2,2,23,23,2642695,3,1,9,9,2642862,2,2,23,23,2643103,1,1,9,9,2643293,3,1,1,-1,2643665,1,1,1,-1,2643841,2,2,19,19,2644141,3,1,18,18,2644308,2,2,19,19,2644555,1,1,18,18,2644730,3,1,1,-1,2644985,1,1,1,-1,2645231,2,2,18,18,2645733,3,1,19,19,2645896,2,2,18,18,2646132,1,1,19,19,2646304,3,1,1,-1,2646551,1,1,1,-1,2646746,2,2,13,13,2647089,3,1,21,21,2647265,2,2,13,13,2647504,1,1,21,21,2647704,3,1,1,-1,2647938,1,1,1,-1,2648126,2,2,18,18,2648532,2,2,18,18,2648922,2,2,17,17,2649088,3,1,22,22,2649332,2,2,17,17,2649535,1,1,22,22,2649729,3,1,1,-1,2650068,1,1,1,-1,2650238,2,2,16,16,2650686,3,1,9,9,2650848,2,2,16,16,2651064,1,1,9,9,2651267,3,1,1,-1,2651702,1,1,1,-1,2651900,2,2,15,15,2652273,1,1,7,7,2652413,2,2,15,15,2652682,1,1,7,7,2652852,3,1,1,-1,2653164,1,1,1,-1,2653360,2,2,12,12,2653703,3,1,12,12,2653875,2,2,12,12,2654108,1,1,12,12,2654251,2,2,14,14,2654524,3,1,14,14,2654729,2,2,14,14,2654995,1,1,14,14,2655186,3,1,1,-1,2655502,1,1,1,-1,2655708,2,2,9,9,2656073,3,1,8,8,2656207,2,2,9,9,2656405,1,1,8,8,2656581,2,2,10,10,2656839,3,1,7,7,2656987,2,2,10,10,2657223,1,1,7,7,2657391,3,1,7,7,2658116,2,2,10,10,2658353,3,1,7,7,2658632,3,1,7,7,2659457,2,2,10,10,2659708,1,1,7,7,2659886,2,2,11,11,2660238,3,1,10,10,2660394,2,2,11,11,2660627,1,1,10,10,2660788,3,1,1,-1,2661035,1,1,1,-1,2661227,2,2,7,7,2661566,3,1,10,10,2661742,2,2,7,7,2661965,1,1,10,10,2662103,3,1,1,-1,2662356,1,1,1,-1,2662557,3,1,1,-1,2663004,1,1,1,-1,2663262,2,2,7,7,2663598,3,1,3,3,2663746,2,2,7,7,2663982,1,1,3,3,2664137,2,2,11,11,2664538,3,1,2,2,2664691,2,2,11,11,2664923,1,1,2,2,2665106,2,2,12,12,2665365,3,1,4,4,2665534,2,2,12,12,2665748,1,1,4,4,2665944,3,1,1,-1,2666211,1,1,1,-1,2666395,2,2,3,3,2666800,3,1,5,5,2666976,2,2,3,3,2667232,1,1,5,5,2667365,2,2,4,4,2667644,3,1,3,3,2667808,2,2,4,4,2668017,1,1,3,3,2668221,3,1,1,-1,2668461,1,1,1,-1,2668658,2,2,2,2,2669029,3,1,8,8,2669182,2,2,2,2,2669440,1,1,8,8,2669603,3,1,1,-1,2669948,1,1,1,-1,2670144,2,2,7,7,2670731,3,1,14,14,2670933,2,2,7,7,2671130,1,1,14,14,2671306,3,1,1,-1,2671739,1,1,1,-1,2671911,2,2,6,6,2672221,3,1,19,19,2672396,2,2,6,6,2672625,1,1,19,19,2672797,2,2,3,3,2673202,3,1,22,22,2673367,2,2,3,3,2673580,1,1,22,22,2673813,3,1,1,-1,2674090,1,1,1,-1,2674325,2,2,11,11,2674727,2,2,13,13,2674911,3,1,17,17,2675136,2,2,13,13,2675375,2,2,11,11,2675573,1,1,17,17,2675818,3,1,1,-1,2676092,1,1,1,-1,2676291,3,1,1,-1,2676772,1,1,1,-1,2676965,3,1,1,-1,2677688,1,1,1,-1,2677949,3,1,1,-1,2678373,1,1,1,-1,2678587,2,2,7,7,2678912,3,1,28,28,2679060,2,2,7,7,2679286,1,1,28,28,2679487,2,2,6,6,2679802,3,1,25,25,2679976,2,2,6,6,2680158,1,1,25,25,2680365,3,1,1,-1,2680635,1,1,1,-1,2680812,3,1,1,-1,2681220,1,1,1,-1,2681421,3,1,1,-1,2681864,1,1,1,-1,2682077,2,2,2,2,2682503,3,1,35,35,2682669,2,2,2,2,2682892,1,1,35,35,2683154,3,1,1,-1,2683339,1,1,1,-1,2683595,2,2,9,9,2684150,3,1,37,37,2684322,2,2,9,9,2684553,1,1,37,37,2684719,2,2,12,12,2685072,3,1,36,36,2685233,2,2,12,12,2685436,1,1,36,36,2685642,3,1,1,-1,2685874,1,1,1,-1,2686111,2,2,17,17,2686485,3,1,36,36,2686658,3,1,32,32,2687067,2,2,17,17,2687266,1,1,32,32,2687442,1,1,36,36,2687779,2,2,20,20,2688111,3,1,33,33,2688282,2,2,20,20,2688486,1,1,33,33,2688665,3,1,1,-1,2688908,1,1,1,-1,2689077,2,2,18,18,2689544,2,2,19,19,2689751,2,2,21,21,2690094,3,1,30,30,2690289,2,2,21,21,2690492,2,2,19,19,2690767,2,2,18,18,2690966,1,1,30,30,2691171,3,1,1,-1,2691438,1,1,1,-1,2691640,2,2,23,23,2691959,3,1,31,31,2692123,2,2,23,23,2692329,1,1,31,31,2692531,2,2,24,24,2692898,3,1,26,26,2693029,1,1,26,26,2693474,3,1,27,27,2693671,2,2,24,24,2693917,1,1,27,27,2694087,3,1,1,-1,2694352,1,1,1,-1,2694599,2,2,25,25,2694955,3,1,21,21,2695139,2,2,25,25,2695372,1,1,21,21,2695570,3,1,1,-1,2696109,1,1,1,-1,2696344,3,1,1,-1,2696754,1,1,1,-1,2696970,2,2,30,30,2697232,3,1,27,27,2697406,2,2,30,30,2697601,1,1,27,27,2697776,2,2,31,31,2698020,3,1,28,28,2698184,3,1,28,28,2698390,2,2,31,31,2698647,2,2,31,31,2699130,1,1,28,28,2699346,3,1,29,29,2699537,2,2,31,31,2699788,1,1,29,29,2699943,1,1,28,28,2700169,3,1,1,-1,2700459,1,1,1,-1,2700667,2,2,32,32,2701072,2,2,32,32,2701417,2,2,29,29,2701770,3,1,34,34,2701928,2,2,29,29,2702210,1,1,34,34,2702642,3,1,1,-1,2702891,1,1,1,-1,2703079,2,2,31,31,2703400,3,1,36,36,2703578,2,2,31,31,2703793,1,1,36,36,2703973,3,1,1,-1,2704233,1,1,1,-1,2704404,3,1,1,-1,2704819,1,1,1,-1,2705029,2,2,39,39,2705474,3,1,32,32,2705633,2,2,39,39,2705852,1,1,32,32,2706050,3,1,1,-1,2706328,1,1,1,-1,2706505,2,2,36,36,2706826,3,1,28,28,2706995,2,2,36,36,2707267,1,1,28,28,2707435,2,2,38,38,2707915,3,1,27,27,2708073,3,1,26,26,2708278,2,2,38,38,2708521,1,1,26,26,2708733,1,1,27,27,2708930,3,1,1,-1,2709243,1,1,1,-1,2709435,2,2,36,36,2709754,2,2,39,39,2710131,3,1,22,22,2710463,2,2,39,39,2710711,2,2,36,36,2710996,1,1,22,22,2711204,3,1,1,-1,2711577,1,1,1,-1,2711797,3,1,1,-1,2712198,1,1,1,-1,2712454,3,2,-1,-1,2713009,3,1,1,-1,2713273,1,1,1,-1,2713476,2,2,38,38,2713933,3,1,11,11,2714094,2,2,38,38,2714299,1,1,11,11,2714498,3,1,1,-1,2714736,1,1,1,-1,2714934,2,2,30,30,2715250,3,1,13,13,2715406,2,2,30,30,2715613,1,1,13,13,2715783,3,1,1,-1,2716050,1,1,1,-1,2716262,2,2,23,23,2716629,2,2,21,21,2716828,3,1,13,13,2717034,2,2,21,21,2717240,2,2,23,23,2717448,1,1,13,13,2717660,3,1,1,-1,2717917,1,1,1,-1,2718093,2,2,26,26,2718431,3,1,11,11,2718605,2,2,26,26,2718818,1,1,11,11,2719005,3,1,1,-1,2719320,1,1,1,-1,2719517,3,1,1,-1,2720057,1,1,1,-1,2720268,2,2,17,17,2720633,3,1,11,11,2720828,2,2,17,17,2721049,1,1,11,11,2721175,2,2,16,16,2721430,3,1,10,10,2721596,2,2,16,16,2721857,1,1,10,10,2721997,3,1,1,-1,2722268,1,1,1,-1,2722479,2,2,23,23,2722980,3,1,3,3,2723417,2,2,23,23,2723684,1,1,3,3,2723835,3,1,1,-1,2724079,1,1,1,-1,2724303,3,1,1,-1,2724785,1,1,1,-1,2725015,2,2,7,7,2725366,3,1,5,5,2725532,2,2,7,7,2725729,1,1,5,5,2725906,3,1,1,-1,2726171,1,1,1,-1,2726373,2,2,5,5,2726732,3,1,9,9,2726889,2,2,5,5,2727126,1,1,9,9,2727297,3,1,1,-1,2727649,1,1,1,-1,2727842,2,2,14,14,2728208,3,1,15,15,2728377,2,2,14,14,2728595,1,1,15,15,2728754,3,1,1,-1,2729041,1,1,1,-1,2729209,2,2,7,7,2729637,3,1,15,15,2729833,2,2,7,7,2730057,1,1,15,15,2730245,3,1,1,-1,2730548,1,1,1,-1,2730735,2,2,16,16,2731168,3,1,19,19,2731353,2,2,16,16,2731570,1,1,19,19,2731777,3,1,1,-1,2732090,1,1,1,-1,2732281,2,2,13,13,2732685,3,1,27,27,2732860,2,2,13,13,2733069,1,1,27,27,2733239,3,1,1,-1,2733533,1,1,1,-1,2733740,2,2,9,9,2734119,3,1,31,31,2734212,2,2,9,9,2734454,1,1,31,31,2734625,3,1,1,-1,2734895,1,1,1,-1,2735136,2,2,4,4,2735511,3,1,28,28,2735709,2,2,4,4,2735913,1,1,28,28,2736083,3,1,1,-1,2736336,1,1,1,-1,2736526,2,2,4,4,2736873,3,1,32,32,2737043,2,2,4,4,2737273,1,1,32,32,2737469,3,1,1,-1,2737726,1,1,1,-1,2737931,3,1,1,-1,2738371,1,1,1,-1,2738610,2,2,21,21,2739050,3,1,29,29,2739215,2,2,21,21,2739439,1,1,29,29,2739586,3,1,1,-1,2739801,1,1,1,-1,2739994,2,2,18,18,2740408,3,1,27,27,2740596,2,2,18,18,2740812,1,1,27,27,2741008,3,1,1,-1,2741312,1,1,1,-1,2741512,3,1,1,-1,2742171,1,1,1,-1,2742451,2,2,22,22,2742951,3,1,21,21,2743121,1,1,21,21,2743590,2,2,23,23,2743906,2,2,22,22,2744060,3,1,21,21,2744259,2,2,23,23,2744498,1,1,21,21,2744649,3,1,1,-1,2744894,1,1,1,-1,2745151,3,1,1,-1,2745525,1,1,1,-1,2745793,2,2,26,26,2746231,3,1,26,26,2746379,2,2,26,26,2746632,1,1,26,26,2746815,3,1,1,-1,2747183,1,1,1,-1,2747377,2,2,32,32,2747742,3,1,34,34,2747862,3,1,32,32,2748094,2,2,32,32,2748290,1,1,32,32,2748472,1,1,34,34,2748725,3,1,1,-1,2749064,1,1,1,-1,2749279,2,2,36,36,2749784,3,1,39,39,2749978,2,2,36,36,2750236,1,1,39,39,2750386,3,2,-1,-1,2750690,3,1,1,-1,2750950,1,1,1,-1,2751161,2,2,33,33,2751446,3,1,35,35,2751641,2,2,33,33,2751869,1,1,35,35,2752061,3,1,1,-1,2752393,1,1,1,-1,2752624,2,2,28,28,2752972,2,2,26,26,2753167,3,1,22,22,2753402,2,2,26,26,2753601,2,2,28,28,2753841,1,1,22,22,2754023,2,2,29,29,2754302,3,1,24,24,2754473,2,2,29,29,2754691,1,1,24,24,2754895,3,1,1,-1,2755176,1,1,1,-1,2755335,2,2,25,25,2755686,3,1,23,23,2755846,2,2,25,25,2756065,1,1,23,23,2756226,2,2,23,23,2756633,3,1,29,29,2756808,2,2,23,23,2757043,1,1,28,28,2757238,3,1,28,28,2758017,1,1,29,29,2758255,3,1,1,-1,2758502,1,1,1,-1,2758697,2,2,16,16,2759006,3,1,24,24,2759171,2,2,16,16,2759376,1,1,24,24,2759528,2,2,14,14,2759886,3,1,20,20,2760096,2,2,14,14,2760364,1,1,20,20,2760576,2,2,11,11,2761051,3,1,26,26,2761217,2,2,11,11,2761446,1,1,26,26,2761595,3,1,1,-1,2761887,1,1,1,-1,2762091,2,2,8,8,2762395,2,2,7,7,2762541,3,1,30,30,2762740,2,2,8,8,2762967,2,2,7,7,2763118,1,1,30,30,2763352,2,2,12,12,2763712,2,2,12,12,2764024,2,2,11,11,2764203,3,1,30,30,2764437,2,2,11,11,2764644,1,1,30,30,2764815,2,2,6,6,2765323,3,1,31,31,2765510,2,2,6,6,2765726,1,1,31,31,2765896,3,1,1,-1,2766141,1,1,1,-1,2766422,2,2,2,2,2767058,3,1,28,28,2767255,2,2,2,2,2767489,1,1,28,28,2767693,3,1,1,-1,2767931,1,1,1,-1,2768083,3,1,1,-1,2768703,1,1,1,-1,2768902,2,2,8,8,2769386,3,1,10,10,2769552,2,2,8,8,2769765,1,1,10,10,2769923,3,1,1,-1,2770160,1,1,1,-1,2770365,2,2,7,7,2770636,3,1,7,7,2770784,2,2,7,7,2771015,1,1,7,7,2771177,2,2,6,6,2771454,3,1,5,5,2771620,2,2,6,6,2771834,1,1,5,5,2772028,2,2,9,9,2772331,2,2,9,9,2772636,2,2,8,8,2772805,3,1,4,4,2773013,2,2,8,8,2773230,1,1,4,4,2773517,3,1,1,-1,2773768,1,1,1,-1,2773984,2,2,17,17,2774411,3,1,12,12,2774563,2,2,17,17,2774784,1,1,12,12,2774954,2,2,12,12,2775376,3,1,13,13,2775540,2,2,12,12,2775770,1,1,13,13,2775943,3,1,1,-1,2776225,1,1,1,-1,2776421,3,1,1,-1,2776860,1,1,1,-1,2777074,2,2,21,21,2777478,3,1,17,17,2777652,2,2,21,21,2777874,1,1,17,17,2778046,3,1,1,-1,2778298,1,1,1,-1,2778496,2,2,27,27,2778834,3,1,16,16,2778999,2,2,27,27,2779219,1,1,16,16,2779406,3,1,1,-1,2779746,1,1,1,-1,2779947,3,2,-1,-1,2780700,3,1,1,-1,2780974,1,1,1,-1,2781178,2,2,32,32,2781578,3,1,9,9,2781785,2,2,32,32,2782031,1,1,9,9,2782220,3,1,1,-1,2782498,1,1,1,-1,2782694,2,2,20,20,2783052,3,1,8,8,2783202,2,2,20,20,2783418,1,1,8,8,2783628,3,1,1,-1,2784400,1,1,1,-1,2784615,2,2,3,3,2785252,3,1,36,36,2785418,2,2,3,3,2785627,1,1,36,36,2785796,3,1,1,-1,2786298,1,1,1,-1,2786481,3,2,-1,-1,2787075,3,1,1,-1,2787347,1,1,1,-1,2787524,2,2,33,33,2787929,3,1,33,33,2788077,2,2,33,33,2788305,1,1,33,33,2788482,3,1,1,-1,2788946,1,1,1,-1,2789150,2,2,31,31,2789534,3,1,7,7,2789676,2,2,31,31,2789943,1,1,7,7,2790145,2,2,1,-1,2790550,3,1,1,-1,2791058,1,1,1,-1,2791270,2,2,23,23,2791814,2,2,25,25,2792055,3,1,18,18,2792246,2,2,25,25,2792452,2,2,23,23,2792667,1,1,18,18,2792887,2,2,25,25,2793193,3,1,16,16,2793412,2,2,25,25,2793628,1,1,16,16,2793803,3,1,1,-1,2794095,1,1,1,-1,2794268,3,1,1,-1,2794747,1,1,1,-1,2794981,2,2,36,36,2795292,3,1,14,14,2795469,2,2,36,36,2795669,1,1,14,14,2795834,2,2,39,39,2796211,3,1,18,18,2796390,2,2,39,39,2796619,1,1,18,18,2796812,2,2,38,38,2797225,3,1,11,11,2797425,2,2,38,38,2797597,1,1,11,11,2797802,3,1,1,-1,2798140,1,1,1,-1,2798345,2,2,32,32,2798665,3,1,8,8,2798819,2,2,32,32,2799036,1,1,8,8,2799197,2,2,34,34,2799573,3,1,3,3,2799768,2,2,34,34,2800007,1,1,3,3,2800175,3,1,1,-1,2800456,1,1,1,-1,2800651,2,2,28,28,2801002,3,1,4,4,2801203,2,2,28,28,2801377,1,1,4,4,2801571,3,1,1,-1,2801930,1,1,1,-1,2802156,2,2,21,21,2802531,3,1,5,5,2802748,2,2,21,21,2802935,1,1,5,5,2803106,3,1,1,-1,2803387,1,1,1,-1,2803651,3,1,1,-1,2804330,1,1,1,-1,2804564,2,2,16,16,2804905,3,1,3,3,2805080,2,2,16,16,2805273,1,1,3,3,2805487,3,1,1,-1,2805852,1,1,1,-1,2806097,3,1,1,-1,2806391,1,1,1,-1,2806666,3,1,1,-1,2807177,1,1,1,-1,2807415,3,1,1,-1,2807823,1,1,1,-1,2808063,3,1,1,-1,2808669,1,1,1,-1,2808938,2,2,9,9,2809378,3,1,5,5,2809551,2,2,9,9,2809787,1,1,5,5,2809933,3,1,1,-1,2810190,1,1,1,-1,2810479,2,2,11,11,2810852,3,1,4,4,2811012,2,2,11,11,2811228,1,1,4,4,2811420,2,2,2,2,2811871,3,1,3,3,2812363,2,2,2,2,2812567,1,1,3,3,2812729,2,2,3,3,2812973,3,1,4,4,2813139,2,2,3,3,2813361,1,1,4,4,2813523,3,1,1,-1,2813859,1,1,1,-1,2814085,2,2,3,3,2814379,2,2,2,2,2814540,3,1,11,11,2814770,2,2,3,3,2814982,2,2,2,2,2815147,1,1,11,11,2815492,3,1,1,-1,2815798,1,1,1,-1,2815976,2,2,2,2,2816312,3,1,17,17,2816471,2,2,2,2,2816712,1,1,17,17,2816885,3,1,1,-1,2817153,1,1,1,-1,2817357,3,1,1,-1,2818098,1,1,1,-1,2818296,3,1,1,-1,2818741,1,1,1,-1,2819050,2,2,4,4,2819419,3,1,28,28,2819569,2,2,4,4,2819805,2,2,4,4,2820234,1,1,28,28,2820472,3,1,27,27,2820641,2,2,4,4,2820860,1,1,27,27,2821047,3,1,1,-1,2821320,1,1,1,-1,2821526,2,2,3,3,2821838,3,1,31,31,2822009,2,2,3,3,2822222,1,1,31,31,2822379,2,2,6,6,2822681,3,1,32,32,2822864,2,2,6,6,2823078,1,1,32,32,2823263,3,1,1,-1,2823512,1,1,1,-1,2823704,2,2,2,2,2824128,3,1,39,39,2824297,2,2,2,2,2824550,1,1,39,39,2824727,3,1,1,-1,2825011,1,1,1,-1,2825203,3,1,1,-1,2825679,1,1,1,-1,2825914,3,1,1,-1,2826602,1,1,1,-1,2826863,2,2,16,16,2827313,3,1,39,39,2827513,2,2,16,16,2827720,1,1,39,39,2827886,3,1,1,-1,2828155,1,1,1,-1,2828391,2,2,12,12,2828842,3,1,30,30,2829006,2,2,12,12,2829206,1,1,30,30,2829438,3,1,1,-1,2829677,1,1,1,-1,2829881,2,2,14,14,2830182,3,1,27,27,2830344,2,2,14,14,2830564,1,1,27,27,2830739,2,2,12,12,2831035,3,1,25,25,2831270,2,2,12,12,2831419,1,1,25,25,2831647,2,2,17,17,2831995,3,1,25,25,2832184,2,2,17,17,2832424,1,1,25,25,2832632,3,1,1,-1,2832941,1,1,1,-1,2833148,2,2,22,22,2833508,2,2,24,24,2833737,3,1,28,28,2833947,2,2,24,24,2834164,2,2,22,22,2834366,1,1,28,28,2834606,3,1,1,-1,2834933,1,1,1,-1,2835137,2,2,21,21,2835444,3,1,37,37,2835640,3,1,34,34,2835911,2,2,21,21,2836117,1,1,34,34,2836284,1,1,37,37,2836675,3,1,1,-1,2836951,1,1,1,-1,2837139,2,2,27,27,2837439,2,2,26,26,2837610,3,1,35,35,2837820,2,2,27,27,2838051,2,2,26,26,2838230,1,1,35,35,2838472,3,1,1,-1,2838738,1,1,1,-1,2838950,2,2,31,31,2839666,3,1,37,37,2839832,2,2,31,31,2840026,1,1,37,37,2840236,3,1,1,-1,2840463,1,1,1,-1,2840684,2,2,35,35,2841049,1,2,35,35,2841212,2,2,35,35,2841447,3,2,35,35,2842138,2,2,35,35,2842736,3,1,38,38,2842917,2,2,35,35,2843126,1,1,38,38,2843562,2,2,33,33,2843934,3,1,39,39,2844132,2,2,33,33,2844340,1,1,39,39,2844535,2,2,39,39,2844956,3,1,37,37,2845128,2,2,39,39,2845385,1,1,37,37,2845556,3,1,1,-1,2845802,1,1,1,-1,2845971,3,1,1,-1,2846524,1,1,1,-1,2846747,3,1,1,-1,2847185,1,1,1,-1,2847370,3,1,1,-1,2847834,1,1,1,-1,2848088,2,2,29,29,2848376,3,1,25,25,2848542,2,2,29,29,2848758,1,1,25,25,2848952,3,1,1,-1,2849186,1,1,1,-1,2849438,3,1,1,-1,2849731,1,1,1,-1,2849972,3,1,1,-1,2850482,1,1,1,-1,2850690,2,2,37,37,2851061,3,1,22,22,2851205,2,2,37,37,2851472,1,1,22,22,2851686,3,1,1,-1,2851878,1,1,1,-1,2852088,3,1,1,-1,2852471,1,1,1,-1,2852787,3,2,-1,-1,2853444,3,1,1,-1,2853751,1,1,1,-1,2853986,2,2,32,32,2854306,3,1,18,18,2854468,2,2,32,32,2854678,1,1,18,18,2854848,2,2,34,34,2855187,3,1,17,17,2855356,2,2,34,34,2855547,1,1,17,17,2855725,3,1,1,-1,2856072,1,1,1,-1,2856320,2,2,34,34,2856767,3,1,25,25,2857106,2,2,34,34,2857338,1,1,25,25,2857512,2,2,35,35,2857815,3,1,21,21,2857982,2,2,35,35,2858165,1,1,21,21,2858390,3,1,1,-1,2858672,1,1,1,-1,2858850,2,2,30,30,2859183,3,1,24,24,2859384,2,2,30,30,2859579,1,1,24,24,2859756,2,2,28,28,2860192,3,1,26,26,2860378,2,2,28,28,2860570,1,1,26,26,2860747,3,1,1,-1,2861019,1,1,1,-1,2861246,2,2,21,21,2861742,3,1,18,18,2861910,2,2,21,21,2862113,1,1,18,18,2862296,3,1,1,-1,2862560,1,1,1,-1,2862736,3,1,1,-1,2863198,1,1,1,-1,2863405,2,2,20,20,2863887,3,1,5,5,2864076,2,2,20,20,2864315,1,1,5,5,2864460,3,1,1,-1,2864761,1,1,1,-1,2864972,3,1,1,-1,2865448,1,1,1,-1,2865732,3,1,1,-1,2866112,1,1,1,-1,2866381,2,2,11,11,2866893,3,1,16,16,2867083,2,2,11,11,2867290,1,1,16,16,2867493,3,1,1,-1,2867767,1,1,1,-1,2867966,3,1,1,-1,2868354,1,1,1,-1,2868616,3,1,1,-1,2869233,1,1,1,-1,2869451,2,2,10,10,2869842,3,1,19,19,2870007,2,2,10,10,2870224,1,1,19,19,2870413,3,1,1,-1,2870735,1,1,1,-1,2870967,2,2,3,3,2871416,3,1,24,24,2871579,2,2,3,3,2871782,1,1,24,24,2871950,2,2,6,6,2872256,3,1,23,23,2872424,2,2,6,6,2872637,1,1,23,23,2872799,3,1,1,-1,2873072,1,1,1,-1,2873269,2,2,4,4,2873704,3,1,18,18,2873889,2,2,4,4,2874133,1,1,18,18,2874281,3,1,1,-1,2874654,1,1,1,-1,2874869,2,2,15,15,2875417,3,1,24,24,2875554,2,2,15,15,2875777,1,1,24,24,2875940,3,1,1,-1,2876232,1,1,1,-1,2876444,3,1,1,-1,2876846,1,1,1,-1,2877074,2,2,14,14,2877395,3,1,35,35,2877522,2,2,14,14,2877761,1,1,35,35,2877928,3,1,1,-1,2878226,1,1,1,-1,2878426,2,2,7,7,2878909,3,1,35,35,2879083,2,2,7,7,2879307,1,1,35,35,2879478,3,1,1,-1,2879754,1,1,1,-1,2879920,2,2,12,12,2880267,3,1,38,38,2880430,2,2,12,12,2880642,1,1,38,38,2880820,3,1,1,-1,2881083,1,1,1,-1,2881255,2,2,21,21,2881627,3,1,39,39,2881799,2,2,21,21,2882055,1,1,39,39,2882207,3,1,1,-1,2882519,1,1,1,-1,2882711,2,2,26,26,2883049,3,1,33,33,2883223,2,2,26,26,2883429,1,1,33,33,2883616,2,2,23,23,2884008,3,1,30,30,2884241,2,2,23,23,2884450,1,1,30,30,2884917,2,2,29,29,2885265,3,1,31,31,2885455,2,2,29,29,2885651,1,1,31,31,2885825,3,1,1,-1,2886097,1,1,1,-1,2886319,2,2,33,33,2886643,3,1,34,34,2886808,2,2,33,33,2887024,1,1,34,34,2887219,3,1,1,-1,2887502,1,1,1,-1,2887696,2,2,36,36,2888076,3,1,33,33,2888245,2,2,36,36,2888441,1,1,33,33,2888607,2,2,37,37,2888846,3,1,34,34,2889031,2,2,37,37,2889261,1,1,34,34,2889392,2,2,37,37,2889730,3,1,38,38,2889907,2,2,37,37,2890138,1,1,38,38,2890336,3,1,1,-1,2890621,1,1,1,-1,2890803,2,2,38,38,2891144,3,1,32,32,2891339,2,2,38,38,2891549,1,1,32,32,2891719,3,1,1,-1,2891965,1,1,1,-1,2892170,2,2,33,33,2892471,1,1,30,30,2892617,2,2,33,33,2892880,1,1,30,30,2893050,3,1,1,-1,2893357,1,1,1,-1,2893536,3,1,1,-1,2893874,1,1,1,-1,2894111,3,2,-1,-1,2894746,3,1,1,-1,2895057,1,1,1,-1,2895266,2,2,32,32,2895669,3,1,15,15,2895806,2,2,32,32,2896037,1,1,15,15,2896218,3,1,1,-1,2896500,1,1,1,-1,2896695,2,2,35,35,2897330,3,1,3,3,2897539,2,2,35,35,2897729,1,1,3,3,2897915,3,1,1,-1,2898178,1,1,1,-1,2898373,2,2,26,26,2898788,3,1,2,2,2898952,2,2,26,26,2899157,1,1,2,2,2899376,3,1,1,-1,2899644,2,2,30,30,2900226,3,2,30,30,2900649,3,2,30,30,2900820,1,2,30,30,2901164,1,2,30,30,2901574,3,2,30,30,2902251,1,2,1,-1,2903443,3,2,1,-1,2904018,3,1,1,-1,2904266,1,1,1,-1,2905212,1,1,1,-1,2905523,1,2,-1,-1,2906326,3,1,1,-1,2906607,2,1,30,30,2907147,1,1,1,-1,2907780,1,1,1,-1,2908468,3,1,1,-1,2909135,2,1,30,30,2909932,3,2,-1,-1,2910235,1,1,1,-1,2910543,3,2,11,11,2911422,3,1,1,-1,2911857,1,1,1,-1,2912237,1,2,1,-1,2913597,1,2,11,11,2914400,3,2,11,11,2914605,3,2,11,11,2914751,3,2,1,-1,2915120,1,2,1,-1,2916543,3,1,1,-1,2916906,1,1,1,-1,2917540,3,2,1,-1,2917976,3,1,1,-1,2918277,3,1,1,-1,2918554,1,1,1,-1,2919592,1,2,1,-1,2920486,3,1,30,30,2921153,3,1,30,30,2921524,3,1,1,-1,2922240,1,1,1,-1,2922521,1,1,1,-1,2922848,1,2,1,-1,2923668,3,2,1,-1,2924581,3,1,1,-1,2925063,1,1,1,-1,2925440,1,1,1,-1,2925736,3,1,30,30,2926625,3,1,1,-1,2927053,3,1,1,-1,2927809,3,1,1,-1,2928212,1,1,1,-1,2928987,3,2,1,-1,2929326,1,2,-1,-1,2930239,3,1,1,-1,2930619,2,1,30,30,2931046,1,1,1,-1,2931323,3,2,-1,-1,2931837,3,1,1,-1,2932131,1,1,1,-1,2932347,3,1,1,-1,2932819,1,1,1,-1,2933013,2,2,25,25,2933357,3,1,22,22,2933534,2,2,25,25,2933829,1,1,22,22,2934014,3,1,1,-1,2934338,1,1,1,-1,2934515,2,2,22,22,2934873,3,1,14,14,2934990,2,2,22,22,2935226,1,1,14,14,2935387,2,2,20,20,2935683,3,1,13,13,2935870,2,2,20,20,2936061,1,1,13,13,2936259,3,1,1,-1,2936596,1,1,1,-1,2936801,2,2,16,16,2937149,3,1,11,11,2937340,2,2,16,16,2937551,1,1,11,11,2937709,3,1,1,-1,2937995,1,1,1,-1,2938312,2,2,16,16,2938481,3,1,8,8,2938823,3,1,7,7,2939170,2,2,16,16,2939426,1,1,7,7,2939576,1,1,8,8,2939781,2,2,20,20,2940183,2,2,20,20,2940660,2,2,19,19,2940839,3,1,9,9,2941075,2,2,19,19,2941329,1,1,9,9,2941467,3,1,1,-1,2941820,1,1,1,-1,2942043,2,2,9,9,2942417,3,1,7,7,2942582,2,2,9,9,2942789,1,1,7,7,2942961,3,1,1,-1,2943228,1,1,1,-1,2943436,2,2,13,13,2943711,3,1,12,12,2943879,2,2,13,13,2944124,1,1,12,12,2944282,3,1,1,-1,2944583,1,1,1,-1,2944786,2,2,3,3,2945194,3,1,10,10,2945372,2,2,3,3,2945570,1,1,10,10,2945715,2,2,6,6,2946050,3,1,12,12,2946227,2,2,6,6,2946455,1,1,12,12,2946650,3,1,1,-1,2947101,1,1,1,-1,2947316,2,2,12,12,2947986,3,1,20,20,2948200,2,2,12,12,2948397,1,1,20,20,2948589,3,1,1,-1,2948876,1,1,1,-1,2949070,2,2,14,14,2949389,3,1,28,28,2949554,2,2,14,14,2949771,1,1,28,28,2949903,2,2,15,15,2950134,2,2,14,14,2950317,3,1,30,30,2950576,2,2,15,15,2950810,2,2,14,14,2950979,1,1,30,30,2951259,3,1,1,-1,2951523,1,1,1,-1,2951732,2,2,16,16,2952050,3,1,37,37,2952240,2,2,16,16,2952447,1,1,37,37,2952652,3,1,1,-1,2952880,1,1,1,-1,2953102,2,2,11,11,2953374,3,1,35,35,2953567,2,2,11,11,2953771,1,1,35,35,2953953,2,2,5,5,2954423,3,1,30,30,2954614,2,2,5,5,2954780,1,1,30,30,2954998,3,1,1,-1,2955396,1,1,1,-1,2955599,2,2,32,32,2955905,3,1,33,33,2956075,2,2,32,32,2956284,1,1,33,33,2956447,2,2,36,36,2957236,3,1,35,35,2957411,2,2,36,36,2957623,1,1,35,35,2957813,3,1,1,-1,2958081,1,1,1,-1,2958263,3,1,1,-1,2958730,1,1,1,-1,2958946,3,1,1,-1,2959447,1,1,1,-1,2959673,3,2,-1,-1,2960366,3,1,1,-1,2960626,1,1,1,-1,2960838,2,2,33,33,2961144,3,1,11,11,2961311,2,2,33,33,2961547,1,1,11,11,2961703,3,1,1,-1,2961980,1,1,1,-1,2962160,3,1,1,-1,2962772,1,1,1,-1,2962978,2,2,34,34,2963383,3,1,24,24,2963579,2,2,34,34,2963750,1,1,24,24,2963921,3,1,1,-1,2964187,1,1,1,-1,2964369,2,2,38,38,2964763,3,1,30,30,2964932,2,2,38,38,2965172,1,1,30,30,2965396,3,1,1,-1,2965789,1,1,1,-1,2965970,2,2,16,16,2966295,3,1,33,33,2966470,2,2,16,16,2966696,1,1,33,33,2966940,3,1,1,-1,2967314,1,1,1,-1,2967530,3,1,1,-1,2967966,1,1,1,-1,2968206,3,2,-1,-1,2969314,3,1,1,-1,2969666,1,1,1,-1,2969858,2,2,16,16,2970294,3,1,4,4,2970461,2,2,16,16,2970640,1,1,4,4,2970816,3,1,1,-1,2971072,1,1,1,-1,2971274,3,1,1,-1,2972028,1,1,1,-1,2972266,3,1,1,-1,2973417,1,1,1,-1,2973612,2,2,37,37,2973976,3,1,3,3,2974104,2,2,37,37,2974305,1,1,3,3,2974511,3,2,-1,-1,2974779,3,1,1,-1,2975080,1,1,1,-1,2975258,3,2,39,39,2976468,1,2,39,39,2977147,3,2,-1,-1,2977398,3,1,1,-1,2977698,1,1,1,-1,2977865,2,2,14,14,2978381,3,1,11,11,2978544,2,2,14,14,2978784,1,1,11,11,2979051,2,2,1,-1,2979460,3,1,1,-1,2981839,1,1,1,-1,2982106,3,2,-1,-1,2982960,3,1,1,-1,2983221,1,1,1,-1,2983495,3,2,-1,-1,2983901,3,1,1,-1,2984162,1,1,1,-1,2984430,2,2,9,9,2985180,3,1,34,34,2985362,2,2,9,9,2985568,1,1,34,34,2985745,3,2,-1,-1,2986814,2,2,-1,-1,2987700,1,2,-20,-1,2988487,2,1,1,1,2988725,3,2,-20,-1,2988894,1,2,1,20,2989123,2,1,1,1,2989333,3,2,1,20,2989549,3,1,1,-1,2990084,1,1,1,-1,2990254,2,2,25,25,2990660,3,1,6,6,2990821,2,2,25,25,2991009,1,1,6,6,2991206,2,2,24,24,2991537,3,1,9,9,2991711,2,2,24,24,2991917,1,1,9,9,2992093,3,1,1,-1,2992299,1,1,1,-1,2992495,2,2,22,22,2992830,3,1,5,5,2992981,3,1,7,7,2993184,2,2,22,22,2993446,1,1,7,7,2993586,1,1,5,5,2993815,3,1,1,-1,2994096,1,1,1,-1,2994301,2,2,19,19,2994609,3,1,8,8,2994745,3,1,7,7,2994938,2,2,19,19,2995146,1,1,8,8,2995324,1,1,7,7,2995520,3,1,1,-1,2995778,1,1,1,-1,2995991,3,1,1,-1,2996443,1,1,1,-1,2996717,2,2,12,12,2997041,3,1,11,11,2997221,2,2,12,12,2997443,1,1,11,11,2997597,3,1,1,-1,2997888,1,1,1,-1,2998101,2,2,9,9,2998425,2,2,7,7,2998670,3,1,6,6,2998843,2,2,7,7,2999041,2,2,9,9,2999311,1,1,6,6,2999660,3,1,1,-1,2999931,1,1,1,-1,3000122,3,1,1,-1,3000572,1,1,1,-1,3000778,2,2,6,6,3001181,3,1,9,9,3001513,2,2,6,6,3001719,1,1,9,9,3001886,2,2,4,4,3002264,3,1,11,11,3002408,2,2,4,4,3002638,1,1,11,11,3002814,3,1,1,-1,3003078,1,1,1,-1,3003332,2,2,2,2,3003898,3,1,14,14,3004061,2,2,2,2,3004272,1,1,14,14,3004472,3,1,1,-1,3004841,1,1,1,-1,3005024,2,2,4,4,3005398,3,1,22,22,3005608,2,2,4,4,3005839,1,1,22,22,3006043,3,1,1,-1,3006273,1,1,1,-1,3006487,3,1,1,-1,3006923,1,1,1,-1,3007130,2,2,8,8,3007464,3,1,15,15,3007641,2,2,8,8,3007869,1,1,15,15,3008053,3,1,1,-1,3008344,1,1,1,-1,3008585,2,2,18,18,3008896,2,2,16,16,3009099,3,1,15,15,3009275,2,2,16,16,3009485,2,2,18,18,3009776,1,1,15,15,3010068,2,2,19,19,3010326,3,1,14,14,3010495,2,2,19,19,3010736,1,1,14,14,3010903,2,2,18,18,3011199,3,1,13,13,3011381,2,2,18,18,3011579,1,1,13,13,3011778,3,1,1,-1,3011995,1,1,1,-1,3012262,3,1,1,-1,3012689,1,1,1,-1,3012943,2,2,27,27,3013376,3,1,12,12,3013548,2,2,27,27,3013740,1,1,12,12,3013927,3,1,1,-1,3014150,1,1,1,-1,3014361,3,1,1,-1,3014695,1,1,1,-1,3014969,2,2,36,36,3015606,3,1,12,12,3015783,2,2,36,36,3015974,1,1,12,12,3016150,3,1,1,-1,3016386,1,1,1,-1,3016573,2,2,35,35,3016895,2,2,33,33,3017070,3,1,17,17,3017280,2,2,33,33,3017509,2,2,35,35,3017751,1,1,17,17,3017957,3,1,1,-1,3018265,1,1,1,-1,3018490,2,2,39,39,3018874,3,1,5,5,3019375,2,2,39,39,3019580,1,1,5,5,3019753,3,1,1,-1,3019987,1,1,1,-1,3020161,2,2,34,34,3020646,3,1,2,2,3020843,2,2,34,34,3021006,1,1,2,2,3021220,3,1,1,-1,3021484,1,1,1,-1,3021776,3,1,1,-1,3022080,1,1,1,-1,3022347,2,2,28,28,3022656,3,1,8,8,3022824,3,1,5,5,3023117,2,2,28,28,3023303,1,1,5,5,3023470,1,1,8,8,3023745,3,1,1,-1,3024032,1,1,1,-1,3024238,3,1,1,-1,3024738,1,1,1,-1,3024965,2,2,33,33,3025277,2,2,36,36,3025670,3,1,25,25,3025870,2,2,36,36,3026089,2,2,33,33,3026361,1,1,25,25,3026588,2,2,35,35,3026864,3,1,26,26,3027039,2,2,35,35,3027272,1,1,26,26,3027473,3,1,1,-1,3027782,1,1,1,-1,3028013,2,2,38,38,3028470,3,1,34,34,3028580,2,2,38,38,3028752,1,1,34,34,3028925,3,1,1,-1,3029203,1,1,1,-1,3029480,2,2,35,35,3029911,3,1,39,39,3030086,2,2,35,35,3030322,1,1,39,39,3030483,2,2,29,29,3030993,3,1,39,39,3031173,2,2,29,29,3031411,1,1,39,39,3031574,3,1,1,-1,3031846,1,1,1,-1,3032090,2,2,22,22,3032622,3,1,38,38,3032790,2,2,22,22,3033021,1,1,38,38,3033189,3,1,1,-1,3033404,1,1,1,-1,3033642,2,2,19,19,3033988,2,2,22,22,3034280,3,1,35,35,3034454,2,2,22,22,3034694,2,2,19,19,3035003,1,1,35,35,3035224,3,1,1,-1,3035461,1,1,1,-1,3035646,3,1,1,-1,3036141,1,1,1,-1,3036381,2,2,20,20,3036887,3,1,31,31,3037071,2,2,20,20,3037297,1,1,31,31,3037468,3,1,1,-1,3037699,1,1,1,-1,3037869,2,2,17,17,3038178,3,1,30,30,3038346,3,1,28,28,3038578,2,2,17,17,3038766,1,1,28,28,3038956,1,1,30,30,3039173,3,1,1,-1,3039465,1,1,1,-1,3039678,3,1,1,-1,3040112,1,1,1,-1,3040429,2,2,29,29,3040774,3,1,33,33,3040966,2,2,29,29,3041204,1,1,33,33,3041383,3,1,1,-1,3041710,1,1,1,-1,3041929,2,2,20,20,3042258,2,2,19,19,3042436,3,1,21,21,3042629,2,2,20,20,3042896,2,2,19,19,3043065,1,1,21,21,3043304,2,2,21,21,3043578,3,1,20,20,3043741,2,2,21,21,3043954,1,1,20,20,3044151,2,2,21,21,3044697,3,1,19,19,3045086,2,2,21,21,3045280,1,1,19,19,3045494,3,1,1,-1,3045710,1,1,1,-1,3045929,3,1,1,-1,3046362,1,1,1,-1,3046574,2,2,19,19,3046987,3,1,24,24,3047173,2,2,19,19,3047389,1,1,24,24,3047550,3,1,1,-1,3047802,1,1,1,-1,3047991,2,2,15,15,3048407,3,1,20,20,3048574,2,2,15,15,3048769,1,1,20,20,3048977,3,1,1,-1,3049278,1,1,1,-1,3049531,3,1,1,-1,3049903,1,1,1,-1,3050200,2,2,20,20,3050625,3,1,10,10,3050796,2,2,20,20,3050957,1,1,10,10,3051157,3,1,1,-1,3051423,1,1,1,-1,3051705,3,1,1,-1,3052102,1,1,1,-1,3052382,3,1,1,-1,3052665,1,1,1,-1,3052970,3,1,1,-1,3053510,1,1,1,-1,3053751,2,2,9,9,3054276,3,1,25,25,3054459,2,2,9,9,3054684,1,1,25,25,3054860,3,1,1,-1,3055094,1,1,1,-1,3055341,3,1,1,-1,3055606,1,1,1,-1,3055843,2,2,2,2,3056378,3,1,27,27,3056549,2,2,2,2,3056767,1,1,27,27,3056955,3,1,1,-1,3057265,1,1,1,-1,3057447,2,2,4,4,3057877,3,1,31,31,3058020,2,2,4,4,3058244,1,1,31,31,3058432,3,1,1,-1,3058708,1,1,1,-1,3058904,2,2,2,2,3059442,3,1,33,33,3059612,2,2,2,2,3059843,1,1,33,33,3060018,3,1,1,-1,3060256,1,1,1,-1,3060463,2,2,5,5,3060802,3,1,36,36,3060972,3,1,37,37,3061181,2,2,5,5,3061421,1,1,37,37,3061579,1,1,36,36,3061777,2,2,6,6,3062085,3,1,35,35,3062233,2,2,6,6,3062426,1,1,35,35,3062597,3,1,1,-1,3062873,1,1,1,-1,3063073,2,2,10,10,3063375,2,2,9,9,3063555,3,1,36,36,3063783,2,2,10,10,3063999,2,2,9,9,3064194,1,1,36,36,3064431,3,1,1,-1,3064698,1,1,1,-1,3064909,2,2,11,11,3065246,3,1,33,33,3065498,2,2,11,11,3065718,1,1,33,33,3065857,2,2,10,10,3066167,3,1,31,31,3066305,2,2,10,10,3066514,1,1,31,31,3066710,3,1,1,-1,3067007,1,1,1,-1,3067240,3,1,1,-1,3067570,1,1,1,-1,3067815,3,1,1,-1,3068209,1,1,1,-1,3068458,3,2,-1,-1,3069224,3,1,1,-1,3069569,1,1,1,-1,3069770,3,1,1,-1,3070149,1,1,1,-1,3070444,3,1,1,-1,3070760,1,1,1,-1,3070983,3,1,1,-1,3071373,1,1,1,-1,3071642,3,1,1,-1,3072017,1,1,1,-1,3072304,3,1,1,-1,3072724,1,1,1,-1,3073012,3,1,1,-1,3073347,1,1,1,-1,3073647,2,2,28,28,3074113,3,1,11,11,3074283,2,2,28,28,3074496,1,1,11,11,3074673,3,1,1,-1,3074936,1,1,1,-1,3075243,3,1,1,-1,3075581,1,1,1,-1,3075849,3,1,1,-1,3076200,1,1,1,-1,3076476,2,2,19,19,3076911,3,1,17,17,3077072,2,2,19,19,3077275,1,1,17,17,3077481,3,1,1,-1,3077782,1,1,1,-1,3078061,2,2,10,10,3078428,3,1,10,10,3078601,2,2,10,10,3078805,1,1,10,10,3079004,3,1,1,-1,3079246,1,1,1,-1,3079518,3,1,1,-1,3079833,1,1,1,-1,3080079,2,2,5,5,3080801,3,1,5,5,3080967,2,2,5,5,3081172,1,1,5,5,3081380,3,1,1,-1,3081678,1,1,1,-1,3081913,3,1,1,-1,3082293,1,1,1,-1,3082571,3,1,1,-1,3083015,1,1,1,-1,3083323,3,1,1,-1,3083746,1,1,1,-1,3083991,3,1,1,-1,3084507,1,1,1,-1,3084771,3,1,1,-1,3085281,1,1,1,-1,3085548,3,1,1,-1,3085959,1,1,1,-1,3086304,3,1,1,-1,3086779,1,1,1,-1,3087073,3,1,1,-1,3087586,1,1,1,-1,3087851,3,2,-1,-1,3088268,3,1,1,-1,3088503,1,1,1,-1,3088765,2,2,39,39,3089146,3,1,35,35,3089306,2,2,39,39,3089527,1,1,35,35,3089681,2,2,35,35,3090162,3,1,33,33,3090313,2,2,35,35,3090505,1,1,33,33,3090710,3,1,1,-1,3090979,1,1,1,-1,3091208,2,2,23,23,3091855,3,1,27,27,3092064,2,2,23,23,3092309,1,1,27,27,3092479,3,1,1,-1,3092780,1,1,1,-1,3093038,2,2,19,19,3093491,3,1,32,32,3093651,2,2,19,19,3093891,1,1,32,32,3094032,3,1,1,-1,3094332,1,1,1,-1,3094497,2,2,26,26,3094804,3,1,38,38,3094981,2,2,26,26,3095207,1,1,38,38,3095408,3,1,1,-1,3095782,1,1,1,-1,3096019,3,1,1,-1,3096442,1,1,1,-1,3096706,2,2,5,5,3097080,3,1,31,31,3097243,2,2,5,5,3097461,1,1,31,31,3097659,3,1,1,-1,3097858,1,1,1,-1,3098062,2,2,4,4,3098508,3,1,26,26,3098670,2,2,4,4,3098872,1,1,26,26,3099046,3,1,1,-1,3099314,1,1,1,-1,3099531,2,2,8,8,3099829,3,1,29,29,3099965,2,2,8,8,3100241,1,1,29,29,3100408,3,1,1,-1,3100705,1,1,1,-1,3100940,3,1,1,-1,3101324,1,1,1,-1,3101591,2,2,11,11,3102147,3,1,18,18,3102333,2,2,11,11,3102579,1,1,18,18,3102738,3,1,1,-1,3102994,1,1,1,-1,3103193,2,2,17,17,3103545,3,1,23,23,3103697,2,2,17,17,3103932,1,1,23,23,3104106,2,2,15,15,3104410,3,1,22,22,3104575,2,2,15,15,3104790,1,1,22,22,3105026,3,1,1,-1,3105246,1,1,1,-1,3105449,2,2,18,18,3105764,3,1,18,18,3105934,2,2,18,18,3106161,1,1,18,18,3106340,3,1,1,-1,3106604,1,1,1,-1,3106808,2,2,25,25,3107172,3,1,15,15,3107362,2,2,26,26,3107597,2,2,26,26,3108188,2,2,25,25,3108417,1,1,15,15,3108693,2,2,28,28,3109055,3,1,13,13,3109224,2,2,28,28,3109471,1,1,13,13,3109683,3,1,1,-1,3110172,1,1,1,-1,3110340,3,1,1,-1,3110839,1,1,1,-1,3111026,2,2,34,34,3111367,3,1,23,23,3111534,2,2,34,34,3111800,1,1,23,23,3111964,3,1,1,-1,3112243,1,1,1,-1,3112451,2,2,34,34,3112882,3,1,14,14,3113025,2,2,34,34,3113269,1,1,14,14,3113428,2,2,36,36,3113775,3,1,11,11,3114038,2,2,36,36,3114328,1,1,11,11,3114613,3,1,1,-1,3114921,1,1,1,-1,3115129,2,2,37,37,3115497,3,1,4,4,3115655,3,1,2,2,3115870,2,2,37,37,3116093,1,1,2,2,3116280,1,1,4,4,3116521,3,1,1,-1,3116796,1,1,1,-1,3117012,2,2,29,29,3117614,3,1,7,7,3117802,2,2,29,29,3118019,1,1,7,7,3118210,3,1,1,-1,3118454,1,1,1,-1,3118668,2,2,24,24,3119060,3,1,6,6,3119265,2,2,24,24,3119472,1,1,6,6,3119654,3,1,1,-1,3119926,1,1,1,-1,3120164,3,1,1,-1,3120529,1,1,1,-1,3120787,2,2,11,11,3121140,3,1,9,9,3121302,2,2,11,11,3121531,1,1,9,9,3121704,2,2,13,13,3122008,3,1,7,7,3122214,2,2,13,13,3122431,1,1,7,7,3122615,2,2,9,9,3123037,3,1,11,11,3123214,2,2,9,9,3123410,1,1,11,11,3123601,3,1,1,-1,3123849,1,1,1,-1,3124052,3,1,1,-1,3124428,1,1,1,-1,3124594,2,2,4,4,3124950,3,1,12,12,3125113,2,2,4,4,3125356,1,1,12,12,3125529,3,1,1,-1,3125853,1,1,1,-1,3126093,3,1,1,-1,3126575,1,1,1,-1,3126754,3,1,1,-1,3127253,1,1,1,-1,3127565,3,1,1,-1,3128059,1,1,1,-1,3128378,3,1,1,-1,3128679,1,1,1,-1,3128981,3,1,1,-1,3129490,1,1,1,-1,3129809,3,1,1,-1,3130108,1,1,1,-1,3130340,2,2,19,19,3130843,3,1,10,10,3130985,2,2,19,19,3131264,1,1,10,10,3131430,3,2,-1,-1,3131996,3,1,1,-1,3132240,1,1,1,-1,3132456,2,2,39,39,3132816,3,1,7,7,3132995,2,2,39,39,3133189,1,1,7,7,3133355,2,2,33,33,3133833,3,1,3,3,3134005,2,2,33,33,3134191,1,1,3,3,3134393,3,1,1,-1,3134743,1,1,1,-1,3134885,2,2,23,23,3135230,2,2,22,22,3135398,3,1,2,2,3135607,2,2,23,23,3135832,2,2,22,22,3136002,1,1,2,2,3136238,3,1,1,-1,3136605,1,1,1,-1,3136765,2,2,16,16,3137087,3,1,2,2,3137272,2,2,16,16,3137457,1,1,2,2,3137666,3,1,1,-1,3137942,1,1,1,-1,3138157,2,2,8,8,3138507,3,1,3,3,3138677,2,2,8,8,3138881,1,1,3,3,3139109,3,1,1,-1,3139514,1,1,1,-1,3139719,2,2,21,21,3140295,3,1,16,16,3140499,2,2,21,21,3140711,1,1,16,16,3140899,2,2,15,15,3141303,3,1,12,12,3141471,2,2,15,15,3141679,1,1,12,12,3141892,3,1,1,-1,3142236,1,1,1,-1,3142428,2,2,8,8,3142808,2,2,6,6,3143015,3,1,18,18,3143223,2,2,6,6,3143491,2,2,8,8,3144013,1,1,18,18,3144231,2,2,7,7,3144548,3,1,20,20,3144713,2,2,7,7,3144919,1,1,20,20,3145100,3,1,1,-1,3145331,1,1,1,-1,3145547,2,2,3,3,3145806,3,1,21,21,3145975,3,1,19,19,3146212,2,2,3,3,3146451,1,1,19,19,3146628,1,1,21,21,3146824,2,2,5,5,3147138,3,1,23,23,3147305,2,2,5,5,3147533,1,1,23,23,3147713,3,1,1,-1,3147973,1,1,1,-1,3148176,2,2,4,4,3148523,3,1,28,28,3148662,2,2,4,4,3148922,1,1,28,28,3149087,2,2,6,6,3149374,3,1,26,26,3149545,2,2,6,6,3149778,1,1,26,26,3149973,3,1,1,-1,3150291,1,1,1,-1,3150477,2,2,3,3,3150862,3,1,32,32,3151026,2,2,3,3,3151258,1,1,32,32,3151403,2,2,2,2,3151714,3,1,30,30,3151882,2,2,2,2,3152100,1,1,30,30,3152257,2,2,4,4,3152654,3,1,35,35,3152827,2,2,4,4,3153062,1,1,35,35,3153232,3,1,1,-1,3153511,1,1,1,-1,3153723,2,2,13,13,3154051,3,1,32,32,3154217,2,2,13,13,3154454,1,1,32,32,3154608,2,2,14,14,3154867,3,1,31,31,3155048,2,2,14,14,3155274,1,1,31,31,3155461,2,2,12,12,3155752,3,1,29,29,3155917,2,2,12,12,3156163,1,1,29,29,3156350,3,1,1,-1,3156654,1,1,1,-1,3156831,2,2,19,19,3157249,3,1,24,24,3157436,2,2,19,19,3157628,1,1,24,24,3157807,2,2,23,23,3158201,3,1,20,20,3158381,2,2,23,23,3158612,1,1,20,20,3158834,3,1,1,-1,3159124,1,1,1,-1,3159334,2,2,26,26,3159728,3,1,26,26,3159907,2,2,26,26,3160133,1,1,26,26,3160320,3,1,1,-1,3160678,1,1,1,-1,3160918,2,2,23,23,3161224,3,1,33,33,3161407,2,2,23,23,3161614,1,1,33,33,3161806,3,1,1,-1,3162045,1,1,1,-1,3162218,2,2,17,17,3162735,3,1,38,38,3162898,2,2,17,17,3163135,1,1,38,38,3163378,3,1,1,-1,3163749,1,1,1,-1,3163957,2,2,30,30,3164554,3,1,13,13,3164731,2,2,30,30,3164941,1,1,13,13,3165188,3,2,-1,-1,3165723,3,1,1,-1,3165980,1,1,1,-1,3166188,2,2,34,34,3166519,3,1,18,18,3166688,2,2,34,34,3166948,1,1,18,18,3167116,3,1,1,-1,3167494,1,1,1,-1,3167720,3,1,1,-1,3168212,1,1,1,-1,3168505,3,2,-1,-1,3169352,3,1,1,-1,3169624,1,1,1,-1,3169874,2,2,14,14,3170506,3,1,10,10,3170681,2,2,14,14,3170907,1,1,10,10,3171129,3,1,1,-1,3171489,1,1,1,-1,3171728,2,2,27,27,3172105,3,1,29,29,3172295,2,2,27,27,3172524,1,1,29,29,3172791,3,2,-1,-1,3173997,3,2,-1,-1,3174509,3,2,-1,-1,3175428,1,2,-20,-1,3176372,2,1,1,1,3176610,3,2,-20,-1,3176794,1,2,1,20,3177056,2,1,1,1,3177482,3,2,1,20,3177763,3,1,-19,-1,3179184,2,2,1,1,3179487,1,2,1,1,3179902,1,2,1,1,3180404,1,1,-19,-1,3180613,3,1,-20,-1,3180868,2,2,1,1,3181078,1,1,-20,-1,3181254,3,1,1,20,3181483,2,2,1,1,3181697,1,1,1,20,3181858,3,1,1,-1,3182540,1,1,1,-1,3182776,2,2,20,20,3183105,3,1,17,17,3183252,2,2,20,20,3183486,1,1,17,17,3183659,3,1,1,-1,3183879,1,1,1,-1,3184094,2,2,17,17,3184427,3,1,14,14,3184604,2,2,17,17,3184796,1,1,14,14,3184982,2,2,19,19,3185279,3,1,12,12,3185446,2,2,19,19,3185656,1,1,12,12,3185857,3,1,1,-1,3186091,1,1,1,-1,3186269,3,1,1,-1,3186700,1,1,1,-1,3186945,2,2,23,23,3187353,3,1,5,5,3187525,2,2,23,23,3187732,1,1,5,5,3187916,2,2,27,27,3188263,3,1,4,4,3188444,2,2,27,27,3188674,1,1,4,4,3188875,3,1,1,-1,3189150,1,1,1,-1,3189357,2,2,26,26,3189740,3,1,9,9,3189932,2,2,26,26,3190112,1,1,9,9,3190287,3,1,1,-1,3190560,1,1,1,-1,3190804,2,2,32,32,3191155,3,1,12,12,3191337,2,2,32,32,3191560,1,1,12,12,3191795,3,1,1,-1,3192075,1,1,1,-1,3192286,2,2,38,38,3192667,3,1,12,12,3192818,2,2,38,38,3193058,1,1,12,12,3193234,3,1,1,-1,3193604,1,1,1,-1,3193836,2,2,32,32,3194223,3,1,25,25,3194414,2,2,32,32,3194626,1,1,25,25,3194791,3,1,1,-1,3195060,1,1,1,-1,3195307,2,2,35,35,3195642,3,1,28,28,3195795,2,2,35,35,3196016,1,1,28,28,3196154,2,2,33,33,3196565,3,1,30,30,3196771,2,2,33,33,3197006,1,1,30,30,3197169,3,1,1,-1,3197439,1,1,1,-1,3197607,2,2,37,37,3197909,2,2,36,36,3198089,3,1,31,31,3198313,2,2,37,37,3198551,2,2,36,36,3198696,1,1,31,31,3198943,3,1,1,-1,3199291,1,1,1,-1,3199471,2,2,30,30,3199994,3,1,31,31,3200128,2,2,30,30,3200350,1,1,31,31,3200527,3,1,1,-1,3200815,1,1,1,-1,3201063,3,1,1,-1,3201661,1,1,1,-1,3201931,3,1,1,-1,3202309,1,1,1,-1,3202542,3,1,1,-1,3202998,1,1,1,-1,3203186,2,2,12,12,3203601,3,1,37,37,3203789,2,2,12,12,3204024,1,1,37,37,3204178,2,2,13,13,3204474,3,1,35,35,3204615,2,2,13,13,3204819,1,1,35,35,3204991,2,2,10,10,3205387,3,1,39,39,3205585,2,2,10,10,3205823,1,1,39,39,3205999,3,1,1,-1,3206239,1,1,1,-1,3206474,2,2,11,11,3206785,3,1,34,34,3206957,2,2,11,11,3207198,1,1,34,34,3207360,3,1,1,-1,3207661,1,1,1,-1,3207873,2,2,5,5,3208317,3,1,26,26,3208473,2,2,5,5,3208675,1,1,26,26,3208851,3,1,1,-1,3209113,1,1,1,-1,3209353,2,2,3,3,3209734,3,1,31,31,3209906,2,2,3,3,3210153,1,1,31,31,3210337,3,1,1,-1,3210846,1,1,1,-1,3211091,2,2,15,15,3211393,3,1,23,23,3211585,3,1,25,25,3211829,2,2,15,15,3212103,1,1,25,25,3212258,1,1,23,23,3212509,3,1,1,-1,3212828,1,1,1,-1,3213024,2,2,12,12,3213562,3,1,19,19,3213762,2,2,12,12,3214009,1,1,19,19,3214169,3,1,1,-1,3214678,1,1,1,-1,3214905,2,2,19,19,3215584,3,1,19,19,3215771,2,2,19,19,3215984,1,1,19,19,3216184,3,1,1,-1,3216422,1,1,1,-1,3216661,3,1,1,-1,3217109,1,1,1,-1,3217335,3,1,1,-1,3217593,1,1,1,-1,3217888,2,2,16,16,3218353,3,1,5,5,3218549,2,2,16,16,3218736,1,1,5,5,3218933,3,1,1,-1,3219266,1,1,1,-1,3219514,2,2,7,7,3219857,3,1,8,8,3220063,2,2,7,7,3220283,1,1,8,8,3220451,3,1,1,-1,3220755,1,1,1,-1,3221007,2,2,3,3,3221483,3,1,13,13,3221710,3,1,14,14,3221887,2,2,3,3,3222159,1,1,14,14,3222293,1,1,13,13,3222522,3,1,1,-1,3222756,1,1,1,-1,3222964,2,2,7,7,3223277,3,1,13,13,3223472,2,2,7,7,3223707,1,1,13,13,3223912,3,1,1,-1,3224160,1,1,1,-1,3224432,3,2,-1,-1,3225057,3,1,1,-1,3225291,1,1,1,-1,3225522,2,2,36,36,3225803,3,1,13,13,3225991,2,2,36,36,3226203,1,1,13,13,3226367,2,2,37,37,3226642,3,1,12,12,3226836,2,2,37,37,3227049,1,1,12,12,3227242,3,1,1,-1,3227552,1,1,1,-1,3227736,2,2,32,32,3228066,3,1,10,10,3228239,2,2,32,32,3228464,1,1,10,10,3228636,2,2,31,31,3228909,3,1,9,9,3229071,2,2,31,31,3229293,1,1,9,9,3229482,3,1,1,-1,3229772,1,1,1,-1,3229996,2,2,22,22,3230354,3,1,11,11,3230511,2,2,22,22,3230768,1,1,11,11,3230909,3,1,1,-1,3231178,1,1,1,-1,3231425,2,2,20,20,3231735,3,1,15,15,3231894,2,2,20,20,3232132,1,1,15,15,3232307,2,2,25,25,3232680,3,1,16,16,3232884,2,2,25,25,3233101,1,1,16,16,3233291,3,1,1,-1,3233643,1,1,1,-1,3233861,3,1,1,-1,3234246,1,1,1,-1,3234517,2,2,11,11,3235129,3,1,4,4,3235267,2,2,11,11,3235469,1,1,4,4,3235656,2,2,3,3,3236171,3,1,3,3,3236372,2,2,3,3,3236551,1,1,3,3,3236761,3,1,1,-1,3237052,1,1,1,-1,3237258,2,2,2,2,3237613,3,1,12,12,3237766,2,2,2,2,3238039,1,1,12,12,3238257,3,1,1,-1,3238757,1,1,1,-1,3238954,3,1,1,-1,3239336,1,1,1,-1,3239600,2,2,10,10,3239920,3,1,19,19,3240082,2,2,10,10,3240316,1,1,19,19,3240523,2,2,16,16,3241104,2,2,16,16,3241477,2,2,15,15,3241646,3,1,17,17,3241865,2,2,15,15,3242092,1,1,17,17,3242293,3,1,1,-1,3242615,1,1,1,-1,3242817,3,1,1,-1,3243245,1,1,1,-1,3243491,2,2,9,9,3243770,2,2,8,8,3243955,3,1,27,27,3244160,1,1,27,27,3244506,2,2,8,8,3244704,2,2,7,7,3244848,3,1,27,27,3245084,2,2,7,7,3245278,2,2,9,9,3245527,1,1,27,27,3245731,3,1,1,-1,3246131,1,1,1,-1,3246339,2,2,12,12,3246699,3,1,33,33,3246869,2,2,12,12,3247079,1,1,33,33,3247247,2,2,13,13,3247528,3,1,31,31,3247727,2,2,13,13,3247956,1,1,31,31,3248125,3,1,1,-1,3248354,1,1,1,-1,3248583,2,2,17,17,3248887,3,1,31,31,3249078,2,2,17,17,3249289,1,1,31,31,3249525,2,2,20,20,3249983,3,1,28,28,3250097,2,2,21,21,3250326,2,2,21,21,3250807,2,2,20,20,3250987,1,1,28,28,3251217,3,1,1,-1,3251448,1,1,1,-1,3251689,2,2,24,24,3252193,3,1,23,23,3252370,2,2,24,24,3252589,1,1,23,23,3252764,3,1,1,-1,3253058,1,1,1,-1,3253246,2,2,22,22,3253611,2,2,25,25,3253990,3,1,31,31,3254160,2,2,25,25,3254392,2,2,22,22,3254680,1,1,31,31,3254872,2,2,24,24,3255163,3,1,30,30,3255332,2,2,24,24,3255548,1,1,30,30,3255733,3,1,1,-1,3256002,1,1,1,-1,3256232,2,2,16,16,3256756,3,1,38,38,3256941,2,2,16,16,3257176,1,1,38,38,3257354,3,1,1,-1,3257664,1,1,1,-1,3257868,3,1,1,-1,3258297,1,1,1,-1,3258509,2,2,31,31,3258813,3,1,33,33,3259012,3,1,34,34,3259179,2,2,31,31,3259466,1,1,34,34,3259687,1,1,33,33,3259900,2,2,33,33,3260168,3,1,34,34,3260362,2,2,33,33,3260609,1,1,34,34,3260785,3,1,1,-1,3261016,1,1,1,-1,3261181,2,2,39,39,3261562,3,1,33,33,3261773,2,2,39,39,3261993,1,1,33,33,3262231,3,1,1,-1,3262875,1,1,1,-1,3263149,2,2,36,36,3263517,2,2,33,33,3263801,3,1,27,27,3263995,2,2,33,33,3264204,2,2,36,36,3264521,1,1,27,27,3264735,3,1,1,-1,3264970,1,1,1,-1,3265192,2,2,31,31,3265538,3,1,26,26,3265725,2,2,31,31,3265948,1,1,26,26,3266113,2,2,32,32,3266413,3,1,23,23,3266593,2,2,32,32,3266802,1,1,23,23,3266975,2,2,35,35,3267345,3,1,25,25,3267563,2,2,35,35,3267752,1,1,25,25,3267948,3,1,1,-1,3268213,1,1,1,-1,3268463,3,2,-1,-1,3268966,3,1,1,-1,3269203,1,1,1,-1,3269435,3,1,1,-1,3270045,1,1,1,-1,3270329,3,1,1,-1,3270724,1,1,1,-1,3270972,3,1,1,-1,3271316,1,1,1,-1,3271608,3,1,1,-1,3271967,1,1,1,-1,3272231,3,1,1,-1,3272737,1,1,1,-1,3273059,3,1,1,-1,3273522,1,1,1,-1,3273819,3,1,1,-1,3274325,1,1,1,-1,3274610,3,1,1,-1,3275011,1,1,1,-1,3275287,3,2,-1,-1,3276273,3,1,1,-1,3276609,1,1,1,-1,3276769,2,2,33,33,3277087,3,1,22,22,3277251,2,2,33,33,3277485,1,1,22,22,3277653,2,2,35,35,3277990,3,1,19,19,3278170,2,2,35,35,3278365,1,1,19,19,3278534,3,1,1,-1,3278815,1,1,1,-1,3278991,2,2,37,37,3279283,3,1,14,14,3279465,2,2,37,37,3279688,1,1,14,14,3279864,3,1,1,-1,3280196,1,1,1,-1,3280366,2,2,36,36,3280644,3,1,8,8,3280808,2,2,36,36,3281048,1,1,8,8,3281258,3,1,1,-1,3282055,1,1,1,-1,3282239,2,2,39,39,3282596,3,1,32,32,3282768,2,2,39,39,3282970,1,1,32,32,3283245,3,1,1,-1,3283684,1,1,1,-1,3283883,2,2,26,26,3284320,3,1,12,12,3284505,2,2,26,26,3284719,1,1,12,12,3284873,3,1,1,-1,3285112,1,1,1,-1,3285312,2,2,21,21,3285608,3,1,11,11,3285786,3,1,9,9,3285999,2,2,21,21,3286231,1,1,9,9,3286460,1,1,11,11,3286654,3,1,1,-1,3286971,1,1,1,-1,3287134,2,2,17,17,3287440,2,2,14,14,3287722,3,1,8,8,3287951,2,2,14,14,3288224,2,2,17,17,3288807,1,1,8,8,3289040,3,1,1,-1,3289335,1,1,1,-1,3289516,2,2,8,8,3289836,3,1,15,15,3289991,2,2,8,8,3290225,1,1,15,15,3290390,2,2,9,9,3290704,3,1,12,12,3290874,2,2,9,9,3291076,1,1,12,12,3291266,3,1,1,-1,3291615,1,1,1,-1,3291816,2,2,9,9,3292101,3,1,21,21,3292294,3,1,24,24,3292594,2,2,9,9,3292818,1,1,24,24,3292975,1,1,21,21,3293252,2,2,13,13,3293583,3,1,23,23,3293762,2,2,13,13,3294015,1,1,23,23,3294162,3,1,1,-1,3294434,1,1,1,-1,3294611,2,2,2,2,3295020,3,1,20,20,3295211,2,2,2,2,3295420,1,1,20,20,3295615,3,1,1,-1,3295976,1,1,1,-1,3296137,2,2,5,5,3296482,3,1,27,27,3296652,2,2,5,5,3296878,1,1,27,27,3297093,2,2,9,9,3297423,3,1,28,28,3297586,2,2,9,9,3297807,1,1,28,28,3298006,3,1,1,-1,3298316,1,1,1,-1,3298511,2,2,22,22,3298824,3,1,25,25,3299026,2,2,22,22,3299295,1,1,25,25,3299489,3,1,1,-1,3299828,1,1,1,-1,3299996,2,2,23,23,3300342,3,1,31,31,3300521,2,2,23,23,3300776,1,1,31,31,3300982,3,1,1,-1,3301255,1,1,1,-1,3301418,2,2,26,26,3301792,3,1,34,34,3301963,2,2,26,26,3302197,1,1,34,34,3302384,2,2,23,23,3302785,3,1,38,38,3302988,2,2,23,23,3303214,1,1,38,38,3303481,3,2,-1,-1,3305047,3,1,-20,-1,3306919,2,2,1,1,3307183,1,1,-20,-1,3307405,3,1,1,20,3307641,2,2,1,1,3307840,1,1,1,20,3308035,3,1,1,-1,3308782,1,1,1,-1,3308989,2,2,8,8,3309400,3,1,26,26,3309574,2,2,8,8,3309797,1,1,26,26,3310012,3,2,-1,-1,3311169,3,1,1,-1,3311477,1,1,1,-1,3311699,2,2,4,4,3312518,3,1,23,23,3312692,2,2,4,4,3312921,1,1,23,23,3313095,2,2,1,-1,3313375,3,1,1,-1,3313923,1,1,1,-1,3314146,2,2,23,23,3314892,3,1,27,27,3315098,2,2,23,23,3315338,1,1,27,27,3315579,3,1,1,-1,3316411,1,1,1,-1,3316682,2,2,10,10,3317225,3,1,2,2,3317401,2,2,10,10,3317656,1,1,2,2,3317837,3,2,-1,-1,3318862,3,1,1,-1,3319308,1,1,1,-1,3319567,3,1,1,-1,3320091,1,1,1,-1,3320394,3,1,1,-1,3321167,1,1,1,-1,3321395,3,2,-1,-1,3321983,3,1,1,-1,3322276,1,1,1,-1,3322514,2,2,30,30,3322923,3,1,10,10,3323087,2,2,30,30,3323324,1,1,10,10,3323507,3,1,1,-1,3323813,1,1,1,-1,3324039,3,1,1,-1,3324347,1,1,1,-1,3324592,2,2,15,15,3325031,3,1,18,18,3325193,2,2,15,15,3325429,1,1,18,18,3325705,3,2,-1,-1,3326318,3,1,1,-1,3326884,1,1,1,-1,3327124,2,2,5,5,3327605,3,1,4,4,3327748,2,2,5,5,3327974,1,1,4,4,3328251,3,1,1,-1,3329404,1,1,1,-1,3329677,3,2,-1,-1,3330326,3,1,1,-1,3330592,1,1,1,-1,3330834,3,2,-1,-1,3331423,3,1,1,-1,3331643,1,1,1,-1,3331837,2,2,5,5,3332436,3,1,15,15,3332584,2,2,5,5,3332840,1,1,15,15,3333082,2,2,1,-1,3333604,3,2,1,-1,3334788,1,2,1,-1,3336018,1,1,1,-1,3336286,3,1,1,-1,3337331,3,1,1,-1,3338021,1,1,1,-1,3338589,3,1,1,-1,3339848,1,1,1,-1,3340062,1,2,-1,-1,3340797,3,1,1,-1,3341154,1,1,1,-1,3341350,2,2,34,34,3341653,3,1,38,38,3341828,2,2,34,34,3342028,1,1,38,38,3342237,2,2,1,-1,3343115,3,1,1,-1,3344817,1,1,1,-1,3345140,1,2,1,-1,3346578,1,2,1,-1,3347652,3,1,1,-1,3348710,1,1,1,-1,3349027,2,2,-1,-1,3349565,2,2,3,3,3350165,3,1,5,5,3350327,2,2,3,3,3350559,1,1,5,5,3350749,3,1,1,-1,3351004,1,1,1,-1,3351513,3,2,-1,-1,3352324,3,1,1,-1,3352539,1,2,1,20,3353166,2,1,1,1,3353436,3,2,1,20,3353617,1,2,-20,-1,3353820,2,1,1,1,3354055,3,2,-20,-1,3354278,3,1,1,-1,3354738,1,1,1,-1,3355009,2,2,37,37,3355573,2,2,36,36,3355747,2,2,32,32,3372101,2,2,28,28,3372517,2,2,27,27,3372679,2,2,22,22,3373527,2,2,20,20,3373678,2,2,18,18,3373939,2,2,7,7,3374579,2,2,3,3,3374990,2,2,2,2,3375162,3,1,2,2,3375394,2,2,1,-1,3375610,2,2,3,3,3375940,2,2,2,2,3376115,2,2,7,7,3376558,2,2,18,18,3377127,2,2,20,20,3377403,2,2,22,22,3377717,2,2,27,27,3378212,2,2,28,28,3378383,2,2,30,30,3378729,2,2,32,32,3378994,2,2,36,36,3379447,2,2,37,37,3379624,2,2,38,38,3379855,2,2,1,-1,3380348,1,1,2,2,3380691,2,2,34,34,3381272,2,2,32,32,3381582,2,2,31,31,3381747,2,2,29,29,3382104,2,2,23,23,3382537,2,2,20,20,3383016,2,2,19,19,3383188,2,2,18,18,3383385,2,2,11,11,3383901,2,2,8,8,3384267,2,2,6,6,3384473,3,1,3,3,3384719,2,2,1,-1,3384917,2,2,6,6,3385289,2,2,7,7,3385489,2,2,8,8,3385699,2,2,9,9,3385895,2,2,11,11,3386276,2,2,18,18,3386771,2,2,19,19,3386970,2,2,20,20,3387186,2,2,25,25,3387781,2,2,23,23,3388032,2,2,29,29,3388469,2,2,31,31,3389552,2,2,33,33,3389762,2,2,33,33,3390000,2,2,34,34,3390345,2,2,33,33,3390530,2,2,32,32,3390744,2,2,36,36,3391114,2,2,38,38,3391396,2,2,39,39,3391589,2,2,1,-1,3391828,1,1,3,3,3392099,2,2,39,39,3392395,2,2,34,34,3392849,2,2,32,32,3393150,2,2,31,31,3393319,2,2,16,16,3394162,2,2,14,14,3394447,2,2,3,3,3395079,3,1,4,4,3395329,2,2,1,-1,3395572,2,2,3,3,3395849,2,2,5,5,3396278,2,2,6,6,3396478,2,2,12,12,3397064,2,2,14,14,3397445,2,2,15,15,3397641,2,2,16,16,3397873,2,2,16,16,3398140,2,2,17,17,3398532,2,2,16,16,3398716,2,2,22,22,3399127,2,2,30,30,3399685,2,2,31,31,3399927,2,2,32,32,3400179,2,2,34,34,3400606,2,2,39,39,3401014,2,2,1,-1,3401240,1,1,4,4,3401577,2,2,39,39,3401858,2,2,35,35,3402223,2,2,33,33,3402421,2,2,30,30,3402860,2,2,29,29,3403035,2,2,6,6,3404134,3,1,5,5,3404356,2,2,1,-1,3404617,2,2,6,6,3405010,2,2,8,8,3405320,2,2,11,11,3405785,2,2,20,20,3406254,2,2,23,23,3406637,2,2,25,25,3406899,2,2,27,27,3407283,2,2,28,28,3407507,2,2,30,30,3407714,2,2,30,30,3407943,2,2,29,29,3408197,2,2,30,30,3408385,2,2,33,33,3408829,2,2,34,34,3409103,2,2,35,35,3409298,2,2,37,37,3409608,2,2,39,39,3409922,2,2,1,-1,3410151,1,1,5,5,3410401,2,2,37,37,3410868,2,2,30,30,3411310,2,2,29,29,3411476,2,2,26,26,3411852,2,2,17,17,3412599,2,2,13,13,3412982,2,2,10,10,3413278,2,2,2,2,3413762,3,1,6,6,3413984,2,2,1,-1,3414229,2,2,2,2,3414495,2,2,6,6,3414871,2,2,10,10,3415278,2,2,13,13,3415586,2,2,14,14,3415787,2,2,17,17,3416161,2,2,21,21,3416533,2,2,26,26,3417017,2,2,27,27,3417190,2,2,29,29,3417560,2,2,30,30,3417754,2,2,31,31,3417963,2,2,32,32,3418146,2,2,35,35,3418849,2,2,37,37,3419087,2,2,1,-1,3419317,1,1,6,6,3419713,2,2,34,34,3420217,2,2,32,32,3420520,2,2,29,29,3420893,2,2,27,27,3421121,2,2,21,21,3421607,2,2,11,11,3422588,2,2,8,8,3422902,2,2,2,2,3423330,3,1,7,7,3423537,2,2,1,-1,3423745,2,2,2,2,3424013,2,2,8,8,3424616,2,2,11,11,3425007,2,2,11,11,3425230,2,2,12,12,3425575,2,2,11,11,3425752,2,2,16,16,3426255,2,2,21,21,3426677,2,2,22,22,3426872,2,2,27,27,3427323,2,2,28,28,3427511,2,2,29,29,3427744,2,2,32,32,3428187,2,2,33,33,3428368,2,2,34,34,3428598,2,2,36,36,3428911,2,2,38,38,3429203,2,2,39,39,3429422,2,2,1,-1,3429643,1,1,7,7,3429983,2,2,38,38,3430295,2,2,37,37,3430494,2,2,36,36,3430696,2,2,35,35,3430935,2,2,33,33,3431358,2,2,32,32,3431548,2,2,30,30,3431752,2,2,31,31,3432548,2,2,30,30,3432770,2,2,32,32,3433023,2,2,25,25,3433518,2,2,24,24,3433690,2,2,21,21,3434034,2,2,16,16,3434504,2,2,11,11,3434979,2,2,10,10,3435199,2,2,2,2,3435627,3,1,8,8,3436072,2,2,1,-1,3436337,2,2,2,2,3436675,2,2,5,5,3436985,2,2,3,3,3437225,2,2,8,8,3437633,2,2,10,10,3437933,2,2,11,11,3438149,2,2,14,14,3438636,2,2,15,15,3438741,2,2,16,16,3438953,2,2,21,21,3439365,2,2,22,22,3439606,2,2,24,24,3439925,2,2,25,25,3440129,2,2,29,29,3440554,2,2,30,30,3440846,2,2,31,31,3441053,2,2,32,32,3441282,2,2,33,33,3441492,2,2,34,34,3441763,2,2,36,36,3442014,2,2,36,36,3442245,2,2,35,35,3442579,2,2,36,36,3442783,2,2,37,37,3443054,2,2,38,38,3443249,2,2,1,-1,3443464,1,1,8,8,3443742,2,2,29,29,3444539,2,2,26,26,3444880,2,2,23,23,3445261,2,2,17,17,3445773,2,2,15,15,3446096,2,2,14,14,3446251,2,2,10,10,3446692,2,2,5,5,3447123,2,2,2,2,3447454,3,1,9,9,3447663,2,2,1,-1,3447898,2,2,2,2,3448134,2,2,4,4,3448513,2,2,5,5,3448718,2,2,10,10,3449221,2,2,12,12,3449459,2,2,14,14,3449804,2,2,15,15,3450011,2,2,16,16,3450244,2,2,17,17,3450454,2,2,22,22,3450953,2,2,23,23,3451171,2,2,24,24,3451406,2,2,26,26,3451865,2,2,29,29,3452222,2,2,31,31,3452481,2,2,33,33,3452903,2,2,37,37,3453321,2,2,39,39,3453815,2,2,1,-1,3454074,1,1,9,9,3454646,2,2,37,37,3454895,2,2,34,34,3455280,2,2,31,31,3455743,2,2,30,30,3455928,2,2,28,28,3456418,2,2,27,27,3456598,2,2,24,24,3457040,2,2,16,16,3457743,3,2,7,7,3458354,3,1,10,10,3458454,2,2,1,-1,3458827,2,2,1,-1,3459266,1,1,10,10,3459679,1,2,7,7,3460027,3,2,7,7,3460301,3,2,7,7,3460455,3,1,10,10,3460778,2,2,1,-1,3461026,2,2,7,7,3461302,2,2,5,5,3461649,2,2,2,2,3462013,2,2,16,16,3462551,2,2,24,24,3463064,2,2,27,27,3463418,2,2,28,28,3463604,2,2,30,30,3463943,2,2,31,31,3464123,2,2,34,34,3464498,2,2,35,35,3464690,2,2,37,37,3465075,2,2,1,-1,3465539,1,1,10,10,3466453,2,2,38,38,3466835,2,2,35,35,3467152,2,2,33,33,3467417,2,2,29,29,3467851,2,2,28,28,3468049,2,2,27,27,3468254,2,2,25,25,3468597,2,2,26,26,3468981,2,2,22,22,3469490,2,2,18,18,3470018,2,2,17,17,3470204,2,2,6,6,3470980,3,1,11,11,3471216,2,2,1,-1,3471447,2,2,6,6,3471763,2,2,7,7,3472037,2,2,3,3,3472522,2,2,11,11,3472951,2,2,14,14,3473288,2,2,16,16,3473728,2,2,17,17,3473916,2,2,18,18,3474142,2,2,19,19,3474382,2,2,20,20,3474614,2,2,21,21,3474890,2,2,22,22,3475143,2,2,24,24,3475495,2,2,25,25,3475700,2,2,26,26,3475948,2,2,27,27,3476181,2,2,28,28,3476422,2,2,29,29,3476632,2,2,33,33,3477126,2,2,35,35,3477479,2,2,36,36,3477705,2,2,37,37,3477906,2,2,38,38,3478113,2,2,1,-1,3478349,1,1,11,11,3478661,2,2,37,37,3478969,2,2,36,36,3479155,2,2,35,35,3479368,2,2,32,32,3479841,2,2,29,29,3480196,2,2,26,26,3480563,2,2,25,25,3480770,2,2,19,19,3481242,2,2,5,5,3481945,3,1,12,12,3482147,2,2,1,-1,3482383,2,2,5,5,3482672,2,2,9,9,3483260,2,2,10,10,3483478,2,2,11,11,3483682,2,2,17,17,3484185,2,2,19,19,3484518,2,2,21,21,3484877,2,2,22,22,3485108,2,2,25,25,3485542,2,2,26,26,3485753,2,2,29,29,3486122,2,2,32,32,3486471,2,2,35,35,3487047,2,2,36,36,3487259,2,2,37,37,3487485,2,2,39,39,3487869,2,2,1,-1,3488301,1,1,12,12,3489670,2,2,37,37,3490097,2,2,32,32,3490715,2,2,29,29,3491119,2,2,28,28,3491268,2,2,26,26,3491572,2,2,22,22,3491998,2,2,20,20,3492236,2,2,18,18,3492543,2,2,12,12,3493061,2,2,9,9,3493388,2,2,4,4,3493793,3,1,13,13,3494025,2,2,1,-1,3494260,2,2,4,4,3494577,2,2,5,5,3494818,2,2,3,3,3495043,2,2,8,8,3495423,2,2,9,9,3495605,2,2,11,11,3495958,2,2,12,12,3496147,2,2,13,13,3496347,2,2,15,15,3496753,2,2,17,17,3497085,2,2,18,18,3497287,2,2,20,20,3497660,2,2,22,22,3497987,2,2,23,23,3498207,2,2,26,26,3498655,2,2,28,28,3499050,2,2,30,30,3499259,2,2,30,30,3499524,2,2,31,31,3499778,2,2,32,32,3500028,2,2,30,30,3500485,2,2,29,29,3500674,2,2,36,36,3501331,2,2,37,37,3501529,2,2,1,-1,3501769,1,1,13,13,3502078,2,2,35,35,3502473,2,2,34,34,3502642,2,2,32,32,3503018,2,2,30,30,3503238,2,2,25,25,3503773,2,2,14,14,3504383,2,2,13,13,3504558,2,2,9,9,3504965,2,2,7,7,3505304,2,2,6,6,3505495,2,2,5,5,3505704,3,1,14,14,3505950,2,2,1,-1,3506192,2,2,6,6,3506519,2,2,5,5,3506717,2,2,3,3,3507059,2,2,7,7,3507435,2,2,9,9,3507809,2,2,13,13,3508427,2,2,14,14,3508651,2,2,16,16,3508992,2,2,18,18,3509284,2,2,25,25,3509778,2,2,28,28,3510181,2,2,30,30,3510528,2,2,32,32,3510790,2,2,34,34,3511272,2,2,35,35,3511476,2,2,1,-1,3512057,1,1,14,14,3512517,2,2,37,37,3512824,2,2,34,34,3513242,2,2,33,33,3513375,2,2,30,30,3513810,2,2,22,22,3514248,2,2,19,19,3514584,2,2,18,18,3514767,2,2,12,12,3515231,2,2,10,10,3515618,2,2,9,9,3515775,2,2,8,8,3515982,2,2,3,3,3516451,3,1,15,15,3516661,2,2,1,-1,3516908,2,2,3,3,3517176,2,2,4,4,3517439,2,2,8,8,3517815,2,2,9,9,3518012,2,2,10,10,3518201,2,2,12,12,3518559,2,2,13,13,3518771,2,2,14,14,3518979,2,2,18,18,3519450,2,2,19,19,3519649,2,2,21,21,3519970,2,2,22,22,3520188,2,2,24,24,3520529,2,2,28,28,3520969,2,2,30,30,3521320,2,2,31,31,3521516,2,2,33,33,3521819,2,2,34,34,3522023,2,2,37,37,3522461,2,2,1,-1,3523016,1,1,15,15,3523521,2,2,33,33,3523996,2,2,31,31,3524397,2,2,27,27,3524738,2,2,24,24,3525121,2,2,22,22,3525378,2,2,20,20,3525832,2,2,14,14,3526290,2,2,13,13,3526449,2,2,10,10,3527247,2,2,8,8,3527483,3,1,16,16,3527748,2,2,1,-1,3527979,2,2,8,8,3528487,2,2,9,9,3528686,2,2,10,10,3528903,2,2,3,3,3529310,2,2,13,13,3529771,2,2,14,14,3529983,2,2,16,16,3530323,2,2,19,19,3530694,2,2,20,20,3530902,2,2,22,22,3531266,2,2,24,24,3531694,2,2,25,25,3531898,2,2,26,26,3532135,2,2,27,27,3532368,2,2,28,28,3532591,2,2,31,31,3533044,2,2,33,33,3533364,2,2,38,38,3533959,2,2,1,-1,3534503,1,1,16,16,3535015,2,2,39,39,3535381,2,2,33,33,3535756,2,2,12,12,3536746,2,2,5,5,3537203,3,1,17,17,3537413,2,2,1,-1,3537647,2,2,5,5,3537925,2,2,6,6,3538173,2,2,9,9,3538547,2,2,10,10,3538737,2,2,11,11,3538952,2,2,12,12,3539146,2,2,14,14,3539513,2,2,18,18,3539919,2,2,22,22,3540362,2,2,28,28,3540867,2,2,33,33,3541273,2,2,39,39,3541691,2,2,1,-1,3541924,1,1,17,17,3542226,2,2,29,29,3542733,2,2,28,28,3542920,2,2,22,22,3543420,2,2,21,21,3543754,2,2,19,19,3544361,2,2,12,12,3544586,2,2,7,7,3544958,2,2,6,6,3545129,3,1,18,18,3545389,2,2,1,-1,3545651,2,2,6,6,3546028,2,2,10,10,3546396,2,2,11,11,3546613,2,2,12,12,3546818,2,2,16,16,3547319,2,2,19,19,3547652,2,2,21,21,3548123,2,2,22,22,3548336,2,2,23,23,3548534,2,2,25,25,3548952,2,2,28,28,3549299,2,2,29,29,3549531,2,2,31,31,3549789,2,2,1,-1,3550096,1,1,18,18,3550398,2,2,38,38,3551017,2,2,37,37,3551220,2,2,34,34,3551591,2,2,32,32,3551877,2,2,31,31,3552072,2,2,24,24,3552549,2,2,20,20,3553025,2,2,16,16,3553391,2,2,6,6,3554055,2,2,4,4,3554247,2,2,4,4,3554445,2,2,5,5,3554749,2,2,4,4,3554919,3,1,19,19,3555163,2,2,1,-1,3555395,2,2,4,4,3555684,2,2,5,5,3555885,2,2,6,6,3556108,2,2,3,3,3556455,2,2,10,10,3556933,2,2,15,15,3557362,2,2,17,17,3557574,2,2,16,16,3557960,2,2,19,19,3558283,2,2,20,20,3558472,2,2,24,24,3559104,2,2,25,25,3559311,2,2,26,26,3559538,2,2,27,27,3559746,2,2,31,31,3560193,2,2,32,32,3560436,2,2,34,34,3560772,2,2,37,37,3561129,2,2,38,38,3561343,2,2,39,39,3561552,2,2,1,-1,3561782,1,1,19,19,3562089,2,2,38,38,3562372,2,2,33,33,3562916,2,2,29,29,3563277,2,2,18,18,3563849,2,2,16,16,3564135,2,2,7,7,3564696,2,2,6,6,3564866,2,2,5,5,3565071,3,1,20,20,3565322,2,2,1,-1,3565557,2,2,6,6,3565982,2,2,5,5,3566185,2,2,3,3,3566490,2,2,7,7,3566880,2,2,10,10,3567201,2,2,14,14,3567591,2,2,15,15,3567800,2,2,16,16,3568003,2,2,18,18,3568341,2,2,21,21,3568695,2,2,24,24,3569144,2,2,28,28,3569650,2,2,29,29,3569833,2,2,30,30,3570054,2,2,31,31,3570280,2,2,33,33,3570670,2,2,36,36,3571012,2,2,38,38,3571318,2,2,1,-1,3571551,1,1,20,20,3571808,2,2,31,31,3572535,2,2,29,29,3572793,2,2,19,19,3573383,2,2,16,16,3573795,2,2,9,9,3574335,2,2,8,8,3574507,2,2,4,4,3574891,3,1,21,21,3575114,2,2,1,-1,3575349,2,2,4,4,3575628,2,2,5,5,3575830,2,2,6,6,3576049,2,2,8,8,3576414,2,2,9,9,3576652,2,2,14,14,3577103,2,2,16,16,3577363,2,2,17,17,3577569,2,2,19,19,3577904,2,2,20,20,3578134,2,2,24,24,3578591,2,2,28,28,3579090,2,2,29,29,3579338,2,2,30,30,3579611,2,2,32,32,3579843,2,2,39,39,3580558,2,2,32,32,3580970,2,2,31,31,3581141,2,2,1,-1,3581325,1,1,21,21,3581605,2,2,36,36,3582107,2,2,19,19,3582667,2,2,15,15,3583026,2,2,10,10,3583398,2,2,6,6,3583754,3,1,22,22,3583953,2,2,1,-1,3584156,2,2,6,6,3584480,2,2,5,5,3584759,2,2,4,4,3584960,2,2,2,2,3585294,2,2,13,13,3586024,2,2,10,10,3586317,2,2,15,15,3586721,2,2,16,16,3586910,2,2,17,17,3587232,2,2,19,19,3587440,2,2,18,18,3587850,2,2,26,26,3588328,2,2,29,29,3588696,2,2,32,32,3589113,2,2,33,33,3589287,2,2,34,34,3589508,2,2,36,36,3589721,2,2,36,36,3589950,2,2,34,34,3590281,2,2,35,35,3590622,2,2,36,36,3590838,2,2,38,38,3591198,2,2,39,39,3591371,2,2,1,-1,3591619,1,1,22,22,3591913,2,2,38,38,3592171,2,2,37,37,3592367,2,2,34,34,3592728,2,2,33,33,3592931,2,2,31,31,3593253,2,2,26,26,3593730,2,2,22,22,3594073,2,2,22,22,3594536,3,1,23,23,3595498,2,2,1,-1,3595753,2,2,5,5,3596302,2,2,7,7,3596591,2,2,12,12,3597121,2,2,17,17,3597636,2,2,19,19,3598073,2,2,21,21,3598472,2,2,23,23,3598676,2,2,23,23,3598918,2,2,22,22,3599165,2,2,23,23,3599336,2,2,25,25,3599767,2,2,26,26,3599979,2,2,27,27,3600201,2,2,28,28,3600412,2,2,29,29,3600645,2,2,31,31,3601168,2,2,33,33,3601503,2,2,34,34,3601712,2,2,37,37,3602132,2,2,38,38,3602305,2,2,1,-1,3602542,1,1,23,23,3602816,2,2,39,39,3603187,2,2,34,34,3603628,2,2,32,32,3603864,2,2,29,29,3604209,2,2,26,26,3604544,2,2,21,21,3604993,2,2,18,18,3605412,2,2,15,15,3605664,2,2,8,8,3606178,3,1,24,24,3606414,2,2,1,-1,3606630,2,2,8,8,3606972,2,2,7,7,3607192,2,2,5,5,3607516,2,2,2,2,3607917,2,2,10,10,3608384,2,2,15,15,3608741,2,2,11,11,3609140,2,2,18,18,3609606,2,2,21,21,3609954,2,2,22,22,3610211,2,2,26,26,3610634,2,2,28,28,3610920,2,2,29,29,3611144,2,2,32,32,3611565,2,2,33,33,3611773,2,2,34,34,3611995,2,2,36,36,3612392,2,2,37,37,3612670,2,2,38,38,3612878,2,2,39,39,3613097,2,2,1,-1,3613513,1,1,24,24,3614119,2,2,39,39,3614391,2,2,37,37,3614739,2,2,36,36,3614963,2,2,35,35,3615151,2,2,34,34,3615354,2,2,30,30,3615869,2,2,24,24,3616301,2,2,20,20,3616693,2,2,17,17,3617062,2,2,13,13,3617550,2,2,5,5,3617921,2,2,4,4,3618123,3,1,25,25,3618326,2,2,1,-1,3618537,2,2,5,5,3618800,2,2,4,4,3619012,2,2,9,9,3619480,2,2,13,13,3619962,2,2,17,17,3620360,2,2,20,20,3620899,2,2,24,24,3621312,2,2,25,25,3621551,2,2,30,30,3622165,2,2,34,34,3622638,2,2,35,35,3622840,2,2,36,36,3623070,2,2,37,37,3623286,2,2,39,39,3623597,2,2,1,-1,3623806,1,1,25,25,3624213,2,2,39,39,3624454,2,2,38,38,3624602,2,2,35,35,3625003,2,2,34,34,3625210,2,2,33,33,3625526,2,2,29,29,3626237,2,2,28,28,3626299,2,2,21,21,3626867,2,2,20,20,3627050,2,2,18,18,3627486,2,2,17,17,3627687,2,2,16,16,3627902,2,2,15,15,3628108,2,2,14,14,3628311,2,2,11,11,3628718,2,2,9,9,3629021,2,2,5,5,3629423,3,1,26,26,3629637,2,2,1,-1,3629871,2,2,5,5,3630163,2,2,9,9,3630748,2,2,11,11,3630992,2,2,14,14,3631523,2,2,15,15,3631725,2,2,16,16,3631970,2,2,17,17,3632218,2,2,18,18,3632441,2,2,20,20,3632851,2,2,21,21,3633034,2,2,28,28,3633462,2,2,30,30,3633701,2,2,29,29,3634324,2,2,30,30,3634528,2,2,33,33,3634875,2,2,34,34,3635125,2,2,35,35,3635339,2,2,38,38,3635801,2,2,39,39,3636007,2,2,1,-1,3636243,1,1,26,26,3636522,2,2,38,38,3636790,2,2,37,37,3636998,2,2,31,31,3637380,2,2,29,29,3637699,2,2,23,23,3638244,2,2,20,20,3638563,2,2,17,17,3638973,2,2,15,15,3639263,2,2,11,11,3639740,2,2,4,4,3640193,3,1,27,27,3640370,2,2,1,-1,3640601,2,2,4,4,3640861,2,2,11,11,3641604,2,2,14,14,3641960,2,2,15,15,3642169,2,2,16,16,3642419,2,2,17,17,3642626,2,2,20,20,3643134,2,2,23,23,3643486,2,2,24,24,3643679,2,2,26,26,3644049,2,2,29,29,3644420,2,2,30,30,3644623,2,2,31,31,3644849,2,2,32,32,3645075,2,2,37,37,3645615,2,2,38,38,3645814,2,2,1,-1,3646035,1,1,27,27,3646343,2,2,38,38,3646631,2,2,34,34,3647046,2,2,32,32,3647274,2,2,16,16,3648530,3,1,28,28,3648770,2,2,1,-1,3649020,2,2,16,16,3649317,2,2,12,12,3649787,2,2,10,10,3650005,2,2,7,7,3650346,2,2,17,17,3650887,2,2,19,19,3651159,2,2,23,23,3651598,2,2,29,29,3652044,2,2,31,31,3652304,2,2,32,32,3652503,2,2,34,34,3652845,2,2,36,36,3653109,2,2,38,38,3653355,2,2,1,-1,3653592,1,1,28,28,3653858,2,2,37,37,3654210,2,2,27,27,3654850,2,2,14,14,3655530,2,2,12,12,3655760,3,1,29,29,3656280,2,2,1,-1,3656723,2,2,5,5,3657166,2,2,6,6,3657404,2,2,7,7,3657601,2,2,11,11,3658012,2,2,12,12,3658210,2,2,14,14,3658548,2,2,16,16,3658889,2,2,23,23,3659462,2,2,24,24,3659679,2,2,25,25,3659891,2,2,27,27,3660245,2,2,29,29,3660520,2,2,36,36,3661029,2,2,39,39,3661309,2,2,39,39,3661385,2,2,37,37,3661809,2,2,36,36,3662011,2,2,39,39,3662350,2,2,1,-1,3662557,1,1,29,29,3662803,2,2,39,39,3663150,2,2,38,38,3663332,2,2,37,37,3663505,2,2,35,35,3663860,2,2,34,34,3664052,2,2,32,32,3664387,2,2,30,30,3664780,2,2,29,29,3664949,2,2,21,21,3665509,2,2,19,19,3665761,2,2,15,15,3666272,2,2,12,12,3666585,2,2,8,8,3667010,3,1,30,30,3667266,2,2,1,-1,3667454,2,2,8,8,3667797,2,2,7,7,3667963,2,2,4,4,3668272,2,2,2,2,3668519,2,2,10,10,3668978,2,2,11,11,3669159,2,2,12,12,3669389,2,2,15,15,3669733,2,2,17,17,3669998,2,2,19,19,3670339,2,2,21,21,3670690,2,2,22,22,3670910,2,2,24,24,3671229,2,2,25,25,3671451,2,2,29,29,3671890,2,2,30,30,3672097,2,2,32,32,3672416,2,2,34,34,3672718,2,2,35,35,3672946,2,2,37,37,3673269,2,2,38,38,3673492,2,2,39,39,3673704,2,2,1,-1,3673925,1,1,30,30,3674217,2,2,39,39,3674479,2,2,36,36,3674721,2,2,37,37,3675394,2,2,29,29,3675943,2,2,27,27,3676144,2,2,15,15,3677023,2,2,8,8,3677563,2,2,7,7,3677732,2,2,3,3,3678106,2,2,2,2,3678281,3,1,31,31,3678493,2,2,1,-1,3678755,2,2,2,2,3678954,2,2,3,3,3679238,2,2,5,5,3679578,2,2,7,7,3679921,2,2,8,8,3680095,2,2,13,13,3680594,2,2,15,15,3680839,2,2,19,19,3681242,2,2,21,21,3681505,2,2,24,24,3681932,2,2,26,26,3682266,2,2,27,27,3682470,2,2,29,29,3682810,2,2,37,37,3683346,2,2,39,39,3683613,2,2,1,-1,3683846,1,1,31,31,3684121,2,2,38,38,3684412,2,2,34,34,3684869,2,2,32,32,3685089,2,2,24,24,3685722,2,2,21,21,3686071,2,2,17,17,3686757,2,2,15,15,3687625,2,2,13,13,3687830,2,2,10,10,3688443,2,2,7,7,3688776,3,1,32,32,3688973,2,2,1,-1,3689182,2,2,7,7,3689552,2,2,6,6,3689800,2,2,2,2,3690143,2,2,10,10,3690605,2,2,13,13,3690989,2,2,15,15,3691285,2,2,16,16,3691466,2,2,17,17,3691659,2,2,21,21,3692231,2,2,23,23,3692582,2,2,24,24,3693067,2,2,30,30,3693598,2,2,32,32,3693890,2,2,34,34,3694164,2,2,38,38,3694598,2,2,1,-1,3695071,1,1,32,32,3695417,2,2,29,29,3696028,2,2,28,28,3696197,2,2,26,26,3696533,2,2,22,22,3696946,2,2,18,18,3697524,2,2,14,14,3698001,2,2,11,11,3698468,2,2,9,9,3698644,2,2,4,4,3699081,2,2,3,3,3699230,3,1,33,33,3699454,2,2,1,-1,3699696,2,2,3,3,3699913,2,2,4,4,3700172,2,2,2,2,3700404,2,2,9,9,3700849,2,2,10,10,3701046,2,2,11,11,3701251,2,2,14,14,3701798,2,2,18,18,3702241,2,2,21,21,3702655,2,2,22,22,3702832,2,2,25,25,3703299,2,2,26,26,3703527,2,2,27,27,3703765,2,2,28,28,3704014,2,2,29,29,3704238,2,2,32,32,3704616,2,2,33,33,3704816,2,2,36,36,3705193,2,2,1,-1,3705404,1,1,33,33,3705676,2,2,39,39,3706222,2,2,34,34,3706922,2,2,32,32,3707127,2,2,29,29,3707610,2,2,21,21,3708082,2,2,17,17,3708593,2,2,16,16,3708753,2,2,15,15,3708957,3,1,34,34,3709475,2,2,1,-1,3709698,2,2,5,5,3710358,2,2,15,15,3710959,2,2,16,16,3711182,2,2,17,17,3711379,2,2,21,21,3711836,2,2,22,22,3712022,2,2,25,25,3712431,2,2,27,27,3712924,2,2,29,29,3712997,2,2,32,32,3713406,2,2,34,34,3713711,2,2,35,35,3713908,2,2,37,37,3714242,2,2,39,39,3714516,1,2,37,37,3714991,1,1,35,35,3715097,3,1,35,35,3715708,1,2,37,37,3716425,2,2,1,-1,3716651,1,1,34,34,3717431,2,2,33,33,3718087,2,2,30,30,3718432,2,2,25,25,3719031,2,2,23,23,3719365,2,2,22,22,3719544,2,2,7,7,3720287,2,2,13,13,3720795,3,1,35,35,3720966,2,2,1,-1,3721202,2,2,13,13,3721553,2,2,10,10,3721991,2,2,9,9,3722172,2,2,8,8,3722371,2,2,8,8,3722560,2,2,2,2,3723035,2,2,7,7,3723845,2,2,8,8,3724096,2,2,20,20,3724756,2,2,22,22,3725073,2,2,23,23,3725251,2,2,25,25,3725608,2,2,26,26,3725791,2,2,29,29,3726164,2,2,30,30,3726372,2,2,32,32,3726735,2,2,33,33,3726945,2,2,34,34,3727177,2,2,35,35,3727383,2,2,37,37,3727818,2,2,1,-1,3728067,1,1,35,35,3728356,2,2,37,37,3728699,2,2,36,36,3728878,2,2,34,34,3729187,2,2,29,29,3729629,2,2,22,22,3730095,2,2,10,10,3730642,2,2,6,6,3731006,2,2,5,5,3731172,3,1,36,36,3731394,2,2,1,-1,3731651,2,2,6,6,3731920,2,2,3,3,3732310,2,2,10,10,3732832,2,2,11,11,3733012,2,2,14,14,3733446,2,2,15,15,3733649,2,2,18,18,3734004,2,2,19,19,3734226,2,2,20,20,3734437,2,2,22,22,3734807,2,2,24,24,3735067,2,2,27,27,3735478,2,2,28,28,3735695,2,2,29,29,3735933,2,2,33,33,3736360,2,2,34,34,3736580,2,2,36,36,3736890,2,2,37,37,3737114,2,2,1,-1,3737315,1,1,36,36,3737618,2,2,36,36,3737906,2,2,35,35,3738098,2,2,28,28,3738508,2,2,21,21,3738975,2,2,20,20,3739190,2,2,23,23,3739662,2,2,13,13,3740174,2,2,10,10,3740578,2,2,9,9,3740810,2,2,8,8,3740999,2,2,3,3,3741434,2,2,3,3,3741636,2,2,4,4,3741900,2,2,3,3,3742082,3,1,37,37,3742380,2,2,1,-1,3742612,2,2,4,4,3742861,2,2,3,3,3743017,2,2,8,8,3743426,2,2,9,9,3743635,2,2,10,10,3743842,2,2,12,12,3744187,2,2,13,13,3744408,2,2,14,14,3744623,2,2,15,15,3744814,2,2,17,17,3745294,2,2,18,18,3745512,2,2,20,20,3745934,2,2,21,21,3746141,2,2,23,23,3746481,2,2,28,28,3746933,2,2,34,34,3747562,2,2,35,35,3747751,2,2,36,36,3747970,2,2,1,-1,3748222,1,1,37,37,3748483,2,2,31,31,3749041,2,2,29,29,3749314,2,2,27,27,3749539,2,2,24,24,3750040,2,2,19,19,3750430,2,2,9,9,3750925,3,1,38,38,3751127,2,2,1,-1,3751337,2,2,9,9,3751646,2,2,7,7,3751994,2,2,6,6,3752189,2,2,12,12,3752628,2,2,13,13,3752844,2,2,16,16,3753247,2,2,17,17,3753442,2,2,19,19,3753759,2,2,20,20,3753991,2,2,24,24,3754364,2,2,27,27,3754837,2,2,28,28,3755046,2,2,29,29,3755274,2,2,31,31,3755687,2,2,38,38,3756140,2,2,39,39,3756365,2,2,1,-1,3756610,1,1,38,38,3757193,2,2,27,27,3757793,2,2,23,23,3758141,2,2,18,18,3758560,2,2,13,13,3758967,2,2,10,10,3759303,2,2,6,6,3759735,2,2,5,5,3759885,2,2,4,4,3760087,3,1,39,39,3760360,2,2,1,-1,3760600,2,2,6,6,3761177,2,2,8,8,3761858,2,2,10,10,3762061,2,2,13,13,3762484,2,2,14,14,3762673,2,2,18,18,3763158,2,2,21,21,3763483,2,2,23,23,3763733,2,2,25,25,3763997,2,2,27,27,3764262,2,2,31,31,3764699,2,2,32,32,3764915,2,2,36,36,3765466,2,2,1,-1,3765696,1,1,39,39,3765993,2,2,39,39,3766345,2,2,38,38,3766517,2,2,37,37,3766735,2,2,35,35,3767048,2,2,33,33,3767657,2,2,32,32,3767806,2,2,27,27,3768266,2,2,23,23,3768949,2,2,21,21,3769186,2,2,19,19,3769569,2,2,18,18,3769778,2,2,17,17,3769964,2,2,16,16,3770169,2,2,15,15,3770408,2,2,14,14,3770644,2,2,13,13,3770858,2,2,12,12,3771088,2,2,8,8,3771508,2,2,7,7,3771750,2,2,6,6,3772014,2,2,5,5,3772198,2,2,4,4,3772421,2,2,2,2,3772763,3,2,-1,-1,3773539,3,1,1,-1,3773853,1,1,1,-1,3774044,2,2,37,37,3774366,3,1,16,16,3774568,3,1,17,17,3775012,2,2,37,37,3775285,1,1,17,17,3775405,1,1,16,16,3775621,3,1,1,-1,3775886,1,1,1,-1,3776083,2,2,38,38,3776375,3,1,19,19,3776614,2,2,38,38,3776753,1,1,19,19,3776967,3,1,1,-1,3777277,1,1,1,-1,3777458,2,2,32,32,3777825,3,1,19,19,3778075,2,2,32,32,3778231,1,1,19,19,3778388,2,2,34,34,3778703,2,2,31,31,3778962,3,1,18,18,3779266,2,2,31,31,3779498,2,2,33,33,3779811,2,2,34,34,3780318,2,2,33,33,3780481,1,1,18,18,3780731,3,1,1,-1,3781034,1,1,1,-1,3781246,2,2,34,34,3781595,2,2,32,32,3781847,3,1,13,13,3782057,2,2,32,32,3782265,2,2,34,34,3782525,1,1,13,13,3782764,3,1,1,-1,3783026,1,1,1,-1,3783240,2,2,34,34,3783554,3,1,10,10,3783719,2,2,34,34,3783967,1,1,10,10,3784154,3,1,1,-1,3784417,1,1,1,-1,3784645,2,2,31,31,3785000,3,1,6,6,3785177,2,2,31,31,3785392,1,1,6,6,3785551,2,2,32,32,3785835,3,1,4,4,3786020,2,2,32,32,3786203,1,1,4,4,3786404,3,1,1,-1,3786649,1,1,1,-1,3786853,2,2,29,29,3787189,3,1,3,3,3787387,2,2,29,29,3787586,1,1,3,3,3787790,3,1,1,-1,3788040,1,1,1,-1,3788262,2,2,23,23,3788569,3,1,5,5,3788736,2,2,23,23,3788951,1,1,5,5,3789120,3,1,1,-1,3789430,1,1,1,-1,3789597,2,2,21,21,3789944,3,1,8,8,3790100,2,2,21,21,3790300,1,1,8,8,3790473,2,2,23,23,3790752,3,1,9,9,3790924,2,2,23,23,3791166,1,1,9,9,3791340,3,1,1,-1,3791576,1,1,1,-1,3791795,2,2,22,22,3792087,2,2,24,24,3792489,3,1,11,11,3792665,2,2,24,24,3792888,2,2,22,22,3793094,1,1,11,11,3793306,3,1,1,-1,3793574,1,1,1,-1,3793814,2,2,28,28,3794125,3,1,11,11,3794291,2,2,28,28,3794531,1,1,11,11,3794683,2,2,29,29,3794961,3,1,10,10,3795193,1,1,10,10,3795645,3,1,9,9,3795837,2,2,29,29,3796052,1,1,9,9,3796245,3,1,1,-1,3796468,1,1,1,-1,3796687,2,2,30,30,3797132,3,1,10,10,3797334,2,2,30,30,3797547,1,1,10,10,3797734,3,1,1,-1,3798060,1,1,1,-1,3798279,2,2,29,29,3798619,3,1,19,19,3798794,2,2,29,29,3799020,1,1,19,19,3799208,3,1,1,-1,3799469,1,1,1,-1,3799712,2,2,26,26,3800229,3,1,19,19,3800394,2,2,26,26,3800622,1,1,19,19,3800794,3,1,1,-1,3801040,1,1,1,-1,3801256,2,2,22,22,3801552,3,1,17,17,3801741,2,2,22,22,3801959,1,1,17,17,3802145,3,1,1,-1,3802435,1,1,1,-1,3802655,2,2,20,20,3802932,3,1,19,19,3803115,3,1,21,21,3803346,2,2,20,20,3803593,1,1,21,21,3803745,1,1,19,19,3803954,3,1,1,-1,3804278,1,1,1,-1,3804459,2,2,16,16,3804798,3,1,20,20,3804976,2,2,16,16,3805219,1,1,20,20,3805389,3,1,1,-1,3805698,1,1,1,-1,3805896,3,1,1,-1,3806396,1,1,1,-1,3806608,2,2,19,19,3806936,3,1,28,28,3807111,2,2,19,19,3807343,1,1,28,28,3807499,2,2,23,23,3807852,3,1,27,27,3808025,2,2,23,23,3808228,1,1,27,27,3808411,3,1,1,-1,3808674,1,1,1,-1,3808885,2,2,15,15,3809209,3,1,26,26,3809394,2,2,15,15,3809622,1,1,26,26,3809767,2,2,13,13,3810095,3,1,25,25,3810261,2,2,13,13,3810465,1,1,25,25,3810640,3,1,1,-1,3810918,1,1,1,-1,3811111,2,2,5,5,3811452,3,1,25,25,3811625,2,2,5,5,3811865,1,1,25,25,3812034,2,2,7,7,3812302,3,1,24,24,3812469,2,2,7,7,3812705,1,1,24,24,3812877,3,1,1,-1,3813084,1,1,1,-1,3813321,3,1,1,-1,3813935,1,1,1,-1,3814148,2,2,5,5,3814455,3,1,19,19,3814620,2,2,5,5,3814846,1,1,19,19,3815018,2,2,9,9,3815361,3,1,20,20,3815535,2,2,9,9,3815739,1,1,20,20,3815928,3,1,1,-1,3816164,1,1,1,-1,3816377,2,2,14,14,3816729,3,1,21,21,3816896,2,2,14,14,3817132,1,1,21,21,3817296,3,1,1,-1,3817562,1,1,1,-1,3817801,3,1,1,-1,3818139,1,1,1,-1,3818354,3,1,1,-1,3818952,1,1,1,-1,3819224,3,1,1,-1,3819669,1,1,1,-1,3819916,2,2,8,8,3820254,2,2,9,9,3820443,3,1,13,13,3820663,2,2,9,9,3820890,2,2,8,8,3821077,1,1,13,13,3821331,3,1,1,-1,3821542,1,1,1,-1,3821777,2,2,7,7,3822093,3,1,10,10,3822280,3,1,11,11,3822457,2,2,7,7,3822734,1,1,11,11,3822864,1,1,10,10,3823062,3,1,1,-1,3823374,1,1,1,-1,3823623,2,2,3,3,3823927,3,1,15,15,3824121,2,2,3,3,3824323,1,1,15,15,3824492,3,1,1,-1,3824763,1,1,1,-1,3824941,2,2,2,2,3825278,3,1,10,10,3825457,2,2,2,2,3825656,1,1,10,10,3825824,2,2,4,4,3826155,3,1,8,8,3826333,2,2,4,4,3826540,1,1,8,8,3826702,3,1,1,-1,3826970,1,1,1,-1,3827189,2,2,5,5,3827551,2,2,5,5,3827902,2,2,4,4,3828060,3,1,4,4,3828299,2,2,4,4,3828517,1,1,4,4,3828703,3,1,1,-1,3828921,1,1,1,-1,3829141,3,1,1,-1,3829555,1,1,1,-1,3829801,2,2,13,13,3830099,3,1,6,6,3830260,2,2,13,13,3830509,1,1,6,6,3830665,3,1,1,-1,3830919,1,1,1,-1,3831157,2,2,14,14,3831501,3,1,8,8,3831667,2,2,14,14,3831894,1,1,8,8,3832071,2,2,10,10,3832472,3,1,8,8,3832636,2,2,10,10,3832872,1,1,8,8,3833048,3,1,1,-1,3833351,1,1,1,-1,3833573,2,2,17,17,3833943,3,1,9,9,3834101,2,2,17,17,3834340,1,1,9,9,3834492,3,1,1,-1,3834761,1,1,1,-1,3835018,2,2,16,16,3835334,3,1,11,11,3835502,2,2,16,16,3835736,1,1,11,11,3835932,3,1,1,-1,3836190,1,1,1,-1,3836441,3,1,1,-1,3836762,1,1,1,-1,3836992,3,1,1,-1,3837430,1,1,1,-1,3837703,3,1,1,-1,3838039,1,1,1,-1,3838316,3,1,1,-1,3838892,1,1,1,-1,3839134,3,1,1,-1,3839538,1,1,1,-1,3839810,2,2,38,38,3840280,3,1,26,26,3840482,3,1,27,27,3840673,2,2,38,38,3840909,1,1,27,27,3841061,1,1,26,26,3841268,3,1,1,-1,3841474,1,1,1,-1,3841707,2,2,36,36,3842030,3,1,28,28,3842185,2,2,36,36,3842425,1,1,28,28,3842591,2,2,39,39,3842916,3,1,25,25,3843101,2,2,39,39,3843304,1,1,25,25,3843479,3,1,1,-1,3843696,1,1,1,-1,3843929,2,2,35,35,3844230,3,1,26,26,3844392,2,2,35,35,3844609,1,1,26,26,3844775,3,1,1,-1,3845109,1,1,1,-1,3845380,2,2,34,34,3845701,3,1,35,35,3845863,2,2,34,34,3846096,1,1,35,35,3846265,2,2,32,32,3846636,3,1,33,33,3846776,2,2,32,32,3847010,1,1,33,33,3847145,3,1,1,-1,3847398,1,1,1,-1,3847591,2,2,32,32,3848057,3,1,30,30,3848230,2,2,32,32,3848468,1,1,30,30,3848633,2,2,31,31,3848946,3,1,27,27,3849107,2,2,31,31,3849317,1,1,27,27,3849514,3,1,1,-1,3849853,1,1,1,-1,3850104,2,2,28,28,3850409,3,1,33,33,3850565,2,2,28,28,3850804,1,1,33,33,3850961,2,2,29,29,3851213,3,1,32,32,3851380,2,2,29,29,3851622,1,1,32,32,3851797,3,1,1,-1,3852101,1,1,1,-1,3852303,2,2,26,26,3852676,3,1,39,39,3852894,1,1,39,39,3853217,2,2,27,27,3853461,2,2,26,26,3853628,3,1,39,39,3853834,2,2,27,27,3854049,1,1,39,39,3854211,3,1,1,-1,3854457,1,1,1,-1,3854686,2,2,28,28,3854983,3,1,36,36,3855154,2,2,28,28,3855387,1,1,36,36,3855556,3,1,1,-1,3855935,1,1,1,-1,3856184,2,2,23,23,3856526,3,1,35,35,3856697,2,2,23,23,3856923,1,1,35,35,3857072,2,2,22,22,3857368,3,1,33,33,3857534,2,2,22,22,3857749,1,1,33,33,3857910,2,2,23,23,3858226,3,1,32,32,3858447,2,2,23,23,3858670,1,1,32,32,3858892,3,1,1,-1,3859165,1,1,1,-1,3859376,2,2,21,21,3859677,3,1,34,34,3859846,2,2,21,21,3860083,1,1,34,34,3860254,3,1,1,-1,3860503,1,1,1,-1,3860706,2,2,20,20,3861036,3,1,37,37,3861197,2,2,20,20,3861421,1,1,37,37,3861606,3,1,1,-1,3861858,1,1,1,-1,3862104,2,2,23,23,3862424,3,1,39,39,3862594,2,2,23,23,3862826,1,1,39,39,3863004,3,1,1,-1,3863316,1,1,1,-1,3863530,2,2,16,16,3864017,3,1,34,34,3864207,2,2,16,16,3864429,1,1,34,34,3864614,2,2,17,17,3864977,3,1,38,38,3865172,2,2,17,17,3865408,1,1,38,38,3865585,3,1,1,-1,3865988,1,1,1,-1,3866164,2,2,6,6,3866596,3,1,36,36,3866829,2,2,6,6,3867045,1,1,36,36,3867257,3,1,1,-1,3867515,1,1,1,-1,3867701,2,2,5,5,3868030,3,1,39,39,3868170,2,2,5,5,3868432,1,1,39,39,3868603,3,1,1,-1,3868883,1,1,1,-1,3869103,2,2,4,4,3869419,3,1,33,33,3869589,2,2,4,4,3869860,1,1,33,33,3870001,2,2,2,2,3870367,3,1,31,31,3870548,2,2,2,2,3870775,1,1,31,31,3870945,3,1,1,-1,3871244,1,1,1,-1,3871458,2,2,3,3,3871862,3,1,26,26,3872038,2,2,3,3,3872245,1,1,26,26,3872436,3,1,1,-1,3872670,1,1,1,-1,3872951,3,1,1,-1,3873338,1,1,1,-1,3873601,3,1,1,-1,3874133,1,1,1,-1,3874407,3,2,-1,-1,3874984,3,1,1,-1,3875252,1,1,1,-1,3875493,2,2,38,38,3875803,3,1,19,19,3875985,2,2,38,38,3876178,1,1,19,19,3876356,2,2,39,39,3876615,3,1,20,20,3876763,2,2,39,39,3877020,1,1,20,20,3877208,3,1,1,-1,3877494,1,1,1,-1,3877715,2,2,31,31,3878071,3,1,18,18,3878252,2,2,31,31,3878477,1,1,18,18,3878659,2,2,32,32,3878902,3,1,19,19,3879068,2,2,32,32,3879300,1,1,19,19,3879515,3,1,1,-1,3879787,1,1,1,-1,3879987,2,2,29,29,3880329,3,1,20,20,3880520,2,2,29,29,3880751,1,1,20,20,3880958,3,1,1,-1,3881283,1,1,1,-1,3881512,2,2,37,37,3881859,3,1,27,27,3882023,2,2,37,37,3882291,1,1,27,27,3882454,2,2,39,39,3882737,3,1,25,25,3882933,2,2,39,39,3883141,1,1,25,25,3883341,3,1,1,-1,3883643,1,1,1,-1,3883847,2,2,37,37,3884155,3,1,29,29,3884329,2,2,37,37,3884562,1,1,29,29,3884737,2,2,38,38,3885042,3,1,32,32,3885229,2,2,38,38,3885464,1,1,32,32,3885633,3,1,1,-1,3885941,1,1,1,-1,3886143,2,2,29,29,3886649,3,1,30,30,3886805,2,2,29,29,3887003,1,1,30,30,3887191,3,1,1,-1,3887474,1,1,1,-1,3887673,3,1,1,-1,3888216,1,1,1,-1,3888453,2,2,27,27,3889110,3,1,39,39,3889307,2,2,27,27,3889598,1,1,39,39,3889786,3,1,1,-1,3890147,1,1,1,-1,3890346,2,2,22,22,3890686,3,1,33,33,3890886,2,2,22,22,3891101,1,1,33,33,3891311,3,1,1,-1,3891581,1,1,1,-1,3891806,2,2,21,21,3892103,3,1,26,26,3892275,2,2,21,21,3892494,1,1,26,26,3892654,2,2,20,20,3892992,3,1,22,22,3893194,2,2,20,20,3893400,1,1,22,22,3893599,3,1,1,-1,3893873,1,1,1,-1,3894081,2,2,15,15,3894466,3,1,26,26,3894632,2,2,15,15,3894837,1,1,26,26,3895054,3,1,1,-1,3895298,1,1,1,-1,3895482,3,1,1,-1,3896020,1,1,1,-1,3896257,3,1,1,-1,3896529,1,1,1,-1,3896799,2,2,15,15,3897301,3,1,37,37,3897476,2,2,15,15,3897695,1,1,37,37,3897853,2,2,8,8,3898342,3,1,39,39,3898533,2,2,8,8,3898768,1,1,39,39,3898933,2,2,6,6,3899253,3,1,38,38,3899467,2,2,6,6,3899686,1,1,38,38,3899888,3,1,1,-1,3900234,1,1,1,-1,3900468,2,2,7,7,3900884,3,1,25,25,3901237,2,2,7,7,3901697,1,1,25,25,3901850,3,1,1,-1,3902057,1,1,1,-1,3902260,2,2,5,5,3902567,3,1,25,25,3902739,3,1,26,26,3902917,3,1,23,23,3903206,2,2,5,5,3903448,1,1,23,23,3903615,1,1,25,25,3903870,1,1,26,26,3904058,3,1,1,-1,3904328,1,1,1,-1,3904535,2,2,4,4,3904872,3,1,20,20,3905043,2,2,4,4,3905260,1,1,20,20,3905426,3,1,1,-1,3905688,1,1,1,-1,3906102,2,2,9,9,3906468,3,1,15,15,3906632,2,2,9,9,3906859,1,1,15,15,3907027,2,2,10,10,3907265,3,1,17,17,3907452,2,2,10,10,3907686,1,1,17,17,3907859,3,1,1,-1,3908128,1,1,1,-1,3908368,2,2,7,7,3908677,3,1,14,14,3908840,2,2,7,7,3909057,1,1,14,14,3909247,3,1,1,-1,3909540,1,1,1,-1,3909742,2,2,7,7,3910152,3,1,10,10,3910317,2,2,7,7,3910542,1,1,10,10,3910741,3,1,1,-1,3910967,1,1,1,-1,3911220,3,1,1,-1,3911537,1,1,1,-1,3911819,2,2,6,6,3912213,2,2,3,3,3912497,3,1,5,5,3912670,2,2,3,3,3912895,2,2,7,7,3913232,2,2,7,7,3913572,2,2,6,6,3913754,1,1,5,5,3913978,3,1,1,-1,3914194,1,1,1,-1,3914451,2,2,8,8,3914800,3,1,3,3,3914969,2,2,8,8,3915179,1,1,3,3,3915374,3,1,1,-1,3915603,1,1,1,-1,3915842,3,1,1,-1,3916358,1,1,1,-1,3916599,3,1,1,-1,3917050,1,1,1,-1,3917339,3,1,1,-1,3917652,1,1,1,-1,3917946,2,2,13,13,3918298,3,1,10,10,3918473,2,2,13,13,3918697,1,1,10,10,3918864,3,1,1,-1,3919162,1,1,1,-1,3919404,2,2,14,14,3919804,3,1,15,15,3919974,2,2,14,14,3920175,1,1,15,15,3920358,3,1,1,-1,3920675,1,1,1,-1,3920894,2,2,21,21,3921549,3,1,17,17,3921718,2,2,21,21,3921941,1,1,17,17,3922118,3,1,1,-1,3922623,1,1,1,-1,3922833,2,2,21,21,3923310,2,2,22,22,3923543,3,1,8,8,3923848,3,1,7,7,3924085,2,2,22,22,3924324,2,2,21,21,3924468,1,1,8,8,3924832,1,1,7,7,3925021,3,1,1,-1,3925282,1,1,1,-1,3925510,2,2,22,22,3925835,3,1,12,12,3926032,2,2,22,22,3926234,1,1,12,12,3926429,3,1,1,-1,3926716,1,1,1,-1,3926908,2,2,24,24,3927285,3,1,5,5,3927418,2,2,24,24,3927655,1,1,5,5,3927858,3,1,1,-1,3928097,1,1,1,-1,3928314,3,1,1,-1,3928761,1,1,1,-1,3928984,2,2,29,29,3929388,3,1,7,7,3929571,3,1,9,9,3929800,2,2,29,29,3930029,1,1,9,9,3930171,1,1,7,7,3930476,3,1,1,-1,3930747,1,1,1,-1,3930953,3,1,1,-1,3931401,1,1,1,-1,3931640,3,2,-1,-1,3932269,3,1,1,-1,3932576,1,1,1,-1,3932796,3,1,1,-1,3933265,1,1,1,-1,3933501,2,2,34,34,3933839,3,1,14,14,3934025,2,2,34,34,3934249,1,1,14,14,3934422,3,1,1,-1,3934686,1,1,1,-1,3934894,2,2,32,32,3935204,3,1,9,9,3935352,3,1,8,8,3935539,2,2,32,32,3935790,1,1,9,9,3935948,1,1,8,8,3936124,2,2,34,34,3936433,3,1,9,9,3936620,2,2,34,34,3936838,1,1,9,9,3937009,3,1,1,-1,3937264,1,1,1,-1,3937466,2,2,30,30,3937773,3,1,8,8,3937950,2,2,30,30,3938161,1,1,8,8,3938326,2,2,29,29,3938604,3,1,7,7,3938756,2,2,29,29,3938982,1,1,7,7,3939167,2,2,33,33,3939472,3,1,6,6,3939652,2,2,33,33,3939853,1,1,6,6,3940035,3,1,1,-1,3940323,1,1,1,-1,3940544,2,2,27,27,3940917,3,1,12,12,3941122,2,2,27,27,3941315,1,1,12,12,3941486,2,2,25,25,3941765,3,1,11,11,3941928,2,2,25,25,3942173,1,1,11,11,3942348,3,1,1,-1,3942633,1,1,1,-1,3942901,2,2,22,22,3943254,3,1,2,2,3943421,2,2,22,22,3943645,1,1,2,2,3943834,3,1,1,-1,3944117,1,1,1,-1,3944322,2,2,27,27,3944621,3,1,2,2,3944820,2,2,27,27,3945059,1,1,2,2,3945263,3,1,1,-1,3945598,1,1,1,-1,3945864,2,2,5,5,3946241,2,2,2,2,3946521,3,1,2,2,3946722,2,2,2,2,3946923,2,2,5,5,3947211,1,1,2,2,3947436,3,1,1,-1,3947704,1,1,1,-1,3947938,2,2,8,8,3948252,3,1,6,6,3948391,2,2,8,8,3948630,1,1,6,6,3948798,2,2,12,12,3949148,2,2,13,13,3949511,2,2,12,12,3949678,3,1,4,4,3949907,2,2,13,13,3950152,1,1,4,4,3950371,3,1,1,-1,3950624,1,1,1,-1,3950845,2,2,13,13,3951144,3,1,9,9,3951319,2,2,13,13,3951523,1,1,9,9,3951684,2,2,14,14,3952045,3,1,12,12,3952198,2,2,14,14,3952424,1,1,12,12,3952590,3,1,1,-1,3952838,1,1,1,-1,3953098,2,2,7,7,3953388,3,1,13,13,3953580,2,2,7,7,3953778,1,1,13,13,3953957,2,2,10,10,3954258,3,1,11,11,3954431,2,2,10,10,3954664,1,1,11,11,3954924,3,1,1,-1,3955241,1,1,1,-1,3955444,2,2,2,2,3955858,3,1,11,11,3956040,2,2,2,2,3956265,1,1,11,11,3956457,3,1,1,-1,3956803,1,1,1,-1,3957013,2,2,8,8,3957401,3,1,16,16,3957576,2,2,8,8,3957793,1,1,16,16,3957989,3,1,1,-1,3958254,1,1,1,-1,3958448,2,2,17,17,3958770,3,1,19,19,3958941,2,2,17,17,3959176,1,1,19,19,3959345,3,1,1,-1,3959710,1,1,1,-1,3959900,2,2,18,18,3960230,3,1,24,24,3960393,2,2,18,18,3960607,1,1,24,24,3960794,2,2,21,21,3961056,3,1,26,26,3961289,1,1,26,26,3961595,2,2,21,21,3961816,2,2,20,20,3961971,3,1,26,26,3962265,2,2,20,20,3962512,1,1,26,26,3962686,3,1,1,-1,3962983,1,1,1,-1,3963162,2,2,13,13,3963483,3,1,25,25,3963659,2,2,13,13,3963868,1,1,25,25,3964098,3,1,1,-1,3964436,1,1,1,-1,3964688,2,2,2,2,3965151,3,1,30,30,3965321,2,2,2,2,3965527,1,1,30,30,3965711,3,1,1,-1,3966007,1,1,1,-1,3966205,2,2,3,3,3966516,3,1,36,36,3966683,2,2,3,3,3966916,1,1,36,36,3967159,2,2,4,4,3967432,3,1,39,39,3967645,2,2,4,4,3967911,1,1,39,39,3968083,3,1,1,-1,3968375,1,1,1,-1,3968531,3,1,1,-1,3968987,1,1,1,-1,3969204,2,2,24,24,3969569,3,1,36,36,3969767,2,2,24,24,3969974,1,1,36,36,3970150,3,1,1,-1,3970427,1,1,1,-1,3970630,2,2,28,28,3970956,3,1,33,33,3971123,2,2,28,28,3971367,1,1,33,33,3971503,2,2,30,30,3971820,2,2,29,29,3971972,3,1,30,30,3972201,2,2,30,30,3972440,2,2,29,29,3972650,1,1,30,30,3972891,3,1,1,-1,3973235,1,1,1,-1,3973456,2,2,32,32,3973776,3,1,32,32,3973949,2,2,32,32,3974180,1,1,32,32,3974344,3,1,1,-1,3974623,1,1,1,-1,3974827,2,2,37,37,3975126,3,1,29,29,3975290,2,2,37,37,3975496,1,1,29,29,3975696,3,1,1,-1,3976079,1,1,1,-1,3976275,2,2,29,29,3976651,3,1,20,20,3976833,2,2,29,29,3977065,1,1,20,20,3977242,3,1,1,-1,3977706,1,1,1,-1,3977913,3,1,1,-1,3978362,1,1,1,-1,3978632,3,2,-1,-1,3979031,3,1,1,-1,3979275,1,1,1,-1,3979504,2,2,38,38,3979814,3,1,13,13,3980009,2,2,38,38,3980223,1,1,13,13,3980399,2,2,39,39,3980698,3,1,10,10,3980862,2,2,39,39,3981114,1,1,10,10,3981305,3,1,1,-1,3981643,1,1,1,-1,3981848,2,2,28,28,3982192,3,1,3,3,3982373,2,2,28,28,3982614,1,1,3,3,3982804,3,1,1,-1,3983507,1,1,1,-1,3983759,3,1,1,-1,3984396,1,1,1,-1,3984628,3,1,1,-1,3985028,1,1,1,-1,3985276,2,2,23,23,3985593,3,1,36,36,3985761,2,2,23,23,3985970,1,1,36,36,3986160,3,1,1,-1,3986785,1,1,1,-1,3986993,3,1,1,-1,3987394,1,1,1,-1,3987621,3,1,1,-1,3988243,1,1,1,-1,3988505,2,2,7,7,3988962,3,1,9,9,3989096,2,2,7,7,3989331,1,1,9,9,3989520,3,2,-1,-1,3990244,3,1,1,-1,3990649,1,1,1,-1,3990869,2,2,27,27,3991315,3,1,2,2,3991529,2,2,27,27,3991718,1,1,2,2,3991927,3,1,1,-1,3992465,1,1,1,-1,3992712,3,1,1,-1,3993221,1,1,1,-1,3993419,2,2,28,28,3993731,3,1,38,38,3993903,2,2,28,28,3994159,1,1,38,38,3994315,3,1,1,-1,3994710,1,1,1,-1,3994907,3,1,1,-1,3995458,1,1,1,-1,3995696,3,2,-1,-1,3996928,3,1,1,-1,3997317,1,1,1,-1,3997531,2,2,14,14,3997937,3,1,29,29,3998111,2,2,14,14,3998315,1,1,29,29,3998504,2,2,13,13,3998960,3,1,37,37,3999155,2,2,13,13,3999392,1,1,37,37,3999569,2,2,1,-1,4000584,3,1,1,-1,4001169,1,1,1,-1,4001330,3,1,1,-1,4001863,1,1,1,-1,4002110,3,1,1,-1,4002612,1,1,1,-1,4002830,3,1,1,-1,4003163,1,1,1,-1,4003406,3,1,1,-1,4003782,1,1,1,-1,4004086,3,2,-1,-1,4004722,3,1,1,-1,4005024,1,1,1,-1,4005226,2,2,37,37,4005569,3,1,36,36,4005734,3,1,34,34,4005942,2,2,37,37,4006142,1,1,34,34,4006323,1,1,36,36,4006584,3,1,1,-1,4006832,1,1,1,-1,4007013,2,2,33,33,4007334,3,1,33,33,4007508,2,2,33,33,4007742,1,1,33,33,4007933,3,1,1,-1,4008225,1,1,1,-1,4008424,2,2,27,27,4008788,3,1,34,34,4008957,2,2,27,27,4009187,1,1,34,34,4009338,2,2,29,29,4009640,3,1,33,33,4009812,2,2,29,29,4010044,1,1,33,33,4010203,2,2,26,26,4010593,3,1,35,35,4010780,2,2,26,26,4011017,1,1,35,35,4011200,3,1,1,-1,4011462,1,1,1,-1,4011666,3,1,1,-1,4012107,1,1,1,-1,4012357,2,2,23,23,4012689,3,1,37,37,4012870,2,2,23,23,4013069,1,1,37,37,4013296,3,1,1,-1,4013637,1,1,1,-1,4013837,2,2,24,24,4014175,3,1,32,32,4014354,2,2,24,24,4014558,1,1,32,32,4014769,3,1,1,-1,4015230,1,1,1,-1,4015436,2,2,24,24,4015850,3,1,27,27,4016039,2,2,24,24,4016260,1,1,27,27,4016429,3,1,1,-1,4016684,1,1,1,-1,4016893,2,2,27,27,4017266,3,1,23,23,4017438,2,2,27,27,4017650,1,1,23,23,4017827,2,2,28,28,4018112,3,1,26,26,4018293,2,2,28,28,4018502,1,1,26,26,4018685,3,1,1,-1,4018932,1,1,1,-1,4019137,2,2,29,29,4019611,3,1,21,21,4019787,2,2,29,29,4020010,1,1,21,21,4020226,2,2,31,31,4020470,3,1,23,23,4020659,2,2,31,31,4020879,1,1,23,23,4021042,3,1,1,-1,4021283,1,1,1,-1,4021472,3,1,1,-1,4021885,1,1,1,-1,4022090,3,1,1,-1,4022567,1,1,1,-1,4022829,2,2,38,38,4023178,3,1,18,18,4023348,2,2,38,38,4023581,1,1,18,18,4023752,3,1,1,-1,4024051,1,1,1,-1,4024272,2,2,28,28,4024627,2,2,30,30,4024829,3,1,15,15,4025032,2,2,30,30,4025239,2,2,28,28,4025457,1,1,15,15,4025674,3,1,1,-1,4025951,1,1,1,-1,4026191,3,1,1,-1,4026713,1,1,1,-1,4026974,2,2,31,31,4027407,3,1,9,9,4027576,2,2,31,31,4027788,1,1,9,9,4027970,3,1,1,-1,4028230,1,1,1,-1,4028429,3,1,1,-1,4028849,1,1,1,-1,4029105,2,2,34,34,4029413,3,1,4,4,4029582,3,1,5,5,4029751,2,2,34,34,4029993,1,1,5,5,4030158,1,1,4,4,4030346,2,2,36,36,4030685,3,1,2,2,4030850,2,2,36,36,4031072,1,1,2,2,4031228,2,2,39,39,4031566,3,1,4,4,4031719,2,2,39,39,4031962,1,1,4,4,4032161,3,1,1,-1,4032445,1,1,1,-1,4032676,2,2,27,27,4032977,3,1,5,5,4033152,2,2,27,27,4033382,1,1,5,5,4033536,2,2,28,28,4033828,3,1,2,2,4033980,2,2,28,28,4034181,1,1,2,2,4034382,3,1,1,-1,4034617,1,1,1,-1,4034809,3,1,1,-1,4035329,1,1,1,-1,4035574,2,2,27,27,4035924,3,1,8,8,4036113,2,2,27,27,4036337,1,1,8,8,4036534,3,1,1,-1,4036826,1,1,1,-1,4037081,2,2,24,24,4037371,3,1,14,14,4037575,2,2,24,24,4037791,1,1,14,14,4037938,2,2,22,22,4038249,3,1,13,13,4038509,2,2,22,22,4038649,1,1,13,13,4038847,3,1,1,-1,4039115,1,1,1,-1,4039356,2,2,20,20,4039931,3,1,14,14,4040099,2,2,20,20,4040338,1,1,14,14,4040511,3,1,1,-1,4040747,1,1,1,-1,4040984,3,1,1,-1,4041358,1,1,1,-1,4041601,3,1,1,-1,4041901,1,1,1,-1,4042170,2,2,19,19,4042488,3,1,5,5,4042643,2,2,19,19,4042876,1,1,5,5,4043050,3,1,1,-1,4043319,1,1,1,-1,4043568,2,2,14,14,4043934,2,2,17,17,4044344,3,1,4,4,4044563,2,2,17,17,4044768,2,2,14,14,4045044,1,1,4,4,4045257,3,1,1,-1,4045530,1,1,1,-1,4045726,2,2,12,12,4046195,3,1,3,3,4046368,2,2,12,12,4046602,1,1,3,3,4046788,3,1,1,-1,4047055,1,1,1,-1,4047249,3,1,1,-1,4047664,1,1,1,-1,4047892,3,1,1,-1,4048399,1,1,1,-1,4048638,2,2,5,5,4048995,3,1,10,10,4049156,2,2,5,5,4049363,1,1,10,10,4049510,3,1,1,-1,4049762,1,1,1,-1,4049974,3,1,1,-1,4050404,1,1,1,-1,4050618,3,1,1,-1,4051036,1,1,1,-1,4051343,3,1,1,-1,4051639,1,1,1,-1,4051871,3,1,1,-1,4052250,1,1,1,-1,4052486,2,2,16,16,4052837,3,1,18,18,4053005,2,2,16,16,4053246,1,1,18,18,4053431,3,1,1,-1,4053776,1,1,1,-1,4053975,2,2,7,7,4054288,2,2,6,6,4054452,3,1,18,18,4054663,2,2,7,7,4054904,2,2,6,6,4055039,1,1,18,18,4055310,3,1,1,-1,4055541,1,1,1,-1,4055736,2,2,6,6,4056051,3,1,22,22,4056287,3,1,23,23,4056431,2,2,6,6,4056695,1,1,23,23,4056864,1,1,22,22,4057044,3,1,1,-1,4057307,1,1,1,-1,4057544,2,2,8,8,4057848,3,1,24,24,4057998,2,2,8,8,4058289,1,1,24,24,4058431,3,1,1,-1,4058734,1,1,1,-1,4058945,3,1,1,-1,4059446,1,1,1,-1,4059708,2,2,4,4,4060001,3,1,30,30,4060163,2,2,4,4,4060406,1,1,30,30,4060568,2,2,6,6,4060841,3,1,32,32,4061044,2,2,6,6,4061269,1,1,32,32,4061457,3,1,1,-1,4061717,1,1,1,-1,4061919,2,2,4,4,4062232,3,1,37,37,4062394,2,2,4,4,4062643,1,1,37,37,4062783,2,2,5,5,4063069,3,1,36,36,4063221,2,2,5,5,4063456,1,1,36,36,4063621,3,1,1,-1,4063867,1,1,1,-1,4064129,3,1,1,-1,4064507,1,1,1,-1,4064736,2,2,10,10,4065154,3,1,38,38,4065323,2,2,10,10,4065544,1,1,38,38,4065713,2,2,9,9,4066018,3,1,35,35,4066196,2,2,9,9,4066409,1,1,35,35,4066574,3,1,1,-1,4066810,1,1,1,-1,4067045,2,2,10,10,4067445,3,1,33,33,4067616,2,2,10,10,4067853,1,1,33,33,4068035,3,1,1,-1,4068272,1,1,1,-1,4068533,2,2,15,15,4068840,2,2,17,17,4069108,3,1,34,34,4069295,2,2,17,17,4069523,2,2,15,15,4069739,1,1,34,34,4069957,2,2,14,14,4070230,3,1,33,33,4070409,2,2,14,14,4070634,1,1,33,33,4070810,3,1,1,-1,4071082,1,1,1,-1,4071316,2,2,17,17,4071729,3,1,37,37,4071897,2,2,17,17,4072109,1,1,37,37,4072277,3,1,1,-1,4072570,1,1,1,-1,4072773,3,1,1,-1,4073186,1,1,1,-1,4073449,3,1,1,-1,4074068,1,1,1,-1,4074358,3,1,1,-1,4074746,1,1,1,-1,4075070,2,2,23,23,4075513,3,1,23,23,4075709,2,2,23,23,4075907,1,1,23,23,4076091,3,1,1,-1,4076307,1,1,1,-1,4076581,3,1,1,-1,4077063,1,1,1,-1,4077309,3,1,1,-1,4077617,1,1,1,-1,4077914,3,2,-1,-1,4078522,3,1,1,-1,4078789,1,1,1,-1,4079019,2,2,35,35,4079301,3,1,16,16,4079468,2,2,35,35,4079683,1,1,16,16,4079849,2,2,38,38,4080143,2,2,37,37,4080292,3,1,15,15,4080522,2,2,38,38,4080755,2,2,37,37,4080922,1,1,15,15,4081165,3,1,1,-1,4081530,1,1,1,-1,4081743,2,2,33,33,4082155,2,2,31,31,4082347,3,1,15,15,4082565,2,2,31,31,4082789,2,2,33,33,4083070,1,1,15,15,4083299,3,1,1,-1,4083597,1,1,1,-1,4083845,2,2,34,34,4084228,3,1,22,22,4084383,2,2,34,34,4084605,1,1,22,22,4084772,2,2,37,37,4085075,3,1,23,23,4085274,2,2,37,37,4085484,1,1,23,23,4085671,3,1,1,-1,4085910,1,1,1,-1,4086126,3,1,1,-1,4086522,1,1,1,-1,4086757,2,2,28,28,4087155,3,1,13,13,4087301,2,2,28,28,4087503,1,1,13,13,4087673,3,1,1,-1,4087914,1,1,1,-1,4088132,2,2,26,26,4088535,2,2,29,29,4088841,3,1,8,8,4089103,2,2,29,29,4089318,2,2,27,27,4089590,2,2,27,27,4089889,2,2,26,26,4090087,1,1,8,8,4090308,3,1,1,-1,4090566,1,1,1,-1,4090803,2,2,35,35,4091238,3,1,6,6,4091416,2,2,35,35,4091622,1,1,6,6,4091790,2,2,34,34,4092025,3,1,7,7,4092192,2,2,34,34,4092424,1,1,7,7,4092596,3,1,1,-1,4092850,1,1,1,-1,4093042,3,1,1,-1,4093455,1,1,1,-1,4093687,2,2,30,30,4094026,3,1,4,4,4094192,2,2,30,30,4094434,1,1,4,4,4094603,3,1,1,-1,4094880,1,1,1,-1,4095150,2,2,25,25,4095413,3,1,5,5,4095588,3,1,6,6,4095791,2,2,25,25,4096024,1,1,6,6,4096189,1,1,5,5,4096398,3,1,1,-1,4096697,1,1,1,-1,4096936,2,2,21,21,4097245,3,1,9,9,4097448,2,2,21,21,4097662,1,1,9,9,4097856,3,1,1,-1,4098125,1,1,1,-1,4098330,2,2,20,20,4098700,3,1,3,3,4098874,2,2,20,20,4099082,1,1,3,3,4099256,2,2,21,21,4099477,3,1,2,2,4099658,2,2,21,21,4099864,1,1,2,2,4100058,3,1,1,-1,4100346,1,1,1,-1,4100566,2,2,15,15,4100857,3,1,7,7,4101012,2,2,15,15,4101246,1,1,7,7,4101427,3,1,1,-1,4101664,1,1,1,-1,4101926,2,2,12,12,4102268,3,1,4,4,4102435,2,2,12,12,4102641,1,1,4,4,4102815,2,2,11,11,4103085,3,1,5,5,4103237,2,2,11,11,4103468,1,1,5,5,4103660,3,1,1,-1,4103909,1,1,1,-1,4104108,2,2,10,10,4104459,3,1,6,6,4104625,2,2,10,10,4104849,1,1,6,6,4105003,2,2,11,11,4105260,3,1,7,7,4105441,2,2,11,11,4105673,1,1,7,7,4105853,3,1,1,-1,4106134,1,1,1,-1,4106319,2,2,7,7,4106653,3,1,2,2,4106846,2,2,7,7,4107060,1,1,2,2,4107265,3,1,1,-1,4107576,1,1,1,-1,4107763,2,2,3,3,4108086,3,1,4,4,4108275,2,2,3,3,4108478,1,1,4,4,4108686,3,1,1,-1,4108954,1,1,1,-1,4109159,2,2,2,2,4109481,3,1,9,9,4109671,2,2,2,2,4109896,1,1,9,9,4110095,3,1,1,-1,4110348,1,1,1,-1,4110585,2,2,6,6,4110977,3,1,12,12,4111189,2,2,6,6,4111392,1,1,12,12,4111556,3,1,1,-1,4111825,1,1,1,-1,4112049,3,1,1,-1,4112481,1,1,1,-1,4112682,2,2,6,6,4113147,3,1,20,20,4113360,3,1,21,21,4113556,2,2,6,6,4113856,1,1,21,21,4114028,1,1,20,20,4114240,3,1,20,20,4114995,2,2,6,6,4115189,1,1,20,20,4115350,3,1,21,21,4115530,2,2,6,6,4115758,1,1,21,21,4115926,3,1,1,-1,4116232,1,1,1,-1,4116411,2,2,4,4,4116785,3,1,25,25,4116978,2,2,4,4,4117182,1,1,25,25,4117373,3,1,1,-1,4117766,1,1,1,-1,4118015,2,2,6,6,4118371,3,1,39,39,4118537,2,2,6,6,4118764,1,1,39,39,4118931,2,2,2,2,4119270,2,2,3,3,4119661,2,2,2,2,4119811,3,1,37,37,4120022,2,2,3,3,4120244,1,1,37,37,4120409,2,2,7,7,4120764,3,1,35,35,4120990,2,2,7,7,4121176,1,1,35,35,4121353,3,1,1,-1,4121596,1,1,1,-1,4121797,3,1,1,-1,4122267,1,1,1,-1,4122511,2,2,14,14,4122823,3,1,37,37,4122999,2,2,14,14,4123247,1,1,37,37,4123432,3,1,1,-1,4123714,1,1,1,-1,4123940,2,2,16,16,4124270,3,1,32,32,4124427,2,2,16,16,4124643,1,1,32,32,4124816,3,1,1,-1,4125029,1,1,1,-1,4125259,3,1,1,-1,4125665,1,1,1,-1,4125899,3,1,1,-1,4126377,1,1,1,-1,4126645,2,2,19,19,4127001,3,1,22,22,4127160,2,2,19,19,4127392,1,1,22,22,4127576,3,1,1,-1,4127814,1,1,1,-1,4128054,2,2,22,22,4128720,3,1,16,16,4128872,2,2,22,22,4129097,1,1,16,16,4129282,3,1,1,-1,4129501,1,1,1,-1,4129721,2,2,24,24,4130349,3,1,12,12,4130532,2,2,24,24,4130760,1,1,12,12,4130944,3,1,1,-1,4131172,1,1,1,-1,4131419,3,1,1,-1,4131713,1,1,1,-1,4131984,3,1,1,-1,4132396,1,1,1,-1,4132661,3,1,1,-1,4133031,1,1,1,-1,4133286,2,2,26,26,4133691,3,1,23,23,4133832,2,2,26,26,4134054,1,1,23,23,4134192,2,2,28,28,4134462,3,1,24,24,4134638,2,2,28,28,4134867,1,1,24,24,4135037,3,1,1,-1,4135287,1,1,1,-1,4135521,2,2,26,26,4135827,3,1,27,27,4136005,2,2,26,26,4136229,1,1,27,27,4136405,3,1,1,-1,4136808,1,1,1,-1,4136992,3,1,1,-1,4137417,1,1,1,-1,4137654,3,1,1,-1,4137968,1,1,1,-1,4138230,2,2,31,31,4138610,2,2,29,29,4138786,3,1,38,38,4138989,2,2,29,29,4139200,2,2,31,31,4139451,1,1,38,38,4139662,3,1,1,-1,4139896,1,1,1,-1,4140098,3,1,1,-1,4140512,1,1,1,-1,4140737,3,1,1,-1,4141077,1,1,1,-1,4141377,3,2,-1,-1,4142000,3,1,1,-1,4142711,1,1,1,-1,4142906,2,2,38,38,4143422,3,1,22,22,4143601,2,2,38,38,4143831,1,1,22,22,4143998,3,1,1,-1,4144266,1,1,1,-1,4144472,2,2,33,33,4144788,3,1,20,20,4144963,2,2,33,33,4145185,1,1,20,20,4145351,2,2,31,31,4145742,3,1,18,18,4145901,2,2,31,31,4146107,1,1,18,18,4146273,3,1,1,-1,4146513,1,1,1,-1,4146692,2,2,29,29,4146999,3,1,14,14,4147165,2,2,29,29,4147407,1,1,14,14,4147564,3,1,1,-1,4147810,1,1,1,-1,4147978,2,2,27,27,4148344,3,1,10,10,4148509,2,2,27,27,4148722,1,1,10,10,4148878,2,2,28,28,4149185,3,1,7,7,4149368,2,2,28,28,4149558,1,1,7,7,4149779,3,1,1,-1,4150015,1,1,1,-1,4150246,2,2,35,35,4150546,3,1,8,8,4150708,2,2,35,35,4150945,1,1,8,8,4151097,2,2,37,37,4151362,3,1,7,7,4151527,2,2,37,37,4151766,1,1,7,7,4151940,3,1,1,-1,4152152,1,1,1,-1,4152340,2,2,36,36,4152792,3,1,4,4,4152963,2,2,36,36,4153187,1,1,4,4,4153356,3,1,1,-1,4153748,1,1,1,-1,4153970,3,1,1,-1,4154326,1,1,1,-1,4154576,2,2,14,14,4154917,2,2,16,16,4155167,3,1,8,8,4155357,2,2,16,16,4155580,2,2,14,14,4155839,1,1,8,8,4155987,2,2,14,14,4156308,3,1,5,5,4156481,2,2,14,14,4156694,1,1,5,5,4156883,3,1,1,-1,4157198,1,1,1,-1,4157412,3,1,1,-1,4157837,1,1,1,-1,4158051,3,1,1,-1,4158488,1,1,1,-1,4158726,2,2,11,11,4159027,3,1,14,14,4159197,2,2,11,11,4159414,1,1,14,14,4159604,3,1,1,-1,4159878,1,1,1,-1,4160118,2,2,8,8,4160446,3,1,17,17,4160591,2,2,8,8,4160824,1,1,17,17,4160989,3,1,1,-1,4161296,1,1,1,-1,4161536,2,2,16,16,4161860,3,1,15,15,4162011,2,2,16,16,4162246,1,1,15,15,4162391,2,2,18,18,4162673,3,1,13,13,4163097,3,1,11,11,4163310,2,2,18,18,4163541,1,1,11,11,4163712,1,1,13,13,4163922,3,1,1,-1,4164217,1,1,1,-1,4164488,2,2,23,23,4164903,3,1,14,14,4165100,3,1,18,18,4165524,2,2,23,23,4165750,1,1,18,18,4165924,1,1,14,14,4166228,3,1,1,-1,4166504,1,1,1,-1,4166694,3,1,1,-1,4167082,1,1,1,-1,4167274,3,1,1,-1,4167612,1,1,1,-1,4167843,2,2,22,22,4168195,3,1,23,23,4168362,2,2,22,22,4168594,1,1,23,23,4168763,2,2,24,24,4169043,3,1,20,20,4169216,2,2,24,24,4169437,1,1,20,20,4169618,3,1,1,-1,4169896,1,1,1,-1,4170091,2,2,15,15,4170428,3,1,24,24,4170629,2,2,15,15,4170843,1,1,24,24,4171006,2,2,16,16,4171251,3,1,23,23,4171441,2,2,16,16,4171646,1,1,23,23,4171849,3,1,1,-1,4172124,1,1,1,-1,4172332,2,2,12,12,4172662,3,1,30,30,4172833,2,2,12,12,4173038,1,1,30,30,4173251,3,1,1,-1,4173499,1,1,1,-1,4173725,2,2,4,4,4174124,3,1,27,27,4174333,2,2,4,4,4174547,1,1,27,27,4174714,3,1,1,-1,4175016,1,1,1,-1,4175229,2,2,10,10,4175560,3,1,36,36,4175702,2,2,10,10,4175957,1,1,36,36,4176105,2,2,9,9,4176414,3,1,33,33,4176609,2,2,9,9,4176836,1,1,33,33,4177011,3,1,1,-1,4177310,1,1,1,-1,4177525,2,2,21,21,4177856,3,1,37,37,4178026,2,2,21,21,4178232,1,1,37,37,4178397,2,2,25,25,4178712,3,1,39,39,4178913,2,2,25,25,4179154,1,1,39,39,4179356,3,1,1,-1,4179618,1,1,1,-1,4179788,2,2,28,28,4180098,3,1,34,34,4180298,2,2,28,28,4180533,1,1,34,34,4180687,3,1,1,-1,4180938,1,1,1,-1,4181129,2,2,36,36,4181553,3,1,36,36,4181732,2,2,36,36,4181959,1,1,36,36,4182163,3,1,1,-1,4182438,1,1,1,-1,4182652,3,1,1,-1,4183047,1,1,1,-1,4183300,2,2,23,23,4183726,3,1,27,27,4183899,2,2,23,23,4184139,1,1,27,27,4184325,3,1,1,-1,4184645,1,1,1,-1,4184857,2,2,33,33,4185487,3,1,26,26,4185674,2,2,33,33,4185909,1,1,26,26,4186109,3,1,1,-1,4186369,1,1,1,-1,4186574,3,2,-1,-1,4187018,3,1,1,-1,4187291,1,1,1,-1,4187506,2,2,37,37,4187810,3,1,18,18,4187986,2,2,37,37,4188208,1,1,18,18,4188384,3,1,1,-1,4188747,1,1,1,-1,4188951,2,2,29,29,4189395,3,1,15,15,4189565,2,2,29,29,4189774,1,1,15,15,4189928,2,2,26,26,4190337,3,1,18,18,4190521,2,2,26,26,4190736,1,1,18,18,4190909,3,1,1,-1,4191172,1,1,1,-1,4191371,2,2,23,23,4191679,3,1,14,14,4191862,2,2,23,23,4192085,1,1,14,14,4192254,2,2,26,26,4192675,3,1,10,10,4192845,2,2,26,26,4193032,1,1,10,10,4193211,3,1,1,-1,4193510,1,1,1,-1,4193699,2,2,23,23,4194039,3,1,4,4,4194236,2,2,23,23,4194465,1,1,4,4,4194643,3,1,1,-1,4194959,1,1,1,-1,4195163,2,2,15,15,4195484,3,1,7,7,4195651,2,2,15,15,4195858,1,1,7,7,4196040,2,2,10,10,4196416,3,1,5,5,4196601,2,2,10,10,4196803,1,1,5,5,4196994,3,1,1,-1,4197290,1,1,1,-1,4197501,2,2,12,12,4197829,3,1,12,12,4198016,2,2,12,12,4198246,1,1,12,12,4198438,2,2,9,9,4198847,3,1,17,17,4199060,1,1,17,17,4199355,2,2,9,9,4199579,2,2,8,8,4199730,3,1,17,17,4199949,2,2,8,8,4200176,1,1,17,17,4200382,3,1,1,-1,4200625,1,1,1,-1,4200835,2,2,4,4,4201138,3,1,11,11,4201310,2,2,4,4,4201552,1,1,11,11,4201712,2,2,5,5,4202082,3,1,7,7,4202254,2,2,5,5,4202464,1,1,7,7,4202675,3,1,1,-1,4203377,1,1,1,-1,4203581,2,2,11,11,4204268,3,1,34,34,4204456,2,2,11,11,4204689,1,1,34,34,4204858,3,1,1,-1,4205135,1,1,1,-1,4205303,3,1,1,-1,4205787,1,1,1,-1,4205978,3,1,1,-1,4206737,1,1,1,-1,4206944,2,2,25,25,4207458,3,1,36,36,4207624,2,2,25,25,4207828,1,1,36,36,4208012,3,1,1,-1,4208292,1,1,1,-1,4208487,3,2,-1,-1,4209182,3,1,1,-1,4209439,1,1,1,-1,4209644,2,2,36,36,4209985,3,1,37,37,4210195,2,2,36,36,4210450,1,1,37,37,4210594,3,1,1,-1,4210916,1,1,1,-1,4211147,2,2,19,19,4211561,3,1,30,30,4211729,2,2,19,19,4211966,1,1,29,29,4212123,3,1,1,-1,4212361,1,1,1,-1,4212540,3,1,29,29,4213153,1,1,30,30,4213352,3,1,1,-1,4214161,1,1,1,-1,4214331,2,2,17,17,4214645,3,1,25,25,4214801,2,2,17,17,4215052,1,1,25,25,4215210,3,1,1,-1,4215530,1,1,1,-1,4215726,2,2,5,5,4216345,3,1,34,34,4216535,2,2,5,5,4216757,1,1,34,34,4216981,3,2,-1,-1,4217523,3,1,1,-1,4217828,1,1,1,-1,4218040,2,2,18,18,4218472,3,1,30,30,4218657,2,2,18,18,4218898,1,1,30,30,4219125,3,1,1,-1,4219801,1,1,1,-1,4220019,3,2,-1,-1,4220876,3,1,1,-1,4221131,1,1,1,-1,4221360,3,2,-1,-1,4221741,3,1,1,-1,4222101,1,1,1,-1,4222312,3,2,-1,-1,4222686,3,1,1,-1,4222947,1,1,1,-1,4223152,2,2,11,11,4223901,3,1,7,7,4224072,2,2,11,11,4224290,1,1,7,7,4224457,1,2,-1,-1,4226259,2,2,-1,-1,4226880,3,1,1,20,4228014,2,2,1,1,4228267,1,1,1,20,4228424,3,1,-20,-1,4228619,2,2,1,1,4228860,1,1,-20,-1,4229011,3,1,1,-1,4229552,1,1,1,-1,4229740,2,2,23,23,4230226,3,1,12,12,4230410,3,1,13,13,4230605,2,2,23,23,4230835,1,1,13,13,4231011,1,1,12,12,4231240,3,1,1,-1,4231509,1,1,1,-1,4231745,2,2,25,25,4232388,3,1,10,10,4232557,2,2,25,25,4232797,1,1,10,10,4232966,3,1,1,-1,4233243,1,1,1,-1,4233440,3,1,1,-1,4234000,1,1,1,-1,4234219,2,2,32,32,4234646,3,1,10,10,4234815,3,1,11,11,4235041,2,2,32,32,4235342,1,1,11,11,4235524,1,1,10,10,4235721,3,1,1,-1,4236050,1,1,1,-1,4236255,2,2,36,36,4236633,3,1,11,11,4236813,3,1,9,9,4237013,3,1,8,8,4237220,2,2,36,36,4237444,1,1,9,9,4237615,1,1,8,8,4237782,1,1,11,11,4238054,3,1,1,-1,4238276,1,1,1,-1,4238469,2,2,38,38,4238831,3,1,11,11,4238987,2,2,38,38,4239206,1,1,11,11,4239382,3,1,1,-1,4239620,1,1,1,-1,4239871,3,1,1,-1,4240142,1,1,1,-1,4240610,2,2,38,38,4241027,2,2,36,36,4241228,3,1,3,3,4241435,2,2,36,36,4241673,2,2,38,38,4241930,1,1,3,3,4242161,3,1,1,-1,4242483,1,1,1,-1,4242718,2,2,33,33,4243059,3,1,7,7,4243233,2,2,33,33,4243453,1,1,7,7,4243624,3,1,1,-1,4243865,1,1,1,-1,4244105,2,2,29,29,4244439,3,1,6,6,4244607,3,1,5,5,4244791,2,2,29,29,4245019,1,1,6,6,4245194,1,1,5,5,4245405,3,1,1,-1,4245672,1,1,1,-1,4245934,2,2,25,25,4246248,3,1,4,4,4246392,2,2,25,25,4246644,1,1,4,4,4246810,2,2,26,26,4247068,3,1,2,2,4247250,2,2,26,26,4247459,1,1,2,2,4247660,3,1,1,-1,4247908,1,1,1,-1,4248136,2,2,23,23,4248442,3,1,3,3,4248618,2,2,23,23,4248826,1,1,3,3,4249004,3,1,1,-1,4249333,1,1,1,-1,4249567,2,2,19,19,4249866,3,1,4,4,4250050,2,2,19,19,4250243,1,1,4,4,4250420,3,1,1,-1,4250681,1,1,1,-1,4250891,3,1,1,-1,4251607,1,1,1,-1,4251858,3,1,1,-1,4252262,1,1,1,-1,4252499,3,1,1,-1,4253003,1,1,1,-1,4253250,2,2,15,15,4253569,3,1,9,9,4253739,2,2,15,15,4253957,1,1,9,9,4254111,2,2,16,16,4254335,3,1,10,10,4254503,2,2,16,16,4254760,1,1,10,10,4254914,3,1,1,-1,4255182,1,1,1,-1,4255407,3,1,1,-1,4255783,1,1,1,-1,4256050,2,2,16,16,4256355,2,2,14,14,4256530,3,1,14,14,4256736,2,2,14,14,4256960,2,2,16,16,4257217,1,1,14,14,4257437,3,1,1,-1,4257688,1,1,1,-1,4257982,2,2,10,10,4258325,3,1,10,10,4258473,3,1,9,9,4258676,2,2,10,10,4258905,1,1,10,10,4259062,1,1,9,9,4259245,3,1,1,-1,4259507,1,1,1,-1,4259742,2,2,8,8,4260056,3,1,10,10,4260225,3,1,7,7,4260508,2,2,8,8,4260700,1,1,7,7,4260870,1,1,10,10,4261148,3,1,1,-1,4261467,1,1,1,-1,4261651,2,2,9,9,4261968,3,1,5,5,4262136,3,1,3,3,4262345,2,2,9,9,4262567,1,1,3,3,4262770,1,1,5,5,4262979,2,2,10,10,4263256,3,1,4,4,4263445,2,2,10,10,4263650,1,1,4,4,4263817,3,1,1,-1,4264108,1,1,1,-1,4264367,2,2,6,6,4264679,2,2,4,4,4264885,3,1,3,3,4265089,2,2,4,4,4265318,2,2,6,6,4265568,1,1,3,3,4265794,3,1,1,-1,4266016,1,1,1,-1,4266237,2,2,2,2,4266620,3,1,6,6,4266763,2,2,2,2,4266997,1,1,6,6,4267167,3,1,1,-1,4267438,1,1,1,-1,4267660,3,1,1,-1,4268034,1,1,1,-1,4268304,3,1,1,-1,4268701,1,1,1,-1,4268931,2,2,3,3,4269299,3,1,16,16,4269461,2,2,3,3,4269684,1,1,16,16,4269849,2,2,5,5,4270149,3,1,15,15,4270306,2,2,5,5,4270554,1,1,15,15,4270712,3,1,1,-1,4270960,1,1,1,-1,4271163,3,1,1,-1,4271547,1,1,1,-1,4271804,2,2,10,10,4272153,3,1,19,19,4272311,2,2,10,10,4272561,1,1,19,19,4272742,3,1,1,-1,4272965,1,1,1,-1,4273195,2,2,12,12,4273611,3,1,16,16,4273771,2,2,12,12,4274009,1,1,16,16,4274246,3,1,1,-1,4275097,1,1,1,-1,4275338,2,2,16,16,4275910,3,1,20,20,4276112,2,2,16,16,4276351,1,1,20,20,4276556,3,1,1,-1,4277013,1,1,1,-1,4277268,3,1,1,-1,4277721,1,1,1,-1,4277952,2,2,9,9,4278370,3,1,23,23,4278540,2,2,9,9,4278764,1,1,23,23,4278937,3,1,1,-1,4279180,1,1,1,-1,4279387,2,2,7,7,4279692,3,1,21,21,4279881,2,2,7,7,4280063,1,1,21,21,4280226,2,2,5,5,4280536,3,1,20,20,4280693,2,2,5,5,4280913,1,1,20,20,4281109,3,1,1,-1,4281419,1,1,1,-1,4281630,2,2,6,6,4282017,3,1,24,24,4282192,2,2,6,6,4282375,1,1,24,24,4282559,3,1,1,-1,4282831,1,1,1,-1,4283021,2,2,6,6,4283340,3,1,26,26,4283525,2,2,6,6,4283728,1,1,26,26,4283917,3,1,1,-1,4284158,1,1,1,-1,4284367,2,2,9,9,4284712,3,1,25,25,4285123,2,2,9,9,4285343,1,1,25,25,4285527,3,1,1,-1,4285834,1,1,1,-1,4286038,2,2,8,8,4286340,3,1,29,29,4286508,2,2,8,8,4286709,1,1,29,29,4286902,2,2,9,9,4287164,3,1,31,31,4287373,2,2,9,9,4287587,1,1,31,31,4287769,3,1,1,-1,4288108,1,1,1,-1,4288331,3,1,1,-1,4288723,1,1,1,-1,4288947,2,2,6,6,4289351,3,1,32,32,4289530,2,2,6,6,4289746,1,1,32,32,4289927,3,1,1,-1,4290200,1,1,1,-1,4290436,2,2,5,5,4290726,3,1,35,35,4290895,2,2,5,5,4291119,1,1,35,35,4291304,3,1,1,-1,4291571,1,1,1,-1,4291800,3,1,1,-1,4292248,1,1,1,-1,4292500,2,2,11,11,4292841,3,1,38,38,4293013,2,2,11,11,4293234,1,1,38,38,4293451,3,1,1,-1,4293688,1,1,1,-1,4293927,2,2,13,13,4294328,3,1,35,35,4294500,2,2,13,13,4294721,1,1,35,35,4294915,3,1,1,-1,4295141,1,1,1,-1,4295314,2,2,14,14,4295656,3,1,32,32,4295825,2,2,14,14,4296039,1,1,32,32,4296239,3,1,1,-1,4296499,1,1,1,-1,4296714,2,2,16,16,4297089,2,2,17,17,4297416,3,1,28,28,4297627,2,2,17,17,4297830,2,2,16,16,4297995,1,1,28,28,4298246,3,1,1,-1,4298492,1,1,1,-1,4298712,2,2,18,18,4299057,3,1,26,26,4299219,2,2,18,18,4299441,1,1,26,26,4299623,2,2,16,16,4299942,3,1,24,24,4300147,2,2,16,16,4300355,1,1,24,24,4300575,3,1,1,-1,4300830,1,1,1,-1,4301061,3,1,1,-1,4301970,1,1,1,-1,4302210,2,2,19,19,4302555,3,1,31,31,4302719,2,2,19,19,4302950,1,1,31,31,4303127,3,1,1,-1,4303376,1,1,1,-1,4303605,2,2,18,18,4303914,3,1,33,33,4304076,2,2,18,18,4304305,1,1,33,33,4304477,3,1,1,-1,4304731,1,1,1,-1,4304950,2,2,22,22,4305296,3,1,34,34,4305535,3,1,37,37,4305877,2,2,22,22,4306090,1,1,37,37,4306239,1,1,34,34,4306530,3,1,1,-1,4306762,1,1,1,-1,4307000,2,2,18,18,4307380,2,2,15,15,4307677,3,1,39,39,4307856,2,2,15,15,4308049,2,2,18,18,4308377,1,1,39,39,4308553,3,1,1,-1,4308829,1,1,1,-1,4309024,2,2,24,24,4309330,3,1,38,38,4309499,3,1,39,39,4309698,2,2,24,24,4309956,1,1,39,39,4310111,1,1,38,38,4310320,3,1,1,-1,4310581,1,1,1,-1,4310794,2,2,27,27,4311105,3,1,38,38,4311299,2,2,27,27,4311533,1,1,38,38,4311700,2,2,26,26,4312006,3,1,35,35,4312178,2,2,26,26,4312417,1,1,35,35,4312604,3,1,1,-1,4312834,1,1,1,-1,4313102,3,1,1,-1,4313476,1,1,1,-1,4313740,2,2,30,30,4314048,3,1,32,32,4314214,2,2,30,30,4314419,1,1,32,32,4314617,2,2,29,29,4314869,3,1,31,31,4315037,2,2,29,29,4315267,1,1,31,31,4315448,3,1,1,-1,4315724,1,1,1,-1,4315946,2,2,35,35,4316281,3,1,31,31,4316432,2,2,35,35,4316692,1,1,31,31,4316859,2,2,33,33,4317169,3,1,29,29,4317364,2,2,33,33,4317602,1,1,29,29,4317806,3,1,1,-1,4318063,1,1,1,-1,4318352,3,1,1,-1,4318760,1,1,1,-1,4319044,3,1,1,-1,4319485,1,1,1,-1,4319741,2,2,37,37,4320120,3,1,38,38,4320325,2,2,37,37,4320536,1,1,38,38,4320711,3,1,1,-1,4320964,1,1,1,-1,4321236,2,2,30,30,4321749,3,1,39,39,4321932,2,2,30,30,4322167,1,1,39,39,4322366,3,1,1,-1,4322595,1,1,1,-1,4322849,3,2,-1,-1,4323291,3,1,1,-1,4323535,1,1,1,-1,4323761,2,2,39,39,4324199,3,1,29,29,4324369,2,2,39,39,4324570,1,1,29,29,4324771,3,1,1,-1,4325077,1,1,1,-1,4325292,2,2,37,37,4325621,3,1,36,36,4325792,2,2,37,37,4325995,1,1,36,36,4326169,3,1,1,-1,4326415,1,1,1,-1,4326608,3,1,1,-1,4327120,1,1,1,-1,4327349,2,2,31,31,4327656,3,1,38,38,4327843,2,2,31,31,4328100,1,1,38,38,4328267,3,1,1,-1,4328517,1,1,1,-1,4328709,2,2,26,26,4329193,3,1,32,32,4329365,2,2,26,26,4329593,1,1,32,32,4329769,3,1,1,-1,4330066,1,1,1,-1,4330276,2,2,24,24,4330638,3,1,31,31,4330825,2,2,24,24,4331049,1,1,31,31,4331222,3,1,1,-1,4331423,1,1,1,-1,4331635,2,2,22,22,4331944,3,1,29,29,4332115,2,2,22,22,4332339,1,1,29,29,4332521,3,1,1,-1,4332823,1,1,1,-1,4333055,2,2,20,20,4333393,3,1,34,34,4333567,2,2,20,20,4333766,1,1,34,34,4333954,2,2,22,22,4334223,3,1,35,35,4334385,2,2,22,22,4334632,1,1,35,35,4334818,3,1,1,-1,4335033,1,1,1,-1,4335203,2,2,23,23,4335581,3,1,39,39,4335780,2,2,23,23,4336015,1,1,39,39,4336222,3,1,1,-1,4336529,1,1,1,-1,4336765,3,1,1,-1,4337138,1,1,1,-1,4337375,3,1,1,-1,4337791,1,1,1,-1,4338053,2,2,11,11,4338403,3,1,28,28,4338567,2,2,11,11,4338775,1,1,28,28,4338936,2,2,9,9,4339249,3,1,27,27,4339422,2,2,9,9,4339626,1,1,27,27,4339798,3,1,1,-1,4340155,1,1,1,-1,4340361,2,2,2,2,4340934,3,1,24,24,4341112,2,2,2,2,4341348,1,1,24,24,4341548,3,1,1,-1,4341820,1,1,1,-1,4342034,2,2,3,3,4342428,3,1,30,30,4342606,2,2,3,3,4342838,1,1,30,30,4342984,2,2,2,2,4343257,3,1,29,29,4343444,2,2,2,2,4343686,1,1,29,29,4343896,3,1,1,-1,4344222,1,1,1,-1,4344442,2,2,4,4,4344776,3,1,37,37,4344967,2,2,4,4,4345212,1,1,37,37,4345355,2,2,2,2,4345780,3,1,38,38,4345994,2,2,2,2,4346231,1,1,38,38,4346428,3,1,1,-1,4346673,1,1,1,-1,4346844,2,2,10,10,4347194,2,2,8,8,4347395,3,1,38,38,4347617,2,2,8,8,4347853,2,2,10,10,4348092,1,1,38,38,4348315,3,1,1,-1,4348541,1,1,1,-1,4348776,3,1,1,-1,4349179,1,1,1,-1,4349417,2,2,8,8,4350011,3,1,30,30,4350251,2,2,8,8,4350481,1,1,30,30,4350660,3,1,1,-1,4350910,1,1,1,-1,4351094,3,1,1,-1,4351506,1,1,1,-1,4351732,2,2,13,13,4352044,2,2,14,14,4352468,3,1,22,22,4352671,2,2,14,14,4352875,2,2,13,13,4353065,1,1,22,22,4353289,2,2,13,13,4353582,3,1,20,20,4353749,2,2,13,13,4354005,1,1,20,20,4354270,3,1,1,-1,4354821,1,1,1,-1,4355031,3,1,1,-1,4355429,1,1,1,-1,4355701,2,2,7,7,4356025,3,1,18,18,4356210,2,2,7,7,4356424,1,1,18,18,4356615,3,1,1,-1,4356841,1,1,1,-1,4357041,3,1,1,-1,4357443,1,1,1,-1,4357686,3,1,1,-1,4358133,1,1,1,-1,4358353,2,2,6,6,4358771,3,1,14,14,4358979,2,2,6,6,4359213,1,1,14,14,4359413,2,2,8,8,4359761,3,1,13,13,4359958,2,2,8,8,4360186,1,1,13,13,4360370,3,1,1,-1,4360578,1,1,1,-1,4360829,2,2,12,12,4361141,3,1,13,13,4361313,2,2,12,12,4361510,1,1,13,13,4361685,2,2,13,13,4361962,3,1,14,14,4362193,2,2,13,13,4362437,1,1,14,14,4362595,3,1,1,-1,4362839,1,1,1,-1,4363019,2,2,10,10,4363342,3,1,12,12,4363512,2,2,10,10,4363755,1,1,12,12,4363929,3,1,1,-1,4364191,1,1,1,-1,4364396,2,2,14,14,4364815,3,1,10,10,4365007,2,2,14,14,4365210,1,1,10,10,4365386,3,1,1,-1,4365622,1,1,1,-1,4365810,2,2,12,12,4366203,3,1,4,4,4366380,2,2,12,12,4366600,1,1,4,4,4366784,3,1,1,-1,4367022,1,1,1,-1,4367293,2,2,18,18,4367694,3,1,3,3,4367879,2,2,18,18,4368103,1,1,3,3,4368284,3,1,1,-1,4368652,1,1,1,-1,4368858,2,2,6,6,4369222,3,1,4,4,4369377,2,2,6,6,4369600,1,1,4,4,4369771,3,1,1,-1,4370037,1,1,1,-1,4370271,2,2,5,5,4370599,3,1,8,8,4370787,2,2,5,5,4371028,1,1,8,8,4371201,2,2,2,2,4371571,3,1,9,9,4371740,2,2,2,2,4371972,1,1,9,9,4372186,3,1,1,-1,4372517,1,1,1,-1,4372730,2,2,17,17,4373011,2,2,16,16,4373199,3,1,12,12,4373402,2,2,17,17,4373636,2,2,16,16,4373805,1,1,12,12,4374148,3,1,1,-1,4374504,1,1,1,-1,4374735,2,2,17,17,4375068,3,1,10,10,4375242,2,2,17,17,4375468,1,1,10,10,4375650,3,1,1,-1,4375887,1,1,1,-1,4376098,2,2,19,19,4376506,3,1,7,7,4376663,2,2,19,19,4376895,1,1,7,7,4377079,2,2,17,17,4377424,3,1,6,6,4377583,2,2,17,17,4377806,1,1,6,6,4377983,3,1,1,-1,4378255,1,1,1,-1,4378477,2,2,23,23,4378762,3,1,8,8,4378948,2,2,23,23,4379174,1,1,8,8,4379382,3,1,1,-1,4379625,1,1,1,-1,4379852,2,2,30,30,4380339,3,1,5,5,4380528,2,2,30,30,4380770,1,1,5,5,4381015,3,1,1,-1,4381183,1,1,1,-1,4381483,2,2,34,34,4381856,3,1,4,4,4382013,3,1,3,3,4382230,2,2,34,34,4382489,1,1,4,4,4382660,1,1,3,3,4382842,3,1,1,-1,4383206,1,1,1,-1,4383420,2,2,34,34,4383723,3,1,7,7,4383900,2,2,34,34,4384128,1,1,7,7,4384303,3,1,1,-1,4384576,1,1,1,-1,4384806,2,2,39,39,4385255,3,1,8,8,4385481,2,2,39,39,4385671,1,1,8,8,4385870,3,1,1,-1,4386169,1,1,1,-1,4386371,2,2,35,35,4386843,3,1,11,11,4387025,2,2,35,35,4387260,1,1,11,11,4387420,2,2,37,37,4387746,3,1,13,13,4387935,2,2,37,37,4388148,1,1,13,13,4388340,3,1,1,-1,4388618,1,1,1,-1,4388853,2,2,31,31,4389283,3,1,9,9,4389469,2,2,31,31,4389678,1,1,9,9,4389862,3,1,1,-1,4390109,1,1,1,-1,4390378,3,1,1,-1,4390747,1,1,1,-1,4391017,2,2,27,27,4391389,3,1,11,11,4391568,2,2,27,27,4391776,1,1,11,11,4391948,2,2,28,28,4392285,3,1,14,14,4392477,2,2,28,28,4392715,1,1,14,14,4392897,3,1,1,-1,4393160,1,1,1,-1,4393365,2,2,30,30,4393709,2,2,31,31,4393871,3,1,15,15,4394106,2,2,31,31,4394352,2,2,30,30,4394501,1,1,15,15,4394740,3,1,1,-1,4395032,1,1,1,-1,4395280,2,2,25,25,4395601,3,1,18,18,4395753,2,2,25,25,4395991,1,1,18,18,4396181,3,1,1,-1,4396431,1,1,1,-1,4396727,2,2,24,24,4397180,3,1,15,15,4397366,2,2,24,24,4397604,1,1,15,15,4397745,2,2,22,22,4398143,3,1,14,14,4398316,2,2,22,22,4398515,1,1,14,14,4398685,3,1,1,-1,4398904,1,1,1,-1,4399181,2,2,21,21,4399499,3,1,12,12,4399648,3,1,11,11,4399843,2,2,21,21,4400056,1,1,12,12,4400227,1,1,11,11,4400438,3,1,1,-1,4400784,1,1,1,-1,4401030,2,2,21,21,4401379,2,2,19,19,4401606,3,1,17,17,4401839,2,2,19,19,4402073,2,2,21,21,4402315,1,1,17,17,4402541,2,2,20,20,4402786,3,1,18,18,4402971,2,2,20,20,4403201,1,1,18,18,4403399,3,1,1,-1,4403667,1,1,1,-1,4403922,2,2,18,18,4404321,3,1,20,20,4404501,2,2,18,18,4404703,1,1,20,20,4404868,2,2,21,21,4405209,3,1,23,23,4405403,2,2,21,21,4405619,1,1,23,23,4405824,3,1,1,-1,4406111,1,1,1,-1,4406328,3,1,1,-1,4406732,1,1,1,-1,4406982,3,1,1,-1,4407323,1,1,1,-1,4407581,2,2,29,29,4407990,3,1,23,23,4408161,2,2,29,29,4408396,1,1,23,23,4408558,3,1,1,-1,4408812,1,1,1,-1,4409065,2,2,28,28,4409371,3,1,21,21,4409550,3,1,19,19,4409761,2,2,28,28,4410015,1,1,19,19,4410204,1,1,21,21,4410466,3,1,1,-1,4410766,1,1,1,-1,4410998,3,1,1,-1,4411406,1,1,1,-1,4411654,2,2,34,34,4411916,2,2,33,33,4412085,3,1,18,18,4412296,2,2,34,34,4412648,2,2,33,33,4412841,1,1,18,18,4413071,3,1,1,-1,4413395,1,1,1,-1,4413646,2,2,36,36,4413962,2,2,38,38,4414208,2,2,39,39,4414412,3,1,21,21,4414639,2,2,39,39,4414870,2,2,38,38,4415040,2,2,36,36,4415343,1,1,21,21,4415589,3,1,1,-1,4415848,1,1,1,-1,4416102,2,2,37,37,4416538,2,2,35,35,4416746,3,1,24,24,4416975,2,2,35,35,4417200,2,2,37,37,4417422,1,1,24,24,4417639,3,1,1,-1,4417875,1,1,1,-1,4418088,2,2,34,34,4418421,3,1,26,26,4418627,2,2,34,34,4418830,1,1,26,26,4419019,2,2,39,39,4419390,3,1,25,25,4419588,2,2,39,39,4419813,1,1,25,25,4419992,3,2,-1,-1,4420228,3,1,1,-1,4420501,1,1,1,-1,4420708,3,1,1,-1,4421185,1,1,1,-1,4421441,2,2,35,35,4421865,3,1,16,16,4422050,2,2,35,35,4422274,1,1,16,16,4422428,2,2,38,38,4422768,3,1,17,17,4422966,2,2,39,39,4423204,1,1,17,17,4423418,3,1,17,17,4423797,2,2,39,39,4424038,2,2,38,38,4424197,1,1,17,17,4424467,3,1,1,-1,4425173,1,1,1,-1,4425415,2,2,36,36,4425695,3,1,10,10,4425864,2,2,36,36,4426093,1,1,10,10,4426262,2,2,39,39,4426572,3,1,11,11,4426749,2,2,39,39,4426994,1,1,11,11,4427190,3,1,1,-1,4427431,1,1,1,-1,4427639,2,2,34,34,4427936,3,1,9,9,4428132,2,2,34,34,4428346,1,1,9,9,4428491,2,2,35,35,4428782,3,1,7,7,4428953,2,2,35,35,4429146,1,1,7,7,4429347,3,1,1,-1,4429563,1,1,1,-1,4429764,2,2,32,32,4430075,3,1,5,5,4430253,2,2,32,32,4430474,1,1,5,5,4430661,2,2,34,34,4430954,3,1,2,2,4431183,2,2,34,34,4431402,1,1,2,2,4431598,3,1,1,-1,4431944,1,1,1,-1,4432136,2,2,25,25,4432441,2,2,24,24,4432583,3,1,7,7,4432795,2,2,25,25,4433033,2,2,24,24,4433191,1,1,7,7,4433474,3,1,1,-1,4433709,1,1,1,-1,4433905,2,2,26,26,4434245,3,1,5,5,4434439,2,2,26,26,4434653,1,1,5,5,4434862,3,1,1,-1,4435215,1,1,1,-1,4435448,2,2,19,19,4435806,3,1,5,5,4436007,2,2,19,19,4436239,1,1,5,5,4436430,3,1,1,-1,4436674,1,1,1,-1,4436946,3,1,1,-1,4437285,1,1,1,-1,4437517,2,2,12,12,4437861,3,1,8,8,4438027,3,1,6,6,4438232,2,2,12,12,4438453,1,1,6,6,4438642,1,1,8,8,4438853,2,2,13,13,4439116,3,1,9,9,4439300,3,1,7,7,4439566,2,2,13,13,4439808,1,1,7,7,4439974,1,1,9,9,4440216,3,1,1,-1,4440539,1,1,1,-1,4440741,2,2,5,5,4441145,3,1,2,2,4441325,2,2,5,5,4441553,1,1,2,2,4441734,3,1,1,-1,4442013,1,1,1,-1,4442220,2,2,4,4,4442518,3,1,6,6,4442682,3,1,8,8,4442916,2,2,4,4,4443163,1,1,8,8,4443309,1,1,6,6,4443535,2,2,3,3,4443834,3,1,5,5,4444016,2,2,3,3,4444217,1,1,5,5,4444427,3,1,1,-1,4444755,1,1,1,-1,4444961,2,2,2,2,4445293,3,1,13,13,4445475,3,1,15,15,4445707,2,2,2,2,4445947,1,1,15,15,4446107,1,1,13,13,4446332,2,2,3,3,4446597,2,2,6,6,4446864,3,1,12,12,4447065,2,2,6,6,4447298,2,2,3,3,4447605,1,1,12,12,4447807,3,1,1,-1,4448117,1,1,1,-1,4448286,2,2,3,3,4448607,2,2,2,2,4448778,3,1,18,18,4449008,2,2,3,3,4449215,2,2,2,2,4449376,1,1,18,18,4449641,3,1,1,-1,4449897,1,1,1,-1,4450117,2,2,9,9,4450435,3,1,20,20,4450629,2,2,9,9,4450829,1,1,20,20,4451010,2,2,11,11,4451281,3,1,22,22,4451467,2,2,11,11,4451704,1,1,22,22,4451874,3,1,1,-1,4452119,1,1,1,-1,4452316,2,2,13,13,4452598,3,1,18,18,4452770,2,2,13,13,4453006,1,1,18,18,4453170,2,2,16,16,4453480,3,1,15,15,4453657,2,2,16,16,4453882,1,1,15,15,4454060,2,2,11,11,4454454,3,1,15,15,4454636,2,2,11,11,4454861,1,1,15,15,4455047,3,1,1,-1,4455321,1,1,1,-1,4455554,2,2,18,18,4455956,3,1,12,12,4456135,2,2,18,18,4456357,1,1,12,12,4456525,3,1,1,-1,4456806,1,1,1,-1,4457071,2,2,24,24,4457391,3,1,12,12,4457584,2,2,24,24,4457815,1,1,12,12,4458050,3,1,1,-1,4458600,1,1,1,-1,4458839,3,1,1,-1,4459258,1,1,1,-1,4459478,2,2,26,26,4459801,3,1,20,20,4460005,2,2,26,26,4460196,1,1,20,20,4460378,2,2,27,27,4460676,3,1,21,21,4460907,2,2,27,27,4461205,1,1,21,21,4461432,3,1,1,-1,4461770,1,1,1,-1,4461991,2,2,29,29,4462315,3,1,16,16,4462505,2,2,29,29,4462717,1,1,16,16,4462881,2,2,30,30,4463158,3,1,17,17,4463348,2,2,30,30,4463601,1,1,17,17,4463738,3,1,1,-1,4464021,1,1,1,-1,4464232,2,2,31,31,4464622,3,1,12,12,4464810,2,2,31,31,4464992,1,1,12,12,4465214,3,1,1,-1,4465451,1,1,1,-1,4465690,3,1,1,-1,4466172,1,1,1,-1,4466454,3,1,1,-1,4467039,1,1,1,-1,4467216,2,2,31,31,4467699,2,2,34,34,4468012,3,1,33,33,4468371,2,2,34,34,4468637,2,2,31,31,4468929,1,1,33,33,4469123,3,1,1,-1,4469390,1,1,1,-1,4469659,3,1,1,-1,4469964,1,1,1,-1,4470213,2,2,28,28,4470540,2,2,26,26,4470711,2,2,27,27,4471285,2,2,26,26,4471425,3,1,35,35,4471699,2,2,28,28,4471940,2,2,27,27,4472115,1,1,35,35,4472340,3,1,1,-1,4472682,1,1,1,-1,4472925,2,2,24,24,4473375,3,1,24,24,4473559,2,2,24,24,4473766,1,1,24,24,4473933,2,2,27,27,4474267,3,1,28,28,4474455,2,2,27,27,4474689,1,1,28,28,4474851,3,1,1,-1,4475129,1,1,1,-1,4475335,2,2,23,23,4475664,3,1,30,30,4475867,3,1,32,32,4476076,2,2,23,23,4476311,1,1,32,32,4476458,1,1,30,30,4476667,3,1,1,-1,4476996,1,1,1,-1,4477210,2,2,18,18,4477569,3,1,35,35,4477721,2,2,18,18,4477944,1,1,35,35,4478115,2,2,21,21,4478417,3,1,36,36,4478624,2,2,21,21,4478855,1,1,36,36,4479028,2,2,19,19,4479404,3,1,32,32,4479610,2,2,19,19,4479821,1,1,32,32,4480020,3,1,1,-1,4480321,1,1,1,-1,4480559,2,2,15,15,4480870,3,1,29,29,4481038,2,2,15,15,4481253,1,1,29,29,4481438,2,2,16,16,4481686,3,1,30,30,4481865,2,2,16,16,4482086,1,1,30,30,4482266,3,1,1,-1,4482603,1,1,1,-1,4482842,2,2,10,10,4483219,3,1,25,25,4483416,2,2,10,10,4483630,1,1,25,25,4483816,2,2,13,13,4484121,3,1,26,26,4484296,2,2,13,13,4484566,1,1,26,26,4484748,3,1,1,-1,4485073,1,1,1,-1,4485243,2,2,10,10,4485562,3,1,34,34,4485805,2,2,10,10,4485997,1,1,34,34,4486158,2,2,11,11,4486423,3,1,35,35,4486607,2,2,11,11,4486834,1,1,35,35,4487017,3,1,1,-1,4487273,1,1,1,-1,4487450,3,1,1,-1,4487882,1,1,1,-1,4488152,2,2,3,3,4488530,3,1,35,35,4488699,2,2,3,3,4488920,1,1,35,35,4489104,3,1,1,-1,4489320,1,1,1,-1,4489595,3,1,1,-1,4489955,1,1,1,-1,4490225,3,1,1,-1,4490630,1,1,1,-1,4490871,3,2,-1,-1,4491526,3,1,1,-1,4492067,1,1,1,-1,4492332,2,2,34,34,4492668,2,2,33,33,4492806,3,1,17,17,4493038,2,2,34,34,4493255,2,2,33,33,4493418,1,1,17,17,4493652,3,1,1,-1,4493922,1,1,1,-1,4494127,2,2,31,31,4494403,3,1,21,21,4494567,3,1,19,19,4494769,2,2,31,31,4495044,1,1,19,19,4495253,1,1,21,21,4495479,2,2,31,31,4496131,3,1,24,24,4496645,2,2,31,31,4496928,1,1,24,24,4497129,3,1,1,-1,4497392,1,1,1,-1,4497588,2,2,24,24,4497894,3,1,18,18,4498063,2,2,24,24,4498275,1,1,18,18,4498423,2,2,25,25,4498684,3,1,19,19,4498853,2,2,25,25,4499093,1,1,19,19,4499260,3,1,1,-1,4499524,1,1,1,-1,4499726,2,2,26,26,4500081,3,1,15,15,4500283,2,2,26,26,4500480,1,1,15,15,4500652,2,2,28,28,4500950,2,2,25,25,4501221,3,1,13,13,4501458,2,2,25,25,4501735,2,2,28,28,4502054,1,1,13,13,4502276,3,1,1,-1,4502588,1,1,1,-1,4502786,3,1,1,-1,4503257,1,1,1,-1,4503526,2,2,36,36,4503881,3,1,15,15,4504070,2,2,36,36,4504314,1,1,15,15,4504490,2,2,32,32,4504832,3,1,12,12,4504985,2,2,32,32,4505230,1,1,12,12,4505397,3,1,1,-1,4505869,1,1,1,-1,4506116,2,2,37,37,4506523,3,1,9,9,4506692,2,2,37,37,4506933,1,1,9,9,4507095,3,1,1,-1,4507347,1,1,1,-1,4507568,2,2,29,29,4507920,3,1,7,7,4508077,2,2,29,29,4508322,1,1,7,7,4508468,2,2,32,32,4508755,3,1,6,6,4508936,2,2,32,32,4509174,1,1,6,6,4509353,3,1,1,-1,4509609,1,1,1,-1,4509809,2,2,24,24,4510121,3,1,6,6,4510302,2,2,24,24,4510489,1,1,6,6,4510660,2,2,26,26,4510944,3,1,4,4,4511143,2,2,26,26,4511323,1,1,4,4,4511520,3,1,1,-1,4511854,1,1,1,-1,4512084,2,2,18,18,4512393,3,1,7,7,4512566,2,2,18,18,4512775,1,1,7,7,4512971,2,2,15,15,4513310,3,1,3,3,4513475,2,2,15,15,4513711,1,1,3,3,4513889,3,1,1,-1,4514123,1,1,1,-1,4514365,2,2,12,12,4514639,3,1,7,7,4514832,2,2,12,12,4515053,1,1,7,7,4515219,2,2,13,13,4515599,3,1,2,2,4515860,2,2,13,13,4516121,1,1,2,2,4516328,3,1,1,-1,4516618,1,1,1,-1,4516820,2,2,7,7,4517156,3,1,4,4,4517558,2,2,7,7,4517798,1,1,4,4,4518003,3,1,1,-1,4518295,1,1,1,-1,4518479,2,2,11,11,4518846,3,1,9,9,4519014,2,2,11,11,4519227,1,1,9,9,4519425,3,1,1,-1,4519726,1,1,1,-1,4519938,3,1,1,-1,4520413,1,1,1,-1,4520612,2,2,10,10,4520942,3,1,18,18,4521127,2,2,10,10,4521390,1,1,18,18,4521551,3,1,1,-1,4522094,1,1,1,-1,4522301,2,2,5,5,4522673,3,1,27,27,4522874,2,2,5,5,4523110,1,1,27,27,4523284,3,1,1,-1,4523530,1,1,1,-1,4523705,2,2,10,10,4524105,3,1,28,28,4524335,2,2,10,10,4524604,1,1,28,28,4524772,3,1,1,-1,4525025,1,1,1,-1,4525215,2,2,5,5,4525529,3,1,32,32,4525728,2,2,5,5,4525960,1,1,32,32,4526165,3,1,1,-1,4526478,1,1,1,-1,4526673,2,2,3,3,4527024,3,1,39,39,4527215,2,2,3,3,4527453,1,1,39,39,4527623,3,1,1,-1,4527904,1,1,1,-1,4528095,2,2,11,11,4528590,3,1,39,39,4528809,2,2,11,11,4529053,1,1,39,39,4529224,3,1,1,-1,4529674,1,1,1,-1,4529876,2,2,23,23,4530349,3,1,26,26,4530550,2,2,23,23,4530761,1,1,26,26,4530924,2,2,25,25,4531271,3,1,30,30,4531435,2,2,25,25,4531656,1,1,30,30,4531860,3,1,1,-1,4532115,1,1,1,-1,4532285,2,2,27,27,4532586,3,1,32,32,4532776,2,2,27,27,4532971,1,1,32,32,4533144,2,2,31,31,4533501,3,1,31,31,4533683,2,2,31,31,4533876,1,1,31,31,4534052,3,1,1,-1,4534326,1,1,1,-1,4534503,2,2,31,31,4534806,3,1,35,35,4535002,2,2,31,31,4535237,1,1,35,35,4535380,2,2,35,35,4535820,3,1,36,36,4535997,2,2,35,35,4536237,1,1,36,36,4536450,3,1,1,-1,4536903,1,1,1,-1,4537210,3,1,1,-1,4537532,1,1,1,-1,4537819,3,2,-1,-1,4538361,3,1,1,-1,4538616,1,1,1,-1,4538847,2,2,35,35,4539141,3,1,13,13,4539308,3,1,14,14,4539521,2,2,35,35,4539750,1,1,14,14,4539916,1,1,13,13,4540100,2,2,37,37,4540462,3,1,10,10,4540643,2,2,37,37,4540820,1,1,10,10,4541007,2,2,30,30,4541412,3,1,13,13,4541597,2,2,30,30,4541852,1,1,13,13,4542033,3,1,1,-1,4542359,1,1,1,-1,4542567,2,2,25,25,4542821,3,1,16,16,4543012,3,1,17,17,4543210,2,2,25,25,4543496,1,1,17,17,4543671,1,1,16,16,4543872,3,1,1,-1,4544175,1,1,1,-1,4544383,2,2,22,22,4544687,3,1,15,15,4544887,2,2,22,22,4545091,1,1,15,15,4545245,2,2,20,20,4545570,3,1,13,13,4545762,2,2,20,20,4545973,1,1,13,13,4546166,3,1,1,-1,4546484,1,1,1,-1,4546682,2,2,32,32,4547019,3,1,22,22,4547197,2,2,32,32,4547416,1,1,22,22,4547645,2,2,1,-1,4549631,3,1,1,-1,4550248,1,1,1,-1,4550489,3,1,1,-1,4550957,1,1,1,-1,4551232,2,2,39,39,4551697,3,1,20,20,4551868,2,2,39,39,4552104,1,1,20,20,4552294,3,1,1,-1,4552749,1,1,1,-1,4552992,2,2,39,39,4553501,3,1,33,33,4553736,2,2,39,39,4553946,1,1,33,33,4554115,3,1,1,-1,4554382,1,1,1,-1,4554581,3,1,1,-1,4555001,1,1,1,-1,4555230,3,1,1,-1,4555534,1,1,1,-1,4555812,3,1,1,-1,4556391,1,1,1,-1,4556651,2,2,4,4,4557168,3,1,38,38,4557345,2,2,4,4,4557576,1,1,38,38,4557741,3,1,1,-1,4558055,1,1,1,-1,4558276,2,2,3,3,4558693,3,1,25,25,4558855,2,2,3,3,4559077,1,1,25,25,4559270,3,1,1,-1,4559619,1,1,1,-1,4559852,2,2,6,6,4560182,3,1,15,15,4560353,2,2,6,6,4560551,1,1,15,15,4560731,3,1,1,-1,4560995,1,1,1,-1,4561243,3,1,1,-1,4561762,1,1,1,-1,4561990,2,2,24,24,4562832,3,1,3,3,4563010,2,2,24,24,4563240,1,1,3,3,4563406,3,2,-1,-1,4563830,3,1,1,-1,4564154,1,1,1,-1,4564367,3,1,1,-1,4564743,1,1,1,-1,4565005,2,2,22,22,4565378,3,1,4,4,4565549,2,2,22,22,4565768,1,1,4,4,4565918,2,2,15,15,4566390,3,1,2,2,4566558,2,2,15,15,4566765,1,1,2,2,4566973,3,1,1,-1,4567386,1,1,1,-1,4567618,3,1,1,-1,4568026,1,1,1,-1,4568271,2,2,14,14,4568585,3,1,19,19,4568775,2,2,14,14,4569008,1,1,19,19,4569191,3,1,1,-1,4569679,1,1,1,-1,4569895,3,1,1,-1,4570203,1,1,1,-1,4570539,2,2,21,21,4570982,3,1,30,30,4571171,2,2,21,21,4571394,1,1,30,30,4571577,3,1,1,-1,4571802,1,1,1,-1,4572042,2,2,25,25,4572543,3,1,23,23,4572683,2,2,25,25,4572917,1,1,23,23,4573095,2,2,27,27,4573425,3,1,20,20,4573575,2,2,27,27,4573766,1,1,20,20,4573976,3,1,1,-1,4574241,1,1,1,-1,4574478,3,1,1,-1,4574986,1,1,1,-1,4575229,2,2,36,36,4575660,3,1,32,32,4575831,2,2,36,36,4576041,1,1,32,32,4576216,2,2,38,38,4576550,3,1,30,30,4576759,2,2,38,38,4576952,1,1,30,30,4577158,3,1,1,-1,4577400,1,1,1,-1,4577625,2,2,34,34,4577935,3,1,38,38,4578116,3,1,39,39,4578292,2,2,34,34,4578548,1,1,39,39,4578693,1,1,38,38,4578925,3,1,1,-1,4579323,1,1,1,-1,4579570,3,1,1,-1,4580285,1,1,1,-1,4580555,3,2,-1,-1,4581060,3,1,1,-1,4581341,1,1,1,-1,4581579,2,2,32,32,4581906,3,1,30,30,4582088,2,2,32,32,4582283,1,1,30,30,4582469,2,2,29,29,4582828,3,1,25,25,4583007,2,2,29,29,4583199,1,1,25,25,4583407,3,1,1,-1,4583704,1,1,1,-1,4583893,2,2,38,38,4584214,3,1,20,20,4584395,2,2,38,38,4584639,1,1,20,20,4584862,2,2,37,37,4585271,3,1,17,17,4585484,2,2,37,37,4585689,1,1,17,17,4585919,3,1,1,-1,4586453,1,1,1,-1,4586671,2,2,26,26,4587045,3,1,39,39,4587242,2,2,26,26,4587444,1,1,39,39,4587641,3,1,1,-1,4587979,1,1,1,-1,4588203,2,2,16,16,4588530,3,1,31,31,4588678,2,2,16,16,4588932,1,1,31,31,4589111,3,1,1,-1,4589475,1,1,1,-1,4589685,3,1,1,-1,4590164,1,1,1,-1,4590426,3,1,1,-1,4591279,1,1,1,-1,4591522,3,2,-1,-1,4591957,3,1,1,-1,4592241,1,1,1,-1,4592434,3,1,1,-1,4592951,1,1,1,-1,4593192,2,2,11,11,4593579,3,1,13,13,4593735,2,2,11,11,4593959,1,1,13,13,4594126,3,1,1,-1,4594431,1,1,1,-1,4594637,2,2,6,6,4594973,3,1,21,21,4595119,2,2,6,6,4595318,1,1,21,21,4595497,2,2,2,2,4595898,3,1,17,17,4596066,2,2,2,2,4596297,1,1,17,17,4596537,3,1,1,-1,4596920,1,1,1,-1,4597144,2,2,4,4,4597554,3,1,33,33,4597724,2,2,4,4,4597942,1,1,33,33,4598132,3,1,1,-1,4598403,1,1,1,-1,4598618,2,2,16,16,4598941,3,1,27,27,4599118,2,2,16,16,4599351,1,1,27,27,4599523,3,2,-1,-1,4600786,2,2,1,-1,4602249,2,2,1,-1,4602756,3,1,1,-1,4603097,1,1,1,-1,4603363,2,2,30,30,4603764,3,1,9,9,4603939,2,2,30,30,4604168,1,1,9,9,4604340,3,1,1,-1,4604614,1,1,1,-1,4605058,2,2,1,-1,4605772,1,1,1,-1,4606597,3,1,1,-1,4607233,3,1,1,-1,4607475,1,1,1,-1,4608052,3,1,1,20,4609327,2,2,1,1,4609534,1,1,1,20,4609709,3,1,-20,-1,4609876,2,2,1,1,4610103,1,1,-20,-1,4610279,3,1,1,-1,4610989,1,1,1,-1,4611259,3,2,-1,-1,4611942,3,1,1,-1,4612219,1,1,1,-1,4612384,2,2,16,16,4612721,3,1,26,26,4612903,2,2,16,16,4613104,1,1,26,26,4613286,1,2,-1,-1,4613798,3,1,1,20,4614452,2,2,1,1,4614689,1,1,1,20,4614828,3,1,-20,-1,4615008,2,2,1,1,4615234,1,1,-20,-1,4615410,1,1,1,-1,4615899,1,2,1,-1,4616117,3,1,1,-1,4616354,2,1,7,7,4617187,2,1,8,8,4617408,2,1,9,9,4617583,2,1,12,12,4617991,2,1,23,23,4618510,2,1,24,24,4618692,2,1,30,30,4619145,2,1,35,35,4619621,1,2,2,2,4620132,2,1,1,1,4620766,3,2,2,2,4620935,2,1,1,-1,4621111,2,1,2,2,4621648,2,1,6,6,4622189,2,1,7,7,4622377,2,1,8,8,4622576,2,1,9,9,4622782,2,1,12,12,4623146,2,1,12,12,4623343,2,1,11,11,4623627,2,1,12,12,4623830,2,1,15,15,4624433,2,1,16,16,4624614,2,1,17,17,4624811,2,1,19,19,4625123,2,1,21,21,4625413,2,1,23,23,4626549,2,1,24,24,4626706,2,1,25,25,4626943,2,1,26,26,4627109,2,1,28,28,4627551,2,1,29,29,4627747,2,1,30,30,4627933,2,1,31,31,4628125,2,1,35,35,4628637,2,1,36,36,4628811,2,1,37,37,4629040,2,1,39,39,4629317,2,1,1,-1,4629577,1,2,2,2,4629829,2,1,1,1,4630469,3,2,2,2,4630678,1,1,1,1,4630873,2,1,8,8,4631433,2,1,35,35,4632191,1,2,2,2,4632443,2,1,1,1,4633024,3,2,2,2,4633219,2,1,1,-1,4633415,2,1,8,8,4634093,2,1,15,15,4634610,2,1,23,23,4635166,2,1,28,28,4635587,2,1,30,30,4635773,2,1,35,35,4636241,2,1,39,39,4636613,2,1,1,-1,4636891,1,2,2,2,4637557,2,1,1,1,4637809,3,2,2,2,4637975,1,1,1,1,4638234,1,2,2,2,4638345,2,1,1,1,4638582,3,2,2,2,4638753,2,1,1,-1,4638987,2,1,23,23,4639771,2,1,35,35,4640291,2,1,39,39,4640649,2,1,1,-1,4640842,1,2,1,1,4641315,3,2,1,1,4641910,1,2,2,2,4642079,2,1,1,1,4642373,3,2,2,2,4642573,2,1,2,2,4642808,2,1,5,5,4643122,2,1,8,8,4643487,2,1,9,9,4643704,2,1,11,11,4643983,2,1,13,13,4644249,2,1,16,16,4644649,2,1,17,17,4644823,2,1,27,27,4645394,2,1,28,28,4645609,2,1,30,30,4645830,2,1,38,38,4646311,2,1,39,39,4646506,1,2,3,3,4646800,2,1,1,1,4647860,3,2,3,3,4648421,2,1,1,-1,4648970,2,1,4,4,4649509,2,1,5,5,4649705,2,1,8,8,4650189,2,1,9,9,4650386,2,1,10,10,4650615,2,1,11,11,4650786,2,1,13,13,4651119,2,1,16,16,4651527,2,1,17,17,4651708,2,1,19,19,4651967,2,1,26,26,4652457,2,1,27,27,4652660,2,1,28,28,4652839,2,1,30,30,4653176,2,1,31,31,4653345,2,1,36,36,4653911,2,1,38,38,4654178,2,1,39,39,4654393,2,1,1,-1,4654766,1,2,3,3,4655402,2,1,1,1,4655641,3,2,3,3,4655809,1,1,1,1,4656008,2,1,9,9,4656453,2,1,11,11,4656653,2,1,27,27,4657306,1,2,3,3,4657616,2,1,1,1,4658168,3,2,3,3,4658371,2,1,1,-1,4658622,2,1,2,2,4658997,2,1,5,5,4659345,2,1,8,8,4659719,2,1,9,9,4659944,2,1,11,11,4660128,2,1,19,19,4660609,2,1,27,27,4661179,2,1,1,-1,4661413,1,2,3,3,4661996,2,1,1,1,4662237,3,2,3,3,4662406,1,1,1,1,4662631,2,1,9,9,4663076,1,2,3,3,4663350,2,1,1,1,4663681,3,2,3,3,4663837,2,1,1,-1,4664051,2,1,5,5,4664779,2,1,9,9,4665164,2,1,11,11,4665355,2,1,1,-1,4665763,1,2,3,3,4666106,2,1,1,1,4666398,3,2,3,3,4666542,1,1,1,1,4666742,1,2,3,3,4666912,2,1,1,1,4667136,3,2,3,3,4667278,2,1,1,-1,4667489,2,1,5,5,4667892,2,1,1,-1,4668108,1,2,3,3,4668338,2,1,1,1,4668638,3,2,3,3,4668811,2,1,3,3,4669060,2,1,4,4,4669278,2,1,10,10,4669756,2,1,12,12,4669964,2,1,14,14,4670278,2,1,17,17,4670712,2,1,18,18,4670948,2,1,15,15,4671267,2,1,14,14,4671436,2,1,19,19,4671864,2,1,20,20,4672043,2,1,26,26,4672514,2,1,34,34,4672923,1,2,4,4,4673163,2,1,1,1,4673796,3,2,4,4,4674068,2,1,1,-1,4674270,2,1,3,3,4674825,2,1,2,2,4675045,2,1,8,8,4675511,2,1,10,10,4675845,2,1,11,11,4676034,2,1,12,12,4676207,2,1,14,14,4676589,2,1,15,15,4676790,2,1,16,16,4676995,2,1,17,17,4677192,2,1,19,19,4677501,2,1,20,20,4677680,2,1,24,24,4678104,2,1,26,26,4678552,2,1,27,27,4678724,2,1,32,32,4679198,2,1,33,33,4679405,2,1,34,34,4679576,2,1,36,36,4679869,2,1,39,39,4680221,2,1,1,-1,4680447,1,2,4,4,4680736,2,1,1,1,4681433,3,2,4,4,4681636,1,1,1,1,4681842,2,1,5,5,4682418,1,2,4,4,4682771,2,1,1,1,4683108,3,2,4,4,4683305,2,1,1,-1,4683496,2,1,5,5,4684128,2,1,10,10,4684665,2,1,11,11,4684831,2,1,12,12,4685041,2,1,19,19,4685606,2,1,33,33,4686111,2,1,1,-1,4686333,1,2,4,4,4686992,2,1,1,1,4687230,3,2,4,4,4687379,1,1,1,1,4687571,1,2,4,4,4687712,2,1,1,1,4687945,3,2,4,4,4688123,2,1,1,-1,4688334,2,1,10,10,4688975,2,1,19,19,4689517,2,1,33,33,4690318,2,1,1,-1,4690779,1,2,4,4,4691141,2,1,1,1,4691441,3,2,4,4,4691576,1,1,1,1,4691780,1,2,4,4,4691918,2,1,1,1,4692151,3,2,4,4,4692334,2,1,1,-1,4692589,2,1,10,10,4693072,2,1,1,-1,4693317,1,2,4,4,4693643,2,1,1,1,4693987,3,2,4,4,4694157,2,1,2,2,4694391,2,1,4,4,4694603,2,1,9,9,4695019,2,1,10,10,4695209,2,1,17,17,4695684,2,1,19,19,4696057,2,1,20,20,4696229,2,1,27,27,4696740,2,1,31,31,4697149,2,1,33,33,4697429,2,1,34,34,4697597,2,1,36,36,4697889,1,2,5,5,4698176,2,1,1,1,4699157,3,2,5,5,4699361,2,1,1,-1,4699586,2,1,4,4,4700172,2,1,5,5,4700386,2,1,6,6,4700582,2,1,9,9,4701029,2,1,10,10,4701217,2,1,12,12,4701587,2,1,13,13,4701789,2,1,14,14,4701992,2,1,17,17,4702409,2,1,19,19,4702881,2,1,21,21,4703081,2,1,21,21,4703305,2,1,20,20,4703610,2,1,21,21,4703777,2,1,25,25,4704494,2,1,26,26,4704716,2,1,27,27,4704895,2,1,29,29,4705201,2,1,31,31,4705564,2,1,33,33,4706020,2,1,34,34,4706223,2,1,35,35,4706447,2,1,36,36,4706630,2,1,37,37,4706831,2,1,1,-1,4707101,1,2,5,5,4707682,2,1,1,1,4708019,3,2,5,5,4708186,1,1,1,1,4708410,2,1,10,10,4708931,2,1,19,19,4709412,1,2,5,5,4709677,2,1,1,1,4710142,3,2,5,5,4710333,2,1,1,-1,4710520,2,1,4,4,4710958,2,1,2,2,4711177,2,1,9,9,4711717,2,1,10,10,4711909,2,1,17,17,4712431,2,1,19,19,4712793,2,1,20,20,4712970,2,1,26,26,4713471,2,1,27,27,4713640,2,1,36,36,4714103,2,1,1,-1,4714375,1,2,5,5,4715042,2,1,1,1,4715323,3,2,5,5,4715492,1,1,1,1,4715683,1,2,5,5,4715888,2,1,1,1,4716192,3,2,5,5,4716375,2,1,1,-1,4716581,2,1,9,9,4717089,2,1,27,27,4717784,2,1,36,36,4718206,2,1,1,-1,4718464,1,2,5,5,4719055,2,1,1,1,4719312,3,2,5,5,4719481,1,1,1,1,4719667,1,2,5,5,4719801,2,1,1,1,4720032,3,2,5,5,4720183,2,1,1,-1,4720454,2,1,9,9,4720941,2,1,1,-1,4721145,1,2,5,5,4721534,2,1,1,1,4721802,3,2,5,5,4721994,2,1,3,3,4722228,2,1,13,13,4722721,2,1,14,14,4722887,2,1,16,16,4723150,2,1,17,17,4723319,2,1,22,22,4723805,2,1,24,24,4724027,2,2,6,6,4724556,2,1,32,32,4724853,2,1,32,32,4725291,2,2,6,6,4725439,2,1,32,32,4725623,2,1,31,31,4725824,2,1,33,33,4726043,2,1,37,37,4726474,2,1,39,39,4726713,1,2,6,6,4726962,2,1,1,1,4727596,3,2,6,6,4727811,2,1,1,-1,4728005,2,1,8,8,4728713,2,1,9,9,4728923,2,1,10,10,4729139,2,1,11,11,4729325,2,1,5,5,4729706,2,1,13,13,4730342,2,1,14,14,4730526,2,1,15,15,4730728,2,1,16,16,4730949,2,1,17,17,4731157,2,1,18,18,4731364,2,1,19,19,4731578,2,1,20,20,4731785,2,1,22,22,4732220,2,1,23,23,4732398,2,1,24,24,4732568,2,1,29,29,4733033,2,1,31,31,4733446,2,1,32,32,4733619,2,1,33,33,4733857,2,1,35,35,4734287,2,1,37,37,4734535,2,1,39,39,4734817,2,1,1,-1,4735075,1,2,6,6,4735363,2,1,1,1,4736160,3,2,6,6,4736357,1,1,1,1,4736568,2,1,14,14,4737144,2,1,16,16,4737414,2,1,17,17,4737585,2,1,33,33,4738218,1,2,6,6,4738488,2,1,1,1,4739059,3,2,6,6,4739279,2,1,5,5,4739853,2,1,1,-1,4740111,2,1,7,7,4740473,2,1,14,14,4740978,2,1,16,16,4741231,2,1,17,17,4741386,2,1,22,22,4741814,2,1,23,23,4741997,2,1,29,29,4742553,2,1,31,31,4742943,2,1,32,32,4743119,2,1,32,32,4743288,2,1,37,37,4743751,2,1,32,32,4744086,2,1,33,33,4744392,2,1,1,-1,4744627,1,2,6,6,4745260,2,1,1,1,4745492,3,2,6,6,4745680,1,1,1,1,4745897,2,1,14,14,4746523,1,2,6,6,4746771,2,1,1,1,4747648,3,2,6,6,4747830,2,1,1,-1,4748057,2,1,3,3,4748613,2,1,4,4,4748781,2,1,14,14,4749420,2,1,31,31,4750030,2,1,33,33,4750236,2,1,1,-1,4750505,1,2,6,6,4751079,2,1,1,1,4751322,3,2,6,6,4751490,1,1,1,1,4751683,1,2,6,6,4751820,2,1,1,1,4752068,3,2,6,6,4752260,2,1,1,-1,4752509,2,1,31,31,4753244,2,1,1,-1,4753463,1,2,6,6,4754156,2,1,1,1,4754474,3,2,6,6,4754668,2,1,8,8,4755089,2,1,9,9,4755278,2,1,11,11,4755669,2,1,12,12,4756006,2,1,13,13,4756192,2,1,14,14,4756374,2,1,17,17,4757262,2,1,18,18,4757485,2,1,19,19,4757671,2,1,23,23,4758132,2,1,25,25,4758519,2,1,26,26,4758685,2,1,27,27,4758878,2,1,33,33,4759317,1,2,7,7,4759595,2,1,1,1,4760443,3,2,7,7,4760747,2,1,1,-1,4760949,2,1,3,3,4761452,2,1,5,5,4761830,2,1,7,7,4763364,2,1,8,8,4763562,2,1,9,9,4763747,2,1,10,10,4763973,2,1,11,11,4764135,2,1,12,12,4764337,2,1,13,13,4764526,2,1,14,14,4764716,2,1,17,17,4765129,2,1,18,18,4765332,2,1,19,19,4765527,2,1,23,23,4766004,2,1,24,24,4766183,2,1,25,25,4766389,2,1,26,26,4766582,2,1,27,27,4766815,2,1,31,31,4767265,2,1,32,32,4767440,2,1,33,33,4767617,2,1,36,36,4767955,2,1,1,-1,4768184,1,2,7,7,4768804,2,1,1,1,4769065,3,2,7,7,4769256,1,1,1,1,4769462,2,1,23,23,4770137,2,1,26,26,4770450,1,2,7,7,4771022,2,1,1,1,4771571,3,2,7,7,4771769,2,1,1,-1,4772192,2,1,17,17,4773004,2,1,18,18,4773170,2,1,23,23,4773719,2,1,25,25,4773900,2,1,25,25,4774109,2,1,24,24,4774446,2,1,25,25,4774634,2,1,26,26,4774841,2,1,36,36,4775336,2,1,1,-1,4775576,1,2,7,7,4776252,2,1,1,1,4776473,3,2,7,7,4776641,1,1,1,1,4776841,1,2,7,7,4776997,2,1,1,1,4777207,3,2,7,7,4777414,2,1,1,-1,4777640,2,1,23,23,4778283,2,1,24,24,4778461,2,1,25,25,4778660,2,1,36,36,4779257,2,1,1,-1,4779491,1,2,7,7,4780128,2,1,1,1,4780394,3,2,7,7,4780593,2,1,2,2,4780846,2,1,6,6,4781208,2,1,8,8,4781396,2,1,12,12,4781792,2,1,21,21,4782433,2,1,23,23,4782646,2,1,23,23,4782805,2,1,22,22,4783120,2,1,23,23,4783279,2,1,28,28,4784099,2,1,37,37,4784549,2,1,38,38,4784783,1,2,8,8,4785096,3,2,8,8,4785666,2,1,39,39,4785948,1,2,8,8,4786199,2,1,1,1,4786792,3,2,8,8,4786983,2,1,1,-1,4787189,2,1,2,2,4787600,2,1,5,5,4787971,2,1,6,6,4788137,2,1,8,8,4788445,2,1,9,9,4788642,2,1,12,12,4789439,2,1,13,13,4789626,2,1,15,15,4789905,2,1,18,18,4790308,2,1,20,20,4790727,2,1,21,21,4790953,2,1,22,22,4791155,2,1,23,23,4791309,2,1,27,27,4791905,2,1,28,28,4792111,2,1,29,29,4792296,2,1,31,31,4792647,2,1,32,32,4792825,2,1,35,35,4793205,2,1,37,37,4793466,2,1,39,39,4793748,2,1,1,-1,4793990,1,2,8,8,4794229,2,1,1,1,4794866,3,2,8,8,4795061,1,1,1,1,4795271,2,1,2,2,4795712,2,1,12,12,4796151,2,1,22,22,4796609,2,1,37,37,4797180,1,2,8,8,4797408,2,1,1,1,4798118,3,2,8,8,4798367,2,1,1,-1,4798768,2,1,2,2,4799205,2,1,3,3,4799383,2,1,6,6,4799658,2,1,9,9,4800024,2,1,12,12,4800483,2,1,18,18,4801021,2,1,20,20,4801230,2,1,22,22,4801582,2,1,23,23,4801754,2,1,35,35,4802275,2,1,37,37,4802540,2,1,1,-1,4802784,1,2,8,8,4803400,2,1,1,1,4803666,3,2,8,8,4803845,1,1,1,1,4804028,1,2,8,8,4804581,2,1,1,1,4805181,3,2,8,8,4805374,2,1,1,-1,4805566,2,1,9,9,4806051,2,1,1,-1,4806348,1,2,8,8,4806651,2,1,1,1,4806946,3,2,8,8,4807140,2,1,5,5,4807417,2,1,6,6,4807602,2,1,8,8,4807844,2,1,11,11,4808458,2,1,15,15,4808585,2,1,18,18,4809015,2,1,19,19,4809185,2,1,23,23,4809643,2,1,25,25,4809900,2,1,26,26,4810278,2,1,31,31,4810762,2,1,32,32,4810967,2,1,33,33,4811154,2,1,39,39,4811638,1,2,9,9,4812035,2,1,1,1,4812629,3,2,9,9,4812852,2,1,1,-1,4813044,2,1,2,2,4813680,2,1,4,4,4814071,2,1,5,5,4814273,2,1,6,6,4814448,2,1,7,7,4814662,2,1,8,8,4814850,2,1,11,11,4815364,2,1,13,13,4815568,2,1,15,15,4815916,2,1,16,16,4816115,2,1,18,18,4816488,2,1,19,19,4816701,2,1,20,20,4816868,2,1,23,23,4817340,2,1,25,25,4817615,2,1,26,26,4817806,2,1,30,30,4818260,2,1,31,31,4818458,2,1,32,32,4818666,2,1,33,33,4818845,2,1,37,37,4819338,2,1,39,39,4819588,2,1,1,-1,4819819,1,2,9,9,4820094,2,1,1,1,4820765,3,2,9,9,4820974,1,1,1,1,4821177,2,1,11,11,4821625,2,1,18,18,4822089,2,1,25,25,4822714,1,2,9,9,4822974,2,1,1,1,4823486,3,2,10,10,4823765,2,1,1,-1,4823915,2,1,1,-1,4824500,1,2,10,10,4824931,3,2,9,9,4825165,2,1,1,-1,4825343,2,1,6,6,4825913,2,1,11,11,4826325,2,1,16,16,4826716,2,1,18,18,4827161,2,1,23,23,4827417,2,1,25,25,4827726,2,1,26,26,4827897,2,1,33,33,4828420,2,1,37,37,4828696,2,1,1,-1,4828931,1,2,9,9,4829696,2,1,1,1,4829915,3,2,9,9,4830090,1,1,1,1,4830307,2,1,11,11,4830833,1,2,9,9,4831147,2,1,1,1,4831551,3,2,9,9,4831758,2,1,1,-1,4831954,2,1,6,6,4832639,2,1,11,11,4833010,2,1,16,16,4833373,2,1,26,26,4833869,2,1,33,33,4834242,2,1,1,-1,4834480,1,2,9,9,4835088,2,1,1,1,4835528,3,2,9,9,4835851,2,1,2,2,4836513,2,1,7,7,4836990,2,1,9,9,4837226,2,1,13,13,4837725,2,1,15,15,4837971,2,1,16,16,4838134,2,1,26,26,4838717,2,1,31,31,4839120,2,1,32,32,4839333,2,1,34,34,4839565,2,1,38,38,4839970,2,1,39,39,4840164,1,2,11,11,4840440,3,2,11,11,4841149,1,2,10,10,4841364,2,1,1,1,4841632,3,2,10,10,4841826,2,1,1,-1,4842058,2,1,2,2,4842644,2,1,4,4,4842843,2,1,7,7,4843321,2,1,8,8,4843499,2,1,9,9,4843694,2,1,11,11,4843971,2,1,13,13,4844207,2,1,15,15,4844540,2,1,16,16,4844719,2,1,23,23,4845361,2,1,24,24,4845555,2,1,25,25,4845756,2,1,26,26,4845930,2,1,27,27,4846146,2,1,28,28,4846537,2,1,30,30,4846955,2,1,31,31,4847129,2,1,32,32,4847315,2,1,34,34,4847652,2,1,38,38,4848113,2,1,39,39,4848326,2,1,1,-1,4848578,1,2,9,9,4849226,2,1,1,1,4849488,2,1,1,1,4850030,3,2,9,9,4850249,1,2,10,10,4850440,2,1,1,1,4850653,3,2,10,10,4850845,1,1,1,1,4851051,2,1,32,32,4851711,2,1,39,39,4852110,1,2,10,10,4852381,2,1,1,1,4852968,3,2,10,10,4853193,2,1,1,-1,4853380,2,1,13,13,4854190,2,1,26,26,4854821,2,1,32,32,4855144,2,1,39,39,4855640,2,1,1,-1,4855879,1,2,10,10,4856436,2,1,1,1,4856702,3,2,10,10,4856871,1,1,1,1,4857104,2,1,39,39,4857911,1,2,10,10,4858153,2,1,1,1,4858760,3,2,10,10,4858964,2,1,1,-1,4859214,2,1,32,32,4859881,2,1,-1,-1,4860318,2,1,39,39,4860702,2,1,-1,-1,4860863,2,1,1,-1,4861116,1,2,10,10,4861718,2,1,1,1,4862052,3,2,10,10,4862239,1,1,1,1,4862440,1,2,10,10,4862574,2,1,1,1,4862803,3,2,10,10,4863001,2,1,1,-1,4863249,2,1,39,39,4863853,2,1,1,-1,4864091,1,2,11,11,4864786,2,1,1,1,4865005,2,1,1,1,4865390,3,2,11,11,4865550,1,2,10,10,4865718,2,1,1,1,4865940,3,2,10,10,4866106,2,1,2,2,4866330,2,1,11,11,4866804,2,1,25,25,4867554,2,1,30,30,4867906,2,1,37,37,4868336,1,2,11,11,4868554,2,1,1,1,4870203,3,2,11,11,4870450,2,1,1,-1,4870682,2,1,4,4,4871288,2,1,6,6,4871705,2,1,7,7,4871889,2,1,8,8,4872073,2,1,9,9,4872282,2,1,11,11,4872763,2,1,12,12,4872925,2,1,13,13,4873106,2,1,15,15,4873429,2,1,17,17,4873670,2,1,20,20,4874117,2,1,23,23,4874590,2,1,24,24,4874762,2,1,25,25,4874965,2,1,26,26,4875130,2,1,28,28,4875609,2,1,30,30,4875846,2,1,33,33,4876292,2,1,36,36,4876626,2,1,37,37,4876799,2,1,1,-1,4877060,1,2,11,11,4877703,2,1,1,1,4877943,3,2,11,11,4878114,1,1,1,1,4878332,2,1,11,11,4878876,2,1,30,30,4879499,2,1,37,37,4879914,1,2,11,11,4880149,2,1,1,1,4880726,3,2,11,11,4880961,2,1,1,-1,4881276,2,1,3,3,4881752,2,1,11,11,4882153,2,1,15,15,4882460,2,1,20,20,4882934,2,1,25,25,4883456,2,1,28,28,4883727,2,1,30,30,4883959,2,1,36,36,4884406,2,1,37,37,4884584,2,1,1,-1,4884801,1,2,11,11,4885397,2,1,1,1,4885684,3,2,11,11,4885855,1,1,1,1,4886066,2,1,37,37,4886776,1,2,11,11,4887042,2,1,1,1,4887653,3,2,11,11,4887868,2,1,1,-1,4888245,2,1,2,2,4888799,2,1,30,30,4889463,2,1,36,36,4889886,2,1,37,37,4890031,2,1,1,-1,4890257,1,2,11,11,4890942,2,1,1,1,4891183,3,2,11,11,4891334,1,1,1,1,4891524,1,2,11,11,4891670,2,1,1,1,4891895,3,2,11,11,4892065,2,1,1,-1,4892312,2,1,30,30,4893096,2,1,1,-1,4893330,1,2,11,11,4893863,2,1,1,1,4894459,3,2,11,11,4894692,2,1,2,2,4894970,2,1,4,4,4895184,2,1,7,7,4895576,2,1,10,10,4895829,2,1,16,16,4896272,2,1,17,17,4896460,2,1,19,19,4896699,2,1,23,23,4897161,2,1,27,27,4897624,2,1,28,28,4897795,2,1,29,29,4897965,2,1,32,32,4898347,2,1,33,33,4898531,2,1,35,35,4898782,2,1,38,38,4899191,2,1,39,39,4899362,1,2,12,12,4899715,2,1,1,1,4900290,3,2,12,12,4900514,2,1,1,-1,4900706,2,1,2,2,4901215,2,1,3,3,4901404,2,1,4,4,4901578,2,1,7,7,4901975,2,1,8,8,4902179,2,1,9,9,4902383,2,1,10,10,4902537,2,1,13,13,4902989,2,1,14,14,4903170,2,1,16,16,4903616,2,1,17,17,4903784,2,1,19,19,4904029,2,1,19,19,4904235,2,1,18,18,4904963,2,1,19,19,4905180,2,1,21,21,4905451,2,1,23,23,4905845,2,1,25,25,4906051,2,1,27,27,4906401,2,1,28,28,4906612,2,1,29,29,4906779,2,1,32,32,4907208,2,1,33,33,4907402,2,1,34,34,4907615,2,1,35,35,4907794,2,1,36,36,4908020,2,1,38,38,4908376,2,1,39,39,4908600,2,1,36,36,4908916,2,1,1,-1,4909172,1,2,12,12,4909462,2,1,1,1,4910132,3,2,12,12,4910360,1,1,1,1,4910618,2,1,4,4,4911013,2,1,7,7,4911317,2,1,10,10,4911751,2,1,16,16,4912394,2,1,19,19,4912569,2,1,23,23,4912967,2,1,27,27,4913482,2,1,28,28,4913680,2,1,29,29,4913849,3,1,33,33,4914405,1,2,12,12,4914525,3,2,12,12,4915532,3,1,33,33,4915725,1,2,12,12,4916006,2,1,1,1,4917024,3,2,12,12,4917280,2,1,1,-1,4917479,2,1,4,4,4917996,2,1,5,5,4918276,2,1,7,7,4918675,2,1,10,10,4919083,2,1,14,14,4919592,2,1,16,16,4919775,2,1,19,19,4920242,2,1,23,23,4920678,2,1,27,27,4921183,2,1,28,28,4921349,2,1,29,29,4921522,2,1,33,33,4921941,2,1,36,36,4922236,2,1,1,-1,4922479,1,2,12,12,4923116,2,1,1,1,4923397,3,2,12,12,4923593,1,1,1,1,4923802,2,1,33,33,4924388,1,2,12,12,4924646,2,1,1,1,4925154,3,2,12,12,4925364,2,1,1,-1,4925567,2,1,5,5,4926190,2,1,7,7,4926395,2,1,14,14,4926958,2,1,19,19,4927400,2,1,28,28,4927909,2,1,33,33,4928356,2,1,1,-1,4928773,1,2,12,12,4929292,2,1,1,1,4929534,3,2,12,12,4929706,2,1,2,2,4929980,2,1,3,3,4930154,2,1,5,5,4930434,2,1,8,8,4930888,2,1,11,11,4931436,2,1,15,15,4931814,2,1,17,17,4932081,2,1,19,19,4932436,2,1,20,20,4932627,2,1,23,23,4933010,2,1,26,26,4933364,2,1,27,27,4933536,2,1,34,34,4934165,2,1,38,38,4934463,2,1,37,37,4934858,1,2,13,13,4935161,2,1,1,1,4935792,3,2,13,13,4936017,2,1,1,-1,4936215,2,1,3,3,4936740,2,1,5,5,4937030,2,1,6,6,4937212,2,1,8,8,4937545,2,1,9,9,4937744,2,1,11,11,4938062,2,1,12,12,4938232,2,1,15,15,4938694,2,1,17,17,4939004,2,1,19,19,4939615,2,1,20,20,4939787,2,1,23,23,4940294,2,1,25,25,4940697,2,1,26,26,4940886,2,1,27,27,4941079,2,1,28,28,4941278,2,1,34,34,4941699,2,1,36,36,4942074,2,1,37,37,4942273,2,1,38,38,4942468,2,1,39,39,4942704,2,1,1,-1,4942974,1,2,13,13,4943291,2,1,1,1,4944230,3,2,13,13,4944488,1,1,1,1,4944733,2,1,11,11,4945162,2,1,17,17,4945528,2,1,19,19,4945733,2,1,37,37,4946455,1,2,13,13,4946709,2,1,1,1,4947404,3,2,13,13,4947604,2,1,1,-1,4947808,2,1,2,2,4948283,2,1,6,6,4948502,2,1,8,8,4948999,2,1,6,6,4949149,2,1,5,5,4949391,2,1,11,11,4949859,2,1,17,17,4950278,2,1,19,19,4950540,2,1,20,20,4950743,2,1,37,37,4951353,2,1,38,38,4951531,2,1,1,-1,4951912,1,2,13,13,4952153,2,1,1,1,4952756,3,2,13,13,4952947,1,1,1,1,4953151,1,2,13,13,4953841,2,1,1,1,4954343,3,2,13,13,4954544,2,1,1,-1,4954711,2,1,17,17,4955495,2,1,19,19,4955772,2,1,1,-1,4956206,1,2,13,13,4956745,2,1,1,1,4956950,3,2,13,13,4957131,2,1,3,3,4957407,2,1,4,4,4957570,2,1,10,10,4958048,2,1,17,17,4958479,2,1,21,21,4958791,2,1,20,20,4959230,2,1,21,21,4959405,2,1,23,23,4959643,2,1,26,26,4960040,2,1,27,27,4960213,2,1,33,33,4960664,2,1,36,36,4960966,1,2,14,14,4961232,2,1,1,1,4961789,3,2,14,14,4961985,2,1,1,-1,4962181,2,1,2,2,4962657,2,1,4,4,4962895,2,1,6,6,4963229,2,1,7,7,4963425,2,1,10,10,4963706,2,1,16,16,4964158,2,1,17,17,4964348,2,1,20,20,4964804,2,1,21,21,4965001,2,1,22,22,4965209,2,1,23,23,4965417,2,1,25,25,4965621,2,1,26,26,4965842,2,1,27,27,4966119,2,1,28,28,4966331,2,1,24,24,4966755,2,1,30,30,4967260,2,1,32,32,4967532,2,1,33,33,4967724,2,1,34,34,4967938,2,1,36,36,4968484,2,1,37,37,4968689,2,1,38,38,4968933,2,1,39,39,4969108,2,1,1,-1,4969368,1,2,14,14,4969686,2,1,1,1,4970353,3,2,14,14,4970553,1,1,1,1,4970777,1,2,14,14,4971788,2,1,1,1,4972436,3,2,14,14,4972628,2,1,1,-1,4972836,2,1,3,3,4973344,2,1,6,6,4973586,2,1,17,17,4974206,2,1,23,23,4974640,2,1,24,24,4974787,2,1,30,30,4975244,2,1,32,32,4975478,2,1,37,37,4975954,2,1,39,39,4976164,2,1,1,-1,4976404,1,2,14,14,4977396,2,1,1,1,4977626,3,2,14,14,4977786,1,1,1,1,4977996,1,2,14,14,4978142,2,1,1,1,4978374,3,2,14,14,4978659,1,2,14,14,4979828,2,1,1,1,4980033,3,2,14,14,4980174,1,1,1,1,4980374,1,2,14,14,4980512,2,1,1,1,4980756,3,2,14,14,4980950,2,1,1,-1,4981211,2,1,39,39,4981876,2,1,1,-1,4982142,1,2,14,14,4982703,2,1,1,1,4982975,3,2,14,14,4983184,2,1,8,8,4983698,2,1,11,11,4984168,2,1,12,12,4984371,2,1,15,15,4985074,2,1,18,18,4985316,2,1,22,22,4985710,2,1,23,23,4985894,2,1,32,32,4986377,2,1,33,33,4986556,2,1,37,37,4986981,2,1,37,37,4987161,2,1,38,38,4987486,2,1,37,37,4987676,2,1,36,36,4987881,1,2,15,15,4988166,2,1,1,1,4988717,3,2,15,15,4988914,2,1,1,-1,4989120,2,1,5,5,4989682,2,1,6,6,4989910,2,1,8,8,4990344,2,1,9,9,4990527,2,1,10,10,4990718,2,1,11,11,4990890,2,1,12,12,4991123,2,1,13,13,4991346,2,1,14,14,4991570,2,1,15,15,4991782,2,1,15,15,4991985,2,1,17,17,4992211,2,1,16,16,4992692,2,1,15,15,4992889,2,1,18,18,4993175,2,1,20,20,4993811,2,1,22,22,4994017,2,1,24,24,4994256,2,1,24,24,4994428,2,1,23,23,4994722,2,1,24,24,4994910,2,1,27,27,4995349,2,1,28,28,4995504,2,1,32,32,4995913,2,1,33,33,4996085,2,1,36,36,4996535,2,1,37,37,4996702,2,1,38,38,4996907,2,1,1,-1,4997178,1,2,15,15,4997490,2,1,1,1,4998158,3,2,15,15,4998345,1,1,1,1,4998564,2,1,15,15,4999070,2,1,33,33,4999686,1,2,15,15,4999915,2,1,1,1,5000429,3,2,15,15,5000650,2,1,1,-1,5000873,2,1,2,2,5001274,2,1,4,4,5001482,2,1,6,6,5001814,2,1,9,9,5002138,2,1,12,12,5002509,2,1,13,13,5002705,2,1,14,14,5002888,2,1,15,15,5003093,2,1,17,17,5003467,2,1,24,24,5003958,2,1,28,28,5004278,2,1,32,32,5004679,2,1,33,33,5004855,2,1,37,37,5005196,2,1,1,-1,5005452,1,2,15,15,5005736,2,1,1,1,5006444,3,2,15,15,5006655,1,1,1,1,5006876,2,1,15,15,5007450,2,1,33,33,5008317,1,2,15,15,5008603,2,1,1,1,5009109,3,2,15,15,5009295,2,1,1,-1,5009492,2,1,6,6,5010170,2,1,9,9,5010446,2,1,13,13,5010895,2,1,14,14,5011084,2,1,15,15,5011299,2,1,24,24,5011767,2,1,33,33,5012224,2,1,37,37,5012550,2,1,1,-1,5012792,1,2,15,15,5013070,2,1,1,1,5013631,3,2,15,15,5013822,1,1,1,1,5014041,2,1,33,33,5014662,1,2,15,15,5014941,2,1,1,1,5015450,3,2,15,15,5015682,2,1,1,-1,5015891,2,1,6,6,5016520,2,1,9,9,5016759,2,1,13,13,5017128,2,1,33,33,5017910,2,1,37,37,5018185,2,1,1,-1,5018418,1,2,15,15,5018691,2,1,1,1,5019316,3,2,15,15,5019538,2,1,2,2,5019814,2,1,3,3,5020024,2,1,4,4,5020191,2,1,8,8,5020637,2,1,9,9,5020836,2,1,10,10,5021005,2,1,12,12,5021386,2,1,14,14,5021638,2,1,16,16,5021884,2,1,25,25,5022495,2,1,30,30,5022933,2,1,31,31,5023112,2,1,33,33,5023383,1,2,16,16,5023676,2,1,1,1,5024302,3,2,16,16,5024527,2,1,1,-1,5024763,2,1,2,2,5025254,2,1,4,4,5025461,2,1,6,6,5025866,2,1,7,7,5026054,2,1,8,8,5026260,2,1,9,9,5026496,2,1,10,10,5026674,2,1,12,12,5027116,2,1,13,13,5027311,2,1,14,14,5027515,2,1,15,15,5027731,2,1,16,16,5027967,2,1,17,17,5028173,2,1,18,18,5028378,2,1,19,19,5028616,2,1,22,22,5029050,2,1,24,24,5029497,2,1,25,25,5029662,2,1,28,28,5030136,2,1,30,30,5030526,2,1,31,31,5030728,2,1,32,32,5030938,2,1,33,33,5031121,2,1,36,36,5031575,2,1,1,-1,5031835,1,2,16,16,5032154,2,1,1,1,5032737,3,2,16,16,5032966,1,1,1,1,5033175,2,1,4,4,5033599,2,1,8,8,5033907,2,1,17,17,5034389,2,1,16,16,5034963,2,1,30,30,5035450,1,2,16,16,5035684,2,1,1,1,5036224,3,2,16,16,5036458,2,1,1,-1,5036664,2,1,3,3,5037181,2,1,4,4,5037367,2,1,8,8,5037887,2,1,12,12,5038199,2,1,16,16,5038700,2,1,25,25,5039272,2,1,30,30,5039696,2,1,32,32,5039933,2,1,36,36,5040346,2,1,1,-1,5040661,1,2,16,16,5041241,2,1,1,1,5041482,3,2,16,16,5041659,1,1,1,1,5041893,2,1,8,8,5042397,1,2,16,16,5042633,2,1,1,1,5042956,3,2,16,16,5043179,2,1,1,-1,5043413,2,1,4,4,5043887,2,1,3,3,5044069,2,1,8,8,5044476,2,1,11,11,5044806,2,1,12,12,5045284,2,1,11,11,5045471,2,1,25,25,5046041,2,1,32,32,5046454,2,1,36,36,5046782,2,1,1,-1,5047002,1,2,16,16,5047635,2,1,1,1,5047865,3,2,16,16,5048018,1,1,1,1,5048244,2,1,8,8,5048653,1,2,16,16,5048919,2,1,1,1,5049291,3,2,16,16,5049632,2,1,1,-1,5049859,2,1,3,3,5050454,2,1,8,8,5050789,2,1,25,25,5051366,2,1,1,-1,5051580,1,2,16,16,5052163,2,1,1,1,5052436,3,2,16,16,5052623,2,1,2,2,5052834,2,1,9,9,5053211,2,1,18,18,5053672,2,1,23,23,5054052,2,1,29,29,5054526,2,1,32,32,5054880,2,1,35,35,5055243,2,1,39,39,5055675,1,2,17,17,5055929,2,1,1,1,5056697,3,2,17,17,5056907,2,1,1,-1,5057374,2,1,3,3,5057776,2,1,8,8,5058202,2,1,10,10,5058424,2,1,9,9,5058678,2,1,8,8,5058887,2,1,13,13,5059316,2,1,17,17,5059681,2,1,18,18,5059858,2,1,20,20,5060171,2,1,22,22,5060574,2,1,23,23,5060751,2,1,29,29,5061214,2,1,32,32,5061603,2,1,33,33,5061783,2,1,35,35,5062063,2,1,38,38,5062546,2,1,39,39,5062717,2,1,1,-1,5062974,1,2,17,17,5063673,2,1,1,1,5064029,3,2,17,17,5064237,1,1,1,1,5064450,2,1,23,23,5065060,2,1,29,29,5065537,2,1,32,32,5065812,2,1,35,35,5066123,1,2,17,17,5066387,2,1,1,1,5067052,3,2,17,17,5067290,2,1,1,-1,5067526,2,1,2,2,5068051,2,1,9,9,5068475,2,1,10,10,5068677,2,1,17,17,5069185,2,1,20,20,5069427,2,1,23,23,5069760,2,1,29,29,5070287,2,1,32,32,5070525,2,1,35,35,5070827,2,1,38,38,5071169,2,1,1,-1,5071416,1,2,17,17,5072028,2,1,1,1,5072264,3,2,17,17,5072420,1,1,1,1,5072643,2,1,29,29,5073326,1,2,17,17,5073587,2,1,1,1,5074080,3,2,17,17,5074297,2,1,1,-1,5074519,2,1,10,10,5075222,2,1,17,17,5075627,2,1,20,20,5075866,2,1,29,29,5076541,2,1,35,35,5076984,2,1,38,38,5077258,2,1,1,-1,5077519,1,2,17,17,5078126,2,1,1,1,5078343,3,2,17,17,5078498,1,1,1,1,5078718,1,2,17,17,5078840,2,1,1,1,5079079,3,2,17,17,5079233,2,1,1,-1,5079488,2,1,20,20,5080235,2,1,35,35,5080827,2,1,38,38,5081087,2,1,1,-1,5081385,1,2,17,17,5081696,2,1,1,1,5082340,3,2,17,17,5082651,2,1,3,3,5082917,2,1,4,4,5083087,2,1,9,9,5083503,2,1,18,18,5083969,2,1,20,20,5084313,2,1,21,21,5084515,2,1,22,22,5084682,2,1,25,25,5085122,2,1,27,27,5085400,2,1,27,27,5085914,2,1,28,28,5086086,2,1,30,30,5087306,2,1,31,31,5087506,2,1,32,32,5087701,2,1,34,34,5088209,2,1,37,37,5088733,2,1,37,37,5088786,2,1,36,36,5089228,2,1,37,37,5089395,1,2,18,18,5089736,2,1,1,1,5090342,3,2,18,18,5090531,2,1,1,-1,5090735,2,1,4,4,5091177,2,1,9,9,5091906,2,1,11,11,5091986,2,1,13,13,5092168,2,1,17,17,5092766,2,1,18,18,5092955,2,1,19,19,5093186,2,1,20,20,5093368,2,1,21,21,5093596,2,1,22,22,5093785,2,1,24,24,5094239,2,1,25,25,5094426,2,1,27,27,5094791,2,1,28,28,5094961,2,1,29,29,5095194,2,1,30,30,5095398,2,1,31,31,5095615,2,1,32,32,5095815,2,1,34,34,5096351,2,1,35,35,5096528,2,1,36,36,5096750,2,1,37,37,5096961,2,1,39,39,5097295,2,1,1,-1,5097570,1,2,18,18,5097849,2,1,1,1,5098993,3,2,18,18,5100522,1,1,1,1,5100731,2,1,4,4,5101119,2,1,30,30,5101815,2,1,36,36,5102203,1,2,18,18,5102466,2,1,1,1,5102984,3,2,18,18,5103211,2,1,1,-1,5103451,2,1,4,4,5103939,2,1,9,9,5104328,2,1,11,11,5104565,2,1,17,17,5105060,2,1,18,18,5105229,2,1,20,20,5105489,2,1,25,25,5105964,2,1,30,30,5106307,2,1,32,32,5106519,2,1,36,36,5106952,2,1,1,-1,5107253,1,2,18,18,5107857,2,1,1,1,5108099,3,2,18,18,5108321,1,1,1,1,5108549,1,2,18,18,5109406,2,1,1,1,5109630,3,2,18,18,5109846,2,1,1,-1,5110031,2,1,3,3,5110508,2,1,11,11,5110919,2,1,18,18,5111308,2,1,17,17,5111638,2,1,32,32,5112238,2,1,1,-1,5112553,1,2,18,18,5113294,2,1,1,1,5113579,3,2,18,18,5113820,2,1,1,-1,5114276,2,1,1,-1,5114615,1,1,1,1,5115332,1,2,18,18,5115532,2,1,1,1,5115787,3,2,18,18,5115957,2,1,1,-1,5116194,2,1,32,32,5116771,2,1,1,-1,5117071,1,2,18,18,5117794,2,1,1,1,5118009,3,2,18,18,5118180,2,1,10,10,5118700,2,1,13,13,5118904,2,1,16,16,5119233,2,1,23,23,5119751,2,1,26,26,5120165,2,1,27,27,5120317,2,1,33,33,5120743,2,1,38,38,5121106,1,2,19,19,5121360,2,1,1,1,5122053,3,2,19,19,5122331,2,1,1,-1,5122562,2,1,2,2,5123182,2,1,3,3,5123375,2,1,4,4,5123591,2,1,9,9,5123993,2,1,10,10,5124167,2,1,12,12,5124463,2,1,13,13,5124675,2,1,14,14,5124847,2,1,16,16,5125177,2,1,23,23,5125653,2,1,25,25,5126104,2,1,26,26,5126306,2,1,27,27,5126499,2,1,28,28,5126708,2,1,33,33,5127170,2,1,38,38,5127659,2,1,1,-1,5127887,1,2,19,19,5128164,2,1,1,1,5128876,3,2,19,19,5129089,1,1,1,1,5129315,2,1,10,10,5129787,2,1,23,23,5130332,2,1,27,27,5130602,2,1,33,33,5131045,1,2,19,19,5131318,2,1,1,1,5131835,3,2,19,19,5132035,2,1,1,-1,5132239,2,1,9,9,5132990,2,1,10,10,5133192,2,1,12,12,5133460,2,1,14,14,5133737,2,1,23,23,5134224,2,1,25,25,5134423,2,1,27,27,5134756,2,1,28,28,5134921,2,1,33,33,5135373,2,1,38,38,5135782,2,1,1,-1,5136026,1,2,19,19,5136280,2,1,1,1,5136931,3,2,19,19,5137171,1,1,1,1,5137366,2,1,10,10,5137940,1,2,19,19,5138198,2,1,1,1,5138608,3,2,19,19,5138926,2,1,1,-1,5139133,2,1,10,10,5139845,2,1,12,12,5140048,2,1,14,14,5140275,2,1,23,23,5140817,2,1,27,27,5141184,2,1,28,28,5141343,2,1,1,-1,5141583,1,2,19,19,5142230,2,1,1,1,5142470,3,2,19,19,5142630,1,1,1,1,5142844,2,1,10,10,5143314,1,2,19,19,5143551,2,1,1,1,5144034,3,2,19,19,5144220,2,1,1,-1,5144432,2,1,10,10,5144884,2,1,23,23,5145545,2,1,29,29,5145868,2,1,1,-1,5146123,2,1,29,29,5146574,2,1,28,28,5146919,1,2,19,19,5147218,2,1,1,1,5147860,3,2,19,19,5148084,2,1,4,4,5148337,2,1,6,6,5148560,2,1,11,11,5149031,2,1,12,12,5149207,2,1,13,13,5149374,2,1,15,15,5149688,2,1,16,16,5149896,2,1,23,23,5150458,2,1,26,26,5150728,2,1,34,34,5151204,2,1,39,39,5151746,1,2,21,21,5151986,3,2,21,21,5152573,1,2,20,20,5152771,2,1,1,1,5153090,3,2,20,20,5153324,2,1,1,-1,5153757,2,1,2,2,5154195,2,1,4,4,5154412,2,1,6,6,5154806,2,1,8,8,5155254,2,1,10,10,5155686,2,1,11,11,5155898,2,1,13,13,5156195,2,1,13,13,5156313,2,1,12,12,5156583,2,1,13,13,5156786,2,1,15,15,5157469,2,1,16,16,5157674,2,1,17,17,5157856,2,1,22,22,5158314,2,1,23,23,5158487,2,1,25,25,5158818,2,1,26,26,5159015,2,1,27,27,5159199,2,1,29,29,5159605,2,1,31,31,5160013,2,1,32,32,5160202,2,1,34,34,5160657,2,1,35,35,5160841,2,1,37,37,5161076,2,1,36,36,5161489,2,1,39,39,5161806,2,1,1,-1,5162150,1,2,20,20,5162874,2,1,1,1,5163228,3,2,20,20,5163455,1,1,1,1,5163689,1,2,19,19,5164314,3,2,19,19,5164787,1,2,20,20,5164964,2,1,1,1,5165233,3,2,20,20,5165396,2,1,1,-1,5165591,2,1,3,3,5166098,2,1,11,11,5166557,2,1,12,12,5166745,2,1,13,13,5166926,2,1,15,15,5167359,2,1,16,16,5167542,2,1,23,23,5168003,2,1,23,23,5168171,2,1,22,22,5168531,2,1,23,23,5168716,2,1,32,32,5169192,2,1,35,35,5169499,2,1,39,39,5169873,2,1,1,-1,5170120,1,2,20,20,5170381,2,1,1,1,5171023,3,2,20,20,5171225,1,1,1,1,5171443,1,2,20,20,5171855,2,1,1,1,5172280,3,2,20,20,5172449,2,1,1,-1,5172653,2,1,3,3,5173259,2,1,12,12,5173741,2,1,1,-1,5174190,1,2,20,20,5174647,2,1,1,1,5174892,3,2,20,20,5175061,2,1,7,7,5175581,2,1,11,11,5176014,2,1,12,12,5176184,2,1,13,13,5176381,2,1,16,16,5176719,2,1,19,19,5177121,2,1,22,22,5177367,2,1,30,30,5177879,2,1,31,31,5178073,2,1,32,32,5178261,2,1,34,34,5178585,2,1,36,36,5178885,1,2,21,21,5179142,2,1,1,1,5180091,3,2,21,21,5180273,2,1,13,13,5181021,2,1,20,20,5181463,2,1,22,22,5181723,2,1,23,23,5181905,2,1,32,32,5182496,2,1,35,35,5182729,2,1,34,34,5183411,2,1,35,35,5183606,1,2,21,21,5183983,2,1,1,1,5184621,3,2,21,21,5184833,1,1,1,1,5185041,2,1,22,22,5185627,2,1,31,31,5186103,2,1,34,34,5186361,1,2,21,21,5186610,2,1,1,1,5187206,3,2,21,21,5187441,2,1,3,3,5188072,2,1,4,4,5188265,2,1,7,7,5188580,2,1,12,12,5189102,2,1,16,16,5189455,2,1,21,21,5189893,2,1,33,33,5190369,2,1,36,36,5190642,2,1,39,39,5191012,1,2,21,21,5191277,2,1,1,1,5191903,3,2,21,21,5192141,1,1,1,1,5192351,2,1,31,31,5192983,1,2,21,21,5193221,2,1,1,1,5193793,3,2,21,21,5194015,2,1,2,2,5194658,2,1,3,3,5194839,2,1,6,6,5195220,2,1,7,7,5195396,2,1,11,11,5195825,2,1,14,14,5196095,2,1,16,16,5196473,2,1,19,19,5196979,2,1,22,22,5197389,2,1,24,24,5197603,2,1,26,26,5198071,2,1,27,27,5198250,2,1,28,28,5198439,2,1,31,31,5199063,2,1,34,34,5199461,2,1,35,35,5199648,2,1,37,37,5200007,2,1,39,39,5200286,1,2,21,21,5200585,2,1,1,1,5201135,3,2,21,21,5201364,1,1,1,1,5201550,2,1,31,31,5202193,1,2,21,21,5202436,2,1,1,1,5203024,3,2,21,21,5203238,2,1,1,-1,5203446,2,1,15,15,5204111,2,1,31,31,5204826,2,1,31,31,5205014,2,1,30,30,5205266,2,1,31,31,5205435,2,1,38,38,5205930,2,1,1,-1,5206148,1,2,21,21,5206428,2,1,1,1,5207220,3,2,21,21,5207504,2,1,6,6,5207985,2,1,8,8,5208192,2,1,14,14,5208678,2,1,17,17,5209014,2,1,19,19,5209321,2,1,21,21,5209727,2,1,22,22,5209898,2,1,23,23,5210071,2,1,30,30,5210641,2,1,32,32,5210853,2,1,36,36,5211357,2,1,37,37,5211548,2,1,38,38,5211722,1,2,22,22,5212091,2,1,1,1,5212953,3,2,22,22,5213179,2,1,5,5,5213823,2,1,6,6,5214358,2,1,8,8,5214566,2,1,11,11,5214978,2,1,11,11,5215181,2,1,10,10,5215454,2,1,11,11,5215632,2,1,19,19,5216339,2,1,23,23,5216870,2,1,23,23,5217093,2,1,24,24,5217324,2,1,22,22,5217602,2,1,23,23,5217798,2,1,26,26,5218286,2,1,28,28,5218512,2,1,30,30,5218719,2,1,34,34,5219306,2,1,36,36,5219663,2,1,37,37,5219836,2,1,38,38,5220016,1,2,22,22,5220367,2,1,1,1,5221047,3,2,22,22,5221269,1,1,1,1,5221473,2,1,6,6,5221931,2,1,30,30,5222523,2,1,36,36,5222945,1,2,22,22,5223224,2,1,1,1,5223829,3,2,22,22,5224054,2,1,5,5,5224513,2,1,8,8,5224815,2,1,10,10,5225027,2,1,14,14,5225551,2,1,16,16,5225753,2,1,20,20,5226256,2,1,23,23,5226567,2,1,25,25,5226863,2,1,27,27,5227249,2,1,29,29,5227470,2,1,32,32,5227954,2,1,34,34,5228216,2,1,37,37,5228519,1,2,22,22,5228881,2,1,1,1,5229493,3,2,22,22,5229696,1,1,1,1,5229911,1,2,22,22,5230297,2,1,1,1,5230665,3,2,22,22,5230882,2,1,1,-1,5231100,2,1,4,4,5231541,2,1,6,6,5231783,2,1,7,7,5231977,2,1,17,17,5232569,2,1,21,21,5232870,2,1,30,30,5233321,2,1,36,36,5233719,2,1,1,-1,5234021,1,2,22,22,5234727,2,1,1,1,5234940,3,2,22,22,5235077,1,1,1,1,5235259,1,2,22,22,5235407,2,1,1,1,5235618,3,2,22,22,5235800,2,1,1,-1,5235986,2,1,21,21,5236538,2,1,36,36,5237095,2,1,1,-1,5237304,1,2,22,22,5237614,2,1,1,1,5238232,3,2,22,22,5238524,2,1,2,2,5238853,2,1,3,3,5239034,2,1,4,4,5239216,2,1,17,17,5239761,2,1,19,19,5239956,2,1,23,23,5240323,2,1,25,25,5240539,2,1,27,27,5240909,2,1,28,28,5241086,2,1,32,32,5241492,2,1,36,36,5241999,2,1,37,37,5242205,2,1,38,38,5242385,1,2,23,23,5242721,2,1,1,1,5243416,3,2,23,23,5243640,2,1,3,3,5244244,2,1,18,18,5244683,2,1,36,36,5245262,1,2,23,23,5245510,2,1,1,1,5246038,3,2,23,23,5246238,1,1,1,1,5246418,2,1,4,4,5246860,2,1,19,19,5247336,1,2,23,23,5247701,2,1,1,1,5248215,3,2,23,23,5248437,2,1,3,3,5248982,2,1,4,4,5249164,2,1,8,8,5249530,2,1,13,13,5249936,2,1,14,14,5250104,2,1,17,17,5250455,2,1,19,19,5250730,2,1,25,25,5251334,2,1,26,26,5251528,2,1,27,27,5251703,2,1,29,29,5252103,2,1,36,36,5252578,1,2,23,23,5252853,2,1,1,1,5253574,3,2,23,23,5253801,1,1,1,1,5254009,2,1,4,4,5254446,2,1,19,19,5254970,1,2,23,23,5255235,2,1,1,1,5255976,3,2,23,23,5256281,2,1,4,4,5256878,2,1,8,8,5257238,2,1,14,14,5257864,2,1,15,15,5258048,2,1,16,16,5258406,2,1,20,20,5258731,2,1,23,23,5259006,2,1,25,25,5259354,2,1,27,27,5259556,2,1,32,32,5260035,2,1,34,34,5260316,2,1,37,37,5260613,1,2,23,23,5260974,2,1,1,1,5261510,3,2,23,23,5261722,1,1,1,1,5261946,1,2,23,23,5262130,2,1,1,1,5262369,3,2,23,23,5262540,2,1,1,-1,5262870,2,1,2,2,5263464,2,1,10,10,5263864,2,1,12,12,5264088,2,1,19,19,5264565,2,1,28,28,5265062,2,1,31,31,5265313,2,1,38,38,5265799,2,1,1,-1,5266162,1,2,23,23,5266756,2,1,1,1,5267008,3,2,23,23,5267179,2,1,2,2,5267718,2,1,4,4,5267921,2,1,8,8,5268364,2,1,9,9,5268543,2,1,10,10,5268714,2,1,15,15,5269191,2,1,16,16,5269523,2,1,14,14,5269761,2,1,19,19,5270314,2,1,20,20,5270486,2,1,25,25,5270878,2,1,30,30,5271324,2,1,31,31,5271498,2,1,32,32,5271699,2,1,39,39,5272210,1,2,24,24,5272473,2,1,1,1,5273011,3,2,24,24,5273238,2,1,7,7,5273876,2,1,9,9,5274250,2,1,10,10,5274441,2,1,11,11,5274611,2,1,15,15,5275047,2,1,22,22,5275496,2,1,30,30,5276039,2,1,32,32,5276293,2,1,37,37,5276830,2,1,39,39,5277063,1,2,24,24,5277426,2,1,1,1,5278036,3,2,24,24,5278252,1,1,1,1,5278454,2,1,2,2,5278845,2,1,4,4,5279071,2,1,10,10,5279527,2,1,10,10,5279731,2,1,9,9,5280006,2,1,10,10,5280207,2,1,39,39,5281132,1,2,24,24,5281375,2,1,1,1,5281958,3,2,24,24,5282176,2,1,2,2,5282625,2,1,7,7,5283010,2,1,9,9,5283208,2,1,11,11,5283462,2,1,14,14,5284005,2,1,16,16,5284256,2,1,19,19,5284721,2,1,24,24,5285097,2,1,25,25,5285269,2,1,29,29,5285739,2,1,31,31,5285974,2,1,33,33,5286197,2,1,36,36,5286907,2,1,37,37,5287100,2,1,38,38,5287301,2,1,39,39,5287484,1,2,24,24,5287875,2,1,1,1,5288726,3,2,24,24,5288965,1,1,1,1,5289188,2,1,2,2,5289617,2,1,4,4,5290125,1,2,24,24,5290390,2,1,1,1,5291123,3,2,24,24,5291314,2,1,4,4,5291768,2,1,5,5,5291955,2,1,10,10,5292393,2,1,16,16,5292769,2,1,27,27,5293221,1,2,24,24,5293569,2,1,1,1,5294381,3,2,24,24,5294574,1,1,1,1,5294785,2,1,4,4,5295108,1,2,24,24,5295320,2,1,1,1,5295562,3,2,24,24,5295771,2,1,2,2,5296209,2,1,1,-1,5296439,2,1,4,4,5296862,2,1,8,8,5297158,2,1,20,20,5297970,2,1,23,23,5298255,2,1,28,28,5298646,2,1,1,-1,5298882,1,2,24,24,5299151,2,1,1,1,5299679,3,2,24,24,5299885,2,1,2,2,5300119,2,1,7,7,5300529,2,1,8,8,5300713,2,1,10,10,5300951,2,1,18,18,5301504,2,1,21,21,5301837,2,1,22,22,5302031,2,1,24,24,5302273,2,1,27,27,5302673,2,1,28,28,5302850,2,1,30,30,5303116,2,1,35,35,5303573,2,1,36,36,5303774,2,1,37,37,5303963,1,2,25,25,5304303,2,1,1,1,5304954,3,2,25,25,5305168,2,1,4,4,5305665,2,1,7,7,5305964,2,1,14,14,5306537,2,1,15,15,5306716,2,1,30,30,5307261,2,1,36,36,5307675,1,2,25,25,5307948,2,1,1,1,5308522,3,2,25,25,5308726,1,1,1,1,5308935,2,1,24,24,5309529,2,1,30,30,5309901,1,2,25,25,5310168,2,1,1,1,5310684,3,2,25,25,5310967,2,1,17,17,5311797,2,1,18,18,5311969,2,1,19,19,5312149,2,1,21,21,5312492,2,1,30,30,5312974,2,1,35,35,5313434,2,1,39,39,5313748,1,2,26,26,5314110,3,2,26,26,5314654,1,2,25,25,5314841,2,1,1,1,5315142,3,2,25,25,5315348,1,1,1,1,5315581,2,1,24,24,5316288,1,2,25,25,5316535,2,1,1,1,5317104,3,2,25,25,5317311,2,1,6,6,5317839,2,1,7,7,5318027,2,1,8,8,5318213,2,1,3,3,5318653,2,1,10,10,5319100,2,1,14,14,5319523,2,1,24,24,5320029,2,1,27,27,5320356,2,1,28,28,5320537,2,1,31,31,5320909,2,1,36,36,5321310,2,1,39,39,5321640,1,2,25,25,5321960,2,1,1,1,5322588,3,2,25,25,5322796,1,1,1,1,5323018,2,1,24,24,5323678,1,2,25,25,5323941,2,1,1,1,5324651,3,2,25,25,5324921,2,1,1,-1,5325160,2,1,2,2,5325867,2,1,22,22,5326379,2,1,24,24,5326580,2,1,29,29,5327007,2,1,37,37,5327462,2,1,1,-1,5327667,1,2,25,25,5327911,2,1,1,1,5328464,3,2,25,25,5328720,2,1,3,3,5328995,2,1,6,6,5329465,2,1,9,9,5329738,2,1,12,12,5330083,2,1,13,13,5330251,2,1,16,16,5330588,2,1,18,18,5330929,2,1,19,19,5331092,2,1,26,26,5331619,2,1,33,33,5332164,2,1,37,37,5332473,1,2,26,26,5332772,2,1,1,1,5333405,3,2,26,26,5333608,2,1,3,3,5334131,2,1,5,5,5334337,2,1,7,7,5334590,2,1,10,10,5334951,2,1,13,13,5335281,2,1,14,14,5335472,2,1,19,19,5335897,2,1,24,24,5336412,2,1,33,33,5336910,2,2,25,25,5337073,2,2,25,25,5337591,2,1,37,37,5337884,2,1,37,37,5338089,2,1,37,37,5338519,2,1,38,38,5338696,2,1,34,34,5339052,1,2,26,26,5339346,2,1,1,1,5339909,3,2,26,26,5340130,1,1,1,1,5340335,2,1,12,12,5340799,2,1,19,19,5341263,1,2,26,26,5341571,2,1,1,1,5342118,3,2,26,26,5342337,2,1,2,2,5342898,2,1,3,3,5343077,2,1,5,5,5343338,2,1,9,9,5343767,2,1,10,10,5343930,2,1,12,12,5344254,2,1,13,13,5344471,2,1,14,14,5344658,2,1,16,16,5345267,2,1,18,18,5345691,2,1,19,19,5345861,2,1,23,23,5346305,2,1,26,26,5346672,2,1,27,27,5346840,2,1,30,30,5347411,2,1,33,33,5347586,2,1,38,38,5348022,1,2,26,26,5348344,2,1,1,1,5348971,3,2,26,26,5349261,1,1,1,1,5349492,2,1,12,12,5350058,1,2,26,26,5350339,2,1,1,1,5350786,3,2,26,26,5351005,2,1,6,6,5351595,2,1,7,7,5351776,2,1,12,12,5352241,1,2,26,26,5352617,2,1,1,1,5352986,3,2,26,26,5353163,1,1,1,1,5353358,1,2,26,26,5353501,2,1,1,1,5353739,3,2,26,26,5353928,2,1,1,-1,5354168,2,1,31,31,5355190,2,1,1,-1,5355425,1,2,26,26,5355692,2,1,1,1,5356350,3,2,26,26,5356571,2,1,3,3,5356819,2,1,8,8,5357261,2,1,10,10,5357932,2,1,11,11,5358133,2,1,12,12,5358323,2,1,13,13,5358516,2,1,14,14,5358719,2,1,17,17,5359095,2,1,17,17,5359290,2,1,23,23,5359768,2,1,25,25,5360123,2,1,26,26,5360308,2,1,28,28,5360583,2,1,18,18,5361123,2,1,17,17,5361330,2,1,32,32,5361983,2,1,39,39,5362445,1,2,27,27,5362728,2,1,1,1,5363540,3,2,27,27,5363744,2,1,10,10,5364488,2,1,12,12,5364696,2,1,27,27,5365315,2,1,26,26,5365553,2,1,32,32,5366009,2,1,33,33,5366193,2,1,36,36,5366484,1,2,27,27,5366755,2,1,1,1,5367378,3,2,27,27,5367616,1,1,1,1,5367820,2,1,8,8,5368290,2,1,10,10,5368503,2,1,23,23,5369132,2,1,26,26,5369415,2,1,39,39,5369969,1,2,27,27,5370224,2,1,1,1,5370834,3,2,27,27,5371071,2,1,3,3,5371617,2,1,5,5,5371891,2,1,6,6,5372059,2,1,8,8,5372427,2,1,10,10,5372765,2,1,13,13,5373174,2,1,14,14,5373358,2,1,20,20,5373800,2,1,23,23,5374148,2,1,26,26,5374515,2,1,29,29,5374918,2,1,32,32,5375212,2,1,34,34,5375565,2,1,37,37,5375972,2,1,39,39,5376195,1,2,28,28,5376512,3,2,28,28,5377146,1,2,27,27,5377350,2,1,1,1,5377700,3,2,27,27,5377894,1,1,1,1,5378098,2,1,8,8,5378487,2,1,23,23,5379158,2,1,39,39,5379732,1,2,27,27,5379984,2,1,1,1,5380615,3,2,27,27,5380838,2,1,3,3,5381395,2,1,9,9,5381852,2,1,11,11,5382045,2,1,13,13,5382290,2,1,17,17,5382688,2,1,23,23,5383252,2,1,28,28,5383773,2,1,29,29,5383959,2,1,30,30,5384149,2,1,31,31,5384322,2,1,33,33,5384844,2,1,34,34,5385068,2,1,35,35,5385269,2,1,38,38,5385678,2,1,39,39,5385847,1,2,27,27,5386156,2,1,1,1,5386867,3,2,27,27,5387050,1,1,1,1,5387274,1,2,27,27,5387414,2,1,1,1,5387633,3,2,27,27,5387825,2,1,1,-1,5388098,2,1,7,7,5388669,2,1,8,8,5388844,2,1,4,4,5389226,2,1,18,18,5389729,2,1,19,19,5389931,2,1,21,21,5390243,2,1,25,25,5390617,2,1,1,-1,5390836,1,2,27,27,5391074,2,1,1,1,5391648,3,2,27,27,5391825,2,1,2,2,5392074,2,1,4,4,5392403,2,1,5,5,5392603,2,1,6,6,5392789,2,1,7,7,5392990,2,1,9,9,5393398,2,1,13,13,5393764,2,1,19,19,5394195,2,1,21,21,5394404,2,1,23,23,5394941,2,1,24,24,5395120,2,1,25,25,5395319,2,1,26,26,5395504,2,1,31,31,5396065,2,1,32,32,5396248,2,1,36,36,5396815,2,1,38,38,5397076,1,2,28,28,5397335,2,1,1,1,5397949,3,2,28,28,5398175,2,1,2,2,5398645,2,1,9,9,5399017,2,1,12,12,5399329,2,1,13,13,5399502,2,1,28,28,5400068,2,1,31,31,5400361,2,1,37,37,5400787,1,2,28,28,5401068,2,1,1,1,5401595,3,2,28,28,5401809,1,1,1,1,5402016,2,1,4,4,5402549,2,1,9,9,5402851,2,1,19,19,5403413,1,2,28,28,5403745,2,1,1,1,5404222,3,2,28,28,5404450,2,1,3,3,5405000,2,1,4,4,5405160,2,1,6,6,5405519,2,1,7,7,5405713,2,1,8,8,5405922,2,1,9,9,5406143,2,1,11,11,5406489,2,1,12,12,5406677,2,1,21,21,5407174,2,1,25,25,5407515,2,1,31,31,5408088,2,1,32,32,5408287,2,1,33,33,5408493,2,1,34,34,5408724,2,1,37,37,5409107,2,1,39,39,5409377,1,2,28,28,5409671,2,1,1,1,5410223,3,2,28,28,5410422,1,1,1,1,5410632,2,1,4,4,5411057,2,1,19,19,5411726,1,2,28,28,5411873,2,1,1,1,5412412,3,2,28,28,5412627,2,1,4,4,5413194,2,1,5,5,5413395,2,1,6,6,5413565,2,1,2,2,5413974,2,1,11,11,5414454,2,1,19,19,5414886,2,1,20,20,5415065,2,1,24,24,5415534,2,1,26,26,5415874,2,1,27,27,5416042,2,1,32,32,5416500,2,1,35,35,5416866,2,1,36,36,5417052,2,1,38,38,5417390,1,2,29,29,5417860,3,2,29,29,5418300,1,2,28,28,5418507,2,1,1,1,5419204,3,2,28,28,5419449,1,1,1,1,5419648,2,1,19,19,5420361,1,2,28,28,5420638,2,1,1,1,5421071,3,2,28,28,5421261,2,1,9,9,5421900,2,1,10,10,5422087,2,1,12,12,5422339,2,1,19,19,5422768,2,1,23,23,5423075,1,2,28,28,5423394,2,1,1,1,5423893,3,2,28,28,5424102,1,1,1,1,5424385,1,2,28,28,5424705,2,1,1,1,5424913,3,2,28,28,5425091,2,1,1,-1,5425328,2,1,1,-1,5426025,1,2,28,28,5426634,2,1,1,1,5426905,3,2,28,28,5427079,2,1,4,4,5427351,2,1,6,6,5427659,2,1,7,7,5427835,2,1,9,9,5428135,2,1,10,10,5428343,2,1,11,11,5428537,2,1,12,12,5428722,2,1,14,14,5429057,2,1,17,17,5429458,2,1,19,19,5429716,2,1,21,21,5429970,2,1,27,27,5430682,2,1,31,31,5431048,2,1,28,28,5431325,2,1,39,39,5431831,1,2,29,29,5432066,2,1,1,1,5433029,3,2,29,29,5433257,2,1,3,3,5433825,2,1,4,4,5433997,2,1,6,6,5434299,2,1,6,6,5434506,2,1,10,10,5435017,2,1,7,7,5435319,2,1,6,6,5435542,2,1,12,12,5435967,2,1,14,14,5436202,2,1,17,17,5436612,2,1,19,19,5436835,2,1,28,28,5437395,2,1,31,31,5437752,2,1,33,33,5438124,2,1,34,34,5438290,2,1,37,37,5438633,2,1,39,39,5438928,1,2,29,29,5439196,2,1,1,1,5439878,3,2,29,29,5440109,1,1,1,1,5440320,2,1,7,7,5440790,2,1,14,14,5441229,2,1,17,17,5441474,2,1,28,28,5441995,2,1,31,31,5442325,1,2,29,29,5442557,2,1,1,1,5443145,3,2,29,29,5443361,2,1,11,11,5444092,2,1,21,21,5444532,2,1,30,30,5444993,1,2,29,29,5445266,2,1,1,1,5445753,3,2,29,29,5445959,1,1,1,1,5446188,1,2,29,29,5446421,2,1,1,1,5446642,3,2,29,29,5446827,2,1,6,6,5447316,2,1,17,17,5447797,2,1,28,28,5448220,1,2,29,29,5448477,2,1,1,1,5449000,3,2,29,29,5449173,1,1,1,1,5449355,1,2,29,29,5449526,2,1,1,1,5449772,3,2,29,29,5449969,2,1,1,-1,5450201,2,1,7,7,5450780,2,1,9,9,5451002,2,1,15,15,5451450,2,1,31,31,5452035,2,1,15,15,5452565,2,1,14,14,5452744,2,1,1,-1,5452975,1,2,29,29,5453380,2,1,1,1,5453700,3,2,29,29,5453892,2,1,2,2,5454123,2,1,3,3,5454294,2,1,9,9,5454709,2,1,14,14,5455139,2,1,17,17,5455387,2,1,19,19,5455654,2,1,23,23,5456141,2,1,24,24,5456331,2,1,26,26,5456605,2,1,28,28,5456845,2,1,32,32,5457274,2,1,33,33,5457477,2,1,34,34,5457631,2,1,38,38,5458035,2,1,39,39,5458248,1,2,30,30,5458570,2,1,1,1,5459120,3,2,30,30,5459349,2,1,2,2,5459938,2,1,23,23,5460489,2,1,24,24,5460737,2,1,22,22,5461054,2,1,32,32,5461623,2,1,35,35,5461933,2,1,36,36,5462136,1,2,30,30,5462421,2,1,1,1,5463012,3,2,30,30,5463248,1,1,1,1,5463436,2,1,2,2,5463806,2,1,24,24,5464392,2,1,34,34,5464866,1,2,30,30,5465104,2,1,1,1,5465628,3,2,30,30,5465870,2,1,6,6,5466482,2,1,7,7,5466694,2,1,8,8,5466887,2,1,14,14,5467361,2,1,17,17,5467678,2,1,24,24,5468177,2,1,26,26,5468377,2,1,31,31,5468793,2,1,33,33,5469236,2,1,34,34,5469442,2,1,35,35,5469620,2,1,37,37,5469974,1,2,30,30,5470322,2,1,1,1,5470965,3,2,30,30,5471183,1,1,1,1,5471413,2,1,34,34,5472066,1,2,30,30,5472321,2,1,1,1,5472928,3,2,30,30,5473153,2,1,2,2,5473750,2,1,3,3,5473921,2,1,5,5,5474186,2,1,7,7,5474613,2,1,8,8,5474814,2,1,9,9,5475036,2,1,10,10,5475203,2,1,18,18,5475950,2,1,25,25,5476457,2,1,28,28,5476784,2,1,32,32,5477325,2,1,34,34,5477766,2,1,36,36,5478029,2,1,38,38,5478378,2,1,39,39,5478570,1,2,30,30,5479100,2,1,1,1,5479845,3,2,30,30,5480049,1,1,1,1,5480262,1,2,30,30,5480430,2,1,1,1,5480676,3,2,30,30,5480851,2,1,1,-1,5481070,2,1,19,19,5481861,2,1,1,-1,5482058,1,2,30,30,5482361,2,1,1,1,5482848,3,2,30,30,5483042,2,1,3,3,5483320,2,1,5,5,5483530,2,1,10,10,5483891,2,1,22,22,5484430,2,1,25,25,5484703,2,1,29,29,5485144,2,1,26,26,5485455,2,1,30,30,5485823,2,1,38,38,5486301,1,2,31,31,5486552,2,1,1,1,5487126,3,2,31,31,5487388,2,1,5,5,5487930,2,1,9,9,5488356,2,1,10,10,5488546,2,1,13,13,5488983,2,1,16,16,5489254,2,2,31,31,5489674,2,2,31,31,5490072,2,1,22,22,5490316,2,1,24,24,5490513,2,1,25,25,5490732,2,1,25,25,5491415,2,1,26,26,5491602,2,1,32,32,5492107,2,1,37,37,5492492,2,1,38,38,5492670,1,2,31,31,5492999,2,1,1,1,5493641,3,2,31,31,5493887,1,1,1,1,5494115,2,1,5,5,5494572,2,1,26,26,5495130,1,2,31,31,5495367,2,1,1,1,5495906,3,2,31,31,5496086,2,1,5,5,5496591,2,1,27,27,5497213,2,1,31,31,5497479,2,1,38,38,5497894,1,2,32,32,5498197,3,2,32,32,5498686,1,2,31,31,5498889,2,1,1,1,5499127,3,2,31,31,5499327,1,1,1,1,5499543,1,2,31,31,5499687,2,1,1,1,5499909,3,2,31,31,5500091,2,1,3,3,5500668,2,1,14,14,5501149,2,1,26,26,5501740,2,1,30,30,5502046,2,1,33,33,5502389,2,1,37,37,5502873,1,2,31,31,5503200,2,1,1,1,5503844,3,2,31,31,5504031,1,1,1,1,5504225,1,2,31,31,5504394,2,1,1,1,5504606,3,2,31,31,5504774,2,1,1,-1,5504973,2,1,21,21,5505867,2,1,39,39,5506525,2,1,1,-1,5506742,1,2,31,31,5507041,2,1,1,1,5507718,3,2,31,31,5507926,2,1,6,6,5508263,2,1,9,9,5508614,2,1,10,10,5508790,2,1,13,13,5509139,2,1,14,14,5509313,2,1,34,34,5509974,2,1,38,38,5510345,2,1,39,39,5510539,1,2,32,32,5510802,2,1,1,1,5511738,3,2,32,32,5511961,2,1,3,3,5512445,2,1,6,6,5512761,2,1,7,7,5512961,2,1,38,38,5513727,1,2,32,32,5513978,2,1,1,1,5514483,3,2,32,32,5514681,1,1,1,1,5514892,2,1,6,6,5515263,2,1,38,38,5515833,1,2,32,32,5516075,2,1,1,1,5516693,3,2,32,32,5517153,2,1,2,2,5517671,2,1,6,6,5517936,2,1,10,10,5518413,2,1,11,11,5518560,2,1,28,28,5519269,2,1,32,32,5519942,2,1,34,34,5519943,1,2,32,32,5520199,2,1,1,1,5520881,3,2,32,32,5521058,1,1,1,1,5521264,1,2,32,32,5521428,2,1,1,1,5521635,3,2,32,32,5521833,2,1,13,13,5522507,2,1,14,14,5522680,2,1,16,16,5522923,2,1,27,27,5523547,2,1,32,32,5524014,2,1,33,33,5524224,2,1,34,34,5524388,2,1,37,37,5524757,2,1,38,38,5525178,2,1,39,39,5525568,2,1,37,37,5525773,2,1,36,36,5525991,1,2,32,32,5526292,2,1,1,1,5526823,3,2,32,32,5527051,1,1,1,1,5527252,1,2,32,32,5527541,2,1,1,1,5527757,3,2,32,32,5527930,2,1,4,4,5528470,2,1,6,6,5528737,2,1,7,7,5528936,2,1,10,10,5529202,2,1,35,35,5529973,2,1,9,9,5530831,2,1,10,10,5531012,1,2,32,32,5531376,2,1,1,1,5531684,3,2,32,32,5531867,2,1,1,-1,5532122,2,1,1,-1,5532530,2,1,2,2,5533210,2,1,6,6,5533511,3,1,9,9,5535074,2,1,13,13,5535555,2,1,14,14,5535836,2,1,15,15,5536030,3,1,9,9,5536475,2,1,19,19,5536947,2,1,21,21,5537152,2,1,23,23,5537486,2,1,28,28,5538000,2,1,30,30,5538204,2,1,38,38,5538806,2,1,39,39,5538998,1,2,33,33,5539299,2,1,1,1,5539860,3,2,33,33,5540078,2,1,3,3,5540538,2,1,7,7,5540890,2,1,9,9,5541101,2,1,12,12,5541526,2,1,14,14,5541779,2,1,15,15,5541981,2,1,28,28,5542546,2,1,30,30,5542854,2,1,31,31,5543023,2,1,36,36,5543442,1,2,33,33,5543736,2,1,1,1,5544323,3,2,33,33,5544551,1,1,1,1,5544764,2,1,19,19,5545349,2,1,23,23,5545720,2,1,30,30,5546285,2,1,38,38,5546730,2,1,39,39,5546931,1,2,34,34,5547219,3,2,34,34,5547718,1,2,33,33,5547920,2,1,1,1,5548182,3,2,33,33,5548407,2,1,2,2,5550288,2,1,4,4,5550522,2,1,3,3,5550949,2,1,4,4,5551188,2,1,5,5,5551405,2,1,6,6,5551589,2,1,10,10,5552243,2,1,19,19,5552718,2,1,21,21,5552987,2,1,23,23,5553220,2,1,33,33,5553734,2,1,34,34,5553938,2,1,38,38,5554380,2,1,39,39,5554553,1,2,33,33,5554879,2,1,1,1,5555516,3,2,33,33,5555761,1,1,1,1,5555968,2,1,19,19,5556582,2,1,23,23,5557031,2,1,38,38,5557668,2,1,39,39,5557845,1,2,33,33,5558142,2,1,1,1,5558809,3,2,33,33,5559031,2,1,2,2,5559610,2,1,5,5,5559902,2,1,13,13,5560355,2,1,19,19,5560812,2,1,22,22,5561164,2,1,23,23,5561337,2,1,33,33,5561811,2,1,34,34,5562004,2,1,37,37,5562454,2,1,38,38,5562662,2,1,39,39,5562845,1,2,33,33,5563232,2,1,1,1,5563810,3,2,33,33,5564039,2,1,1,-1,5564324,2,1,1,-1,5564800,1,1,1,1,5565206,1,2,33,33,5565369,2,1,1,1,5565571,3,2,33,33,5565749,2,1,1,-1,5565952,2,1,8,8,5566551,2,1,30,30,5567133,2,1,1,-1,5567338,1,2,33,33,5567587,2,1,1,1,5568151,3,2,33,33,5568432,2,1,3,3,5568765,2,1,7,7,5569172,2,1,8,8,5569365,2,1,9,9,5569555,2,1,10,10,5569717,2,1,14,14,5570197,2,1,15,15,5570414,2,1,13,13,5570757,2,1,13,13,5570995,2,1,14,14,5571247,2,1,13,13,5571441,2,1,17,17,5572030,2,1,19,19,5572295,2,1,23,23,5572779,2,1,26,26,5573055,2,1,32,32,5573594,2,1,35,35,5574022,2,1,38,38,5574394,2,1,39,39,5574574,1,2,34,34,5574832,2,1,1,1,5575408,3,2,34,34,5575681,2,1,1,-1,5576019,2,1,1,-1,5576403,2,1,2,2,5576776,2,1,3,3,5576943,2,1,6,6,5577378,2,1,7,7,5577561,2,1,8,8,5577788,2,1,15,15,5578207,2,1,23,23,5578638,2,1,26,26,5578924,2,1,32,32,5579370,2,1,33,33,5579534,2,1,39,39,5579998,1,2,34,34,5580267,2,1,1,1,5580787,3,2,35,35,5581066,1,2,35,35,5581479,3,2,34,34,5581637,1,1,1,1,5581901,2,1,19,19,5582489,2,1,26,26,5582927,2,1,32,32,5583312,2,1,35,35,5583638,2,1,37,37,5583945,3,1,38,38,5584500,1,2,34,34,5584668,3,2,34,34,5585731,3,1,38,38,5585924,1,2,34,34,5586137,2,1,1,1,5586819,3,2,34,34,5587023,2,1,4,4,5587552,2,1,5,5,5587727,2,1,6,6,5587927,2,1,9,9,5588339,2,1,14,14,5588787,2,1,17,17,5589212,2,1,18,18,5589386,2,1,19,19,5589575,2,1,21,21,5589906,2,1,24,24,5590417,2,1,25,25,5590588,2,1,30,30,5591030,2,1,31,31,5591221,2,1,32,32,5591400,2,1,35,35,5591934,2,1,37,37,5592344,2,1,38,38,5592522,2,1,39,39,5592716,1,2,34,34,5593099,2,1,1,1,5593787,3,2,34,34,5594022,1,1,1,1,5594244,2,1,19,19,5594859,2,1,35,35,5595417,2,1,38,38,5595727,1,2,34,34,5595984,2,1,1,1,5596559,3,2,34,34,5596761,2,1,6,6,5597341,2,1,12,12,5597809,2,1,26,26,5598375,2,1,35,35,5598841,2,1,39,39,5599185,1,2,34,34,5599478,2,1,1,1,5600020,3,2,34,34,5600222,1,1,1,1,5600431,1,2,34,34,5600640,2,1,1,1,5601036,3,2,34,34,5601229,2,1,10,10,5601891,2,1,13,13,5602170,2,1,19,19,5602579,3,1,38,38,5603285,1,2,34,34,5603386,3,2,34,34,5604675,3,1,38,38,5605160,1,2,34,34,5605352,2,1,1,1,5606027,3,2,34,34,5606230,1,1,1,1,5606421,1,2,34,34,5606554,2,1,1,1,5606847,3,2,34,34,5607007,2,1,1,-1,5607182,2,1,1,-1,5607934,1,2,34,34,5608240,2,1,1,1,5608540,3,2,34,34,5608744,2,1,3,3,5609044,2,1,9,9,5609575,2,1,11,11,5609816,2,1,12,12,5609997,2,1,13,13,5610190,2,1,19,19,5610777,2,1,21,21,5611110,2,1,22,22,5611313,2,1,23,23,5611468,2,1,27,27,5611926,2,1,29,29,5612283,2,1,30,30,5612449,2,1,34,34,5612844,2,1,35,35,5613026,2,1,38,38,5613351,1,2,35,35,5613610,2,1,1,1,5614206,3,2,35,35,5614413,2,1,2,2,5615032,2,1,5,5,5615394,2,1,6,6,5615572,2,1,13,13,5616026,2,1,23,23,5616501,2,1,33,33,5616988,2,1,34,34,5617244,2,1,33,33,5617571,2,1,32,32,5617740,1,2,35,35,5618022,2,1,1,1,5618656,3,2,35,35,5618905,1,1,1,1,5619135,2,1,29,29,5619858,2,1,34,34,5620460,2,1,35,35,5620670,1,2,35,35,5620967,2,1,1,1,5621777,3,2,35,35,5622018,2,1,12,12,5622795,2,1,21,21,5623337,2,1,22,22,5623513,2,1,25,25,5623881,2,1,26,26,5624065,2,1,31,31,5624668,2,1,34,34,5625078,2,1,35,35,5625275,2,1,36,36,5625476,1,2,35,35,5625802,2,1,1,1,5626470,3,2,35,35,5626651,1,1,1,1,5626869,2,1,29,29,5627448,2,1,35,35,5627910,1,2,35,35,5628194,2,1,1,1,5628721,3,2,35,35,5628942,2,1,4,4,5629484,2,1,5,5,5629662,2,1,2,2,5629975,2,1,9,9,5630455,2,1,11,11,5630682,2,1,14,14,5631083,2,1,19,19,5631524,2,1,27,27,5632070,2,1,29,29,5632251,2,1,29,29,5632474,2,1,28,28,5632761,2,1,29,29,5632932,2,1,30,30,5633135,2,1,36,36,5633598,2,1,37,37,5633777,2,1,38,38,5633980,2,1,39,39,5634204,1,2,35,35,5634565,2,1,1,1,5635126,3,2,35,35,5635363,1,1,1,1,5635581,2,1,29,29,5636122,1,2,35,35,5636414,2,1,2,2,5636940,3,2,35,35,5637215,1,2,35,35,5637505,2,1,2,2,5637767,2,1,1,1,5637958,3,2,35,35,5638209,2,1,3,3,5638799,2,1,5,5,5639025,2,1,20,20,5639536,2,1,29,29,5640047,2,1,35,35,5640412,1,2,36,36,5640703,3,2,36,36,5641239,1,2,35,35,5641499,2,1,1,1,5641773,3,2,35,35,5642008,1,1,1,1,5642229,2,1,1,-1,5642526,2,1,1,-1,5643141,2,1,4,4,5643729,2,1,6,6,5643919,2,1,6,6,5644150,2,1,5,5,5644442,2,1,6,6,5644611,2,1,8,8,5644939,2,1,18,18,5645441,2,1,24,24,5645995,2,1,29,29,5646401,2,1,33,33,5646840,2,1,34,34,5647012,2,1,35,35,5647190,2,1,37,37,5647557,2,1,39,39,5647788,1,2,36,36,5648104,2,1,1,1,5648775,3,2,36,36,5648971,2,1,2,2,5649587,2,1,18,18,5650161,2,1,34,34,5650680,2,1,38,38,5651047,1,2,36,36,5651351,2,1,1,1,5651941,3,2,36,36,5652165,1,1,1,1,5652372,2,1,6,6,5652808,2,1,24,24,5653374,2,1,33,33,5653917,2,1,35,35,5654113,2,1,37,37,5654380,1,2,36,36,5654658,2,1,1,1,5655222,3,2,36,36,5655436,2,1,35,35,5656504,1,2,36,36,5656752,2,1,1,1,5657500,3,2,36,36,5657769,1,1,1,1,5658035,2,1,35,35,5658739,2,1,33,33,5658958,1,2,36,36,5659264,2,1,1,1,5659803,3,2,36,36,5660034,2,1,2,2,5660813,2,1,4,4,5661059,2,1,6,6,5661290,2,1,8,8,5661534,2,1,21,21,5662211,2,1,24,24,5662482,2,1,33,33,5663102,2,1,35,35,5663408,2,1,36,36,5663619,2,2,34,34,5663812,2,2,34,34,5664355,2,1,39,39,5664589,2,1,37,37,5664825,1,2,36,36,5665204,2,1,1,1,5665804,3,2,36,36,5666060,1,1,1,1,5666284,2,1,6,6,5666698,2,1,24,24,5667323,2,1,33,33,5667811,2,1,37,37,5668159,1,2,37,37,5668498,3,2,37,37,5669015,1,2,36,36,5669240,2,1,1,1,5669654,3,2,36,36,5669946,2,1,1,-1,5670150,2,1,5,5,5670606,2,1,6,6,5670796,2,1,10,10,5671216,2,1,11,11,5671474,2,1,14,14,5671685,2,1,16,16,5672024,2,1,17,17,5672188,2,1,24,24,5672833,2,1,26,26,5673070,2,1,29,29,5673555,2,1,33,33,5674028,2,2,36,36,5674302,2,2,36,36,5674731,2,1,37,37,5674908,2,1,1,-1,5675154,1,2,36,36,5675427,2,1,1,1,5676206,3,2,36,36,5676464,2,1,4,4,5676801,2,1,10,10,5677222,2,1,11,11,5677406,2,1,13,13,5677715,2,1,14,14,5677885,2,1,17,17,5678227,2,1,20,20,5678641,2,1,21,21,5678871,2,1,23,23,5679053,2,1,22,22,5679442,2,1,38,38,5679990,2,1,39,39,5680172,1,2,37,37,5680498,2,1,1,1,5681075,3,2,37,37,5681308,2,1,2,2,5681821,2,1,4,4,5682034,2,1,6,6,5682269,2,1,10,10,5682723,2,1,13,13,5682974,2,1,17,17,5683387,2,1,20,20,5683675,2,1,25,25,5684277,2,1,29,29,5684612,1,2,37,37,5684875,2,1,1,1,5685384,3,2,37,37,5685600,1,1,1,1,5685811,2,1,4,4,5686142,2,1,10,10,5686574,2,1,13,13,5686859,2,1,17,17,5687333,2,1,20,20,5687580,1,2,37,37,5687912,2,1,1,1,5688358,3,2,37,37,5688592,2,1,2,2,5689224,2,1,3,3,5689408,2,1,8,8,5689805,2,1,20,20,5690309,2,1,21,21,5690515,2,1,22,22,5691013,2,1,23,23,5691013,2,1,32,32,5691875,2,1,38,38,5692275,2,1,39,39,5692449,1,2,37,37,5692728,2,1,1,1,5693364,3,2,37,37,5693579,1,1,1,1,5693780,1,2,37,37,5694242,2,1,1,1,5694524,3,2,37,37,5694726,2,1,19,19,5695611,2,1,37,37,5696207,1,2,37,37,5696485,2,1,1,1,5697162,3,2,37,37,5697340,1,1,1,1,5697530,1,2,37,37,5697684,2,1,1,1,5697935,3,2,37,37,5698107,2,1,1,-1,5698553,2,1,4,4,5699131,2,1,7,7,5699379,2,1,10,10,5699783,2,1,11,11,5699949,2,1,13,13,5700285,2,1,14,14,5700485,2,1,17,17,5700810,2,1,1,-1,5701244,1,2,38,38,5701642,3,2,38,38,5702164,1,2,37,37,5702349,2,1,1,1,5702556,3,2,37,37,5702729,2,1,2,2,5702964,2,1,3,3,5703133,2,1,6,6,5703415,2,1,5,5,5704064,2,1,10,10,5704562,2,1,15,15,5704965,2,1,17,17,5705172,2,1,21,21,5705617,2,1,25,25,5706227,2,1,26,26,5706403,2,1,28,28,5706704,2,1,29,29,5706904,2,1,33,33,5707321,2,1,37,37,5707691,2,1,38,38,5707883,1,2,38,38,5708164,2,1,1,1,5708900,3,2,38,38,5709144,2,1,23,23,5709988,2,1,38,38,5710604,1,2,38,38,5710891,2,1,1,1,5711456,3,2,38,38,5711656,1,1,1,1,5711887,2,1,3,3,5712203,2,1,15,15,5712702,2,1,21,21,5713194,1,2,38,38,5713506,2,1,1,1,5714206,3,2,38,38,5714439,2,1,2,2,5715039,2,1,15,15,5715490,2,1,17,17,5715703,2,1,19,19,5715941,2,1,26,26,5716453,2,1,27,27,5716628,2,1,38,38,5717156,1,2,38,38,5717425,2,1,1,1,5718216,3,2,38,38,5718424,1,1,1,1,5718629,2,1,3,3,5719002,2,1,14,14,5719466,2,1,21,21,5719910,2,1,15,15,5720565,2,1,14,14,5720753,1,2,38,38,5721039,2,1,1,1,5721475,3,2,38,38,5721691,2,1,3,3,5722017,2,1,2,2,5722289,2,1,5,5,5722562,2,1,21,21,5723202,2,1,29,29,5723613,2,1,38,38,5724130,2,1,39,39,5724316,1,2,38,38,5724638,2,1,1,1,5725678,3,2,38,38,5725887,1,1,1,1,5726092,2,1,3,3,5726470,2,1,21,21,5727039,1,2,38,38,5727342,2,1,1,1,5727842,3,2,38,38,5728061,2,1,1,-1,5728292,2,1,3,3,5728603,2,1,10,10,5729077,2,1,14,14,5729417,2,1,15,15,5729591,2,1,21,21,5730065,2,1,25,25,5730406,2,1,28,28,5730832,2,1,31,31,5731241,2,1,32,32,5731413,2,1,33,33,5731615,2,1,37,37,5731998,2,1,1,-1,5732230,1,2,38,38,5732500,2,1,1,1,5733482,3,2,38,38,5733700,2,1,2,2,5733926,2,1,7,7,5734329,2,1,16,16,5734786,2,1,19,19,5735155,2,1,20,20,5735320,2,1,22,22,5735630,2,1,26,26,5736274,2,1,28,28,5736536,2,1,34,34,5737118,2,1,35,35,5737284,2,1,37,37,5737569,2,1,38,38,5737754,1,2,39,39,5738035,2,1,1,1,5738830,3,2,39,39,5739049,2,1,12,12,5739807,2,1,22,22,5740324,2,1,36,36,5740953,2,1,36,36,5741127,2,1,35,35,5741405,2,2,38,38,5741577,2,2,38,38,5742207,2,1,36,36,5742389,1,2,39,39,5742691,2,1,1,1,5743239,3,2,39,39,5743479,1,1,1,1,5743685,2,1,7,7,5744178,2,1,16,16,5744619,1,2,39,39,5744872,2,1,1,1,5745313,3,2,39,39,5745618,2,1,7,7,5746091,2,1,14,14,5746572,2,1,16,16,5746760,2,1,28,28,5747272,2,1,30,30,5747484,2,1,32,32,5747742,2,1,39,39,5748195,1,2,39,39,5748487,2,1,1,1,5749153,3,2,39,39,5749375,1,1,1,1,5749577,2,1,7,7,5749957,2,1,16,16,5750370,1,2,39,39,5750639,2,1,1,1,5751107,3,2,39,39,5751339,2,1,4,4,5751895,2,1,2,2,5752158,2,1,6,6,5752594,2,1,7,7,5752715,2,1,16,16,5753204,2,1,19,19,5753629,2,1,20,20,5753827,2,1,26,26,5754310,2,1,29,29,5754602,2,1,34,34,5755042,2,1,37,37,5755629,2,1,38,38,5755629,1,2,39,39,5756071,2,1,1,1,5756684,3,2,39,39,5756924,1,1,1,1,5757113,1,2,39,39,5757282,2,1,1,1,5757491,3,2,39,39,5757731,1,2,39,39,5758346,2,1,1,1,5758689,3,2,39,39,5758992,2,1,2,2,5759266,2,1,5,5,5759560,2,1,6,6,5759735,2,1,8,8,5760078,2,1,9,9,5760255,2,1,11,11,5760549,2,1,17,17,5760998,2,1,19,19,5761254,2,1,22,22,5761869,2,1,25,25,5762180,2,1,26,26,5762354,2,1,28,28,5762721,2,1,31,31,5763091,2,1,35,35,5763499,2,1,38,38,5763799,3,1,1,1,5764550,1,1,1,1,5764783,3,1,1,1,5765087,3,1,1,1,5765265,1,2,1,20,5765728,2,1,1,1,5765987,3,2,1,20,5766178,1,2,-20,-1,5766378,2,1,1,1,5766578,3,2,-20,-1,5766758,3,2,2,2,5767361,2,1,1,-1,5767736,2,1,2,2,5768284,2,1,3,3,5768480,2,1,4,4,5768672,2,1,5,5,5768862,2,1,6,6,5769039,2,1,8,8,5769439,2,1,9,9,5769602,2,1,12,12,5769990,2,1,13,13,5770178,2,1,15,15,5770433,2,1,17,17,5770898,2,1,18,18,5771101,2,1,19,19,5771281,2,1,21,21,5771737,2,1,22,22,5771918,2,1,23,23,5772128,2,1,26,26,5772550,2,1,28,28,5772962,2,1,29,29,5773158,2,1,30,30,5773347,2,1,35,35,5773842,2,1,36,36,5774047,2,1,37,37,5774250,2,1,38,38,5774465,2,1,39,39,5774697,2,1,1,-1,5774990,1,2,2,2,5775827,1,1,1,1,5776095,3,2,2,2,5776227,2,1,4,4,5776735,2,1,2,2,5777065,2,1,13,13,5777714,2,1,15,15,5778068,2,1,17,17,5778433,2,1,19,19,5778704,2,1,21,21,5779108,2,1,22,22,5779291,2,1,26,26,5780035,2,1,28,28,5780495,2,1,29,29,5780694,2,1,30,30,5780871,2,1,37,37,5781340,2,1,38,38,5781540,1,2,2,2,5782319,1,1,1,1,5782542,3,2,2,2,5782668,2,1,3,3,5783277,2,1,5,5,5783577,2,1,6,6,5783779,2,1,8,8,5784162,2,1,9,9,5784354,2,1,35,35,5785417,2,1,36,36,5785610,2,1,39,39,5786019,1,2,2,2,5787115,1,1,1,1,5787304,3,2,2,2,5787628,2,1,12,12,5788117,2,1,18,18,5788598,2,1,23,23,5789099,1,2,2,2,5789286,3,2,3,3,5789477,2,1,1,-1,5789682,2,1,38,38,5790265,2,1,39,39,5790456,2,1,30,30,5791042,2,1,29,29,5791243,2,1,28,28,5791447,2,1,27,27,5791672,2,1,24,24,5792054,2,1,22,22,5792325,2,1,19,19,5792733,2,1,18,18,5792946,2,1,16,16,5793326,2,1,13,13,5793720,2,1,9,9,5794141,2,1,6,6,5794456,2,1,4,4,5794789,2,1,3,3,5795021,2,1,2,2,5795206,2,1,1,-1,5795456,1,2,3,3,5795698,1,1,1,1,5796270,3,2,3,3,5796420,2,1,3,3,5796947,2,1,9,9,5797737,2,1,16,16,5798678,2,1,18,18,5798895,2,1,28,28,5799734,2,1,29,29,5799927,2,1,39,39,5800452,1,2,3,3,5801153,1,1,1,1,5801387,3,2,3,3,5801524,2,1,4,4,5802176,2,1,6,6,5802417,2,1,13,13,5803085,2,1,19,19,5803574,2,1,22,22,5803939,2,1,24,24,5804171,2,1,30,30,5804832,2,1,38,38,5805263,1,2,3,3,5805885,1,1,1,1,5806120,3,2,3,3,5806259,2,1,2,2,5806661,2,1,27,27,5807302,1,2,3,3,5807513,3,2,4,4,5807702,2,1,1,-1,5807930,2,1,37,37,5808530,2,1,35,35,5808841,2,1,34,34,5809069,2,1,33,33,5809250,2,1,32,32,5809454,2,1,31,31,5809672,2,1,27,27,5810146,2,1,26,26,5810349,2,1,25,25,5810553,2,1,24,24,5810763,2,1,22,22,5811115,2,1,20,20,5811475,2,1,16,16,5811998,2,1,14,14,5812190,2,1,13,13,5812433,2,1,12,12,5812792,2,1,15,15,5813078,2,1,3,3,5813621,2,1,2,2,5813796,2,1,1,-1,5814024,1,2,4,4,5814255,1,1,1,1,5814473,3,2,4,4,5814603,2,1,16,16,5815493,2,1,20,20,5816089,2,1,22,22,5816290,2,1,24,24,5816705,2,1,25,25,5816879,2,1,26,26,5817080,2,1,31,31,5817587,2,1,32,32,5817783,2,1,33,33,5817983,2,1,37,37,5818398,1,2,4,4,5819204,1,1,1,1,5819446,3,2,4,4,5819615,2,1,12,12,5820399,2,1,13,13,5820578,2,1,15,15,5820855,2,1,27,27,5821437,2,1,34,34,5821957,2,1,35,35,5822154,1,2,4,4,5822807,1,1,1,1,5823033,3,2,4,4,5823198,2,1,2,2,5823599,2,1,1,1,5824278,1,2,4,4,5824447,2,1,1,1,5824660,3,2,4,4,5824831,2,1,3,3,5825064,2,1,14,14,5825579,1,2,4,4,5826017,2,1,1,1,5826258,3,2,4,4,5826405,2,1,1,1,5826604,1,2,4,4,5826768,3,2,5,5,5826973,2,1,1,-1,5827171,2,1,3,3,5827647,2,1,5,5,5827860,2,1,10,10,5828311,2,1,11,11,5828502,2,1,15,15,5828915,2,1,16,16,5829131,2,1,18,18,5829444,2,1,19,19,5829627,2,1,20,20,5829834,2,1,21,21,5830033,2,1,23,23,5830439,2,1,30,30,5831062,2,1,31,31,5831260,2,1,34,34,5831686,2,1,35,35,5831873,2,1,38,38,5832210,2,1,38,38,5832416,2,1,39,39,5832743,2,1,38,38,5832953,2,1,37,37,5833153,2,1,1,-1,5833393,1,2,5,5,5833645,1,1,1,1,5834289,3,2,5,5,5834474,2,1,15,15,5835457,2,1,16,16,5835636,2,1,18,18,5835945,2,1,19,19,5836119,2,1,23,23,5836556,2,1,33,33,5837163,2,1,35,35,5837498,2,1,34,34,5837704,2,1,33,33,5837888,2,1,37,37,5838395,2,1,38,38,5838550,1,2,5,5,5839280,1,1,1,1,5839479,3,2,5,5,5839648,2,1,3,3,5840078,2,1,10,10,5840660,2,1,21,21,5841662,2,1,30,30,5841732,2,1,31,31,5841907,2,1,39,39,5842454,1,2,5,5,5843098,1,1,1,1,5843332,3,2,5,5,5843471,2,1,11,11,5844182,2,1,20,20,5844597,2,1,1,1,5845167,1,2,5,5,5845346,2,1,1,1,5845540,3,2,5,5,5845718,2,1,5,5,5846014,1,2,5,5,5846195,2,1,1,1,5846435,3,2,5,5,5846591,2,1,1,1,5846801,1,2,5,5,5846973,3,2,6,6,5847155,2,1,1,-1,5847371,2,1,3,3,5847917,2,1,5,5,5848222,2,1,6,6,5848402,2,1,8,8,5848683,2,1,10,10,5848953,2,1,14,14,5849316,2,1,17,17,5849714,2,1,18,18,5849889,2,1,19,19,5850055,2,1,21,21,5850368,2,1,27,27,5850837,2,1,29,29,5851120,2,1,30,30,5851292,2,1,35,35,5851748,2,1,38,38,5852103,2,1,39,39,5852297,2,1,1,-1,5852599,1,2,6,6,5853231,1,1,1,1,5853419,3,2,6,6,5853590,2,1,3,3,5854133,2,1,5,5,5854363,2,1,8,8,5854843,2,1,21,21,5855825,2,1,27,27,5856432,2,1,29,29,5856693,2,1,30,30,5856902,1,2,6,6,5857596,1,1,1,1,5857818,3,2,6,6,5857934,2,1,6,6,5858476,2,1,14,14,5858953,2,1,18,18,5859415,2,1,19,19,5859598,2,1,38,38,5860508,1,2,6,6,5861149,1,1,1,1,5861364,3,2,6,6,5861514,2,1,10,10,5862199,2,1,35,35,5862918,2,1,39,39,5863241,2,1,1,1,5864033,1,2,6,6,5864206,2,1,1,1,5864418,3,2,6,6,5864582,2,1,17,17,5865083,1,2,6,6,5865550,2,1,1,1,5865771,3,2,6,6,5865925,2,1,1,1,5866135,1,2,6,6,5866310,3,2,7,7,5866513,2,1,1,-1,5866777,2,1,2,2,5867418,2,1,3,3,5867589,2,1,5,5,5867968,2,1,6,6,5868165,2,1,7,7,5868371,2,1,8,8,5868561,2,1,10,10,5868981,2,1,11,11,5869183,2,1,12,12,5869362,2,1,15,15,5869709,2,1,16,16,5869902,2,1,17,17,5870115,2,1,19,19,5870577,2,1,20,20,5870777,2,1,21,21,5870948,2,1,24,24,5871576,2,1,25,25,5871770,2,1,26,26,5871975,2,1,29,29,5872372,2,1,30,30,5872542,2,1,32,32,5872815,2,1,35,35,5873194,2,1,38,38,5873492,2,1,1,-1,5873736,1,2,7,7,5874346,1,1,1,1,5874574,3,2,7,7,5874711,2,1,2,2,5875231,2,1,7,7,5875648,2,1,8,8,5875818,2,1,10,10,5876206,2,1,11,11,5876380,2,1,16,16,5876801,2,1,17,17,5876967,2,1,20,20,5877468,2,1,25,25,5877871,2,1,32,32,5878580,2,1,38,38,5878984,1,2,7,7,5879577,1,1,1,1,5879777,3,2,7,7,5879914,2,1,5,5,5880616,2,1,12,12,5881053,2,1,15,15,5881335,2,1,19,19,5881888,2,1,21,21,5882117,2,1,24,24,5882553,2,1,26,26,5882790,2,1,29,29,5883159,2,1,30,30,5883333,1,2,7,7,5883915,1,1,1,1,5884121,3,2,7,7,5884287,2,1,6,6,5885038,2,1,1,1,5885651,1,2,7,7,5885843,2,1,1,1,5886049,3,2,7,7,5886218,2,1,3,3,5886458,2,1,35,35,5887068,1,2,7,7,5887697,2,1,1,1,5887917,3,2,7,7,5888070,2,1,1,1,5888270,1,2,7,7,5888429,3,2,8,8,5888634,2,1,1,-1,5888864,2,1,2,2,5889447,2,1,3,3,5889672,2,1,4,4,5889862,2,1,5,5,5890052,2,1,7,7,5890345,2,1,11,11,5890735,2,1,13,13,5891041,2,1,14,14,5891242,2,1,16,16,5891553,2,1,18,18,5892005,2,1,19,19,5892196,2,1,20,20,5892367,2,1,22,22,5892687,2,1,25,25,5893216,2,1,26,26,5893400,2,1,27,27,5893593,2,1,28,28,5893778,2,1,29,29,5894001,2,1,30,30,5894178,2,1,34,34,5894604,2,1,35,35,5894783,2,1,37,37,5895096,2,1,38,38,5895293,2,1,1,-1,5895555,1,2,8,8,5896280,1,1,1,1,5896543,3,2,8,8,5896693,2,1,2,2,5897269,2,1,3,3,5897430,2,1,13,13,5898152,2,1,14,14,5898343,2,1,16,16,5898746,2,1,18,18,5899190,2,1,19,19,5899392,2,1,20,20,5899564,2,1,28,28,5900315,2,1,30,30,5900560,2,1,35,35,5901032,2,1,37,37,5901334,2,1,38,38,5901500,1,2,8,8,5902211,1,1,1,1,5902457,3,2,8,8,5902602,2,1,5,5,5903133,2,1,11,11,5903749,2,1,22,22,5904463,2,1,25,25,5904826,2,1,27,27,5905068,2,1,29,29,5905399,1,2,8,8,5906007,1,1,1,1,5906241,3,2,8,8,5906404,2,1,26,26,5907618,2,1,34,34,5908088,2,1,1,1,5908836,1,2,8,8,5909022,2,1,1,1,5909244,3,2,8,8,5909418,2,1,4,4,5909734,2,1,6,6,5909989,2,1,6,6,5910407,2,1,7,7,5910588,1,2,8,8,5910914,2,1,1,1,5911168,3,2,8,8,5911337,2,1,1,1,5911530,1,2,8,8,5911676,3,2,9,9,5911865,2,1,1,-1,5912062,2,1,2,2,5912542,2,1,6,6,5912946,2,1,8,8,5913154,2,1,10,10,5913528,2,1,11,11,5913708,2,1,13,13,5914007,2,1,14,14,5914202,2,1,16,16,5914453,2,1,19,19,5914959,2,1,20,20,5915120,2,1,21,21,5915307,2,1,25,25,5915774,2,1,26,26,5915971,2,1,27,27,5916150,2,1,29,29,5916480,2,1,31,31,5916720,2,1,33,33,5917376,2,1,34,34,5917572,2,1,37,37,5917990,2,1,38,38,5918187,2,1,39,39,5918380,2,1,1,-1,5918698,1,2,9,9,5919369,1,1,1,1,5919564,3,2,9,9,5919719,2,1,10,10,5920627,2,1,11,11,5920821,2,1,13,13,5921146,2,1,14,14,5921330,2,1,16,16,5921647,2,1,25,25,5922653,2,1,27,27,5922858,2,1,26,26,5923333,2,1,33,33,5923843,2,1,34,34,5924019,2,1,37,37,5924416,1,2,9,9,5925074,1,1,1,1,5925307,3,2,9,9,5925423,2,1,6,6,5926205,2,1,19,19,5926799,2,1,21,21,5926989,2,1,20,20,5927397,2,1,29,29,5927840,2,1,31,31,5928086,2,1,38,38,5928562,2,1,39,39,5928756,1,2,9,9,5929502,1,1,1,1,5929737,3,2,9,9,5929883,2,1,2,2,5930411,2,1,1,1,5930702,1,2,9,9,5930870,2,1,1,1,5931098,3,2,9,9,5931279,2,1,8,8,5931638,1,2,9,9,5931910,2,1,1,1,5932194,3,2,9,9,5932362,2,1,1,1,5932560,1,2,9,9,5932698,3,2,10,10,5932891,2,1,1,-1,5933117,2,1,4,4,5933624,2,1,6,6,5933963,2,1,7,7,5934150,2,1,8,8,5934335,2,1,11,11,5934707,2,1,12,12,5934905,2,1,14,14,5935170,2,1,19,19,5935728,2,1,20,20,5935928,2,1,22,22,5936629,2,1,23,23,5936811,2,1,24,24,5937036,2,1,25,25,5937209,2,2,8,8,5937395,2,2,8,8,5937920,2,1,26,26,5938191,2,1,28,28,5938514,2,1,30,30,5938773,2,1,32,32,5939220,2,1,33,33,5939381,2,1,38,38,5939820,2,1,37,37,5940135,2,1,39,39,5940331,2,1,1,-1,5940595,1,2,10,10,5940905,1,1,1,1,5941628,3,2,10,10,5941773,2,1,7,7,5942466,2,1,11,11,5942949,2,1,14,14,5943225,2,1,20,20,5943692,2,1,22,22,5944185,2,1,28,28,5944647,2,1,32,32,5945075,2,1,38,38,5945754,1,2,10,10,5946379,1,1,1,1,5946690,3,2,10,10,5946838,2,1,6,6,5947791,2,1,23,23,5948618,2,1,24,24,5948831,2,1,25,25,5949009,2,1,26,26,5949204,2,1,30,30,5949650,2,1,33,33,5949943,2,1,39,39,5950456,1,2,10,10,5951083,1,1,1,1,5951345,3,2,10,10,5951493,2,1,4,4,5951996,2,1,8,8,5952339,2,1,12,12,5952709,2,1,19,19,5953118,2,1,37,37,5953682,1,2,10,10,5953852,3,2,11,11,5954038,2,1,1,-1,5954260,2,1,38,38,5954768,2,1,39,39,5954948,2,1,35,35,5955381,2,1,29,29,5955801,2,1,28,28,5956004,2,1,26,26,5956301,2,1,24,24,5956604,2,1,22,22,5956937,2,1,21,21,5957127,2,1,18,18,5957629,2,1,17,17,5957855,2,1,16,16,5958043,2,1,15,15,5958258,2,1,13,13,5958599,2,1,11,11,5958871,2,1,9,9,5959276,2,1,8,8,5959485,2,1,6,6,5959796,2,1,4,4,5960042,2,1,2,2,5960298,2,1,1,-1,5960531,1,2,11,11,5960769,1,1,1,1,5960976,3,2,11,11,5961123,2,1,2,2,5961651,2,1,9,9,5962093,2,1,13,13,5962474,2,1,15,15,5962895,2,1,16,16,5963088,2,1,17,17,5963283,2,1,18,18,5963703,2,1,21,21,5964136,2,1,24,24,5964791,2,1,28,28,5965234,2,1,38,38,5965709,2,1,39,39,5965905,1,2,11,11,5966527,1,1,1,1,5966788,3,2,11,11,5966919,2,1,4,4,5967427,2,1,4,4,5967845,2,1,6,6,5968079,2,1,35,35,5969606,1,2,11,11,5970569,1,1,1,1,5970763,3,2,11,11,5970887,2,1,8,8,5971609,2,1,11,11,5971891,2,1,22,22,5972467,2,1,26,26,5972962,2,1,29,29,5973219,2,1,1,1,5973857,1,2,11,11,5974034,2,1,1,1,5974254,3,2,11,11,5974430,2,1,4,4,5974697,1,2,11,11,5974870,2,1,1,1,5975101,3,2,11,11,5975271,2,1,1,1,5975520,1,2,11,11,5975685,3,2,12,12,5975880,2,1,1,-1,5976097,2,1,3,3,5976564,2,1,8,8,5976935,2,1,10,10,5977212,2,1,12,12,5977553,2,1,14,14,5977956,2,1,15,15,5978154,2,1,16,16,5978335,2,1,19,19,5978811,2,1,20,20,5978997,2,1,21,21,5979169,2,1,22,22,5979385,2,1,23,23,5979580,2,1,27,27,5980013,2,1,28,28,5980219,2,1,29,29,5980426,2,1,30,30,5980628,2,1,32,32,5981001,2,1,1,-1,5981239,1,2,12,12,5981867,1,1,1,1,5982064,3,2,12,12,5982203,2,1,3,3,5982679,2,1,10,10,5983160,2,1,12,12,5983426,2,1,14,14,5983724,2,1,19,19,5984240,2,1,27,27,5984712,2,1,32,32,5985062,1,2,12,12,5985684,1,1,1,1,5985893,3,2,12,12,5986063,2,1,8,8,5986578,2,1,15,15,5987046,2,1,16,16,5987216,2,1,20,20,5987727,2,1,23,23,5987977,2,1,28,28,5988383,2,1,29,29,5988550,1,2,12,12,5989511,1,1,1,1,5989744,3,2,12,12,5989894,2,1,21,21,5990461,2,1,22,22,5990644,2,1,1,1,5991222,1,2,12,12,5991395,2,1,1,1,5991613,3,2,12,12,5991804,2,1,30,30,5992395,1,2,12,12,5993097,2,1,1,1,5993361,3,2,12,12,5993524,2,1,1,1,5993728,1,2,12,12,5993901,3,2,13,13,5994137,2,1,1,-1,5994455,2,1,6,6,5995529,2,1,9,9,5996386,2,1,10,10,5996596,2,1,11,11,5996805,2,1,13,13,5997316,2,1,17,17,5997669,2,1,19,19,5997903,2,1,23,23,5998292,2,1,24,24,5998493,2,1,27,27,5998873,2,1,30,30,5999398,2,1,31,31,5999574,2,1,28,28,5999993,2,1,27,27,6000182,2,1,34,34,6000723,2,1,35,35,6000907,2,1,36,36,6001106,2,1,38,38,6001385,2,1,1,-1,6001624,1,2,13,13,6002197,1,1,1,1,6002404,3,2,13,13,6002534,2,1,6,6,6003071,2,1,9,9,6003392,2,1,13,13,6003754,2,1,23,23,6004467,2,1,24,24,6004644,2,1,30,30,6005157,2,1,36,36,6005602,2,1,38,38,6005928,1,2,13,13,6006681,1,1,1,1,6006938,3,2,13,13,6007090,2,1,11,11,6007554,2,1,17,17,6007977,2,1,19,19,6008182,2,1,35,35,6009149,1,2,13,13,6009914,1,1,1,1,6010164,3,2,13,13,6010273,2,1,10,10,6010773,2,1,28,28,6011483,2,1,31,31,6011756,2,1,1,1,6012594,1,2,13,13,6012791,2,1,1,1,6012990,3,2,13,13,6013187,2,1,34,34,6013847,1,2,13,13,6014443,2,1,1,1,6014727,3,2,13,13,6014884,2,1,1,1,6015099,1,2,13,13,6015286,3,2,14,14,6015507,2,1,1,-1,6015816,2,1,2,2,6016490,2,1,5,5,6016783,2,1,6,6,6016959,2,1,11,11,6017493,2,1,13,13,6018103,2,1,14,14,6018285,2,1,18,18,6018770,2,1,19,19,6018922,2,1,22,22,6019235,2,1,23,23,6019402,2,1,27,27,6019877,2,1,28,28,6020045,2,1,29,29,6020257,2,1,33,33,6020718,2,1,35,35,6020925,2,1,38,38,6021395,2,1,39,39,6021570,2,1,1,-1,6021912,1,2,14,14,6022616,1,1,1,1,6022825,3,2,14,14,6022962,2,1,6,6,6023884,2,1,11,11,6024390,2,1,14,14,6024640,2,1,18,18,6025082,2,1,19,19,6025270,2,1,22,22,6025743,2,1,23,23,6025911,2,1,28,28,6026389,2,1,33,33,6026873,2,1,38,38,6027298,1,2,14,14,6027962,1,1,1,1,6028186,3,2,14,14,6028304,2,1,2,2,6028893,2,1,5,5,6029165,2,1,13,13,6029678,2,1,27,27,6030198,2,1,29,29,6030521,2,1,39,39,6031025,1,2,14,14,6031741,1,1,1,1,6031954,3,2,14,14,6032114,2,1,35,35,6033252,1,2,14,14,6033475,3,2,15,15,6033646,2,1,1,-1,6033886,2,1,38,38,6034373,2,1,36,36,6034671,2,1,33,33,6035039,2,1,32,32,6035252,2,1,31,31,6035447,2,1,30,30,6035653,2,1,25,25,6036061,2,1,24,24,6036259,2,1,22,22,6036529,2,1,15,15,6037045,2,1,13,13,6037316,2,1,12,12,6037513,2,1,10,10,6037821,2,1,9,9,6038027,2,1,5,5,6038367,2,1,4,4,6038581,2,1,1,-1,6038842,1,2,15,15,6039091,1,1,1,1,6039317,3,2,15,15,6039465,2,1,4,4,6039957,2,1,5,5,6040132,2,1,13,13,6040644,2,1,15,15,6040913,2,1,22,22,6041450,2,1,24,24,6041734,2,1,31,31,6042285,2,1,36,36,6042660,2,1,38,38,6042947,1,2,15,15,6043797,1,1,1,1,6044016,3,2,15,15,6044150,2,1,9,9,6044778,2,1,10,10,6044955,2,1,25,25,6045775,2,1,32,32,6046178,1,2,15,15,6046742,1,1,1,1,6047024,3,2,15,15,6047158,2,1,12,12,6047604,2,1,30,30,6048119,2,1,33,33,6048418,1,2,15,15,6048618,3,2,16,16,6048780,2,1,1,-1,6049034,2,1,39,39,6049467,2,1,38,38,6049648,2,1,36,36,6049939,2,1,35,35,6050137,2,1,34,34,6050342,2,1,31,31,6050736,2,1,30,30,6050940,2,1,28,28,6051261,2,1,27,27,6051446,2,1,26,26,6051671,2,1,24,24,6052282,2,1,23,23,6052482,2,1,21,21,6052844,2,1,16,16,6053449,2,1,15,15,6053645,2,1,14,14,6053888,2,1,11,11,6054492,2,1,10,10,6054677,2,1,10,10,6054876,2,1,6,6,6055342,2,1,9,9,6055675,2,1,10,10,6055847,2,1,1,-1,6056136,1,2,16,16,6056506,1,1,1,1,6056732,3,2,16,16,6056902,2,1,6,6,6057516,2,1,11,11,6057885,2,1,16,16,6058297,2,1,24,24,6058900,2,1,28,28,6059391,2,1,30,30,6059655,2,1,38,38,6060276,2,1,39,39,6060439,1,2,16,16,6061227,1,1,1,1,6061458,3,2,16,16,6061633,2,1,21,21,6062721,2,1,27,27,6063217,2,1,31,31,6063572,2,1,36,36,6063976,1,2,16,16,6064744,1,1,1,1,6064959,3,2,16,16,6065087,2,1,9,9,6065764,2,1,10,10,6065935,2,1,15,15,6066376,2,1,26,26,6066893,2,1,34,34,6067330,2,1,35,35,6067533,2,1,1,1,6068187,1,2,16,16,6068380,2,1,1,1,6068599,3,2,16,16,6068784,2,1,14,14,6069380,2,1,23,23,6069780,1,2,16,16,6070329,2,1,1,1,6070684,3,2,16,16,6070826,2,1,1,1,6071034,1,2,16,16,6071193,3,2,17,17,6071382,2,1,1,-1,6071612,2,1,2,2,6072222,2,1,5,5,6072688,2,1,6,6,6072855,2,1,7,7,6073026,2,1,12,12,6073473,2,1,14,14,6073740,2,1,17,17,6074090,2,1,20,20,6074457,2,1,21,21,6074636,2,1,23,23,6074874,2,1,25,25,6075180,2,1,29,29,6075616,2,1,30,30,6075784,2,1,33,33,6076134,2,1,36,36,6076501,2,1,38,38,6076743,2,1,1,-1,6077141,1,2,17,17,6077805,1,1,1,1,6078059,3,2,17,17,6078258,2,1,5,5,6079109,2,1,6,6,6079296,2,1,12,12,6079802,2,1,14,14,6080010,2,1,17,17,6080343,2,1,20,20,6080754,2,1,29,29,6081469,2,1,33,33,6081842,2,1,36,36,6082211,2,1,38,38,6082411,1,2,17,17,6083019,1,1,1,1,6083318,3,2,17,17,6083466,2,1,30,30,6084751,1,2,17,17,6085391,1,1,1,1,6085604,3,2,17,17,6085729,2,1,2,2,6086284,2,1,7,7,6086621,2,1,21,21,6087148,2,1,23,23,6087397,2,1,25,25,6087658,1,2,17,17,6087894,3,2,18,18,6088076,2,1,1,-1,6088317,2,1,38,38,6088849,2,1,37,37,6089084,2,1,33,33,6089530,2,1,36,36,6089907,2,1,37,37,6090116,2,1,31,31,6090750,2,1,30,30,6090966,2,1,29,29,6091167,2,1,28,28,6091359,2,1,26,26,6091695,2,1,25,25,6091919,2,1,22,22,6092199,2,1,22,22,6092427,2,1,21,21,6092695,2,1,22,22,6092901,2,1,23,23,6093098,2,1,18,18,6093660,2,1,14,14,6094042,2,1,12,12,6094421,2,1,11,11,6094613,2,1,9,9,6094902,2,1,5,5,6095342,2,1,2,2,6095602,2,1,1,-1,6095816,1,2,18,18,6096047,1,1,1,1,6096256,3,2,18,18,6096417,2,1,9,9,6097407,2,2,17,17,6097815,2,2,17,17,6098194,2,1,14,14,6098399,2,1,26,26,6099312,2,1,28,28,6099643,2,1,30,30,6099881,2,1,36,36,6100332,2,1,38,38,6100534,1,2,18,18,6101202,1,1,1,1,6101439,3,2,18,18,6101572,2,1,2,2,6101945,2,1,5,5,6102216,2,1,11,11,6102706,2,1,18,18,6103154,2,1,21,21,6103487,2,1,31,31,6104069,2,1,33,33,6104321,1,2,18,18,6104887,1,1,1,1,6105210,3,2,18,18,6105377,2,1,12,12,6105818,2,1,22,22,6106303,2,1,23,23,6106462,2,1,1,1,6107048,1,2,18,18,6107218,2,1,1,1,6107415,3,2,18,18,6107595,2,1,24,24,6108127,2,1,29,29,6108488,2,1,25,25,6108848,2,1,24,24,6109047,1,2,19,19,6109692,3,2,19,19,6110001,1,2,18,18,6110176,2,1,1,1,6110412,3,2,18,18,6110596,2,1,1,1,6110788,1,2,18,18,6110953,3,2,19,19,6111125,2,1,1,-1,6111685,2,1,3,3,6112406,2,1,7,7,6112821,2,1,9,9,6113141,2,1,10,10,6113329,2,1,14,14,6113699,2,1,18,18,6114296,2,1,21,21,6114484,2,1,20,20,6114924,2,1,21,21,6115129,2,1,23,23,6115959,2,1,24,24,6116156,2,1,25,25,6116377,2,1,26,26,6116583,2,1,28,28,6117122,2,1,30,30,6117370,2,1,33,33,6117839,2,1,35,35,6118211,2,1,36,36,6118390,2,1,37,37,6118582,2,1,38,38,6118869,2,1,38,38,6119368,2,1,39,39,6119569,2,1,1,-1,6119817,1,2,19,19,6120482,1,1,1,1,6120725,3,2,19,19,6120857,2,1,3,3,6121272,2,1,9,9,6121752,2,1,10,10,6121941,2,1,14,14,6122386,2,1,20,20,6122935,2,1,24,24,6123333,2,1,25,25,6123502,2,1,28,28,6123952,2,1,30,30,6124227,2,1,35,35,6124734,2,1,36,36,6124903,2,1,39,39,6125250,1,2,19,19,6125948,1,1,1,1,6126203,3,2,19,19,6126361,2,1,7,7,6126857,2,1,23,23,6127490,2,1,26,26,6127743,2,1,34,34,6128319,2,1,37,37,6128699,2,1,34,34,6129138,2,1,33,33,6129346,1,2,18,18,6129946,1,1,1,1,6130207,3,1,1,1,6130530,3,2,18,18,6130660,1,2,19,19,6130872,1,1,1,1,6131069,3,2,19,19,6131223,2,1,18,18,6132039,1,2,19,19,6132238,3,2,20,20,6132407,2,1,1,-1,6132632,2,1,39,39,6133290,2,1,38,38,6133464,2,1,34,34,6133900,2,1,33,33,6134070,2,1,32,32,6134293,2,1,27,27,6134708,2,1,25,25,6135010,2,1,24,24,6135210,2,1,22,22,6135554,2,1,21,21,6135743,2,1,19,19,6136242,2,1,18,18,6136434,2,1,15,15,6136914,2,1,14,14,6137116,2,1,13,13,6137320,2,1,10,10,6137723,2,1,8,8,6137973,2,1,3,3,6138401,2,1,2,2,6138609,2,1,1,-1,6138816,1,2,20,20,6139057,1,1,1,1,6139262,3,2,20,20,6139421,2,1,8,8,6140470,2,1,21,21,6141237,2,1,24,24,6141868,2,1,27,27,6142249,2,1,38,38,6142968,1,2,20,20,6143671,1,1,1,1,6143913,3,2,20,20,6144050,2,1,10,10,6145055,2,1,25,25,6145736,2,1,32,32,6146179,2,1,33,33,6146354,2,1,39,39,6146820,1,2,20,20,6147473,1,1,1,1,6147679,3,2,20,20,6147813,2,1,2,2,6148329,2,1,3,3,6148492,2,1,13,13,6149066,2,1,15,15,6149304,2,1,18,18,6149709,2,1,19,19,6149883,2,1,1,1,6151094,1,2,20,20,6151254,2,1,1,1,6151457,3,2,20,20,6151650,2,1,14,14,6152107,2,1,22,22,6152538,2,1,34,34,6153070,1,2,20,20,6153693,2,1,1,1,6153926,3,2,20,20,6154085,2,1,1,1,6154292,1,2,20,20,6154436,3,2,21,21,6154643,2,1,1,-1,6154843,2,1,3,3,6155463,2,1,4,4,6155647,2,1,5,5,6155825,2,1,10,10,6156232,2,1,12,12,6156475,2,1,14,14,6156986,2,1,15,15,6157178,2,1,16,16,6157378,2,1,17,17,6157560,2,1,17,17,6157788,2,1,17,17,6158412,2,1,18,18,6158596,2,1,22,22,6158950,2,1,21,21,6159392,2,1,22,22,6159581,2,1,23,23,6159822,2,1,24,24,6160026,2,1,25,25,6160238,2,1,26,26,6160449,2,1,28,28,6160847,2,1,30,30,6161243,2,1,31,31,6161414,2,1,33,33,6161820,2,1,34,34,6162004,2,1,35,35,6162209,2,1,36,36,6162444,2,1,1,-1,6162783,1,2,21,21,6163363,1,1,1,1,6163587,3,2,21,21,6163722,2,1,15,15,6164608,2,1,16,16,6164848,2,1,17,17,6165010,2,1,18,18,6165233,2,1,10,10,6165667,2,1,25,25,6166481,2,1,31,31,6166900,2,1,33,33,6167186,2,1,34,34,6167392,1,2,21,21,6168008,1,1,1,1,6168226,3,2,21,21,6168386,2,1,3,3,6168804,2,1,4,4,6168986,2,1,5,5,6169194,2,1,12,12,6169817,2,1,23,23,6170318,2,1,28,28,6170848,2,1,26,26,6171092,2,1,30,30,6171474,2,1,35,35,6171895,1,2,21,21,6172553,1,1,1,1,6172781,3,2,21,21,6172904,2,1,21,21,6174051,2,1,1,1,6174644,1,2,21,21,6174814,2,1,1,1,6175031,3,2,21,21,6175206,2,1,14,14,6175634,2,1,24,24,6176143,2,1,36,36,6176711,1,2,21,21,6177310,2,1,1,1,6177548,3,2,21,21,6177708,2,1,1,1,6177919,1,2,21,21,6178063,3,2,22,22,6178260,2,1,1,-1,6178487,2,1,2,2,6179084,2,1,3,3,6179202,2,1,4,4,6179404,2,1,6,6,6179755,2,1,13,13,6180194,2,1,15,15,6180529,2,1,16,16,6180697,2,1,17,17,6180908,2,1,19,19,6181553,2,1,20,20,6181760,2,1,22,22,6182063,2,1,26,26,6182508,2,1,27,27,6182701,2,1,28,28,6182872,2,1,31,31,6183265,2,1,33,33,6183723,2,1,35,35,6184142,2,1,36,36,6184335,2,1,37,37,6184540,2,1,39,39,6184886,2,1,1,-1,6185163,1,2,22,22,6185874,1,1,1,1,6186142,3,2,22,22,6186282,2,1,22,22,6187835,2,1,33,33,6188457,2,1,36,36,6188780,2,1,37,37,6188949,1,2,22,22,6189561,1,1,1,1,6189810,3,2,22,22,6189896,2,1,6,6,6190712,2,1,16,16,6191344,2,1,26,26,6192174,2,1,28,28,6192422,2,1,39,39,6193197,1,2,22,22,6193806,1,1,1,1,6194008,3,2,22,22,6194175,2,1,4,4,6194734,2,1,13,13,6195201,2,1,19,19,6195635,2,1,17,17,6195851,2,1,31,31,6196590,2,1,35,35,6196968,2,1,1,1,6197647,1,2,22,22,6197847,2,1,1,1,6198049,3,2,22,22,6198248,2,1,2,2,6198500,2,1,3,3,6198682,2,1,15,15,6199244,2,1,20,20,6199584,2,1,27,27,6200233,1,2,22,22,6200764,2,1,1,1,6200998,3,2,22,22,6201143,2,1,1,1,6201371,1,2,22,22,6201519,3,2,23,23,6201749,2,1,1,-1,6201987,2,1,2,2,6202529,2,1,4,4,6202710,2,1,6,6,6203104,2,1,7,7,6203300,2,1,8,8,6203480,2,1,9,9,6203689,2,1,13,13,6204119,2,1,14,14,6204298,2,1,17,17,6204635,2,1,18,18,6204839,2,1,21,21,6205279,2,1,28,28,6205784,2,1,29,29,6205953,2,1,32,32,6206276,2,1,34,34,6206702,2,1,35,35,6206900,2,1,36,36,6207110,2,1,37,37,6207316,2,1,1,-1,6207648,1,2,23,23,6208172,1,1,1,1,6208398,3,2,23,23,6208558,2,1,8,8,6209312,2,1,9,9,6209486,2,1,17,17,6210124,2,1,28,28,6210750,2,1,34,34,6211172,1,2,23,23,6211788,1,1,1,1,6212005,3,2,23,23,6212158,2,1,4,4,6212614,2,1,7,7,6212856,2,1,13,13,6213417,2,1,14,14,6213588,2,1,18,18,6213963,2,1,21,21,6214285,2,1,29,29,6215082,2,1,35,35,6215508,2,1,36,36,6215691,1,2,23,23,6216317,1,1,1,1,6216507,3,2,23,23,6216670,2,1,2,2,6217137,2,1,6,6,6217456,2,1,1,1,6218342,1,2,23,23,6218524,2,1,1,1,6218724,3,2,23,23,6218925,2,1,32,32,6219534,2,1,37,37,6219913,1,2,23,23,6220518,2,1,1,1,6220763,3,2,23,23,6220899,2,1,1,1,6221099,1,2,23,23,6221265,3,2,24,24,6221481,2,1,1,-1,6221687,2,1,2,2,6222258,2,1,3,3,6222452,2,1,4,4,6222638,2,1,5,5,6222807,2,1,7,7,6223210,2,1,8,8,6223399,2,1,9,9,6223583,2,1,10,10,6223782,2,1,13,13,6224187,2,1,14,14,6224566,2,1,13,13,6224755,2,1,17,17,6225238,2,1,18,18,6225413,2,1,23,23,6225841,2,1,25,25,6226181,2,1,26,26,6226360,2,1,28,28,6226694,2,1,29,29,6226870,2,1,33,33,6227346,2,1,33,33,6227536,2,1,32,32,6227819,2,1,33,33,6227994,2,1,36,36,6228326,2,1,37,37,6228521,2,1,1,-1,6228810,1,2,24,24,6229367,1,1,1,1,6229643,3,2,24,24,6229788,2,1,4,4,6230267,2,1,9,9,6230658,2,1,10,10,6230831,2,1,14,14,6231250,2,1,17,17,6231579,1,2,24,24,6232635,1,1,1,1,6232868,3,2,24,24,6233000,2,1,5,5,6233615,2,1,23,23,6234228,2,1,25,25,6234632,2,1,33,33,6235284,2,1,36,36,6235613,2,1,37,37,6235785,1,2,24,24,6236403,1,1,1,1,6236632,3,2,24,24,6236784,2,1,3,3,6237222,2,1,7,7,6237590,2,1,8,8,6237772,2,1,26,26,6238371,2,1,28,28,6238747,2,1,1,1,6239655,1,2,24,24,6239809,2,1,1,1,6239999,3,2,24,24,6240198,2,1,2,2,6240401,2,1,18,18,6240893,2,1,29,29,6241455,2,1,32,32,6241736,1,2,24,24,6242270,2,1,1,1,6242514,3,2,24,24,6242678,2,1,1,1,6242879,1,2,24,24,6243017,3,2,25,25,6243228,2,1,1,-1,6243470,2,1,2,2,6244035,2,1,4,4,6244247,2,1,6,6,6244549,2,1,8,8,6244914,2,1,9,9,6245092,2,1,10,10,6245292,2,1,11,11,6245472,2,1,13,13,6246034,2,1,17,17,6246483,2,1,20,20,6246846,2,1,21,21,6247000,2,1,24,24,6247367,2,1,25,25,6247545,2,1,28,28,6247972,2,1,29,29,6248151,2,1,32,32,6248592,2,1,33,33,6248767,2,1,34,34,6248949,2,1,36,36,6249365,2,1,38,38,6249611,2,1,1,-1,6249870,1,2,25,25,6250483,1,1,1,1,6250683,3,2,25,25,6250819,2,1,8,8,6251640,2,1,9,9,6251844,2,1,11,11,6252044,2,1,21,21,6252566,2,1,25,25,6253022,2,1,28,28,6253407,2,1,29,29,6253609,1,2,25,25,6254229,3,2,25,25,6254597,2,1,10,10,6255364,1,2,25,25,6255656,1,1,1,1,6255963,3,2,25,25,6256159,2,1,2,2,6256829,2,1,5,5,6257033,2,1,6,6,6257320,2,1,5,5,6257579,2,1,4,4,6257787,2,1,13,13,6258230,2,1,20,20,6258977,2,1,32,32,6259443,2,1,33,33,6259676,2,1,34,34,6260095,2,1,33,33,6260291,2,1,38,38,6260686,1,2,25,25,6261375,1,1,1,1,6261578,3,2,25,25,6261730,2,1,1,1,6262964,1,2,25,25,6263142,2,1,1,1,6263317,3,2,25,25,6263488,2,1,17,17,6263997,2,1,24,24,6264368,2,1,33,33,6264987,2,1,36,36,6265231,1,2,25,25,6265891,2,1,1,1,6266138,3,2,25,25,6266284,2,1,1,1,6266508,1,2,25,25,6266691,3,2,26,26,6266862,2,1,1,-1,6267139,2,1,3,3,6267741,2,1,3,3,6268145,2,1,1,-1,6268381,1,2,26,26,6268824,3,2,25,25,6268972,2,1,1,-1,6269169,2,1,11,11,6269617,2,1,1,-1,6269812,1,2,25,25,6270256,1,1,1,1,6270471,3,2,25,25,6270655,1,2,25,25,6271069,1,1,1,1,6271300,3,2,25,25,6271457,1,2,25,25,6271831,3,2,25,25,6271979,2,1,11,11,6272440,1,2,25,25,6272625,3,2,26,26,6272776,2,1,1,-1,6272978,2,1,3,3,6273445,2,1,6,6,6273678,2,1,8,8,6273916,2,1,11,11,6274326,2,1,12,12,6274499,2,1,13,13,6274665,2,1,15,15,6274950,2,1,19,19,6275314,2,1,23,23,6275688,2,1,24,24,6275867,2,1,27,27,6276241,2,1,29,29,6276498,2,1,31,31,6276940,2,1,35,35,6277279,2,1,37,37,6277688,2,1,39,39,6277987,2,1,32,32,6278373,2,1,31,31,6278573,2,1,1,-1,6278802,1,2,26,26,6279467,1,1,1,1,6279666,3,2,26,26,6279821,2,1,6,6,6280480,2,1,12,12,6280992,2,1,13,13,6281160,2,1,24,24,6281721,2,1,27,27,6282339,2,1,39,39,6283335,1,2,26,26,6283971,1,1,1,1,6284175,3,2,26,26,6284307,2,1,8,8,6285049,2,1,11,11,6285358,2,1,19,19,6286043,2,1,23,23,6286425,2,1,29,29,6286897,2,1,32,32,6287157,2,1,37,37,6287647,1,2,26,26,6288270,1,1,1,1,6288485,3,2,26,26,6288631,2,1,15,15,6289603,2,1,35,35,6290210,2,1,1,1,6290856,1,2,26,26,6291027,2,1,1,1,6291229,3,2,26,26,6291397,2,1,3,3,6291638,1,2,26,26,6291810,2,1,1,1,6292046,3,2,26,26,6292185,2,1,1,1,6292394,1,2,26,26,6292556,3,2,27,27,6292765,2,1,1,-1,6292995,2,1,2,2,6293469,2,1,7,7,6293793,2,1,10,10,6294088,2,1,17,17,6294469,2,1,22,22,6294983,2,1,23,23,6295175,2,1,24,24,6295376,2,1,25,25,6295582,2,1,26,26,6295782,2,1,27,27,6296025,2,1,28,28,6296215,2,1,30,30,6296701,2,1,31,31,6296895,2,1,32,32,6297074,2,1,34,34,6297384,2,1,38,38,6297777,2,1,39,39,6298125,2,1,38,38,6298332,2,1,1,-1,6298611,1,2,27,27,6299262,1,1,1,1,6299503,3,2,27,27,6299618,2,1,10,10,6300514,2,1,24,24,6301185,2,1,25,25,6301381,2,1,31,31,6301885,1,2,27,27,6302506,1,1,1,1,6302770,3,2,27,27,6302931,2,1,7,7,6303707,2,1,26,26,6304475,2,1,27,27,6304647,1,2,27,27,6305557,1,1,1,1,6305760,3,2,27,27,6305911,2,1,2,2,6306541,2,1,28,28,6307469,2,1,30,30,6307682,2,1,32,32,6307968,2,1,39,39,6308550,2,1,1,1,6309211,1,2,27,27,6309398,2,1,1,1,6309574,3,2,27,27,6309774,2,1,17,17,6310365,2,1,22,22,6310758,2,1,23,23,6310929,2,1,34,34,6311538,1,2,27,27,6312199,2,1,1,1,6312432,3,2,27,27,6312597,2,1,1,1,6312791,1,2,27,27,6312965,3,2,28,28,6313138,2,1,1,-1,6313404,2,1,2,2,6313982,2,1,3,3,6314154,2,1,4,4,6314337,2,1,6,6,6314682,2,1,9,9,6315081,2,1,10,10,6315254,2,1,11,11,6315445,2,1,13,13,6315749,2,1,14,14,6315951,2,1,15,15,6316171,2,1,20,20,6316637,2,1,21,21,6316864,2,1,20,20,6317220,2,1,19,19,6317423,2,1,24,24,6317826,2,1,23,23,6318189,2,1,24,24,6318369,2,1,26,26,6318764,2,1,29,29,6319155,2,1,34,34,6319670,2,1,36,36,6319956,2,1,37,37,6320142,2,1,39,39,6320462,2,1,1,-1,6320950,1,2,28,28,6321632,1,1,1,1,6321863,3,2,28,28,6321976,2,1,2,2,6322774,2,1,3,3,6322976,2,1,9,9,6323457,2,1,11,11,6323688,2,1,14,14,6324103,2,1,29,29,6324954,2,1,34,34,6325439,1,2,27,27,6326018,1,1,1,1,6326252,3,1,1,1,6326585,3,2,27,27,6326693,1,2,28,28,6326923,1,1,1,1,6327119,3,2,28,28,6327231,2,1,6,6,6327834,2,1,10,10,6328250,2,1,13,13,6328516,2,1,26,26,6329261,2,1,39,39,6329873,1,2,28,28,6330587,1,1,1,1,6330813,3,2,28,28,6330954,2,1,4,4,6331462,2,1,19,19,6332076,2,1,36,36,6332621,2,1,37,37,6332795,1,2,28,28,6333690,1,1,1,1,6333912,3,2,28,28,6334058,2,1,1,1,6334452,1,2,28,28,6334657,2,1,1,1,6334869,3,2,28,28,6335029,2,1,15,15,6335472,2,1,21,21,6335855,2,1,23,23,6336057,1,2,28,28,6336572,2,1,1,1,6336800,3,2,28,28,6336952,2,1,1,1,6337169,1,2,28,28,6337325,3,2,29,29,6337525,2,1,1,-1,6337754,2,1,3,3,6338209,2,1,6,6,6338582,2,1,7,7,6338764,2,1,8,8,6338952,2,1,9,9,6339149,2,1,14,14,6339762,2,1,19,19,6340130,2,1,22,22,6340481,2,1,22,22,6340649,2,1,21,21,6341016,2,1,22,22,6341191,2,1,24,24,6341484,2,1,25,25,6341658,2,1,28,28,6342047,2,1,29,29,6342244,2,1,31,31,6342609,2,1,32,32,6342813,2,1,34,34,6343161,2,1,35,35,6343360,2,1,36,36,6343535,2,1,39,39,6343904,2,1,38,38,6344216,2,1,1,-1,6344481,1,2,29,29,6345170,1,1,1,1,6345424,3,2,29,29,6345561,2,1,3,3,6346080,2,1,7,7,6346440,2,1,9,9,6346701,2,1,28,28,6347764,2,1,29,29,6347935,2,1,32,32,6348416,2,1,36,36,6348816,1,2,29,29,6349436,1,1,1,1,6349694,3,2,29,29,6349906,2,1,22,22,6350953,2,1,34,34,6351664,2,1,38,38,6352024,2,1,39,39,6352211,1,2,29,29,6352893,1,1,1,1,6353212,3,2,29,29,6353307,2,1,14,14,6354315,2,1,19,19,6354754,2,1,21,21,6354965,2,1,24,24,6355336,2,1,25,25,6355509,2,1,31,31,6355943,2,1,35,35,6356314,2,1,1,1,6356930,1,2,29,29,6357113,2,1,1,1,6357312,3,2,29,29,6357519,2,1,6,6,6357813,2,1,8,8,6358030,1,2,29,29,6358302,2,1,1,1,6358603,3,2,29,29,6358754,2,1,1,1,6358982,1,2,29,29,6359133,3,2,30,30,6359347,2,1,1,-1,6359712,2,1,3,3,6360131,2,1,4,4,6360297,2,1,6,6,6360595,2,1,7,7,6360768,2,1,9,9,6361111,2,1,10,10,6361304,2,1,11,11,6361475,2,1,15,15,6361834,2,1,17,17,6362189,2,1,18,18,6362369,2,1,20,20,6362712,2,1,21,21,6362922,2,1,22,22,6363125,2,1,23,23,6363345,2,1,27,27,6364043,2,1,28,28,6364246,2,1,33,33,6364764,2,1,36,36,6365071,2,1,38,38,6365319,2,1,1,-1,6365590,1,2,30,30,6366192,1,1,1,1,6366429,3,2,30,30,6366611,2,1,3,3,6367134,2,1,7,7,6367484,2,1,10,10,6367823,2,1,15,15,6368388,2,1,20,20,6368883,2,1,23,23,6369121,2,1,27,27,6369628,2,1,28,28,6369821,2,1,33,33,6370310,2,1,37,37,6370601,2,1,36,36,6371358,2,1,37,37,6371557,1,2,30,30,6372209,1,1,1,1,6372441,3,2,30,30,6372588,2,1,4,4,6373116,2,1,9,9,6373486,2,1,11,11,6373700,2,1,18,18,6374208,2,1,21,21,6374550,1,2,30,30,6375327,1,1,1,1,6375593,3,2,30,30,6375735,2,1,17,17,6376667,2,1,22,22,6377026,2,1,38,38,6377628,2,1,1,1,6378304,1,2,30,30,6378479,2,1,1,1,6378683,3,2,30,30,6378855,2,1,6,6,6379165,1,2,30,30,6379382,2,1,1,1,6379641,3,2,30,30,6379813,2,1,1,1,6380024,1,2,30,30,6380181,3,2,31,31,6380365,2,1,1,-1,6380571,2,1,2,2,6381140,2,1,3,3,6381348,2,1,4,4,6381521,2,1,5,5,6381712,2,1,6,6,6381925,2,1,7,7,6382113,2,1,10,10,6382488,2,1,14,14,6382928,2,1,16,16,6383198,2,1,18,18,6383605,2,1,19,19,6383780,2,1,21,21,6384154,2,1,24,24,6384439,2,1,26,26,6384873,2,1,27,27,6385042,2,1,29,29,6385380,2,1,30,30,6385578,2,1,39,39,6386101,2,1,1,-1,6386357,1,2,31,31,6387050,1,1,1,1,6387281,3,2,31,31,6387435,2,1,3,3,6387991,2,1,5,5,6388189,2,1,21,21,6389166,2,1,24,24,6389610,2,1,26,26,6389833,1,2,31,31,6390659,1,1,1,1,6390867,3,2,31,31,6391012,2,1,2,2,6391543,2,1,7,7,6391914,2,1,18,18,6392524,2,1,19,19,6392710,2,1,16,16,6393088,2,1,30,30,6393684,2,1,39,39,6394206,1,2,31,31,6394852,1,1,1,1,6395035,3,2,31,31,6395214,2,1,4,4,6395829,2,1,14,14,6396332,2,1,27,27,6396801,2,1,29,29,6397107,1,2,31,31,6397723,1,1,1,1,6397961,3,2,31,31,6398099,2,1,1,1,6398472,1,2,31,31,6398679,2,1,1,1,6398880,3,2,31,31,6399077,2,1,6,6,6399446,2,1,10,10,6399755,1,2,31,31,6400034,2,1,1,1,6400714,3,2,31,31,6400873,2,1,1,1,6401077,1,2,31,31,6401256,3,2,32,32,6401452,2,1,1,-1,6401653,2,1,2,2,6402285,2,1,1,14,6402936,2,1,1,3,6403361,2,1,19,19,6404065,2,1,22,22,6404464,2,1,22,22,6404709,2,1,21,21,6405028,2,1,22,22,6405196,2,1,23,23,6405423,2,1,-16,-1,6406001,2,1,-9,-1,6406753,2,1,34,34,6407335,2,1,35,35,6407525,2,1,37,37,6407868,2,2,30,30,6408059,2,1,39,39,6408245,2,1,39,39,6408672,2,2,30,30,6408892,2,1,39,39,6409065,2,1,38,38,6409268,2,1,1,-1,6409507,1,2,32,32,6410105,1,1,1,1,6410334,3,2,32,32,6410518,2,1,5,5,6411288,2,1,19,19,6412050,2,1,34,34,6412788,1,2,32,32,6413460,1,1,1,1,6413974,3,2,32,32,6414118,2,1,4,4,6414657,2,1,6,6,6415093,2,1,9,9,6415508,2,1,11,11,6415716,2,1,27,27,6416519,2,1,38,38,6417100,1,2,32,32,6417913,1,1,1,1,6418120,3,2,32,32,6418261,2,1,7,7,6418942,2,1,8,8,6419136,2,1,10,10,6419448,2,1,14,14,6419822,2,1,22,22,6420303,2,1,23,23,6420498,2,1,29,29,6420934,2,1,30,30,6421117,2,1,35,35,6421645,2,1,37,37,6421859,2,1,1,1,6422593,1,2,32,32,6422833,2,1,1,1,6423042,3,2,32,32,6423236,2,1,2,2,6423475,2,1,12,12,6423997,2,1,13,13,6424152,2,1,21,21,6424634,2,1,25,25,6425003,2,1,26,26,6425151,2,1,28,28,6425424,2,1,31,31,6425770,2,1,39,39,6426328,1,2,32,32,6426978,2,1,1,1,6427248,3,2,32,32,6427458,2,1,1,1,6427628,1,2,32,32,6427806,3,2,33,33,6428030,2,1,1,-1,6428265,2,1,3,3,6428723,2,1,13,13,6429158,2,1,14,14,6429354,2,1,15,15,6429529,2,1,17,17,6429870,2,1,18,18,6430061,2,1,21,21,6430404,2,1,27,27,6430829,2,1,30,30,6431288,2,1,30,30,6431490,2,1,31,31,6431707,2,1,30,30,6432526,2,1,32,32,6432828,2,1,33,33,6433001,2,1,36,36,6433490,2,1,38,38,6433763,2,1,39,39,6433937,2,1,1,-1,6434208,1,2,33,33,6435051,1,1,1,1,6435284,3,2,33,33,6435433,2,1,3,3,6435933,2,1,14,14,6436379,2,1,17,17,6436739,2,1,33,33,6437469,2,1,36,36,6437930,2,1,39,39,6438285,1,2,33,33,6438998,1,1,1,1,6439572,3,2,33,33,6439669,2,1,15,15,6440222,2,1,26,26,6440861,2,1,30,30,6441305,2,1,31,31,6441442,2,1,27,27,6441905,2,1,26,26,6442093,2,1,38,38,6442634,1,2,33,33,6443273,1,1,1,1,6443530,3,2,33,33,6443702,2,1,18,18,6444450,2,1,32,32,6444962,2,1,1,1,6445675,1,2,33,33,6445857,2,1,1,1,6446062,3,2,33,33,6446259,2,1,13,13,6446670,2,1,20,20,6447134,2,1,20,20,6447829,2,1,21,21,6447994,1,2,33,33,6448473,2,1,1,1,6448710,3,2,33,33,6448885,2,1,1,1,6449085,1,2,33,33,6449248,3,2,34,34,6449447,2,1,1,-1,6449651,2,1,2,2,6450158,2,1,3,3,6450347,2,1,7,7,6450676,2,1,9,9,6451046,2,2,33,33,6451218,2,2,33,33,6451690,2,1,10,10,6452106,2,1,13,13,6452412,2,1,15,15,6452620,2,1,19,19,6453356,2,1,20,20,6453593,2,1,23,23,6454004,2,1,25,25,6454415,2,1,26,26,6454624,2,1,27,27,6454763,2,1,29,29,6455100,2,1,32,32,6455524,2,1,34,34,6455731,2,1,36,36,6456102,2,1,37,37,6456283,2,1,1,-1,6456552,1,2,34,34,6457197,1,1,1,1,6457426,3,2,34,34,6457560,2,1,23,23,6458779,2,1,37,37,6459375,1,2,34,34,6460204,1,1,1,1,6460410,3,2,34,34,6460546,2,1,3,3,6461059,2,1,2,2,6461260,2,1,9,9,6461752,2,1,25,25,6462552,2,1,34,34,6463046,1,2,34,34,6463751,1,1,1,1,6463959,3,2,34,34,6464100,2,1,7,7,6464620,2,1,13,13,6465079,2,1,27,27,6465865,2,1,36,36,6466501,1,2,34,34,6467192,1,1,1,1,6467405,3,2,34,34,6467554,2,1,1,1,6468364,1,2,34,34,6468537,2,1,1,1,6468736,3,2,34,34,6468921,2,1,10,10,6469301,2,1,15,15,6469656,2,1,19,19,6470132,2,1,20,20,6470285,2,1,26,26,6470725,2,1,29,29,6471050,2,1,32,32,6471370,1,2,34,34,6472029,2,1,1,1,6472288,3,2,34,34,6472456,2,1,1,1,6472678,1,2,34,34,6472829,3,2,35,35,6473021,2,1,1,-1,6473252,2,1,2,2,6473831,2,1,5,5,6474098,2,1,8,8,6474579,2,1,9,9,6474753,2,1,10,10,6474929,2,1,13,13,6475369,2,1,14,14,6475519,2,1,18,18,6475931,2,1,21,21,6476282,2,1,26,26,6476717,2,1,32,32,6477181,2,1,33,33,6477335,2,1,37,37,6477735,2,1,38,38,6477904,2,1,39,39,6478112,2,1,1,-1,6478421,1,2,35,35,6479051,1,1,1,1,6479257,3,2,35,35,6479391,2,1,2,2,6480032,2,1,33,33,6480989,2,1,37,37,6481406,2,1,38,38,6481568,1,2,35,35,6482310,1,1,1,1,6482515,3,2,35,35,6482689,2,1,5,5,6483133,2,1,9,9,6483545,2,1,10,10,6483741,2,1,18,18,6484360,2,1,26,26,6484830,1,2,35,35,6485784,1,1,1,1,6485999,3,2,35,35,6486156,2,1,8,8,6486636,2,1,13,13,6487020,2,1,22,22,6487522,2,1,32,32,6488072,2,1,39,39,6488503,2,1,22,22,6489104,2,1,21,21,6489284,2,1,1,1,6489895,1,2,35,35,6490094,2,1,1,1,6490297,3,2,35,35,6490495,2,1,14,14,6490969,1,2,35,35,6491441,2,1,1,1,6491750,3,2,35,35,6491899,2,1,1,1,6492128,1,2,35,35,6492271,3,2,36,36,6492447,2,1,1,-1,6492674,2,1,3,3,6493169,2,1,6,6,6493427,2,1,8,8,6493787,2,1,9,9,6493972,2,1,15,15,6494376,2,1,17,17,6494614,2,1,19,19,6494917,2,1,22,22,6495360,2,1,23,23,6495557,2,1,25,25,6495820,2,1,26,26,6495992,2,1,28,28,6496330,2,1,30,30,6496748,2,1,32,32,6497180,2,1,33,33,6497392,2,1,34,34,6497587,2,1,34,34,6497762,2,1,34,34,6498299,2,1,35,35,6498488,2,1,37,37,6498788,2,1,39,39,6499067,2,1,1,-1,6499360,1,2,36,36,6499971,1,1,1,1,6500213,3,2,36,36,6500356,2,1,3,3,6500894,2,1,8,8,6501293,2,1,15,15,6501743,2,1,19,19,6502089,2,1,28,28,6502871,2,1,37,37,6503330,1,2,36,36,6503986,1,1,1,1,6504228,3,2,36,36,6504391,2,1,6,6,6504808,2,1,9,9,6505093,2,1,17,17,6505602,2,1,26,26,6506094,2,1,34,34,6506620,1,2,36,36,6507247,1,1,1,1,6507469,3,2,36,36,6507603,2,1,22,22,6508451,2,1,23,23,6508617,2,1,25,25,6508904,2,1,30,30,6509336,2,1,32,32,6509683,2,1,33,33,6509840,2,1,35,35,6510139,2,1,1,1,6510806,1,2,36,36,6511377,2,1,1,1,6511602,3,2,36,36,6511783,2,1,39,39,6512488,1,2,36,36,6513198,2,1,1,1,6513454,3,2,36,36,6513659,2,1,1,1,6513882,1,2,36,36,6514102,3,2,37,37,6514325,2,1,1,-1,6514560,2,1,2,2,6515206,2,1,3,3,6515385,2,1,4,4,6515590,2,1,5,5,6515792,2,1,6,6,6515985,2,1,7,7,6516187,2,1,9,9,6516526,2,1,10,10,6516709,2,1,12,12,6516983,2,1,16,16,6517410,2,1,17,17,6517593,2,1,19,19,6517921,2,1,20,20,6518102,2,1,21,21,6518297,2,1,23,23,6518808,2,1,24,24,6519052,2,1,25,25,6519250,2,1,26,26,6519420,2,1,29,29,6519897,2,1,30,30,6520059,2,1,32,32,6520334,2,1,34,34,6520680,2,1,36,36,6521117,2,1,37,37,6521295,2,1,39,39,6521629,2,1,1,-1,6521934,1,2,37,37,6522621,1,1,1,1,6522844,3,2,37,37,6522994,2,1,6,6,6523646,2,1,7,7,6523845,2,1,19,19,6524745,2,1,21,21,6524961,2,1,25,25,6525383,2,1,26,26,6525557,2,1,39,39,6526245,1,2,37,37,6527062,1,1,1,1,6527285,3,2,37,37,6527432,2,1,3,3,6527964,2,1,24,24,6528785,2,1,30,30,6529290,2,1,32,32,6529597,2,1,37,37,6530020,1,2,37,37,6530752,1,1,1,1,6530962,3,2,37,37,6531099,2,1,2,2,6531644,2,1,4,4,6531882,2,1,23,23,6532935,2,1,34,34,6533442,2,1,36,36,6533712,2,1,1,1,6534360,1,2,37,37,6534561,2,1,1,1,6534737,3,2,37,37,6534936,2,1,5,5,6535261,2,1,9,9,6535620,2,1,10,10,6535792,2,1,12,12,6536053,2,1,16,16,6536499,2,1,17,17,6536659,2,1,20,20,6537036,2,1,30,30,6537509,2,1,29,29,6537864,2,1,30,30,6538068,1,2,37,37,6538666,2,1,1,1,6538902,3,2,37,37,6539330,2,1,1,1,6540009,1,2,37,37,6540195,3,2,38,38,6540399,2,1,1,-1,6540638,2,1,6,6,6541459,2,1,8,8,6541862,2,1,9,9,6542068,2,1,10,10,6542245,2,1,11,11,6542440,2,1,14,14,6542854,2,1,15,15,6543052,2,1,16,16,6543268,2,1,17,17,6543428,2,1,21,21,6543869,2,1,23,23,6544114,2,1,29,29,6544658,2,1,30,30,6544860,2,1,31,31,6545050,2,1,33,33,6545357,2,1,35,35,6545626,2,1,36,36,6545823,2,1,38,38,6546341,2,1,1,-1,6546620,1,2,38,38,6547338,1,1,1,1,6547562,3,2,38,38,6547699,2,1,9,9,6548349,2,1,21,21,6548892,1,2,38,38,6549704,1,1,1,1,6549921,3,2,38,38,6550050,2,1,11,11,6550759,2,1,23,23,6551347,2,1,31,31,6551890,2,1,38,38,6552392,1,2,38,38,6553004,1,1,1,1,6553217,3,2,38,38,6553358,2,1,6,6,6553916,2,1,8,8,6554170,2,1,10,10,6554367,2,1,14,14,6554862,2,1,16,16,6555105,2,1,17,17,6555302,2,1,35,35,6556008,2,1,36,36,6556163,2,1,1,1,6556795,1,2,38,38,6556993,2,1,1,1,6557201,3,2,38,38,6557401,2,1,15,15,6557853,2,1,29,29,6558358,2,1,30,30,6558521,2,1,33,33,6558878,1,2,38,38,6559503,2,1,1,1,6559717,3,2,38,38,6559887,2,1,1,1,6560109,1,2,38,38,6560256,3,2,39,39,6560433,2,1,1,-1,6560635,2,1,2,2,6561196,2,1,6,6,6561568,2,1,7,7,6561743,2,1,8,8,6561919,2,1,11,11,6562324,2,1,12,12,6562503,2,1,13,13,6562691,2,1,15,15,6563026,2,1,16,16,6563230,2,1,20,20,6563708,2,1,21,21,6563873,2,1,25,25,6564294,2,1,26,26,6564467,2,1,30,30,6564861,2,1,31,31,6565038,2,1,33,33,6565345,2,1,36,36,6565760,2,1,37,37,6565956,2,1,1,-1,6566257,1,2,39,39,6566863,1,1,1,1,6567067,3,2,39,39,6567223,2,1,7,7,6567835,2,1,12,12,6568271,2,1,15,15,6568639,2,1,21,21,6569071,2,1,33,33,6569651,2,1,36,36,6570105,1,2,39,39,6570688,1,1,1,1,6570921,3,1,1,1,6571258,3,2,39,39,6571484,2,1,11,11,6572270,1,2,39,39,6572584,1,1,1,1,6572891,3,2,39,39,6573051,2,1,25,25,6574140,2,1,30,30,6574541,1,2,39,39,6575161,1,1,1,1,6575390,3,2,39,39,6575523,1,2,39,39,6577537,1,1,1,1,6577769,3,2,39,39,6577936,2,1,1,1,6578739,1,2,39,39,6578933,2,1,1,1,6579128,3,2,39,39,6579350,2,1,2,2,6579575,2,1,6,6,6579943,2,1,8,8,6580154,2,1,13,13,6580652,2,1,16,16,6580937,2,1,20,20,6581364,2,1,26,26,6581774,2,1,31,31,6582317,2,1,37,37,6582857,1,2,39,39,6583542,2,1,1,1,6583763,3,2,39,39,6584135,2,1,1,1,6584394,1,2,39,39,6584576,2,1,1,-1,6585148,2,1,1,-1,6585800,3,2,39,39,6586546,2,1,1,-1,6586838,2,1,12,12,6587281,2,1,1,-1,6587466,1,2,39,39,6587959,1,1,1,1,6588199,3,2,39,39,6588350,1,2,39,39,6588774,1,1,1,1,6588995,3,2,39,39,6589154,1,2,39,39,6589661,1,1,1,1,6590028,3,2,39,39,6590180,2,1,1,1,6590471,1,2,39,39,6590655,2,1,1,1,6590863,2,1,1,1,6591401,3,2,39,39,6591658,2,1,1,1,6591928,2,1,12,12,6592714,1,2,39,39,6593190,3,1,1,1,6593392,2,1,1,1,6593940"; + +// const icsMoves = +// "3,2,1,-1,13510,1,2,1,-1,14065,3,2,2,2,15162,3,1,1,-1,15360,3,1,7,7,15940,3,1,1,-1,16127,3,1,1,-1,16381,1,1,6,6,16849,1,1,4,4,17053,3,1,1,-1,17239,1,2,2,2,17444,1,1,7,7,17800,1,1,4,4,18080,1,1,2,2,18300,3,2,3,3,18461,3,1,1,-1,18649,3,1,2,2,18862,3,1,4,4,19212,3,1,6,6,19525,3,1,7,7,19698,3,1,8,8,19848,3,1,1,-1,20070,3,1,1,-1,20310,2,1,8,8,20655,1,1,6,6,20920,1,1,2,2,21262,3,1,1,-1,21433,1,2,3,3,21698,1,1,7,7,22005,3,2,4,4,22149,3,1,1,-1,22334,3,1,7,7,22596,3,1,8,8,22878,3,1,1,-1,23158,3,1,1,-1,23418,2,1,7,7,23850,1,1,6,6,24120,1,1,4,4,24369,1,1,2,2,24598,3,1,1,-1,24809,1,2,4,4,25123,3,2,5,5,25388,3,1,1,-1,25670,3,1,7,7,26176,3,1,10,10,26462,3,1,1,-1,26656,3,1,1,-1,26860,1,1,5,5,27399,1,1,9,9,27713,3,1,1,-1,27902,1,2,5,5,28112,1,1,7,7,28399,3,2,6,6,28569,3,1,1,-1,28764,3,1,7,7,29001,3,1,5,5,29311,3,1,3,3,29554,3,1,2,2,29767,3,1,1,-1,29984,3,1,1,-1,30195,1,1,6,6,30646,1,1,7,7,30820,3,1,1,-1,31008,1,2,6,6,31239,1,1,9,9,31604,3,2,7,7,31762,3,1,1,-1,31951,3,1,9,9,32203,3,1,1,-1,32560,3,1,1,-1,32779,2,1,6,6,33148,1,1,7,7,33429,1,1,3,3,33732,3,1,1,-1,33957,1,2,7,7,34277,1,1,7,7,34516,1,1,10,10,34775,3,2,8,8,34943,3,1,1,-1,35149,3,1,10,10,35365,3,1,7,7,35664,3,1,1,-1,35861,3,1,1,-1,36099,2,1,2,2,36585,1,1,6,6,36896,1,1,6,6,37066,1,1,5,5,37411,3,1,1,-1,37655,3,1,6,6,37909,1,2,8,8,38087,1,1,7,7,38322,3,2,9,9,38489,3,1,1,-1,38709,3,1,7,7,38924,3,1,8,8,39188,3,1,2,2,39743,3,1,1,-1,39945,3,1,1,-1,40202,2,1,2,2,40652,1,1,3,3,41107,3,1,1,-1,41304,1,2,9,9,41538,1,1,7,7,41856,1,1,9,9,42077,3,2,10,10,42256,3,1,1,-1,42449,3,1,9,9,42661,3,1,7,7,42942,3,1,5,5,43164,3,1,1,-1,43373,3,1,1,-1,43592,1,1,2,2,44078,3,1,1,-1,44325,1,2,10,10,44617,3,2,1,-1,44863,1,1,1,-1,45048,3,2,-1,-1,45408,3,1,1,-1,45622,1,1,1,-1,45818,3,2,4,4,46161,3,1,3,3,46294,1,2,4,4,46470,1,1,3,3,46615,3,1,1,-1,46859,1,1,1,-1,46995,3,2,3,3,47374,3,1,7,7,47539,1,2,3,3,47702,1,1,7,7,47822,3,1,1,-1,48093,1,1,1,-1,48231,3,2,10,10,48510,3,1,9,9,48664,3,1,10,10,48862,1,2,10,10,49024,1,1,10,10,49197,1,1,9,9,49377,3,2,-1,-1,49544,3,1,1,-1,49768,1,1,1,-1,49939,3,2,3,3,50228,3,1,7,7,50372,1,2,3,3,50533,1,1,7,7,50684,3,1,1,-1,50908,1,1,1,-1,51054,3,2,5,5,51342,3,1,4,4,51494,1,2,5,5,51654,1,1,4,4,51804,3,2,9,9,52089,3,1,3,3,52259,1,2,9,9,52430,1,1,3,3,52573,3,2,1,-1,52804,3,1,1,-1,53134,1,1,1,-1,53325,3,1,1,-1,53778,1,1,1,-1,53993,3,2,-1,-1,54310,3,1,1,-1,54505,1,1,1,-1,54743,3,2,5,5,55164,3,1,6,6,55315,1,2,5,5,55486,1,1,6,6,55642,3,2,10,10,55896,3,1,6,6,56093,3,1,4,4,56354,1,2,10,10,56518,1,1,4,4,56682,1,1,6,6,56893,3,1,1,-1,57093,1,1,1,-1,57260,3,2,-1,-1,57568,3,1,1,-1,57757,1,1,1,-1,57995,3,2,5,5,58285,3,1,5,5,58433,1,2,5,5,58598,1,1,5,5,58752,3,2,6,6,58978,3,1,3,3,59115,1,2,6,6,59314,1,1,3,3,59436,3,2,2,2,59834,3,1,7,7,60209,1,2,2,2,60389,1,1,7,7,60537,3,2,1,-1,60767,3,1,1,-1,61067,1,1,1,-1,61288,3,2,4,4,61601,3,1,4,4,61756,1,2,4,4,61895,1,1,4,4,62056,3,2,5,5,62317,3,1,8,8,62515,1,2,5,5,62684,1,1,8,8,62816,3,2,-1,-1,63182,3,1,1,-1,63404,1,1,1,-1,63583,3,2,-1,-1,64271,3,1,1,-1,64473,1,1,1,-1,64668,3,2,3,3,65135,3,1,5,5,65293,1,2,3,3,65472,1,1,5,5,65607,3,2,10,10,65953,1,2,-1,-1,66296,3,2,-1,-1,66510,3,2,-1,-1,66995,3,1,1,-1,67234,1,1,1,-1,67416,3,2,3,3,67678,3,1,9,9,67850,1,2,3,3,67989,1,1,9,9,68131,3,2,4,4,68434,3,1,4,4,68615,1,2,4,4,68763,1,1,4,4,69006,3,2,1,-1,69233,3,1,1,-1,69553,1,1,1,-1,69782,3,2,4,4,70111,3,1,3,3,70272,1,2,4,4,70436,1,1,3,3,70588,3,2,4,4,70856,3,1,9,9,71018,1,2,4,4,71190,1,1,9,9,71358,3,2,-1,-1,71690,3,1,1,-1,71888,1,1,1,-1,72046,3,2,-1,-1,72522,3,1,1,-1,72718,1,1,1,-1,72866,3,2,5,5,73278,3,1,4,4,73668,1,2,5,5,73887,1,1,4,4,74050,3,1,1,5,74451,2,2,1,1,74639,1,1,1,5,74764,3,1,-5,-1,74967,2,2,1,1,75173,1,1,-5,-1,75313,1,2,1,1,75490,3,1,6,6,75659,3,2,1,1,75805,1,1,6,6,75966,3,1,1,-1,76347,1,1,1,-1,76554,3,2,4,4,76941,3,1,5,5,77107,1,2,4,4,77268,1,1,5,5,77412,3,1,1,-1,77702,1,1,1,-1,77856,3,2,2,2,78158,1,2,2,2,78447,1,2,2,2,78675,3,2,2,2,78872,3,2,2,2,79020,3,1,8,8,79245,1,2,2,2,79461,1,1,8,8,79590,3,1,1,-1,79892,1,1,1,-1,80077,3,2,6,6,80397,3,1,9,9,80581,1,2,6,6,80725,1,1,9,9,80860,3,2,-1,-1,81168,3,1,1,-1,81382,1,1,1,-1,81575,3,2,5,5,81850,3,1,10,10,82020,1,2,5,5,82195,1,1,10,10,82333,3,2,9,9,82613,3,1,10,10,82787,1,2,9,9,82968,1,1,10,10,83112,3,1,1,-1,83334,1,1,1,-1,83496,3,2,3,3,83789,3,1,8,8,83945,1,2,3,3,84120,1,1,8,8,84262,3,1,1,-1,84493,1,1,1,-1,84657,3,2,3,3,85065,3,1,2,2,85256,1,2,3,3,85417,1,1,2,2,85563,3,2,-1,-1,86016,3,1,1,-1,86252,1,1,1,-1,86406,3,2,6,6,86681,3,1,8,8,86840,1,2,6,6,87016,1,1,8,8,87143,3,2,10,10,87590,3,1,9,9,87956,1,2,10,10,88125,1,1,9,9,88271,3,1,1,-1,88558,1,1,1,-1,88719,3,2,-1,-1,89474,3,1,1,-1,89678,1,1,1,-1,89885,3,2,2,2,90234,3,1,10,10,90394,1,2,2,2,90548,1,1,10,10,90729,3,2,2,2,91053,3,1,4,4,91245,1,2,2,2,91405,1,1,4,4,91562,3,2,1,-1,91786,3,2,1,-1,92132,3,2,1,-1,92245,3,2,1,-1,92603,1,2,1,-1,92918,3,1,1,-1,93117,1,1,1,-1,93309,2,2,-1,-1,93787,3,2,4,4,94191,3,1,9,9,94363,1,2,4,4,94548,1,1,9,9,94706,1,1,1,-1,94942,1,2,1,-1,95092,1,1,4,4,95820,1,2,2,2,96010,2,1,1,1,96263,3,2,2,2,96378,3,1,1,-1,96577,3,1,4,4,96932,3,1,1,1,97148,3,1,8,8,97518,3,1,9,9,97843,3,1,10,10,98043,3,1,1,-1,98258,3,1,1,-1,98486,2,1,6,6,98881,1,1,3,3,99239,3,1,1,-1,99419,1,2,2,2,99604,2,1,1,1,99826,3,2,2,2,100208,1,1,5,5,100451,1,2,3,3,100582,2,1,1,1,100826,3,2,3,3,100984,3,1,1,-1,101178,3,1,5,5,101800,3,1,1,-1,102009,3,1,1,-1,102273,2,1,5,5,102551,3,1,1,-1,103254,1,2,3,3,103502,2,1,1,1,103721,3,2,3,3,103895,1,1,7,7,104256,1,1,10,10,104542,1,2,4,4,104694,2,1,1,1,105041,3,2,4,4,105173,3,1,1,-1,105378,3,1,5,5,105870,3,1,7,7,106080,3,1,10,10,106392,3,1,1,-1,106589,2,1,3,3,107209,3,1,1,-1,107512,1,1,7,7,107971,1,1,4,4,108184,3,1,1,-1,108360,1,2,4,4,108553,2,1,1,1,108780,3,2,4,4,108935,1,1,3,3,109144,1,1,8,8,109504,1,2,5,5,109646,2,1,1,1,109940,3,2,5,5,110096,3,1,1,-1,110281,3,1,8,8,110887,3,1,10,10,111127,3,1,3,3,111564,3,1,2,2,111733,3,1,1,-1,111949,3,1,1,-1,112208,2,1,6,6,112549,1,1,5,5,112778,1,1,2,2,113042,3,1,1,-1,113216,1,2,5,5,113388,2,1,1,1,113607,3,2,5,5,113796,1,1,7,7,114141,3,2,5,5,114312,1,1,9,9,114491,3,1,9,9,114891,1,2,5,5,115045,1,1,9,9,115207,1,1,8,8,115400,1,1,1,1,116158,1,2,6,6,116313,3,1,1,1,116488,3,2,6,6,116625,3,1,1,-1,116830,3,1,2,2,117409,3,1,2,2,117618,3,1,3,3,117910,3,1,7,7,118285,3,1,8,8,118456,3,1,9,9,118638,3,1,1,-1,118881,3,1,1,-1,119156,1,1,8,8,119788,1,1,9,9,119992,1,1,10,10,120208,1,1,2,2,120661,3,1,1,-1,120831,1,2,6,6,121061,1,1,1,1,121246,3,2,6,6,121378,3,1,1,1,121563,1,1,4,4,121890,1,1,7,7,122198,1,2,7,7,122355,2,1,1,1,122653,3,2,7,7,122820,3,1,1,-1,122990,3,1,4,4,123590,3,1,7,7,123838,3,1,9,9,124063,3,1,1,-1,124275,3,1,1,-1,124535,2,1,5,5,124936,1,1,4,4,125299,1,1,6,6,125541,1,1,7,7,125699,3,1,1,-1,126106,1,2,7,7,126370,2,1,1,1,126636,3,2,7,7,126782,1,1,3,3,127026,1,1,7,7,127293,1,1,10,10,127677,1,2,8,8,127821,2,1,1,1,128188,3,2,8,8,128355,3,1,1,-1,128534,3,1,3,3,129003,3,1,5,5,129188,3,1,9,9,129540,3,1,1,-1,129821,1,1,9,9,130279,3,1,10,10,130479,3,1,8,8,130733,3,1,8,8,130978,3,1,1,-1,131239,3,1,1,-1,131575,1,1,6,6,131853,1,2,8,8,132337,2,1,1,1,132591,3,2,8,8,132729,1,1,3,3,132958,1,2,9,9,133108,2,1,1,1,133333,3,2,9,9,133500,3,1,1,-1,133696,3,1,3,3,134040,3,1,8,8,134410,3,1,1,-1,134603,3,1,1,-1,134845,2,1,4,4,135244,2,1,9,9,135708,2,1,10,10,135895,1,1,5,5,136294,3,1,1,-1,136468,1,2,9,9,136692,2,1,1,1,136979,3,2,9,9,137123,1,1,8,8,137487,1,1,10,10,137727,1,2,10,10,137894,2,1,1,1,138256,3,2,10,10,138425,3,1,1,-1,138609,3,1,8,8,139258,3,1,9,9,139449,3,1,10,10,139643,3,1,1,-1,139863,3,1,1,-1,140131,2,1,7,7,140525,2,1,4,4,140821,2,1,3,3,140997,1,1,6,6,141270,3,1,1,-1,141785,1,1,5,5,142315,3,1,6,6,142507,1,2,10,10,142776,2,1,1,1,143032,3,2,10,10,143225,1,2,1,5,144409,2,1,1,1,144614,3,2,1,5,144736,1,2,-5,-1,144935,2,1,1,1,145136,3,2,-5,-1,145307,1,1,1,1,145501,1,2,6,6,145639,3,1,1,1,145803,3,2,6,6,145920,1,1,1,-1,146539,3,1,1,-1,147076,1,1,1,-1,147342,3,1,1,-1,147800,1,1,1,-1,148034,3,2,-1,-1,148583,3,1,1,-1,148801,1,1,1,-1,148972,2,2,8,8,149321,3,1,10,10,149482,2,2,8,8,149682,1,1,10,10,149817,2,2,10,10,150071,3,1,9,9,150208,2,2,10,10,150411,1,1,9,9,150579,3,1,1,-1,150815,1,1,1,-1,150994,2,2,6,6,151376,3,1,3,3,151523,2,2,6,6,151706,1,1,3,3,151868,2,2,8,8,152108,3,1,5,5,152272,2,2,8,8,152457,1,1,5,5,152639,3,1,1,-1,152848,1,1,1,-1,153062,2,2,2,2,153476,3,1,4,4,153624,2,2,2,2,153807,1,1,4,4,154005,3,1,1,-1,154257,1,1,1,-1,154411,2,2,2,2,155033,3,1,9,9,155183,2,2,2,2,155394,1,1,9,9,155542,3,2,-1,-1,155934,3,1,1,-1,156223,1,1,1,-1,156394,3,2,-1,-1,156943,3,1,1,-1,157138,1,1,1,-1,157303,2,2,8,8,157587,3,1,5,5,157741,2,2,8,8,157927,1,1,5,5,158048,2,2,9,9,158271,2,2,6,6,158481,3,1,3,3,158667,2,2,6,6,158844,2,2,9,9,159097,1,1,3,3,159348,2,2,1,-1,159620,3,1,1,-1,160013,1,1,1,-1,160204,3,1,1,-1,160701,1,1,1,-1,160898,2,2,9,9,161200,3,1,7,7,161353,2,2,9,9,161550,1,1,7,7,161690,2,2,10,10,161945,3,1,5,5,162097,2,2,10,10,162279,1,1,5,5,162488,3,1,1,-1,162725,1,1,1,-1,162903,3,2,-1,-1,163408,3,1,1,-1,163622,1,1,1,-1,163801,3,2,-1,-1,164515,3,1,1,-1,164726,1,1,1,-1,164903,2,2,5,5,165316,3,1,8,8,165466,2,2,5,5,165664,1,1,8,8,165834,2,2,6,6,166048,3,1,10,10,166206,2,2,6,6,166399,1,1,10,10,166552,2,2,1,-1,166812,3,1,1,-1,167307,1,1,1,-1,167550,3,2,-1,-1,167889,3,1,1,-1,168099,1,1,1,-1,168264,2,2,10,10,168610,3,1,7,7,168737,2,2,10,10,168937,1,1,7,7,169097,1,2,1,5,169638,2,1,1,1,169829,3,2,1,5,169974,1,2,-5,-1,170156,2,1,1,1,170359,3,2,-5,-1,170509,1,1,1,1,170725,1,2,6,6,171044,3,1,1,1,171233,3,2,6,6,171380,3,1,1,-1,171994,1,1,1,-1,172271,2,2,6,6,172805,3,1,7,7,172953,2,2,6,6,173153,1,1,7,7,173293,3,1,1,-1,173550,1,2,1,1,173949,1,1,1,-1,174134,3,1,1,-1,174507,1,1,1,-1,174745,3,1,1,-1,175179,1,1,1,-1,175408,2,2,6,6,175720,3,1,8,8,175878,2,2,6,6,176068,1,1,8,8,176218,3,1,1,-1,176470,1,1,1,-1,176635,3,2,-1,-1,177016,3,1,1,-1,177216,1,1,1,-1,177421,2,2,6,6,177798,3,1,4,4,177949,2,2,6,6,178119,1,1,4,4,178288,2,2,5,5,178508,3,1,5,5,178680,2,2,5,5,178896,1,1,5,5,179061,3,1,1,-1,179273,1,1,1,-1,179438,3,1,1,-1,179789,1,1,1,-1,179951,2,2,10,10,180377,3,1,10,10,180554,2,2,10,10,180761,1,1,10,10,180918,3,2,-1,-1,181128,3,1,1,-1,181333,1,1,1,-1,181524,2,2,9,9,181875,3,1,7,7,182031,2,2,9,9,182215,1,1,7,7,182394,3,1,1,-1,182597,1,1,1,-1,182805,2,2,4,4,183243,3,1,2,2,183411,2,2,4,4,183604,1,1,2,2,183761,3,2,-1,-1,184110,3,1,1,-1,184311,1,1,1,-1,184499,2,2,9,9,184766,3,1,4,4,184926,2,2,9,9,185118,1,1,4,4,185268,2,2,7,7,185718,3,1,10,10,186042,2,2,7,7,186288,1,1,10,10,186446,1,1,6,6,186843,1,1,6,6,187197,3,1,1,5,187470,2,2,1,1,187701,1,1,1,5,187850,3,1,-5,-1,188042,2,2,1,1,188254,1,1,-5,-1,188397,1,2,1,1,188564,3,1,6,6,188754,3,2,1,1,188884,1,1,6,6,189053,3,1,1,-1,189624,1,1,1,-1,189956,3,1,6,6,190365,3,1,1,-1,190858,1,1,1,-1,191073,1,1,1,-1,191234,2,1,6,6,191700,3,1,1,-1,192036,3,1,1,-1,192253,1,1,1,-1,192738,3,2,-1,-1,193300,3,1,1,-1,193502,1,1,1,-1,193673,2,2,5,5,194053,3,1,10,10,194216,2,2,5,5,194403,1,1,10,10,194534,3,2,-1,-1,194854,3,1,1,-1,195036,1,1,1,-1,195204,3,2,-1,-1,195503,3,1,1,-1,195685,1,1,1,-1,195869,2,2,4,4,196189,3,1,9,9,196356,2,2,4,4,196536,1,1,9,9,196686,3,1,1,-1,196897,1,2,6,6,197337,1,1,1,1,197518,3,2,6,6,197660,3,1,1,1,197830,1,2,1,5,198054,2,1,1,1,198240,3,2,1,5,198383,1,2,-5,-1,198565,2,1,1,1,198805,3,2,-5,-1,199042,3,0,1,-1,199798,3,2,9,9,200720,3,2,1,-1,200934,2,0,1,1,201445,1,2,1,-1,201713,3,2,7,7,202337,3,2,4,4,202612,1,1,1,1,202823,3,2,1,-1,203160,2,2,6,6,204015,2,0,1,1,204249,1,2,1,-1,204522,3,2,8,8,204825,1,2,-1,-1,205159,3,1,1,1,205361,1,2,-1,-1,205768,3,1,1,1,205988,1,2,-1,-1,206304,3,1,1,1,206516,3,2,5,5,207251,2,1,1,1,207465,2,2,3,3,207688,1,2,1,1,208019,1,1,1,1,208191,1,2,1,1,208468,1,1,1,1,208611,3,2,10,10,209179,3,1,1,1,209396,2,1,1,1,209878,2,2,2,2,210157,1,2,1,1,210439,1,2,1,-1,210701,1,2,1,-1,210925,3,2,1,-1,211156,3,0,1,1,211547,3,2,-1,-1,212060,1,0,1,1,212283,1,2,-1,-1,212871,3,2,3,3,213279,3,2,1,-1,213470,1,2,1,-1,214363,1,1,1,1,214713,3,2,1,-1,215044,1,2,1,-1,215654,2,2,8,8,215980,3,2,-1,-1,216313,3,1,1,1,216488,3,2,-1,-1,216936,3,2,5,5,217317,3,1,1,1,217503,1,2,1,1,217987,1,1,1,1,218193,1,2,1,1,218492,1,1,1,1,218667,1,2,1,1,218995,1,1,1,1,219157,2,1,1,1,219635,2,2,10,10,220022,2,1,1,1,220181,3,2,9,9,220451,2,1,1,1,220949,2,1,1,1,221664,2,2,2,2,221787,1,2,1,-1,222047,1,2,1,-1,222241,3,2,1,-1,222524,3,2,1,-1,222848,3,2,1,-1,223032,1,2,1,-1,223436,3,1,1,-1,223672,3,0,1,1,224262,3,0,1,1,224642,1,0,1,1,224887,3,1,1,1,225039,1,0,7,7,225363,1,2,1,1,225610,3,2,1,1,226092,3,0,7,7,226349,1,0,6,6,226523,1,2,1,1,226733,1,1,1,-1,227072,3,2,9,9,227678,3,2,8,8,228322,2,1,1,1,228540,2,2,6,6,228707,1,1,1,1,229171,3,2,1,-1,229493,2,0,1,1,229922,2,2,10,10,230324,2,0,1,1,230530,2,2,4,4,230857,1,2,1,-1,231091,1,2,1,1,231461,1,1,1,1,231630,3,2,5,5,232069,1,2,2,2,232416,3,2,2,2,232818,1,2,1,1,233010,3,1,1,1,233172,2,2,2,2,233395,1,2,1,1,233659,1,1,1,1,233885,2,1,1,1,234170,2,2,3,3,234377,3,1,1,-1,234723,1,0,1,1,235093,3,1,1,1,235297,1,0,5,5,235884,3,0,1,-1,236116,3,0,1,-1,236331,1,0,1,-1,236580,1,0,1,-1,237092,1,1,1,-1,237326,3,2,1,-1,237568,1,2,1,-1,237874,3,1,1,1,238380,3,2,9,9,238517,1,0,1,1,238729,1,2,1,1,239636,1,1,1,1,239786,3,2,8,8,240096,3,2,7,7,240302,3,1,1,1,240808,2,2,2,2,241029,1,2,1,1,241265,1,1,1,1,241441,3,2,4,4,241772,3,2,6,6,242021,1,2,1,1,242368,3,1,1,1,242544,2,2,9,9,243005,1,2,1,1,243461,1,1,1,1,243628,3,2,5,5,244205,2,1,1,1,244419,2,2,3,3,244746,1,2,1,-1,245154,1,2,1,-1,245331,3,2,1,-1,245719,1,2,10,10,246154,3,2,-1,-1,246364,3,1,1,1,246548,3,2,1,1,246910,3,2,2,2,247172,3,2,1,-1,247461,2,2,9,9,248129,2,0,1,1,248357,3,0,1,1,248834,1,2,1,-1,249196,3,2,6,6,249854,2,1,1,1,251068,2,2,7,7,251354,3,2,1,1,251772,1,1,1,1,251946,3,2,8,8,252532,2,1,1,1,252827,2,2,3,3,253167,3,2,1,1,253522,1,1,1,1,253699,2,1,1,1,254391,3,2,1,-1,254662,2,2,4,4,254992,2,2,5,5,255222,3,2,1,-1,255524,3,2,1,-1,255788,1,2,1,-1,256824,3,2,1,-1,257077,2,1,1,1,257529,2,2,2,2,257655,2,1,1,1,257823,3,2,10,10,258301,1,2,10,10,258724,3,2,-1,-1,258916,1,2,1,1,259414,3,1,1,1,259606,3,2,1,1,259729,3,2,6,6,260232,3,2,1,-1,260472,2,0,1,1,261011,2,2,3,3,261232,2,0,1,1,261467,2,2,7,7,261847,1,0,1,1,262181,1,2,1,-1,262522,2,2,5,5,262858,2,2,3,3,263119,2,2,3,3,263498,2,2,2,2,263742,3,2,10,10,264210,2,1,1,1,264426,2,2,9,9,264585,3,2,1,1,265033,1,1,1,1,265205,2,1,1,1,265680,2,2,4,4,266053,1,2,1,-1,266293,1,2,1,-1,266446,3,2,1,-1,266779,1,2,8,8,267105,3,2,-1,-1,267395,3,1,1,1,267582,3,2,1,1,267979,3,2,9,9,268838,2,1,1,1,269044,2,2,2,2,269617,2,2,6,6,269990,1,1,1,1,270226,3,2,1,-1,270570,3,2,10,10,271074,1,2,1,-1,271397,1,1,1,1,271840,3,2,1,-1,272120,1,2,1,-1,272524,1,2,1,-1,272710,1,2,1,-1,272979,3,2,1,-1,273288,1,2,8,8,273647,1,2,1,-1,273964,1,2,3,3,274538,3,2,1,-1,274724,2,1,1,1,275120,2,2,7,7,275314,2,1,1,1,275591,3,2,1,-1,276026,2,1,1,1,276543,2,2,4,4,276684,2,1,1,1,276864,1,2,1,-1,277486,3,2,-1,-1,277767,3,2,1,1,278147,3,1,1,1,278334,3,2,1,1,278465,3,2,5,5,278911,1,1,1,1,279345,3,1,1,1,279955,3,2,1,-1,280739,3,2,1,-1,280896,3,2,1,-1,282012,1,2,8,8,282320,1,2,7,7,282600,3,2,7,7,282964,1,2,6,6,283156,1,2,6,6,283637,1,2,8,8,283870,3,2,5,5,284399,3,2,2,2,284649,3,2,1,-1,284842,2,0,1,1,285220,1,2,1,-1,285463,3,2,3,3,285777,3,2,4,4,286150,3,2,6,6,286403,1,2,3,3,286720,1,1,1,1,287103,3,2,-1,-1,287256,3,1,1,1,287435,1,2,1,-1,287731,3,2,1,-1,288174,2,1,1,1,288529,2,2,9,9,288680,3,2,1,-1,288955,2,0,1,1,289498,2,2,3,3,289640,3,2,1,-1,289971,3,2,1,-1,290208,2,1,1,1,290731,2,2,4,4,290874,2,1,1,1,291054,3,1,1,-1,291371,3,2,1,1,291814,1,0,1,1,291963,1,2,1,1,292154,1,1,1,-1,292436,3,2,1,-1,292819,3,2,4,4,293913,3,2,2,2,294110,3,2,10,10,294517,3,2,1,-1,294721,3,2,1,-1,295375,1,2,7,7,296035,2,0,1,1,296292,2,2,3,3,296558,3,2,1,-1,296855,3,2,1,-1,297179,1,2,6,6,297520,2,1,1,1,297724,2,2,6,6,297855,3,2,1,-1,298447,2,1,1,1,299083,1,2,4,4,299344,2,1,1,1,299557,3,2,4,4,299675,2,1,1,1,300019,1,2,8,8,300627,2,1,1,1,300815,3,2,8,8,300992,1,2,1,-1,301219,1,0,1,1,301660,3,1,1,1,301897,1,2,1,1,302034,1,1,1,1,302190,3,2,1,-1,302460,2,1,1,1,302878,2,1,1,1,303580,1,2,7,7,303857,1,2,10,10,304173,2,1,1,1,304357,3,2,10,10,304527,3,2,7,7,304797,2,1,1,1,305251,1,2,3,3,305461,2,1,1,1,305660,3,2,3,3,305790,1,2,1,-1,306042,1,0,1,1,306413,3,1,1,1,306659,1,2,1,1,306841,1,1,1,1,306982,3,2,1,-1,307218,2,1,1,1,307721,2,1,1,1,308029,1,2,10,10,308250,2,1,1,1,308464,3,2,10,10,308640,3,2,1,-1,308944,3,2,5,5,309461,3,2,3,3,309717,3,2,2,2,309902,1,2,1,-1,310134,3,1,1,1,310454,1,0,1,1,310595,3,2,1,1,310781,1,1,1,1,310986,3,0,1,1,311144,1,2,2,2,311381,1,2,3,3,311594,1,2,5,5,311951,1,0,1,1,312455,3,1,1,1,313006,1,2,1,1,313162,1,1,1,1,313315,3,2,1,-1,313528,3,2,5,5,313918,3,2,8,8,314190,3,2,10,10,314415,1,2,1,-1,314638,3,1,1,1,315041,1,0,1,1,315176,3,2,1,1,315348,1,1,1,1,315532,3,0,1,1,315700,3,2,1,-1,315943,1,2,5,5,316385,1,2,8,8,316723,1,2,10,10,316947,1,2,1,-1,317266,1,0,1,1,317678,3,1,1,1,317875,1,2,1,1,318018,1,1,1,1,318169,3,2,10,10,318566,3,1,1,1,319101,1,0,1,1,319392,1,0,1,1,319563,3,0,1,1,320037,3,2,1,1,320201,1,1,1,1,320392,3,0,1,1,320588,1,2,1,1,320801,1,2,10,10,321315,3,2,6,6,322033,3,1,1,1,322498,1,0,1,1,322612,3,2,1,1,322809,1,1,1,1,322993,3,0,1,1,323162,1,2,6,6,323591,2,2,5,5,323907,2,2,2,2,324134,2,1,1,1,324529,3,2,2,2,324692,3,2,5,5,324948,2,1,1,1,325146,3,2,5,5,325325,3,2,2,2,325576,3,2,1,-1,325821,3,1,1,1,326197,1,0,1,1,326331,3,2,1,1,326524,1,1,1,1,326706,3,0,1,1,326885,3,2,2,2,327193,3,2,5,5,327495,1,1,1,-1,328019,3,2,1,-1,328281,1,0,1,1,328815,1,2,1,-1,329053,3,0,1,1,329376,3,2,1,1,329552,1,0,1,-1,329808,3,2,1,-1,330109,1,2,1,-1,330444,2,1,1,1,330958,1,0,1,-1,331226,1,0,1,1,331816,1,0,1,1,332002,3,1,1,1,332290,3,0,1,1,333040,3,2,1,-1,333292,3,1,1,-1,333525,1,1,1,-1,333781,3,1,1,1,334171,1,2,1,1,334380,3,1,1,1,334558,3,2,1,1,334666,2,1,1,1,334882,3,1,1,-1,335189,3,0,1,1,335564,1,1,1,1,335907,1,0,1,1,336286,1,1,1,-1,336529,3,1,1,1,336851,3,1,1,1,337019,1,2,1,1,337289,3,1,1,1,337467,2,2,1,1,337684,1,1,1,1,337903,1,2,1,1,338045,3,1,1,1,338263,3,1,1,1,338422,1,2,1,1,338633,3,1,1,1,338832,3,2,1,1,338966,1,1,1,1,339146,1,2,1,1,339316,1,1,1,1,339488,3,2,1,1,339620,1,1,1,-1,339864,1,1,1,1,340281,3,2,1,1,340417,2,1,1,1,340663,1,2,1,1,340825,3,1,1,-1,341128,3,1,1,1,341478,3,0,1,1,341731,1,0,1,-1,341998,1,1,1,1,342400,1,0,1,1,342574,1,2,1,1,342798,3,0,1,1,343024,3,1,1,1,343169,1,0,1,1,343304,3,0,1,-1,343611,3,1,1,1,344198,3,1,1,1,344399,1,0,1,1,344577,3,0,1,1,345043,2,1,1,1,345346,3,1,1,1,345771,1,0,1,1,346071,1,1,1,1,346245,3,2,1,1,346441,3,1,1,1,346597,3,0,1,1,346764,1,1,1,1,346984,3,2,1,1,347134,1,2,1,1,347478,1,0,1,1,347932,1,2,1,1,348098,3,0,1,1,348249,1,1,1,1,348569,1,2,1,-1,348886,2,2,1,1,349416,2,1,-1,-1,349759,1,2,1,1,350273,1,1,1,1,350469,3,2,1,1,350582,2,1,-1,-1,351448,1,2,1,1,351633,3,1,1,1,352006,1,2,1,1,352162,3,2,1,-1,352375,2,1,1,-1,352847,2,2,9,9,354373,3,1,2,2,354547,2,2,1,-1,354757,2,2,9,9,355012,2,2,8,8,355182,2,2,3,3,355583,2,2,2,2,355732,2,2,1,-1,355920,1,1,2,2,356141,3,1,3,3,356598,2,2,1,-1,356803,2,2,9,9,357326,2,2,6,6,357615,2,2,5,5,357755,2,2,3,3,358031,2,2,1,-1,358221,1,1,3,3,358436,2,2,5,5,358721,2,2,8,8,359019,2,2,10,10,359196,2,2,10,10,359361,2,2,9,9,359691,2,2,10,10,359855,3,1,4,4,360064,2,2,1,-1,360280,2,2,10,10,360481,2,2,9,9,360650,2,2,8,8,360845,2,2,5,5,361194,2,2,1,-1,361397,1,1,4,4,361590,2,2,9,9,361987,3,1,5,5,362191,2,2,1,-1,362413,2,2,10,10,362670,2,2,9,9,362827,2,2,7,7,363148,2,2,5,5,363433,2,2,3,3,363611,2,2,1,-1,363805,1,1,5,5,364002,3,1,6,6,364162,2,2,1,-1,364368,2,2,5,5,364713,2,2,8,8,364954,2,2,2,2,365335,2,2,1,-1,365520,1,1,6,6,365763,2,2,4,4,366164,2,2,10,10,366527,3,1,7,7,366689,2,2,1,-1,366904,2,2,8,8,367481,2,2,10,10,367691,2,2,4,4,368049,2,2,1,-1,368239,1,1,7,7,368459,2,2,3,3,368789,2,2,8,8,369112,2,2,10,10,369302,3,1,8,8,369501,2,2,1,-1,369719,2,2,10,10,369954,2,2,9,9,370178,2,2,8,8,370370,2,2,3,3,370715,2,2,2,2,370879,2,2,1,-1,371090,1,1,8,8,371302,2,2,8,8,371760,2,2,9,9,372157,3,1,9,9,372455,2,2,1,-1,372667,2,2,9,9,372936,2,2,7,7,373275,2,2,4,4,373492,2,2,1,-1,373705,1,1,9,9,373927,2,2,2,2,374314,2,2,8,8,374790,3,1,10,10,374978,2,2,1,-1,375153,2,2,9,9,375697,2,2,8,8,375861,2,2,6,6,376142,2,2,2,2,376416,2,2,1,-1,376601,1,1,10,10,376815,2,2,4,4,377122,2,2,5,5,377412,2,2,3,3,377646,2,2,2,2,377807,2,2,9,9,378194,2,2,10,10,378364,3,2,-1,-1,378668,3,1,1,-1,379101,1,1,1,-1,379312,2,2,7,7,379693,3,1,5,5,379839,2,2,7,7,380039,1,1,5,5,380211,3,1,1,-1,380432,1,1,1,-1,380626,2,2,4,4,380954,2,2,4,4,381244,2,2,3,3,381406,3,1,2,2,381599,2,2,3,3,381805,1,1,2,2,381949,2,2,6,6,382245,3,1,3,3,382393,2,2,6,6,382596,1,1,3,3,382768,3,1,1,-1,383035,1,1,1,-1,383222,2,2,2,2,383513,3,1,8,8,383665,3,1,6,6,383877,2,2,2,2,384092,1,1,6,6,384240,1,1,8,8,384477,3,1,1,-1,384752,1,1,1,-1,384960,2,2,6,6,385249,3,1,9,9,385406,2,2,6,6,385619,1,1,9,9,385785,2,2,10,10,386080,3,1,7,7,386226,2,2,10,10,386450,1,1,7,7,386590,3,1,1,-1,386795,1,1,1,-1,386970,3,2,-1,-1,387284,3,1,1,-1,387484,1,1,1,-1,387705,2,2,10,10,387960,3,1,7,7,388145,3,1,9,9,388323,2,2,10,10,388605,1,1,9,9,388776,1,1,7,7,388989,3,1,1,-1,389217,1,1,1,-1,389390,2,2,2,2,390048,3,1,10,10,390211,2,2,2,2,390426,1,1,10,10,390587,3,1,1,-1,390870,1,1,1,-1,391026,2,2,10,10,391539,3,1,3,3,391705,2,2,10,10,391879,1,1,3,3,392051,3,2,-1,-1,392194,3,1,1,-1,392394,1,1,1,-1,392547,2,2,9,9,392844,3,1,4,4,392994,2,2,9,9,393182,1,1,4,4,393334,3,2,-1,-1,393551,2,2,1,-1,393797,3,1,1,-1,394254,1,2,1,1,394709,1,1,1,-1,394951,3,1,1,-1,395334,1,1,1,-1,395564,2,2,6,6,395861,3,1,4,4,396000,3,1,3,3,396179,2,2,6,6,396370,1,1,4,4,396524,1,1,3,3,396705,3,1,1,-1,396985,1,1,1,-1,397151,2,2,6,6,397383,3,1,7,7,397547,3,1,10,10,397859,2,2,6,6,398091,1,1,10,10,398244,1,1,7,7,398496,3,1,1,-1,398736,3,2,1,1,399074,1,1,1,-1,399271,3,1,1,-1,399667,1,1,1,-1,399905,2,2,4,4,400224,3,1,7,7,400383,2,2,4,4,400579,1,1,7,7,400765,3,1,1,-1,401005,1,2,1,1,401462,1,1,1,-1,401860,1,2,-1,-1,402310,2,2,6,6,402638,3,1,2,2,402812,2,2,6,6,402999,1,1,2,2,403146,3,2,-1,-1,403459,3,1,1,-1,403709,3,2,1,1,404054,1,1,1,-1,404285,3,1,1,-1,404594,1,1,1,-1,404773,2,2,8,8,405071,3,1,4,4,405214,2,2,8,8,405422,1,1,4,4,405589,2,2,9,9,405808,3,1,5,5,405968,2,2,9,9,406163,1,1,5,5,406367,3,1,1,-1,407487,1,1,1,-1,407686,3,2,-1,-1,408037,3,1,1,-1,408216,1,1,1,-1,408388,3,2,-1,-1,408679,3,1,1,-1,408853,1,1,1,-1,409014,3,2,-1,-1,409424,2,2,9,9,409735,3,1,7,7,409892,2,2,9,9,410069,1,1,7,7,410253,3,2,-1,-1,410440,3,1,1,5,410824,2,2,1,1,411018,1,1,1,5,411176,3,1,-5,-1,411365,2,2,1,1,411578,1,1,-5,-1,411744,1,2,1,1,412615,3,1,6,6,412786,3,2,1,1,412965,1,1,6,6,413107,3,1,1,-1,413572,1,1,1,-1,413783,2,2,5,5,414079,3,1,4,4,414220,2,2,5,5,414429,1,1,4,4,414587,3,1,1,-1,414896,1,1,1,-1,415080,3,2,-1,-1,415697,3,1,1,-1,415904,1,1,1,-1,416116,2,2,3,3,416504,3,1,3,3,416647,2,2,3,3,416828,1,1,3,3,416974,2,2,8,8,417309,3,1,3,3,417464,2,2,8,8,417621,1,1,3,3,417790,3,1,1,-1,418071,1,1,1,-1,418248,3,2,-1,-1,418610,3,1,1,-1,418810,1,1,1,-1,418978,3,1,1,-1,419465,1,1,1,-1,419649,2,2,4,4,419958,2,2,6,6,420157,3,1,4,4,420462,2,2,6,6,420689,2,2,4,4,420891,1,1,4,4,421103,2,2,5,5,421646,3,1,2,2,421805,2,2,5,5,422002,1,1,2,2,422170,3,2,-1,-1,422502,3,1,1,-1,422724,1,1,1,-1,422864,2,2,7,7,423198,3,1,7,7,423350,2,2,7,7,423545,1,1,7,7,423715,2,2,10,10,423981,3,1,8,8,424389,2,2,10,10,424611,1,1,8,8,424785,2,2,1,-1,425013,3,1,1,-1,425391,1,1,1,-1,425609,2,2,-1,-1,426046,2,2,5,5,426431,3,1,8,8,426596,2,2,5,5,426803,1,1,8,8,426948,3,2,10,10,427254,3,2,10,10,427643,3,2,10,10,427797,3,2,-1,-1,428193,1,2,10,10,428620,3,2,-1,-1,429172,3,2,10,10,429637,3,2,-1,-1,429924,3,2,10,10,430117,2,2,1,-1,430517,1,1,1,-1,430930,1,2,1,-1,431131,3,1,1,-1,431341,2,1,5,5,431846,2,1,6,6,432015,2,1,10,10,432388,1,2,2,2,432644,2,1,1,1,432956,3,2,2,2,433099,2,1,1,-1,433277,2,1,4,4,433681,2,2,3,3,433838,2,2,3,3,434337,2,1,6,6,434524,2,1,5,5,434716,2,1,3,3,434947,2,1,8,8,435361,2,1,9,9,435550,2,1,10,10,435718,2,1,1,-1,435989,1,2,2,2,436342,2,1,1,1,436594,3,2,2,2,436731,2,1,3,3,436968,1,2,3,3,437206,2,1,1,1,437434,3,2,3,3,437563,2,1,1,-1,437752,2,1,3,3,437963,2,1,4,4,438149,2,1,2,2,438422,2,1,6,6,438749,2,1,9,9,438964,2,1,1,-1,439187,1,2,3,3,439550,2,1,1,1,439759,3,2,3,3,439887,1,1,1,1,440073,2,1,3,3,440295,1,2,3,3,440480,2,1,1,1,440702,3,2,3,3,440833,2,1,3,3,441091,1,2,3,3,441259,2,1,1,1,441477,3,2,3,3,441641,2,1,5,5,441914,2,1,6,6,442085,1,2,4,4,442339,2,1,1,1,442587,3,2,4,4,442730,2,1,1,-1,442937,2,1,5,5,443181,2,1,8,8,443420,2,1,1,-1,443636,1,2,4,4,444198,2,1,1,1,444421,3,2,4,4,444563,1,1,1,1,444744,1,2,4,4,444880,2,1,1,1,445067,3,2,4,4,445268,2,1,5,5,445728,2,1,7,7,445908,1,2,4,4,446202,2,1,1,1,446476,3,2,4,4,446618,1,1,1,1,446803,2,1,5,5,447113,1,2,4,4,447324,2,1,1,1,447634,3,2,4,4,447825,2,1,6,6,448179,2,1,5,5,448527,1,2,4,4,448747,2,1,1,1,449019,3,2,4,4,449173,2,1,6,6,449466,2,1,7,7,449635,1,2,5,5,449868,2,1,1,1,450141,3,2,5,5,450331,2,1,1,-1,450534,2,1,5,5,450889,2,1,6,6,451142,2,1,7,7,451301,2,1,10,10,451611,2,1,4,4,451971,2,1,3,3,452144,2,1,2,2,452394,2,1,1,-1,452680,1,2,5,5,452915,2,1,1,1,453128,3,2,5,5,453310,1,1,1,1,453486,1,2,5,5,453783,2,1,1,1,453995,3,2,5,5,454162,2,1,1,-1,454346,2,1,2,2,454586,2,1,7,7,454955,2,1,1,-1,455156,1,2,5,5,455454,2,1,1,1,455664,3,2,5,5,455814,1,1,1,1,455996,1,2,5,5,456165,2,1,1,1,456343,3,2,5,5,456470,2,1,2,2,456678,1,2,5,5,456837,2,1,1,1,457025,3,2,5,5,457179,2,1,10,10,457598,1,2,6,6,457800,1,1,1,1,458101,3,2,6,6,458238,2,1,1,-1,458446,2,1,6,6,458742,2,1,10,10,459016,2,1,2,2,459419,2,1,1,-1,459613,1,2,6,6,459814,3,1,1,1,460001,3,2,6,6,460116,1,1,1,1,460323,1,2,6,6,460962,1,1,1,1,461287,3,2,6,6,461403,2,1,1,-1,461610,2,1,1,-1,461819,1,2,6,6,462137,3,1,1,1,462333,3,2,6,6,462457,2,1,3,3,462728,2,1,5,5,462983,2,1,6,6,463165,2,1,7,7,463335,2,1,9,9,463630,1,2,7,7,463899,2,1,1,1,464156,3,2,7,7,464310,2,1,1,-1,464498,2,1,2,2,464805,2,1,6,6,465161,2,1,7,7,465363,2,1,8,8,465580,2,1,9,9,465787,2,1,1,-1,466017,2,1,5,5,466362,1,2,7,7,466601,2,1,1,1,466855,3,2,7,7,466986,1,1,1,1,467197,2,1,6,6,467543,2,1,9,9,467801,1,2,7,7,468029,2,1,1,1,468330,3,2,7,7,468520,2,1,3,3,468960,2,1,7,7,469310,2,1,8,8,469477,2,1,9,9,469630,1,2,7,7,469967,2,1,1,1,470287,3,2,7,7,470440,1,1,1,1,470615,1,2,7,7,470762,2,1,1,1,470975,3,2,7,7,471116,2,1,5,5,471527,2,1,6,6,471677,2,1,8,8,471934,2,1,9,9,472106,2,1,1,-1,472377,2,1,1,-1,472920,1,2,7,7,473150,2,1,1,1,473362,3,2,7,7,473516,2,1,3,3,473815,2,1,4,4,473956,2,1,6,6,474233,2,1,7,7,474397,2,1,10,10,474702,1,2,8,8,474960,2,1,1,1,475280,3,2,8,8,475486,2,1,7,7,476041,1,2,8,8,476282,2,1,1,1,476565,3,2,8,8,476717,1,1,1,1,476914,1,2,8,8,477028,2,1,1,1,477234,3,2,8,8,477389,2,1,5,5,477860,2,1,8,8,478125,2,1,9,9,478298,2,1,3,3,478678,1,2,8,8,478906,2,1,1,1,479132,3,2,8,8,479258,1,1,1,1,479462,1,2,8,8,479590,2,1,1,1,479802,3,2,8,8,479959,2,1,1,-1,480228,2,1,4,4,480515,2,1,6,6,480699,2,1,9,9,481012,2,1,1,-1,481255,2,1,10,10,481603,1,2,8,8,482056,2,1,2,2,482404,2,1,1,1,482752,2,1,2,2,482935,3,2,8,8,483142,2,1,4,4,483406,2,1,5,5,483572,1,2,9,9,483815,2,1,1,1,484060,3,2,9,9,484198,1,2,9,9,484839,2,1,1,1,485054,3,2,9,9,485201,1,1,1,1,485383,1,2,9,9,485533,2,1,1,1,485720,3,2,9,9,485868,2,1,4,4,486269,2,2,9,9,486454,1,2,9,9,486706,3,2,9,9,487108,3,2,9,9,487253,3,2,9,9,487511,2,1,6,6,487888,1,2,9,9,488108,2,1,1,1,488347,3,2,9,9,488490,1,1,1,1,488685,1,2,9,9,488813,2,1,1,1,489008,3,2,9,9,489140,2,1,1,-1,489376,2,1,10,10,489779,2,1,1,-1,490042,1,2,9,9,490458,2,1,1,1,490658,3,2,9,9,490788,1,1,1,1,490975,1,2,9,9,491103,2,1,1,1,491299,3,2,9,9,491437,2,1,2,2,491638,2,1,5,5,491872,1,2,9,9,492106,2,1,1,1,492344,3,2,9,9,492497,2,1,7,7,492828,1,2,-1,-1,493037,3,2,-1,-1,493917,1,2,10,10,494092,2,1,1,1,494275,3,2,10,10,494431,2,1,5,5,494839,2,1,8,8,495047,1,2,10,10,495284,2,1,1,1,495664,3,2,10,10,495908,1,1,1,1,496149,1,2,10,10,496282,2,1,1,1,496461,2,2,1,-1,496773,2,2,1,-1,497457,3,2,10,10,497820,2,1,1,-1,498074,2,1,10,10,498650,2,1,1,-1,498876,1,2,10,10,499258,2,1,1,1,499459,3,2,10,10,499598,1,1,1,1,499780,1,2,10,10,499924,2,1,1,1,500116,3,2,10,10,500272,2,1,7,7,500679,1,2,10,10,500866,2,1,1,1,501169,3,2,10,10,501593,2,1,3,3,501848,2,1,-1,-1,502273,2,1,1,-1,502493,3,1,1,1,502974,3,1,1,1,503121,1,1,1,1,503542,1,2,6,6,503842,1,1,1,1,504030,3,2,6,6,504159,3,1,1,1,504329,1,2,1,5,504656,2,1,1,1,504860,3,2,1,5,505009,1,2,-5,-1,505215,2,1,1,1,505399,3,2,-5,-1,505574,3,2,2,2,505931,2,1,1,-1,506137,2,1,3,3,506532,2,1,7,7,506897,2,1,8,8,507065,2,1,10,10,507324,2,1,1,-1,507553,1,2,2,2,507955,1,1,1,1,508167,3,2,2,2,508286,2,1,7,7,508934,2,1,8,8,509093,1,2,2,2,509391,1,1,1,1,509619,3,2,2,2,509753,2,1,3,3,510133,2,1,10,10,510530,1,2,2,2,510724,3,2,3,3,510872,2,1,1,-1,511055,2,1,10,10,511325,2,1,7,7,511690,2,1,6,6,511863,2,1,5,5,512056,2,1,3,3,512297,2,1,2,2,512501,2,1,10,10,512949,2,1,1,-1,513177,1,2,3,3,513533,1,1,1,1,513770,3,2,3,3,513890,2,1,2,2,514272,2,1,3,3,514425,2,1,5,5,514695,2,1,7,7,514892,1,2,3,3,515152,1,1,1,1,515362,3,2,3,3,515493,2,1,6,6,515898,1,2,3,3,516070,3,2,4,4,516236,2,1,1,-1,516419,2,1,9,9,516806,2,1,7,7,517024,2,1,6,6,517207,2,1,3,3,517530,2,1,1,-1,517773,1,2,4,4,517967,1,1,1,1,518177,3,2,4,4,518286,2,1,3,3,518629,2,1,7,7,518939,2,1,6,6,519229,2,1,9,9,519495,1,2,4,4,519730,3,2,5,5,519911,2,1,1,-1,520107,2,1,5,5,520837,2,1,3,3,521087,2,1,2,2,521279,2,1,1,-1,521485,1,2,5,5,521687,1,1,1,1,521871,3,2,5,5,522007,2,1,5,5,522789,1,2,5,5,523001,1,1,1,1,523217,3,2,5,5,523355,1,2,5,5,523854,1,1,1,1,524052,3,2,5,5,524188,2,1,2,2,524533,2,1,3,3,524696,1,2,5,5,525205,1,2,6,6,525438,1,1,1,1,525669,3,2,6,6,525750,3,1,1,1,525931,2,1,1,-1,526142,2,1,2,2,526572,2,1,5,5,526800,2,1,9,9,527103,2,1,1,-1,527320,1,2,6,6,527679,1,1,1,1,527863,3,2,6,6,527987,1,2,6,6,528836,1,1,1,1,529036,3,2,6,6,529171,1,2,6,6,529879,1,1,1,1,530077,3,2,6,6,530232,2,1,2,2,530602,2,1,9,9,530972,2,1,5,5,531332,1,2,6,6,531535,1,1,1,1,531740,3,2,6,6,531876,2,1,5,5,532151,1,2,6,6,532337,2,1,1,1,532555,1,1,1,1,532990,3,2,6,6,533152,2,1,5,5,533439,1,2,6,6,533663,1,1,1,1,533889,3,2,6,6,533999,1,1,1,1,534239,1,2,6,6,534372,3,1,1,1,534557,3,2,6,6,534679,3,2,7,7,534855,2,1,1,-1,535072,2,1,2,2,535406,2,1,3,3,535569,2,1,5,5,535777,2,1,9,9,536038,2,1,8,8,536394,2,1,9,9,536577,2,1,1,-1,536805,1,2,7,7,537163,1,1,1,1,537370,3,2,7,7,537491,1,2,7,7,538015,1,1,1,1,538191,3,2,7,7,538324,2,1,2,2,538675,2,1,3,3,538839,2,1,5,5,539049,2,1,8,8,539314,1,2,7,7,539517,3,2,8,8,539674,2,1,1,-1,539879,2,1,9,9,540268,2,1,8,8,540456,2,1,7,7,540647,2,1,6,6,540866,2,1,5,5,541066,2,1,3,3,541357,2,1,1,-1,541558,1,2,8,8,541789,1,1,1,1,541996,3,2,8,8,542141,2,1,4,4,542501,2,1,7,7,542812,2,1,4,4,543154,2,1,3,3,543370,1,2,8,8,543651,1,1,1,1,543882,3,2,8,8,544020,2,1,5,5,544364,2,1,6,6,544524,2,1,9,9,544805,1,2,8,8,545167,1,1,1,1,545391,3,2,8,8,545541,2,1,7,7,546235,2,1,8,8,546580,2,1,7,7,546766,1,2,8,8,546981,3,2,9,9,547139,2,1,1,-1,547325,2,1,9,9,547708,2,1,8,8,547898,2,1,3,3,548248,2,1,2,2,548446,2,1,1,-1,548657,1,2,9,9,548870,1,1,1,1,549069,3,2,9,9,549217,2,1,2,2,549598,1,2,9,9,549856,1,1,1,1,550043,3,2,9,9,550201,2,1,9,9,550968,1,2,9,9,551325,1,1,1,1,551578,3,2,9,9,551721,2,1,3,3,552047,2,1,8,8,552379,1,2,9,9,552582,3,2,10,10,552765,2,1,1,-1,552984,2,1,7,7,553433,2,1,5,5,553669,2,1,3,3,553897,2,1,2,2,554106,2,1,1,-1,554339,1,2,10,10,554555,1,1,1,1,554757,3,2,10,10,554900,2,1,7,7,555530,1,2,10,10,555774,1,1,1,1,555981,3,2,10,10,556272,2,1,3,3,556687,1,2,10,10,556884,1,1,1,1,557081,3,2,10,10,557211,2,1,2,2,557500,2,1,5,5,557900,2,1,2,2,558163,1,2,10,10,558462,1,1,1,1,558665,3,2,10,10,558818,2,1,2,2,559087,1,2,10,10,559265,3,1,1,1,559464,3,2,10,10,559546,2,1,2,2,559821,1,2,10,10,559980,1,1,1,1,560181,3,2,10,10,560295,2,1,2,2,560516,1,2,10,10,560842"; + +// console.log(icsMoves.split(",").map((s: string) => parseInt(s)).length); + +const width = 40; +function layer(n: number): number { + return n < 0 ? n + width + 1 : n; +} + +const nums = icsMoves.split(",").map((s: string) => parseInt(s)); +const algBuilder = new AlgBuilder(); +for (let i = 0; i < nums.length; i += 5) { + const amount: number = [0, 1, 2, -1][nums[i]]; + let innerLayer: number | null = layer(nums[i + 3]); + let outerLayer: number | null = layer(nums[i + 2]); + if (outerLayer === innerLayer) { + outerLayer = null; + const family = "FUR"[nums[i + 1]]; + if (innerLayer === 1) { + innerLayer = null; + } + algBuilder.push( + new Move(new QuantumMove(family, innerLayer, outerLayer), amount), + ); + } else if (outerLayer === 1 && innerLayer === width) { + const family = "zyx"[nums[i + 1]]; + algBuilder.push(new Move(new QuantumMove(family), amount)); + } else { + const family = "fur"[nums[i + 1]]; + algBuilder.push( + new Move(new QuantumMove(family, innerLayer, outerLayer), amount), + ); + } +} + +algBuilder.push(new Move("z")); +export const solutionAlg = algBuilder.toAlg(); diff --git a/src/sites/experiments.cubing.net/cubing.js/stress-tests/40x40x40.ts b/src/sites/experiments.cubing.net/cubing.js/stress-tests/40x40x40.ts index 4ee7c3673..255fa5c80 100644 --- a/src/sites/experiments.cubing.net/cubing.js/stress-tests/40x40x40.ts +++ b/src/sites/experiments.cubing.net/cubing.js/stress-tests/40x40x40.ts @@ -1,61 +1,18 @@ // Stub file for testing. // Feel free to add code here if you need a quick place to run some code, but avoid committing any changes. -import { Move, QuantumMove } from "../../../../cubing/alg"; -import { AlgBuilder } from "../../../../cubing/alg/AlgBuilder"; import { TwistyAlgViewer, TwistyPlayer } from "../../../../cubing/twisty"; import { experimentalSetPuzzleAlgValidation } from "../../../../cubing/twisty/model/props/puzzle/state/PuzzleAlgProp"; -// import { TwistyPlayer } from "../../../../cubing/twisty"; +import { solutionAlg } from "./40x40x40-solve"; experimentalSetPuzzleAlgValidation(false); -const icsMoves = - "3,2,1,-1,2927,2,2,37,37,4785,2,0,1,1,5328,2,2,20,20,6166,1,2,1,-1,6666,3,2,28,28,7230,2,2,1,-1,7538,3,2,1,-1,10054,3,2,35,35,11989,1,2,1,-1,14032,2,0,1,1,14527,1,2,1,-1,14805,2,2,12,12,15405,2,2,13,13,15607,2,2,17,17,16222,2,2,7,7,16697,2,2,6,6,16871,2,2,36,36,17899,3,2,1,-1,18258,3,2,1,-1,19518,3,2,1,-1,19936,1,1,1,1,21154,3,2,1,-1,22566,2,2,33,33,23481,2,2,8,8,24734,2,0,1,1,25262,1,2,1,-1,25548,3,2,9,9,26497,2,1,1,1,27861,3,2,1,-1,28137,2,2,30,30,28612,1,2,1,-1,29218,1,2,-1,-1,29869,3,1,1,1,30066,3,2,22,22,32756,2,1,1,1,33036,2,1,1,1,33849,3,2,5,5,34216,2,1,1,1,34422,3,2,1,-1,34735,2,2,4,4,35750,2,2,11,11,36221,2,2,23,23,37033,2,2,29,29,37708,2,2,39,39,38216,1,2,1,-1,38520,1,2,-1,-1,39059,3,1,1,1,39272,3,2,35,35,39949,3,2,18,18,41205,3,2,16,16,41532,1,2,-1,-1,42774,3,1,1,1,43000,3,2,34,34,43710,3,2,27,27,44297,3,2,19,19,45135,3,2,3,3,46188,1,2,1,1,47612,1,1,1,1,47803,3,2,32,32,50029,3,2,38,38,50541,1,2,1,1,51832,1,1,1,1,52175,2,1,1,1,54412,3,2,1,-1,54711,2,2,15,15,55458,2,2,21,21,55930,2,2,26,26,56756,2,0,1,1,57301,1,2,1,-1,57610,3,2,10,10,58645,1,2,1,1,59411,1,1,1,1,59598,3,2,14,14,60527,3,2,25,25,61569,1,2,1,-1,62323,3,0,1,1,63657,3,2,31,31,65343,3,2,28,28,65745,3,2,20,20,66262,3,2,13,13,67102,3,2,1,-1,67586,2,2,12,12,69680,2,2,7,7,70230,2,0,1,1,70669,2,2,3,3,71693,1,2,1,-1,73445,3,2,34,34,74395,3,2,29,29,74796,3,2,5,5,76429,1,2,1,-1,76663,1,2,1,-1,79138,1,2,27,27,80134,2,0,1,1,81080,1,2,1,-1,81351,2,2,15,15,82330,2,1,1,1,82537,1,2,1,-1,83458,1,1,1,1,84138,3,2,14,14,85011,3,2,1,-1,85759,2,2,24,24,87017,2,0,1,1,88103,2,2,18,18,89498,1,2,1,-1,89897,3,2,-1,-1,92213,3,2,6,6,93066,3,1,1,1,93237,2,1,1,1,95333,2,1,1,1,95671,3,2,35,35,96015,2,1,1,1,96185,3,2,1,-1,96551,2,2,33,33,97821,2,2,21,21,98756,2,2,8,8,99778,2,2,4,4,100232,1,2,1,-1,100700,3,2,-1,-1,101779,3,1,1,1,102042,3,2,32,32,103256,2,1,1,1,104947,3,2,1,-1,105397,2,2,17,17,106398,2,2,19,19,106735,2,2,2,2,107662,2,2,36,36,108715,1,2,1,-1,109196,1,2,1,1,109860,1,1,1,1,110006,3,2,16,16,110775,3,2,38,38,112067,2,1,1,1,112337,3,2,1,-1,112646,2,2,30,30,113514,1,2,1,-1,114646,1,2,1,1,115455,1,1,1,1,115626,3,2,25,25,116780,3,2,26,26,117018,2,1,1,1,118104,3,2,1,-1,118520,2,2,37,37,119365,2,2,23,23,120210,2,2,10,10,120875,1,2,1,-1,121177,1,2,1,1,121748,1,1,1,1,121885,3,2,9,9,122877,3,2,22,22,123878,2,1,1,1,124929,3,2,1,-1,125214,2,2,39,39,126060,2,2,11,11,127308,1,2,1,-1,127690,1,2,1,-1,128145,3,0,1,1,129435,3,2,3,3,131134,3,2,1,-1,131414,2,0,1,1,132952,2,2,12,12,134500,2,2,7,7,134870,1,2,1,-1,135151,3,2,16,16,136513,3,2,30,30,137605,2,1,1,1,137924,3,2,1,-1,138199,2,2,34,34,138880,3,2,1,-1,139184,1,2,17,17,140826,3,2,1,-1,141167,3,2,8,8,142033,1,2,1,-1,143507,2,0,1,1,144072,1,2,1,-1,144348,2,2,37,37,145055,2,2,33,33,145838,1,2,1,-1,147574,3,2,1,-1,148210,2,2,15,15,148585,1,2,1,-1,148924,1,1,1,1,149333,3,2,20,20,150194,3,2,21,21,150426,3,2,23,23,150862,3,2,24,24,151103,3,2,29,29,151795,3,2,1,-1,152868,2,2,5,5,154402,2,0,1,1,155279,2,2,35,35,155866,2,2,38,38,156367,2,2,28,28,157008,1,2,1,-1,157736,3,2,31,31,159433,3,2,-1,-1,160416,3,1,1,1,160708,3,2,25,25,162191,2,1,1,1,163121,3,2,1,-1,163493,2,2,22,22,164033,1,2,1,-1,164279,1,2,1,1,165230,1,1,1,1,165400,2,1,1,1,167060,3,2,1,-1,167358,2,2,8,8,168168,1,2,1,-1,168540,1,2,1,1,169118,1,1,1,1,169294,3,2,4,4,169797,3,2,11,11,170394,3,2,36,36,171781,2,1,1,1,172009,3,2,1,-1,172348,2,2,27,27,173099,2,2,19,19,173712,1,2,1,-1,174059,1,2,1,1,174703,1,1,1,1,174867,3,2,10,10,175614,3,2,26,26,176424,2,1,1,1,176919,3,2,1,-1,177201,2,2,18,18,177887,2,2,13,13,178303,2,2,1,-1,178528,1,1,1,1,179778,3,2,1,-1,180098,3,2,19,19,181657,3,2,10,10,182092,3,2,7,7,182418,3,2,1,-1,182678,2,0,1,1,184156,2,2,20,20,185746,2,2,6,6,186338,1,2,1,-1,186614,3,2,5,5,187359,3,2,4,4,187595,3,2,30,30,188435,1,2,1,-1,189045,3,2,28,28,190133,1,2,1,-1,191496,1,2,35,35,192616,2,0,1,1,193761,1,2,1,-1,194046,2,2,13,13,194757,2,2,17,17,195190,2,2,18,18,195367,2,2,31,31,196252,2,2,33,33,196554,2,2,39,39,197033,2,1,1,1,197251,1,2,1,-1,197733,1,1,1,1,198212,3,2,21,21,198983,3,2,1,-1,199841,2,2,32,32,200676,2,2,29,29,201051,2,2,10,10,201746,2,2,10,10,202583,2,2,11,11,202792,2,0,1,1,203103,2,2,3,3,203939,2,2,27,27,204799,1,2,1,-1,205165,3,2,36,36,205778,1,2,1,1,207146,1,1,1,1,207319,3,2,8,8,208136,3,2,9,9,208390,3,2,2,2,208844,3,2,26,26,209663,3,2,24,24,209985,2,1,1,1,210475,3,2,1,-1,210744,2,2,37,37,211545,1,2,1,-1,211936,1,2,1,1,212568,1,1,1,1,212765,3,2,15,15,213593,2,1,1,1,214192,2,1,1,1,214669,3,2,34,34,214972,2,1,1,1,215182,3,2,1,-1,215422,2,2,38,38,216057,2,2,22,22,216540,2,2,16,16,217045,1,2,1,-1,217521,1,2,1,1,218097,1,1,1,1,218298,3,2,25,25,219282,3,2,28,28,219731,3,2,23,23,220173,2,1,1,1,220876,3,2,1,-1,221126,2,2,12,12,221792,2,2,1,-1,221997,3,2,-1,-1,222920,3,1,1,1,223113,3,2,1,1,223963,3,2,4,4,224475,3,2,18,18,225401,3,2,21,21,225973,3,2,28,28,226477,3,2,1,-1,227294,3,2,39,39,227797,2,2,32,32,229749,2,2,12,12,231212,2,0,1,1,231977,2,2,10,10,232973,2,2,16,16,233891,2,2,25,25,234525,1,2,1,-1,235549,3,2,34,34,236264,3,2,36,36,236779,1,2,1,-1,239072,3,2,30,30,241718,1,2,1,-1,242037,2,0,1,1,245263,1,2,1,-1,245555,2,2,2,2,246426,2,2,11,11,247592,2,2,35,35,248937,2,1,1,1,249210,2,2,1,-1,249552,3,2,1,-1,249990,1,1,1,1,250462,3,2,26,26,251321,3,2,15,15,252849,3,2,1,-1,253478,2,2,30,30,255890,2,2,23,23,256409,2,2,38,38,257208,2,0,1,1,257457,1,2,1,-1,259707,3,2,33,33,260744,3,2,22,22,261978,3,2,5,5,262881,3,2,1,1,263325,1,1,1,1,263500,3,2,3,3,264557,3,2,14,14,265028,3,2,13,13,265230,3,2,17,17,265672,3,2,24,24,266521,2,1,1,1,267899,3,2,1,-1,268191,2,2,9,9,270368,2,2,6,6,270653,1,2,1,-1,270995,3,2,1,1,271405,1,1,1,1,271588,3,2,19,19,273268,3,2,27,27,274146,3,2,29,29,274572,3,2,37,37,275425,2,1,1,1,275641,3,2,1,-1,275948,2,2,31,31,276914,2,2,20,20,277783,2,2,1,-1,278679,3,2,1,-1,279699,3,2,1,-1,280435,3,2,1,-1,281358,3,2,1,-1,283092,3,2,1,-1,283387,3,1,1,-1,283945,1,1,1,-1,285288,1,1,1,-1,285536,3,1,1,-1,287878,1,2,1,1,288458,1,1,1,1,288669,3,2,1,-1,290671,2,2,1,-1,292697,3,2,1,-1,293525,3,2,1,-1,294360,3,2,1,-1,295329,3,2,1,-1,297419,3,2,1,-1,298037,3,1,1,-1,298380,1,1,1,-1,300698,1,1,1,-1,300990,3,0,1,-1,303427,1,0,1,-1,305293,1,0,1,-1,305621,3,0,1,-1,306719,3,1,1,-1,307051,1,2,1,1,307806,1,1,1,1,307930,1,2,1,-1,308181,3,2,8,8,309053,3,2,1,1,309564,3,1,1,-1,309833,1,0,1,1,310310,3,1,1,1,310460,1,1,1,-1,310688,3,2,1,1,311163,3,2,6,6,312091,3,2,1,-1,313941,2,2,26,26,315403,2,2,12,12,316667,2,2,7,7,317082,2,0,1,1,317338,2,2,11,11,318542,1,2,1,-1,320590,3,2,17,17,321343,3,2,25,25,321875,3,2,13,13,323348,3,2,33,33,323956,3,2,39,39,324668,1,2,1,-1,325053,3,2,9,9,327975,1,2,1,-1,328475,1,2,27,27,329490,1,2,31,31,330400,1,2,15,15,331300,1,2,8,8,331830,2,0,1,1,332851,1,2,1,-1,333163,2,2,3,3,334572,2,2,18,18,335099,2,2,32,32,336003,2,2,34,34,336478,2,1,1,1,336692,2,2,1,-1,337237,3,2,1,-1,337641,1,1,1,1,338291,3,2,29,29,339136,3,2,1,-1,340758,2,2,19,19,341434,2,2,10,10,342346,2,2,30,30,343347,2,2,38,38,343850,2,0,1,1,344151,2,2,14,14,346356,1,2,1,-1,347112,3,2,4,4,348067,3,2,9,9,348565,3,2,21,21,349625,3,2,35,35,350849,2,1,1,1,351091,3,2,1,-1,351358,2,2,24,24,352249,1,2,1,-1,352647,3,2,1,1,353334,1,1,1,1,353599,3,2,23,23,354586,3,2,5,5,356349,3,2,2,2,357034,3,2,37,37,358338,2,1,1,1,359032,3,2,1,-1,359316,2,2,28,28,361110,1,2,1,-1,362440,1,2,1,-1,362603,3,2,-1,-1,363784,3,1,1,1,363987,3,2,1,1,364730,3,2,4,4,365104,3,2,8,8,365510,3,2,20,20,366251,3,2,19,19,366424,3,2,29,29,367459,3,2,1,-1,367717,2,2,39,39,369273,2,2,21,21,370098,2,2,12,12,370746,2,0,1,1,371213,2,2,14,14,372173,2,2,22,22,373398,2,2,37,37,374204,1,2,1,-1,374507,3,2,3,3,376808,1,2,1,-1,377045,3,2,10,10,377757,1,2,1,-1,379356,1,2,32,32,380140,1,2,33,33,380372,1,2,30,30,380884,1,2,28,28,381319,1,2,25,25,381729,1,2,13,13,382688,1,2,17,17,383135,1,2,6,6,383904,1,2,5,5,384142,2,0,1,1,384489,1,2,1,-1,384797,2,2,10,10,385498,2,2,31,31,386893,2,2,34,34,387269,2,1,1,1,387438,1,2,1,-1,387816,1,1,1,1,388357,3,2,24,24,389097,3,2,23,23,389303,3,2,18,18,389883,3,2,16,16,390279,3,2,1,-1,391340,2,2,38,38,392141,2,2,26,26,392919,2,2,15,15,393500,2,0,1,1,394208,1,2,1,-1,396147,3,2,36,36,396757,3,2,35,35,396961,3,2,27,27,397775,3,2,11,11,399108,3,2,1,-1,399508,1,2,1,-1,400067,1,2,1,-1,400293,3,2,-1,-1,401373,3,2,1,1,402120,1,1,1,1,402310,3,2,1,-1,402773,3,2,16,16,403682,3,2,17,17,403889,3,2,18,18,404123,3,2,25,25,404712,3,2,26,26,404936,3,2,29,29,405446,3,2,1,-1,405719,2,2,33,33,406515,2,2,39,39,407041,2,2,24,24,407983,2,2,22,22,408300,2,2,8,8,409276,2,2,4,4,409784,2,0,1,1,410063,1,2,1,-1,410866,3,2,32,32,411949,3,2,19,19,412977,3,2,14,14,413390,3,2,1,-1,413990,3,2,1,-1,414158,1,2,38,38,415971,1,2,35,35,416551,1,2,21,21,417264,1,2,9,9,417935,1,2,2,2,418468,3,2,1,-1,418708,3,2,7,7,419352,3,2,11,11,419770,3,2,30,30,420745,1,2,1,-1,421014,2,0,1,1,421459,1,2,1,-1,421829,2,2,34,34,422455,2,2,30,30,423057,2,2,23,23,423497,2,2,13,13,424212,2,2,11,11,424452,2,2,5,5,425017,1,2,1,-1,425359,1,2,1,-1,426374,3,2,1,-1,426918,3,1,1,1,427493,1,2,1,1,427699,1,1,1,1,427837,3,2,3,3,428242,3,2,7,7,429102,3,2,10,10,429479,3,2,12,12,429800,3,2,15,15,430193,3,2,27,27,430894,1,2,1,-1,431231,3,2,1,-1,432296,3,2,1,-1,432828,3,2,1,-1,433453,3,2,1,-1,434194,3,2,1,-1,434811,3,1,1,1,435349,3,2,1,1,435505,1,1,1,1,435679,2,1,1,1,436799,1,2,1,-1,437015,2,2,6,6,437748,1,0,1,1,438360,3,2,1,1,438507,3,0,1,1,438740,3,2,1,-1,440180,3,2,36,36,441925,3,2,6,6,443963,3,2,1,-1,444234,2,2,7,7,445294,2,2,34,34,447749,2,2,39,39,448260,2,0,1,1,448571,2,2,39,39,449457,2,2,29,29,450443,2,2,27,27,450708,2,2,25,25,451225,2,2,24,24,451423,2,2,39,39,452164,2,2,16,16,453500,2,2,14,14,453963,2,2,13,13,454112,2,2,12,12,454336,2,2,8,8,455438,1,2,1,-1,455841,3,2,31,31,456961,3,2,35,35,457332,3,2,10,10,458203,3,2,9,9,458376,3,2,5,5,459425,2,1,1,1,459634,3,2,1,-1,459931,3,2,2,2,460620,2,2,4,4,460992,3,2,1,-1,461612,1,2,32,32,463162,1,2,28,28,463639,1,2,23,23,464069,1,2,21,21,464455,1,2,15,15,465504,2,0,1,1,465810,1,2,1,-1,466076,2,2,19,19,467066,2,2,26,26,467827,2,2,1,-1,468179,3,2,1,-1,468960,3,2,1,-1,469778,3,2,1,-1,470470,1,2,37,37,471382,2,2,1,-1,471644,1,2,1,-1,472736,3,2,1,-1,473011,3,2,1,-1,473216,2,1,1,1,474026,1,2,32,32,474263,2,1,1,1,474473,3,2,32,32,474646,2,1,1,1,474976,2,1,1,1,475278,1,2,31,31,475517,2,1,1,1,475720,3,2,31,31,475888,2,1,1,1,476273,1,2,27,27,476495,1,2,26,26,476679,2,1,1,1,476884,3,2,27,27,477109,3,2,26,26,477276,2,1,1,1,477762,1,2,22,22,477960,2,1,1,1,478193,3,2,22,22,478373,1,2,20,20,478806,1,2,18,18,479021,2,1,1,1,479218,3,2,18,18,479378,3,2,20,20,479716,2,1,1,1,480157,1,2,21,21,480381,2,1,1,1,480610,3,2,21,21,480803,2,1,1,1,481550,2,1,1,1,482070,2,1,1,1,482653,1,2,3,3,482844,2,1,1,1,483051,3,2,3,3,483282,2,1,1,1,483550,2,1,1,1,484004,1,2,2,2,484237,2,1,1,1,484454,3,2,2,2,484650,2,1,1,1,485151,2,1,1,1,485361,2,1,1,1,485868,1,2,12,12,486077,1,2,14,14,486352,2,1,1,1,486547,3,2,14,14,486723,3,2,13,13,486925,1,2,13,13,487492,3,2,12,12,487675,1,2,1,-1,487940,3,2,1,1,488415,3,1,1,1,488648,1,1,1,1,489092,1,0,1,1,489744,3,1,1,1,489976,1,2,1,1,490143,1,1,1,1,490384,3,2,1,-1,490651,2,1,1,1,491168,2,1,1,1,491611,1,2,5,5,491849,1,2,8,8,492216,2,1,1,1,492416,3,2,8,8,492596,3,2,5,5,493164,2,1,1,1,493886,2,1,1,1,494346,1,2,22,22,494630,3,2,22,22,494930,2,1,1,1,495148,1,2,22,22,495322,2,1,1,1,495540,3,2,22,22,495734,2,1,1,1,495996,1,2,25,25,496249,1,2,24,24,496417,2,1,1,1,496621,3,2,25,25,496900,3,2,24,24,497076,2,1,1,1,497485,2,1,1,1,497725,1,2,18,18,498083,2,1,1,1,498268,3,2,18,18,498473,2,1,1,1,498801,1,2,13,13,499069,2,1,1,1,499278,3,2,13,13,499485,2,1,1,1,500097,1,2,25,25,500495,2,1,1,1,500799,3,2,25,25,501005,1,2,1,-1,501428,3,2,1,-1,501651,2,1,1,1,502264,2,1,1,1,502774,1,2,31,31,503194,1,2,30,30,503387,2,1,1,1,503592,3,2,31,31,503822,3,2,30,30,503976,2,1,1,1,504397,1,2,25,25,504677,2,1,1,1,504884,3,2,25,25,505090,2,1,1,1,505615,2,1,1,1,505980,1,2,37,37,506422,2,1,1,1,506643,3,2,37,37,506857,1,2,1,-1,507192,1,0,1,1,508457,3,1,1,1,508683,1,2,1,1,508859,1,1,1,1,509030,3,2,1,-1,509367,2,1,1,1,509886,2,1,1,1,510286,1,2,8,8,510612,2,1,1,1,510813,3,2,8,8,511042,2,1,1,1,511665,2,1,1,1,512181,1,2,29,29,512453,2,1,1,1,512663,3,2,29,29,512880,2,1,1,1,513167,1,2,25,25,513434,2,1,1,1,513611,3,2,25,25,513807,1,2,1,-1,514086,3,2,1,-1,514592,3,2,1,-1,515237,3,2,16,16,516317,3,2,13,13,516822,3,2,12,12,516993,3,2,10,10,517416,3,2,8,8,517840,3,2,7,7,518211,3,2,5,5,518620,3,2,4,4,518830,3,2,3,3,519145,1,2,1,-1,519386,3,1,1,1,519842,1,0,1,1,520017,3,2,1,1,520282,1,1,1,1,520467,3,0,1,1,520658,3,2,1,-1,520912,1,2,5,5,521486,1,2,4,4,521676,1,2,3,3,521947,1,2,7,7,522410,1,2,8,8,522627,1,2,10,10,523067,1,2,12,12,523372,1,2,13,13,523560,1,2,16,16,523963,1,2,1,-1,524326,1,0,1,1,524950,3,1,1,1,525183,1,2,1,1,525346,1,1,1,1,525496,3,2,1,-1,525795,3,2,5,5,526414,3,2,7,7,526711,3,2,10,10,527092,3,2,13,13,527700,1,2,13,13,528151,3,2,12,12,528333,3,2,22,22,529225,3,2,23,23,529427,3,2,24,24,529778,3,2,25,25,530011,3,2,26,26,530425,3,2,28,28,530824,3,2,33,33,531328,3,2,37,37,531909,3,2,38,38,532098,3,2,39,39,532342,1,2,1,-1,532783,3,1,1,1,533322,1,0,1,1,533486,3,2,1,1,533670,1,1,1,1,533872,3,0,1,1,534077,3,2,1,-1,534309,1,2,5,5,534846,1,2,7,7,535125,1,2,10,10,535764,1,2,12,12,535982,1,2,22,22,536746,1,2,23,23,536949,1,2,24,24,537154,1,2,25,25,537370,1,2,26,26,537597,1,2,28,28,538016,1,2,33,33,538527,1,2,37,37,538951,1,2,38,38,539137,1,2,39,39,539357,1,2,1,-1,539705,1,0,1,1,540377,3,1,1,1,540580,1,2,1,1,540749,1,1,1,1,540898,3,2,1,-1,541205,3,2,22,22,542452,3,2,23,23,542685,3,2,25,25,543038,3,2,26,26,543326,3,2,28,28,543687,3,2,33,33,544498,3,2,37,37,545010,3,2,38,38,545233,3,2,39,39,545454,1,2,1,-1,545951,3,1,1,1,546942,1,0,1,1,547131,3,2,1,1,547313,1,1,1,1,547517,3,0,1,1,547695,3,2,1,-1,547927,1,2,22,22,548845,1,2,23,23,549037,1,2,25,25,549377,1,2,26,26,549584,1,2,28,28,550030,1,2,33,33,550659,1,2,37,37,551180,1,2,38,38,551341,1,2,39,39,551550,3,2,39,39,552317,3,2,36,36,552660,3,2,34,34,553011,3,2,30,30,553474,3,2,28,28,553709,3,2,26,26,554189,3,2,25,25,554387,3,2,24,24,554605,3,2,22,22,554999,3,2,19,19,555411,3,2,17,17,555926,3,2,16,16,556120,3,2,15,15,556300,3,2,13,13,556732,3,2,11,11,557042,3,2,7,7,557443,3,2,5,5,557748,3,2,2,2,558129,1,2,1,-1,558395,3,1,1,1,558764,1,0,1,1,558908,3,2,1,1,559092,1,1,1,1,559282,3,0,1,1,559465,1,2,2,2,559865,1,2,5,5,560309,1,2,7,7,560716,1,2,11,11,561215,1,2,13,13,561603,1,2,15,15,561906,1,2,16,16,562114,1,2,17,17,562313,1,2,19,19,562982,1,2,22,22,563360,1,2,24,24,563742,1,2,25,25,563937,1,2,26,26,564163,1,2,28,28,564546,1,2,30,30,565113,1,2,34,34,565561,1,2,36,36,565914,1,1,2,2,566329,2,2,18,18,567206,2,2,15,15,567627,2,2,13,13,567913,1,2,39,39,569153,2,2,10,10,570039,2,2,9,9,570262,2,2,3,3,570967,2,1,1,1,571492,3,2,3,3,571869,3,2,1,-1,572102,3,2,9,9,572586,3,2,10,10,572820,3,2,13,13,573284,3,2,15,15,573529,3,2,18,18,573868,2,0,1,1,574144,3,2,18,18,574356,3,2,15,15,574790,3,2,13,13,575028,3,2,10,10,575380,3,2,9,9,575570,3,2,3,3,576142,3,1,1,1,576872,1,0,1,1,577025,3,2,1,1,577237,1,1,1,1,577410,3,0,1,1,577611,3,2,2,2,578079,1,2,2,2,578346,3,2,3,3,578562,3,2,10,10,579003,3,2,10,10,579198,1,2,10,10,579580,3,2,9,9,579750,3,2,13,13,580159,3,2,15,15,580458,3,2,18,18,580797,1,0,1,-1,581204,1,0,1,-1,581579,1,0,1,-1,581999,3,2,1,-1,583139,1,2,1,-1,583584,3,2,1,-1,583996,1,2,1,1,584510,3,0,1,1,584828,1,1,1,1,584998,3,2,1,1,585136,1,2,1,1,585650,1,0,1,1,585906,3,0,1,-1,586211,3,2,1,-1,586485,3,2,1,-1,587080,1,2,1,-1,587432,1,2,1,-1,587774,1,2,1,1,588314,1,1,1,1,588499,3,2,1,1,588657,3,1,1,1,588830,1,0,1,-1,589125,1,1,1,-1,589368,1,1,1,-1,589598,1,1,1,1,590124,3,0,1,1,590356,1,1,1,1,590581,1,0,1,1,590703,3,0,1,-1,591002,1,2,2,2,591543,3,0,1,-1,592497,3,2,1,-1,592888,3,2,1,-1,593689,1,0,1,-1,594497,3,2,1,1,595099,2,0,1,1,595354,1,2,1,1,595581,1,0,1,-1,595880,3,1,1,1,596434,1,0,1,1,596606,3,2,1,1,596842,1,0,1,-1,597115,1,2,1,1,597688,3,2,1,-1,597930,1,1,1,-1,598228,1,1,1,-1,598673,1,1,1,1,599276,3,1,1,-1,599581,3,0,1,-1,599964,1,2,1,1,600375,1,0,1,-1,600611,1,2,1,1,601072,1,1,1,1,601280,3,2,1,1,601421,3,0,1,-1,601705,3,2,1,1,602071,1,0,1,-1,602329,1,1,1,-1,602542,3,1,1,1,603073,1,2,1,1,603259,3,1,1,1,603485,3,2,1,1,603616,3,1,1,1,603796,1,0,1,1,603958,3,1,1,1,604143,3,0,1,1,604336,1,1,1,-1,604639,1,1,1,1,605044,1,1,1,-1,605380,3,1,1,-1,605631,1,2,1,1,606010,3,1,1,1,606212,3,2,1,1,606317,2,1,1,1,606520,3,0,1,1,606742,3,1,1,1,606891,1,0,1,1,607022,3,1,1,-1,607334,3,1,1,1,607872,1,1,1,1,608305,1,2,1,1,608517,3,1,1,1,608713,3,2,1,1,608817,2,1,1,1,609099,1,2,1,1,609297,3,2,2,2,609593,1,2,2,2,610225,3,1,1,1,610394,3,2,1,1,610550,3,2,1,-1,611000,1,2,1,-1,612016,1,0,1,1,612886,1,2,1,1,613098,1,1,1,1,613262,3,2,1,1,613418,3,1,1,1,613614,3,0,1,1,613774,1,1,1,1,614290,1,1,1,-1,614734,1,1,1,-1,615115,3,2,1,1,616360,1,1,1,1,616533,1,2,1,1,616703,1,1,1,-1,617144,2,2,-20,-1,617925,2,2,-20,-1,618461,2,2,1,20,618738,2,1,1,1,619207,2,2,1,20,619522,2,2,1,1,620201,2,1,1,1,620396,2,2,1,20,620982,3,0,1,1,621610,3,1,1,1,621784,1,0,1,1,621931,3,2,1,-1,628649,3,2,1,-1,629502,3,2,1,-1,629811,1,2,1,-1,630151,1,1,38,38,631271,1,1,25,25,631821,1,1,22,22,632194,1,1,15,15,632664,1,1,12,12,633027,1,1,11,11,633234,1,1,9,9,633573,1,1,7,7,633892,3,2,2,2,634034,3,1,1,-1,634255,3,1,5,5,634911,3,1,7,7,635300,3,1,8,8,635490,3,1,9,9,635720,3,1,10,10,635929,3,1,11,11,636148,3,1,12,12,636353,3,1,13,13,636558,3,1,15,15,636913,3,1,22,22,637468,3,1,25,25,638084,3,1,26,26,638255,3,1,32,32,638747,3,1,36,36,639242,3,1,38,38,639449,3,1,1,-1,639662,2,1,38,38,640351,2,1,35,35,640676,2,1,28,28,641118,2,1,27,27,641355,2,1,7,7,642085,3,1,1,-1,642308,1,1,2,2,642950,1,1,8,8,643308,1,1,14,14,643791,1,1,24,24,644669,1,1,30,30,645109,1,1,31,31,645282,3,1,1,-1,645518,1,2,2,2,645758,1,1,39,39,646364,1,1,30,30,646883,1,1,9,9,647668,1,1,8,8,647867,1,1,12,12,648243,3,2,3,3,648442,3,1,1,-1,648703,3,1,8,8,649423,3,1,9,9,649598,3,1,10,10,649789,3,1,13,13,650128,1,1,14,14,650637,3,1,14,14,651079,3,1,14,14,651260,3,1,12,12,651551,3,1,16,16,651876,3,1,20,20,652272,3,1,27,27,652828,3,1,29,29,653218,3,1,30,30,653392,3,1,31,31,653606,3,1,39,39,654182,3,1,1,-1,654387,2,1,32,32,655168,2,1,19,19,655742,2,1,13,13,656174,2,1,10,10,656491,3,1,1,-1,656761,1,1,5,5,657338,1,1,2,2,657682,1,1,10,10,658112,1,1,14,14,658457,1,1,18,18,658830,1,1,20,20,659066,1,1,36,36,659737,1,1,38,38,660023,1,1,39,39,660219,3,1,1,-1,660465,1,2,3,3,660688,1,1,39,39,661230,1,1,35,35,661638,1,1,34,34,661841,1,1,26,26,662309,1,1,21,21,662702,1,1,5,5,663261,1,1,3,3,663510,3,2,4,4,663670,3,1,1,-1,663880,3,1,3,3,664149,3,1,2,2,664431,3,1,5,5,664720,3,1,8,8,665111,3,1,10,10,665333,3,1,12,12,665610,3,1,20,20,666113,3,1,21,21,666285,3,1,26,26,666762,3,1,34,34,667271,3,1,35,35,667460,3,1,38,38,667794,3,1,39,39,667990,3,1,1,-1,668224,2,1,32,32,668883,2,1,29,29,669174,2,1,25,25,669579,2,1,23,23,669788,2,1,18,18,670268,2,1,15,15,670609,2,1,10,10,671216,3,1,1,-1,671492,1,1,6,6,671992,1,1,8,8,672273,1,1,9,9,672471,1,1,24,24,673074,1,1,26,26,673279,1,1,35,35,673757,1,1,38,38,674084,1,1,39,39,674264,3,1,1,-1,674476,1,2,4,4,674714,1,1,37,37,675003,1,1,28,28,675495,1,1,22,22,675915,1,1,20,20,676151,1,1,17,17,676496,1,1,9,9,676937,1,1,6,6,677226,3,2,4,4,677429,3,1,1,-1,677631,1,1,1,-1,678103,1,2,4,4,678389,3,2,5,5,678561,3,1,1,-1,678764,3,1,6,6,679288,3,1,8,8,679595,3,1,9,9,679751,3,1,15,15,680367,3,1,16,16,680565,3,1,17,17,680736,3,1,20,20,681251,3,1,22,22,681433,3,1,28,28,681887,3,1,31,31,682230,3,1,37,37,682647,3,1,1,-1,682881,2,1,33,33,683565,2,1,22,22,684056,3,1,1,-1,684709,1,1,23,23,685557,1,1,24,24,685752,1,1,27,27,686125,1,1,29,29,686468,1,1,30,30,686646,3,1,1,-1,686847,1,2,5,5,687124,1,1,38,38,687760,1,1,39,39,687976,1,1,31,31,688433,1,1,29,29,688678,1,1,24,24,689098,1,1,22,22,689350,1,1,18,18,689730,1,1,8,8,690274,3,2,6,6,690437,3,1,1,-1,690710,3,1,8,8,691048,3,1,7,7,691261,3,1,12,12,691776,3,1,18,18,692196,3,1,19,19,692361,3,1,23,23,692770,3,1,24,24,692944,1,1,23,23,693420,3,1,22,22,693623,3,1,29,29,694163,3,1,31,31,694469,3,1,32,32,694653,3,1,38,38,695085,3,1,39,39,695268,3,1,1,-1,695503,2,1,36,36,695968,2,1,35,35,696172,2,1,39,39,696539,2,1,31,31,697023,2,1,20,20,697592,2,1,19,19,697791,2,1,16,16,698176,2,1,7,7,698657,3,1,1,-1,699017,1,1,12,12,699735,1,1,21,21,700286,1,1,24,24,700617,1,1,27,27,701090,1,1,28,28,701274,1,1,38,38,701752,3,1,1,-1,701949,1,2,6,6,702182,1,1,34,34,702700,1,1,29,29,703070,1,1,25,25,703506,1,1,14,14,703977,1,1,2,2,704634,3,2,7,7,704810,3,1,1,-1,704963,3,1,2,2,705210,3,1,5,5,705612,3,1,6,6,705776,3,1,14,14,706353,3,1,17,17,706622,3,1,19,19,706866,3,1,24,24,707344,3,1,25,25,707538,3,1,26,26,707724,3,1,27,27,707961,3,1,29,29,708306,3,1,34,34,708740,3,1,36,36,708927,3,1,1,-1,709209,2,1,25,25,710167,2,1,22,22,710487,2,1,11,11,711176,2,1,4,4,712101,3,1,1,-1,712390,1,1,5,5,712956,1,1,6,6,713138,1,1,7,7,713327,1,1,3,3,713732,1,1,15,15,714199,3,1,15,15,714567,1,1,16,16,714780,1,1,26,26,715350,1,1,30,30,715720,3,1,1,-1,715891,1,2,7,7,716162,1,1,34,34,716703,1,1,35,35,716879,1,1,39,39,717318,1,1,24,24,717931,1,1,14,14,718432,1,1,6,6,718858,1,1,2,2,719230,3,2,8,8,719364,3,1,1,-1,719570,3,1,2,2,719808,3,1,5,5,720317,3,1,6,6,720524,3,1,7,7,720713,3,1,11,11,721146,3,1,13,13,721552,3,1,14,14,721724,3,1,17,17,722174,3,1,24,24,722640,3,1,30,30,723114,3,1,34,34,723598,3,1,35,35,723768,3,1,37,37,724066,3,1,39,39,724382,3,1,1,-1,724688,2,1,34,34,725368,2,1,36,36,725575,2,1,19,19,726355,2,1,12,12,726759,2,1,7,7,727157,3,1,1,-1,727409,1,1,5,5,728006,1,1,7,7,728230,1,1,10,10,728619,1,1,11,11,728801,1,1,15,15,729181,1,1,20,20,729651,1,1,21,21,729852,1,1,24,24,730228,1,1,38,38,730809,3,1,1,-1,731016,1,2,8,8,731268,1,1,14,14,732185,1,1,5,5,732729,3,2,9,9,732875,3,1,1,-1,733048,3,1,5,5,733343,3,1,13,13,733952,3,1,14,14,734107,3,1,16,16,734481,3,1,20,20,734909,3,1,21,21,735093,3,1,33,33,735738,3,1,34,34,735936,3,1,1,-1,736311,2,1,28,28,737084,2,1,12,12,737963,3,1,1,-1,738303,1,1,3,3,738993,1,1,26,26,739668,1,1,27,27,739861,1,1,32,32,740306,1,1,35,35,740723,1,1,36,36,740882,3,1,1,-1,741069,1,2,9,9,741367,1,1,38,38,741769,1,1,39,39,741973,1,1,34,34,742381,1,1,28,28,742824,1,1,26,26,743085,1,1,22,22,743462,1,1,21,21,743669,1,1,19,19,743969,1,1,7,7,744564,1,1,6,6,744781,1,1,5,5,744988,1,1,2,2,745335,3,2,10,10,745489,3,1,1,-1,745679,3,1,2,2,745973,3,1,5,5,746540,3,1,5,5,746780,1,1,5,5,747223,3,1,4,4,747431,3,1,6,6,747741,3,1,7,7,747911,3,1,10,10,748282,3,1,19,19,748820,3,1,21,21,749221,3,1,22,22,749394,3,1,26,26,749903,3,1,28,28,750106,3,1,34,34,750657,3,1,38,38,751027,3,1,39,39,751209,3,1,1,-1,751466,2,1,36,36,751992,2,1,31,31,752483,2,1,26,26,752961,2,1,25,25,753160,2,1,30,30,753572,2,1,18,18,754146,2,1,11,11,754595,2,1,10,10,754791,3,1,1,-1,755039,1,1,7,7,755788,1,1,2,2,756213,1,1,13,13,756656,1,1,16,16,757036,1,1,17,17,757232,1,1,27,27,757829,1,1,33,33,758218,3,1,1,-1,758387,1,2,10,10,758630,1,1,33,33,758984,1,1,31,31,759201,1,1,37,37,759677,1,1,12,12,760468,1,1,3,3,760940,3,2,11,11,761104,3,1,1,-1,761287,3,1,3,3,761519,3,1,2,2,761889,3,1,9,9,762363,3,1,12,12,762617,3,1,17,17,763210,3,1,20,20,763488,3,1,31,31,764030,3,1,33,33,764240,3,1,37,37,764616,3,1,1,-1,764848,2,1,39,39,765583,2,1,13,13,766634,3,1,1,-1,766860,1,1,4,4,767558,1,1,9,9,767944,1,1,15,15,768439,1,1,36,36,769049,1,1,37,37,769235,3,1,1,-1,769476,1,2,12,12,769736,3,2,12,12,770175,1,2,11,11,770377,1,1,34,34,770734,1,1,29,29,771129,1,2,11,11,771425,3,2,11,11,772140,1,1,27,27,772304,1,1,8,8,772961,1,1,5,5,773296,1,1,2,2,773639,3,2,12,12,773776,3,1,1,-1,773984,3,1,2,2,774223,3,1,5,5,774693,3,1,8,8,775069,3,1,9,9,775243,3,1,10,10,775444,3,1,12,12,775786,3,1,15,15,776116,3,1,27,27,776674,3,1,34,34,777097,3,1,35,35,777251,3,1,1,-1,777484,2,1,35,35,777948,2,1,37,37,778184,2,1,24,24,778743,2,1,21,21,779034,2,1,17,17,779457,2,1,13,13,779853,2,1,11,11,780528,2,1,8,8,780867,3,1,1,-1,781088,1,1,6,6,781618,1,1,19,19,782201,1,1,25,25,782605,1,1,30,30,783021,1,1,33,33,783329,1,1,36,36,783795,1,1,39,39,784109,3,1,1,-1,784307,1,2,12,12,784577,1,1,27,27,785189,1,1,22,22,785562,1,1,7,7,786176,3,2,13,13,786321,3,1,1,-1,786535,3,1,7,7,786810,3,1,4,4,787154,3,1,21,21,788090,3,1,22,22,788305,1,1,21,21,788647,3,1,20,20,788861,3,1,27,27,789387,3,1,35,35,789842,3,1,39,39,790247,3,1,1,-1,790479,2,1,35,35,790952,2,1,37,37,791183,2,1,32,32,791628,2,1,24,24,792076,2,1,15,15,792661,3,1,1,-1,792884,1,1,6,6,793476,1,1,13,13,793855,1,1,14,14,794051,1,1,31,31,794788,1,1,34,34,795103,1,1,34,34,795226,3,1,1,-1,796016,1,2,13,13,796655,1,1,37,37,797097,1,1,16,16,797857,1,1,3,3,798437,3,2,14,14,798606,3,1,1,-1,798868,3,1,3,3,799230,3,1,8,8,799616,3,1,9,9,799795,3,1,16,16,800328,3,1,17,17,800539,3,1,22,22,801014,3,1,35,35,801616,3,1,37,37,801866,3,1,1,-1,802124,2,1,31,31,802830,2,1,30,30,803020,2,2,14,14,803484,2,2,14,14,803898,2,1,24,24,804161,2,1,21,21,804473,2,1,19,19,804712,2,1,13,13,805185,2,1,11,11,805388,3,1,1,-1,805682,1,1,8,8,806224,1,1,3,3,806652,1,1,2,2,806889,1,1,12,12,807412,1,1,22,22,808007,1,1,38,38,808706,3,1,1,-1,808891,1,2,14,14,809127,1,1,32,32,809857,1,1,26,26,810261,1,1,24,24,810518,1,1,20,20,810991,1,1,17,17,811327,1,1,12,12,811777,1,1,5,5,812304,1,1,2,2,812691,3,2,15,15,812858,3,1,1,-1,813137,3,1,2,2,813494,3,1,5,5,813833,3,1,10,10,814309,3,1,11,11,814480,3,1,12,12,814665,3,1,17,17,815302,3,1,20,20,815618,3,1,24,24,816143,3,1,25,25,816325,3,1,26,26,816526,3,1,27,27,816720,3,1,30,30,817260,3,1,32,32,817467,3,1,35,35,817918,3,1,36,36,818109,3,1,1,-1,818317,2,1,29,29,819038,2,1,28,28,819231,2,1,22,22,819725,2,1,20,20,820024,2,1,19,19,820356,2,1,20,20,820563,2,1,14,14,821049,2,1,5,5,821542,2,1,3,3,821781,3,1,1,-1,822062,1,1,8,8,822626,1,1,9,9,822831,1,1,13,13,823238,1,1,21,21,823714,1,1,26,26,824425,1,1,27,27,824577,1,1,35,35,825117,1,1,36,36,825294,1,1,38,38,825586,3,1,1,-1,825789,1,2,15,15,826037,1,1,37,37,826377,1,1,36,36,826597,1,1,35,35,826822,1,1,25,25,827291,1,1,16,16,827823,1,1,9,9,828278,1,1,8,8,828487,1,1,3,3,828924,3,2,16,16,829087,3,1,1,-1,829284,3,1,3,3,829521,3,1,7,7,829972,3,1,8,8,830159,3,1,9,9,830366,3,1,10,10,830533,3,1,13,13,830916,3,1,16,16,831252,3,1,17,17,831429,3,1,25,25,831943,3,1,27,27,832342,3,1,28,28,832553,3,1,29,29,832723,3,1,35,35,833331,3,1,37,37,833516,3,1,37,37,833698,3,1,36,36,834058,1,1,37,37,834283,1,1,37,37,834344,3,1,1,-1,834809,3,1,37,37,835123,2,1,33,33,835554,2,1,30,30,835900,2,1,20,20,836397,2,1,18,18,836706,2,1,17,17,836928,2,1,11,11,837404,2,1,6,6,837839,3,1,1,-1,838083,1,1,5,5,838573,1,1,19,19,839192,1,1,22,22,839454,1,1,25,25,839798,3,1,1,-1,840183,1,2,16,16,840545,1,1,38,38,840920,1,1,34,34,841257,1,1,30,30,841579,1,1,22,22,842089,1,1,21,21,842255,1,1,11,11,842792,1,1,9,9,843031,1,1,5,5,843430,3,2,17,17,843571,3,1,1,-1,843772,3,1,5,5,844015,3,2,17,17,844183,3,2,17,17,844672,3,1,7,7,844972,1,1,7,7,845945,2,2,17,17,846164,3,1,7,7,846430,3,1,9,9,846825,3,1,11,11,846995,3,1,21,21,847516,3,1,22,22,847693,3,1,25,25,848028,3,1,26,26,848193,3,1,28,28,848594,3,1,29,29,848779,3,1,30,30,848979,3,1,34,34,849383,3,1,38,38,849781,3,1,39,39,850025,3,1,1,-1,850289,2,1,29,29,851045,2,1,28,28,851268,2,1,20,20,851802,2,1,18,18,852061,2,1,14,14,852485,2,1,11,11,852779,2,1,4,4,853274,3,1,1,-1,853515,1,1,9,9,854094,3,1,1,-1,854727,1,2,17,17,855076,1,1,37,37,855422,1,1,32,32,855729,3,1,32,32,856083,1,1,33,33,856287,1,1,29,29,856662,1,1,28,28,856904,1,1,25,25,857258,1,1,17,17,857754,1,1,16,16,857939,3,2,18,18,858277,3,1,1,-1,858468,3,1,7,7,859148,3,1,13,13,859625,3,1,15,15,859970,3,1,16,16,860140,3,1,17,17,860328,3,1,25,25,860957,3,1,28,28,861295,3,1,29,29,861466,3,1,32,32,861909,3,1,33,33,862064,3,1,37,37,862503,3,1,38,38,862697,3,1,1,-1,862932,2,1,21,21,864020,2,1,14,14,864647,2,1,10,10,865123,2,1,9,9,865305,2,1,8,8,865526,2,1,7,7,865741,2,1,3,3,866260,3,1,1,-1,866522,1,1,15,15,867433,1,1,20,20,867879,1,1,27,27,868459,1,1,30,30,868682,3,1,30,30,869270,1,1,29,29,869499,1,1,33,33,869848,1,1,37,37,870332,1,1,39,39,870564,3,1,1,-1,870760,1,2,18,18,871008,1,1,25,25,871883,1,1,22,22,872150,1,1,10,10,872737,1,1,9,9,872938,1,1,4,4,873378,3,2,19,19,873543,1,2,19,19,873957,3,1,4,4,874168,1,1,3,3,874388,3,2,19,19,874609,3,1,1,-1,874981,3,1,3,3,875558,3,1,2,2,875747,3,1,5,5,876089,3,1,9,9,876514,3,1,10,10,876697,3,1,15,15,877146,3,1,22,22,877694,3,1,25,25,877940,3,1,31,31,878503,1,1,38,38,879316,3,1,38,38,879799,3,1,38,38,879976,3,1,1,-1,880236,2,1,34,34,880813,2,1,28,28,881265,2,1,23,23,881663,2,1,17,17,882161,2,1,15,15,882481,2,1,14,14,882814,2,1,15,15,882993,2,1,11,11,883495,2,1,9,9,883704,3,1,1,-1,883962,1,1,7,7,884458,1,1,3,3,884832,1,1,10,10,885252,1,1,12,12,885466,1,1,31,31,886175,1,1,33,33,886484,1,1,39,39,886896,3,1,1,-1,887082,1,2,19,19,887322,1,1,37,37,887602,1,1,24,24,888199,1,1,23,23,888405,1,1,11,11,889056,1,1,9,9,889363,1,1,8,8,889553,1,1,5,5,889875,1,1,3,3,890165,3,2,20,20,890320,3,1,1,-1,890529,3,1,3,3,890791,3,1,5,5,891016,3,1,8,8,891397,3,1,9,9,891581,3,1,11,11,891803,3,1,16,16,892315,3,1,22,22,892816,3,1,23,23,892986,3,1,24,24,893192,3,1,25,25,893373,3,1,29,29,893786,3,1,37,37,894284,3,1,1,-1,894526,2,1,32,32,895110,2,1,38,38,895495,2,1,28,28,896076,2,1,23,23,896526,2,1,21,21,896786,2,1,17,17,897239,2,1,15,15,897521,2,1,14,14,897712,2,1,7,7,898247,2,1,5,5,898490,3,1,1,-1,898756,1,1,2,2,899624,1,1,30,30,900362,1,1,38,38,900848,3,1,1,-1,901050,3,1,38,38,901474,1,1,39,39,901687,1,2,20,20,901825,1,1,32,32,902405,1,1,31,31,902607,1,1,30,30,902805,1,1,29,29,903015,1,1,39,39,903596,1,1,25,25,904100,1,1,15,15,904693,1,1,12,12,904962,1,1,8,8,905423,1,1,7,7,905611,1,1,6,6,905840,1,1,3,3,906206,3,2,21,21,906326,3,1,1,-1,906554,3,1,3,3,906789,3,1,2,2,907102,3,1,6,6,907560,3,1,7,7,907732,3,1,8,8,907918,3,1,9,9,908116,3,1,12,12,908513,3,1,14,14,908802,3,1,15,15,908998,3,1,17,17,909279,3,1,22,22,909715,3,1,25,25,910013,3,1,28,28,910521,3,1,29,29,910704,3,1,30,30,910936,3,1,31,31,911106,3,1,32,32,911319,3,1,34,34,911681,3,1,39,39,912116,3,1,1,-1,912329,2,1,30,30,913281,2,1,23,23,913763,2,1,18,18,914260,2,1,10,10,914698,3,1,1,-1,914944,1,1,7,7,915485,1,1,5,5,915723,1,1,9,9,916092,1,1,11,11,916337,1,1,21,21,916969,1,1,29,29,917402,1,1,38,38,917985,1,1,39,39,918161,3,1,1,-1,918357,1,2,21,21,918629,1,1,37,37,918909,1,1,29,29,919378,1,1,22,22,919862,1,1,21,21,920055,1,1,20,20,920260,1,1,18,18,920576,1,1,11,11,921090,1,1,8,8,921421,1,1,7,7,921629,3,2,22,22,921824,3,1,1,-1,922021,3,1,7,7,922397,3,1,8,8,922599,3,1,11,11,922990,3,1,12,12,923180,3,1,17,17,923729,3,1,18,18,923920,3,1,19,19,924125,3,1,20,20,924366,3,1,21,21,924551,3,1,22,22,924745,3,1,24,24,925081,3,1,29,29,925573,3,1,33,33,925943,3,1,37,37,926370,3,1,1,-1,926646,2,1,39,39,927401,2,1,32,32,927872,2,1,26,26,928288,2,1,25,25,928512,2,1,23,23,928795,2,1,16,16,929376,3,1,1,-1,929870,1,1,2,2,930517,1,1,17,17,931087,1,1,21,21,931481,1,1,27,27,931958,1,1,30,30,932256,1,1,28,28,932527,3,1,27,27,932760,1,1,34,34,933311,1,1,37,37,933642,3,1,1,-1,933830,1,2,22,22,934474,1,1,37,37,934810,1,1,36,36,935008,1,1,32,32,935392,1,1,18,18,936056,1,1,9,9,936559,1,1,6,6,936876,3,2,23,23,937038,3,1,1,-1,937230,3,1,6,6,937626,3,1,8,8,937891,3,1,9,9,938071,3,1,17,17,938567,3,1,18,18,938748,3,1,25,25,939256,3,1,32,32,939763,3,1,33,33,939988,3,1,36,36,940340,3,1,37,37,940510,3,1,1,-1,940765,2,1,36,36,941255,2,1,39,39,941621,2,1,32,32,942073,2,1,22,22,942579,2,1,4,4,943381,3,1,1,-1,943631,1,1,7,7,944297,1,1,9,9,944562,1,1,11,11,944812,1,1,3,3,945265,1,1,15,15,945721,1,1,18,18,946044,1,1,23,23,946601,1,1,24,24,946771,1,1,27,27,947128,1,1,29,29,947465,1,1,30,30,947666,1,1,34,34,948178,1,1,35,35,948348,1,1,37,37,948618,3,1,1,-1,948822,1,2,23,23,949127,1,1,36,36,949363,1,1,34,34,949612,1,1,33,33,949810,1,1,31,31,950099,1,1,30,30,950316,1,1,28,28,950683,1,1,25,25,951100,1,1,24,24,951296,1,1,21,21,951702,1,1,20,20,951902,1,1,15,15,952361,1,1,3,3,952871,3,2,24,24,953005,3,1,1,-1,953293,3,1,3,3,953584,3,1,4,4,953809,3,1,7,7,954197,3,1,14,14,954729,3,1,15,15,954909,3,2,22,22,955078,3,1,20,20,955523,3,1,21,21,955725,1,2,22,22,956559,3,1,23,23,956962,3,1,24,24,957173,3,1,25,25,957368,3,1,28,28,957986,3,1,29,29,958156,3,1,30,30,958363,3,1,31,31,958568,3,1,33,33,958907,3,1,34,34,959095,3,1,36,36,959373,3,1,1,-1,959606,2,1,35,35,960121,2,1,13,13,961121,2,1,9,9,961488,2,1,8,8,961660,3,1,1,-1,961898,1,1,3,3,962577,1,1,10,10,963056,1,1,26,26,963731,1,1,33,33,964263,1,1,38,38,964693,3,1,1,-1,964851,1,2,24,24,965174,1,1,36,36,965450,1,1,21,21,966107,1,1,12,12,966658,3,2,25,25,966817,3,1,1,-1,967033,3,1,2,2,967894,3,1,3,3,968102,3,1,4,4,968309,3,1,10,10,968828,3,1,12,12,969050,3,1,21,21,969529,3,1,36,36,970181,3,1,1,-1,970421,2,1,36,36,971017,2,1,23,23,971594,2,2,25,25,971976,2,2,25,25,972451,2,1,17,17,972647,2,1,9,9,973277,2,1,7,7,973477,2,1,5,5,973702,3,1,1,-1,973949,1,1,6,6,974424,1,1,4,4,974724,1,1,3,3,974918,1,1,11,11,975413,3,1,1,-1,975949,1,2,25,25,976291,1,1,31,31,976595,1,1,39,39,977055,1,1,10,10,977735,3,2,26,26,977915,3,1,1,-1,978146,3,1,10,10,978454,3,1,7,7,978895,3,1,1,1,979199,1,1,1,1,979633,3,1,2,2,979826,3,1,12,12,980349,3,1,13,13,980519,3,1,19,19,980982,3,1,23,23,981314,3,1,28,28,981882,3,1,30,30,982166,3,1,31,31,982340,3,1,33,33,982666,3,1,35,35,982905,3,1,39,39,983306,3,1,1,-1,983528,2,1,28,28,984431,2,1,25,25,984765,2,1,23,23,985012,2,1,18,18,985564,2,1,8,8,986142,2,1,7,7,986325,3,1,1,-1,986574,1,1,6,6,987040,1,1,3,3,987324,1,1,15,15,987835,1,1,16,16,988023,3,1,1,-1,988617,1,1,38,38,989091,1,2,26,26,989293,1,1,34,34,989687,1,1,30,30,990044,1,1,21,21,990535,1,1,10,10,991011,1,1,5,5,991356,3,2,27,27,991542,3,1,1,-1,991738,3,1,5,5,992035,3,1,10,10,992447,1,2,27,27,993088,3,2,27,27,993474,3,1,21,21,993658,3,1,27,27,994268,3,1,29,29,994554,3,1,30,30,994723,3,1,34,34,995156,3,1,36,36,995433,3,1,37,37,995770,1,1,36,36,995999,3,1,39,39,996336,3,1,1,-1,996542,2,1,21,21,997770,2,1,18,18,997999,2,1,17,17,998422,2,1,16,16,998657,2,1,18,18,998934,2,1,19,19,999136,2,1,14,14,999664,3,1,1,-1,999951,1,1,4,4,1000689,1,2,26,26,1000872,1,1,2,2,1001077,3,1,2,2,1001413,3,2,26,26,1001822,1,1,2,2,1002081,1,1,3,3,1002279,1,1,8,8,1002756,1,1,31,31,1003609,1,1,33,33,1003821,1,1,36,36,1004136,3,1,1,-1,1004318,1,2,27,27,1004538,1,1,39,39,1005148,1,1,28,28,1005581,1,1,27,27,1005783,1,1,17,17,1006391,1,1,16,16,1006563,1,1,11,11,1006966,1,1,6,6,1007489,1,1,5,5,1007675,1,1,3,3,1007950,1,1,2,2,1008169,3,2,28,28,1008323,3,1,1,-1,1008561,3,2,28,28,1008902,3,2,28,28,1009357,3,1,3,3,1009565,1,1,3,3,1010123,2,2,28,28,1010328,3,1,3,3,1010499,3,1,5,5,1010844,3,1,6,6,1011019,3,1,9,9,1011421,3,1,11,11,1011691,3,1,12,12,1011871,3,1,16,16,1012328,3,1,17,17,1012515,3,1,18,18,1012721,3,1,27,27,1013330,3,1,28,28,1013529,3,1,39,39,1014096,3,1,1,-1,1014332,2,1,31,31,1015057,2,1,28,28,1015397,2,1,26,26,1015636,2,1,21,21,1016154,3,1,1,-1,1016606,1,1,10,10,1017259,1,1,12,12,1017462,1,1,16,16,1017968,1,1,23,23,1018591,1,1,25,25,1018793,1,1,27,27,1019090,1,1,32,32,1019559,1,1,36,36,1019985,1,1,33,33,1020291,3,1,32,32,1020489,3,1,1,-1,1020718,1,2,28,28,1021022,1,1,36,36,1021461,1,1,31,31,1021812,1,1,27,27,1022172,1,1,25,25,1022413,1,1,21,21,1022891,3,2,29,29,1023157,1,2,29,29,1023818,1,1,10,10,1024006,3,2,29,29,1024128,3,1,1,-1,1024364,3,1,10,10,1024617,3,1,3,3,1025035,3,1,12,12,1025513,3,1,13,13,1025708,3,1,14,14,1025918,3,1,21,21,1026673,3,1,25,25,1026970,3,1,27,27,1027336,3,1,29,29,1027521,3,1,31,31,1027918,3,1,32,32,1028120,3,1,36,36,1028506,3,1,1,-1,1028730,2,1,27,27,1029517,3,1,1,-1,1030330,1,1,15,15,1031165,1,1,30,30,1031813,1,1,33,33,1032155,1,1,34,34,1032316,3,1,1,-1,1032521,1,2,29,29,1032862,1,1,35,35,1033106,1,1,30,30,1033538,1,1,27,27,1033892,1,1,24,24,1034251,1,1,23,23,1034468,1,1,22,22,1034679,1,1,3,3,1035644,3,2,30,30,1035793,3,1,1,-1,1035996,3,1,3,3,1036218,3,1,22,22,1037141,3,1,23,23,1037337,3,1,24,24,1037511,3,1,16,16,1037963,3,1,27,27,1038462,3,1,28,28,1038631,3,1,30,30,1038963,3,1,35,35,1039359,3,1,37,37,1039611,3,1,1,-1,1039820,2,1,30,30,1040478,2,1,29,29,1040699,2,1,18,18,1041349,2,1,7,7,1041814,3,1,1,-1,1042071,1,1,6,6,1042615,1,1,5,5,1042840,1,1,10,10,1043220,1,1,14,14,1043618,1,1,15,15,1043831,1,1,22,22,1044382,1,1,24,24,1044602,1,1,36,36,1045146,1,1,37,37,1045313,3,1,1,-1,1045552,1,2,30,30,1045822,1,1,34,34,1046206,1,1,31,31,1046569,1,1,22,22,1047085,1,1,21,21,1047285,1,1,20,20,1047529,1,1,19,19,1047751,1,1,11,11,1048390,1,1,9,9,1048650,1,1,8,8,1048847,1,1,2,2,1049296,3,2,31,31,1049454,3,1,1,-1,1049684,3,1,2,2,1049941,3,1,6,6,1050372,3,1,8,8,1050698,3,1,9,9,1050867,3,1,11,11,1051146,3,1,19,19,1051910,3,1,20,20,1052102,3,1,21,21,1052309,3,1,22,22,1052500,3,1,26,26,1052922,3,1,31,31,1054074,3,1,33,33,1054431,3,1,34,34,1054633,3,1,38,38,1055060,3,1,1,-1,1055295,2,1,28,28,1056067,2,1,23,23,1056473,2,1,16,16,1056918,2,1,7,7,1057423,3,1,1,-1,1057642,1,1,10,10,1058307,1,1,25,25,1059085,1,1,30,30,1059444,1,1,37,37,1059850,3,1,1,-1,1060038,1,2,31,31,1060260,1,1,35,35,1060664,1,1,31,31,1061090,1,1,29,29,1061342,1,1,26,26,1061699,1,1,9,9,1062385,1,1,7,7,1062619,3,2,32,32,1062764,3,1,1,-1,1062971,3,1,7,7,1063230,3,1,6,6,1063546,3,1,9,9,1063890,3,1,11,11,1064148,3,1,17,17,1064791,3,1,22,22,1065198,3,1,26,26,1065565,3,1,29,29,1066021,3,1,30,30,1066213,3,1,31,31,1066428,3,1,35,35,1066849,3,1,38,38,1067087,3,1,1,-1,1067328,2,1,36,36,1067969,2,1,29,29,1068455,2,1,27,27,1068662,2,1,24,24,1068934,2,1,22,22,1069193,2,1,15,15,1069779,2,1,10,10,1070212,2,1,8,8,1070424,2,1,5,5,1070820,3,1,1,-1,1071133,1,1,3,3,1071791,1,1,12,12,1072670,1,1,18,18,1073164,1,1,33,33,1073736,3,1,1,-1,1073924,1,1,39,39,1074380,1,2,32,32,1074570,1,1,37,37,1074865,1,1,34,34,1075159,1,1,33,33,1075346,1,1,24,24,1075873,1,1,22,22,1076114,1,1,15,15,1076632,1,1,3,3,1077093,3,2,33,33,1077237,3,1,1,-1,1077453,3,1,3,3,1077736,3,1,5,5,1078024,3,1,6,6,1078219,3,1,10,10,1078602,3,1,15,15,1079016,3,1,18,18,1079336,3,1,22,22,1079778,3,1,24,24,1079990,3,1,26,26,1080220,3,1,33,33,1080832,3,1,34,34,1081015,3,1,37,37,1081386,3,1,1,-1,1081612,2,1,4,4,1083099,3,1,1,-1,1083304,1,1,8,8,1083847,1,1,12,12,1084230,1,1,14,14,1084462,1,1,38,38,1085309,3,1,1,-1,1085525,1,2,33,33,1085803,1,1,39,39,1086107,1,1,34,34,1086596,1,1,27,27,1087043,1,1,3,3,1087767,3,2,34,34,1087906,3,1,1,-1,1088132,3,1,3,3,1088401,3,1,4,4,1088632,3,1,6,6,1088951,3,1,9,9,1089395,3,1,11,11,1089594,3,1,15,15,1090032,3,1,16,16,1090196,3,1,19,19,1090517,3,1,24,24,1090956,3,1,27,27,1091300,3,1,29,29,1091594,3,1,30,30,1091776,3,1,34,34,1092232,3,1,39,39,1092607,3,1,1,-1,1092846,2,1,35,35,1093394,2,1,37,37,1093593,2,1,33,33,1093916,2,1,31,31,1094151,2,1,26,26,1094632,2,1,22,22,1094957,2,1,4,4,1095734,3,1,1,-1,1096033,1,1,3,3,1096725,1,1,14,14,1097179,1,1,20,20,1097552,1,1,25,25,1097958,3,1,1,-1,1098286,1,1,38,38,1098718,1,2,34,34,1098860,1,1,30,30,1099531,1,1,27,27,1099936,1,1,23,23,1100277,1,1,3,3,1101008,3,2,35,35,1101160,3,1,1,-1,1101365,3,1,3,3,1101587,3,1,12,12,1102323,3,1,15,15,1102603,3,1,22,22,1103044,3,1,27,27,1103506,3,1,23,23,1103822,3,1,30,30,1104286,3,1,31,31,1104452,3,1,34,34,1104779,3,1,38,38,1105097,3,1,1,-1,1105337,2,1,36,36,1105892,2,1,31,31,1106263,2,1,22,22,1106771,2,1,21,21,1106964,2,1,16,16,1107419,2,1,13,13,1107798,2,1,10,10,1108201,2,1,9,9,1108399,3,1,1,-1,1108700,1,1,6,6,1109256,1,1,12,12,1109687,1,1,14,14,1109900,1,1,18,18,1110275,1,1,20,20,1110543,1,1,37,37,1111165,3,1,1,-1,1111351,1,2,35,35,1111589,1,1,36,36,1111928,1,1,38,38,1112207,1,1,39,39,1112405,1,1,34,34,1112779,1,1,33,33,1112979,1,1,21,21,1113514,1,1,20,20,1113762,1,1,15,15,1114183,3,2,36,36,1114544,3,1,1,-1,1114754,3,1,10,10,1115536,3,1,15,15,1115933,3,1,20,20,1116344,3,1,21,21,1116531,3,1,23,23,1116750,3,1,30,30,1117287,3,1,33,33,1117702,3,1,34,34,1117885,3,1,36,36,1118140,3,1,38,38,1118479,3,1,39,39,1118661,3,1,1,-1,1118898,2,1,30,30,1119611,2,1,26,26,1120003,2,1,26,26,1120221,2,1,26,26,1120750,2,1,27,27,1120922,2,1,14,14,1121474,2,1,13,13,1121675,2,1,11,11,1121917,2,1,10,10,1122139,2,1,6,6,1122522,2,1,3,3,1122896,2,1,2,2,1123103,3,1,1,-1,1123371,1,1,4,4,1123991,1,1,23,23,1124521,3,1,1,-1,1124771,1,2,36,36,1125162,1,1,32,32,1125469,1,1,36,36,1125781,1,1,24,24,1126281,1,1,22,22,1126557,1,1,21,21,1126738,1,1,14,14,1127241,1,1,13,13,1127443,1,1,12,12,1127668,1,1,8,8,1128118,1,1,6,6,1128380,1,1,4,4,1128654,3,2,37,37,1128791,3,1,1,-1,1129033,3,1,4,4,1129303,3,1,5,5,1129489,3,1,6,6,1129678,3,1,8,8,1129951,3,1,9,9,1130151,3,1,12,12,1130460,3,1,13,13,1130657,3,1,14,14,1130846,3,1,16,16,1131167,3,1,21,21,1131611,3,1,22,22,1131819,3,1,24,24,1132103,3,1,29,29,1132742,3,1,32,32,1133210,3,1,36,36,1133582,3,1,37,37,1133766,3,1,1,-1,1133998,2,1,35,35,1134494,2,1,37,37,1134712,2,1,29,29,1135192,2,1,16,16,1135817,2,1,15,15,1136059,2,1,11,11,1136502,2,2,37,37,1136918,2,2,37,37,1137300,2,1,5,5,1137511,2,1,4,4,1137690,3,1,1,-1,1137952,1,1,5,5,1138399,1,1,10,10,1138812,1,1,12,12,1139111,1,1,13,13,1139309,1,1,28,28,1140059,1,1,30,30,1140491,1,1,31,31,1140664,1,1,32,32,1140849,1,1,38,38,1141376,1,1,39,39,1141532,3,1,1,-1,1141737,1,2,37,37,1142002,1,1,30,30,1142642,1,1,8,8,1143243,1,1,3,3,1143620,3,2,38,38,1143756,3,1,1,-1,1143963,3,1,3,3,1144203,3,1,6,6,1144638,3,1,8,8,1144822,3,1,12,12,1145286,3,1,16,16,1145737,3,1,17,17,1145926,3,1,18,18,1146111,3,1,29,29,1146855,3,1,30,30,1147031,3,1,1,-1,1147255,2,1,34,34,1147792,2,1,26,26,1148312,2,1,22,22,1148626,2,1,18,18,1149099,2,1,17,17,1149289,2,1,15,15,1149572,2,1,10,10,1150092,2,1,9,9,1150289,2,1,4,4,1150681,2,1,2,2,1150960,3,1,1,-1,1151205,1,1,17,17,1152159,1,1,25,25,1152594,1,1,32,32,1153025,3,1,1,-1,1153195,1,2,38,38,1153438,1,1,33,33,1153780,1,1,37,37,1154147,1,1,24,24,1154630,1,1,21,21,1154899,1,1,17,17,1155348,1,1,12,12,1155783,1,1,2,2,1156316,3,2,39,39,1156439,3,1,1,-1,1156658,3,1,2,2,1156866,3,1,6,6,1157271,3,1,8,8,1157503,3,1,12,12,1157908,3,1,17,17,1158302,3,1,21,21,1158700,3,1,24,24,1159012,3,1,27,27,1159376,3,1,33,33,1159948,3,1,37,37,1160187,3,1,1,-1,1160435,2,1,35,35,1161326,2,1,34,34,1161509,2,1,32,32,1161828,2,1,23,23,1162338,2,1,19,19,1162728,2,1,17,17,1162951,2,1,4,4,1163515,3,1,1,-1,1163787,1,1,6,6,1164361,1,1,5,5,1164564,1,1,10,10,1164944,1,1,24,24,1165629,1,1,37,37,1166131,1,1,39,39,1166349,3,1,1,-1,1166548,1,2,39,39,1166873,3,2,1,-1,1167150,1,1,1,-1,1167327,3,2,-1,-1,1167824,3,1,1,-1,1168148,1,1,1,-1,1168302,3,2,31,31,1168616,3,1,24,24,1168776,1,2,31,31,1168923,1,1,24,24,1169094,3,2,32,32,1169253,3,1,25,25,1169427,1,2,32,32,1169595,1,1,25,25,1169771,3,1,1,-1,1170000,1,1,1,-1,1170153,3,2,33,33,1170476,3,1,20,20,1170657,1,2,33,33,1170814,1,1,20,20,1171000,1,2,1,-1,1171226,1,1,1,-1,1171390,1,1,1,-1,1172137,3,1,1,-1,1172481,3,1,1,-1,1172646,3,1,1,-1,1172933,1,1,1,-1,1173127,3,2,33,33,1173646,3,2,32,32,1173802,3,1,16,16,1173968,1,2,33,33,1174222,1,2,32,32,1174410,1,1,16,16,1174578,3,1,1,-1,1174833,1,1,1,-1,1175027,3,2,32,32,1175342,3,1,19,19,1175496,1,2,32,32,1175671,1,1,19,19,1175830,3,2,34,34,1176221,3,1,18,18,1176391,1,2,34,34,1176555,1,1,18,18,1176699,3,1,1,-1,1176964,1,1,1,-1,1177126,3,1,1,-1,1177613,1,1,1,-1,1177812,3,2,38,38,1178105,3,1,20,20,1178282,1,2,38,38,1178449,1,1,20,20,1178633,3,1,1,-1,1178963,1,1,1,-1,1179197,3,2,34,34,1179780,3,1,21,21,1179978,1,2,34,34,1180124,1,1,21,21,1180291,3,1,1,-1,1180589,1,1,1,-1,1180792,3,2,27,27,1181167,3,1,24,24,1181348,1,2,27,27,1181502,1,1,24,24,1181676,3,1,1,-1,1181963,1,1,1,-1,1182197,3,2,37,37,1182726,3,1,25,25,1182946,1,2,37,37,1183080,1,1,25,25,1183252,3,1,1,-1,1183758,1,1,1,-1,1183969,3,2,32,32,1184325,3,1,34,34,1184474,1,2,32,32,1184639,1,1,34,34,1184809,3,2,34,34,1185084,3,1,32,32,1185295,1,2,34,34,1185397,1,1,32,32,1185585,3,1,1,-1,1185867,1,1,1,-1,1186100,3,2,36,36,1186534,3,1,37,37,1186721,1,2,36,36,1186872,1,1,37,37,1187057,3,1,1,-1,1187358,1,1,1,-1,1187552,3,2,29,29,1187823,3,1,37,37,1187992,1,2,29,29,1188160,1,1,37,37,1188330,3,1,1,-1,1188709,1,1,1,-1,1188989,3,2,18,18,1189265,3,1,30,30,1189432,1,2,18,18,1189598,1,1,30,30,1189763,3,1,1,-1,1190064,1,1,1,-1,1190283,3,1,1,-1,1190721,1,1,1,-1,1190947,3,1,1,-1,1191228,1,1,1,-1,1191464,3,2,16,16,1191795,3,1,21,21,1191974,1,2,16,16,1192105,1,1,21,21,1192289,3,2,17,17,1192455,3,1,23,23,1192644,1,2,17,17,1192809,1,1,23,23,1192965,3,1,1,-1,1193203,1,1,1,-1,1193422,3,1,1,-1,1193800,1,1,1,-1,1194005,3,2,13,13,1194342,3,1,28,28,1194513,3,1,30,30,1194763,1,2,13,13,1194923,1,1,30,30,1195106,1,1,28,28,1195321,3,1,1,-1,1195646,1,1,1,-1,1195829,3,2,18,18,1196120,3,1,36,36,1196304,1,2,18,18,1196458,1,1,36,36,1196628,3,1,1,-1,1197001,1,1,1,-1,1197235,3,2,8,8,1197595,3,1,28,28,1197808,1,2,8,8,1197953,1,1,28,28,1198116,3,2,10,10,1198380,3,1,32,32,1198569,1,2,10,10,1198727,1,1,32,32,1198914,3,1,1,-1,1199192,1,1,1,-1,1199396,3,2,9,9,1199923,3,2,6,6,1200221,3,1,37,37,1200377,1,2,6,6,1200529,1,2,9,9,1200849,1,1,37,37,1201034,3,2,6,6,1201400,1,2,6,6,1201749,3,2,5,5,1201993,3,1,36,36,1202175,1,2,5,5,1202321,1,1,36,36,1202500,3,1,1,-1,1202957,3,1,1,-1,1203352,1,1,1,-1,1203995,1,1,1,-1,1204258,3,2,2,2,1204706,3,1,23,23,1204895,1,2,2,2,1205037,1,1,23,23,1205214,3,1,1,-1,1205506,1,1,1,-1,1205776,3,1,1,-1,1206451,1,1,1,-1,1206621,3,1,1,-1,1207095,1,1,1,-1,1207363,3,2,7,7,1207744,3,1,13,13,1207941,1,2,7,7,1208085,1,1,13,13,1208286,3,1,1,-1,1208589,1,1,1,-1,1208793,3,1,1,-1,1209482,1,1,1,-1,1209673,3,2,3,3,1210120,3,1,4,4,1210288,1,2,3,3,1210455,1,1,4,4,1210602,3,1,1,-1,1210899,1,1,1,-1,1211149,3,2,11,11,1211507,3,1,5,5,1211686,1,2,11,11,1211834,1,1,5,5,1211998,3,2,13,13,1212294,3,1,9,9,1212465,1,2,13,13,1212605,1,1,9,9,1212770,3,1,1,-1,1213000,1,1,1,-1,1213181,3,1,1,-1,1213599,1,1,1,-1,1213799,3,1,1,-1,1214353,1,1,1,-1,1214572,3,2,16,16,1214990,3,1,15,15,1215151,1,2,16,16,1215306,1,1,15,15,1215460,3,2,17,17,1215692,3,1,12,12,1215870,1,2,17,17,1216234,1,1,12,12,1216433,3,2,17,17,1216783,3,1,17,17,1216954,1,2,17,17,1217125,1,1,17,17,1217285,3,1,1,-1,1217578,1,1,1,-1,1217768,3,2,25,25,1218271,3,1,15,15,1218387,1,2,25,25,1218554,1,1,15,15,1218720,3,1,1,-1,1218996,1,1,1,-1,1219249,3,2,27,27,1219639,3,1,11,11,1219834,1,2,27,27,1220009,1,1,11,11,1220181,3,1,1,-1,1220441,1,1,1,-1,1220584,3,2,27,27,1220854,3,1,7,7,1221047,1,2,27,27,1221227,1,1,7,7,1221352,3,1,1,-1,1221598,1,1,1,-1,1221786,3,2,32,32,1222306,3,1,2,2,1222487,1,2,32,32,1222923,1,1,2,2,1223087,3,1,1,-1,1223373,1,1,1,-1,1223529,3,2,34,34,1224103,3,1,8,8,1224300,1,2,34,34,1224479,1,1,8,8,1224606,3,1,1,-1,1224958,1,1,1,-1,1225256,3,2,31,31,1225774,3,1,14,14,1225967,1,2,31,31,1226099,1,1,14,14,1226290,3,1,1,-1,1226593,1,1,1,-1,1226832,3,2,-1,-1,1227347,3,1,1,-1,1231075,1,1,1,-1,1231273,3,2,36,36,1231680,3,1,15,15,1231847,1,2,36,36,1232001,1,1,15,15,1232145,3,2,38,38,1232501,3,1,19,19,1232659,1,2,38,38,1232833,1,1,19,19,1233011,3,1,1,-1,1233316,1,1,1,-1,1233549,3,2,31,31,1233826,3,1,21,21,1233998,1,2,31,31,1234134,1,1,21,21,1234306,3,1,1,-1,1234502,1,1,1,-1,1234684,3,2,32,32,1235550,3,1,17,17,1235729,1,2,32,32,1235895,1,1,17,17,1236067,3,1,1,-1,1236449,1,1,1,-1,1236676,3,1,1,-1,1237125,1,1,1,-1,1237429,3,2,28,28,1237935,3,2,27,27,1238076,3,1,8,8,1238286,1,2,28,28,1238538,1,2,27,27,1238740,1,1,8,8,1238923,3,1,1,-1,1239253,1,1,1,-1,1239437,3,1,1,-1,1239906,1,1,1,-1,1240108,3,1,1,-1,1240455,1,1,1,-1,1240696,3,1,1,-1,1241088,1,1,1,-1,1241290,3,2,7,7,1241606,3,1,2,2,1241804,1,2,7,7,1241947,1,1,2,2,1242099,3,1,1,-1,1242476,1,1,1,-1,1242703,3,2,5,5,1243019,3,1,15,15,1243233,1,2,5,5,1243352,1,1,15,15,1243531,3,2,3,3,1243771,1,2,3,3,1244320,3,2,4,4,1244523,3,1,12,12,1244722,1,2,4,4,1244886,1,1,12,12,1245059,3,1,1,-1,1245334,1,1,1,-1,1245512,3,1,1,-1,1245894,1,1,1,-1,1246108,3,2,10,10,1246385,3,1,19,19,1246563,1,2,10,10,1246738,1,1,19,19,1246872,3,2,12,12,1247203,3,1,17,17,1247385,1,2,12,12,1247516,1,2,12,12,1247709,3,2,12,12,1248087,1,1,17,17,1248303,3,1,1,-1,1248617,1,1,1,-1,1248773,3,2,20,20,1249226,3,1,21,21,1249426,1,2,20,20,1249552,1,1,21,21,1249735,3,1,1,-1,1250006,1,1,1,-1,1250168,3,2,24,24,1250449,3,2,26,26,1250750,3,1,23,23,1250920,1,2,26,26,1251125,1,2,24,24,1251363,1,1,23,23,1251531,3,1,1,-1,1251829,1,1,1,-1,1252039,3,1,1,-1,1252565,1,1,1,-1,1252781,3,2,33,33,1253035,3,1,26,26,1253216,1,2,33,33,1253376,1,1,26,26,1253546,3,1,1,-1,1253865,1,1,1,-1,1254052,3,2,33,33,1254327,3,1,37,37,1254492,3,1,38,38,1254701,1,2,33,33,1254896,1,1,38,38,1255052,1,1,37,37,1255277,3,1,1,-1,1255589,1,1,1,-1,1255765,3,1,1,-1,1256233,1,1,1,-1,1256435,3,2,8,8,1256839,3,1,31,31,1256987,1,2,8,8,1257146,1,1,31,31,1257322,3,2,7,7,1257724,3,1,27,27,1257952,1,2,7,7,1258073,1,1,27,27,1258267,3,2,-1,-1,1258987,3,1,1,-1,1259278,1,1,1,-1,1259491,3,2,32,32,1259794,3,1,24,24,1259965,1,2,32,32,1260125,1,1,24,24,1260303,3,1,1,-1,1260531,1,1,1,-1,1260708,3,2,33,33,1261001,3,1,18,18,1261172,1,2,33,33,1261351,1,1,18,18,1261524,3,1,1,-1,1261846,1,1,1,-1,1262022,3,2,33,33,1262493,3,1,38,38,1262668,1,2,33,33,1262831,1,1,38,38,1263004,3,1,1,-1,1263286,1,1,1,-1,1263480,3,2,24,24,1263874,3,2,20,20,1264435,3,1,28,28,1264609,1,2,20,20,1264788,1,2,24,24,1265154,1,1,28,28,1265352,3,1,1,-1,1265603,1,1,1,-1,1265795,3,2,18,18,1266063,3,1,36,36,1266236,1,2,18,18,1266379,1,1,36,36,1266571,3,1,1,-1,1267012,1,1,1,-1,1267216,3,2,21,21,1267657,3,1,15,15,1267856,1,2,21,21,1267994,1,1,15,15,1268165,3,2,18,18,1268539,3,1,20,20,1268748,1,2,18,18,1268903,1,1,20,20,1269056,3,2,16,16,1269429,3,1,15,15,1269636,1,2,16,16,1269787,1,1,15,15,1269958,3,1,1,-1,1270212,1,1,1,-1,1270418,3,2,21,21,1271013,3,1,5,5,1271186,1,2,21,21,1271384,1,1,5,5,1271532,3,2,24,24,1271777,3,1,8,8,1272009,1,2,24,24,1272116,1,1,8,8,1272308,3,1,1,-1,1272548,1,1,1,-1,1272793,3,2,27,27,1273059,3,1,5,5,1273202,1,2,27,27,1273354,1,1,5,5,1273536,3,2,29,29,1273802,3,1,3,3,1274110,1,2,29,29,1274313,1,1,3,3,1274510,3,2,34,34,1274852,3,1,6,6,1275058,1,2,34,34,1275196,1,1,6,6,1275379,3,1,1,-1,1275699,1,1,1,-1,1275895,3,1,1,-1,1276455,1,1,1,-1,1276696,3,2,4,4,1277127,3,1,18,18,1277298,1,2,4,4,1277463,1,1,18,18,1277638,3,2,5,5,1277979,3,1,13,13,1278169,1,2,5,5,1278288,1,1,13,13,1278480,3,2,-1,-1,1279065,3,1,1,-1,1279404,1,1,1,-1,1279641,3,2,19,19,1279948,3,1,9,9,1280107,1,2,19,19,1280244,1,1,9,9,1280426,3,2,15,15,1280833,3,1,3,3,1281041,1,2,15,15,1281210,1,1,3,3,1281373,3,2,1,-1,1281682,3,1,1,-1,1282461,1,1,1,-1,1282622,3,2,19,19,1283025,3,1,13,13,1283216,1,2,19,19,1283405,1,1,13,13,1283518,3,1,1,-1,1283776,1,1,1,-1,1284022,3,2,25,25,1284408,3,1,16,16,1284622,1,2,25,25,1284737,1,1,16,16,1284925,3,2,26,26,1285263,3,1,11,11,1285434,1,2,26,26,1285872,1,1,11,11,1286052,3,1,1,-1,1286440,1,1,1,-1,1286626,3,2,19,19,1286966,3,1,4,4,1287138,1,2,19,19,1287265,1,1,4,4,1287449,3,1,1,-1,1287735,1,1,1,-1,1287957,3,1,1,-1,1288353,1,1,1,-1,1288607,3,2,31,31,1288933,3,1,3,3,1289078,1,2,31,31,1289241,1,1,3,3,1289414,3,2,33,33,1289676,3,1,2,2,1289854,1,2,33,33,1290014,1,1,2,2,1290194,3,1,1,-1,1290498,1,1,1,-1,1290703,3,1,1,-1,1291118,1,1,1,-1,1291320,3,2,38,38,1291594,3,1,7,7,1291789,1,2,38,38,1291963,1,1,7,7,1292156,3,1,1,-1,1292532,1,1,1,-1,1292765,3,2,34,34,1293136,3,1,13,13,1293325,3,1,10,10,1293644,1,2,34,34,1293823,1,1,10,10,1293967,1,1,13,13,1294335,3,1,1,-1,1294594,1,1,1,-1,1294808,3,1,1,-1,1295273,1,1,1,-1,1295490,3,2,32,32,1295797,3,1,21,21,1295983,3,1,23,23,1296230,1,2,32,32,1296425,1,1,23,23,1296635,1,1,21,21,1296871,3,2,33,33,1297150,3,1,19,19,1297311,1,2,33,33,1297484,1,1,19,19,1297683,3,1,1,-1,1298022,1,1,1,-1,1298224,3,2,35,35,1298698,3,2,32,32,1299003,3,1,28,28,1299169,1,2,32,32,1299312,1,2,35,35,1299680,1,1,28,28,1299989,3,1,1,-1,1300304,1,1,1,-1,1300520,3,1,1,-1,1300964,1,1,1,-1,1301159,3,2,31,31,1301439,3,1,32,32,1301615,1,2,31,31,1301777,1,1,32,32,1301951,3,1,1,-1,1302242,1,1,1,-1,1302475,3,2,25,25,1302811,3,1,28,28,1302987,1,2,25,25,1303154,1,1,28,28,1303320,3,2,25,25,1303637,3,1,24,24,1303812,1,2,25,25,1303978,1,1,24,24,1304174,3,1,1,-1,1304401,1,1,1,-1,1304628,3,2,24,24,1305038,3,1,22,22,1305173,1,2,24,24,1305297,1,1,22,22,1305437,3,1,1,-1,1305843,1,1,1,-1,1306066,3,1,1,-1,1306462,1,1,1,-1,1306730,3,1,1,-1,1307204,1,1,1,-1,1307448,3,2,17,17,1307755,3,1,24,24,1307992,1,2,17,17,1308069,1,1,24,24,1308369,3,1,1,-1,1308811,1,1,1,-1,1309001,3,2,19,19,1309389,3,1,30,30,1309578,1,2,19,19,1309747,1,1,30,30,1309887,3,1,1,-1,1310154,1,1,1,-1,1310360,3,1,1,-1,1310740,1,1,1,-1,1310972,3,2,10,10,1311307,3,1,35,35,1311476,1,2,10,10,1311617,1,1,35,35,1311798,3,1,1,-1,1312075,1,1,1,-1,1312305,3,2,4,4,1312724,3,1,37,37,1312925,1,2,4,4,1313054,1,1,37,37,1313256,3,1,1,-1,1313522,1,1,1,-1,1313759,3,2,8,8,1314023,3,1,33,33,1314206,1,2,8,8,1314364,1,1,33,33,1314540,3,2,11,11,1314868,3,1,30,30,1315040,1,2,11,11,1315207,1,1,30,30,1315351,3,1,1,-1,1315612,1,1,1,-1,1315866,3,2,4,4,1316270,3,1,30,30,1316440,1,2,4,4,1316596,1,1,30,30,1316778,3,1,1,-1,1317078,1,1,1,-1,1317282,3,2,2,2,1317727,3,1,21,21,1317921,1,2,2,2,1318089,1,1,21,21,1318261,3,1,1,-1,1318537,1,1,1,-1,1318816,3,2,7,7,1319210,3,1,20,20,1319391,1,2,7,7,1319564,1,1,20,20,1319724,3,2,11,11,1320068,3,1,21,21,1320237,3,1,19,19,1320450,1,2,11,11,1320587,1,1,19,19,1320774,1,1,21,21,1321034,3,2,13,13,1321222,3,1,21,21,1321396,1,2,13,13,1321559,1,1,21,21,1321735,3,1,1,-1,1322033,1,1,1,-1,1322271,3,1,1,-1,1322582,1,1,1,-1,1322811,3,2,14,14,1323223,3,1,15,15,1323403,3,2,14,14,1323564,1,1,15,15,1323743,3,1,1,-1,1324088,1,1,1,-1,1324363,3,2,11,11,1324869,3,1,7,7,1325082,1,2,11,11,1325243,1,1,7,7,1325408,3,2,13,13,1325709,3,1,5,5,1325910,1,2,13,13,1326050,1,1,5,5,1326229,3,1,1,-1,1326502,1,1,1,-1,1326725,3,2,6,6,1327282,3,1,2,2,1327470,1,2,6,6,1327647,1,1,2,2,1327818,3,1,1,-1,1328113,1,1,1,-1,1328327,3,2,5,5,1328658,3,1,7,7,1328846,1,2,5,5,1328975,1,1,7,7,1329135,3,2,6,6,1329435,3,1,11,11,1329773,1,2,6,6,1330026,1,1,11,11,1330211,3,2,-1,-1,1330823,3,1,1,-1,1331084,1,1,1,-1,1331296,3,2,35,35,1331581,3,1,5,5,1331744,1,2,35,35,1331888,1,1,5,5,1332050,3,2,33,33,1332343,3,1,4,4,1332522,1,2,33,33,1332718,1,1,4,4,1332938,3,1,1,-1,1333163,1,1,1,-1,1333398,3,2,36,36,1333850,3,1,2,2,1334047,1,2,36,36,1334208,1,1,2,2,1334390,3,1,1,-1,1334685,1,1,1,-1,1334894,3,2,28,28,1335198,3,1,3,3,1335409,1,2,28,28,1335539,1,1,3,3,1335701,3,2,31,31,1335981,3,1,5,5,1336186,1,2,31,31,1336347,1,1,5,5,1336525,3,1,1,-1,1336926,1,1,1,-1,1337132,3,2,23,23,1337584,3,2,21,21,1337943,3,1,3,3,1338122,1,2,21,21,1338271,1,2,23,23,1338571,1,1,3,3,1338806,3,2,25,25,1339053,3,1,5,5,1339247,1,2,25,25,1339410,1,1,5,5,1339545,3,1,1,-1,1339900,1,1,1,-1,1340092,3,2,30,30,1340455,3,1,13,13,1340588,1,2,30,30,1340718,1,1,13,13,1340942,3,2,32,32,1341229,3,1,11,11,1341406,1,2,32,32,1341551,1,1,11,11,1341731,3,1,1,-1,1341963,1,1,1,-1,1342139,3,1,1,-1,1342575,1,1,1,-1,1342739,3,2,34,34,1343023,3,1,15,15,1343217,1,2,34,34,1343352,1,1,15,15,1343528,3,1,1,-1,1343871,1,1,1,-1,1344079,3,2,20,20,1344383,3,1,14,14,1344554,1,2,20,20,1344709,1,1,14,14,1344880,3,2,22,22,1345095,3,1,15,15,1345298,1,2,22,22,1345461,1,1,15,15,1345645,3,2,24,24,1345911,3,1,12,12,1346104,1,2,24,24,1346272,1,1,12,12,1346425,3,1,1,-1,1346727,1,1,1,-1,1346951,3,2,19,19,1347362,3,1,18,18,1347656,1,2,19,19,1347896,1,1,18,18,1348045,3,1,1,-1,1348343,1,1,1,-1,1348539,3,2,21,21,1348842,3,1,22,22,1349023,1,2,21,21,1349153,1,1,22,22,1349361,3,1,1,-1,1349670,1,1,1,-1,1349896,3,2,16,16,1350264,3,1,24,24,1350432,1,2,16,16,1350604,1,1,24,24,1350755,3,2,18,18,1350976,3,1,26,26,1351175,1,2,18,18,1351346,1,1,26,26,1351503,3,1,1,-1,1351797,1,1,1,-1,1351993,3,2,14,14,1352349,3,1,29,29,1352521,1,2,14,14,1352675,1,1,29,29,1352849,3,2,11,11,1353192,3,1,30,30,1353386,1,2,11,11,1353524,1,1,30,30,1353730,3,1,1,-1,1354045,1,1,1,-1,1354239,3,2,11,11,1354576,3,1,36,36,1354749,1,2,11,11,1354914,1,1,36,36,1355096,3,2,14,14,1355431,3,1,35,35,1355621,1,2,14,14,1355775,1,1,35,35,1355960,3,1,1,-1,1356223,1,1,1,-1,1356426,3,2,19,19,1356780,3,1,32,32,1356956,1,2,19,19,1357123,1,1,32,32,1357297,3,2,20,20,1357557,3,1,31,31,1357848,1,2,20,20,1358068,1,1,31,31,1358286,3,1,1,-1,1358578,1,1,1,-1,1358752,3,2,24,24,1359090,3,1,38,38,1359278,1,2,24,24,1359430,1,1,38,38,1359795,3,1,1,-1,1360150,1,1,1,-1,1360366,3,2,38,38,1360876,3,1,34,34,1361038,1,2,38,38,1361211,1,1,33,33,1361398,3,2,37,37,1361774,1,2,37,37,1362471,3,2,37,37,1362701,3,1,38,38,1362898,1,2,37,37,1363032,1,1,38,38,1363210,1,1,34,34,1363555,3,1,33,33,1363746,3,1,1,-1,1364053,1,1,1,-1,1364234,3,1,1,-1,1364693,1,1,1,-1,1364934,3,2,31,31,1365323,3,1,26,26,1365520,1,2,31,31,1365649,1,1,26,26,1365827,3,1,1,-1,1366298,1,1,1,-1,1366544,3,2,5,5,1367013,3,1,23,23,1367207,1,2,5,5,1367355,1,1,23,23,1367547,3,1,1,-1,1367771,1,1,1,-1,1367991,3,2,2,2,1368604,3,1,36,36,1368793,1,2,2,2,1369092,1,1,36,36,1369272,3,1,1,-1,1369641,1,1,1,-1,1369845,3,2,4,4,1370161,3,1,20,20,1370334,1,2,4,4,1370472,1,1,20,20,1370692,3,2,10,10,1371019,3,1,21,21,1371205,1,2,10,10,1371377,1,1,21,21,1371557,3,1,1,-1,1371811,1,1,1,-1,1372052,3,2,11,11,1372537,3,1,12,12,1372765,1,2,11,11,1372936,1,1,12,12,1373103,3,1,1,-1,1373371,1,1,1,-1,1373584,3,2,2,2,1374096,3,1,7,7,1374264,1,2,2,2,1374432,1,1,7,7,1374611,3,1,1,-1,1374866,1,1,1,-1,1375072,3,2,-1,-1,1375824,3,1,1,-1,1376061,1,1,1,-1,1376311,3,2,36,36,1376606,3,2,33,33,1376953,3,2,34,34,1377435,3,2,37,37,1377795,3,1,10,10,1377961,1,2,37,37,1378168,1,2,34,34,1378505,1,1,10,10,1378691,1,2,36,36,1378984,1,2,33,33,1379298,3,1,1,-1,1379602,1,1,1,-1,1379763,3,2,33,33,1380072,3,1,12,12,1380238,1,2,33,33,1380390,1,1,12,12,1380579,3,2,38,38,1380987,3,1,6,6,1381290,1,2,38,38,1381502,1,1,6,6,1381706,1,1,1,-1,1382221,1,1,1,-1,1382553,3,1,1,-1,1382981,3,1,1,-1,1383194,3,1,1,-1,1383426,1,1,1,-1,1383937,3,2,32,32,1384232,3,1,23,23,1384407,1,2,32,32,1384541,1,1,23,23,1384713,3,1,1,-1,1385022,1,1,1,-1,1385223,3,2,32,32,1385528,3,1,31,31,1385701,1,2,32,32,1385843,1,1,31,31,1386011,3,2,38,38,1386370,3,1,34,34,1386596,1,2,38,38,1386740,1,1,34,34,1386917,3,1,1,-1,1387224,1,1,1,-1,1387449,3,2,23,23,1387807,3,1,30,30,1388051,1,2,23,23,1388163,1,1,30,30,1388386,3,2,17,17,1388950,3,1,30,30,1389117,1,2,17,17,1389258,1,1,30,30,1389435,3,1,1,-1,1389813,1,1,1,-1,1390034,3,2,25,25,1390505,1,2,26,26,1390816,3,2,26,26,1391288,3,1,18,18,1391473,1,2,25,25,1391632,1,1,18,18,1391827,3,1,1,-1,1392098,1,1,1,-1,1392244,3,2,18,18,1392544,3,1,13,13,1392712,1,2,18,18,1392852,1,1,13,13,1393032,3,2,19,19,1393193,3,1,14,14,1393371,1,2,19,19,1393544,1,1,14,14,1393698,3,1,1,-1,1394130,1,1,1,-1,1394309,3,2,2,2,1394693,3,1,10,10,1394880,1,2,2,2,1395032,1,1,10,10,1395191,3,2,2,2,1395579,3,1,3,3,1395798,1,2,2,2,1395935,1,1,3,3,1396156,3,1,1,-1,1396600,1,1,1,-1,1396727,3,2,2,2,1397243,3,1,26,26,1397459,1,2,2,2,1397618,1,1,26,26,1397803,3,2,4,4,1398115,3,1,22,22,1398311,1,2,3,3,1398451,3,2,3,3,1399054,1,2,4,4,1399313,1,1,22,22,1399498,3,2,2,2,1399779,3,1,21,21,1399968,1,2,2,2,1400145,1,1,21,21,1400324,3,2,1,-1,1400609,3,1,1,-1,1401099,1,1,1,-1,1401296,3,1,1,-1,1401802,1,1,1,-1,1402060,3,1,1,-1,1402449,1,1,1,-1,1402714,3,2,-1,-1,1403633,3,1,1,-1,1403871,1,1,1,-1,1404113,3,2,35,35,1404546,3,1,7,7,1404724,1,2,35,35,1404865,1,1,7,7,1405033,3,1,1,-1,1405306,1,1,1,-1,1405509,3,1,1,-1,1405978,1,1,1,-1,1406226,3,1,1,-1,1406668,1,1,1,-1,1406891,3,2,32,32,1407233,3,1,20,20,1407409,1,2,32,32,1407573,1,1,20,20,1407716,3,1,1,-1,1408020,1,1,1,-1,1408240,3,1,1,-1,1408679,1,1,1,-1,1408890,3,1,1,-1,1409332,1,1,1,-1,1409545,3,2,18,18,1409838,3,1,22,22,1410122,1,2,18,18,1410428,1,1,22,22,1410634,3,2,19,19,1410938,3,1,19,19,1411115,1,2,19,19,1411273,1,1,19,19,1411418,3,1,1,-1,1411745,1,1,1,-1,1411944,3,2,20,20,1412533,3,1,27,27,1412733,1,2,20,20,1412897,1,1,27,27,1413046,3,1,1,-1,1413321,1,1,1,-1,1413555,3,2,29,29,1413850,3,1,28,28,1414033,1,2,29,29,1414159,1,1,28,28,1414332,3,1,1,-1,1414633,1,1,1,-1,1414777,3,2,33,33,1415305,3,2,32,32,1415459,3,1,32,32,1415647,1,2,32,32,1415852,1,2,33,33,1416059,1,1,32,32,1416269,3,1,1,-1,1416566,1,1,1,-1,1416810,3,2,38,38,1417386,3,1,24,24,1417622,1,2,38,38,1418043,1,1,24,24,1418219,3,1,1,-1,1418598,1,1,1,-1,1418816,3,1,1,-1,1419243,1,1,1,-1,1419487,3,2,28,28,1419832,3,1,37,37,1420026,1,2,28,28,1420180,1,1,37,37,1420338,3,2,31,31,1420640,3,1,36,36,1420809,1,2,31,31,1420981,1,1,36,36,1421152,3,1,1,-1,1421455,1,1,1,-1,1421656,3,2,23,23,1421954,3,1,38,38,1422134,1,2,23,23,1422280,1,1,38,38,1422479,3,2,24,24,1422672,3,1,39,39,1422855,1,2,24,24,1423008,1,1,39,39,1423192,3,1,1,-1,1423497,1,1,1,-1,1423703,3,2,17,17,1423998,3,1,37,37,1424210,1,2,17,17,1424306,1,1,37,37,1424575,3,1,1,-1,1424818,1,1,1,-1,1425012,3,2,20,20,1425401,3,1,35,35,1425572,1,2,20,20,1425727,1,1,35,35,1425897,3,2,16,16,1426347,3,1,34,34,1426510,1,2,16,16,1426640,1,1,34,34,1426824,3,1,1,-1,1427117,1,1,1,-1,1427305,3,2,11,11,1427698,3,1,35,35,1427864,1,2,11,11,1427997,1,1,35,35,1428186,3,1,1,-1,1428432,1,1,1,-1,1428692,3,2,2,2,1429131,3,1,34,34,1429294,1,2,2,2,1429441,1,1,34,34,1429658,3,1,1,-1,1429966,1,1,1,-1,1430235,3,2,13,13,1430683,3,1,26,26,1430868,1,2,13,13,1431016,1,1,26,26,1431200,3,1,1,-1,1431440,1,1,1,-1,1431666,3,2,8,8,1432104,3,1,26,26,1432308,1,2,8,8,1432478,1,1,26,26,1432620,3,1,1,-1,1432895,1,1,1,-1,1433128,3,2,12,12,1433538,3,1,22,22,1433735,1,2,12,12,1433874,1,1,22,22,1434076,3,1,1,-1,1434380,1,1,1,-1,1434598,3,2,12,12,1435036,3,1,18,18,1435204,1,2,12,12,1435368,1,1,18,18,1435538,3,1,1,-1,1435820,1,1,1,-1,1436084,3,2,8,8,1436366,3,1,18,18,1436560,1,2,8,8,1436738,1,1,18,18,1436901,3,2,4,4,1437342,3,1,16,16,1437518,1,2,4,4,1437651,1,1,16,16,1437885,3,1,1,-1,1438142,1,1,1,-1,1438365,3,2,6,6,1438818,3,1,9,9,1438970,1,2,6,6,1439131,1,1,9,9,1439313,3,2,7,7,1439541,3,1,8,8,1439715,1,2,7,7,1439890,1,1,8,8,1440091,3,1,1,-1,1440310,1,1,1,-1,1440562,3,2,2,2,1441034,3,1,4,4,1441208,1,2,2,2,1441345,1,1,4,4,1441549,3,2,7,7,1442091,3,1,4,4,1442315,1,1,4,4,1442588,1,2,7,7,1442764,3,2,6,6,1442967,3,1,4,4,1443136,1,2,6,6,1443305,1,1,4,4,1443450,3,1,1,-1,1443721,1,1,1,-1,1443942,3,1,1,-1,1444352,1,1,1,-1,1444622,3,2,15,15,1444964,3,1,4,4,1445202,1,1,4,4,1445453,3,1,4,4,1445909,1,2,15,15,1446491,1,1,4,4,1446702,3,2,17,17,1446934,3,1,6,6,1447107,1,2,17,17,1447275,1,1,6,6,1447448,3,1,1,-1,1447681,1,1,1,-1,1447862,3,2,22,22,1448231,3,1,6,6,1448396,1,2,22,22,1448593,1,1,6,6,1448779,3,1,1,-1,1449102,1,1,1,-1,1449293,3,1,1,-1,1449718,1,1,1,-1,1449971,3,2,23,23,1450302,3,1,10,10,1450464,1,2,23,23,1450630,1,1,10,10,1450798,3,1,1,-1,1451087,1,1,1,-1,1451347,3,2,31,31,1451853,3,1,4,4,1452004,1,2,31,31,1452130,1,1,4,4,1452329,3,1,1,-1,1452641,1,1,1,-1,1452929,3,2,-1,-1,1453362,3,1,1,-1,1453769,1,1,1,-1,1454016,3,1,1,-1,1454508,1,1,1,-1,1454811,3,2,39,39,1455363,3,1,10,10,1455566,1,2,39,39,1455716,1,1,10,10,1455886,3,1,1,-1,1456202,1,1,1,-1,1456417,3,2,38,38,1456684,3,1,16,16,1456848,1,2,38,38,1457015,1,1,16,16,1457188,3,1,1,-1,1457520,1,1,1,-1,1457713,3,2,31,31,1458024,3,1,19,19,1458172,1,2,31,31,1458332,1,1,19,19,1458496,3,1,1,-1,1458772,1,1,1,-1,1459039,3,2,24,24,1459400,3,1,20,20,1459552,1,2,24,24,1459732,1,1,20,20,1459892,3,1,1,-1,1460196,1,1,1,-1,1460396,3,1,1,-1,1460844,1,1,1,-1,1461045,3,1,1,-1,1461433,1,1,1,-1,1461725,3,2,36,36,1462047,3,1,28,28,1462243,1,2,36,36,1462410,1,1,28,28,1462575,3,2,38,38,1462876,3,1,25,25,1463061,1,2,38,38,1463223,1,1,25,25,1463395,3,1,1,-1,1463789,1,1,1,-1,1464022,3,2,36,36,1464310,3,1,37,37,1464483,1,2,36,36,1464645,1,1,37,37,1464844,3,2,38,38,1465111,3,1,36,36,1465422,1,2,38,38,1465634,1,1,36,36,1465877,3,1,1,-1,1466491,1,1,1,-1,1466678,3,2,28,28,1467215,3,1,37,37,1467466,1,2,28,28,1467637,1,1,37,37,1467807,3,1,1,-1,1468105,1,1,1,-1,1468308,3,2,17,17,1468577,3,1,39,39,1468749,1,2,17,17,1468883,1,1,39,39,1469097,3,1,1,-1,1469405,1,1,1,-1,1469648,3,2,15,15,1469947,3,1,31,31,1470125,1,2,15,15,1470254,1,1,31,31,1470423,3,1,1,-1,1470760,1,1,1,-1,1470928,3,2,6,6,1471322,3,1,32,32,1471441,1,2,6,6,1471593,1,1,32,32,1471761,3,1,1,-1,1472207,1,1,1,-1,1472417,3,2,12,12,1472715,3,1,21,21,1472878,1,2,12,12,1473044,1,1,21,21,1473223,3,1,1,-1,1473486,1,1,1,-1,1473705,3,1,1,-1,1474073,1,1,1,-1,1474324,3,2,6,6,1474686,3,2,5,5,1474854,3,1,12,12,1475051,1,2,5,5,1475234,1,2,6,6,1475489,1,1,12,12,1475663,3,1,1,-1,1475954,1,1,1,-1,1476170,3,2,3,3,1476670,3,1,2,2,1476883,1,2,3,3,1477039,1,1,2,2,1477179,3,2,7,7,1477494,3,1,4,4,1477665,1,2,7,7,1477834,1,1,4,4,1478006,3,1,1,-1,1478267,1,1,1,-1,1478470,3,2,12,12,1478871,3,1,5,5,1479043,1,2,12,12,1479213,1,1,5,5,1479393,3,1,1,-1,1479642,1,1,1,-1,1479845,3,2,19,19,1480380,3,1,5,5,1480547,1,2,19,19,1480711,1,1,5,5,1480881,3,1,1,-1,1481187,1,1,1,-1,1481403,3,2,16,16,1481701,3,1,12,12,1481874,1,2,16,16,1482018,1,1,12,12,1482206,3,1,1,-1,1482455,1,1,1,-1,1482688,3,2,26,26,1483230,3,1,2,2,1483437,1,2,26,26,1483573,1,1,2,2,1483740,3,1,1,-1,1484072,1,1,1,-1,1484323,3,1,1,-1,1484723,1,1,1,-1,1485056,3,2,-1,-1,1485842,3,1,1,-1,1486144,1,1,1,-1,1486343,3,2,31,31,1486647,3,1,10,10,1486826,1,2,31,31,1486951,1,1,10,10,1487123,3,2,34,34,1487400,3,1,9,9,1487565,3,1,8,8,1487777,1,2,34,34,1487911,1,1,8,8,1488158,1,1,9,9,1488312,3,1,1,-1,1488619,1,1,1,-1,1488828,3,2,33,33,1489511,3,1,14,14,1489706,1,2,33,33,1489844,1,1,14,14,1490016,3,1,1,-1,1490285,1,1,1,-1,1490480,3,2,27,27,1490879,3,2,26,26,1491055,3,1,18,18,1491257,1,2,27,27,1491462,1,2,26,26,1491649,1,1,18,18,1491830,3,2,32,32,1492205,3,1,17,17,1492373,1,2,32,32,1492517,1,1,17,17,1492690,3,1,1,-1,1493089,1,1,1,-1,1493301,3,2,28,28,1493745,3,1,29,29,1493943,1,2,28,28,1494079,1,1,29,29,1494277,3,2,34,34,1494719,3,1,26,26,1494920,1,1,26,26,1495252,3,1,26,26,1495633,1,2,34,34,1495804,1,1,26,26,1496008,3,1,1,-1,1496348,1,1,1,-1,1496507,3,2,37,37,1496821,3,1,37,37,1497026,1,2,37,37,1497192,1,1,37,37,1497370,3,1,1,-1,1497681,1,1,1,-1,1497885,3,2,17,17,1498316,3,1,39,39,1498487,1,2,17,17,1498649,1,1,39,39,1498802,3,2,13,13,1499203,3,1,37,37,1499371,1,2,13,13,1499535,1,1,37,37,1499744,3,1,1,-1,1500122,1,1,1,-1,1500328,3,2,16,16,1500727,3,2,12,12,1501166,3,1,22,22,1501335,1,2,12,12,1501505,1,2,16,16,1502049,1,1,22,22,1502212,3,1,1,-1,1502461,1,1,1,-1,1502632,3,2,23,23,1502923,3,1,23,23,1503106,1,2,23,23,1503248,1,1,23,23,1503472,3,1,1,-1,1503749,1,1,1,-1,1503950,3,2,16,16,1504330,3,1,16,16,1504493,1,2,16,16,1504646,1,1,16,16,1504806,3,1,1,-1,1505072,1,1,1,-1,1505276,3,2,8,8,1505543,3,1,18,18,1505720,1,2,8,8,1505885,1,1,18,18,1506059,3,1,1,-1,1506395,1,1,1,-1,1506598,3,2,5,5,1506916,3,1,9,9,1507089,1,2,5,5,1507244,1,1,9,9,1507412,3,1,1,-1,1507679,1,1,1,-1,1507886,3,2,10,10,1508164,3,1,6,6,1508324,1,2,10,10,1508501,1,1,6,6,1508669,3,1,1,-1,1508969,1,1,1,-1,1509214,3,2,15,15,1509482,3,1,9,9,1509651,1,2,15,15,1509817,1,1,9,9,1509987,3,2,16,16,1510203,3,1,7,7,1510404,1,2,16,16,1510566,1,2,16,16,1510742,3,2,15,15,1511049,1,2,15,15,1511647,1,2,16,16,1511864,1,2,16,16,1512365,1,2,16,16,1512531,1,1,7,7,1512843,3,2,15,15,1513110,3,1,4,4,1513288,1,2,15,15,1513412,1,1,4,4,1513651,3,1,1,-1,1513900,1,1,1,-1,1514136,3,2,26,26,1514816,3,1,2,2,1514995,1,2,26,26,1515165,1,1,2,2,1515354,3,2,-1,-1,1516239,3,1,1,-1,1516444,1,1,1,-1,1516646,3,2,36,36,1517015,3,1,14,14,1517193,1,2,36,36,1517356,1,1,14,14,1517525,3,2,1,-1,1517776,3,1,1,-1,1518202,1,1,1,-1,1518447,3,2,32,32,1518777,3,1,14,14,1518956,1,2,32,32,1519120,1,1,14,14,1519271,3,2,30,30,1519628,3,1,12,12,1519803,1,2,30,30,1519970,1,1,12,12,1520150,3,2,35,35,1520494,3,1,11,11,1520691,1,2,35,35,1520863,1,1,11,11,1521067,3,1,1,-1,1521497,1,1,1,-1,1521717,3,2,36,36,1521981,3,1,7,7,1522144,1,2,36,36,1522288,1,1,7,7,1522482,3,1,1,-1,1522696,1,1,1,-1,1522893,3,1,1,-1,1523269,1,1,1,-1,1523540,3,2,30,30,1523945,3,1,8,8,1524248,1,2,30,30,1524563,1,1,8,8,1524759,3,1,1,-1,1524995,1,1,1,-1,1525268,3,1,1,-1,1525544,1,1,1,-1,1525740,3,2,29,29,1526258,3,1,2,2,1526503,1,2,29,29,1526689,1,1,2,2,1526860,3,1,1,-1,1527266,1,1,1,-1,1527480,3,2,15,15,1527759,3,1,7,7,1527932,1,2,15,15,1528092,1,1,7,7,1528285,3,2,17,17,1528596,3,1,2,2,1528806,1,2,17,17,1528979,1,1,2,2,1529173,3,1,1,-1,1529504,1,1,1,-1,1529724,3,2,11,11,1530194,3,2,13,13,1530428,3,1,10,10,1530621,1,2,13,13,1530773,1,2,11,11,1531045,1,1,10,10,1531244,3,1,1,-1,1531578,1,1,1,-1,1531794,3,2,2,2,1532277,3,1,6,6,1532463,1,2,2,2,1532599,1,1,6,6,1532827,3,1,1,-1,1533145,1,1,1,-1,1533362,3,2,7,7,1533656,3,1,12,12,1533827,1,2,7,7,1533958,1,1,12,12,1534155,3,2,6,6,1534363,3,1,13,13,1534560,1,2,6,6,1534725,1,1,13,13,1534896,3,1,1,-1,1535151,1,1,1,-1,1535407,3,2,6,6,1535689,3,1,15,15,1535898,1,2,6,6,1536070,1,1,15,15,1536267,3,2,4,4,1536531,3,1,14,14,1536716,1,2,4,4,1536877,1,1,14,14,1537049,3,1,1,-1,1537394,1,1,1,-1,1537600,3,2,15,15,1537875,3,2,14,14,1538029,3,1,15,15,1538272,1,2,14,14,1538439,1,2,15,15,1538872,1,1,15,15,1539079,3,1,1,-1,1539364,1,1,1,-1,1539595,3,2,23,23,1540037,3,1,13,13,1540211,1,2,23,23,1540352,1,1,13,13,1540551,3,1,1,-1,1540806,1,1,1,-1,1540985,3,2,25,25,1541282,3,1,14,14,1541438,1,2,25,25,1541643,1,1,14,14,1541779,3,2,27,27,1542068,1,2,27,27,1542486,3,2,28,28,1542695,3,1,15,15,1542912,1,2,28,28,1543028,1,1,15,15,1543301,3,1,1,-1,1543605,1,1,1,-1,1543809,3,2,30,30,1544111,3,1,20,20,1544331,3,1,15,15,1544625,1,1,15,15,1545096,3,1,17,17,1545374,1,2,30,30,1545539,1,1,17,17,1545725,1,1,20,20,1546099,3,1,1,-1,1546358,1,1,1,-1,1546528,3,2,39,39,1547406,3,1,22,22,1547639,1,2,39,39,1547810,1,1,22,22,1548050,3,1,1,-1,1548559,1,1,1,-1,1548734,3,2,33,33,1549281,3,1,25,25,1549462,1,2,33,33,1549602,1,1,25,25,1549871,3,1,1,-1,1550553,1,1,1,-1,1550777,3,2,39,39,1551281,3,1,28,28,1551488,1,2,39,39,1551631,1,1,28,28,1551841,3,1,1,-1,1552176,1,1,1,-1,1552452,3,2,37,37,1552855,3,1,34,34,1553050,1,2,37,37,1553209,1,1,34,34,1553396,3,1,1,-1,1553727,1,1,1,-1,1553943,3,2,35,35,1554285,3,1,39,39,1554442,1,2,35,35,1554579,1,1,39,39,1554780,3,2,38,38,1555085,3,1,38,38,1555258,1,2,38,38,1555439,1,1,38,38,1555644,3,1,1,-1,1556041,1,1,1,-1,1556249,3,2,29,29,1556648,3,1,35,35,1556851,3,1,38,38,1557203,1,2,29,29,1557362,1,1,38,38,1557564,1,1,35,35,1557884,3,1,1,-1,1558168,1,1,1,-1,1558379,3,2,25,25,1558662,3,1,37,37,1558855,1,2,25,25,1559034,1,1,37,37,1559211,3,1,1,-1,1559539,1,1,1,-1,1559702,3,1,1,-1,1560217,1,1,1,-1,1560481,3,2,12,12,1560795,3,1,32,32,1560960,1,2,12,12,1561125,1,1,32,32,1561319,3,1,1,-1,1561605,1,1,1,-1,1561809,3,2,16,16,1562119,3,1,26,26,1562446,1,2,16,16,1562681,1,1,26,26,1562894,3,1,1,-1,1563271,1,1,1,-1,1563508,3,2,5,5,1563843,3,1,26,26,1564022,1,2,5,5,1564171,1,1,26,26,1564343,3,1,1,-1,1564587,1,1,1,-1,1564800,3,2,8,8,1565205,3,1,22,22,1565387,1,2,8,8,1565537,1,1,22,22,1565685,3,2,9,9,1565845,3,1,23,23,1566053,1,2,9,9,1566202,1,1,23,23,1566385,3,1,1,-1,1566671,1,1,1,-1,1566866,3,2,9,9,1567255,3,1,29,29,1567418,1,2,9,9,1567563,1,1,29,29,1567753,3,1,1,-1,1568135,1,1,1,-1,1568400,3,2,5,5,1568942,3,1,35,35,1569111,1,2,5,5,1569251,1,1,35,35,1569432,3,1,1,-1,1569722,1,1,1,-1,1570233,3,2,2,2,1570540,3,1,39,39,1570705,1,2,2,2,1570844,1,1,39,39,1571062,3,1,1,-1,1571327,1,1,1,-1,1571504,3,1,1,-1,1572139,1,1,1,-1,1572366,3,2,13,13,1573018,3,1,19,19,1573268,1,2,13,13,1573392,1,1,19,19,1573620,3,1,1,-1,1573922,1,1,1,-1,1574141,3,2,11,11,1574579,3,1,14,14,1574966,1,2,11,11,1575133,1,1,14,14,1575377,3,1,1,-1,1575704,1,1,1,-1,1575905,3,1,1,-1,1576345,1,1,1,-1,1576598,3,1,1,-1,1576905,1,1,1,-1,1577145,3,2,-1,-1,1577804,3,1,1,-1,1578180,1,1,1,-1,1578380,3,2,32,32,1578819,3,2,29,29,1579440,3,1,6,6,1579603,1,2,29,29,1579777,1,2,32,32,1580173,1,1,6,6,1580376,3,1,1,-1,1580616,1,1,1,-1,1580832,3,2,35,35,1581164,3,1,3,3,1581414,1,1,3,3,1581654,3,1,3,3,1582104,1,2,35,35,1582346,1,1,3,3,1582500,3,1,1,-1,1582810,1,1,1,-1,1583013,3,2,27,27,1583395,3,1,3,3,1583605,1,2,27,27,1583738,1,1,3,3,1583906,3,1,1,-1,1584301,1,1,1,-1,1584505,3,1,1,-1,1584843,1,1,1,-1,1585032,3,1,1,-1,1585498,1,1,1,-1,1585764,3,2,7,7,1586069,3,1,13,13,1586232,1,2,7,7,1586371,1,1,13,13,1586544,3,2,9,9,1586815,3,2,8,8,1586983,3,1,12,12,1587348,1,2,9,9,1587575,1,2,8,8,1587770,1,1,12,12,1587943,3,1,1,-1,1588302,1,1,1,-1,1588509,3,2,9,9,1588787,3,1,19,19,1589020,1,2,9,9,1589171,1,1,19,19,1589326,3,1,1,-1,1589628,1,1,1,-1,1589840,3,2,8,8,1590327,3,1,24,24,1590614,1,2,8,8,1590753,1,1,24,24,1590953,3,1,1,-1,1591426,1,1,1,-1,1591634,3,2,5,5,1591973,3,2,3,3,1592280,3,1,36,36,1592483,1,2,3,3,1592624,1,2,5,5,1592894,1,1,36,36,1593071,3,1,1,-1,1593309,1,1,1,-1,1593512,3,1,1,-1,1593940,1,1,1,-1,1594147,3,1,1,-1,1594460,1,1,1,-1,1594704,3,2,20,20,1595107,3,1,39,39,1595306,1,2,20,20,1595449,1,1,39,39,1595644,3,1,1,-1,1595916,1,1,1,-1,1596103,3,2,26,26,1596565,3,1,35,35,1596771,1,2,26,26,1596935,1,1,35,35,1597107,3,1,1,-1,1598016,1,1,1,-1,1598225,3,1,1,-1,1598698,1,1,1,-1,1598900,3,2,36,36,1599316,3,1,20,20,1599541,1,2,36,36,1599684,1,1,20,20,1599888,3,1,1,-1,1600123,1,1,1,-1,1600366,3,2,20,20,1600936,3,1,15,15,1601108,1,2,20,20,1601241,1,1,15,15,1601456,3,1,1,-1,1601747,1,1,1,-1,1601984,3,2,-1,-1,1602510,3,1,1,-1,1602815,1,1,1,-1,1603075,3,2,34,34,1603381,3,1,2,2,1603587,1,2,34,34,1603723,1,1,2,2,1603890,3,1,1,-1,1604247,1,1,1,-1,1604497,3,2,27,27,1604787,3,1,8,8,1604964,1,2,27,27,1605099,1,1,8,8,1605304,3,1,1,-1,1605680,1,1,1,-1,1605944,3,2,14,14,1606431,3,1,6,6,1606731,1,2,14,14,1607005,1,1,6,6,1607181,3,1,1,-1,1607438,1,1,1,-1,1607616,3,2,7,7,1607913,3,1,5,5,1608079,1,2,7,7,1608220,1,1,5,5,1608391,3,1,1,-1,1608697,1,1,1,-1,1608863,3,2,8,8,1609209,3,1,10,10,1609378,1,2,8,8,1609505,1,1,10,10,1609682,3,2,11,11,1610030,3,1,15,15,1610224,1,2,11,11,1610406,1,1,15,15,1610600,3,2,22,22,1611079,3,1,15,15,1611321,1,2,22,22,1611513,1,1,15,15,1611694,3,1,1,-1,1612100,1,1,1,-1,1612278,3,2,5,5,1612622,3,1,25,25,1612813,1,2,5,5,1612952,1,1,25,25,1613111,3,1,1,-1,1613454,1,1,1,-1,1613624,3,2,7,7,1613963,3,1,36,36,1614133,1,2,7,7,1614275,1,1,36,36,1614443,3,2,8,8,1614656,1,2,8,8,1614993,3,2,9,9,1615165,3,1,37,37,1615359,1,2,9,9,1615524,1,1,37,37,1615696,1,1,38,38,1616073,3,1,38,38,1616550,3,2,4,4,1616851,3,1,39,39,1617085,1,2,4,4,1617202,1,1,39,39,1617401,3,1,1,-1,1617763,1,1,1,-1,1617944,3,2,21,21,1618253,3,1,35,35,1618427,1,2,21,21,1618583,1,1,35,35,1618750,3,2,24,24,1619073,3,1,38,38,1619307,1,2,24,24,1619435,1,1,38,38,1619651,3,1,1,-1,1619951,1,1,1,-1,1620092,3,2,32,32,1620432,3,1,39,39,1620630,1,2,32,32,1620804,1,1,39,39,1621006,3,1,1,-1,1621354,1,1,1,-1,1621544,3,2,34,34,1621830,3,1,31,31,1622003,1,2,34,34,1622198,1,1,31,31,1622361,3,2,36,36,1622715,3,1,27,27,1622909,1,2,36,36,1623122,1,1,27,27,1623276,3,1,1,-1,1623822,1,1,1,-1,1624045,3,2,34,34,1624303,3,1,18,18,1624510,1,2,34,34,1624651,1,1,18,18,1624846,3,1,1,-1,1625310,1,1,1,-1,1625483,3,2,-1,-1,1626201,3,1,1,-1,1626474,1,1,1,-1,1626681,3,2,31,31,1626957,3,1,6,6,1627120,1,2,31,31,1627319,1,1,6,6,1627467,3,1,1,-1,1627735,1,1,1,-1,1627930,3,2,37,37,1628220,3,1,5,5,1628378,1,2,37,37,1628545,1,1,5,5,1628781,3,1,1,-1,1629358,1,1,1,-1,1629536,3,2,7,7,1630100,3,1,6,6,1630308,1,2,7,7,1630477,1,1,6,6,1630689,3,1,1,20,1631571,2,2,1,1,1631835,1,1,1,20,1632009,3,1,-20,-1,1632214,2,2,1,1,1632456,1,1,-20,-1,1632644,3,1,1,-1,1633258,1,1,1,-1,1633472,3,2,12,12,1633776,3,1,19,19,1633948,1,2,12,12,1634100,1,1,19,19,1634281,3,1,1,-1,1634514,1,1,1,-1,1634745,3,1,1,-1,1635153,1,1,1,-1,1635405,3,1,1,-1,1636052,1,1,1,-1,1636247,3,2,23,23,1636525,3,1,14,14,1636681,1,2,23,23,1636855,1,1,14,14,1637021,3,2,24,24,1637259,3,1,13,13,1637473,1,2,24,24,1637599,1,1,13,13,1637804,3,1,1,-1,1638076,1,1,1,-1,1638284,3,2,27,27,1638616,3,1,14,14,1638798,1,2,27,27,1639004,1,1,14,14,1639126,3,1,1,-1,1639378,1,1,1,-1,1639576,3,2,29,29,1640024,3,1,10,10,1640192,1,2,29,29,1640348,1,1,10,10,1640519,3,2,32,32,1640817,3,1,10,10,1640977,3,1,9,9,1641197,1,2,32,32,1641374,1,1,9,9,1641730,1,1,10,10,1641893,3,1,1,-1,1642191,1,1,1,-1,1642444,3,2,38,38,1642841,3,1,6,6,1643031,1,2,38,38,1643209,1,1,6,6,1643388,3,2,34,34,1643794,3,1,4,4,1643964,1,2,34,34,1644131,1,1,4,4,1644292,3,1,1,-1,1644613,1,1,1,-1,1644847,3,2,27,27,1645531,3,1,9,9,1645880,1,2,27,27,1646136,1,1,9,9,1646329,3,1,1,-1,1647041,1,1,1,-1,1647199,3,2,30,30,1647481,3,1,4,4,1647676,1,2,30,30,1647862,1,1,4,4,1647984,3,1,1,-1,1648341,1,1,1,-1,1648590,3,1,1,-1,1649067,1,1,1,-1,1649349,3,1,1,-1,1649930,1,1,1,-1,1650242,3,2,16,16,1650676,3,1,8,8,1650862,1,2,16,16,1650990,1,1,8,8,1651150,3,2,18,18,1651485,3,1,10,10,1651701,1,2,18,18,1651866,1,1,10,10,1652033,3,2,19,19,1652199,3,1,11,11,1652512,1,2,19,19,1652774,1,1,11,11,1653020,3,2,23,23,1653365,3,1,11,11,1653878,1,2,23,23,1654031,1,1,11,11,1654215,3,1,1,-1,1654546,1,1,1,-1,1654747,3,2,15,15,1655058,3,1,11,11,1655216,1,2,15,15,1655360,1,1,11,11,1655561,3,2,16,16,1655760,3,1,14,14,1656047,1,2,16,16,1656208,1,1,14,14,1656417,3,1,1,-1,1656716,1,1,1,-1,1656917,3,2,11,11,1657267,3,1,9,9,1657444,1,2,11,11,1657600,1,1,9,9,1657780,3,1,1,-1,1658077,1,1,1,-1,1658309,3,1,1,-1,1658662,1,1,1,-1,1658892,3,2,2,2,1659229,3,1,5,5,1659406,1,2,2,2,1659598,1,1,5,5,1659774,3,2,2,2,1660150,3,1,9,9,1660352,1,2,2,2,1660510,1,1,9,9,1660691,3,1,1,-1,1660958,1,1,1,-1,1661156,3,2,3,3,1661475,3,1,11,11,1661695,1,2,3,3,1661809,1,1,11,11,1662022,3,1,1,-1,1662314,1,1,1,-1,1662530,3,2,2,2,1662865,3,1,16,16,1663084,1,2,2,2,1663231,1,1,16,16,1663418,3,1,1,-1,1663683,1,1,1,-1,1663947,3,2,9,9,1664396,3,1,11,11,1664559,1,2,9,9,1664733,1,1,11,11,1664897,3,1,1,-1,1665207,1,1,1,-1,1665437,3,1,1,-1,1665950,1,1,1,-1,1666178,3,2,2,2,1666764,3,1,25,25,1666976,1,2,2,2,1667105,1,1,25,25,1667329,3,2,5,5,1667673,3,1,22,22,1667906,1,2,5,5,1668045,1,1,22,22,1668318,3,1,1,-1,1668578,1,1,1,-1,1668774,3,2,2,2,1669096,3,1,29,29,1669257,3,1,30,30,1669486,1,2,2,2,1669654,1,1,30,30,1669857,1,1,29,29,1670065,3,1,1,-1,1670508,1,1,1,-1,1670750,3,1,1,-1,1671149,1,1,1,-1,1671369,3,2,6,6,1671667,3,2,5,5,1671842,3,1,33,33,1672007,1,2,6,6,1672247,1,2,5,5,1672434,1,1,33,33,1672613,3,1,1,-1,1672855,1,1,1,-1,1673131,3,2,8,8,1673524,3,1,30,30,1673740,1,2,8,8,1673900,1,1,30,30,1674068,3,1,1,-1,1674343,1,1,1,-1,1674610,3,1,1,-1,1674963,1,1,1,-1,1675190,3,2,14,14,1675838,3,1,25,25,1676076,1,2,14,14,1676242,1,1,25,25,1676447,3,1,1,-1,1676676,1,1,1,-1,1676908,3,1,1,-1,1677293,1,1,1,-1,1677557,3,1,1,-1,1677909,1,1,1,-1,1678140,3,2,21,21,1678473,3,1,21,21,1678654,1,2,21,21,1678808,1,1,21,21,1678987,3,1,1,-1,1679247,1,1,1,-1,1679523,3,1,1,-1,1679894,1,1,1,-1,1680100,3,2,28,28,1680810,3,1,22,22,1681022,1,2,28,28,1681179,1,1,22,22,1681355,3,1,1,-1,1681669,1,1,1,-1,1681948,3,1,1,-1,1682524,1,1,1,-1,1682726,3,1,1,-1,1683242,1,1,1,-1,1683508,3,2,23,23,1683810,3,1,29,29,1683979,3,1,31,31,1684221,1,2,23,23,1684394,1,1,31,31,1684633,1,1,29,29,1684892,3,1,1,-1,1685420,1,1,1,-1,1685641,3,2,19,19,1686013,3,1,27,27,1686220,1,2,19,19,1686352,1,1,27,27,1686556,3,1,1,-1,1686985,1,1,1,-1,1687204,3,2,16,16,1687521,3,1,27,27,1687689,1,2,16,16,1687843,1,1,27,27,1688025,3,2,17,17,1688158,3,1,28,28,1688362,1,2,17,17,1688524,1,1,28,28,1688698,3,2,19,19,1688874,1,2,19,19,1689269,3,2,18,18,1689484,3,1,29,29,1689649,1,2,18,18,1689784,1,1,29,29,1689999,3,1,1,-1,1690286,1,1,1,-1,1690475,3,2,16,16,1691008,3,1,30,30,1691185,1,2,16,16,1691344,1,1,30,30,1691529,3,1,1,-1,1691834,1,1,1,-1,1692069,3,2,15,15,1692635,3,2,14,14,1692785,3,1,37,37,1692953,1,2,15,15,1693175,1,2,14,14,1693380,1,1,37,37,1693519,3,1,1,-1,1693858,1,1,1,-1,1694059,3,2,23,23,1694443,3,1,37,37,1694647,1,2,23,23,1694808,1,1,37,37,1694979,3,1,1,-1,1695256,1,1,1,-1,1695488,3,2,28,28,1695768,3,1,38,38,1695958,1,2,28,28,1696103,1,1,38,38,1696271,3,2,30,30,1696510,3,1,38,38,1696710,3,1,39,39,1696946,1,2,29,29,1697118,1,1,39,39,1697314,3,1,39,39,1697711,3,2,29,29,1697937,1,2,30,30,1698137,1,1,39,39,1698322,1,1,38,38,1698558,3,1,1,-1,1698826,1,1,1,-1,1699028,3,1,1,-1,1699440,1,1,1,-1,1699642,3,2,33,33,1699973,3,1,35,35,1700184,1,2,33,33,1700320,1,1,35,35,1700515,3,1,1,-1,1700806,1,1,1,-1,1701061,3,2,22,22,1701743,3,1,35,35,1701951,1,2,22,22,1702086,1,1,35,35,1702324,3,1,1,-1,1702586,1,1,1,-1,1702797,3,1,1,-1,1703197,1,1,1,-1,1703433,3,1,1,-1,1703886,1,1,1,-1,1704179,3,2,29,29,1704519,3,1,31,31,1704696,1,2,29,29,1704870,1,1,31,31,1705052,3,2,28,28,1705273,1,2,29,29,1705592,3,2,29,29,1706063,3,1,32,32,1706279,1,2,28,28,1706437,1,1,32,32,1706614,3,1,1,-1,1706913,1,1,1,-1,1707098,3,2,32,32,1707490,3,1,30,30,1707674,1,2,32,32,1707833,1,1,30,30,1708006,3,1,1,-1,1708312,1,1,1,-1,1708508,3,2,39,39,1708882,3,2,37,37,1709084,3,1,30,30,1709283,1,2,37,37,1709427,1,2,39,39,1709700,1,1,30,30,1709935,3,1,1,-1,1710285,1,1,1,-1,1710512,3,2,39,39,1711195,3,1,22,22,1711404,1,2,39,39,1711532,1,1,22,22,1711741,3,1,1,-1,1711976,1,1,1,-1,1712175,3,1,1,-1,1712686,1,1,1,-1,1712850,3,2,33,33,1713331,3,1,19,19,1713497,1,2,33,33,1713681,1,1,19,19,1713875,3,1,1,-1,1714213,1,1,1,-1,1714484,3,2,35,35,1714952,3,1,15,15,1715159,1,2,35,35,1715315,1,1,15,15,1715506,3,2,-1,-1,1715874,3,1,1,-1,1716110,1,1,1,-1,1716315,3,1,1,-1,1716791,1,1,1,-1,1717057,3,2,33,33,1717639,3,1,11,11,1717822,1,2,33,33,1717994,1,1,11,11,1718147,3,1,1,-1,1718387,1,1,1,-1,1718625,3,1,1,-1,1718928,1,1,1,-1,1719167,3,2,27,27,1719580,3,1,6,6,1719723,1,2,27,27,1719886,1,1,6,6,1720074,3,1,1,-1,1720384,1,1,1,-1,1720620,3,2,19,19,1720928,1,2,19,19,1721332,3,2,20,20,1721519,3,1,4,4,1721744,1,2,20,20,1721910,1,1,4,4,1722075,3,2,22,22,1722349,3,1,3,3,1722650,1,2,22,22,1722888,1,1,3,3,1723108,3,1,1,-1,1724261,1,1,1,-1,1724425,3,1,1,-1,1724999,1,1,1,-1,1725241,3,1,1,-1,1725586,1,1,1,-1,1725847,3,1,1,-1,1726226,1,1,1,-1,1726468,3,1,1,-1,1726872,1,1,1,-1,1727113,3,2,10,10,1727442,3,1,14,14,1727620,1,2,10,10,1727756,1,1,14,14,1727933,3,1,1,-1,1728269,1,1,1,-1,1728497,3,2,2,2,1728919,3,1,18,18,1729081,1,2,2,2,1729244,1,1,18,18,1729416,3,2,3,3,1729590,1,2,3,3,1730022,3,2,4,4,1730230,3,1,19,19,1730402,1,2,4,4,1730593,1,1,19,19,1730742,3,1,1,-1,1731047,1,1,1,-1,1731267,3,1,1,-1,1731719,1,1,1,-1,1731997,3,2,11,11,1732436,3,1,24,24,1732602,1,2,11,11,1732789,1,1,24,24,1732966,3,1,1,-1,1733301,1,1,1,-1,1733519,3,2,10,10,1733801,3,1,29,29,1733979,1,2,10,10,1734105,1,1,29,29,1734307,3,1,1,-1,1734647,1,1,1,-1,1734889,3,1,1,-1,1735297,1,1,1,-1,1735505,3,2,11,11,1735827,3,1,34,34,1736142,1,2,11,11,1736542,1,1,34,34,1736724,3,2,15,15,1737095,3,1,37,37,1737300,1,2,15,15,1737443,1,1,37,37,1737647,3,1,1,-1,1737902,1,1,1,-1,1738145,3,1,1,-1,1738552,1,1,1,-1,1738825,3,2,25,25,1739162,3,1,33,33,1739352,1,2,25,25,1739764,1,1,33,33,1739972,3,1,1,-1,1740239,1,1,1,-1,1740451,3,2,25,25,1740783,3,1,30,30,1740962,3,1,31,31,1741187,1,2,25,25,1741372,1,1,31,31,1741547,1,1,30,30,1741736,3,2,26,26,1742026,3,1,29,29,1742209,1,2,26,26,1742373,1,1,29,29,1742549,3,1,1,-1,1742817,1,1,1,-1,1743055,3,2,21,21,1743609,3,1,26,26,1743789,1,2,21,21,1743945,1,1,26,26,1744114,3,1,1,-1,1744350,1,1,1,-1,1744602,3,2,24,24,1745132,3,1,18,18,1745307,3,1,19,19,1745504,1,2,24,24,1745675,1,1,19,19,1745852,1,1,18,18,1746052,3,1,1,-1,1746322,1,1,1,-1,1746551,3,2,30,30,1746944,3,1,19,19,1747136,1,2,30,30,1747281,1,1,19,19,1747443,3,1,1,-1,1747706,1,1,1,-1,1747927,3,2,34,34,1748353,3,1,17,17,1748526,1,2,34,34,1748635,1,1,17,17,1748884,3,2,36,36,1749110,3,1,18,18,1749309,1,2,36,36,1749473,1,1,18,18,1749641,3,1,1,-1,1749896,1,1,1,-1,1750121,3,1,1,-1,1750443,1,1,1,-1,1750711,3,1,1,-1,1751147,1,1,1,-1,1751443,3,2,33,33,1751884,3,1,20,20,1752098,1,2,33,33,1752288,1,1,20,20,1752423,3,1,1,-1,1752717,1,1,1,-1,1752932,3,2,35,35,1753236,3,2,36,36,1753440,3,1,24,24,1753752,1,2,36,36,1753973,1,2,35,35,1754161,1,1,24,24,1754325,3,2,35,35,1754553,3,1,26,26,1754740,1,2,35,35,1754926,1,1,26,26,1755099,3,1,1,-1,1755368,1,1,1,-1,1755607,3,2,34,34,1756051,3,1,28,28,1756219,1,2,34,34,1756350,1,1,28,28,1756530,3,2,39,39,1756927,3,1,29,29,1757101,1,2,39,39,1757261,1,1,29,29,1757444,3,2,33,33,1757910,3,1,30,30,1758225,1,2,33,33,1758454,1,1,30,30,1758688,3,1,1,-1,1758926,1,1,1,-1,1759143,3,2,28,28,1759519,1,2,28,28,1759921,3,2,29,29,1760128,3,1,26,26,1760322,1,2,29,29,1760463,1,1,26,26,1760694,3,2,31,31,1760860,3,1,27,27,1761037,1,2,31,31,1761207,1,1,27,27,1761377,3,2,32,32,1761622,3,1,25,25,1761851,1,2,32,32,1762020,1,1,25,25,1762199,3,1,1,-1,1762499,1,1,1,-1,1762708,3,1,1,-1,1763144,1,1,1,-1,1763393,3,2,28,28,1763720,3,1,35,35,1764029,1,2,28,28,1764263,1,1,35,35,1764468,3,1,1,-1,1764714,1,1,1,-1,1764942,3,2,35,35,1765384,3,1,33,33,1765555,1,2,35,35,1765699,1,1,33,33,1765861,3,2,38,38,1766263,3,1,39,39,1766465,1,2,38,38,1766618,1,1,39,39,1766815,3,1,1,-1,1767174,1,1,1,-1,1767413,3,2,-1,-1,1768096,3,1,1,-1,1768402,1,1,1,-1,1768654,3,2,32,32,1768942,3,1,36,36,1769123,1,2,32,32,1769276,1,1,36,36,1769461,3,1,1,-1,1769733,1,1,1,-1,1769995,3,2,25,25,1770343,3,1,35,35,1770533,1,1,35,35,1770661,1,1,35,35,1770814,3,1,35,35,1771274,3,1,35,35,1771445,1,2,25,25,1771799,1,1,35,35,1771992,3,2,27,27,1772275,3,1,37,37,1772467,1,2,27,27,1772643,1,1,37,37,1772806,3,1,1,-1,1773090,1,1,1,-1,1773317,3,2,23,23,1773616,3,1,38,38,1773888,1,2,23,23,1774091,1,1,38,38,1774263,3,1,1,-1,1774723,1,1,1,-1,1774914,3,1,1,-1,1775333,1,1,1,-1,1775582,3,2,6,6,1775885,3,1,35,35,1776073,3,1,38,38,1776480,1,2,6,6,1776612,1,1,38,38,1776802,1,1,35,35,1777088,3,1,1,-1,1777358,1,1,1,-1,1777559,3,2,4,4,1777972,3,1,25,25,1778159,3,1,23,23,1778407,1,2,4,4,1778499,1,1,23,23,1778827,1,1,25,25,1779013,3,1,1,-1,1779277,1,1,1,-1,1779520,3,1,1,-1,1780127,1,1,1,-1,1780355,3,2,18,18,1780805,3,1,28,28,1781030,1,2,18,18,1781169,1,1,28,28,1781356,3,2,20,20,1781622,3,1,27,27,1781933,1,2,20,20,1782156,1,1,27,27,1782356,3,1,1,-1,1782662,1,1,1,-1,1782904,3,2,17,17,1783248,3,2,16,16,1783393,3,1,17,17,1783585,1,2,17,17,1783818,1,2,16,16,1783992,1,1,17,17,1784199,3,2,19,19,1784514,3,2,18,18,1784683,3,1,21,21,1784880,1,2,19,19,1785089,1,2,18,18,1785321,1,1,21,21,1785491,3,1,1,-1,1785820,1,1,1,-1,1786079,3,2,20,20,1786521,3,1,16,16,1786928,1,2,20,20,1787201,1,1,16,16,1787406,3,2,24,24,1787745,3,1,15,15,1787945,1,2,24,24,1788110,1,1,15,15,1788259,3,2,27,27,1788550,3,1,17,17,1788887,1,2,27,27,1789105,1,1,17,17,1789269,3,1,1,-1,1789634,1,1,1,-1,1789836,3,1,1,-1,1790236,1,1,1,-1,1790490,3,1,1,-1,1790905,1,1,1,-1,1791210,3,1,1,-1,1791510,1,1,1,-1,1791745,3,2,7,7,1792018,3,1,8,8,1792212,1,2,7,7,1792344,1,1,8,8,1792517,3,2,8,8,1792797,3,1,5,5,1792989,1,2,8,8,1793130,1,1,5,5,1793343,3,2,9,9,1793637,3,1,2,2,1793976,1,2,9,9,1794218,1,1,2,2,1794391,3,1,1,-1,1794661,1,1,1,-1,1794876,3,2,14,14,1795401,3,1,3,3,1795568,1,2,14,14,1795725,1,1,3,3,1795888,3,2,17,17,1796196,3,1,4,4,1796386,3,1,5,5,1796573,1,2,17,17,1796777,1,1,5,5,1796984,1,1,4,4,1797150,3,2,13,13,1797645,3,1,8,8,1797911,1,2,13,13,1798056,1,1,8,8,1798243,3,1,1,-1,1798701,1,1,1,-1,1798911,3,2,21,21,1799206,3,1,8,8,1799414,1,2,21,21,1799548,1,1,8,8,1799716,3,1,1,-1,1800046,1,1,1,-1,1800271,3,2,29,29,1800680,3,1,8,8,1800879,1,2,29,29,1801045,1,1,8,8,1801219,3,1,1,-1,1801478,1,1,1,-1,1801713,3,2,37,37,1802255,3,1,3,3,1802474,1,2,37,37,1802656,1,1,3,3,1802808,3,1,1,-1,1803112,1,1,1,-1,1803351,3,2,34,34,1803926,3,1,11,11,1804071,3,1,13,13,1804322,1,2,34,34,1804513,1,1,13,13,1804709,1,1,11,11,1804944,3,2,38,38,1805352,3,1,11,11,1805549,1,2,38,38,1805718,1,1,11,11,1805899,3,1,1,-1,1806194,1,1,1,-1,1806404,3,2,32,32,1806854,3,1,13,13,1807078,1,2,32,32,1807223,1,1,13,13,1807385,3,1,1,-1,1807698,1,1,1,-1,1807928,3,2,31,31,1808258,3,1,18,18,1808475,1,2,31,31,1808647,1,1,18,18,1808806,3,2,35,35,1809114,3,1,19,19,1809417,1,2,35,35,1809580,1,1,19,19,1809755,3,1,1,-1,1810065,1,1,1,-1,1810244,3,2,34,34,1810578,3,1,21,21,1810781,1,2,34,34,1810979,1,1,21,21,1811462,3,2,36,36,1811702,3,2,35,35,1811899,3,1,22,22,1812061,1,2,36,36,1812277,1,2,35,35,1812468,1,1,22,22,1812636,3,2,35,35,1812852,3,1,23,23,1813023,1,2,35,35,1813178,1,1,23,23,1813360,3,1,1,-1,1813686,1,1,1,-1,1813907,3,2,33,33,1814206,3,1,28,28,1814549,1,2,33,33,1814852,1,1,28,28,1815075,3,1,1,-1,1815713,1,1,1,-1,1815943,3,2,27,27,1816365,3,2,29,29,1816622,3,1,27,27,1816799,1,2,29,29,1817004,1,2,27,27,1817238,1,1,27,27,1817381,3,1,1,-1,1817614,1,1,1,-1,1817813,3,2,27,27,1818093,3,1,24,24,1818279,1,2,27,27,1818401,1,1,24,24,1818618,3,1,1,-1,1818934,1,1,1,-1,1819105,3,2,25,25,1819377,3,1,28,28,1819545,1,2,25,25,1819714,1,1,28,28,1819876,3,2,24,24,1820261,3,1,31,31,1820460,1,2,24,24,1820604,1,1,31,31,1820793,3,1,1,-1,1821024,1,1,1,-1,1821195,3,2,29,29,1821678,3,1,29,29,1821930,1,2,29,29,1822052,1,1,29,29,1822255,3,1,1,-1,1822539,1,1,1,-1,1822754,3,1,1,-1,1823285,1,1,1,-1,1823516,3,2,-1,-1,1824186,3,1,1,-1,1824538,1,1,1,-1,1824759,3,2,38,38,1825114,3,2,37,37,1825310,3,1,24,24,1825517,1,2,38,38,1825728,1,2,37,37,1825916,1,1,24,24,1826084,3,2,38,38,1826269,3,1,26,26,1826461,1,2,38,38,1826606,1,1,26,26,1826805,3,1,1,-1,1827106,1,1,1,-1,1827325,3,2,33,33,1827627,3,2,29,29,1827951,3,1,25,25,1828101,1,2,29,29,1828288,1,2,33,33,1828669,1,1,25,25,1828878,3,1,1,-1,1829211,1,1,1,-1,1829375,3,2,30,30,1829882,3,1,35,35,1830016,1,2,30,30,1830197,1,1,35,35,1830401,3,2,32,32,1830739,3,2,29,29,1831176,3,1,34,34,1831352,1,2,29,29,1831496,1,2,32,32,1831835,1,1,34,34,1832199,3,1,1,-1,1832480,1,1,1,-1,1832683,3,2,28,28,1832950,3,1,30,30,1833142,1,2,28,28,1833292,1,1,30,30,1833468,3,1,1,-1,1833765,1,1,1,-1,1833958,3,2,23,23,1834229,3,1,35,35,1834442,3,1,39,39,1834982,1,2,23,23,1835130,1,1,39,39,1835355,1,1,35,35,1835726,3,1,1,-1,1836049,1,1,1,-1,1836211,3,2,19,19,1836475,3,1,37,37,1836653,1,2,19,19,1836822,1,1,37,37,1836992,3,1,1,-1,1837388,1,1,1,-1,1837602,3,2,3,3,1838017,3,1,36,36,1838182,1,2,3,3,1838342,1,1,36,36,1838515,3,2,8,8,1838992,3,1,32,32,1839269,1,2,8,8,1839431,1,1,32,32,1839582,3,2,11,11,1839904,1,2,12,12,1840243,3,2,12,12,1840549,3,2,12,12,1840686,3,1,34,34,1840928,1,2,12,12,1841095,1,1,34,34,1841276,1,2,11,11,1841537,3,1,1,-1,1841813,1,1,1,-1,1842023,3,2,10,10,1842324,3,1,28,28,1842522,1,2,10,10,1842685,1,1,28,28,1842891,3,1,1,-1,1843170,1,1,1,-1,1843402,3,2,15,15,1843808,3,1,27,27,1844009,1,2,15,15,1844146,1,1,27,27,1844316,3,2,19,19,1844650,3,1,27,27,1844833,1,2,19,19,1844989,1,1,27,27,1845164,3,2,14,14,1845571,3,1,28,28,1845771,1,2,14,14,1845911,1,1,28,28,1846106,3,1,1,-1,1846452,1,1,1,-1,1846668,3,2,2,2,1847066,1,2,3,3,1847372,1,2,2,2,1847605,1,1,27,27,1847854,3,1,27,27,1848315,3,2,2,2,1848483,3,1,27,27,1849074,1,2,2,2,1849244,1,1,27,27,1849543,1,2,3,3,1849854,1,2,3,3,1850089,1,2,3,3,1850563,3,1,1,-1,1851139,1,1,1,-1,1851351,3,2,12,12,1851711,3,2,8,8,1852054,3,1,24,24,1852217,1,2,8,8,1852373,1,2,12,12,1852769,1,1,24,24,1852971,3,1,1,-1,1853210,1,1,1,-1,1853413,3,2,13,13,1853686,3,2,12,12,1853849,3,1,21,21,1854029,1,2,13,13,1854241,1,2,12,12,1854428,1,1,21,21,1854594,3,2,11,11,1854914,3,1,20,20,1855080,1,2,11,11,1855242,1,1,20,20,1855420,3,2,13,13,1855687,1,2,14,14,1855988,1,2,13,13,1856201,3,2,14,14,1856770,3,2,13,13,1857042,3,1,19,19,1857249,1,2,13,13,1857391,1,1,19,19,1857565,3,2,14,14,1857791,3,1,18,18,1858139,1,2,14,14,1858368,1,1,18,18,1858576,3,1,1,-1,1858875,1,1,1,-1,1859090,3,2,10,10,1859329,3,1,12,12,1859524,1,2,10,10,1859662,1,1,12,12,1859839,3,2,6,6,1860267,3,1,16,16,1860476,1,2,6,6,1860643,1,1,16,16,1860819,3,1,1,-1,1861083,1,1,1,-1,1861251,3,2,2,2,1861553,3,1,11,11,1861719,1,2,2,2,1861895,1,1,11,11,1862061,3,2,3,3,1862271,3,1,10,10,1862475,1,2,3,3,1862616,1,1,10,10,1862813,3,1,1,-1,1863190,1,1,1,-1,1863425,3,2,22,22,1863874,3,1,21,21,1864057,1,2,22,22,1864203,1,1,21,21,1864407,3,1,1,-1,1864676,1,1,1,-1,1864910,3,2,28,28,1865327,3,1,12,12,1865526,1,2,28,28,1865667,1,1,12,12,1865835,3,1,1,-1,1866153,1,1,1,-1,1866340,3,2,30,30,1866647,3,1,14,14,1866825,1,2,30,30,1866958,1,1,14,14,1867146,3,2,32,32,1867371,3,1,16,16,1867591,1,2,32,32,1868012,1,1,16,16,1868207,3,1,1,-1,1868509,1,1,1,-1,1868688,3,1,1,-1,1869117,1,1,1,-1,1869329,3,2,28,28,1869638,3,2,27,27,1869807,3,1,7,7,1870001,1,2,28,28,1870217,1,2,27,27,1870409,1,1,7,7,1870578,3,1,1,-1,1870813,1,1,1,-1,1871023,3,2,24,24,1871309,3,1,6,6,1871531,1,2,24,24,1871672,1,1,6,6,1871878,3,2,27,27,1872211,3,1,2,2,1872458,1,1,2,2,1872804,3,1,2,2,1873232,1,2,27,27,1873709,1,1,2,2,1873913,3,2,-1,-1,1874316,3,1,1,-1,1874665,1,1,1,-1,1874890,3,2,31,31,1875173,3,1,17,17,1875348,1,2,31,31,1875504,1,1,17,17,1875721,3,2,38,38,1876304,3,1,13,13,1876492,1,2,38,38,1876641,1,1,13,13,1876830,3,1,1,-1,1877242,1,1,1,-1,1877447,3,1,1,-1,1877919,1,1,1,-1,1878131,3,2,-1,-1,1879118,3,1,1,-1,1879422,1,1,1,-1,1879618,3,2,28,28,1879893,3,1,13,13,1880063,1,2,28,28,1880223,1,1,13,13,1880424,3,2,30,30,1880704,3,1,11,11,1880927,1,2,30,30,1881072,1,1,11,11,1881450,3,1,1,-1,1881806,1,1,1,-1,1882012,3,2,21,21,1882423,3,1,16,16,1882633,1,2,21,21,1882758,1,1,16,16,1882966,3,1,1,-1,1883329,1,1,1,-1,1883482,3,2,14,14,1883813,3,1,28,28,1883983,1,2,14,14,1884152,1,1,28,28,1884359,3,2,-1,-1,1885074,3,1,1,-1,1885421,1,1,1,-1,1885606,3,2,15,15,1886020,3,1,24,24,1886190,1,2,15,15,1886351,1,1,24,24,1886532,3,2,1,-1,1887013,3,1,1,-1,1887577,1,1,1,-1,1887765,3,1,1,-1,1888229,1,1,1,-1,1888493,3,1,1,-1,1888912,1,1,1,-1,1889153,3,2,35,35,1889700,3,1,36,36,1889894,1,2,35,35,1890037,1,1,36,36,1890224,3,2,31,31,1890608,3,1,38,38,1890779,1,2,31,31,1890953,1,1,38,38,1891128,3,1,1,-1,1891493,1,1,1,-1,1891722,3,1,1,-1,1892056,1,1,1,-1,1892303,3,2,27,27,1892719,3,1,9,9,1892914,1,2,27,27,1893069,1,1,9,9,1893229,3,1,1,-1,1893579,1,1,1,-1,1893805,3,2,-1,-1,1894654,3,1,1,-1,1894980,1,1,1,-1,1895193,3,1,1,-1,1895602,1,1,1,-1,1895821,3,2,25,25,1896320,3,1,23,23,1896592,1,2,25,25,1896746,1,1,23,23,1897052,3,1,1,-1,1897442,1,1,1,-1,1897646,3,1,1,-1,1897993,1,1,1,-1,1898223,3,2,4,4,1898642,3,1,21,21,1898819,1,2,4,4,1898973,1,1,21,21,1899147,3,1,1,-1,1899452,1,1,1,-1,1899683,3,2,-1,-1,1900408,3,1,1,-1,1900679,1,1,1,-1,1900918,3,2,25,25,1901281,3,1,13,13,1901458,1,2,25,25,1901591,1,1,13,13,1901764,3,2,31,31,1902148,3,1,15,15,1902346,1,2,31,31,1902512,1,1,15,15,1902679,3,1,1,-1,1903021,1,1,1,-1,1903261,3,1,1,-1,1903537,1,1,1,-1,1903816,3,1,1,-1,1904148,1,1,1,-1,1904354,3,1,1,-1,1904757,1,1,1,-1,1905032,3,2,11,11,1905364,3,1,29,29,1905542,1,2,11,11,1905711,1,1,29,29,1905900,3,2,5,5,1906397,3,1,34,34,1906583,1,2,5,5,1906729,1,1,34,34,1906947,3,2,-1,-1,1907647,3,1,1,-1,1908121,1,1,1,-1,1908338,3,2,37,37,1908669,3,1,31,31,1908849,1,2,37,37,1909019,1,1,31,31,1909206,3,1,1,-1,1909529,1,1,1,-1,1909733,3,2,19,19,1910094,3,1,23,23,1910263,1,2,19,19,1910427,1,1,23,23,1910576,3,2,14,14,1911077,3,1,13,13,1911276,1,2,14,14,1911420,1,1,13,13,1911582,3,2,1,-1,1911903,3,1,1,-1,1912371,1,1,1,-1,1912681,3,2,16,16,1913006,3,1,19,19,1913208,1,2,16,16,1913344,1,1,19,19,1913558,3,1,1,-1,1914140,1,1,1,-1,1914358,3,2,-1,-1,1915081,3,1,1,-1,1915344,1,1,1,-1,1915613,3,2,31,31,1915958,3,1,5,5,1916157,1,2,31,31,1916289,1,1,5,5,1916491,3,1,1,-1,1916783,1,1,1,-1,1917042,3,2,-1,-1,1917862,3,1,1,-1,1918165,1,1,1,-1,1918432,3,2,12,12,1919097,3,1,23,23,1919282,1,2,12,12,1919423,1,1,23,23,1919625,3,1,1,-1,1919866,1,1,1,-1,1920064,3,2,2,2,1920648,3,1,37,37,1920855,1,2,2,2,1920990,1,1,37,37,1921184,3,2,1,-1,1921563,3,1,1,-1,1922142,1,1,1,-1,1922346,3,2,23,23,1922665,3,1,28,28,1922856,1,2,23,23,1923005,1,1,28,28,1923188,3,1,1,-1,1923539,1,1,1,-1,1923837,3,1,1,-1,1924113,1,1,1,-1,1924387,3,2,29,29,1924793,3,1,39,39,1925003,1,2,29,29,1925132,1,1,39,39,1925428,3,1,1,-1,1925838,1,1,1,-1,1926110,3,2,-1,-1,1926461,3,1,1,-1,1926682,1,1,1,-1,1926960,3,1,1,-1,1927632,1,1,1,-1,1927906,3,2,25,25,1928255,3,1,27,27,1928426,1,2,25,25,1928560,1,1,27,27,1928755,3,1,1,-1,1929093,1,1,1,-1,1929266,3,2,11,11,1929642,3,1,31,31,1929788,1,2,11,11,1929946,1,1,31,31,1930180,3,2,-1,-1,1930797,3,1,1,-1,1931027,1,1,1,-1,1931248,3,2,38,38,1931826,3,1,3,3,1932048,1,2,38,38,1932181,1,1,2,2,1932361,3,1,2,2,1933513,1,1,3,3,1933719,3,1,1,-1,1934177,1,1,1,-1,1934428,3,2,-1,-1,1935448,3,1,1,-1,1935783,1,1,1,-1,1936022,3,2,27,27,1936597,3,1,38,38,1936793,1,2,27,27,1936930,1,1,38,38,1937127,3,2,7,7,1937909,3,1,28,28,1938077,1,2,7,7,1938249,1,1,28,28,1938428,3,2,1,-1,1938694,3,2,-1,-1,1939439,3,2,-1,-1,1940320,3,1,1,-1,1940697,1,1,1,-1,1941032,3,1,1,20,1941925,2,2,1,1,1942186,1,1,1,20,1942532,3,1,-20,-1,1942712,2,2,1,1,1942948,1,1,-20,-1,1943119,1,1,1,-1,1943544,1,2,1,-1,1943759,1,1,32,32,1944917,1,1,30,30,1945229,1,1,23,23,1945696,1,1,20,20,1945988,1,1,38,38,1946847,1,1,13,13,1947534,1,1,8,8,1947957,1,1,4,4,1948331,1,2,2,2,1948504,2,1,1,1,1948822,3,2,2,2,1949063,3,1,1,-1,1949319,3,1,4,4,1949930,3,1,8,8,1950369,3,1,9,9,1950552,3,1,10,10,1950746,3,1,13,13,1951127,3,1,20,20,1951636,3,1,22,22,1952008,3,1,23,23,1952175,3,1,28,28,1952657,3,1,29,29,1952840,3,1,30,30,1953041,3,1,32,32,1953347,3,1,35,35,1953840,3,1,38,38,1954113,3,1,1,-1,1954330,2,1,29,29,1955108,2,1,28,28,1955311,2,1,17,17,1955921,2,1,9,9,1956401,3,1,1,-1,1956711,1,1,7,7,1957477,1,1,8,8,1957673,1,1,2,2,1958079,1,1,16,16,1958685,1,1,26,26,1959198,1,1,35,35,1959820,1,1,36,36,1959979,3,1,1,-1,1960172,1,2,2,2,1960418,2,1,1,1,1961167,3,2,2,2,1961406,1,1,2,2,1961573,1,1,5,5,1961912,1,1,10,10,1962396,1,1,12,12,1962631,1,1,17,17,1963532,1,1,29,29,1964051,1,2,3,3,1964221,2,1,1,1,1964761,3,2,3,3,1964959,3,1,1,-1,1965132,3,1,2,2,1965609,3,1,5,5,1965902,3,1,9,9,1966273,3,1,10,10,1966460,3,1,12,12,1966702,3,1,17,17,1967182,3,1,21,21,1967662,3,1,23,23,1967895,3,1,29,29,1968365,3,1,1,-1,1968747,2,1,35,35,1969311,2,1,28,28,1969690,2,1,26,26,1970229,2,1,22,22,1970664,2,1,20,20,1970878,2,1,9,9,1971815,2,1,5,5,1972265,3,1,1,-1,1972646,1,1,10,10,1973493,1,1,18,18,1973983,1,1,19,19,1974211,1,1,37,37,1974883,1,1,38,38,1975069,3,1,1,-1,1975257,1,2,3,3,1975469,2,1,1,1,1976053,3,2,3,3,1976301,1,1,4,4,1976626,1,1,10,10,1977234,1,1,12,12,1977512,1,1,28,28,1978249,1,1,32,32,1978720,1,1,35,35,1978966,1,2,4,4,1979139,2,1,1,1,1979755,3,2,4,4,1979954,3,1,1,-1,1980173,3,1,3,3,1980750,3,1,4,4,1980908,3,1,6,6,1981187,3,1,10,10,1981589,3,1,12,12,1981803,3,1,15,15,1982243,3,1,27,27,1982820,3,1,28,28,1983019,3,1,32,32,1983497,3,1,35,35,1983776,3,1,1,-1,1984003,2,1,32,32,1984712,2,1,28,28,1985125,2,1,27,27,1985319,2,1,26,26,1985495,2,1,19,19,1986292,2,1,14,14,1986733,2,1,7,7,1987242,2,1,5,5,1987471,2,1,3,3,1987749,2,1,2,2,1987946,3,1,1,-1,1988191,1,1,3,3,1988828,1,1,17,17,1989496,1,1,23,23,1989949,1,1,29,29,1990393,3,1,1,-1,1990603,1,2,4,4,1990912,2,1,1,1,1991472,3,2,4,4,1991665,1,1,5,5,1991976,1,1,7,7,1992398,1,1,8,8,1992571,1,1,18,18,1993162,1,1,24,24,1993695,1,1,34,34,1994176,1,2,5,5,1994336,2,1,1,1,1995096,3,2,5,5,1995298,3,1,1,-1,1995498,3,1,3,3,1996085,3,1,5,5,1996479,3,1,6,6,1996656,3,1,7,7,1996840,3,1,8,8,1997089,3,1,9,9,1997263,3,1,10,10,1997435,3,1,18,18,1997974,3,1,27,27,1998495,3,1,25,25,1998834,3,1,29,29,1999308,1,1,25,25,1999707,3,1,24,24,1999914,3,1,34,34,2000395,3,1,1,-1,2000594,2,1,39,39,2001454,2,1,27,27,2001964,2,1,14,14,2002659,2,1,10,10,2003341,2,1,9,9,2003520,2,1,6,6,2003902,3,1,1,-1,2004134,1,1,4,4,2004628,1,1,10,10,2004982,1,1,13,13,2005277,1,1,16,16,2005660,1,1,21,21,2006157,1,1,28,28,2006907,1,1,33,33,2007268,3,1,1,-1,2007473,1,2,5,5,2007728,2,1,1,1,2008400,3,2,5,5,2008644,1,1,4,4,2008944,1,1,5,5,2009142,1,1,7,7,2009449,1,1,19,19,2010031,1,1,21,21,2010334,1,1,22,22,2010504,1,1,27,27,2011014,1,1,29,29,2011349,1,1,30,30,2011549,1,1,32,32,2011932,1,1,34,34,2012223,1,1,33,33,2012462,1,1,39,39,2012948,1,2,6,6,2013131,2,1,1,1,2013795,3,2,6,6,2014004,3,1,1,-1,2014180,3,1,4,4,2014777,3,1,5,5,2014955,3,1,6,6,2015151,3,1,7,7,2015356,3,1,10,10,2015872,3,1,17,17,2016380,3,1,19,19,2016720,3,1,20,20,2016888,3,1,21,21,2017122,3,1,22,22,2017319,3,1,27,27,2017803,3,1,28,28,2018003,3,1,29,29,2018201,3,1,30,30,2018378,3,1,31,31,2018580,3,1,33,33,2018958,3,1,34,34,2019165,3,1,39,39,2019631,3,1,1,-1,2020039,2,1,37,37,2020692,2,1,25,25,2021224,2,1,24,24,2021435,2,1,22,22,2021840,2,1,20,20,2022210,2,1,16,16,2022625,2,1,14,14,2022905,2,1,13,13,2023102,2,1,3,3,2023743,3,1,1,-1,2024063,1,1,6,6,2024624,1,1,12,12,2025034,1,1,18,18,2025582,1,1,19,19,2025921,1,1,26,26,2026437,1,1,32,32,2026914,1,1,38,38,2027342,3,1,1,-1,2027559,1,2,6,6,2027829,2,1,1,1,2028761,3,2,6,6,2029006,1,1,3,3,2029308,1,1,4,4,2029501,1,1,5,5,2029700,1,1,14,14,2030318,1,1,16,16,2030552,1,1,21,21,2030959,1,1,22,22,2031189,1,1,38,38,2031915,1,2,7,7,2032085,3,2,7,7,2032922,1,2,7,7,2033274,2,1,1,1,2033512,3,2,7,7,2033712,3,1,1,-1,2033863,3,1,3,3,2034363,3,1,4,4,2034562,3,1,5,5,2034726,3,1,14,14,2035307,3,1,15,15,2035482,3,1,16,16,2035650,3,1,20,20,2036223,3,1,21,21,2036426,3,1,22,22,2036605,3,1,23,23,2036837,3,1,24,24,2037036,3,1,25,25,2037241,3,1,28,28,2037717,3,1,30,30,2037956,3,1,38,38,2038510,3,1,1,-1,2038757,2,1,39,39,2039511,2,1,23,23,2040098,2,1,12,12,2040750,2,1,10,10,2040993,2,1,7,7,2041393,2,1,3,3,2041876,3,1,1,-1,2042096,1,1,5,5,2042611,1,1,3,3,2042890,1,1,26,26,2043900,1,1,30,30,2044274,1,1,36,36,2044704,1,1,38,38,2044962,3,1,1,-1,2045178,1,2,7,7,2045393,2,1,1,1,2046369,3,2,7,7,2046605,1,1,7,7,2047015,1,1,10,10,2047454,1,1,11,11,2047641,1,1,14,14,2047972,1,1,18,18,2048586,1,1,23,23,2048926,1,1,37,37,2049689,1,2,8,8,2049863,2,1,1,1,2050545,3,2,8,8,2050816,3,1,1,-1,2050988,3,1,2,2,2051625,3,1,7,7,2052077,3,1,8,8,2052268,3,1,10,10,2052609,3,1,11,11,2052791,3,1,14,14,2053191,3,1,17,17,2053595,3,1,18,18,2053778,3,1,23,23,2054260,3,1,29,29,2054786,3,1,30,30,2054963,3,1,34,34,2055443,3,1,37,37,2055744,3,1,1,-1,2055983,2,1,38,38,2056667,2,1,22,22,2057500,2,1,19,19,2057624,2,1,6,6,2058253,2,1,4,4,2058519,2,1,2,2,2058795,3,1,1,-1,2059074,1,1,3,3,2059820,1,1,11,11,2060301,1,1,25,25,2060831,1,1,28,28,2061249,1,1,30,30,2061457,1,1,35,35,2061918,1,1,36,36,2062059,3,1,1,-1,2062262,1,2,8,8,2062572,2,1,1,1,2063685,3,2,8,8,2063956,1,1,3,3,2064162,1,1,12,12,2064732,1,1,18,18,2065495,1,1,23,23,2065833,1,1,31,31,2066311,1,1,33,33,2066543,1,2,9,9,2066721,2,1,1,1,2067451,3,2,9,9,2067666,3,1,1,-1,2067891,3,1,3,3,2068503,3,1,8,8,2068955,3,2,8,8,2069285,1,2,8,8,2069799,3,1,12,12,2070045,3,1,16,16,2070554,3,1,18,18,2070751,3,1,22,22,2071320,3,1,23,23,2071502,3,1,30,30,2071969,3,1,31,31,2072148,3,1,33,33,2072517,3,1,34,34,2072685,3,1,38,38,2073117,3,1,1,-1,2073363,2,1,35,35,2073939,2,1,37,37,2074161,2,1,33,33,2074864,2,1,32,32,2074872,2,1,29,29,2075235,2,1,24,24,2075656,2,1,14,14,2076230,2,1,13,13,2076457,2,1,10,10,2076858,2,1,5,5,2077260,3,1,1,-1,2077540,1,1,2,2,2078186,1,1,8,8,2078584,1,1,15,15,2078994,1,1,19,19,2079397,1,1,25,25,2079837,3,1,1,-1,2080342,1,2,9,9,2081341,2,1,1,1,2081941,3,2,9,9,2082127,1,1,6,6,2082642,1,1,7,7,2082811,1,1,10,10,2083211,1,1,12,12,2083439,1,1,14,14,2083820,1,1,15,15,2084023,1,1,21,21,2084524,1,1,34,34,2085172,1,2,10,10,2085323,2,1,1,1,2086056,3,2,10,10,2086241,3,1,1,-1,2086443,3,1,2,2,2087008,3,1,6,6,2087419,3,1,7,7,2087595,3,1,10,10,2087989,3,1,11,11,2088195,3,1,12,12,2088373,3,1,14,14,2088727,3,1,15,15,2088892,3,1,21,21,2089355,3,1,26,26,2089810,3,1,29,29,2090210,3,1,32,32,2090645,3,1,34,34,2090899,3,1,1,-1,2091125,2,1,35,35,2091676,2,1,38,38,2091950,2,1,28,28,2092444,2,1,5,5,2093199,2,1,4,4,2093410,3,1,1,-1,2093664,1,1,3,3,2094347,1,1,7,7,2094750,1,1,8,8,2094922,1,1,10,10,2095195,1,1,18,18,2095707,1,1,20,20,2095972,1,1,24,24,2096419,1,1,32,32,2096881,1,1,34,34,2097128,3,1,1,-1,2097359,1,2,10,10,2097597,2,1,1,1,2098222,3,2,10,10,2098453,1,1,10,10,2098952,1,1,22,22,2099528,1,1,23,23,2099704,1,1,30,30,2100182,1,2,11,11,2100359,2,1,1,1,2100959,3,2,11,11,2101156,3,1,1,-1,2101394,3,1,4,4,2101985,3,1,7,7,2102321,3,1,10,10,2102652,3,1,13,13,2103094,3,1,17,17,2103471,3,1,22,22,2103915,3,1,23,23,2104086,3,1,25,25,2104386,3,1,27,27,2104652,3,1,29,29,2104920,3,1,30,30,2105097,3,1,36,36,2105652,3,1,1,-1,2105934,2,1,31,31,2106697,2,1,17,17,2107409,2,1,12,12,2107881,2,1,11,11,2108084,2,1,10,10,2108271,2,1,2,2,2108772,3,1,1,-1,2109053,1,1,6,6,2109618,1,1,8,8,2109862,1,1,17,17,2110473,1,1,26,26,2111042,1,1,32,32,2111456,1,1,35,35,2111786,1,1,37,37,2112064,3,1,1,-1,2112389,1,2,11,11,2112641,2,1,1,1,2113276,3,2,11,11,2113586,1,1,2,2,2113796,1,1,4,4,2114117,1,1,4,4,2114935,1,1,5,5,2115137,1,1,16,16,2115886,1,1,17,17,2116066,1,1,29,29,2116732,1,1,39,39,2117473,1,1,30,30,2118034,1,2,12,12,2118184,2,1,1,1,2118789,3,2,12,12,2118987,3,1,1,-1,2119160,3,1,2,2,2119804,3,1,4,4,2120177,3,1,5,5,2120349,3,1,6,6,2120532,3,1,12,12,2121019,3,1,16,16,2121389,3,1,17,17,2121564,3,1,21,21,2121992,3,1,30,30,2122513,3,1,36,36,2122947,3,1,39,39,2123231,3,1,1,-1,2123527,2,1,35,35,2124094,2,1,36,36,2124275,2,1,33,33,2124654,2,1,29,29,2125048,2,1,28,28,2125253,2,1,25,25,2125725,2,1,13,13,2126655,2,1,9,9,2126999,2,1,8,8,2127197,2,1,7,7,2127399,2,1,3,3,2127841,3,1,1,-1,2128104,1,1,10,10,2128782,1,1,12,12,2129056,1,1,14,14,2129364,1,1,20,20,2129902,1,1,22,22,2130214,1,1,23,23,2130403,3,1,1,-1,2130828,1,2,12,12,2131137,2,1,1,1,2131962,3,2,12,12,2132212,1,1,3,3,2132629,1,1,4,4,2132832,1,1,5,5,2132991,1,1,8,8,2133423,1,1,16,16,2133941,1,1,19,19,2134283,1,1,21,21,2134508,1,1,23,23,2135039,1,1,24,24,2135236,1,1,25,25,2135427,1,1,26,26,2135606,1,1,32,32,2136184,1,2,13,13,2136356,2,1,1,1,2136920,3,2,13,13,2137104,3,1,1,-1,2137294,3,1,3,3,2137812,3,1,4,4,2137985,3,1,5,5,2138210,3,1,8,8,2138617,3,1,16,16,2139092,3,1,17,17,2139275,3,1,19,19,2139564,3,1,21,21,2139802,3,1,23,23,2140261,3,1,24,24,2140453,3,1,25,25,2140650,3,1,26,26,2140830,3,1,29,29,2141311,3,1,32,32,2141607,3,1,30,30,2142012,3,1,37,37,2142488,3,1,1,-1,2142722,2,1,33,33,2143341,2,1,39,39,2143775,2,1,27,27,2144294,2,1,22,22,2144757,2,1,21,21,2144952,2,1,15,15,2145449,2,1,13,13,2145693,3,1,1,-1,2146106,1,1,9,9,2146870,1,1,10,10,2147050,1,1,17,17,2147551,1,1,18,18,2147719,3,1,1,-1,2148298,1,1,34,34,2148741,1,2,13,13,2149148,2,1,1,1,2149791,3,2,13,13,2150003,1,1,3,3,2150206,1,1,6,6,2150533,1,1,11,11,2150972,1,1,13,13,2151496,1,1,14,14,2151660,1,1,15,15,2151870,1,1,16,16,2152067,1,1,20,20,2152444,1,1,22,22,2152802,1,1,23,23,2152980,1,1,27,27,2153393,1,1,28,28,2153583,1,1,37,37,2154135,1,2,14,14,2154297,2,1,1,1,2154816,3,2,14,14,2155022,3,1,1,-1,2155217,3,1,3,3,2155732,3,1,6,6,2156069,3,1,11,11,2156476,3,1,13,13,2156947,3,1,14,14,2157119,3,1,15,15,2157321,3,1,16,16,2157487,3,1,20,20,2157941,3,1,21,21,2158135,3,1,22,22,2158375,3,1,23,23,2158519,3,1,27,27,2159214,3,1,28,28,2159384,3,1,29,29,2159572,3,1,32,32,2160033,3,1,34,34,2160248,3,1,37,37,2160607,3,1,1,-1,2160810,2,1,39,39,2161526,2,1,31,31,2162074,2,1,26,26,2162509,2,1,25,25,2162679,2,1,15,15,2163255,2,1,12,12,2163537,2,1,10,10,2163827,2,1,8,8,2164076,2,1,2,2,2164987,3,1,1,-1,2165255,1,1,14,14,2166098,1,1,17,17,2166514,1,1,18,18,2166682,3,1,1,-1,2167421,1,2,14,14,2167694,2,1,1,1,2168272,3,2,14,14,2168473,1,1,4,4,2168706,1,1,6,6,2169087,1,1,7,7,2169290,1,1,8,8,2169486,1,1,9,9,2169652,1,1,12,12,2170110,1,1,13,13,2170311,1,1,26,26,2170981,1,1,29,29,2171357,1,1,34,34,2171841,1,2,15,15,2172000,2,1,1,1,2172579,3,2,15,15,2172814,3,1,1,-1,2173023,3,1,4,4,2173586,3,1,6,6,2174001,3,1,7,7,2174180,3,1,8,8,2174375,3,1,9,9,2174550,3,1,10,10,2174786,3,1,12,12,2175144,3,1,13,13,2175352,3,1,16,16,2175795,3,1,19,19,2176237,3,1,26,26,2176717,3,1,27,27,2176918,3,1,28,28,2177089,3,1,29,29,2177288,3,1,32,32,2177736,3,1,34,34,2177973,3,1,37,37,2178371,3,1,1,-1,2178616,2,1,39,39,2179557,2,1,29,29,2180021,2,1,14,14,2180779,2,1,7,7,2181236,3,1,1,-1,2181493,1,1,6,6,2182137,1,1,17,17,2182684,1,1,21,21,2183171,1,1,32,32,2183843,1,1,35,35,2184441,1,1,36,36,2184615,3,1,1,-1,2184824,1,2,15,15,2185053,2,1,1,1,2185676,3,2,15,15,2185878,1,1,3,3,2186104,1,1,9,9,2186561,1,1,10,10,2186751,1,1,22,22,2187532,1,1,25,25,2187912,1,1,27,27,2188117,1,1,36,36,2188720,1,2,16,16,2188851,2,1,1,1,2189469,3,2,16,16,2189676,3,1,1,-1,2189906,3,1,2,2,2190587,3,1,3,3,2190789,3,1,4,4,2190953,3,1,9,9,2191400,3,1,10,10,2191563,3,1,19,19,2192188,3,1,22,22,2192532,3,1,23,23,2192726,3,1,24,24,2192904,3,1,25,25,2193097,3,1,26,26,2193482,3,1,26,26,2194056,3,1,24,24,2194399,3,1,27,27,2194728,3,1,33,33,2195373,3,1,36,36,2195735,3,1,37,37,2195914,3,1,10,10,2196685,3,1,1,-1,2196997,2,1,10,10,2197677,2,1,12,12,2197909,2,1,19,19,2198457,2,1,21,21,2198695,2,1,25,25,2199133,2,1,30,30,2199550,2,1,32,32,2200011,2,1,33,33,2200185,2,1,34,34,2200362,3,1,1,-1,2200629,1,1,36,36,2201174,1,1,33,33,2201482,1,1,29,29,2202002,1,1,24,24,2202432,1,1,19,19,2203052,1,1,18,18,2203251,1,1,17,17,2203462,1,1,8,8,2203961,3,1,1,-1,2204156,1,2,16,16,2204377,2,1,1,1,2204734,3,2,16,16,2204946,1,1,6,6,2205276,1,1,12,12,2205674,1,1,25,25,2206294,1,1,27,27,2206506,1,1,32,32,2207014,1,1,34,34,2207250,1,1,36,36,2207534,1,2,17,17,2207718,2,1,1,1,2208533,3,2,17,17,2208803,3,1,1,-1,2209154,3,1,3,3,2209588,3,1,5,5,2209957,3,1,6,6,2210132,3,1,10,10,2210611,3,1,11,11,2210787,3,1,12,12,2210994,3,1,13,13,2211221,3,1,18,18,2211677,3,1,19,19,2211866,3,1,21,21,2212144,3,1,24,24,2212557,3,1,25,25,2212788,3,1,26,26,2212970,3,1,27,27,2213162,3,1,32,32,2213968,3,1,34,34,2214257,3,1,36,36,2214484,3,1,1,-1,2214717,2,1,22,22,2215668,2,1,16,16,2216168,2,1,11,11,2216628,2,1,8,8,2216982,3,1,1,-1,2217218,1,1,7,7,2217920,1,1,9,9,2218141,1,1,2,2,2218638,1,1,13,13,2219055,1,1,15,15,2219252,1,1,18,18,2219662,1,1,29,29,2220233,1,1,32,32,2220549,1,1,37,37,2221081,3,1,1,-1,2221257,1,2,17,17,2221465,2,1,2,2,2222167,3,2,17,17,2222408,1,2,17,17,2222720,2,1,2,2,2222983,2,1,1,1,2223161,3,2,17,17,2223396,1,1,6,6,2223804,1,1,10,10,2224193,1,1,11,11,2224382,1,1,19,19,2224986,1,1,21,21,2225227,1,1,27,27,2225682,1,1,30,30,2226053,1,1,37,37,2226592,1,2,18,18,2226775,2,1,1,1,2227538,3,2,18,18,2227752,3,1,1,-1,2227954,3,1,5,5,2228671,3,1,6,6,2228858,3,1,10,10,2229345,3,1,11,11,2229505,3,1,17,17,2230096,3,1,19,19,2230309,3,1,22,22,2230924,3,1,22,22,2231099,3,2,17,17,2231257,1,2,17,17,2231938,1,1,22,22,2232179,1,1,21,21,2232413,3,1,21,21,2232750,3,1,21,21,2232884,3,1,23,23,2233191,3,1,25,25,2233594,3,1,27,27,2233800,3,1,29,29,2234206,3,1,30,30,2234386,3,1,37,37,2234863,3,1,1,-1,2235049,2,1,36,36,2235549,2,1,34,34,2235801,2,1,27,27,2236271,2,1,14,14,2236880,2,1,11,11,2237264,2,1,8,8,2237526,2,1,10,10,2237831,2,1,11,11,2238037,2,1,5,5,2238543,2,1,3,3,2238817,3,1,1,-1,2239089,1,1,12,12,2240037,1,1,17,17,2240721,1,1,19,19,2240955,1,1,23,23,2241470,1,1,26,26,2241739,3,1,1,-1,2242286,1,2,18,18,2242652,2,1,2,2,2243366,2,1,2,2,2243762,2,1,1,1,2243981,3,2,18,18,2244208,1,1,4,4,2244514,1,1,5,5,2244694,1,1,15,15,2245280,1,1,27,27,2245918,1,1,29,29,2246155,1,1,37,37,2246771,1,2,19,19,2246936,2,1,1,1,2247600,3,2,19,19,2247854,3,1,1,-1,2248020,3,1,4,4,2248551,3,1,5,5,2248728,3,1,9,9,2249140,3,1,10,10,2249304,3,1,13,13,2249738,3,1,15,15,2250026,3,1,16,16,2250246,3,1,18,18,2250773,3,1,23,23,2251271,3,1,26,26,2252193,3,1,27,27,2252394,3,1,29,29,2252839,3,1,30,30,2252998,3,1,37,37,2253450,3,1,1,-1,2253702,2,1,33,33,2254332,2,1,31,31,2254658,2,1,30,30,2254844,2,1,28,28,2255148,2,1,20,20,2255771,2,1,13,13,2256323,2,1,4,4,2256835,3,1,1,-1,2257101,1,1,15,15,2257911,1,1,22,22,2258530,1,1,31,31,2259042,3,1,1,-1,2259301,3,1,31,31,2259740,1,1,32,32,2259924,1,2,19,19,2260114,2,1,1,1,2260786,3,2,19,19,2260973,1,1,11,11,2261547,1,1,20,20,2262047,1,1,23,23,2262382,1,1,29,29,2262894,1,1,30,30,2263116,1,1,35,35,2263519,1,2,20,20,2263672,2,1,1,1,2264494,3,2,20,20,2264705,3,1,1,-1,2264895,3,1,2,2,2265422,3,1,6,6,2265798,3,1,7,7,2265968,3,1,11,11,2266419,3,1,19,19,2266945,3,1,20,20,2267114,3,1,22,22,2267417,3,1,23,23,2267599,3,1,29,29,2268093,3,1,30,30,2268266,3,1,32,32,2268482,3,1,35,35,2268956,3,1,37,37,2269152,3,1,1,-1,2269392,2,1,36,36,2269942,2,1,31,31,2270206,2,1,30,30,2270716,2,1,31,31,2270911,2,1,33,33,2271211,2,1,24,24,2271812,2,1,14,14,2272395,2,1,9,9,2272755,2,1,4,4,2273223,3,1,1,-1,2273492,1,1,7,7,2274141,1,1,23,23,2275046,1,1,26,26,2275422,1,1,32,32,2275828,3,1,1,-1,2276009,1,2,20,20,2276254,2,1,1,1,2276821,3,2,20,20,2277022,1,1,21,21,2277734,1,1,24,24,2278111,1,1,25,25,2278289,1,1,29,29,2278754,1,1,35,35,2279190,1,2,21,21,2279330,2,1,1,1,2279966,3,2,21,21,2280169,3,1,1,-1,2280353,3,1,3,3,2280962,3,1,8,8,2281404,3,1,9,9,2281579,3,1,15,15,2282110,3,1,21,21,2282560,3,1,24,24,2282961,3,1,25,25,2283129,3,1,28,28,2283549,3,1,29,29,2283741,3,1,31,31,2283980,3,1,33,33,2284459,3,1,35,35,2284596,3,1,35,35,2284791,3,1,37,37,2285130,3,1,37,37,2285484,3,1,36,36,2285867,1,1,35,35,2286171,3,1,34,34,2286494,1,1,37,37,2286871,3,1,1,-1,2287096,2,1,33,33,2287716,2,1,30,30,2288151,2,1,28,28,2288454,2,1,26,26,2288696,2,1,17,17,2289303,2,1,13,13,2289706,2,1,7,7,2290160,2,1,6,6,2290349,2,1,2,2,2290728,3,1,1,-1,2290961,1,1,4,4,2291641,1,1,14,14,2292092,1,1,15,15,2292291,1,1,22,22,2292873,1,1,23,23,2293073,1,1,29,29,2293577,3,1,1,-1,2293777,1,2,21,21,2294590,2,1,1,1,2294867,3,2,21,21,2295104,1,1,3,3,2295318,1,1,14,14,2295831,1,1,21,21,2296357,1,1,22,22,2296530,1,1,24,24,2296832,1,1,28,28,2297318,1,1,29,29,2297486,1,1,32,32,2297847,1,1,33,33,2298079,1,2,22,22,2298350,2,1,1,1,2299150,3,2,22,22,2299360,3,1,1,-1,2299558,3,1,2,2,2300341,3,1,12,12,2300836,3,1,14,14,2301075,3,1,17,17,2301518,3,1,20,20,2302015,3,1,21,21,2302193,3,1,22,22,2302349,3,1,24,24,2302829,3,1,26,26,2303095,3,1,28,28,2303508,3,1,29,29,2303701,3,1,32,32,2304183,3,1,33,33,2304359,3,1,34,34,2304544,3,1,38,38,2304891,3,1,36,36,2305361,3,1,1,-1,2305597,2,1,27,27,2306595,2,1,11,11,2307311,3,1,1,-1,2307634,1,1,17,17,2308555,1,1,21,21,2308954,1,1,22,22,2309176,1,1,29,29,2309696,3,1,1,-1,2309903,1,1,37,37,2310490,1,2,22,22,2310651,2,1,1,1,2311242,3,2,22,22,2311465,1,1,3,3,2311699,1,1,8,8,2312164,1,1,12,12,2312521,1,1,21,21,2313077,1,1,27,27,2313553,1,1,33,33,2314072,1,2,23,23,2314238,2,1,1,1,2314975,3,2,23,23,2315378,3,1,1,-1,2315678,3,1,3,3,2316332,3,1,6,6,2316626,3,1,8,8,2317072,3,1,9,9,2317223,3,1,10,10,2317422,3,1,11,11,2317666,3,1,13,13,2317854,3,1,13,13,2318052,3,1,12,12,2318728,3,1,18,18,2319321,3,1,21,21,2319725,3,1,24,24,2320125,3,1,27,27,2320534,3,1,31,31,2320987,3,1,33,33,2321293,3,1,34,34,2321460,3,1,39,39,2321958,3,1,1,-1,2322209,2,1,35,35,2322706,2,1,37,37,2323029,2,1,38,38,2323182,2,1,25,25,2323760,2,1,22,22,2324061,2,1,20,20,2324342,2,1,11,11,2324949,2,1,9,9,2325194,2,1,6,6,2325559,2,1,4,4,2325823,3,1,1,-1,2326092,1,1,7,7,2326671,1,1,13,13,2327147,1,1,29,29,2328068,3,1,1,-1,2328266,1,2,23,23,2328506,2,1,1,1,2329246,3,2,23,23,2329503,1,1,7,7,2329856,1,1,10,10,2330165,1,1,23,23,2330877,1,1,27,27,2331264,1,1,33,33,2331806,1,1,34,34,2332002,1,2,24,24,2332284,2,1,1,1,2333034,3,2,24,24,2333261,3,1,1,-1,2333473,3,1,3,3,2334006,3,1,5,5,2334368,3,1,6,6,2334564,3,1,7,7,2334804,3,1,10,10,2335221,3,1,20,20,2335952,3,1,23,23,2336163,3,1,27,27,2336632,3,1,33,33,2337161,3,1,34,34,2337351,3,1,36,36,2337696,3,1,1,-1,2337921,2,1,35,35,2338477,2,1,33,33,2338721,2,1,26,26,2339231,2,1,16,16,2339827,2,1,10,10,2340402,2,1,2,2,2340951,3,1,1,-1,2341216,1,1,8,8,2342006,1,1,27,27,2342781,1,1,28,28,2342987,1,1,31,31,2343389,1,1,33,33,2343662,3,1,1,-1,2343936,1,2,24,24,2344211,2,1,1,1,2345024,3,2,24,24,2345271,1,1,5,5,2345526,1,1,14,14,2345977,1,1,18,18,2346340,1,1,23,23,2346793,1,1,30,30,2347292,1,1,33,33,2347594,1,1,36,36,2347971,1,1,38,38,2348182,1,2,25,25,2348367,2,1,1,1,2349025,3,2,25,25,2349208,3,1,1,-1,2349397,3,1,3,3,2349949,3,1,5,5,2350180,1,1,10,10,2350672,3,1,10,10,2351100,3,1,11,11,2351469,3,1,10,10,2351670,3,1,13,13,2352118,3,1,14,14,2352289,3,1,18,18,2352759,3,1,21,21,2353113,3,1,23,23,2353334,3,1,30,30,2354183,3,1,33,33,2354693,3,1,36,36,2354947,3,1,38,38,2355372,3,1,39,39,2355547,3,1,1,-1,2355783,2,1,34,34,2356339,2,1,35,35,2356533,2,1,36,36,2356705,2,1,30,30,2357239,2,1,21,21,2357782,2,1,17,17,2358151,2,1,4,4,2359064,3,1,1,-1,2359294,1,1,7,7,2359755,1,1,9,9,2360009,1,1,4,4,2360361,1,1,2,2,2360654,1,1,18,18,2361293,1,1,20,20,2361501,1,1,28,28,2362115,1,1,32,32,2362481,3,1,1,-1,2362729,1,2,25,25,2362994,2,1,1,1,2363563,3,2,25,25,2363767,1,1,6,6,2364124,1,1,11,11,2364531,1,1,12,12,2364700,1,1,14,14,2364998,1,1,16,16,2365335,1,1,18,18,2365574,1,1,22,22,2366521,1,1,26,26,2366905,1,1,28,28,2367244,1,1,29,29,2367432,1,1,37,37,2367907,1,2,26,26,2368084,2,1,1,1,2368722,3,2,26,26,2368911,3,1,1,-1,2369120,3,1,3,3,2369683,3,1,4,4,2369878,3,1,5,5,2370089,3,1,6,6,2370321,3,1,7,7,2370504,3,1,8,8,2370711,3,1,11,11,2371183,3,1,12,12,2371348,3,1,14,14,2371652,3,1,16,16,2371962,3,1,17,17,2372164,3,1,18,18,2372354,3,1,22,22,2372981,3,1,25,25,2373422,3,1,26,26,2373605,3,1,27,27,2373813,3,1,28,28,2374020,3,1,29,29,2374234,3,1,37,37,2374798,3,1,1,-1,2375071,2,1,25,25,2376110,2,1,23,23,2376389,2,1,18,18,2377304,2,1,13,13,2377875,2,1,11,11,2378185,2,1,10,10,2378388,2,1,2,2,2378993,3,1,1,-1,2379242,1,1,8,8,2379981,1,1,16,16,2380429,1,1,19,19,2380654,1,1,21,21,2381172,3,1,19,19,2381549,1,1,18,18,2381757,1,1,24,24,2382183,1,1,36,36,2382802,1,1,38,38,2383083,1,1,39,39,2383253,3,1,1,-1,2383517,1,2,26,26,2383791,2,1,1,1,2384513,3,2,26,26,2384713,1,1,3,3,2384956,1,1,19,19,2385746,1,1,23,23,2386120,1,1,32,32,2386657,1,2,27,27,2386817,2,1,1,1,2387402,3,2,27,27,2387624,3,1,1,-1,2387831,3,1,2,2,2388366,3,1,3,3,2388557,3,1,6,6,2388864,3,1,15,15,2389382,3,1,16,16,2389555,3,1,17,17,2389776,3,1,19,19,2390087,3,1,23,23,2390691,3,1,31,31,2391268,3,1,32,32,2391435,3,1,33,33,2391653,3,1,34,34,2391819,3,1,35,35,2392015,3,1,38,38,2392474,3,1,1,-1,2392737,2,1,33,33,2393297,2,1,31,31,2393558,2,1,16,16,2394255,2,1,13,13,2394590,2,1,11,11,2394890,2,1,10,10,2395091,3,1,1,-1,2395500,1,1,5,5,2395976,1,1,8,8,2396257,1,1,21,21,2397059,1,1,24,24,2397364,1,1,28,28,2397803,1,1,34,34,2398280,3,1,1,-1,2398465,1,2,27,27,2398699,2,1,1,1,2399295,3,2,27,27,2399500,1,1,22,22,2400299,1,1,23,23,2400492,1,1,25,25,2400899,1,1,28,28,2401281,1,2,28,28,2401448,2,1,1,1,2402024,3,2,28,28,2402261,3,1,1,-1,2402464,3,1,4,4,2403010,3,1,6,6,2403358,3,1,7,7,2403531,3,1,10,10,2403897,3,1,18,18,2404343,3,1,21,21,2404804,3,1,22,22,2404984,3,1,23,23,2405196,3,1,24,24,2405395,3,1,25,25,2405562,3,1,28,28,2406005,3,1,29,29,2406211,3,1,30,30,2406419,3,1,31,31,2406641,3,1,1,-1,2406951,2,1,29,29,2407853,2,1,18,18,2408418,2,1,12,12,2408891,2,1,11,11,2409063,2,1,10,10,2409304,2,1,3,3,2409731,2,1,2,2,2409932,3,1,1,-1,2410140,1,1,13,13,2411088,1,1,16,16,2411426,1,1,18,18,2411662,1,1,22,22,2412279,1,1,28,28,2412707,1,1,30,30,2412970,1,1,38,38,2413499,3,1,1,-1,2413728,1,2,28,28,2413983,2,1,1,1,2414564,3,2,28,28,2414798,1,1,11,11,2415300,1,1,20,20,2415910,1,1,21,21,2416089,1,1,28,28,2416597,1,1,34,34,2417079,1,1,36,36,2417342,1,2,29,29,2417512,2,1,1,1,2418055,3,2,29,29,2418254,3,1,1,-1,2418448,3,1,3,3,2418948,3,1,4,4,2419111,3,1,11,11,2419624,3,1,16,16,2420019,3,1,17,17,2420198,3,1,20,20,2420606,3,1,21,21,2420780,3,1,27,27,2421221,3,1,28,28,2421421,3,1,34,34,2421836,3,1,35,35,2422029,3,1,36,36,2422254,3,1,1,-1,2422531,2,1,34,34,2423072,2,1,38,38,2423385,2,1,22,22,2424002,2,1,14,14,2424515,2,1,8,8,2425019,2,1,5,5,2425418,2,1,4,4,2425590,2,1,3,3,2425802,3,1,1,-1,2426095,1,1,11,11,2427014,1,1,14,14,2427588,1,1,16,16,2427761,1,1,15,15,2428649,3,1,14,14,2428881,1,1,21,21,2429418,1,1,24,24,2429797,1,1,25,25,2429972,1,1,27,27,2430367,3,1,1,-1,2430580,1,2,29,29,2430880,2,1,1,1,2431390,3,2,29,29,2431654,1,1,2,2,2431833,1,1,4,4,2432067,1,1,7,7,2432463,1,1,9,9,2432680,1,1,12,12,2433113,1,1,13,13,2433310,1,1,37,37,2434306,1,2,30,30,2434465,2,1,1,1,2435049,3,2,30,30,2435354,3,1,1,-1,2435614,3,1,4,4,2436128,3,1,2,2,2436341,3,1,7,7,2436846,3,1,8,8,2437041,3,1,12,12,2437526,3,1,13,13,2437690,3,1,9,9,2438063,3,1,8,8,2438247,3,1,17,17,2438777,3,1,26,26,2439391,3,1,28,28,2439632,3,1,36,36,2440099,3,1,37,37,2440271,3,1,1,-1,2440507,2,1,36,36,2441220,2,1,21,21,2441859,2,1,18,18,2442180,2,1,12,12,2442717,2,1,3,3,2443452,3,1,1,-1,2443733,1,1,6,6,2444499,1,1,7,7,2444663,1,1,10,10,2445066,1,1,11,11,2445236,1,1,25,25,2445973,1,1,28,28,2446233,1,1,35,35,2446836,1,1,37,37,2447065,1,1,27,27,2447512,3,1,1,-1,2447709,1,2,30,30,2448092,2,1,1,1,2448663,3,2,30,30,2448862,1,1,2,2,2449044,1,1,6,6,2449400,1,1,15,15,2449858,1,1,24,24,2450334,1,1,25,25,2450506,1,1,28,28,2450901,1,1,29,29,2451075,1,1,31,31,2451440,1,1,36,36,2451968,1,1,39,39,2452258,1,2,31,31,2452439,2,1,1,1,2453288,3,2,31,31,2453496,3,1,1,-1,2453713,3,1,2,2,2454273,3,1,4,4,2454472,3,1,6,6,2454783,3,1,15,15,2455308,3,1,19,19,2455790,3,1,22,22,2456050,3,1,24,24,2456413,3,1,25,25,2456852,3,1,28,28,2457417,3,1,29,29,2457587,3,1,31,31,2457873,3,1,36,36,2458334,3,1,39,39,2458611,3,1,1,-1,2458844,2,1,37,37,2459369,2,1,34,34,2459702,2,1,33,33,2459911,2,1,29,29,2460447,2,1,26,26,2460695,2,1,21,21,2461055,2,1,21,21,2461503,2,1,23,23,2461706,2,1,20,20,2462117,2,1,19,19,2462450,2,1,20,20,2462618,2,1,16,16,2463063,3,1,1,-1,2463666,1,1,12,12,2464617,1,1,17,17,2464986,1,1,20,20,2465401,1,1,21,21,2465595,1,1,22,22,2465799,3,1,1,-1,2466513,1,2,31,31,2466830,2,1,1,1,2467443,3,2,31,31,2467646,1,1,6,6,2467964,1,1,13,13,2468466,1,1,17,17,2468910,1,1,24,24,2469723,1,1,26,26,2469984,1,1,34,34,2470492,1,2,32,32,2470637,2,1,1,1,2471211,3,2,32,32,2471419,3,1,1,-1,2471609,3,1,6,6,2472367,3,1,11,11,2472805,3,1,13,13,2473145,3,1,14,14,2473306,3,1,17,17,2473755,3,1,25,25,2474288,3,1,26,26,2474504,3,1,24,24,2474940,3,1,29,29,2475489,3,1,34,34,2475931,3,1,1,-1,2476209,2,1,32,32,2476873,2,1,34,34,2477079,2,1,36,36,2477326,2,1,39,39,2477770,2,1,27,27,2478306,2,1,24,24,2478636,2,1,14,14,2479395,2,1,5,5,2479870,2,1,4,4,2480066,3,1,1,-1,2480442,1,1,6,6,2481094,1,1,7,7,2481289,1,1,11,11,2481661,1,1,20,20,2482408,1,1,29,29,2482891,1,1,33,33,2483291,1,1,34,34,2483488,1,1,37,37,2483817,3,1,1,-1,2484064,1,2,32,32,2484314,2,1,1,1,2484909,3,2,32,32,2485157,1,1,21,21,2485959,1,1,22,22,2486128,1,1,24,24,2486435,1,1,38,38,2487124,1,1,39,39,2487692,1,1,37,37,2487930,1,1,35,35,2488168,1,2,33,33,2488514,2,1,1,1,2489164,3,2,33,33,2489365,3,1,1,-1,2489558,3,1,10,10,2490417,3,1,13,13,2490840,1,1,13,13,2491438,3,1,14,14,2491631,3,1,19,19,2492101,3,1,21,21,2492476,3,1,22,22,2492647,3,1,24,24,2492953,3,1,28,28,2493397,3,1,33,33,2493816,3,1,35,35,2494112,3,1,37,37,2494412,3,1,39,39,2494932,3,1,1,-1,2495147,2,1,23,23,2496118,2,1,13,13,2496767,2,1,6,6,2497556,2,1,4,4,2497846,3,1,1,-1,2498149,1,1,7,7,2498768,1,1,8,8,2498940,1,1,20,20,2499518,1,1,26,26,2500029,1,1,27,27,2500226,1,1,28,28,2500436,1,1,29,29,2500595,1,1,31,31,2501279,1,1,32,32,2501433,1,1,36,36,2501858,3,1,1,-1,2502079,1,2,33,33,2502355,2,1,1,1,2502951,3,2,33,33,2503177,1,1,6,6,2503573,1,1,12,12,2504248,1,1,13,13,2504435,1,1,14,14,2504607,1,1,19,19,2505364,1,1,22,22,2505666,1,1,29,29,2506240,1,1,33,33,2506671,1,1,39,39,2507064,1,2,34,34,2507212,2,1,1,1,2507896,3,2,34,34,2508144,3,1,1,-1,2508276,3,1,3,3,2508862,3,1,7,7,2509337,3,1,7,7,2509546,1,1,7,7,2510104,3,1,8,8,2510271,3,2,34,34,2510695,1,2,34,34,2511210,3,1,12,12,2511504,3,1,13,13,2511678,3,1,14,14,2511872,3,1,19,19,2512329,3,1,22,22,2512630,3,1,28,28,2513130,3,1,29,29,2513330,3,1,33,33,2513749,3,1,39,39,2514214,3,1,1,-1,2514493,2,1,34,34,2515037,2,1,37,37,2515381,2,1,38,38,2515581,2,1,24,24,2516190,2,1,23,23,2516406,3,1,1,-1,2517065,1,1,11,11,2517812,1,1,13,13,2518227,1,1,14,14,2518357,1,1,21,21,2518896,1,1,33,33,2519519,3,1,1,-1,2519742,1,2,34,34,2519979,2,1,1,1,2520558,3,2,34,34,2520806,1,1,2,2,2521009,1,1,7,7,2521397,1,1,9,9,2521603,1,1,12,12,2521978,1,2,35,35,2522944,2,1,1,1,2523605,3,2,35,35,2523779,3,1,1,-1,2523994,3,1,2,2,2524603,3,1,4,4,2524802,3,1,7,7,2525190,3,1,9,9,2525516,3,1,10,10,2525687,3,1,12,12,2525963,3,1,18,18,2526388,3,1,19,19,2526579,3,1,27,27,2527043,3,1,29,29,2527294,3,1,31,31,2527548,3,1,33,33,2528129,3,1,34,34,2528294,3,1,38,38,2528704,3,1,1,-1,2528953,2,1,32,32,2529697,2,1,29,29,2530037,2,1,25,25,2530468,2,1,23,23,2530746,2,1,22,22,2530948,2,1,6,6,2531866,3,1,1,-1,2532141,1,1,3,3,2532922,1,1,7,7,2533370,1,1,9,9,2533589,1,1,11,11,2533839,1,1,15,15,2534268,1,1,20,20,2534851,1,1,16,16,2535161,1,1,24,24,2535822,1,1,35,35,2536307,1,1,36,36,2536476,3,1,1,-1,2536674,1,2,35,35,2536914,2,1,1,1,2537455,3,2,35,35,2537732,1,1,9,9,2538278,1,1,11,11,2538518,1,1,16,16,2538982,1,1,19,19,2539268,1,1,21,21,2539630,1,1,23,23,2539939,1,1,26,26,2540353,1,1,28,28,2540632,1,1,30,30,2540891,1,1,35,35,2541370,1,1,36,36,2541543,1,1,39,39,2541956,1,2,36,36,2542073,2,1,1,1,2542757,3,2,36,36,2542972,3,1,1,-1,2543160,3,1,9,9,2543998,3,1,11,11,2544311,3,1,13,13,2544679,3,1,14,14,2544871,3,1,16,16,2545166,3,1,19,19,2545543,3,1,21,21,2546040,3,1,22,22,2546214,3,1,23,23,2546383,3,1,26,26,2546823,3,1,28,28,2547085,3,1,30,30,2547295,3,1,35,35,2547975,3,1,36,36,2548145,3,1,38,38,2548464,3,1,39,39,2548666,3,1,1,-1,2548910,2,1,28,28,2549873,2,1,24,24,2550233,2,1,20,20,2550666,2,1,17,17,2550970,2,1,15,15,2551199,2,1,8,8,2551746,3,1,1,-1,2551991,1,1,7,7,2552627,1,1,11,11,2553000,1,1,22,22,2553964,1,1,27,27,2554361,1,1,36,36,2554864,1,1,39,39,2555173,3,1,1,-1,2555382,1,2,36,36,2555561,2,1,1,1,2556241,3,2,36,36,2556416,1,1,14,14,2556977,1,1,28,28,2557974,1,1,32,32,2558368,1,1,37,37,2558738,1,2,37,37,2558891,2,1,1,1,2559458,3,2,37,37,2559662,3,1,1,-1,2559838,3,1,5,5,2560422,3,1,14,14,2560964,3,1,17,17,2561294,1,1,16,16,2561831,3,1,18,18,2562049,3,1,17,17,2562578,3,1,26,26,2563439,3,1,28,28,2563693,3,1,32,32,2564176,3,1,37,37,2564521,3,1,17,17,2565054,3,1,1,-1,2565265,2,1,21,21,2566007,2,1,22,22,2566218,2,1,23,23,2566374,2,1,33,33,2566929,2,1,8,8,2567535,2,1,7,7,2567768,2,1,6,6,2567972,2,1,3,3,2568348,3,1,1,-1,2568590,1,1,5,5,2569146,1,1,4,4,2569346,1,1,16,16,2569977,1,1,18,18,2570216,1,1,30,30,2570823,3,1,1,-1,2571166,1,2,37,37,2571498,2,1,1,1,2572071,3,2,37,37,2572314,1,1,2,2,2572459,1,1,17,17,2573100,1,1,19,19,2573400,1,1,25,25,2574010,1,1,26,26,2574183,1,1,28,28,2574562,1,1,29,29,2574764,1,1,30,30,2575002,1,1,31,31,2575165,1,1,33,33,2575643,1,2,38,38,2575921,2,1,1,1,2576496,3,2,38,38,2576754,3,1,1,-1,2577023,3,1,2,2,2577678,3,1,8,8,2578145,3,1,10,10,2578353,3,1,14,14,2578916,1,1,14,14,2579316,3,1,15,15,2579520,3,1,16,16,2579718,3,1,17,17,2579893,3,1,19,19,2580713,3,1,25,25,2581217,3,1,26,26,2581526,3,1,28,28,2582038,3,1,29,29,2582235,3,1,30,30,2582407,3,1,31,31,2582637,3,1,33,33,2583010,3,1,36,36,2583498,3,1,37,37,2583664,3,1,38,38,2583861,3,1,1,-1,2584178,2,1,36,36,2584715,2,1,39,39,2585012,2,1,30,30,2585555,2,1,27,27,2585863,2,1,21,21,2586417,2,1,17,17,2586909,2,1,14,14,2587735,2,1,11,11,2588123,2,1,10,10,2588347,2,1,5,5,2588804,3,1,1,-1,2589029,1,1,23,23,2590251,1,1,28,28,2590679,1,1,33,33,2591176,1,1,37,37,2591564,3,1,1,-1,2591771,1,2,38,38,2592029,2,1,1,1,2592739,3,2,38,38,2592942,1,1,7,7,2593389,1,1,9,9,2593541,1,1,16,16,2594163,1,1,17,17,2594351,1,1,32,32,2595362,1,1,33,33,2595539,1,1,34,34,2595710,1,1,38,38,2596151,1,2,39,39,2596332,2,1,1,1,2597010,3,2,39,39,2597203,3,1,1,-1,2597406,3,1,7,7,2598056,3,1,9,9,2598327,3,1,15,15,2598828,3,1,16,16,2599002,3,1,17,17,2599179,3,1,19,19,2599582,3,1,20,20,2599781,3,1,21,21,2599990,3,1,23,23,2600336,3,1,30,30,2600804,3,1,32,32,2601457,3,1,33,33,2601626,3,1,34,34,2601823,3,1,38,38,2602242,3,1,1,-1,2602471,2,1,38,38,2603128,2,1,31,31,2603573,2,1,30,30,2603765,2,1,29,29,2603980,2,1,22,22,2604482,2,1,18,18,2604852,2,1,14,14,2605393,3,1,1,-1,2605643,1,1,4,4,2606463,1,1,2,2,2606721,1,1,13,13,2607636,1,1,24,24,2608205,1,1,32,32,2608647,1,1,36,36,2609046,1,1,37,37,2609248,3,1,1,-1,2609451,1,2,39,39,2609794,2,1,1,1,2610470,3,2,39,39,2610720,1,1,3,3,2611487,3,1,3,3,2612004,3,1,3,3,2612149,3,1,4,4,2612406,1,1,5,5,2612682,3,1,8,8,2613116,3,1,9,9,2613295,2,1,11,11,2613723,1,1,12,12,2613961,3,1,13,13,2614164,1,1,14,14,2614416,2,1,15,15,2614741,3,1,17,17,2615148,2,1,18,18,2615499,2,1,17,17,2616351,1,1,19,19,2616885,2,1,20,20,2617226,1,1,21,21,2617512,2,1,23,23,2617795,2,1,22,22,2618647,1,1,23,23,2618922,3,1,25,25,2619370,2,1,26,26,2619630,1,1,27,27,2619898,1,1,28,28,2620117,1,1,29,29,2620305,3,1,30,30,2620577,3,1,31,31,2620789,2,1,32,32,2621091,3,1,33,33,2621394,3,1,34,34,2621595,1,1,35,35,2621956,3,1,36,36,2622205,3,1,37,37,2622413,3,1,38,38,2622596,1,1,-1,-1,2623068,1,2,-20,-1,2623802,2,1,1,1,2624113,3,2,-20,-1,2624348,1,2,1,20,2624583,2,1,1,1,2624813,3,2,1,20,2625022,1,1,1,-1,2625538,3,1,1,-1,2626211,1,1,1,-1,2626483,3,2,-1,-1,2627001,3,1,1,-1,2627366,1,1,1,-1,2627667,2,2,22,22,2627977,3,1,3,3,2628139,2,2,22,22,2628336,1,1,3,3,2628505,3,1,1,-1,2628744,1,1,1,-1,2628930,2,2,25,25,2629234,3,1,4,4,2629390,2,2,25,25,2629600,1,1,4,4,2629759,2,2,28,28,2630074,3,1,2,2,2630246,2,2,28,28,2630458,1,1,2,2,2630650,3,1,1,-1,2630920,1,1,1,-1,2631097,2,2,30,30,2631399,3,1,7,7,2631589,2,2,30,30,2631816,1,1,7,7,2631945,3,1,1,-1,2632267,1,1,1,-1,2632481,2,2,38,38,2633079,3,1,17,17,2633193,2,2,38,38,2633436,1,1,17,17,2633598,3,1,1,-1,2633828,1,1,1,-1,2634012,2,2,39,39,2634625,3,1,14,14,2634785,2,2,39,39,2635013,1,1,14,14,2635195,3,1,1,-1,2635530,1,1,1,-1,2635710,2,2,29,29,2636041,3,1,17,17,2636209,2,2,29,29,2636446,1,1,17,17,2636610,3,1,1,-1,2636856,1,1,1,-1,2637053,2,2,26,26,2637340,3,1,18,18,2637504,3,1,15,15,2637745,2,2,26,26,2637978,2,2,26,26,2638375,1,1,15,15,2638713,3,1,16,16,2638926,2,2,26,26,2639157,1,1,16,16,2639299,1,1,18,18,2639563,3,1,1,-1,2639870,1,1,1,-1,2640053,2,2,23,23,2640412,3,1,12,12,2640570,2,2,23,23,2640785,1,1,12,12,2640941,2,2,25,25,2641237,3,1,14,14,2641404,2,2,25,25,2641636,1,1,14,14,2641805,3,1,1,-1,2642044,1,1,1,-1,2642258,2,2,23,23,2642695,3,1,9,9,2642862,2,2,23,23,2643103,1,1,9,9,2643293,3,1,1,-1,2643665,1,1,1,-1,2643841,2,2,19,19,2644141,3,1,18,18,2644308,2,2,19,19,2644555,1,1,18,18,2644730,3,1,1,-1,2644985,1,1,1,-1,2645231,2,2,18,18,2645733,3,1,19,19,2645896,2,2,18,18,2646132,1,1,19,19,2646304,3,1,1,-1,2646551,1,1,1,-1,2646746,2,2,13,13,2647089,3,1,21,21,2647265,2,2,13,13,2647504,1,1,21,21,2647704,3,1,1,-1,2647938,1,1,1,-1,2648126,2,2,18,18,2648532,2,2,18,18,2648922,2,2,17,17,2649088,3,1,22,22,2649332,2,2,17,17,2649535,1,1,22,22,2649729,3,1,1,-1,2650068,1,1,1,-1,2650238,2,2,16,16,2650686,3,1,9,9,2650848,2,2,16,16,2651064,1,1,9,9,2651267,3,1,1,-1,2651702,1,1,1,-1,2651900,2,2,15,15,2652273,1,1,7,7,2652413,2,2,15,15,2652682,1,1,7,7,2652852,3,1,1,-1,2653164,1,1,1,-1,2653360,2,2,12,12,2653703,3,1,12,12,2653875,2,2,12,12,2654108,1,1,12,12,2654251,2,2,14,14,2654524,3,1,14,14,2654729,2,2,14,14,2654995,1,1,14,14,2655186,3,1,1,-1,2655502,1,1,1,-1,2655708,2,2,9,9,2656073,3,1,8,8,2656207,2,2,9,9,2656405,1,1,8,8,2656581,2,2,10,10,2656839,3,1,7,7,2656987,2,2,10,10,2657223,1,1,7,7,2657391,3,1,7,7,2658116,2,2,10,10,2658353,3,1,7,7,2658632,3,1,7,7,2659457,2,2,10,10,2659708,1,1,7,7,2659886,2,2,11,11,2660238,3,1,10,10,2660394,2,2,11,11,2660627,1,1,10,10,2660788,3,1,1,-1,2661035,1,1,1,-1,2661227,2,2,7,7,2661566,3,1,10,10,2661742,2,2,7,7,2661965,1,1,10,10,2662103,3,1,1,-1,2662356,1,1,1,-1,2662557,3,1,1,-1,2663004,1,1,1,-1,2663262,2,2,7,7,2663598,3,1,3,3,2663746,2,2,7,7,2663982,1,1,3,3,2664137,2,2,11,11,2664538,3,1,2,2,2664691,2,2,11,11,2664923,1,1,2,2,2665106,2,2,12,12,2665365,3,1,4,4,2665534,2,2,12,12,2665748,1,1,4,4,2665944,3,1,1,-1,2666211,1,1,1,-1,2666395,2,2,3,3,2666800,3,1,5,5,2666976,2,2,3,3,2667232,1,1,5,5,2667365,2,2,4,4,2667644,3,1,3,3,2667808,2,2,4,4,2668017,1,1,3,3,2668221,3,1,1,-1,2668461,1,1,1,-1,2668658,2,2,2,2,2669029,3,1,8,8,2669182,2,2,2,2,2669440,1,1,8,8,2669603,3,1,1,-1,2669948,1,1,1,-1,2670144,2,2,7,7,2670731,3,1,14,14,2670933,2,2,7,7,2671130,1,1,14,14,2671306,3,1,1,-1,2671739,1,1,1,-1,2671911,2,2,6,6,2672221,3,1,19,19,2672396,2,2,6,6,2672625,1,1,19,19,2672797,2,2,3,3,2673202,3,1,22,22,2673367,2,2,3,3,2673580,1,1,22,22,2673813,3,1,1,-1,2674090,1,1,1,-1,2674325,2,2,11,11,2674727,2,2,13,13,2674911,3,1,17,17,2675136,2,2,13,13,2675375,2,2,11,11,2675573,1,1,17,17,2675818,3,1,1,-1,2676092,1,1,1,-1,2676291,3,1,1,-1,2676772,1,1,1,-1,2676965,3,1,1,-1,2677688,1,1,1,-1,2677949,3,1,1,-1,2678373,1,1,1,-1,2678587,2,2,7,7,2678912,3,1,28,28,2679060,2,2,7,7,2679286,1,1,28,28,2679487,2,2,6,6,2679802,3,1,25,25,2679976,2,2,6,6,2680158,1,1,25,25,2680365,3,1,1,-1,2680635,1,1,1,-1,2680812,3,1,1,-1,2681220,1,1,1,-1,2681421,3,1,1,-1,2681864,1,1,1,-1,2682077,2,2,2,2,2682503,3,1,35,35,2682669,2,2,2,2,2682892,1,1,35,35,2683154,3,1,1,-1,2683339,1,1,1,-1,2683595,2,2,9,9,2684150,3,1,37,37,2684322,2,2,9,9,2684553,1,1,37,37,2684719,2,2,12,12,2685072,3,1,36,36,2685233,2,2,12,12,2685436,1,1,36,36,2685642,3,1,1,-1,2685874,1,1,1,-1,2686111,2,2,17,17,2686485,3,1,36,36,2686658,3,1,32,32,2687067,2,2,17,17,2687266,1,1,32,32,2687442,1,1,36,36,2687779,2,2,20,20,2688111,3,1,33,33,2688282,2,2,20,20,2688486,1,1,33,33,2688665,3,1,1,-1,2688908,1,1,1,-1,2689077,2,2,18,18,2689544,2,2,19,19,2689751,2,2,21,21,2690094,3,1,30,30,2690289,2,2,21,21,2690492,2,2,19,19,2690767,2,2,18,18,2690966,1,1,30,30,2691171,3,1,1,-1,2691438,1,1,1,-1,2691640,2,2,23,23,2691959,3,1,31,31,2692123,2,2,23,23,2692329,1,1,31,31,2692531,2,2,24,24,2692898,3,1,26,26,2693029,1,1,26,26,2693474,3,1,27,27,2693671,2,2,24,24,2693917,1,1,27,27,2694087,3,1,1,-1,2694352,1,1,1,-1,2694599,2,2,25,25,2694955,3,1,21,21,2695139,2,2,25,25,2695372,1,1,21,21,2695570,3,1,1,-1,2696109,1,1,1,-1,2696344,3,1,1,-1,2696754,1,1,1,-1,2696970,2,2,30,30,2697232,3,1,27,27,2697406,2,2,30,30,2697601,1,1,27,27,2697776,2,2,31,31,2698020,3,1,28,28,2698184,3,1,28,28,2698390,2,2,31,31,2698647,2,2,31,31,2699130,1,1,28,28,2699346,3,1,29,29,2699537,2,2,31,31,2699788,1,1,29,29,2699943,1,1,28,28,2700169,3,1,1,-1,2700459,1,1,1,-1,2700667,2,2,32,32,2701072,2,2,32,32,2701417,2,2,29,29,2701770,3,1,34,34,2701928,2,2,29,29,2702210,1,1,34,34,2702642,3,1,1,-1,2702891,1,1,1,-1,2703079,2,2,31,31,2703400,3,1,36,36,2703578,2,2,31,31,2703793,1,1,36,36,2703973,3,1,1,-1,2704233,1,1,1,-1,2704404,3,1,1,-1,2704819,1,1,1,-1,2705029,2,2,39,39,2705474,3,1,32,32,2705633,2,2,39,39,2705852,1,1,32,32,2706050,3,1,1,-1,2706328,1,1,1,-1,2706505,2,2,36,36,2706826,3,1,28,28,2706995,2,2,36,36,2707267,1,1,28,28,2707435,2,2,38,38,2707915,3,1,27,27,2708073,3,1,26,26,2708278,2,2,38,38,2708521,1,1,26,26,2708733,1,1,27,27,2708930,3,1,1,-1,2709243,1,1,1,-1,2709435,2,2,36,36,2709754,2,2,39,39,2710131,3,1,22,22,2710463,2,2,39,39,2710711,2,2,36,36,2710996,1,1,22,22,2711204,3,1,1,-1,2711577,1,1,1,-1,2711797,3,1,1,-1,2712198,1,1,1,-1,2712454,3,2,-1,-1,2713009,3,1,1,-1,2713273,1,1,1,-1,2713476,2,2,38,38,2713933,3,1,11,11,2714094,2,2,38,38,2714299,1,1,11,11,2714498,3,1,1,-1,2714736,1,1,1,-1,2714934,2,2,30,30,2715250,3,1,13,13,2715406,2,2,30,30,2715613,1,1,13,13,2715783,3,1,1,-1,2716050,1,1,1,-1,2716262,2,2,23,23,2716629,2,2,21,21,2716828,3,1,13,13,2717034,2,2,21,21,2717240,2,2,23,23,2717448,1,1,13,13,2717660,3,1,1,-1,2717917,1,1,1,-1,2718093,2,2,26,26,2718431,3,1,11,11,2718605,2,2,26,26,2718818,1,1,11,11,2719005,3,1,1,-1,2719320,1,1,1,-1,2719517,3,1,1,-1,2720057,1,1,1,-1,2720268,2,2,17,17,2720633,3,1,11,11,2720828,2,2,17,17,2721049,1,1,11,11,2721175,2,2,16,16,2721430,3,1,10,10,2721596,2,2,16,16,2721857,1,1,10,10,2721997,3,1,1,-1,2722268,1,1,1,-1,2722479,2,2,23,23,2722980,3,1,3,3,2723417,2,2,23,23,2723684,1,1,3,3,2723835,3,1,1,-1,2724079,1,1,1,-1,2724303,3,1,1,-1,2724785,1,1,1,-1,2725015,2,2,7,7,2725366,3,1,5,5,2725532,2,2,7,7,2725729,1,1,5,5,2725906,3,1,1,-1,2726171,1,1,1,-1,2726373,2,2,5,5,2726732,3,1,9,9,2726889,2,2,5,5,2727126,1,1,9,9,2727297,3,1,1,-1,2727649,1,1,1,-1,2727842,2,2,14,14,2728208,3,1,15,15,2728377,2,2,14,14,2728595,1,1,15,15,2728754,3,1,1,-1,2729041,1,1,1,-1,2729209,2,2,7,7,2729637,3,1,15,15,2729833,2,2,7,7,2730057,1,1,15,15,2730245,3,1,1,-1,2730548,1,1,1,-1,2730735,2,2,16,16,2731168,3,1,19,19,2731353,2,2,16,16,2731570,1,1,19,19,2731777,3,1,1,-1,2732090,1,1,1,-1,2732281,2,2,13,13,2732685,3,1,27,27,2732860,2,2,13,13,2733069,1,1,27,27,2733239,3,1,1,-1,2733533,1,1,1,-1,2733740,2,2,9,9,2734119,3,1,31,31,2734212,2,2,9,9,2734454,1,1,31,31,2734625,3,1,1,-1,2734895,1,1,1,-1,2735136,2,2,4,4,2735511,3,1,28,28,2735709,2,2,4,4,2735913,1,1,28,28,2736083,3,1,1,-1,2736336,1,1,1,-1,2736526,2,2,4,4,2736873,3,1,32,32,2737043,2,2,4,4,2737273,1,1,32,32,2737469,3,1,1,-1,2737726,1,1,1,-1,2737931,3,1,1,-1,2738371,1,1,1,-1,2738610,2,2,21,21,2739050,3,1,29,29,2739215,2,2,21,21,2739439,1,1,29,29,2739586,3,1,1,-1,2739801,1,1,1,-1,2739994,2,2,18,18,2740408,3,1,27,27,2740596,2,2,18,18,2740812,1,1,27,27,2741008,3,1,1,-1,2741312,1,1,1,-1,2741512,3,1,1,-1,2742171,1,1,1,-1,2742451,2,2,22,22,2742951,3,1,21,21,2743121,1,1,21,21,2743590,2,2,23,23,2743906,2,2,22,22,2744060,3,1,21,21,2744259,2,2,23,23,2744498,1,1,21,21,2744649,3,1,1,-1,2744894,1,1,1,-1,2745151,3,1,1,-1,2745525,1,1,1,-1,2745793,2,2,26,26,2746231,3,1,26,26,2746379,2,2,26,26,2746632,1,1,26,26,2746815,3,1,1,-1,2747183,1,1,1,-1,2747377,2,2,32,32,2747742,3,1,34,34,2747862,3,1,32,32,2748094,2,2,32,32,2748290,1,1,32,32,2748472,1,1,34,34,2748725,3,1,1,-1,2749064,1,1,1,-1,2749279,2,2,36,36,2749784,3,1,39,39,2749978,2,2,36,36,2750236,1,1,39,39,2750386,3,2,-1,-1,2750690,3,1,1,-1,2750950,1,1,1,-1,2751161,2,2,33,33,2751446,3,1,35,35,2751641,2,2,33,33,2751869,1,1,35,35,2752061,3,1,1,-1,2752393,1,1,1,-1,2752624,2,2,28,28,2752972,2,2,26,26,2753167,3,1,22,22,2753402,2,2,26,26,2753601,2,2,28,28,2753841,1,1,22,22,2754023,2,2,29,29,2754302,3,1,24,24,2754473,2,2,29,29,2754691,1,1,24,24,2754895,3,1,1,-1,2755176,1,1,1,-1,2755335,2,2,25,25,2755686,3,1,23,23,2755846,2,2,25,25,2756065,1,1,23,23,2756226,2,2,23,23,2756633,3,1,29,29,2756808,2,2,23,23,2757043,1,1,28,28,2757238,3,1,28,28,2758017,1,1,29,29,2758255,3,1,1,-1,2758502,1,1,1,-1,2758697,2,2,16,16,2759006,3,1,24,24,2759171,2,2,16,16,2759376,1,1,24,24,2759528,2,2,14,14,2759886,3,1,20,20,2760096,2,2,14,14,2760364,1,1,20,20,2760576,2,2,11,11,2761051,3,1,26,26,2761217,2,2,11,11,2761446,1,1,26,26,2761595,3,1,1,-1,2761887,1,1,1,-1,2762091,2,2,8,8,2762395,2,2,7,7,2762541,3,1,30,30,2762740,2,2,8,8,2762967,2,2,7,7,2763118,1,1,30,30,2763352,2,2,12,12,2763712,2,2,12,12,2764024,2,2,11,11,2764203,3,1,30,30,2764437,2,2,11,11,2764644,1,1,30,30,2764815,2,2,6,6,2765323,3,1,31,31,2765510,2,2,6,6,2765726,1,1,31,31,2765896,3,1,1,-1,2766141,1,1,1,-1,2766422,2,2,2,2,2767058,3,1,28,28,2767255,2,2,2,2,2767489,1,1,28,28,2767693,3,1,1,-1,2767931,1,1,1,-1,2768083,3,1,1,-1,2768703,1,1,1,-1,2768902,2,2,8,8,2769386,3,1,10,10,2769552,2,2,8,8,2769765,1,1,10,10,2769923,3,1,1,-1,2770160,1,1,1,-1,2770365,2,2,7,7,2770636,3,1,7,7,2770784,2,2,7,7,2771015,1,1,7,7,2771177,2,2,6,6,2771454,3,1,5,5,2771620,2,2,6,6,2771834,1,1,5,5,2772028,2,2,9,9,2772331,2,2,9,9,2772636,2,2,8,8,2772805,3,1,4,4,2773013,2,2,8,8,2773230,1,1,4,4,2773517,3,1,1,-1,2773768,1,1,1,-1,2773984,2,2,17,17,2774411,3,1,12,12,2774563,2,2,17,17,2774784,1,1,12,12,2774954,2,2,12,12,2775376,3,1,13,13,2775540,2,2,12,12,2775770,1,1,13,13,2775943,3,1,1,-1,2776225,1,1,1,-1,2776421,3,1,1,-1,2776860,1,1,1,-1,2777074,2,2,21,21,2777478,3,1,17,17,2777652,2,2,21,21,2777874,1,1,17,17,2778046,3,1,1,-1,2778298,1,1,1,-1,2778496,2,2,27,27,2778834,3,1,16,16,2778999,2,2,27,27,2779219,1,1,16,16,2779406,3,1,1,-1,2779746,1,1,1,-1,2779947,3,2,-1,-1,2780700,3,1,1,-1,2780974,1,1,1,-1,2781178,2,2,32,32,2781578,3,1,9,9,2781785,2,2,32,32,2782031,1,1,9,9,2782220,3,1,1,-1,2782498,1,1,1,-1,2782694,2,2,20,20,2783052,3,1,8,8,2783202,2,2,20,20,2783418,1,1,8,8,2783628,3,1,1,-1,2784400,1,1,1,-1,2784615,2,2,3,3,2785252,3,1,36,36,2785418,2,2,3,3,2785627,1,1,36,36,2785796,3,1,1,-1,2786298,1,1,1,-1,2786481,3,2,-1,-1,2787075,3,1,1,-1,2787347,1,1,1,-1,2787524,2,2,33,33,2787929,3,1,33,33,2788077,2,2,33,33,2788305,1,1,33,33,2788482,3,1,1,-1,2788946,1,1,1,-1,2789150,2,2,31,31,2789534,3,1,7,7,2789676,2,2,31,31,2789943,1,1,7,7,2790145,2,2,1,-1,2790550,3,1,1,-1,2791058,1,1,1,-1,2791270,2,2,23,23,2791814,2,2,25,25,2792055,3,1,18,18,2792246,2,2,25,25,2792452,2,2,23,23,2792667,1,1,18,18,2792887,2,2,25,25,2793193,3,1,16,16,2793412,2,2,25,25,2793628,1,1,16,16,2793803,3,1,1,-1,2794095,1,1,1,-1,2794268,3,1,1,-1,2794747,1,1,1,-1,2794981,2,2,36,36,2795292,3,1,14,14,2795469,2,2,36,36,2795669,1,1,14,14,2795834,2,2,39,39,2796211,3,1,18,18,2796390,2,2,39,39,2796619,1,1,18,18,2796812,2,2,38,38,2797225,3,1,11,11,2797425,2,2,38,38,2797597,1,1,11,11,2797802,3,1,1,-1,2798140,1,1,1,-1,2798345,2,2,32,32,2798665,3,1,8,8,2798819,2,2,32,32,2799036,1,1,8,8,2799197,2,2,34,34,2799573,3,1,3,3,2799768,2,2,34,34,2800007,1,1,3,3,2800175,3,1,1,-1,2800456,1,1,1,-1,2800651,2,2,28,28,2801002,3,1,4,4,2801203,2,2,28,28,2801377,1,1,4,4,2801571,3,1,1,-1,2801930,1,1,1,-1,2802156,2,2,21,21,2802531,3,1,5,5,2802748,2,2,21,21,2802935,1,1,5,5,2803106,3,1,1,-1,2803387,1,1,1,-1,2803651,3,1,1,-1,2804330,1,1,1,-1,2804564,2,2,16,16,2804905,3,1,3,3,2805080,2,2,16,16,2805273,1,1,3,3,2805487,3,1,1,-1,2805852,1,1,1,-1,2806097,3,1,1,-1,2806391,1,1,1,-1,2806666,3,1,1,-1,2807177,1,1,1,-1,2807415,3,1,1,-1,2807823,1,1,1,-1,2808063,3,1,1,-1,2808669,1,1,1,-1,2808938,2,2,9,9,2809378,3,1,5,5,2809551,2,2,9,9,2809787,1,1,5,5,2809933,3,1,1,-1,2810190,1,1,1,-1,2810479,2,2,11,11,2810852,3,1,4,4,2811012,2,2,11,11,2811228,1,1,4,4,2811420,2,2,2,2,2811871,3,1,3,3,2812363,2,2,2,2,2812567,1,1,3,3,2812729,2,2,3,3,2812973,3,1,4,4,2813139,2,2,3,3,2813361,1,1,4,4,2813523,3,1,1,-1,2813859,1,1,1,-1,2814085,2,2,3,3,2814379,2,2,2,2,2814540,3,1,11,11,2814770,2,2,3,3,2814982,2,2,2,2,2815147,1,1,11,11,2815492,3,1,1,-1,2815798,1,1,1,-1,2815976,2,2,2,2,2816312,3,1,17,17,2816471,2,2,2,2,2816712,1,1,17,17,2816885,3,1,1,-1,2817153,1,1,1,-1,2817357,3,1,1,-1,2818098,1,1,1,-1,2818296,3,1,1,-1,2818741,1,1,1,-1,2819050,2,2,4,4,2819419,3,1,28,28,2819569,2,2,4,4,2819805,2,2,4,4,2820234,1,1,28,28,2820472,3,1,27,27,2820641,2,2,4,4,2820860,1,1,27,27,2821047,3,1,1,-1,2821320,1,1,1,-1,2821526,2,2,3,3,2821838,3,1,31,31,2822009,2,2,3,3,2822222,1,1,31,31,2822379,2,2,6,6,2822681,3,1,32,32,2822864,2,2,6,6,2823078,1,1,32,32,2823263,3,1,1,-1,2823512,1,1,1,-1,2823704,2,2,2,2,2824128,3,1,39,39,2824297,2,2,2,2,2824550,1,1,39,39,2824727,3,1,1,-1,2825011,1,1,1,-1,2825203,3,1,1,-1,2825679,1,1,1,-1,2825914,3,1,1,-1,2826602,1,1,1,-1,2826863,2,2,16,16,2827313,3,1,39,39,2827513,2,2,16,16,2827720,1,1,39,39,2827886,3,1,1,-1,2828155,1,1,1,-1,2828391,2,2,12,12,2828842,3,1,30,30,2829006,2,2,12,12,2829206,1,1,30,30,2829438,3,1,1,-1,2829677,1,1,1,-1,2829881,2,2,14,14,2830182,3,1,27,27,2830344,2,2,14,14,2830564,1,1,27,27,2830739,2,2,12,12,2831035,3,1,25,25,2831270,2,2,12,12,2831419,1,1,25,25,2831647,2,2,17,17,2831995,3,1,25,25,2832184,2,2,17,17,2832424,1,1,25,25,2832632,3,1,1,-1,2832941,1,1,1,-1,2833148,2,2,22,22,2833508,2,2,24,24,2833737,3,1,28,28,2833947,2,2,24,24,2834164,2,2,22,22,2834366,1,1,28,28,2834606,3,1,1,-1,2834933,1,1,1,-1,2835137,2,2,21,21,2835444,3,1,37,37,2835640,3,1,34,34,2835911,2,2,21,21,2836117,1,1,34,34,2836284,1,1,37,37,2836675,3,1,1,-1,2836951,1,1,1,-1,2837139,2,2,27,27,2837439,2,2,26,26,2837610,3,1,35,35,2837820,2,2,27,27,2838051,2,2,26,26,2838230,1,1,35,35,2838472,3,1,1,-1,2838738,1,1,1,-1,2838950,2,2,31,31,2839666,3,1,37,37,2839832,2,2,31,31,2840026,1,1,37,37,2840236,3,1,1,-1,2840463,1,1,1,-1,2840684,2,2,35,35,2841049,1,2,35,35,2841212,2,2,35,35,2841447,3,2,35,35,2842138,2,2,35,35,2842736,3,1,38,38,2842917,2,2,35,35,2843126,1,1,38,38,2843562,2,2,33,33,2843934,3,1,39,39,2844132,2,2,33,33,2844340,1,1,39,39,2844535,2,2,39,39,2844956,3,1,37,37,2845128,2,2,39,39,2845385,1,1,37,37,2845556,3,1,1,-1,2845802,1,1,1,-1,2845971,3,1,1,-1,2846524,1,1,1,-1,2846747,3,1,1,-1,2847185,1,1,1,-1,2847370,3,1,1,-1,2847834,1,1,1,-1,2848088,2,2,29,29,2848376,3,1,25,25,2848542,2,2,29,29,2848758,1,1,25,25,2848952,3,1,1,-1,2849186,1,1,1,-1,2849438,3,1,1,-1,2849731,1,1,1,-1,2849972,3,1,1,-1,2850482,1,1,1,-1,2850690,2,2,37,37,2851061,3,1,22,22,2851205,2,2,37,37,2851472,1,1,22,22,2851686,3,1,1,-1,2851878,1,1,1,-1,2852088,3,1,1,-1,2852471,1,1,1,-1,2852787,3,2,-1,-1,2853444,3,1,1,-1,2853751,1,1,1,-1,2853986,2,2,32,32,2854306,3,1,18,18,2854468,2,2,32,32,2854678,1,1,18,18,2854848,2,2,34,34,2855187,3,1,17,17,2855356,2,2,34,34,2855547,1,1,17,17,2855725,3,1,1,-1,2856072,1,1,1,-1,2856320,2,2,34,34,2856767,3,1,25,25,2857106,2,2,34,34,2857338,1,1,25,25,2857512,2,2,35,35,2857815,3,1,21,21,2857982,2,2,35,35,2858165,1,1,21,21,2858390,3,1,1,-1,2858672,1,1,1,-1,2858850,2,2,30,30,2859183,3,1,24,24,2859384,2,2,30,30,2859579,1,1,24,24,2859756,2,2,28,28,2860192,3,1,26,26,2860378,2,2,28,28,2860570,1,1,26,26,2860747,3,1,1,-1,2861019,1,1,1,-1,2861246,2,2,21,21,2861742,3,1,18,18,2861910,2,2,21,21,2862113,1,1,18,18,2862296,3,1,1,-1,2862560,1,1,1,-1,2862736,3,1,1,-1,2863198,1,1,1,-1,2863405,2,2,20,20,2863887,3,1,5,5,2864076,2,2,20,20,2864315,1,1,5,5,2864460,3,1,1,-1,2864761,1,1,1,-1,2864972,3,1,1,-1,2865448,1,1,1,-1,2865732,3,1,1,-1,2866112,1,1,1,-1,2866381,2,2,11,11,2866893,3,1,16,16,2867083,2,2,11,11,2867290,1,1,16,16,2867493,3,1,1,-1,2867767,1,1,1,-1,2867966,3,1,1,-1,2868354,1,1,1,-1,2868616,3,1,1,-1,2869233,1,1,1,-1,2869451,2,2,10,10,2869842,3,1,19,19,2870007,2,2,10,10,2870224,1,1,19,19,2870413,3,1,1,-1,2870735,1,1,1,-1,2870967,2,2,3,3,2871416,3,1,24,24,2871579,2,2,3,3,2871782,1,1,24,24,2871950,2,2,6,6,2872256,3,1,23,23,2872424,2,2,6,6,2872637,1,1,23,23,2872799,3,1,1,-1,2873072,1,1,1,-1,2873269,2,2,4,4,2873704,3,1,18,18,2873889,2,2,4,4,2874133,1,1,18,18,2874281,3,1,1,-1,2874654,1,1,1,-1,2874869,2,2,15,15,2875417,3,1,24,24,2875554,2,2,15,15,2875777,1,1,24,24,2875940,3,1,1,-1,2876232,1,1,1,-1,2876444,3,1,1,-1,2876846,1,1,1,-1,2877074,2,2,14,14,2877395,3,1,35,35,2877522,2,2,14,14,2877761,1,1,35,35,2877928,3,1,1,-1,2878226,1,1,1,-1,2878426,2,2,7,7,2878909,3,1,35,35,2879083,2,2,7,7,2879307,1,1,35,35,2879478,3,1,1,-1,2879754,1,1,1,-1,2879920,2,2,12,12,2880267,3,1,38,38,2880430,2,2,12,12,2880642,1,1,38,38,2880820,3,1,1,-1,2881083,1,1,1,-1,2881255,2,2,21,21,2881627,3,1,39,39,2881799,2,2,21,21,2882055,1,1,39,39,2882207,3,1,1,-1,2882519,1,1,1,-1,2882711,2,2,26,26,2883049,3,1,33,33,2883223,2,2,26,26,2883429,1,1,33,33,2883616,2,2,23,23,2884008,3,1,30,30,2884241,2,2,23,23,2884450,1,1,30,30,2884917,2,2,29,29,2885265,3,1,31,31,2885455,2,2,29,29,2885651,1,1,31,31,2885825,3,1,1,-1,2886097,1,1,1,-1,2886319,2,2,33,33,2886643,3,1,34,34,2886808,2,2,33,33,2887024,1,1,34,34,2887219,3,1,1,-1,2887502,1,1,1,-1,2887696,2,2,36,36,2888076,3,1,33,33,2888245,2,2,36,36,2888441,1,1,33,33,2888607,2,2,37,37,2888846,3,1,34,34,2889031,2,2,37,37,2889261,1,1,34,34,2889392,2,2,37,37,2889730,3,1,38,38,2889907,2,2,37,37,2890138,1,1,38,38,2890336,3,1,1,-1,2890621,1,1,1,-1,2890803,2,2,38,38,2891144,3,1,32,32,2891339,2,2,38,38,2891549,1,1,32,32,2891719,3,1,1,-1,2891965,1,1,1,-1,2892170,2,2,33,33,2892471,1,1,30,30,2892617,2,2,33,33,2892880,1,1,30,30,2893050,3,1,1,-1,2893357,1,1,1,-1,2893536,3,1,1,-1,2893874,1,1,1,-1,2894111,3,2,-1,-1,2894746,3,1,1,-1,2895057,1,1,1,-1,2895266,2,2,32,32,2895669,3,1,15,15,2895806,2,2,32,32,2896037,1,1,15,15,2896218,3,1,1,-1,2896500,1,1,1,-1,2896695,2,2,35,35,2897330,3,1,3,3,2897539,2,2,35,35,2897729,1,1,3,3,2897915,3,1,1,-1,2898178,1,1,1,-1,2898373,2,2,26,26,2898788,3,1,2,2,2898952,2,2,26,26,2899157,1,1,2,2,2899376,3,1,1,-1,2899644,2,2,30,30,2900226,3,2,30,30,2900649,3,2,30,30,2900820,1,2,30,30,2901164,1,2,30,30,2901574,3,2,30,30,2902251,1,2,1,-1,2903443,3,2,1,-1,2904018,3,1,1,-1,2904266,1,1,1,-1,2905212,1,1,1,-1,2905523,1,2,-1,-1,2906326,3,1,1,-1,2906607,2,1,30,30,2907147,1,1,1,-1,2907780,1,1,1,-1,2908468,3,1,1,-1,2909135,2,1,30,30,2909932,3,2,-1,-1,2910235,1,1,1,-1,2910543,3,2,11,11,2911422,3,1,1,-1,2911857,1,1,1,-1,2912237,1,2,1,-1,2913597,1,2,11,11,2914400,3,2,11,11,2914605,3,2,11,11,2914751,3,2,1,-1,2915120,1,2,1,-1,2916543,3,1,1,-1,2916906,1,1,1,-1,2917540,3,2,1,-1,2917976,3,1,1,-1,2918277,3,1,1,-1,2918554,1,1,1,-1,2919592,1,2,1,-1,2920486,3,1,30,30,2921153,3,1,30,30,2921524,3,1,1,-1,2922240,1,1,1,-1,2922521,1,1,1,-1,2922848,1,2,1,-1,2923668,3,2,1,-1,2924581,3,1,1,-1,2925063,1,1,1,-1,2925440,1,1,1,-1,2925736,3,1,30,30,2926625,3,1,1,-1,2927053,3,1,1,-1,2927809,3,1,1,-1,2928212,1,1,1,-1,2928987,3,2,1,-1,2929326,1,2,-1,-1,2930239,3,1,1,-1,2930619,2,1,30,30,2931046,1,1,1,-1,2931323,3,2,-1,-1,2931837,3,1,1,-1,2932131,1,1,1,-1,2932347,3,1,1,-1,2932819,1,1,1,-1,2933013,2,2,25,25,2933357,3,1,22,22,2933534,2,2,25,25,2933829,1,1,22,22,2934014,3,1,1,-1,2934338,1,1,1,-1,2934515,2,2,22,22,2934873,3,1,14,14,2934990,2,2,22,22,2935226,1,1,14,14,2935387,2,2,20,20,2935683,3,1,13,13,2935870,2,2,20,20,2936061,1,1,13,13,2936259,3,1,1,-1,2936596,1,1,1,-1,2936801,2,2,16,16,2937149,3,1,11,11,2937340,2,2,16,16,2937551,1,1,11,11,2937709,3,1,1,-1,2937995,1,1,1,-1,2938312,2,2,16,16,2938481,3,1,8,8,2938823,3,1,7,7,2939170,2,2,16,16,2939426,1,1,7,7,2939576,1,1,8,8,2939781,2,2,20,20,2940183,2,2,20,20,2940660,2,2,19,19,2940839,3,1,9,9,2941075,2,2,19,19,2941329,1,1,9,9,2941467,3,1,1,-1,2941820,1,1,1,-1,2942043,2,2,9,9,2942417,3,1,7,7,2942582,2,2,9,9,2942789,1,1,7,7,2942961,3,1,1,-1,2943228,1,1,1,-1,2943436,2,2,13,13,2943711,3,1,12,12,2943879,2,2,13,13,2944124,1,1,12,12,2944282,3,1,1,-1,2944583,1,1,1,-1,2944786,2,2,3,3,2945194,3,1,10,10,2945372,2,2,3,3,2945570,1,1,10,10,2945715,2,2,6,6,2946050,3,1,12,12,2946227,2,2,6,6,2946455,1,1,12,12,2946650,3,1,1,-1,2947101,1,1,1,-1,2947316,2,2,12,12,2947986,3,1,20,20,2948200,2,2,12,12,2948397,1,1,20,20,2948589,3,1,1,-1,2948876,1,1,1,-1,2949070,2,2,14,14,2949389,3,1,28,28,2949554,2,2,14,14,2949771,1,1,28,28,2949903,2,2,15,15,2950134,2,2,14,14,2950317,3,1,30,30,2950576,2,2,15,15,2950810,2,2,14,14,2950979,1,1,30,30,2951259,3,1,1,-1,2951523,1,1,1,-1,2951732,2,2,16,16,2952050,3,1,37,37,2952240,2,2,16,16,2952447,1,1,37,37,2952652,3,1,1,-1,2952880,1,1,1,-1,2953102,2,2,11,11,2953374,3,1,35,35,2953567,2,2,11,11,2953771,1,1,35,35,2953953,2,2,5,5,2954423,3,1,30,30,2954614,2,2,5,5,2954780,1,1,30,30,2954998,3,1,1,-1,2955396,1,1,1,-1,2955599,2,2,32,32,2955905,3,1,33,33,2956075,2,2,32,32,2956284,1,1,33,33,2956447,2,2,36,36,2957236,3,1,35,35,2957411,2,2,36,36,2957623,1,1,35,35,2957813,3,1,1,-1,2958081,1,1,1,-1,2958263,3,1,1,-1,2958730,1,1,1,-1,2958946,3,1,1,-1,2959447,1,1,1,-1,2959673,3,2,-1,-1,2960366,3,1,1,-1,2960626,1,1,1,-1,2960838,2,2,33,33,2961144,3,1,11,11,2961311,2,2,33,33,2961547,1,1,11,11,2961703,3,1,1,-1,2961980,1,1,1,-1,2962160,3,1,1,-1,2962772,1,1,1,-1,2962978,2,2,34,34,2963383,3,1,24,24,2963579,2,2,34,34,2963750,1,1,24,24,2963921,3,1,1,-1,2964187,1,1,1,-1,2964369,2,2,38,38,2964763,3,1,30,30,2964932,2,2,38,38,2965172,1,1,30,30,2965396,3,1,1,-1,2965789,1,1,1,-1,2965970,2,2,16,16,2966295,3,1,33,33,2966470,2,2,16,16,2966696,1,1,33,33,2966940,3,1,1,-1,2967314,1,1,1,-1,2967530,3,1,1,-1,2967966,1,1,1,-1,2968206,3,2,-1,-1,2969314,3,1,1,-1,2969666,1,1,1,-1,2969858,2,2,16,16,2970294,3,1,4,4,2970461,2,2,16,16,2970640,1,1,4,4,2970816,3,1,1,-1,2971072,1,1,1,-1,2971274,3,1,1,-1,2972028,1,1,1,-1,2972266,3,1,1,-1,2973417,1,1,1,-1,2973612,2,2,37,37,2973976,3,1,3,3,2974104,2,2,37,37,2974305,1,1,3,3,2974511,3,2,-1,-1,2974779,3,1,1,-1,2975080,1,1,1,-1,2975258,3,2,39,39,2976468,1,2,39,39,2977147,3,2,-1,-1,2977398,3,1,1,-1,2977698,1,1,1,-1,2977865,2,2,14,14,2978381,3,1,11,11,2978544,2,2,14,14,2978784,1,1,11,11,2979051,2,2,1,-1,2979460,3,1,1,-1,2981839,1,1,1,-1,2982106,3,2,-1,-1,2982960,3,1,1,-1,2983221,1,1,1,-1,2983495,3,2,-1,-1,2983901,3,1,1,-1,2984162,1,1,1,-1,2984430,2,2,9,9,2985180,3,1,34,34,2985362,2,2,9,9,2985568,1,1,34,34,2985745,3,2,-1,-1,2986814,2,2,-1,-1,2987700,1,2,-20,-1,2988487,2,1,1,1,2988725,3,2,-20,-1,2988894,1,2,1,20,2989123,2,1,1,1,2989333,3,2,1,20,2989549,3,1,1,-1,2990084,1,1,1,-1,2990254,2,2,25,25,2990660,3,1,6,6,2990821,2,2,25,25,2991009,1,1,6,6,2991206,2,2,24,24,2991537,3,1,9,9,2991711,2,2,24,24,2991917,1,1,9,9,2992093,3,1,1,-1,2992299,1,1,1,-1,2992495,2,2,22,22,2992830,3,1,5,5,2992981,3,1,7,7,2993184,2,2,22,22,2993446,1,1,7,7,2993586,1,1,5,5,2993815,3,1,1,-1,2994096,1,1,1,-1,2994301,2,2,19,19,2994609,3,1,8,8,2994745,3,1,7,7,2994938,2,2,19,19,2995146,1,1,8,8,2995324,1,1,7,7,2995520,3,1,1,-1,2995778,1,1,1,-1,2995991,3,1,1,-1,2996443,1,1,1,-1,2996717,2,2,12,12,2997041,3,1,11,11,2997221,2,2,12,12,2997443,1,1,11,11,2997597,3,1,1,-1,2997888,1,1,1,-1,2998101,2,2,9,9,2998425,2,2,7,7,2998670,3,1,6,6,2998843,2,2,7,7,2999041,2,2,9,9,2999311,1,1,6,6,2999660,3,1,1,-1,2999931,1,1,1,-1,3000122,3,1,1,-1,3000572,1,1,1,-1,3000778,2,2,6,6,3001181,3,1,9,9,3001513,2,2,6,6,3001719,1,1,9,9,3001886,2,2,4,4,3002264,3,1,11,11,3002408,2,2,4,4,3002638,1,1,11,11,3002814,3,1,1,-1,3003078,1,1,1,-1,3003332,2,2,2,2,3003898,3,1,14,14,3004061,2,2,2,2,3004272,1,1,14,14,3004472,3,1,1,-1,3004841,1,1,1,-1,3005024,2,2,4,4,3005398,3,1,22,22,3005608,2,2,4,4,3005839,1,1,22,22,3006043,3,1,1,-1,3006273,1,1,1,-1,3006487,3,1,1,-1,3006923,1,1,1,-1,3007130,2,2,8,8,3007464,3,1,15,15,3007641,2,2,8,8,3007869,1,1,15,15,3008053,3,1,1,-1,3008344,1,1,1,-1,3008585,2,2,18,18,3008896,2,2,16,16,3009099,3,1,15,15,3009275,2,2,16,16,3009485,2,2,18,18,3009776,1,1,15,15,3010068,2,2,19,19,3010326,3,1,14,14,3010495,2,2,19,19,3010736,1,1,14,14,3010903,2,2,18,18,3011199,3,1,13,13,3011381,2,2,18,18,3011579,1,1,13,13,3011778,3,1,1,-1,3011995,1,1,1,-1,3012262,3,1,1,-1,3012689,1,1,1,-1,3012943,2,2,27,27,3013376,3,1,12,12,3013548,2,2,27,27,3013740,1,1,12,12,3013927,3,1,1,-1,3014150,1,1,1,-1,3014361,3,1,1,-1,3014695,1,1,1,-1,3014969,2,2,36,36,3015606,3,1,12,12,3015783,2,2,36,36,3015974,1,1,12,12,3016150,3,1,1,-1,3016386,1,1,1,-1,3016573,2,2,35,35,3016895,2,2,33,33,3017070,3,1,17,17,3017280,2,2,33,33,3017509,2,2,35,35,3017751,1,1,17,17,3017957,3,1,1,-1,3018265,1,1,1,-1,3018490,2,2,39,39,3018874,3,1,5,5,3019375,2,2,39,39,3019580,1,1,5,5,3019753,3,1,1,-1,3019987,1,1,1,-1,3020161,2,2,34,34,3020646,3,1,2,2,3020843,2,2,34,34,3021006,1,1,2,2,3021220,3,1,1,-1,3021484,1,1,1,-1,3021776,3,1,1,-1,3022080,1,1,1,-1,3022347,2,2,28,28,3022656,3,1,8,8,3022824,3,1,5,5,3023117,2,2,28,28,3023303,1,1,5,5,3023470,1,1,8,8,3023745,3,1,1,-1,3024032,1,1,1,-1,3024238,3,1,1,-1,3024738,1,1,1,-1,3024965,2,2,33,33,3025277,2,2,36,36,3025670,3,1,25,25,3025870,2,2,36,36,3026089,2,2,33,33,3026361,1,1,25,25,3026588,2,2,35,35,3026864,3,1,26,26,3027039,2,2,35,35,3027272,1,1,26,26,3027473,3,1,1,-1,3027782,1,1,1,-1,3028013,2,2,38,38,3028470,3,1,34,34,3028580,2,2,38,38,3028752,1,1,34,34,3028925,3,1,1,-1,3029203,1,1,1,-1,3029480,2,2,35,35,3029911,3,1,39,39,3030086,2,2,35,35,3030322,1,1,39,39,3030483,2,2,29,29,3030993,3,1,39,39,3031173,2,2,29,29,3031411,1,1,39,39,3031574,3,1,1,-1,3031846,1,1,1,-1,3032090,2,2,22,22,3032622,3,1,38,38,3032790,2,2,22,22,3033021,1,1,38,38,3033189,3,1,1,-1,3033404,1,1,1,-1,3033642,2,2,19,19,3033988,2,2,22,22,3034280,3,1,35,35,3034454,2,2,22,22,3034694,2,2,19,19,3035003,1,1,35,35,3035224,3,1,1,-1,3035461,1,1,1,-1,3035646,3,1,1,-1,3036141,1,1,1,-1,3036381,2,2,20,20,3036887,3,1,31,31,3037071,2,2,20,20,3037297,1,1,31,31,3037468,3,1,1,-1,3037699,1,1,1,-1,3037869,2,2,17,17,3038178,3,1,30,30,3038346,3,1,28,28,3038578,2,2,17,17,3038766,1,1,28,28,3038956,1,1,30,30,3039173,3,1,1,-1,3039465,1,1,1,-1,3039678,3,1,1,-1,3040112,1,1,1,-1,3040429,2,2,29,29,3040774,3,1,33,33,3040966,2,2,29,29,3041204,1,1,33,33,3041383,3,1,1,-1,3041710,1,1,1,-1,3041929,2,2,20,20,3042258,2,2,19,19,3042436,3,1,21,21,3042629,2,2,20,20,3042896,2,2,19,19,3043065,1,1,21,21,3043304,2,2,21,21,3043578,3,1,20,20,3043741,2,2,21,21,3043954,1,1,20,20,3044151,2,2,21,21,3044697,3,1,19,19,3045086,2,2,21,21,3045280,1,1,19,19,3045494,3,1,1,-1,3045710,1,1,1,-1,3045929,3,1,1,-1,3046362,1,1,1,-1,3046574,2,2,19,19,3046987,3,1,24,24,3047173,2,2,19,19,3047389,1,1,24,24,3047550,3,1,1,-1,3047802,1,1,1,-1,3047991,2,2,15,15,3048407,3,1,20,20,3048574,2,2,15,15,3048769,1,1,20,20,3048977,3,1,1,-1,3049278,1,1,1,-1,3049531,3,1,1,-1,3049903,1,1,1,-1,3050200,2,2,20,20,3050625,3,1,10,10,3050796,2,2,20,20,3050957,1,1,10,10,3051157,3,1,1,-1,3051423,1,1,1,-1,3051705,3,1,1,-1,3052102,1,1,1,-1,3052382,3,1,1,-1,3052665,1,1,1,-1,3052970,3,1,1,-1,3053510,1,1,1,-1,3053751,2,2,9,9,3054276,3,1,25,25,3054459,2,2,9,9,3054684,1,1,25,25,3054860,3,1,1,-1,3055094,1,1,1,-1,3055341,3,1,1,-1,3055606,1,1,1,-1,3055843,2,2,2,2,3056378,3,1,27,27,3056549,2,2,2,2,3056767,1,1,27,27,3056955,3,1,1,-1,3057265,1,1,1,-1,3057447,2,2,4,4,3057877,3,1,31,31,3058020,2,2,4,4,3058244,1,1,31,31,3058432,3,1,1,-1,3058708,1,1,1,-1,3058904,2,2,2,2,3059442,3,1,33,33,3059612,2,2,2,2,3059843,1,1,33,33,3060018,3,1,1,-1,3060256,1,1,1,-1,3060463,2,2,5,5,3060802,3,1,36,36,3060972,3,1,37,37,3061181,2,2,5,5,3061421,1,1,37,37,3061579,1,1,36,36,3061777,2,2,6,6,3062085,3,1,35,35,3062233,2,2,6,6,3062426,1,1,35,35,3062597,3,1,1,-1,3062873,1,1,1,-1,3063073,2,2,10,10,3063375,2,2,9,9,3063555,3,1,36,36,3063783,2,2,10,10,3063999,2,2,9,9,3064194,1,1,36,36,3064431,3,1,1,-1,3064698,1,1,1,-1,3064909,2,2,11,11,3065246,3,1,33,33,3065498,2,2,11,11,3065718,1,1,33,33,3065857,2,2,10,10,3066167,3,1,31,31,3066305,2,2,10,10,3066514,1,1,31,31,3066710,3,1,1,-1,3067007,1,1,1,-1,3067240,3,1,1,-1,3067570,1,1,1,-1,3067815,3,1,1,-1,3068209,1,1,1,-1,3068458,3,2,-1,-1,3069224,3,1,1,-1,3069569,1,1,1,-1,3069770,3,1,1,-1,3070149,1,1,1,-1,3070444,3,1,1,-1,3070760,1,1,1,-1,3070983,3,1,1,-1,3071373,1,1,1,-1,3071642,3,1,1,-1,3072017,1,1,1,-1,3072304,3,1,1,-1,3072724,1,1,1,-1,3073012,3,1,1,-1,3073347,1,1,1,-1,3073647,2,2,28,28,3074113,3,1,11,11,3074283,2,2,28,28,3074496,1,1,11,11,3074673,3,1,1,-1,3074936,1,1,1,-1,3075243,3,1,1,-1,3075581,1,1,1,-1,3075849,3,1,1,-1,3076200,1,1,1,-1,3076476,2,2,19,19,3076911,3,1,17,17,3077072,2,2,19,19,3077275,1,1,17,17,3077481,3,1,1,-1,3077782,1,1,1,-1,3078061,2,2,10,10,3078428,3,1,10,10,3078601,2,2,10,10,3078805,1,1,10,10,3079004,3,1,1,-1,3079246,1,1,1,-1,3079518,3,1,1,-1,3079833,1,1,1,-1,3080079,2,2,5,5,3080801,3,1,5,5,3080967,2,2,5,5,3081172,1,1,5,5,3081380,3,1,1,-1,3081678,1,1,1,-1,3081913,3,1,1,-1,3082293,1,1,1,-1,3082571,3,1,1,-1,3083015,1,1,1,-1,3083323,3,1,1,-1,3083746,1,1,1,-1,3083991,3,1,1,-1,3084507,1,1,1,-1,3084771,3,1,1,-1,3085281,1,1,1,-1,3085548,3,1,1,-1,3085959,1,1,1,-1,3086304,3,1,1,-1,3086779,1,1,1,-1,3087073,3,1,1,-1,3087586,1,1,1,-1,3087851,3,2,-1,-1,3088268,3,1,1,-1,3088503,1,1,1,-1,3088765,2,2,39,39,3089146,3,1,35,35,3089306,2,2,39,39,3089527,1,1,35,35,3089681,2,2,35,35,3090162,3,1,33,33,3090313,2,2,35,35,3090505,1,1,33,33,3090710,3,1,1,-1,3090979,1,1,1,-1,3091208,2,2,23,23,3091855,3,1,27,27,3092064,2,2,23,23,3092309,1,1,27,27,3092479,3,1,1,-1,3092780,1,1,1,-1,3093038,2,2,19,19,3093491,3,1,32,32,3093651,2,2,19,19,3093891,1,1,32,32,3094032,3,1,1,-1,3094332,1,1,1,-1,3094497,2,2,26,26,3094804,3,1,38,38,3094981,2,2,26,26,3095207,1,1,38,38,3095408,3,1,1,-1,3095782,1,1,1,-1,3096019,3,1,1,-1,3096442,1,1,1,-1,3096706,2,2,5,5,3097080,3,1,31,31,3097243,2,2,5,5,3097461,1,1,31,31,3097659,3,1,1,-1,3097858,1,1,1,-1,3098062,2,2,4,4,3098508,3,1,26,26,3098670,2,2,4,4,3098872,1,1,26,26,3099046,3,1,1,-1,3099314,1,1,1,-1,3099531,2,2,8,8,3099829,3,1,29,29,3099965,2,2,8,8,3100241,1,1,29,29,3100408,3,1,1,-1,3100705,1,1,1,-1,3100940,3,1,1,-1,3101324,1,1,1,-1,3101591,2,2,11,11,3102147,3,1,18,18,3102333,2,2,11,11,3102579,1,1,18,18,3102738,3,1,1,-1,3102994,1,1,1,-1,3103193,2,2,17,17,3103545,3,1,23,23,3103697,2,2,17,17,3103932,1,1,23,23,3104106,2,2,15,15,3104410,3,1,22,22,3104575,2,2,15,15,3104790,1,1,22,22,3105026,3,1,1,-1,3105246,1,1,1,-1,3105449,2,2,18,18,3105764,3,1,18,18,3105934,2,2,18,18,3106161,1,1,18,18,3106340,3,1,1,-1,3106604,1,1,1,-1,3106808,2,2,25,25,3107172,3,1,15,15,3107362,2,2,26,26,3107597,2,2,26,26,3108188,2,2,25,25,3108417,1,1,15,15,3108693,2,2,28,28,3109055,3,1,13,13,3109224,2,2,28,28,3109471,1,1,13,13,3109683,3,1,1,-1,3110172,1,1,1,-1,3110340,3,1,1,-1,3110839,1,1,1,-1,3111026,2,2,34,34,3111367,3,1,23,23,3111534,2,2,34,34,3111800,1,1,23,23,3111964,3,1,1,-1,3112243,1,1,1,-1,3112451,2,2,34,34,3112882,3,1,14,14,3113025,2,2,34,34,3113269,1,1,14,14,3113428,2,2,36,36,3113775,3,1,11,11,3114038,2,2,36,36,3114328,1,1,11,11,3114613,3,1,1,-1,3114921,1,1,1,-1,3115129,2,2,37,37,3115497,3,1,4,4,3115655,3,1,2,2,3115870,2,2,37,37,3116093,1,1,2,2,3116280,1,1,4,4,3116521,3,1,1,-1,3116796,1,1,1,-1,3117012,2,2,29,29,3117614,3,1,7,7,3117802,2,2,29,29,3118019,1,1,7,7,3118210,3,1,1,-1,3118454,1,1,1,-1,3118668,2,2,24,24,3119060,3,1,6,6,3119265,2,2,24,24,3119472,1,1,6,6,3119654,3,1,1,-1,3119926,1,1,1,-1,3120164,3,1,1,-1,3120529,1,1,1,-1,3120787,2,2,11,11,3121140,3,1,9,9,3121302,2,2,11,11,3121531,1,1,9,9,3121704,2,2,13,13,3122008,3,1,7,7,3122214,2,2,13,13,3122431,1,1,7,7,3122615,2,2,9,9,3123037,3,1,11,11,3123214,2,2,9,9,3123410,1,1,11,11,3123601,3,1,1,-1,3123849,1,1,1,-1,3124052,3,1,1,-1,3124428,1,1,1,-1,3124594,2,2,4,4,3124950,3,1,12,12,3125113,2,2,4,4,3125356,1,1,12,12,3125529,3,1,1,-1,3125853,1,1,1,-1,3126093,3,1,1,-1,3126575,1,1,1,-1,3126754,3,1,1,-1,3127253,1,1,1,-1,3127565,3,1,1,-1,3128059,1,1,1,-1,3128378,3,1,1,-1,3128679,1,1,1,-1,3128981,3,1,1,-1,3129490,1,1,1,-1,3129809,3,1,1,-1,3130108,1,1,1,-1,3130340,2,2,19,19,3130843,3,1,10,10,3130985,2,2,19,19,3131264,1,1,10,10,3131430,3,2,-1,-1,3131996,3,1,1,-1,3132240,1,1,1,-1,3132456,2,2,39,39,3132816,3,1,7,7,3132995,2,2,39,39,3133189,1,1,7,7,3133355,2,2,33,33,3133833,3,1,3,3,3134005,2,2,33,33,3134191,1,1,3,3,3134393,3,1,1,-1,3134743,1,1,1,-1,3134885,2,2,23,23,3135230,2,2,22,22,3135398,3,1,2,2,3135607,2,2,23,23,3135832,2,2,22,22,3136002,1,1,2,2,3136238,3,1,1,-1,3136605,1,1,1,-1,3136765,2,2,16,16,3137087,3,1,2,2,3137272,2,2,16,16,3137457,1,1,2,2,3137666,3,1,1,-1,3137942,1,1,1,-1,3138157,2,2,8,8,3138507,3,1,3,3,3138677,2,2,8,8,3138881,1,1,3,3,3139109,3,1,1,-1,3139514,1,1,1,-1,3139719,2,2,21,21,3140295,3,1,16,16,3140499,2,2,21,21,3140711,1,1,16,16,3140899,2,2,15,15,3141303,3,1,12,12,3141471,2,2,15,15,3141679,1,1,12,12,3141892,3,1,1,-1,3142236,1,1,1,-1,3142428,2,2,8,8,3142808,2,2,6,6,3143015,3,1,18,18,3143223,2,2,6,6,3143491,2,2,8,8,3144013,1,1,18,18,3144231,2,2,7,7,3144548,3,1,20,20,3144713,2,2,7,7,3144919,1,1,20,20,3145100,3,1,1,-1,3145331,1,1,1,-1,3145547,2,2,3,3,3145806,3,1,21,21,3145975,3,1,19,19,3146212,2,2,3,3,3146451,1,1,19,19,3146628,1,1,21,21,3146824,2,2,5,5,3147138,3,1,23,23,3147305,2,2,5,5,3147533,1,1,23,23,3147713,3,1,1,-1,3147973,1,1,1,-1,3148176,2,2,4,4,3148523,3,1,28,28,3148662,2,2,4,4,3148922,1,1,28,28,3149087,2,2,6,6,3149374,3,1,26,26,3149545,2,2,6,6,3149778,1,1,26,26,3149973,3,1,1,-1,3150291,1,1,1,-1,3150477,2,2,3,3,3150862,3,1,32,32,3151026,2,2,3,3,3151258,1,1,32,32,3151403,2,2,2,2,3151714,3,1,30,30,3151882,2,2,2,2,3152100,1,1,30,30,3152257,2,2,4,4,3152654,3,1,35,35,3152827,2,2,4,4,3153062,1,1,35,35,3153232,3,1,1,-1,3153511,1,1,1,-1,3153723,2,2,13,13,3154051,3,1,32,32,3154217,2,2,13,13,3154454,1,1,32,32,3154608,2,2,14,14,3154867,3,1,31,31,3155048,2,2,14,14,3155274,1,1,31,31,3155461,2,2,12,12,3155752,3,1,29,29,3155917,2,2,12,12,3156163,1,1,29,29,3156350,3,1,1,-1,3156654,1,1,1,-1,3156831,2,2,19,19,3157249,3,1,24,24,3157436,2,2,19,19,3157628,1,1,24,24,3157807,2,2,23,23,3158201,3,1,20,20,3158381,2,2,23,23,3158612,1,1,20,20,3158834,3,1,1,-1,3159124,1,1,1,-1,3159334,2,2,26,26,3159728,3,1,26,26,3159907,2,2,26,26,3160133,1,1,26,26,3160320,3,1,1,-1,3160678,1,1,1,-1,3160918,2,2,23,23,3161224,3,1,33,33,3161407,2,2,23,23,3161614,1,1,33,33,3161806,3,1,1,-1,3162045,1,1,1,-1,3162218,2,2,17,17,3162735,3,1,38,38,3162898,2,2,17,17,3163135,1,1,38,38,3163378,3,1,1,-1,3163749,1,1,1,-1,3163957,2,2,30,30,3164554,3,1,13,13,3164731,2,2,30,30,3164941,1,1,13,13,3165188,3,2,-1,-1,3165723,3,1,1,-1,3165980,1,1,1,-1,3166188,2,2,34,34,3166519,3,1,18,18,3166688,2,2,34,34,3166948,1,1,18,18,3167116,3,1,1,-1,3167494,1,1,1,-1,3167720,3,1,1,-1,3168212,1,1,1,-1,3168505,3,2,-1,-1,3169352,3,1,1,-1,3169624,1,1,1,-1,3169874,2,2,14,14,3170506,3,1,10,10,3170681,2,2,14,14,3170907,1,1,10,10,3171129,3,1,1,-1,3171489,1,1,1,-1,3171728,2,2,27,27,3172105,3,1,29,29,3172295,2,2,27,27,3172524,1,1,29,29,3172791,3,2,-1,-1,3173997,3,2,-1,-1,3174509,3,2,-1,-1,3175428,1,2,-20,-1,3176372,2,1,1,1,3176610,3,2,-20,-1,3176794,1,2,1,20,3177056,2,1,1,1,3177482,3,2,1,20,3177763,3,1,-19,-1,3179184,2,2,1,1,3179487,1,2,1,1,3179902,1,2,1,1,3180404,1,1,-19,-1,3180613,3,1,-20,-1,3180868,2,2,1,1,3181078,1,1,-20,-1,3181254,3,1,1,20,3181483,2,2,1,1,3181697,1,1,1,20,3181858,3,1,1,-1,3182540,1,1,1,-1,3182776,2,2,20,20,3183105,3,1,17,17,3183252,2,2,20,20,3183486,1,1,17,17,3183659,3,1,1,-1,3183879,1,1,1,-1,3184094,2,2,17,17,3184427,3,1,14,14,3184604,2,2,17,17,3184796,1,1,14,14,3184982,2,2,19,19,3185279,3,1,12,12,3185446,2,2,19,19,3185656,1,1,12,12,3185857,3,1,1,-1,3186091,1,1,1,-1,3186269,3,1,1,-1,3186700,1,1,1,-1,3186945,2,2,23,23,3187353,3,1,5,5,3187525,2,2,23,23,3187732,1,1,5,5,3187916,2,2,27,27,3188263,3,1,4,4,3188444,2,2,27,27,3188674,1,1,4,4,3188875,3,1,1,-1,3189150,1,1,1,-1,3189357,2,2,26,26,3189740,3,1,9,9,3189932,2,2,26,26,3190112,1,1,9,9,3190287,3,1,1,-1,3190560,1,1,1,-1,3190804,2,2,32,32,3191155,3,1,12,12,3191337,2,2,32,32,3191560,1,1,12,12,3191795,3,1,1,-1,3192075,1,1,1,-1,3192286,2,2,38,38,3192667,3,1,12,12,3192818,2,2,38,38,3193058,1,1,12,12,3193234,3,1,1,-1,3193604,1,1,1,-1,3193836,2,2,32,32,3194223,3,1,25,25,3194414,2,2,32,32,3194626,1,1,25,25,3194791,3,1,1,-1,3195060,1,1,1,-1,3195307,2,2,35,35,3195642,3,1,28,28,3195795,2,2,35,35,3196016,1,1,28,28,3196154,2,2,33,33,3196565,3,1,30,30,3196771,2,2,33,33,3197006,1,1,30,30,3197169,3,1,1,-1,3197439,1,1,1,-1,3197607,2,2,37,37,3197909,2,2,36,36,3198089,3,1,31,31,3198313,2,2,37,37,3198551,2,2,36,36,3198696,1,1,31,31,3198943,3,1,1,-1,3199291,1,1,1,-1,3199471,2,2,30,30,3199994,3,1,31,31,3200128,2,2,30,30,3200350,1,1,31,31,3200527,3,1,1,-1,3200815,1,1,1,-1,3201063,3,1,1,-1,3201661,1,1,1,-1,3201931,3,1,1,-1,3202309,1,1,1,-1,3202542,3,1,1,-1,3202998,1,1,1,-1,3203186,2,2,12,12,3203601,3,1,37,37,3203789,2,2,12,12,3204024,1,1,37,37,3204178,2,2,13,13,3204474,3,1,35,35,3204615,2,2,13,13,3204819,1,1,35,35,3204991,2,2,10,10,3205387,3,1,39,39,3205585,2,2,10,10,3205823,1,1,39,39,3205999,3,1,1,-1,3206239,1,1,1,-1,3206474,2,2,11,11,3206785,3,1,34,34,3206957,2,2,11,11,3207198,1,1,34,34,3207360,3,1,1,-1,3207661,1,1,1,-1,3207873,2,2,5,5,3208317,3,1,26,26,3208473,2,2,5,5,3208675,1,1,26,26,3208851,3,1,1,-1,3209113,1,1,1,-1,3209353,2,2,3,3,3209734,3,1,31,31,3209906,2,2,3,3,3210153,1,1,31,31,3210337,3,1,1,-1,3210846,1,1,1,-1,3211091,2,2,15,15,3211393,3,1,23,23,3211585,3,1,25,25,3211829,2,2,15,15,3212103,1,1,25,25,3212258,1,1,23,23,3212509,3,1,1,-1,3212828,1,1,1,-1,3213024,2,2,12,12,3213562,3,1,19,19,3213762,2,2,12,12,3214009,1,1,19,19,3214169,3,1,1,-1,3214678,1,1,1,-1,3214905,2,2,19,19,3215584,3,1,19,19,3215771,2,2,19,19,3215984,1,1,19,19,3216184,3,1,1,-1,3216422,1,1,1,-1,3216661,3,1,1,-1,3217109,1,1,1,-1,3217335,3,1,1,-1,3217593,1,1,1,-1,3217888,2,2,16,16,3218353,3,1,5,5,3218549,2,2,16,16,3218736,1,1,5,5,3218933,3,1,1,-1,3219266,1,1,1,-1,3219514,2,2,7,7,3219857,3,1,8,8,3220063,2,2,7,7,3220283,1,1,8,8,3220451,3,1,1,-1,3220755,1,1,1,-1,3221007,2,2,3,3,3221483,3,1,13,13,3221710,3,1,14,14,3221887,2,2,3,3,3222159,1,1,14,14,3222293,1,1,13,13,3222522,3,1,1,-1,3222756,1,1,1,-1,3222964,2,2,7,7,3223277,3,1,13,13,3223472,2,2,7,7,3223707,1,1,13,13,3223912,3,1,1,-1,3224160,1,1,1,-1,3224432,3,2,-1,-1,3225057,3,1,1,-1,3225291,1,1,1,-1,3225522,2,2,36,36,3225803,3,1,13,13,3225991,2,2,36,36,3226203,1,1,13,13,3226367,2,2,37,37,3226642,3,1,12,12,3226836,2,2,37,37,3227049,1,1,12,12,3227242,3,1,1,-1,3227552,1,1,1,-1,3227736,2,2,32,32,3228066,3,1,10,10,3228239,2,2,32,32,3228464,1,1,10,10,3228636,2,2,31,31,3228909,3,1,9,9,3229071,2,2,31,31,3229293,1,1,9,9,3229482,3,1,1,-1,3229772,1,1,1,-1,3229996,2,2,22,22,3230354,3,1,11,11,3230511,2,2,22,22,3230768,1,1,11,11,3230909,3,1,1,-1,3231178,1,1,1,-1,3231425,2,2,20,20,3231735,3,1,15,15,3231894,2,2,20,20,3232132,1,1,15,15,3232307,2,2,25,25,3232680,3,1,16,16,3232884,2,2,25,25,3233101,1,1,16,16,3233291,3,1,1,-1,3233643,1,1,1,-1,3233861,3,1,1,-1,3234246,1,1,1,-1,3234517,2,2,11,11,3235129,3,1,4,4,3235267,2,2,11,11,3235469,1,1,4,4,3235656,2,2,3,3,3236171,3,1,3,3,3236372,2,2,3,3,3236551,1,1,3,3,3236761,3,1,1,-1,3237052,1,1,1,-1,3237258,2,2,2,2,3237613,3,1,12,12,3237766,2,2,2,2,3238039,1,1,12,12,3238257,3,1,1,-1,3238757,1,1,1,-1,3238954,3,1,1,-1,3239336,1,1,1,-1,3239600,2,2,10,10,3239920,3,1,19,19,3240082,2,2,10,10,3240316,1,1,19,19,3240523,2,2,16,16,3241104,2,2,16,16,3241477,2,2,15,15,3241646,3,1,17,17,3241865,2,2,15,15,3242092,1,1,17,17,3242293,3,1,1,-1,3242615,1,1,1,-1,3242817,3,1,1,-1,3243245,1,1,1,-1,3243491,2,2,9,9,3243770,2,2,8,8,3243955,3,1,27,27,3244160,1,1,27,27,3244506,2,2,8,8,3244704,2,2,7,7,3244848,3,1,27,27,3245084,2,2,7,7,3245278,2,2,9,9,3245527,1,1,27,27,3245731,3,1,1,-1,3246131,1,1,1,-1,3246339,2,2,12,12,3246699,3,1,33,33,3246869,2,2,12,12,3247079,1,1,33,33,3247247,2,2,13,13,3247528,3,1,31,31,3247727,2,2,13,13,3247956,1,1,31,31,3248125,3,1,1,-1,3248354,1,1,1,-1,3248583,2,2,17,17,3248887,3,1,31,31,3249078,2,2,17,17,3249289,1,1,31,31,3249525,2,2,20,20,3249983,3,1,28,28,3250097,2,2,21,21,3250326,2,2,21,21,3250807,2,2,20,20,3250987,1,1,28,28,3251217,3,1,1,-1,3251448,1,1,1,-1,3251689,2,2,24,24,3252193,3,1,23,23,3252370,2,2,24,24,3252589,1,1,23,23,3252764,3,1,1,-1,3253058,1,1,1,-1,3253246,2,2,22,22,3253611,2,2,25,25,3253990,3,1,31,31,3254160,2,2,25,25,3254392,2,2,22,22,3254680,1,1,31,31,3254872,2,2,24,24,3255163,3,1,30,30,3255332,2,2,24,24,3255548,1,1,30,30,3255733,3,1,1,-1,3256002,1,1,1,-1,3256232,2,2,16,16,3256756,3,1,38,38,3256941,2,2,16,16,3257176,1,1,38,38,3257354,3,1,1,-1,3257664,1,1,1,-1,3257868,3,1,1,-1,3258297,1,1,1,-1,3258509,2,2,31,31,3258813,3,1,33,33,3259012,3,1,34,34,3259179,2,2,31,31,3259466,1,1,34,34,3259687,1,1,33,33,3259900,2,2,33,33,3260168,3,1,34,34,3260362,2,2,33,33,3260609,1,1,34,34,3260785,3,1,1,-1,3261016,1,1,1,-1,3261181,2,2,39,39,3261562,3,1,33,33,3261773,2,2,39,39,3261993,1,1,33,33,3262231,3,1,1,-1,3262875,1,1,1,-1,3263149,2,2,36,36,3263517,2,2,33,33,3263801,3,1,27,27,3263995,2,2,33,33,3264204,2,2,36,36,3264521,1,1,27,27,3264735,3,1,1,-1,3264970,1,1,1,-1,3265192,2,2,31,31,3265538,3,1,26,26,3265725,2,2,31,31,3265948,1,1,26,26,3266113,2,2,32,32,3266413,3,1,23,23,3266593,2,2,32,32,3266802,1,1,23,23,3266975,2,2,35,35,3267345,3,1,25,25,3267563,2,2,35,35,3267752,1,1,25,25,3267948,3,1,1,-1,3268213,1,1,1,-1,3268463,3,2,-1,-1,3268966,3,1,1,-1,3269203,1,1,1,-1,3269435,3,1,1,-1,3270045,1,1,1,-1,3270329,3,1,1,-1,3270724,1,1,1,-1,3270972,3,1,1,-1,3271316,1,1,1,-1,3271608,3,1,1,-1,3271967,1,1,1,-1,3272231,3,1,1,-1,3272737,1,1,1,-1,3273059,3,1,1,-1,3273522,1,1,1,-1,3273819,3,1,1,-1,3274325,1,1,1,-1,3274610,3,1,1,-1,3275011,1,1,1,-1,3275287,3,2,-1,-1,3276273,3,1,1,-1,3276609,1,1,1,-1,3276769,2,2,33,33,3277087,3,1,22,22,3277251,2,2,33,33,3277485,1,1,22,22,3277653,2,2,35,35,3277990,3,1,19,19,3278170,2,2,35,35,3278365,1,1,19,19,3278534,3,1,1,-1,3278815,1,1,1,-1,3278991,2,2,37,37,3279283,3,1,14,14,3279465,2,2,37,37,3279688,1,1,14,14,3279864,3,1,1,-1,3280196,1,1,1,-1,3280366,2,2,36,36,3280644,3,1,8,8,3280808,2,2,36,36,3281048,1,1,8,8,3281258,3,1,1,-1,3282055,1,1,1,-1,3282239,2,2,39,39,3282596,3,1,32,32,3282768,2,2,39,39,3282970,1,1,32,32,3283245,3,1,1,-1,3283684,1,1,1,-1,3283883,2,2,26,26,3284320,3,1,12,12,3284505,2,2,26,26,3284719,1,1,12,12,3284873,3,1,1,-1,3285112,1,1,1,-1,3285312,2,2,21,21,3285608,3,1,11,11,3285786,3,1,9,9,3285999,2,2,21,21,3286231,1,1,9,9,3286460,1,1,11,11,3286654,3,1,1,-1,3286971,1,1,1,-1,3287134,2,2,17,17,3287440,2,2,14,14,3287722,3,1,8,8,3287951,2,2,14,14,3288224,2,2,17,17,3288807,1,1,8,8,3289040,3,1,1,-1,3289335,1,1,1,-1,3289516,2,2,8,8,3289836,3,1,15,15,3289991,2,2,8,8,3290225,1,1,15,15,3290390,2,2,9,9,3290704,3,1,12,12,3290874,2,2,9,9,3291076,1,1,12,12,3291266,3,1,1,-1,3291615,1,1,1,-1,3291816,2,2,9,9,3292101,3,1,21,21,3292294,3,1,24,24,3292594,2,2,9,9,3292818,1,1,24,24,3292975,1,1,21,21,3293252,2,2,13,13,3293583,3,1,23,23,3293762,2,2,13,13,3294015,1,1,23,23,3294162,3,1,1,-1,3294434,1,1,1,-1,3294611,2,2,2,2,3295020,3,1,20,20,3295211,2,2,2,2,3295420,1,1,20,20,3295615,3,1,1,-1,3295976,1,1,1,-1,3296137,2,2,5,5,3296482,3,1,27,27,3296652,2,2,5,5,3296878,1,1,27,27,3297093,2,2,9,9,3297423,3,1,28,28,3297586,2,2,9,9,3297807,1,1,28,28,3298006,3,1,1,-1,3298316,1,1,1,-1,3298511,2,2,22,22,3298824,3,1,25,25,3299026,2,2,22,22,3299295,1,1,25,25,3299489,3,1,1,-1,3299828,1,1,1,-1,3299996,2,2,23,23,3300342,3,1,31,31,3300521,2,2,23,23,3300776,1,1,31,31,3300982,3,1,1,-1,3301255,1,1,1,-1,3301418,2,2,26,26,3301792,3,1,34,34,3301963,2,2,26,26,3302197,1,1,34,34,3302384,2,2,23,23,3302785,3,1,38,38,3302988,2,2,23,23,3303214,1,1,38,38,3303481,3,2,-1,-1,3305047,3,1,-20,-1,3306919,2,2,1,1,3307183,1,1,-20,-1,3307405,3,1,1,20,3307641,2,2,1,1,3307840,1,1,1,20,3308035,3,1,1,-1,3308782,1,1,1,-1,3308989,2,2,8,8,3309400,3,1,26,26,3309574,2,2,8,8,3309797,1,1,26,26,3310012,3,2,-1,-1,3311169,3,1,1,-1,3311477,1,1,1,-1,3311699,2,2,4,4,3312518,3,1,23,23,3312692,2,2,4,4,3312921,1,1,23,23,3313095,2,2,1,-1,3313375,3,1,1,-1,3313923,1,1,1,-1,3314146,2,2,23,23,3314892,3,1,27,27,3315098,2,2,23,23,3315338,1,1,27,27,3315579,3,1,1,-1,3316411,1,1,1,-1,3316682,2,2,10,10,3317225,3,1,2,2,3317401,2,2,10,10,3317656,1,1,2,2,3317837,3,2,-1,-1,3318862,3,1,1,-1,3319308,1,1,1,-1,3319567,3,1,1,-1,3320091,1,1,1,-1,3320394,3,1,1,-1,3321167,1,1,1,-1,3321395,3,2,-1,-1,3321983,3,1,1,-1,3322276,1,1,1,-1,3322514,2,2,30,30,3322923,3,1,10,10,3323087,2,2,30,30,3323324,1,1,10,10,3323507,3,1,1,-1,3323813,1,1,1,-1,3324039,3,1,1,-1,3324347,1,1,1,-1,3324592,2,2,15,15,3325031,3,1,18,18,3325193,2,2,15,15,3325429,1,1,18,18,3325705,3,2,-1,-1,3326318,3,1,1,-1,3326884,1,1,1,-1,3327124,2,2,5,5,3327605,3,1,4,4,3327748,2,2,5,5,3327974,1,1,4,4,3328251,3,1,1,-1,3329404,1,1,1,-1,3329677,3,2,-1,-1,3330326,3,1,1,-1,3330592,1,1,1,-1,3330834,3,2,-1,-1,3331423,3,1,1,-1,3331643,1,1,1,-1,3331837,2,2,5,5,3332436,3,1,15,15,3332584,2,2,5,5,3332840,1,1,15,15,3333082,2,2,1,-1,3333604,3,2,1,-1,3334788,1,2,1,-1,3336018,1,1,1,-1,3336286,3,1,1,-1,3337331,3,1,1,-1,3338021,1,1,1,-1,3338589,3,1,1,-1,3339848,1,1,1,-1,3340062,1,2,-1,-1,3340797,3,1,1,-1,3341154,1,1,1,-1,3341350,2,2,34,34,3341653,3,1,38,38,3341828,2,2,34,34,3342028,1,1,38,38,3342237,2,2,1,-1,3343115,3,1,1,-1,3344817,1,1,1,-1,3345140,1,2,1,-1,3346578,1,2,1,-1,3347652,3,1,1,-1,3348710,1,1,1,-1,3349027,2,2,-1,-1,3349565,2,2,3,3,3350165,3,1,5,5,3350327,2,2,3,3,3350559,1,1,5,5,3350749,3,1,1,-1,3351004,1,1,1,-1,3351513,3,2,-1,-1,3352324,3,1,1,-1,3352539,1,2,1,20,3353166,2,1,1,1,3353436,3,2,1,20,3353617,1,2,-20,-1,3353820,2,1,1,1,3354055,3,2,-20,-1,3354278,3,1,1,-1,3354738,1,1,1,-1,3355009,2,2,37,37,3355573,2,2,36,36,3355747,2,2,32,32,3372101,2,2,28,28,3372517,2,2,27,27,3372679,2,2,22,22,3373527,2,2,20,20,3373678,2,2,18,18,3373939,2,2,7,7,3374579,2,2,3,3,3374990,2,2,2,2,3375162,3,1,2,2,3375394,2,2,1,-1,3375610,2,2,3,3,3375940,2,2,2,2,3376115,2,2,7,7,3376558,2,2,18,18,3377127,2,2,20,20,3377403,2,2,22,22,3377717,2,2,27,27,3378212,2,2,28,28,3378383,2,2,30,30,3378729,2,2,32,32,3378994,2,2,36,36,3379447,2,2,37,37,3379624,2,2,38,38,3379855,2,2,1,-1,3380348,1,1,2,2,3380691,2,2,34,34,3381272,2,2,32,32,3381582,2,2,31,31,3381747,2,2,29,29,3382104,2,2,23,23,3382537,2,2,20,20,3383016,2,2,19,19,3383188,2,2,18,18,3383385,2,2,11,11,3383901,2,2,8,8,3384267,2,2,6,6,3384473,3,1,3,3,3384719,2,2,1,-1,3384917,2,2,6,6,3385289,2,2,7,7,3385489,2,2,8,8,3385699,2,2,9,9,3385895,2,2,11,11,3386276,2,2,18,18,3386771,2,2,19,19,3386970,2,2,20,20,3387186,2,2,25,25,3387781,2,2,23,23,3388032,2,2,29,29,3388469,2,2,31,31,3389552,2,2,33,33,3389762,2,2,33,33,3390000,2,2,34,34,3390345,2,2,33,33,3390530,2,2,32,32,3390744,2,2,36,36,3391114,2,2,38,38,3391396,2,2,39,39,3391589,2,2,1,-1,3391828,1,1,3,3,3392099,2,2,39,39,3392395,2,2,34,34,3392849,2,2,32,32,3393150,2,2,31,31,3393319,2,2,16,16,3394162,2,2,14,14,3394447,2,2,3,3,3395079,3,1,4,4,3395329,2,2,1,-1,3395572,2,2,3,3,3395849,2,2,5,5,3396278,2,2,6,6,3396478,2,2,12,12,3397064,2,2,14,14,3397445,2,2,15,15,3397641,2,2,16,16,3397873,2,2,16,16,3398140,2,2,17,17,3398532,2,2,16,16,3398716,2,2,22,22,3399127,2,2,30,30,3399685,2,2,31,31,3399927,2,2,32,32,3400179,2,2,34,34,3400606,2,2,39,39,3401014,2,2,1,-1,3401240,1,1,4,4,3401577,2,2,39,39,3401858,2,2,35,35,3402223,2,2,33,33,3402421,2,2,30,30,3402860,2,2,29,29,3403035,2,2,6,6,3404134,3,1,5,5,3404356,2,2,1,-1,3404617,2,2,6,6,3405010,2,2,8,8,3405320,2,2,11,11,3405785,2,2,20,20,3406254,2,2,23,23,3406637,2,2,25,25,3406899,2,2,27,27,3407283,2,2,28,28,3407507,2,2,30,30,3407714,2,2,30,30,3407943,2,2,29,29,3408197,2,2,30,30,3408385,2,2,33,33,3408829,2,2,34,34,3409103,2,2,35,35,3409298,2,2,37,37,3409608,2,2,39,39,3409922,2,2,1,-1,3410151,1,1,5,5,3410401,2,2,37,37,3410868,2,2,30,30,3411310,2,2,29,29,3411476,2,2,26,26,3411852,2,2,17,17,3412599,2,2,13,13,3412982,2,2,10,10,3413278,2,2,2,2,3413762,3,1,6,6,3413984,2,2,1,-1,3414229,2,2,2,2,3414495,2,2,6,6,3414871,2,2,10,10,3415278,2,2,13,13,3415586,2,2,14,14,3415787,2,2,17,17,3416161,2,2,21,21,3416533,2,2,26,26,3417017,2,2,27,27,3417190,2,2,29,29,3417560,2,2,30,30,3417754,2,2,31,31,3417963,2,2,32,32,3418146,2,2,35,35,3418849,2,2,37,37,3419087,2,2,1,-1,3419317,1,1,6,6,3419713,2,2,34,34,3420217,2,2,32,32,3420520,2,2,29,29,3420893,2,2,27,27,3421121,2,2,21,21,3421607,2,2,11,11,3422588,2,2,8,8,3422902,2,2,2,2,3423330,3,1,7,7,3423537,2,2,1,-1,3423745,2,2,2,2,3424013,2,2,8,8,3424616,2,2,11,11,3425007,2,2,11,11,3425230,2,2,12,12,3425575,2,2,11,11,3425752,2,2,16,16,3426255,2,2,21,21,3426677,2,2,22,22,3426872,2,2,27,27,3427323,2,2,28,28,3427511,2,2,29,29,3427744,2,2,32,32,3428187,2,2,33,33,3428368,2,2,34,34,3428598,2,2,36,36,3428911,2,2,38,38,3429203,2,2,39,39,3429422,2,2,1,-1,3429643,1,1,7,7,3429983,2,2,38,38,3430295,2,2,37,37,3430494,2,2,36,36,3430696,2,2,35,35,3430935,2,2,33,33,3431358,2,2,32,32,3431548,2,2,30,30,3431752,2,2,31,31,3432548,2,2,30,30,3432770,2,2,32,32,3433023,2,2,25,25,3433518,2,2,24,24,3433690,2,2,21,21,3434034,2,2,16,16,3434504,2,2,11,11,3434979,2,2,10,10,3435199,2,2,2,2,3435627,3,1,8,8,3436072,2,2,1,-1,3436337,2,2,2,2,3436675,2,2,5,5,3436985,2,2,3,3,3437225,2,2,8,8,3437633,2,2,10,10,3437933,2,2,11,11,3438149,2,2,14,14,3438636,2,2,15,15,3438741,2,2,16,16,3438953,2,2,21,21,3439365,2,2,22,22,3439606,2,2,24,24,3439925,2,2,25,25,3440129,2,2,29,29,3440554,2,2,30,30,3440846,2,2,31,31,3441053,2,2,32,32,3441282,2,2,33,33,3441492,2,2,34,34,3441763,2,2,36,36,3442014,2,2,36,36,3442245,2,2,35,35,3442579,2,2,36,36,3442783,2,2,37,37,3443054,2,2,38,38,3443249,2,2,1,-1,3443464,1,1,8,8,3443742,2,2,29,29,3444539,2,2,26,26,3444880,2,2,23,23,3445261,2,2,17,17,3445773,2,2,15,15,3446096,2,2,14,14,3446251,2,2,10,10,3446692,2,2,5,5,3447123,2,2,2,2,3447454,3,1,9,9,3447663,2,2,1,-1,3447898,2,2,2,2,3448134,2,2,4,4,3448513,2,2,5,5,3448718,2,2,10,10,3449221,2,2,12,12,3449459,2,2,14,14,3449804,2,2,15,15,3450011,2,2,16,16,3450244,2,2,17,17,3450454,2,2,22,22,3450953,2,2,23,23,3451171,2,2,24,24,3451406,2,2,26,26,3451865,2,2,29,29,3452222,2,2,31,31,3452481,2,2,33,33,3452903,2,2,37,37,3453321,2,2,39,39,3453815,2,2,1,-1,3454074,1,1,9,9,3454646,2,2,37,37,3454895,2,2,34,34,3455280,2,2,31,31,3455743,2,2,30,30,3455928,2,2,28,28,3456418,2,2,27,27,3456598,2,2,24,24,3457040,2,2,16,16,3457743,3,2,7,7,3458354,3,1,10,10,3458454,2,2,1,-1,3458827,2,2,1,-1,3459266,1,1,10,10,3459679,1,2,7,7,3460027,3,2,7,7,3460301,3,2,7,7,3460455,3,1,10,10,3460778,2,2,1,-1,3461026,2,2,7,7,3461302,2,2,5,5,3461649,2,2,2,2,3462013,2,2,16,16,3462551,2,2,24,24,3463064,2,2,27,27,3463418,2,2,28,28,3463604,2,2,30,30,3463943,2,2,31,31,3464123,2,2,34,34,3464498,2,2,35,35,3464690,2,2,37,37,3465075,2,2,1,-1,3465539,1,1,10,10,3466453,2,2,38,38,3466835,2,2,35,35,3467152,2,2,33,33,3467417,2,2,29,29,3467851,2,2,28,28,3468049,2,2,27,27,3468254,2,2,25,25,3468597,2,2,26,26,3468981,2,2,22,22,3469490,2,2,18,18,3470018,2,2,17,17,3470204,2,2,6,6,3470980,3,1,11,11,3471216,2,2,1,-1,3471447,2,2,6,6,3471763,2,2,7,7,3472037,2,2,3,3,3472522,2,2,11,11,3472951,2,2,14,14,3473288,2,2,16,16,3473728,2,2,17,17,3473916,2,2,18,18,3474142,2,2,19,19,3474382,2,2,20,20,3474614,2,2,21,21,3474890,2,2,22,22,3475143,2,2,24,24,3475495,2,2,25,25,3475700,2,2,26,26,3475948,2,2,27,27,3476181,2,2,28,28,3476422,2,2,29,29,3476632,2,2,33,33,3477126,2,2,35,35,3477479,2,2,36,36,3477705,2,2,37,37,3477906,2,2,38,38,3478113,2,2,1,-1,3478349,1,1,11,11,3478661,2,2,37,37,3478969,2,2,36,36,3479155,2,2,35,35,3479368,2,2,32,32,3479841,2,2,29,29,3480196,2,2,26,26,3480563,2,2,25,25,3480770,2,2,19,19,3481242,2,2,5,5,3481945,3,1,12,12,3482147,2,2,1,-1,3482383,2,2,5,5,3482672,2,2,9,9,3483260,2,2,10,10,3483478,2,2,11,11,3483682,2,2,17,17,3484185,2,2,19,19,3484518,2,2,21,21,3484877,2,2,22,22,3485108,2,2,25,25,3485542,2,2,26,26,3485753,2,2,29,29,3486122,2,2,32,32,3486471,2,2,35,35,3487047,2,2,36,36,3487259,2,2,37,37,3487485,2,2,39,39,3487869,2,2,1,-1,3488301,1,1,12,12,3489670,2,2,37,37,3490097,2,2,32,32,3490715,2,2,29,29,3491119,2,2,28,28,3491268,2,2,26,26,3491572,2,2,22,22,3491998,2,2,20,20,3492236,2,2,18,18,3492543,2,2,12,12,3493061,2,2,9,9,3493388,2,2,4,4,3493793,3,1,13,13,3494025,2,2,1,-1,3494260,2,2,4,4,3494577,2,2,5,5,3494818,2,2,3,3,3495043,2,2,8,8,3495423,2,2,9,9,3495605,2,2,11,11,3495958,2,2,12,12,3496147,2,2,13,13,3496347,2,2,15,15,3496753,2,2,17,17,3497085,2,2,18,18,3497287,2,2,20,20,3497660,2,2,22,22,3497987,2,2,23,23,3498207,2,2,26,26,3498655,2,2,28,28,3499050,2,2,30,30,3499259,2,2,30,30,3499524,2,2,31,31,3499778,2,2,32,32,3500028,2,2,30,30,3500485,2,2,29,29,3500674,2,2,36,36,3501331,2,2,37,37,3501529,2,2,1,-1,3501769,1,1,13,13,3502078,2,2,35,35,3502473,2,2,34,34,3502642,2,2,32,32,3503018,2,2,30,30,3503238,2,2,25,25,3503773,2,2,14,14,3504383,2,2,13,13,3504558,2,2,9,9,3504965,2,2,7,7,3505304,2,2,6,6,3505495,2,2,5,5,3505704,3,1,14,14,3505950,2,2,1,-1,3506192,2,2,6,6,3506519,2,2,5,5,3506717,2,2,3,3,3507059,2,2,7,7,3507435,2,2,9,9,3507809,2,2,13,13,3508427,2,2,14,14,3508651,2,2,16,16,3508992,2,2,18,18,3509284,2,2,25,25,3509778,2,2,28,28,3510181,2,2,30,30,3510528,2,2,32,32,3510790,2,2,34,34,3511272,2,2,35,35,3511476,2,2,1,-1,3512057,1,1,14,14,3512517,2,2,37,37,3512824,2,2,34,34,3513242,2,2,33,33,3513375,2,2,30,30,3513810,2,2,22,22,3514248,2,2,19,19,3514584,2,2,18,18,3514767,2,2,12,12,3515231,2,2,10,10,3515618,2,2,9,9,3515775,2,2,8,8,3515982,2,2,3,3,3516451,3,1,15,15,3516661,2,2,1,-1,3516908,2,2,3,3,3517176,2,2,4,4,3517439,2,2,8,8,3517815,2,2,9,9,3518012,2,2,10,10,3518201,2,2,12,12,3518559,2,2,13,13,3518771,2,2,14,14,3518979,2,2,18,18,3519450,2,2,19,19,3519649,2,2,21,21,3519970,2,2,22,22,3520188,2,2,24,24,3520529,2,2,28,28,3520969,2,2,30,30,3521320,2,2,31,31,3521516,2,2,33,33,3521819,2,2,34,34,3522023,2,2,37,37,3522461,2,2,1,-1,3523016,1,1,15,15,3523521,2,2,33,33,3523996,2,2,31,31,3524397,2,2,27,27,3524738,2,2,24,24,3525121,2,2,22,22,3525378,2,2,20,20,3525832,2,2,14,14,3526290,2,2,13,13,3526449,2,2,10,10,3527247,2,2,8,8,3527483,3,1,16,16,3527748,2,2,1,-1,3527979,2,2,8,8,3528487,2,2,9,9,3528686,2,2,10,10,3528903,2,2,3,3,3529310,2,2,13,13,3529771,2,2,14,14,3529983,2,2,16,16,3530323,2,2,19,19,3530694,2,2,20,20,3530902,2,2,22,22,3531266,2,2,24,24,3531694,2,2,25,25,3531898,2,2,26,26,3532135,2,2,27,27,3532368,2,2,28,28,3532591,2,2,31,31,3533044,2,2,33,33,3533364,2,2,38,38,3533959,2,2,1,-1,3534503,1,1,16,16,3535015,2,2,39,39,3535381,2,2,33,33,3535756,2,2,12,12,3536746,2,2,5,5,3537203,3,1,17,17,3537413,2,2,1,-1,3537647,2,2,5,5,3537925,2,2,6,6,3538173,2,2,9,9,3538547,2,2,10,10,3538737,2,2,11,11,3538952,2,2,12,12,3539146,2,2,14,14,3539513,2,2,18,18,3539919,2,2,22,22,3540362,2,2,28,28,3540867,2,2,33,33,3541273,2,2,39,39,3541691,2,2,1,-1,3541924,1,1,17,17,3542226,2,2,29,29,3542733,2,2,28,28,3542920,2,2,22,22,3543420,2,2,21,21,3543754,2,2,19,19,3544361,2,2,12,12,3544586,2,2,7,7,3544958,2,2,6,6,3545129,3,1,18,18,3545389,2,2,1,-1,3545651,2,2,6,6,3546028,2,2,10,10,3546396,2,2,11,11,3546613,2,2,12,12,3546818,2,2,16,16,3547319,2,2,19,19,3547652,2,2,21,21,3548123,2,2,22,22,3548336,2,2,23,23,3548534,2,2,25,25,3548952,2,2,28,28,3549299,2,2,29,29,3549531,2,2,31,31,3549789,2,2,1,-1,3550096,1,1,18,18,3550398,2,2,38,38,3551017,2,2,37,37,3551220,2,2,34,34,3551591,2,2,32,32,3551877,2,2,31,31,3552072,2,2,24,24,3552549,2,2,20,20,3553025,2,2,16,16,3553391,2,2,6,6,3554055,2,2,4,4,3554247,2,2,4,4,3554445,2,2,5,5,3554749,2,2,4,4,3554919,3,1,19,19,3555163,2,2,1,-1,3555395,2,2,4,4,3555684,2,2,5,5,3555885,2,2,6,6,3556108,2,2,3,3,3556455,2,2,10,10,3556933,2,2,15,15,3557362,2,2,17,17,3557574,2,2,16,16,3557960,2,2,19,19,3558283,2,2,20,20,3558472,2,2,24,24,3559104,2,2,25,25,3559311,2,2,26,26,3559538,2,2,27,27,3559746,2,2,31,31,3560193,2,2,32,32,3560436,2,2,34,34,3560772,2,2,37,37,3561129,2,2,38,38,3561343,2,2,39,39,3561552,2,2,1,-1,3561782,1,1,19,19,3562089,2,2,38,38,3562372,2,2,33,33,3562916,2,2,29,29,3563277,2,2,18,18,3563849,2,2,16,16,3564135,2,2,7,7,3564696,2,2,6,6,3564866,2,2,5,5,3565071,3,1,20,20,3565322,2,2,1,-1,3565557,2,2,6,6,3565982,2,2,5,5,3566185,2,2,3,3,3566490,2,2,7,7,3566880,2,2,10,10,3567201,2,2,14,14,3567591,2,2,15,15,3567800,2,2,16,16,3568003,2,2,18,18,3568341,2,2,21,21,3568695,2,2,24,24,3569144,2,2,28,28,3569650,2,2,29,29,3569833,2,2,30,30,3570054,2,2,31,31,3570280,2,2,33,33,3570670,2,2,36,36,3571012,2,2,38,38,3571318,2,2,1,-1,3571551,1,1,20,20,3571808,2,2,31,31,3572535,2,2,29,29,3572793,2,2,19,19,3573383,2,2,16,16,3573795,2,2,9,9,3574335,2,2,8,8,3574507,2,2,4,4,3574891,3,1,21,21,3575114,2,2,1,-1,3575349,2,2,4,4,3575628,2,2,5,5,3575830,2,2,6,6,3576049,2,2,8,8,3576414,2,2,9,9,3576652,2,2,14,14,3577103,2,2,16,16,3577363,2,2,17,17,3577569,2,2,19,19,3577904,2,2,20,20,3578134,2,2,24,24,3578591,2,2,28,28,3579090,2,2,29,29,3579338,2,2,30,30,3579611,2,2,32,32,3579843,2,2,39,39,3580558,2,2,32,32,3580970,2,2,31,31,3581141,2,2,1,-1,3581325,1,1,21,21,3581605,2,2,36,36,3582107,2,2,19,19,3582667,2,2,15,15,3583026,2,2,10,10,3583398,2,2,6,6,3583754,3,1,22,22,3583953,2,2,1,-1,3584156,2,2,6,6,3584480,2,2,5,5,3584759,2,2,4,4,3584960,2,2,2,2,3585294,2,2,13,13,3586024,2,2,10,10,3586317,2,2,15,15,3586721,2,2,16,16,3586910,2,2,17,17,3587232,2,2,19,19,3587440,2,2,18,18,3587850,2,2,26,26,3588328,2,2,29,29,3588696,2,2,32,32,3589113,2,2,33,33,3589287,2,2,34,34,3589508,2,2,36,36,3589721,2,2,36,36,3589950,2,2,34,34,3590281,2,2,35,35,3590622,2,2,36,36,3590838,2,2,38,38,3591198,2,2,39,39,3591371,2,2,1,-1,3591619,1,1,22,22,3591913,2,2,38,38,3592171,2,2,37,37,3592367,2,2,34,34,3592728,2,2,33,33,3592931,2,2,31,31,3593253,2,2,26,26,3593730,2,2,22,22,3594073,2,2,22,22,3594536,3,1,23,23,3595498,2,2,1,-1,3595753,2,2,5,5,3596302,2,2,7,7,3596591,2,2,12,12,3597121,2,2,17,17,3597636,2,2,19,19,3598073,2,2,21,21,3598472,2,2,23,23,3598676,2,2,23,23,3598918,2,2,22,22,3599165,2,2,23,23,3599336,2,2,25,25,3599767,2,2,26,26,3599979,2,2,27,27,3600201,2,2,28,28,3600412,2,2,29,29,3600645,2,2,31,31,3601168,2,2,33,33,3601503,2,2,34,34,3601712,2,2,37,37,3602132,2,2,38,38,3602305,2,2,1,-1,3602542,1,1,23,23,3602816,2,2,39,39,3603187,2,2,34,34,3603628,2,2,32,32,3603864,2,2,29,29,3604209,2,2,26,26,3604544,2,2,21,21,3604993,2,2,18,18,3605412,2,2,15,15,3605664,2,2,8,8,3606178,3,1,24,24,3606414,2,2,1,-1,3606630,2,2,8,8,3606972,2,2,7,7,3607192,2,2,5,5,3607516,2,2,2,2,3607917,2,2,10,10,3608384,2,2,15,15,3608741,2,2,11,11,3609140,2,2,18,18,3609606,2,2,21,21,3609954,2,2,22,22,3610211,2,2,26,26,3610634,2,2,28,28,3610920,2,2,29,29,3611144,2,2,32,32,3611565,2,2,33,33,3611773,2,2,34,34,3611995,2,2,36,36,3612392,2,2,37,37,3612670,2,2,38,38,3612878,2,2,39,39,3613097,2,2,1,-1,3613513,1,1,24,24,3614119,2,2,39,39,3614391,2,2,37,37,3614739,2,2,36,36,3614963,2,2,35,35,3615151,2,2,34,34,3615354,2,2,30,30,3615869,2,2,24,24,3616301,2,2,20,20,3616693,2,2,17,17,3617062,2,2,13,13,3617550,2,2,5,5,3617921,2,2,4,4,3618123,3,1,25,25,3618326,2,2,1,-1,3618537,2,2,5,5,3618800,2,2,4,4,3619012,2,2,9,9,3619480,2,2,13,13,3619962,2,2,17,17,3620360,2,2,20,20,3620899,2,2,24,24,3621312,2,2,25,25,3621551,2,2,30,30,3622165,2,2,34,34,3622638,2,2,35,35,3622840,2,2,36,36,3623070,2,2,37,37,3623286,2,2,39,39,3623597,2,2,1,-1,3623806,1,1,25,25,3624213,2,2,39,39,3624454,2,2,38,38,3624602,2,2,35,35,3625003,2,2,34,34,3625210,2,2,33,33,3625526,2,2,29,29,3626237,2,2,28,28,3626299,2,2,21,21,3626867,2,2,20,20,3627050,2,2,18,18,3627486,2,2,17,17,3627687,2,2,16,16,3627902,2,2,15,15,3628108,2,2,14,14,3628311,2,2,11,11,3628718,2,2,9,9,3629021,2,2,5,5,3629423,3,1,26,26,3629637,2,2,1,-1,3629871,2,2,5,5,3630163,2,2,9,9,3630748,2,2,11,11,3630992,2,2,14,14,3631523,2,2,15,15,3631725,2,2,16,16,3631970,2,2,17,17,3632218,2,2,18,18,3632441,2,2,20,20,3632851,2,2,21,21,3633034,2,2,28,28,3633462,2,2,30,30,3633701,2,2,29,29,3634324,2,2,30,30,3634528,2,2,33,33,3634875,2,2,34,34,3635125,2,2,35,35,3635339,2,2,38,38,3635801,2,2,39,39,3636007,2,2,1,-1,3636243,1,1,26,26,3636522,2,2,38,38,3636790,2,2,37,37,3636998,2,2,31,31,3637380,2,2,29,29,3637699,2,2,23,23,3638244,2,2,20,20,3638563,2,2,17,17,3638973,2,2,15,15,3639263,2,2,11,11,3639740,2,2,4,4,3640193,3,1,27,27,3640370,2,2,1,-1,3640601,2,2,4,4,3640861,2,2,11,11,3641604,2,2,14,14,3641960,2,2,15,15,3642169,2,2,16,16,3642419,2,2,17,17,3642626,2,2,20,20,3643134,2,2,23,23,3643486,2,2,24,24,3643679,2,2,26,26,3644049,2,2,29,29,3644420,2,2,30,30,3644623,2,2,31,31,3644849,2,2,32,32,3645075,2,2,37,37,3645615,2,2,38,38,3645814,2,2,1,-1,3646035,1,1,27,27,3646343,2,2,38,38,3646631,2,2,34,34,3647046,2,2,32,32,3647274,2,2,16,16,3648530,3,1,28,28,3648770,2,2,1,-1,3649020,2,2,16,16,3649317,2,2,12,12,3649787,2,2,10,10,3650005,2,2,7,7,3650346,2,2,17,17,3650887,2,2,19,19,3651159,2,2,23,23,3651598,2,2,29,29,3652044,2,2,31,31,3652304,2,2,32,32,3652503,2,2,34,34,3652845,2,2,36,36,3653109,2,2,38,38,3653355,2,2,1,-1,3653592,1,1,28,28,3653858,2,2,37,37,3654210,2,2,27,27,3654850,2,2,14,14,3655530,2,2,12,12,3655760,3,1,29,29,3656280,2,2,1,-1,3656723,2,2,5,5,3657166,2,2,6,6,3657404,2,2,7,7,3657601,2,2,11,11,3658012,2,2,12,12,3658210,2,2,14,14,3658548,2,2,16,16,3658889,2,2,23,23,3659462,2,2,24,24,3659679,2,2,25,25,3659891,2,2,27,27,3660245,2,2,29,29,3660520,2,2,36,36,3661029,2,2,39,39,3661309,2,2,39,39,3661385,2,2,37,37,3661809,2,2,36,36,3662011,2,2,39,39,3662350,2,2,1,-1,3662557,1,1,29,29,3662803,2,2,39,39,3663150,2,2,38,38,3663332,2,2,37,37,3663505,2,2,35,35,3663860,2,2,34,34,3664052,2,2,32,32,3664387,2,2,30,30,3664780,2,2,29,29,3664949,2,2,21,21,3665509,2,2,19,19,3665761,2,2,15,15,3666272,2,2,12,12,3666585,2,2,8,8,3667010,3,1,30,30,3667266,2,2,1,-1,3667454,2,2,8,8,3667797,2,2,7,7,3667963,2,2,4,4,3668272,2,2,2,2,3668519,2,2,10,10,3668978,2,2,11,11,3669159,2,2,12,12,3669389,2,2,15,15,3669733,2,2,17,17,3669998,2,2,19,19,3670339,2,2,21,21,3670690,2,2,22,22,3670910,2,2,24,24,3671229,2,2,25,25,3671451,2,2,29,29,3671890,2,2,30,30,3672097,2,2,32,32,3672416,2,2,34,34,3672718,2,2,35,35,3672946,2,2,37,37,3673269,2,2,38,38,3673492,2,2,39,39,3673704,2,2,1,-1,3673925,1,1,30,30,3674217,2,2,39,39,3674479,2,2,36,36,3674721,2,2,37,37,3675394,2,2,29,29,3675943,2,2,27,27,3676144,2,2,15,15,3677023,2,2,8,8,3677563,2,2,7,7,3677732,2,2,3,3,3678106,2,2,2,2,3678281,3,1,31,31,3678493,2,2,1,-1,3678755,2,2,2,2,3678954,2,2,3,3,3679238,2,2,5,5,3679578,2,2,7,7,3679921,2,2,8,8,3680095,2,2,13,13,3680594,2,2,15,15,3680839,2,2,19,19,3681242,2,2,21,21,3681505,2,2,24,24,3681932,2,2,26,26,3682266,2,2,27,27,3682470,2,2,29,29,3682810,2,2,37,37,3683346,2,2,39,39,3683613,2,2,1,-1,3683846,1,1,31,31,3684121,2,2,38,38,3684412,2,2,34,34,3684869,2,2,32,32,3685089,2,2,24,24,3685722,2,2,21,21,3686071,2,2,17,17,3686757,2,2,15,15,3687625,2,2,13,13,3687830,2,2,10,10,3688443,2,2,7,7,3688776,3,1,32,32,3688973,2,2,1,-1,3689182,2,2,7,7,3689552,2,2,6,6,3689800,2,2,2,2,3690143,2,2,10,10,3690605,2,2,13,13,3690989,2,2,15,15,3691285,2,2,16,16,3691466,2,2,17,17,3691659,2,2,21,21,3692231,2,2,23,23,3692582,2,2,24,24,3693067,2,2,30,30,3693598,2,2,32,32,3693890,2,2,34,34,3694164,2,2,38,38,3694598,2,2,1,-1,3695071,1,1,32,32,3695417,2,2,29,29,3696028,2,2,28,28,3696197,2,2,26,26,3696533,2,2,22,22,3696946,2,2,18,18,3697524,2,2,14,14,3698001,2,2,11,11,3698468,2,2,9,9,3698644,2,2,4,4,3699081,2,2,3,3,3699230,3,1,33,33,3699454,2,2,1,-1,3699696,2,2,3,3,3699913,2,2,4,4,3700172,2,2,2,2,3700404,2,2,9,9,3700849,2,2,10,10,3701046,2,2,11,11,3701251,2,2,14,14,3701798,2,2,18,18,3702241,2,2,21,21,3702655,2,2,22,22,3702832,2,2,25,25,3703299,2,2,26,26,3703527,2,2,27,27,3703765,2,2,28,28,3704014,2,2,29,29,3704238,2,2,32,32,3704616,2,2,33,33,3704816,2,2,36,36,3705193,2,2,1,-1,3705404,1,1,33,33,3705676,2,2,39,39,3706222,2,2,34,34,3706922,2,2,32,32,3707127,2,2,29,29,3707610,2,2,21,21,3708082,2,2,17,17,3708593,2,2,16,16,3708753,2,2,15,15,3708957,3,1,34,34,3709475,2,2,1,-1,3709698,2,2,5,5,3710358,2,2,15,15,3710959,2,2,16,16,3711182,2,2,17,17,3711379,2,2,21,21,3711836,2,2,22,22,3712022,2,2,25,25,3712431,2,2,27,27,3712924,2,2,29,29,3712997,2,2,32,32,3713406,2,2,34,34,3713711,2,2,35,35,3713908,2,2,37,37,3714242,2,2,39,39,3714516,1,2,37,37,3714991,1,1,35,35,3715097,3,1,35,35,3715708,1,2,37,37,3716425,2,2,1,-1,3716651,1,1,34,34,3717431,2,2,33,33,3718087,2,2,30,30,3718432,2,2,25,25,3719031,2,2,23,23,3719365,2,2,22,22,3719544,2,2,7,7,3720287,2,2,13,13,3720795,3,1,35,35,3720966,2,2,1,-1,3721202,2,2,13,13,3721553,2,2,10,10,3721991,2,2,9,9,3722172,2,2,8,8,3722371,2,2,8,8,3722560,2,2,2,2,3723035,2,2,7,7,3723845,2,2,8,8,3724096,2,2,20,20,3724756,2,2,22,22,3725073,2,2,23,23,3725251,2,2,25,25,3725608,2,2,26,26,3725791,2,2,29,29,3726164,2,2,30,30,3726372,2,2,32,32,3726735,2,2,33,33,3726945,2,2,34,34,3727177,2,2,35,35,3727383,2,2,37,37,3727818,2,2,1,-1,3728067,1,1,35,35,3728356,2,2,37,37,3728699,2,2,36,36,3728878,2,2,34,34,3729187,2,2,29,29,3729629,2,2,22,22,3730095,2,2,10,10,3730642,2,2,6,6,3731006,2,2,5,5,3731172,3,1,36,36,3731394,2,2,1,-1,3731651,2,2,6,6,3731920,2,2,3,3,3732310,2,2,10,10,3732832,2,2,11,11,3733012,2,2,14,14,3733446,2,2,15,15,3733649,2,2,18,18,3734004,2,2,19,19,3734226,2,2,20,20,3734437,2,2,22,22,3734807,2,2,24,24,3735067,2,2,27,27,3735478,2,2,28,28,3735695,2,2,29,29,3735933,2,2,33,33,3736360,2,2,34,34,3736580,2,2,36,36,3736890,2,2,37,37,3737114,2,2,1,-1,3737315,1,1,36,36,3737618,2,2,36,36,3737906,2,2,35,35,3738098,2,2,28,28,3738508,2,2,21,21,3738975,2,2,20,20,3739190,2,2,23,23,3739662,2,2,13,13,3740174,2,2,10,10,3740578,2,2,9,9,3740810,2,2,8,8,3740999,2,2,3,3,3741434,2,2,3,3,3741636,2,2,4,4,3741900,2,2,3,3,3742082,3,1,37,37,3742380,2,2,1,-1,3742612,2,2,4,4,3742861,2,2,3,3,3743017,2,2,8,8,3743426,2,2,9,9,3743635,2,2,10,10,3743842,2,2,12,12,3744187,2,2,13,13,3744408,2,2,14,14,3744623,2,2,15,15,3744814,2,2,17,17,3745294,2,2,18,18,3745512,2,2,20,20,3745934,2,2,21,21,3746141,2,2,23,23,3746481,2,2,28,28,3746933,2,2,34,34,3747562,2,2,35,35,3747751,2,2,36,36,3747970,2,2,1,-1,3748222,1,1,37,37,3748483,2,2,31,31,3749041,2,2,29,29,3749314,2,2,27,27,3749539,2,2,24,24,3750040,2,2,19,19,3750430,2,2,9,9,3750925,3,1,38,38,3751127,2,2,1,-1,3751337,2,2,9,9,3751646,2,2,7,7,3751994,2,2,6,6,3752189,2,2,12,12,3752628,2,2,13,13,3752844,2,2,16,16,3753247,2,2,17,17,3753442,2,2,19,19,3753759,2,2,20,20,3753991,2,2,24,24,3754364,2,2,27,27,3754837,2,2,28,28,3755046,2,2,29,29,3755274,2,2,31,31,3755687,2,2,38,38,3756140,2,2,39,39,3756365,2,2,1,-1,3756610,1,1,38,38,3757193,2,2,27,27,3757793,2,2,23,23,3758141,2,2,18,18,3758560,2,2,13,13,3758967,2,2,10,10,3759303,2,2,6,6,3759735,2,2,5,5,3759885,2,2,4,4,3760087,3,1,39,39,3760360,2,2,1,-1,3760600,2,2,6,6,3761177,2,2,8,8,3761858,2,2,10,10,3762061,2,2,13,13,3762484,2,2,14,14,3762673,2,2,18,18,3763158,2,2,21,21,3763483,2,2,23,23,3763733,2,2,25,25,3763997,2,2,27,27,3764262,2,2,31,31,3764699,2,2,32,32,3764915,2,2,36,36,3765466,2,2,1,-1,3765696,1,1,39,39,3765993,2,2,39,39,3766345,2,2,38,38,3766517,2,2,37,37,3766735,2,2,35,35,3767048,2,2,33,33,3767657,2,2,32,32,3767806,2,2,27,27,3768266,2,2,23,23,3768949,2,2,21,21,3769186,2,2,19,19,3769569,2,2,18,18,3769778,2,2,17,17,3769964,2,2,16,16,3770169,2,2,15,15,3770408,2,2,14,14,3770644,2,2,13,13,3770858,2,2,12,12,3771088,2,2,8,8,3771508,2,2,7,7,3771750,2,2,6,6,3772014,2,2,5,5,3772198,2,2,4,4,3772421,2,2,2,2,3772763,3,2,-1,-1,3773539,3,1,1,-1,3773853,1,1,1,-1,3774044,2,2,37,37,3774366,3,1,16,16,3774568,3,1,17,17,3775012,2,2,37,37,3775285,1,1,17,17,3775405,1,1,16,16,3775621,3,1,1,-1,3775886,1,1,1,-1,3776083,2,2,38,38,3776375,3,1,19,19,3776614,2,2,38,38,3776753,1,1,19,19,3776967,3,1,1,-1,3777277,1,1,1,-1,3777458,2,2,32,32,3777825,3,1,19,19,3778075,2,2,32,32,3778231,1,1,19,19,3778388,2,2,34,34,3778703,2,2,31,31,3778962,3,1,18,18,3779266,2,2,31,31,3779498,2,2,33,33,3779811,2,2,34,34,3780318,2,2,33,33,3780481,1,1,18,18,3780731,3,1,1,-1,3781034,1,1,1,-1,3781246,2,2,34,34,3781595,2,2,32,32,3781847,3,1,13,13,3782057,2,2,32,32,3782265,2,2,34,34,3782525,1,1,13,13,3782764,3,1,1,-1,3783026,1,1,1,-1,3783240,2,2,34,34,3783554,3,1,10,10,3783719,2,2,34,34,3783967,1,1,10,10,3784154,3,1,1,-1,3784417,1,1,1,-1,3784645,2,2,31,31,3785000,3,1,6,6,3785177,2,2,31,31,3785392,1,1,6,6,3785551,2,2,32,32,3785835,3,1,4,4,3786020,2,2,32,32,3786203,1,1,4,4,3786404,3,1,1,-1,3786649,1,1,1,-1,3786853,2,2,29,29,3787189,3,1,3,3,3787387,2,2,29,29,3787586,1,1,3,3,3787790,3,1,1,-1,3788040,1,1,1,-1,3788262,2,2,23,23,3788569,3,1,5,5,3788736,2,2,23,23,3788951,1,1,5,5,3789120,3,1,1,-1,3789430,1,1,1,-1,3789597,2,2,21,21,3789944,3,1,8,8,3790100,2,2,21,21,3790300,1,1,8,8,3790473,2,2,23,23,3790752,3,1,9,9,3790924,2,2,23,23,3791166,1,1,9,9,3791340,3,1,1,-1,3791576,1,1,1,-1,3791795,2,2,22,22,3792087,2,2,24,24,3792489,3,1,11,11,3792665,2,2,24,24,3792888,2,2,22,22,3793094,1,1,11,11,3793306,3,1,1,-1,3793574,1,1,1,-1,3793814,2,2,28,28,3794125,3,1,11,11,3794291,2,2,28,28,3794531,1,1,11,11,3794683,2,2,29,29,3794961,3,1,10,10,3795193,1,1,10,10,3795645,3,1,9,9,3795837,2,2,29,29,3796052,1,1,9,9,3796245,3,1,1,-1,3796468,1,1,1,-1,3796687,2,2,30,30,3797132,3,1,10,10,3797334,2,2,30,30,3797547,1,1,10,10,3797734,3,1,1,-1,3798060,1,1,1,-1,3798279,2,2,29,29,3798619,3,1,19,19,3798794,2,2,29,29,3799020,1,1,19,19,3799208,3,1,1,-1,3799469,1,1,1,-1,3799712,2,2,26,26,3800229,3,1,19,19,3800394,2,2,26,26,3800622,1,1,19,19,3800794,3,1,1,-1,3801040,1,1,1,-1,3801256,2,2,22,22,3801552,3,1,17,17,3801741,2,2,22,22,3801959,1,1,17,17,3802145,3,1,1,-1,3802435,1,1,1,-1,3802655,2,2,20,20,3802932,3,1,19,19,3803115,3,1,21,21,3803346,2,2,20,20,3803593,1,1,21,21,3803745,1,1,19,19,3803954,3,1,1,-1,3804278,1,1,1,-1,3804459,2,2,16,16,3804798,3,1,20,20,3804976,2,2,16,16,3805219,1,1,20,20,3805389,3,1,1,-1,3805698,1,1,1,-1,3805896,3,1,1,-1,3806396,1,1,1,-1,3806608,2,2,19,19,3806936,3,1,28,28,3807111,2,2,19,19,3807343,1,1,28,28,3807499,2,2,23,23,3807852,3,1,27,27,3808025,2,2,23,23,3808228,1,1,27,27,3808411,3,1,1,-1,3808674,1,1,1,-1,3808885,2,2,15,15,3809209,3,1,26,26,3809394,2,2,15,15,3809622,1,1,26,26,3809767,2,2,13,13,3810095,3,1,25,25,3810261,2,2,13,13,3810465,1,1,25,25,3810640,3,1,1,-1,3810918,1,1,1,-1,3811111,2,2,5,5,3811452,3,1,25,25,3811625,2,2,5,5,3811865,1,1,25,25,3812034,2,2,7,7,3812302,3,1,24,24,3812469,2,2,7,7,3812705,1,1,24,24,3812877,3,1,1,-1,3813084,1,1,1,-1,3813321,3,1,1,-1,3813935,1,1,1,-1,3814148,2,2,5,5,3814455,3,1,19,19,3814620,2,2,5,5,3814846,1,1,19,19,3815018,2,2,9,9,3815361,3,1,20,20,3815535,2,2,9,9,3815739,1,1,20,20,3815928,3,1,1,-1,3816164,1,1,1,-1,3816377,2,2,14,14,3816729,3,1,21,21,3816896,2,2,14,14,3817132,1,1,21,21,3817296,3,1,1,-1,3817562,1,1,1,-1,3817801,3,1,1,-1,3818139,1,1,1,-1,3818354,3,1,1,-1,3818952,1,1,1,-1,3819224,3,1,1,-1,3819669,1,1,1,-1,3819916,2,2,8,8,3820254,2,2,9,9,3820443,3,1,13,13,3820663,2,2,9,9,3820890,2,2,8,8,3821077,1,1,13,13,3821331,3,1,1,-1,3821542,1,1,1,-1,3821777,2,2,7,7,3822093,3,1,10,10,3822280,3,1,11,11,3822457,2,2,7,7,3822734,1,1,11,11,3822864,1,1,10,10,3823062,3,1,1,-1,3823374,1,1,1,-1,3823623,2,2,3,3,3823927,3,1,15,15,3824121,2,2,3,3,3824323,1,1,15,15,3824492,3,1,1,-1,3824763,1,1,1,-1,3824941,2,2,2,2,3825278,3,1,10,10,3825457,2,2,2,2,3825656,1,1,10,10,3825824,2,2,4,4,3826155,3,1,8,8,3826333,2,2,4,4,3826540,1,1,8,8,3826702,3,1,1,-1,3826970,1,1,1,-1,3827189,2,2,5,5,3827551,2,2,5,5,3827902,2,2,4,4,3828060,3,1,4,4,3828299,2,2,4,4,3828517,1,1,4,4,3828703,3,1,1,-1,3828921,1,1,1,-1,3829141,3,1,1,-1,3829555,1,1,1,-1,3829801,2,2,13,13,3830099,3,1,6,6,3830260,2,2,13,13,3830509,1,1,6,6,3830665,3,1,1,-1,3830919,1,1,1,-1,3831157,2,2,14,14,3831501,3,1,8,8,3831667,2,2,14,14,3831894,1,1,8,8,3832071,2,2,10,10,3832472,3,1,8,8,3832636,2,2,10,10,3832872,1,1,8,8,3833048,3,1,1,-1,3833351,1,1,1,-1,3833573,2,2,17,17,3833943,3,1,9,9,3834101,2,2,17,17,3834340,1,1,9,9,3834492,3,1,1,-1,3834761,1,1,1,-1,3835018,2,2,16,16,3835334,3,1,11,11,3835502,2,2,16,16,3835736,1,1,11,11,3835932,3,1,1,-1,3836190,1,1,1,-1,3836441,3,1,1,-1,3836762,1,1,1,-1,3836992,3,1,1,-1,3837430,1,1,1,-1,3837703,3,1,1,-1,3838039,1,1,1,-1,3838316,3,1,1,-1,3838892,1,1,1,-1,3839134,3,1,1,-1,3839538,1,1,1,-1,3839810,2,2,38,38,3840280,3,1,26,26,3840482,3,1,27,27,3840673,2,2,38,38,3840909,1,1,27,27,3841061,1,1,26,26,3841268,3,1,1,-1,3841474,1,1,1,-1,3841707,2,2,36,36,3842030,3,1,28,28,3842185,2,2,36,36,3842425,1,1,28,28,3842591,2,2,39,39,3842916,3,1,25,25,3843101,2,2,39,39,3843304,1,1,25,25,3843479,3,1,1,-1,3843696,1,1,1,-1,3843929,2,2,35,35,3844230,3,1,26,26,3844392,2,2,35,35,3844609,1,1,26,26,3844775,3,1,1,-1,3845109,1,1,1,-1,3845380,2,2,34,34,3845701,3,1,35,35,3845863,2,2,34,34,3846096,1,1,35,35,3846265,2,2,32,32,3846636,3,1,33,33,3846776,2,2,32,32,3847010,1,1,33,33,3847145,3,1,1,-1,3847398,1,1,1,-1,3847591,2,2,32,32,3848057,3,1,30,30,3848230,2,2,32,32,3848468,1,1,30,30,3848633,2,2,31,31,3848946,3,1,27,27,3849107,2,2,31,31,3849317,1,1,27,27,3849514,3,1,1,-1,3849853,1,1,1,-1,3850104,2,2,28,28,3850409,3,1,33,33,3850565,2,2,28,28,3850804,1,1,33,33,3850961,2,2,29,29,3851213,3,1,32,32,3851380,2,2,29,29,3851622,1,1,32,32,3851797,3,1,1,-1,3852101,1,1,1,-1,3852303,2,2,26,26,3852676,3,1,39,39,3852894,1,1,39,39,3853217,2,2,27,27,3853461,2,2,26,26,3853628,3,1,39,39,3853834,2,2,27,27,3854049,1,1,39,39,3854211,3,1,1,-1,3854457,1,1,1,-1,3854686,2,2,28,28,3854983,3,1,36,36,3855154,2,2,28,28,3855387,1,1,36,36,3855556,3,1,1,-1,3855935,1,1,1,-1,3856184,2,2,23,23,3856526,3,1,35,35,3856697,2,2,23,23,3856923,1,1,35,35,3857072,2,2,22,22,3857368,3,1,33,33,3857534,2,2,22,22,3857749,1,1,33,33,3857910,2,2,23,23,3858226,3,1,32,32,3858447,2,2,23,23,3858670,1,1,32,32,3858892,3,1,1,-1,3859165,1,1,1,-1,3859376,2,2,21,21,3859677,3,1,34,34,3859846,2,2,21,21,3860083,1,1,34,34,3860254,3,1,1,-1,3860503,1,1,1,-1,3860706,2,2,20,20,3861036,3,1,37,37,3861197,2,2,20,20,3861421,1,1,37,37,3861606,3,1,1,-1,3861858,1,1,1,-1,3862104,2,2,23,23,3862424,3,1,39,39,3862594,2,2,23,23,3862826,1,1,39,39,3863004,3,1,1,-1,3863316,1,1,1,-1,3863530,2,2,16,16,3864017,3,1,34,34,3864207,2,2,16,16,3864429,1,1,34,34,3864614,2,2,17,17,3864977,3,1,38,38,3865172,2,2,17,17,3865408,1,1,38,38,3865585,3,1,1,-1,3865988,1,1,1,-1,3866164,2,2,6,6,3866596,3,1,36,36,3866829,2,2,6,6,3867045,1,1,36,36,3867257,3,1,1,-1,3867515,1,1,1,-1,3867701,2,2,5,5,3868030,3,1,39,39,3868170,2,2,5,5,3868432,1,1,39,39,3868603,3,1,1,-1,3868883,1,1,1,-1,3869103,2,2,4,4,3869419,3,1,33,33,3869589,2,2,4,4,3869860,1,1,33,33,3870001,2,2,2,2,3870367,3,1,31,31,3870548,2,2,2,2,3870775,1,1,31,31,3870945,3,1,1,-1,3871244,1,1,1,-1,3871458,2,2,3,3,3871862,3,1,26,26,3872038,2,2,3,3,3872245,1,1,26,26,3872436,3,1,1,-1,3872670,1,1,1,-1,3872951,3,1,1,-1,3873338,1,1,1,-1,3873601,3,1,1,-1,3874133,1,1,1,-1,3874407,3,2,-1,-1,3874984,3,1,1,-1,3875252,1,1,1,-1,3875493,2,2,38,38,3875803,3,1,19,19,3875985,2,2,38,38,3876178,1,1,19,19,3876356,2,2,39,39,3876615,3,1,20,20,3876763,2,2,39,39,3877020,1,1,20,20,3877208,3,1,1,-1,3877494,1,1,1,-1,3877715,2,2,31,31,3878071,3,1,18,18,3878252,2,2,31,31,3878477,1,1,18,18,3878659,2,2,32,32,3878902,3,1,19,19,3879068,2,2,32,32,3879300,1,1,19,19,3879515,3,1,1,-1,3879787,1,1,1,-1,3879987,2,2,29,29,3880329,3,1,20,20,3880520,2,2,29,29,3880751,1,1,20,20,3880958,3,1,1,-1,3881283,1,1,1,-1,3881512,2,2,37,37,3881859,3,1,27,27,3882023,2,2,37,37,3882291,1,1,27,27,3882454,2,2,39,39,3882737,3,1,25,25,3882933,2,2,39,39,3883141,1,1,25,25,3883341,3,1,1,-1,3883643,1,1,1,-1,3883847,2,2,37,37,3884155,3,1,29,29,3884329,2,2,37,37,3884562,1,1,29,29,3884737,2,2,38,38,3885042,3,1,32,32,3885229,2,2,38,38,3885464,1,1,32,32,3885633,3,1,1,-1,3885941,1,1,1,-1,3886143,2,2,29,29,3886649,3,1,30,30,3886805,2,2,29,29,3887003,1,1,30,30,3887191,3,1,1,-1,3887474,1,1,1,-1,3887673,3,1,1,-1,3888216,1,1,1,-1,3888453,2,2,27,27,3889110,3,1,39,39,3889307,2,2,27,27,3889598,1,1,39,39,3889786,3,1,1,-1,3890147,1,1,1,-1,3890346,2,2,22,22,3890686,3,1,33,33,3890886,2,2,22,22,3891101,1,1,33,33,3891311,3,1,1,-1,3891581,1,1,1,-1,3891806,2,2,21,21,3892103,3,1,26,26,3892275,2,2,21,21,3892494,1,1,26,26,3892654,2,2,20,20,3892992,3,1,22,22,3893194,2,2,20,20,3893400,1,1,22,22,3893599,3,1,1,-1,3893873,1,1,1,-1,3894081,2,2,15,15,3894466,3,1,26,26,3894632,2,2,15,15,3894837,1,1,26,26,3895054,3,1,1,-1,3895298,1,1,1,-1,3895482,3,1,1,-1,3896020,1,1,1,-1,3896257,3,1,1,-1,3896529,1,1,1,-1,3896799,2,2,15,15,3897301,3,1,37,37,3897476,2,2,15,15,3897695,1,1,37,37,3897853,2,2,8,8,3898342,3,1,39,39,3898533,2,2,8,8,3898768,1,1,39,39,3898933,2,2,6,6,3899253,3,1,38,38,3899467,2,2,6,6,3899686,1,1,38,38,3899888,3,1,1,-1,3900234,1,1,1,-1,3900468,2,2,7,7,3900884,3,1,25,25,3901237,2,2,7,7,3901697,1,1,25,25,3901850,3,1,1,-1,3902057,1,1,1,-1,3902260,2,2,5,5,3902567,3,1,25,25,3902739,3,1,26,26,3902917,3,1,23,23,3903206,2,2,5,5,3903448,1,1,23,23,3903615,1,1,25,25,3903870,1,1,26,26,3904058,3,1,1,-1,3904328,1,1,1,-1,3904535,2,2,4,4,3904872,3,1,20,20,3905043,2,2,4,4,3905260,1,1,20,20,3905426,3,1,1,-1,3905688,1,1,1,-1,3906102,2,2,9,9,3906468,3,1,15,15,3906632,2,2,9,9,3906859,1,1,15,15,3907027,2,2,10,10,3907265,3,1,17,17,3907452,2,2,10,10,3907686,1,1,17,17,3907859,3,1,1,-1,3908128,1,1,1,-1,3908368,2,2,7,7,3908677,3,1,14,14,3908840,2,2,7,7,3909057,1,1,14,14,3909247,3,1,1,-1,3909540,1,1,1,-1,3909742,2,2,7,7,3910152,3,1,10,10,3910317,2,2,7,7,3910542,1,1,10,10,3910741,3,1,1,-1,3910967,1,1,1,-1,3911220,3,1,1,-1,3911537,1,1,1,-1,3911819,2,2,6,6,3912213,2,2,3,3,3912497,3,1,5,5,3912670,2,2,3,3,3912895,2,2,7,7,3913232,2,2,7,7,3913572,2,2,6,6,3913754,1,1,5,5,3913978,3,1,1,-1,3914194,1,1,1,-1,3914451,2,2,8,8,3914800,3,1,3,3,3914969,2,2,8,8,3915179,1,1,3,3,3915374,3,1,1,-1,3915603,1,1,1,-1,3915842,3,1,1,-1,3916358,1,1,1,-1,3916599,3,1,1,-1,3917050,1,1,1,-1,3917339,3,1,1,-1,3917652,1,1,1,-1,3917946,2,2,13,13,3918298,3,1,10,10,3918473,2,2,13,13,3918697,1,1,10,10,3918864,3,1,1,-1,3919162,1,1,1,-1,3919404,2,2,14,14,3919804,3,1,15,15,3919974,2,2,14,14,3920175,1,1,15,15,3920358,3,1,1,-1,3920675,1,1,1,-1,3920894,2,2,21,21,3921549,3,1,17,17,3921718,2,2,21,21,3921941,1,1,17,17,3922118,3,1,1,-1,3922623,1,1,1,-1,3922833,2,2,21,21,3923310,2,2,22,22,3923543,3,1,8,8,3923848,3,1,7,7,3924085,2,2,22,22,3924324,2,2,21,21,3924468,1,1,8,8,3924832,1,1,7,7,3925021,3,1,1,-1,3925282,1,1,1,-1,3925510,2,2,22,22,3925835,3,1,12,12,3926032,2,2,22,22,3926234,1,1,12,12,3926429,3,1,1,-1,3926716,1,1,1,-1,3926908,2,2,24,24,3927285,3,1,5,5,3927418,2,2,24,24,3927655,1,1,5,5,3927858,3,1,1,-1,3928097,1,1,1,-1,3928314,3,1,1,-1,3928761,1,1,1,-1,3928984,2,2,29,29,3929388,3,1,7,7,3929571,3,1,9,9,3929800,2,2,29,29,3930029,1,1,9,9,3930171,1,1,7,7,3930476,3,1,1,-1,3930747,1,1,1,-1,3930953,3,1,1,-1,3931401,1,1,1,-1,3931640,3,2,-1,-1,3932269,3,1,1,-1,3932576,1,1,1,-1,3932796,3,1,1,-1,3933265,1,1,1,-1,3933501,2,2,34,34,3933839,3,1,14,14,3934025,2,2,34,34,3934249,1,1,14,14,3934422,3,1,1,-1,3934686,1,1,1,-1,3934894,2,2,32,32,3935204,3,1,9,9,3935352,3,1,8,8,3935539,2,2,32,32,3935790,1,1,9,9,3935948,1,1,8,8,3936124,2,2,34,34,3936433,3,1,9,9,3936620,2,2,34,34,3936838,1,1,9,9,3937009,3,1,1,-1,3937264,1,1,1,-1,3937466,2,2,30,30,3937773,3,1,8,8,3937950,2,2,30,30,3938161,1,1,8,8,3938326,2,2,29,29,3938604,3,1,7,7,3938756,2,2,29,29,3938982,1,1,7,7,3939167,2,2,33,33,3939472,3,1,6,6,3939652,2,2,33,33,3939853,1,1,6,6,3940035,3,1,1,-1,3940323,1,1,1,-1,3940544,2,2,27,27,3940917,3,1,12,12,3941122,2,2,27,27,3941315,1,1,12,12,3941486,2,2,25,25,3941765,3,1,11,11,3941928,2,2,25,25,3942173,1,1,11,11,3942348,3,1,1,-1,3942633,1,1,1,-1,3942901,2,2,22,22,3943254,3,1,2,2,3943421,2,2,22,22,3943645,1,1,2,2,3943834,3,1,1,-1,3944117,1,1,1,-1,3944322,2,2,27,27,3944621,3,1,2,2,3944820,2,2,27,27,3945059,1,1,2,2,3945263,3,1,1,-1,3945598,1,1,1,-1,3945864,2,2,5,5,3946241,2,2,2,2,3946521,3,1,2,2,3946722,2,2,2,2,3946923,2,2,5,5,3947211,1,1,2,2,3947436,3,1,1,-1,3947704,1,1,1,-1,3947938,2,2,8,8,3948252,3,1,6,6,3948391,2,2,8,8,3948630,1,1,6,6,3948798,2,2,12,12,3949148,2,2,13,13,3949511,2,2,12,12,3949678,3,1,4,4,3949907,2,2,13,13,3950152,1,1,4,4,3950371,3,1,1,-1,3950624,1,1,1,-1,3950845,2,2,13,13,3951144,3,1,9,9,3951319,2,2,13,13,3951523,1,1,9,9,3951684,2,2,14,14,3952045,3,1,12,12,3952198,2,2,14,14,3952424,1,1,12,12,3952590,3,1,1,-1,3952838,1,1,1,-1,3953098,2,2,7,7,3953388,3,1,13,13,3953580,2,2,7,7,3953778,1,1,13,13,3953957,2,2,10,10,3954258,3,1,11,11,3954431,2,2,10,10,3954664,1,1,11,11,3954924,3,1,1,-1,3955241,1,1,1,-1,3955444,2,2,2,2,3955858,3,1,11,11,3956040,2,2,2,2,3956265,1,1,11,11,3956457,3,1,1,-1,3956803,1,1,1,-1,3957013,2,2,8,8,3957401,3,1,16,16,3957576,2,2,8,8,3957793,1,1,16,16,3957989,3,1,1,-1,3958254,1,1,1,-1,3958448,2,2,17,17,3958770,3,1,19,19,3958941,2,2,17,17,3959176,1,1,19,19,3959345,3,1,1,-1,3959710,1,1,1,-1,3959900,2,2,18,18,3960230,3,1,24,24,3960393,2,2,18,18,3960607,1,1,24,24,3960794,2,2,21,21,3961056,3,1,26,26,3961289,1,1,26,26,3961595,2,2,21,21,3961816,2,2,20,20,3961971,3,1,26,26,3962265,2,2,20,20,3962512,1,1,26,26,3962686,3,1,1,-1,3962983,1,1,1,-1,3963162,2,2,13,13,3963483,3,1,25,25,3963659,2,2,13,13,3963868,1,1,25,25,3964098,3,1,1,-1,3964436,1,1,1,-1,3964688,2,2,2,2,3965151,3,1,30,30,3965321,2,2,2,2,3965527,1,1,30,30,3965711,3,1,1,-1,3966007,1,1,1,-1,3966205,2,2,3,3,3966516,3,1,36,36,3966683,2,2,3,3,3966916,1,1,36,36,3967159,2,2,4,4,3967432,3,1,39,39,3967645,2,2,4,4,3967911,1,1,39,39,3968083,3,1,1,-1,3968375,1,1,1,-1,3968531,3,1,1,-1,3968987,1,1,1,-1,3969204,2,2,24,24,3969569,3,1,36,36,3969767,2,2,24,24,3969974,1,1,36,36,3970150,3,1,1,-1,3970427,1,1,1,-1,3970630,2,2,28,28,3970956,3,1,33,33,3971123,2,2,28,28,3971367,1,1,33,33,3971503,2,2,30,30,3971820,2,2,29,29,3971972,3,1,30,30,3972201,2,2,30,30,3972440,2,2,29,29,3972650,1,1,30,30,3972891,3,1,1,-1,3973235,1,1,1,-1,3973456,2,2,32,32,3973776,3,1,32,32,3973949,2,2,32,32,3974180,1,1,32,32,3974344,3,1,1,-1,3974623,1,1,1,-1,3974827,2,2,37,37,3975126,3,1,29,29,3975290,2,2,37,37,3975496,1,1,29,29,3975696,3,1,1,-1,3976079,1,1,1,-1,3976275,2,2,29,29,3976651,3,1,20,20,3976833,2,2,29,29,3977065,1,1,20,20,3977242,3,1,1,-1,3977706,1,1,1,-1,3977913,3,1,1,-1,3978362,1,1,1,-1,3978632,3,2,-1,-1,3979031,3,1,1,-1,3979275,1,1,1,-1,3979504,2,2,38,38,3979814,3,1,13,13,3980009,2,2,38,38,3980223,1,1,13,13,3980399,2,2,39,39,3980698,3,1,10,10,3980862,2,2,39,39,3981114,1,1,10,10,3981305,3,1,1,-1,3981643,1,1,1,-1,3981848,2,2,28,28,3982192,3,1,3,3,3982373,2,2,28,28,3982614,1,1,3,3,3982804,3,1,1,-1,3983507,1,1,1,-1,3983759,3,1,1,-1,3984396,1,1,1,-1,3984628,3,1,1,-1,3985028,1,1,1,-1,3985276,2,2,23,23,3985593,3,1,36,36,3985761,2,2,23,23,3985970,1,1,36,36,3986160,3,1,1,-1,3986785,1,1,1,-1,3986993,3,1,1,-1,3987394,1,1,1,-1,3987621,3,1,1,-1,3988243,1,1,1,-1,3988505,2,2,7,7,3988962,3,1,9,9,3989096,2,2,7,7,3989331,1,1,9,9,3989520,3,2,-1,-1,3990244,3,1,1,-1,3990649,1,1,1,-1,3990869,2,2,27,27,3991315,3,1,2,2,3991529,2,2,27,27,3991718,1,1,2,2,3991927,3,1,1,-1,3992465,1,1,1,-1,3992712,3,1,1,-1,3993221,1,1,1,-1,3993419,2,2,28,28,3993731,3,1,38,38,3993903,2,2,28,28,3994159,1,1,38,38,3994315,3,1,1,-1,3994710,1,1,1,-1,3994907,3,1,1,-1,3995458,1,1,1,-1,3995696,3,2,-1,-1,3996928,3,1,1,-1,3997317,1,1,1,-1,3997531,2,2,14,14,3997937,3,1,29,29,3998111,2,2,14,14,3998315,1,1,29,29,3998504,2,2,13,13,3998960,3,1,37,37,3999155,2,2,13,13,3999392,1,1,37,37,3999569,2,2,1,-1,4000584,3,1,1,-1,4001169,1,1,1,-1,4001330,3,1,1,-1,4001863,1,1,1,-1,4002110,3,1,1,-1,4002612,1,1,1,-1,4002830,3,1,1,-1,4003163,1,1,1,-1,4003406,3,1,1,-1,4003782,1,1,1,-1,4004086,3,2,-1,-1,4004722,3,1,1,-1,4005024,1,1,1,-1,4005226,2,2,37,37,4005569,3,1,36,36,4005734,3,1,34,34,4005942,2,2,37,37,4006142,1,1,34,34,4006323,1,1,36,36,4006584,3,1,1,-1,4006832,1,1,1,-1,4007013,2,2,33,33,4007334,3,1,33,33,4007508,2,2,33,33,4007742,1,1,33,33,4007933,3,1,1,-1,4008225,1,1,1,-1,4008424,2,2,27,27,4008788,3,1,34,34,4008957,2,2,27,27,4009187,1,1,34,34,4009338,2,2,29,29,4009640,3,1,33,33,4009812,2,2,29,29,4010044,1,1,33,33,4010203,2,2,26,26,4010593,3,1,35,35,4010780,2,2,26,26,4011017,1,1,35,35,4011200,3,1,1,-1,4011462,1,1,1,-1,4011666,3,1,1,-1,4012107,1,1,1,-1,4012357,2,2,23,23,4012689,3,1,37,37,4012870,2,2,23,23,4013069,1,1,37,37,4013296,3,1,1,-1,4013637,1,1,1,-1,4013837,2,2,24,24,4014175,3,1,32,32,4014354,2,2,24,24,4014558,1,1,32,32,4014769,3,1,1,-1,4015230,1,1,1,-1,4015436,2,2,24,24,4015850,3,1,27,27,4016039,2,2,24,24,4016260,1,1,27,27,4016429,3,1,1,-1,4016684,1,1,1,-1,4016893,2,2,27,27,4017266,3,1,23,23,4017438,2,2,27,27,4017650,1,1,23,23,4017827,2,2,28,28,4018112,3,1,26,26,4018293,2,2,28,28,4018502,1,1,26,26,4018685,3,1,1,-1,4018932,1,1,1,-1,4019137,2,2,29,29,4019611,3,1,21,21,4019787,2,2,29,29,4020010,1,1,21,21,4020226,2,2,31,31,4020470,3,1,23,23,4020659,2,2,31,31,4020879,1,1,23,23,4021042,3,1,1,-1,4021283,1,1,1,-1,4021472,3,1,1,-1,4021885,1,1,1,-1,4022090,3,1,1,-1,4022567,1,1,1,-1,4022829,2,2,38,38,4023178,3,1,18,18,4023348,2,2,38,38,4023581,1,1,18,18,4023752,3,1,1,-1,4024051,1,1,1,-1,4024272,2,2,28,28,4024627,2,2,30,30,4024829,3,1,15,15,4025032,2,2,30,30,4025239,2,2,28,28,4025457,1,1,15,15,4025674,3,1,1,-1,4025951,1,1,1,-1,4026191,3,1,1,-1,4026713,1,1,1,-1,4026974,2,2,31,31,4027407,3,1,9,9,4027576,2,2,31,31,4027788,1,1,9,9,4027970,3,1,1,-1,4028230,1,1,1,-1,4028429,3,1,1,-1,4028849,1,1,1,-1,4029105,2,2,34,34,4029413,3,1,4,4,4029582,3,1,5,5,4029751,2,2,34,34,4029993,1,1,5,5,4030158,1,1,4,4,4030346,2,2,36,36,4030685,3,1,2,2,4030850,2,2,36,36,4031072,1,1,2,2,4031228,2,2,39,39,4031566,3,1,4,4,4031719,2,2,39,39,4031962,1,1,4,4,4032161,3,1,1,-1,4032445,1,1,1,-1,4032676,2,2,27,27,4032977,3,1,5,5,4033152,2,2,27,27,4033382,1,1,5,5,4033536,2,2,28,28,4033828,3,1,2,2,4033980,2,2,28,28,4034181,1,1,2,2,4034382,3,1,1,-1,4034617,1,1,1,-1,4034809,3,1,1,-1,4035329,1,1,1,-1,4035574,2,2,27,27,4035924,3,1,8,8,4036113,2,2,27,27,4036337,1,1,8,8,4036534,3,1,1,-1,4036826,1,1,1,-1,4037081,2,2,24,24,4037371,3,1,14,14,4037575,2,2,24,24,4037791,1,1,14,14,4037938,2,2,22,22,4038249,3,1,13,13,4038509,2,2,22,22,4038649,1,1,13,13,4038847,3,1,1,-1,4039115,1,1,1,-1,4039356,2,2,20,20,4039931,3,1,14,14,4040099,2,2,20,20,4040338,1,1,14,14,4040511,3,1,1,-1,4040747,1,1,1,-1,4040984,3,1,1,-1,4041358,1,1,1,-1,4041601,3,1,1,-1,4041901,1,1,1,-1,4042170,2,2,19,19,4042488,3,1,5,5,4042643,2,2,19,19,4042876,1,1,5,5,4043050,3,1,1,-1,4043319,1,1,1,-1,4043568,2,2,14,14,4043934,2,2,17,17,4044344,3,1,4,4,4044563,2,2,17,17,4044768,2,2,14,14,4045044,1,1,4,4,4045257,3,1,1,-1,4045530,1,1,1,-1,4045726,2,2,12,12,4046195,3,1,3,3,4046368,2,2,12,12,4046602,1,1,3,3,4046788,3,1,1,-1,4047055,1,1,1,-1,4047249,3,1,1,-1,4047664,1,1,1,-1,4047892,3,1,1,-1,4048399,1,1,1,-1,4048638,2,2,5,5,4048995,3,1,10,10,4049156,2,2,5,5,4049363,1,1,10,10,4049510,3,1,1,-1,4049762,1,1,1,-1,4049974,3,1,1,-1,4050404,1,1,1,-1,4050618,3,1,1,-1,4051036,1,1,1,-1,4051343,3,1,1,-1,4051639,1,1,1,-1,4051871,3,1,1,-1,4052250,1,1,1,-1,4052486,2,2,16,16,4052837,3,1,18,18,4053005,2,2,16,16,4053246,1,1,18,18,4053431,3,1,1,-1,4053776,1,1,1,-1,4053975,2,2,7,7,4054288,2,2,6,6,4054452,3,1,18,18,4054663,2,2,7,7,4054904,2,2,6,6,4055039,1,1,18,18,4055310,3,1,1,-1,4055541,1,1,1,-1,4055736,2,2,6,6,4056051,3,1,22,22,4056287,3,1,23,23,4056431,2,2,6,6,4056695,1,1,23,23,4056864,1,1,22,22,4057044,3,1,1,-1,4057307,1,1,1,-1,4057544,2,2,8,8,4057848,3,1,24,24,4057998,2,2,8,8,4058289,1,1,24,24,4058431,3,1,1,-1,4058734,1,1,1,-1,4058945,3,1,1,-1,4059446,1,1,1,-1,4059708,2,2,4,4,4060001,3,1,30,30,4060163,2,2,4,4,4060406,1,1,30,30,4060568,2,2,6,6,4060841,3,1,32,32,4061044,2,2,6,6,4061269,1,1,32,32,4061457,3,1,1,-1,4061717,1,1,1,-1,4061919,2,2,4,4,4062232,3,1,37,37,4062394,2,2,4,4,4062643,1,1,37,37,4062783,2,2,5,5,4063069,3,1,36,36,4063221,2,2,5,5,4063456,1,1,36,36,4063621,3,1,1,-1,4063867,1,1,1,-1,4064129,3,1,1,-1,4064507,1,1,1,-1,4064736,2,2,10,10,4065154,3,1,38,38,4065323,2,2,10,10,4065544,1,1,38,38,4065713,2,2,9,9,4066018,3,1,35,35,4066196,2,2,9,9,4066409,1,1,35,35,4066574,3,1,1,-1,4066810,1,1,1,-1,4067045,2,2,10,10,4067445,3,1,33,33,4067616,2,2,10,10,4067853,1,1,33,33,4068035,3,1,1,-1,4068272,1,1,1,-1,4068533,2,2,15,15,4068840,2,2,17,17,4069108,3,1,34,34,4069295,2,2,17,17,4069523,2,2,15,15,4069739,1,1,34,34,4069957,2,2,14,14,4070230,3,1,33,33,4070409,2,2,14,14,4070634,1,1,33,33,4070810,3,1,1,-1,4071082,1,1,1,-1,4071316,2,2,17,17,4071729,3,1,37,37,4071897,2,2,17,17,4072109,1,1,37,37,4072277,3,1,1,-1,4072570,1,1,1,-1,4072773,3,1,1,-1,4073186,1,1,1,-1,4073449,3,1,1,-1,4074068,1,1,1,-1,4074358,3,1,1,-1,4074746,1,1,1,-1,4075070,2,2,23,23,4075513,3,1,23,23,4075709,2,2,23,23,4075907,1,1,23,23,4076091,3,1,1,-1,4076307,1,1,1,-1,4076581,3,1,1,-1,4077063,1,1,1,-1,4077309,3,1,1,-1,4077617,1,1,1,-1,4077914,3,2,-1,-1,4078522,3,1,1,-1,4078789,1,1,1,-1,4079019,2,2,35,35,4079301,3,1,16,16,4079468,2,2,35,35,4079683,1,1,16,16,4079849,2,2,38,38,4080143,2,2,37,37,4080292,3,1,15,15,4080522,2,2,38,38,4080755,2,2,37,37,4080922,1,1,15,15,4081165,3,1,1,-1,4081530,1,1,1,-1,4081743,2,2,33,33,4082155,2,2,31,31,4082347,3,1,15,15,4082565,2,2,31,31,4082789,2,2,33,33,4083070,1,1,15,15,4083299,3,1,1,-1,4083597,1,1,1,-1,4083845,2,2,34,34,4084228,3,1,22,22,4084383,2,2,34,34,4084605,1,1,22,22,4084772,2,2,37,37,4085075,3,1,23,23,4085274,2,2,37,37,4085484,1,1,23,23,4085671,3,1,1,-1,4085910,1,1,1,-1,4086126,3,1,1,-1,4086522,1,1,1,-1,4086757,2,2,28,28,4087155,3,1,13,13,4087301,2,2,28,28,4087503,1,1,13,13,4087673,3,1,1,-1,4087914,1,1,1,-1,4088132,2,2,26,26,4088535,2,2,29,29,4088841,3,1,8,8,4089103,2,2,29,29,4089318,2,2,27,27,4089590,2,2,27,27,4089889,2,2,26,26,4090087,1,1,8,8,4090308,3,1,1,-1,4090566,1,1,1,-1,4090803,2,2,35,35,4091238,3,1,6,6,4091416,2,2,35,35,4091622,1,1,6,6,4091790,2,2,34,34,4092025,3,1,7,7,4092192,2,2,34,34,4092424,1,1,7,7,4092596,3,1,1,-1,4092850,1,1,1,-1,4093042,3,1,1,-1,4093455,1,1,1,-1,4093687,2,2,30,30,4094026,3,1,4,4,4094192,2,2,30,30,4094434,1,1,4,4,4094603,3,1,1,-1,4094880,1,1,1,-1,4095150,2,2,25,25,4095413,3,1,5,5,4095588,3,1,6,6,4095791,2,2,25,25,4096024,1,1,6,6,4096189,1,1,5,5,4096398,3,1,1,-1,4096697,1,1,1,-1,4096936,2,2,21,21,4097245,3,1,9,9,4097448,2,2,21,21,4097662,1,1,9,9,4097856,3,1,1,-1,4098125,1,1,1,-1,4098330,2,2,20,20,4098700,3,1,3,3,4098874,2,2,20,20,4099082,1,1,3,3,4099256,2,2,21,21,4099477,3,1,2,2,4099658,2,2,21,21,4099864,1,1,2,2,4100058,3,1,1,-1,4100346,1,1,1,-1,4100566,2,2,15,15,4100857,3,1,7,7,4101012,2,2,15,15,4101246,1,1,7,7,4101427,3,1,1,-1,4101664,1,1,1,-1,4101926,2,2,12,12,4102268,3,1,4,4,4102435,2,2,12,12,4102641,1,1,4,4,4102815,2,2,11,11,4103085,3,1,5,5,4103237,2,2,11,11,4103468,1,1,5,5,4103660,3,1,1,-1,4103909,1,1,1,-1,4104108,2,2,10,10,4104459,3,1,6,6,4104625,2,2,10,10,4104849,1,1,6,6,4105003,2,2,11,11,4105260,3,1,7,7,4105441,2,2,11,11,4105673,1,1,7,7,4105853,3,1,1,-1,4106134,1,1,1,-1,4106319,2,2,7,7,4106653,3,1,2,2,4106846,2,2,7,7,4107060,1,1,2,2,4107265,3,1,1,-1,4107576,1,1,1,-1,4107763,2,2,3,3,4108086,3,1,4,4,4108275,2,2,3,3,4108478,1,1,4,4,4108686,3,1,1,-1,4108954,1,1,1,-1,4109159,2,2,2,2,4109481,3,1,9,9,4109671,2,2,2,2,4109896,1,1,9,9,4110095,3,1,1,-1,4110348,1,1,1,-1,4110585,2,2,6,6,4110977,3,1,12,12,4111189,2,2,6,6,4111392,1,1,12,12,4111556,3,1,1,-1,4111825,1,1,1,-1,4112049,3,1,1,-1,4112481,1,1,1,-1,4112682,2,2,6,6,4113147,3,1,20,20,4113360,3,1,21,21,4113556,2,2,6,6,4113856,1,1,21,21,4114028,1,1,20,20,4114240,3,1,20,20,4114995,2,2,6,6,4115189,1,1,20,20,4115350,3,1,21,21,4115530,2,2,6,6,4115758,1,1,21,21,4115926,3,1,1,-1,4116232,1,1,1,-1,4116411,2,2,4,4,4116785,3,1,25,25,4116978,2,2,4,4,4117182,1,1,25,25,4117373,3,1,1,-1,4117766,1,1,1,-1,4118015,2,2,6,6,4118371,3,1,39,39,4118537,2,2,6,6,4118764,1,1,39,39,4118931,2,2,2,2,4119270,2,2,3,3,4119661,2,2,2,2,4119811,3,1,37,37,4120022,2,2,3,3,4120244,1,1,37,37,4120409,2,2,7,7,4120764,3,1,35,35,4120990,2,2,7,7,4121176,1,1,35,35,4121353,3,1,1,-1,4121596,1,1,1,-1,4121797,3,1,1,-1,4122267,1,1,1,-1,4122511,2,2,14,14,4122823,3,1,37,37,4122999,2,2,14,14,4123247,1,1,37,37,4123432,3,1,1,-1,4123714,1,1,1,-1,4123940,2,2,16,16,4124270,3,1,32,32,4124427,2,2,16,16,4124643,1,1,32,32,4124816,3,1,1,-1,4125029,1,1,1,-1,4125259,3,1,1,-1,4125665,1,1,1,-1,4125899,3,1,1,-1,4126377,1,1,1,-1,4126645,2,2,19,19,4127001,3,1,22,22,4127160,2,2,19,19,4127392,1,1,22,22,4127576,3,1,1,-1,4127814,1,1,1,-1,4128054,2,2,22,22,4128720,3,1,16,16,4128872,2,2,22,22,4129097,1,1,16,16,4129282,3,1,1,-1,4129501,1,1,1,-1,4129721,2,2,24,24,4130349,3,1,12,12,4130532,2,2,24,24,4130760,1,1,12,12,4130944,3,1,1,-1,4131172,1,1,1,-1,4131419,3,1,1,-1,4131713,1,1,1,-1,4131984,3,1,1,-1,4132396,1,1,1,-1,4132661,3,1,1,-1,4133031,1,1,1,-1,4133286,2,2,26,26,4133691,3,1,23,23,4133832,2,2,26,26,4134054,1,1,23,23,4134192,2,2,28,28,4134462,3,1,24,24,4134638,2,2,28,28,4134867,1,1,24,24,4135037,3,1,1,-1,4135287,1,1,1,-1,4135521,2,2,26,26,4135827,3,1,27,27,4136005,2,2,26,26,4136229,1,1,27,27,4136405,3,1,1,-1,4136808,1,1,1,-1,4136992,3,1,1,-1,4137417,1,1,1,-1,4137654,3,1,1,-1,4137968,1,1,1,-1,4138230,2,2,31,31,4138610,2,2,29,29,4138786,3,1,38,38,4138989,2,2,29,29,4139200,2,2,31,31,4139451,1,1,38,38,4139662,3,1,1,-1,4139896,1,1,1,-1,4140098,3,1,1,-1,4140512,1,1,1,-1,4140737,3,1,1,-1,4141077,1,1,1,-1,4141377,3,2,-1,-1,4142000,3,1,1,-1,4142711,1,1,1,-1,4142906,2,2,38,38,4143422,3,1,22,22,4143601,2,2,38,38,4143831,1,1,22,22,4143998,3,1,1,-1,4144266,1,1,1,-1,4144472,2,2,33,33,4144788,3,1,20,20,4144963,2,2,33,33,4145185,1,1,20,20,4145351,2,2,31,31,4145742,3,1,18,18,4145901,2,2,31,31,4146107,1,1,18,18,4146273,3,1,1,-1,4146513,1,1,1,-1,4146692,2,2,29,29,4146999,3,1,14,14,4147165,2,2,29,29,4147407,1,1,14,14,4147564,3,1,1,-1,4147810,1,1,1,-1,4147978,2,2,27,27,4148344,3,1,10,10,4148509,2,2,27,27,4148722,1,1,10,10,4148878,2,2,28,28,4149185,3,1,7,7,4149368,2,2,28,28,4149558,1,1,7,7,4149779,3,1,1,-1,4150015,1,1,1,-1,4150246,2,2,35,35,4150546,3,1,8,8,4150708,2,2,35,35,4150945,1,1,8,8,4151097,2,2,37,37,4151362,3,1,7,7,4151527,2,2,37,37,4151766,1,1,7,7,4151940,3,1,1,-1,4152152,1,1,1,-1,4152340,2,2,36,36,4152792,3,1,4,4,4152963,2,2,36,36,4153187,1,1,4,4,4153356,3,1,1,-1,4153748,1,1,1,-1,4153970,3,1,1,-1,4154326,1,1,1,-1,4154576,2,2,14,14,4154917,2,2,16,16,4155167,3,1,8,8,4155357,2,2,16,16,4155580,2,2,14,14,4155839,1,1,8,8,4155987,2,2,14,14,4156308,3,1,5,5,4156481,2,2,14,14,4156694,1,1,5,5,4156883,3,1,1,-1,4157198,1,1,1,-1,4157412,3,1,1,-1,4157837,1,1,1,-1,4158051,3,1,1,-1,4158488,1,1,1,-1,4158726,2,2,11,11,4159027,3,1,14,14,4159197,2,2,11,11,4159414,1,1,14,14,4159604,3,1,1,-1,4159878,1,1,1,-1,4160118,2,2,8,8,4160446,3,1,17,17,4160591,2,2,8,8,4160824,1,1,17,17,4160989,3,1,1,-1,4161296,1,1,1,-1,4161536,2,2,16,16,4161860,3,1,15,15,4162011,2,2,16,16,4162246,1,1,15,15,4162391,2,2,18,18,4162673,3,1,13,13,4163097,3,1,11,11,4163310,2,2,18,18,4163541,1,1,11,11,4163712,1,1,13,13,4163922,3,1,1,-1,4164217,1,1,1,-1,4164488,2,2,23,23,4164903,3,1,14,14,4165100,3,1,18,18,4165524,2,2,23,23,4165750,1,1,18,18,4165924,1,1,14,14,4166228,3,1,1,-1,4166504,1,1,1,-1,4166694,3,1,1,-1,4167082,1,1,1,-1,4167274,3,1,1,-1,4167612,1,1,1,-1,4167843,2,2,22,22,4168195,3,1,23,23,4168362,2,2,22,22,4168594,1,1,23,23,4168763,2,2,24,24,4169043,3,1,20,20,4169216,2,2,24,24,4169437,1,1,20,20,4169618,3,1,1,-1,4169896,1,1,1,-1,4170091,2,2,15,15,4170428,3,1,24,24,4170629,2,2,15,15,4170843,1,1,24,24,4171006,2,2,16,16,4171251,3,1,23,23,4171441,2,2,16,16,4171646,1,1,23,23,4171849,3,1,1,-1,4172124,1,1,1,-1,4172332,2,2,12,12,4172662,3,1,30,30,4172833,2,2,12,12,4173038,1,1,30,30,4173251,3,1,1,-1,4173499,1,1,1,-1,4173725,2,2,4,4,4174124,3,1,27,27,4174333,2,2,4,4,4174547,1,1,27,27,4174714,3,1,1,-1,4175016,1,1,1,-1,4175229,2,2,10,10,4175560,3,1,36,36,4175702,2,2,10,10,4175957,1,1,36,36,4176105,2,2,9,9,4176414,3,1,33,33,4176609,2,2,9,9,4176836,1,1,33,33,4177011,3,1,1,-1,4177310,1,1,1,-1,4177525,2,2,21,21,4177856,3,1,37,37,4178026,2,2,21,21,4178232,1,1,37,37,4178397,2,2,25,25,4178712,3,1,39,39,4178913,2,2,25,25,4179154,1,1,39,39,4179356,3,1,1,-1,4179618,1,1,1,-1,4179788,2,2,28,28,4180098,3,1,34,34,4180298,2,2,28,28,4180533,1,1,34,34,4180687,3,1,1,-1,4180938,1,1,1,-1,4181129,2,2,36,36,4181553,3,1,36,36,4181732,2,2,36,36,4181959,1,1,36,36,4182163,3,1,1,-1,4182438,1,1,1,-1,4182652,3,1,1,-1,4183047,1,1,1,-1,4183300,2,2,23,23,4183726,3,1,27,27,4183899,2,2,23,23,4184139,1,1,27,27,4184325,3,1,1,-1,4184645,1,1,1,-1,4184857,2,2,33,33,4185487,3,1,26,26,4185674,2,2,33,33,4185909,1,1,26,26,4186109,3,1,1,-1,4186369,1,1,1,-1,4186574,3,2,-1,-1,4187018,3,1,1,-1,4187291,1,1,1,-1,4187506,2,2,37,37,4187810,3,1,18,18,4187986,2,2,37,37,4188208,1,1,18,18,4188384,3,1,1,-1,4188747,1,1,1,-1,4188951,2,2,29,29,4189395,3,1,15,15,4189565,2,2,29,29,4189774,1,1,15,15,4189928,2,2,26,26,4190337,3,1,18,18,4190521,2,2,26,26,4190736,1,1,18,18,4190909,3,1,1,-1,4191172,1,1,1,-1,4191371,2,2,23,23,4191679,3,1,14,14,4191862,2,2,23,23,4192085,1,1,14,14,4192254,2,2,26,26,4192675,3,1,10,10,4192845,2,2,26,26,4193032,1,1,10,10,4193211,3,1,1,-1,4193510,1,1,1,-1,4193699,2,2,23,23,4194039,3,1,4,4,4194236,2,2,23,23,4194465,1,1,4,4,4194643,3,1,1,-1,4194959,1,1,1,-1,4195163,2,2,15,15,4195484,3,1,7,7,4195651,2,2,15,15,4195858,1,1,7,7,4196040,2,2,10,10,4196416,3,1,5,5,4196601,2,2,10,10,4196803,1,1,5,5,4196994,3,1,1,-1,4197290,1,1,1,-1,4197501,2,2,12,12,4197829,3,1,12,12,4198016,2,2,12,12,4198246,1,1,12,12,4198438,2,2,9,9,4198847,3,1,17,17,4199060,1,1,17,17,4199355,2,2,9,9,4199579,2,2,8,8,4199730,3,1,17,17,4199949,2,2,8,8,4200176,1,1,17,17,4200382,3,1,1,-1,4200625,1,1,1,-1,4200835,2,2,4,4,4201138,3,1,11,11,4201310,2,2,4,4,4201552,1,1,11,11,4201712,2,2,5,5,4202082,3,1,7,7,4202254,2,2,5,5,4202464,1,1,7,7,4202675,3,1,1,-1,4203377,1,1,1,-1,4203581,2,2,11,11,4204268,3,1,34,34,4204456,2,2,11,11,4204689,1,1,34,34,4204858,3,1,1,-1,4205135,1,1,1,-1,4205303,3,1,1,-1,4205787,1,1,1,-1,4205978,3,1,1,-1,4206737,1,1,1,-1,4206944,2,2,25,25,4207458,3,1,36,36,4207624,2,2,25,25,4207828,1,1,36,36,4208012,3,1,1,-1,4208292,1,1,1,-1,4208487,3,2,-1,-1,4209182,3,1,1,-1,4209439,1,1,1,-1,4209644,2,2,36,36,4209985,3,1,37,37,4210195,2,2,36,36,4210450,1,1,37,37,4210594,3,1,1,-1,4210916,1,1,1,-1,4211147,2,2,19,19,4211561,3,1,30,30,4211729,2,2,19,19,4211966,1,1,29,29,4212123,3,1,1,-1,4212361,1,1,1,-1,4212540,3,1,29,29,4213153,1,1,30,30,4213352,3,1,1,-1,4214161,1,1,1,-1,4214331,2,2,17,17,4214645,3,1,25,25,4214801,2,2,17,17,4215052,1,1,25,25,4215210,3,1,1,-1,4215530,1,1,1,-1,4215726,2,2,5,5,4216345,3,1,34,34,4216535,2,2,5,5,4216757,1,1,34,34,4216981,3,2,-1,-1,4217523,3,1,1,-1,4217828,1,1,1,-1,4218040,2,2,18,18,4218472,3,1,30,30,4218657,2,2,18,18,4218898,1,1,30,30,4219125,3,1,1,-1,4219801,1,1,1,-1,4220019,3,2,-1,-1,4220876,3,1,1,-1,4221131,1,1,1,-1,4221360,3,2,-1,-1,4221741,3,1,1,-1,4222101,1,1,1,-1,4222312,3,2,-1,-1,4222686,3,1,1,-1,4222947,1,1,1,-1,4223152,2,2,11,11,4223901,3,1,7,7,4224072,2,2,11,11,4224290,1,1,7,7,4224457,1,2,-1,-1,4226259,2,2,-1,-1,4226880,3,1,1,20,4228014,2,2,1,1,4228267,1,1,1,20,4228424,3,1,-20,-1,4228619,2,2,1,1,4228860,1,1,-20,-1,4229011,3,1,1,-1,4229552,1,1,1,-1,4229740,2,2,23,23,4230226,3,1,12,12,4230410,3,1,13,13,4230605,2,2,23,23,4230835,1,1,13,13,4231011,1,1,12,12,4231240,3,1,1,-1,4231509,1,1,1,-1,4231745,2,2,25,25,4232388,3,1,10,10,4232557,2,2,25,25,4232797,1,1,10,10,4232966,3,1,1,-1,4233243,1,1,1,-1,4233440,3,1,1,-1,4234000,1,1,1,-1,4234219,2,2,32,32,4234646,3,1,10,10,4234815,3,1,11,11,4235041,2,2,32,32,4235342,1,1,11,11,4235524,1,1,10,10,4235721,3,1,1,-1,4236050,1,1,1,-1,4236255,2,2,36,36,4236633,3,1,11,11,4236813,3,1,9,9,4237013,3,1,8,8,4237220,2,2,36,36,4237444,1,1,9,9,4237615,1,1,8,8,4237782,1,1,11,11,4238054,3,1,1,-1,4238276,1,1,1,-1,4238469,2,2,38,38,4238831,3,1,11,11,4238987,2,2,38,38,4239206,1,1,11,11,4239382,3,1,1,-1,4239620,1,1,1,-1,4239871,3,1,1,-1,4240142,1,1,1,-1,4240610,2,2,38,38,4241027,2,2,36,36,4241228,3,1,3,3,4241435,2,2,36,36,4241673,2,2,38,38,4241930,1,1,3,3,4242161,3,1,1,-1,4242483,1,1,1,-1,4242718,2,2,33,33,4243059,3,1,7,7,4243233,2,2,33,33,4243453,1,1,7,7,4243624,3,1,1,-1,4243865,1,1,1,-1,4244105,2,2,29,29,4244439,3,1,6,6,4244607,3,1,5,5,4244791,2,2,29,29,4245019,1,1,6,6,4245194,1,1,5,5,4245405,3,1,1,-1,4245672,1,1,1,-1,4245934,2,2,25,25,4246248,3,1,4,4,4246392,2,2,25,25,4246644,1,1,4,4,4246810,2,2,26,26,4247068,3,1,2,2,4247250,2,2,26,26,4247459,1,1,2,2,4247660,3,1,1,-1,4247908,1,1,1,-1,4248136,2,2,23,23,4248442,3,1,3,3,4248618,2,2,23,23,4248826,1,1,3,3,4249004,3,1,1,-1,4249333,1,1,1,-1,4249567,2,2,19,19,4249866,3,1,4,4,4250050,2,2,19,19,4250243,1,1,4,4,4250420,3,1,1,-1,4250681,1,1,1,-1,4250891,3,1,1,-1,4251607,1,1,1,-1,4251858,3,1,1,-1,4252262,1,1,1,-1,4252499,3,1,1,-1,4253003,1,1,1,-1,4253250,2,2,15,15,4253569,3,1,9,9,4253739,2,2,15,15,4253957,1,1,9,9,4254111,2,2,16,16,4254335,3,1,10,10,4254503,2,2,16,16,4254760,1,1,10,10,4254914,3,1,1,-1,4255182,1,1,1,-1,4255407,3,1,1,-1,4255783,1,1,1,-1,4256050,2,2,16,16,4256355,2,2,14,14,4256530,3,1,14,14,4256736,2,2,14,14,4256960,2,2,16,16,4257217,1,1,14,14,4257437,3,1,1,-1,4257688,1,1,1,-1,4257982,2,2,10,10,4258325,3,1,10,10,4258473,3,1,9,9,4258676,2,2,10,10,4258905,1,1,10,10,4259062,1,1,9,9,4259245,3,1,1,-1,4259507,1,1,1,-1,4259742,2,2,8,8,4260056,3,1,10,10,4260225,3,1,7,7,4260508,2,2,8,8,4260700,1,1,7,7,4260870,1,1,10,10,4261148,3,1,1,-1,4261467,1,1,1,-1,4261651,2,2,9,9,4261968,3,1,5,5,4262136,3,1,3,3,4262345,2,2,9,9,4262567,1,1,3,3,4262770,1,1,5,5,4262979,2,2,10,10,4263256,3,1,4,4,4263445,2,2,10,10,4263650,1,1,4,4,4263817,3,1,1,-1,4264108,1,1,1,-1,4264367,2,2,6,6,4264679,2,2,4,4,4264885,3,1,3,3,4265089,2,2,4,4,4265318,2,2,6,6,4265568,1,1,3,3,4265794,3,1,1,-1,4266016,1,1,1,-1,4266237,2,2,2,2,4266620,3,1,6,6,4266763,2,2,2,2,4266997,1,1,6,6,4267167,3,1,1,-1,4267438,1,1,1,-1,4267660,3,1,1,-1,4268034,1,1,1,-1,4268304,3,1,1,-1,4268701,1,1,1,-1,4268931,2,2,3,3,4269299,3,1,16,16,4269461,2,2,3,3,4269684,1,1,16,16,4269849,2,2,5,5,4270149,3,1,15,15,4270306,2,2,5,5,4270554,1,1,15,15,4270712,3,1,1,-1,4270960,1,1,1,-1,4271163,3,1,1,-1,4271547,1,1,1,-1,4271804,2,2,10,10,4272153,3,1,19,19,4272311,2,2,10,10,4272561,1,1,19,19,4272742,3,1,1,-1,4272965,1,1,1,-1,4273195,2,2,12,12,4273611,3,1,16,16,4273771,2,2,12,12,4274009,1,1,16,16,4274246,3,1,1,-1,4275097,1,1,1,-1,4275338,2,2,16,16,4275910,3,1,20,20,4276112,2,2,16,16,4276351,1,1,20,20,4276556,3,1,1,-1,4277013,1,1,1,-1,4277268,3,1,1,-1,4277721,1,1,1,-1,4277952,2,2,9,9,4278370,3,1,23,23,4278540,2,2,9,9,4278764,1,1,23,23,4278937,3,1,1,-1,4279180,1,1,1,-1,4279387,2,2,7,7,4279692,3,1,21,21,4279881,2,2,7,7,4280063,1,1,21,21,4280226,2,2,5,5,4280536,3,1,20,20,4280693,2,2,5,5,4280913,1,1,20,20,4281109,3,1,1,-1,4281419,1,1,1,-1,4281630,2,2,6,6,4282017,3,1,24,24,4282192,2,2,6,6,4282375,1,1,24,24,4282559,3,1,1,-1,4282831,1,1,1,-1,4283021,2,2,6,6,4283340,3,1,26,26,4283525,2,2,6,6,4283728,1,1,26,26,4283917,3,1,1,-1,4284158,1,1,1,-1,4284367,2,2,9,9,4284712,3,1,25,25,4285123,2,2,9,9,4285343,1,1,25,25,4285527,3,1,1,-1,4285834,1,1,1,-1,4286038,2,2,8,8,4286340,3,1,29,29,4286508,2,2,8,8,4286709,1,1,29,29,4286902,2,2,9,9,4287164,3,1,31,31,4287373,2,2,9,9,4287587,1,1,31,31,4287769,3,1,1,-1,4288108,1,1,1,-1,4288331,3,1,1,-1,4288723,1,1,1,-1,4288947,2,2,6,6,4289351,3,1,32,32,4289530,2,2,6,6,4289746,1,1,32,32,4289927,3,1,1,-1,4290200,1,1,1,-1,4290436,2,2,5,5,4290726,3,1,35,35,4290895,2,2,5,5,4291119,1,1,35,35,4291304,3,1,1,-1,4291571,1,1,1,-1,4291800,3,1,1,-1,4292248,1,1,1,-1,4292500,2,2,11,11,4292841,3,1,38,38,4293013,2,2,11,11,4293234,1,1,38,38,4293451,3,1,1,-1,4293688,1,1,1,-1,4293927,2,2,13,13,4294328,3,1,35,35,4294500,2,2,13,13,4294721,1,1,35,35,4294915,3,1,1,-1,4295141,1,1,1,-1,4295314,2,2,14,14,4295656,3,1,32,32,4295825,2,2,14,14,4296039,1,1,32,32,4296239,3,1,1,-1,4296499,1,1,1,-1,4296714,2,2,16,16,4297089,2,2,17,17,4297416,3,1,28,28,4297627,2,2,17,17,4297830,2,2,16,16,4297995,1,1,28,28,4298246,3,1,1,-1,4298492,1,1,1,-1,4298712,2,2,18,18,4299057,3,1,26,26,4299219,2,2,18,18,4299441,1,1,26,26,4299623,2,2,16,16,4299942,3,1,24,24,4300147,2,2,16,16,4300355,1,1,24,24,4300575,3,1,1,-1,4300830,1,1,1,-1,4301061,3,1,1,-1,4301970,1,1,1,-1,4302210,2,2,19,19,4302555,3,1,31,31,4302719,2,2,19,19,4302950,1,1,31,31,4303127,3,1,1,-1,4303376,1,1,1,-1,4303605,2,2,18,18,4303914,3,1,33,33,4304076,2,2,18,18,4304305,1,1,33,33,4304477,3,1,1,-1,4304731,1,1,1,-1,4304950,2,2,22,22,4305296,3,1,34,34,4305535,3,1,37,37,4305877,2,2,22,22,4306090,1,1,37,37,4306239,1,1,34,34,4306530,3,1,1,-1,4306762,1,1,1,-1,4307000,2,2,18,18,4307380,2,2,15,15,4307677,3,1,39,39,4307856,2,2,15,15,4308049,2,2,18,18,4308377,1,1,39,39,4308553,3,1,1,-1,4308829,1,1,1,-1,4309024,2,2,24,24,4309330,3,1,38,38,4309499,3,1,39,39,4309698,2,2,24,24,4309956,1,1,39,39,4310111,1,1,38,38,4310320,3,1,1,-1,4310581,1,1,1,-1,4310794,2,2,27,27,4311105,3,1,38,38,4311299,2,2,27,27,4311533,1,1,38,38,4311700,2,2,26,26,4312006,3,1,35,35,4312178,2,2,26,26,4312417,1,1,35,35,4312604,3,1,1,-1,4312834,1,1,1,-1,4313102,3,1,1,-1,4313476,1,1,1,-1,4313740,2,2,30,30,4314048,3,1,32,32,4314214,2,2,30,30,4314419,1,1,32,32,4314617,2,2,29,29,4314869,3,1,31,31,4315037,2,2,29,29,4315267,1,1,31,31,4315448,3,1,1,-1,4315724,1,1,1,-1,4315946,2,2,35,35,4316281,3,1,31,31,4316432,2,2,35,35,4316692,1,1,31,31,4316859,2,2,33,33,4317169,3,1,29,29,4317364,2,2,33,33,4317602,1,1,29,29,4317806,3,1,1,-1,4318063,1,1,1,-1,4318352,3,1,1,-1,4318760,1,1,1,-1,4319044,3,1,1,-1,4319485,1,1,1,-1,4319741,2,2,37,37,4320120,3,1,38,38,4320325,2,2,37,37,4320536,1,1,38,38,4320711,3,1,1,-1,4320964,1,1,1,-1,4321236,2,2,30,30,4321749,3,1,39,39,4321932,2,2,30,30,4322167,1,1,39,39,4322366,3,1,1,-1,4322595,1,1,1,-1,4322849,3,2,-1,-1,4323291,3,1,1,-1,4323535,1,1,1,-1,4323761,2,2,39,39,4324199,3,1,29,29,4324369,2,2,39,39,4324570,1,1,29,29,4324771,3,1,1,-1,4325077,1,1,1,-1,4325292,2,2,37,37,4325621,3,1,36,36,4325792,2,2,37,37,4325995,1,1,36,36,4326169,3,1,1,-1,4326415,1,1,1,-1,4326608,3,1,1,-1,4327120,1,1,1,-1,4327349,2,2,31,31,4327656,3,1,38,38,4327843,2,2,31,31,4328100,1,1,38,38,4328267,3,1,1,-1,4328517,1,1,1,-1,4328709,2,2,26,26,4329193,3,1,32,32,4329365,2,2,26,26,4329593,1,1,32,32,4329769,3,1,1,-1,4330066,1,1,1,-1,4330276,2,2,24,24,4330638,3,1,31,31,4330825,2,2,24,24,4331049,1,1,31,31,4331222,3,1,1,-1,4331423,1,1,1,-1,4331635,2,2,22,22,4331944,3,1,29,29,4332115,2,2,22,22,4332339,1,1,29,29,4332521,3,1,1,-1,4332823,1,1,1,-1,4333055,2,2,20,20,4333393,3,1,34,34,4333567,2,2,20,20,4333766,1,1,34,34,4333954,2,2,22,22,4334223,3,1,35,35,4334385,2,2,22,22,4334632,1,1,35,35,4334818,3,1,1,-1,4335033,1,1,1,-1,4335203,2,2,23,23,4335581,3,1,39,39,4335780,2,2,23,23,4336015,1,1,39,39,4336222,3,1,1,-1,4336529,1,1,1,-1,4336765,3,1,1,-1,4337138,1,1,1,-1,4337375,3,1,1,-1,4337791,1,1,1,-1,4338053,2,2,11,11,4338403,3,1,28,28,4338567,2,2,11,11,4338775,1,1,28,28,4338936,2,2,9,9,4339249,3,1,27,27,4339422,2,2,9,9,4339626,1,1,27,27,4339798,3,1,1,-1,4340155,1,1,1,-1,4340361,2,2,2,2,4340934,3,1,24,24,4341112,2,2,2,2,4341348,1,1,24,24,4341548,3,1,1,-1,4341820,1,1,1,-1,4342034,2,2,3,3,4342428,3,1,30,30,4342606,2,2,3,3,4342838,1,1,30,30,4342984,2,2,2,2,4343257,3,1,29,29,4343444,2,2,2,2,4343686,1,1,29,29,4343896,3,1,1,-1,4344222,1,1,1,-1,4344442,2,2,4,4,4344776,3,1,37,37,4344967,2,2,4,4,4345212,1,1,37,37,4345355,2,2,2,2,4345780,3,1,38,38,4345994,2,2,2,2,4346231,1,1,38,38,4346428,3,1,1,-1,4346673,1,1,1,-1,4346844,2,2,10,10,4347194,2,2,8,8,4347395,3,1,38,38,4347617,2,2,8,8,4347853,2,2,10,10,4348092,1,1,38,38,4348315,3,1,1,-1,4348541,1,1,1,-1,4348776,3,1,1,-1,4349179,1,1,1,-1,4349417,2,2,8,8,4350011,3,1,30,30,4350251,2,2,8,8,4350481,1,1,30,30,4350660,3,1,1,-1,4350910,1,1,1,-1,4351094,3,1,1,-1,4351506,1,1,1,-1,4351732,2,2,13,13,4352044,2,2,14,14,4352468,3,1,22,22,4352671,2,2,14,14,4352875,2,2,13,13,4353065,1,1,22,22,4353289,2,2,13,13,4353582,3,1,20,20,4353749,2,2,13,13,4354005,1,1,20,20,4354270,3,1,1,-1,4354821,1,1,1,-1,4355031,3,1,1,-1,4355429,1,1,1,-1,4355701,2,2,7,7,4356025,3,1,18,18,4356210,2,2,7,7,4356424,1,1,18,18,4356615,3,1,1,-1,4356841,1,1,1,-1,4357041,3,1,1,-1,4357443,1,1,1,-1,4357686,3,1,1,-1,4358133,1,1,1,-1,4358353,2,2,6,6,4358771,3,1,14,14,4358979,2,2,6,6,4359213,1,1,14,14,4359413,2,2,8,8,4359761,3,1,13,13,4359958,2,2,8,8,4360186,1,1,13,13,4360370,3,1,1,-1,4360578,1,1,1,-1,4360829,2,2,12,12,4361141,3,1,13,13,4361313,2,2,12,12,4361510,1,1,13,13,4361685,2,2,13,13,4361962,3,1,14,14,4362193,2,2,13,13,4362437,1,1,14,14,4362595,3,1,1,-1,4362839,1,1,1,-1,4363019,2,2,10,10,4363342,3,1,12,12,4363512,2,2,10,10,4363755,1,1,12,12,4363929,3,1,1,-1,4364191,1,1,1,-1,4364396,2,2,14,14,4364815,3,1,10,10,4365007,2,2,14,14,4365210,1,1,10,10,4365386,3,1,1,-1,4365622,1,1,1,-1,4365810,2,2,12,12,4366203,3,1,4,4,4366380,2,2,12,12,4366600,1,1,4,4,4366784,3,1,1,-1,4367022,1,1,1,-1,4367293,2,2,18,18,4367694,3,1,3,3,4367879,2,2,18,18,4368103,1,1,3,3,4368284,3,1,1,-1,4368652,1,1,1,-1,4368858,2,2,6,6,4369222,3,1,4,4,4369377,2,2,6,6,4369600,1,1,4,4,4369771,3,1,1,-1,4370037,1,1,1,-1,4370271,2,2,5,5,4370599,3,1,8,8,4370787,2,2,5,5,4371028,1,1,8,8,4371201,2,2,2,2,4371571,3,1,9,9,4371740,2,2,2,2,4371972,1,1,9,9,4372186,3,1,1,-1,4372517,1,1,1,-1,4372730,2,2,17,17,4373011,2,2,16,16,4373199,3,1,12,12,4373402,2,2,17,17,4373636,2,2,16,16,4373805,1,1,12,12,4374148,3,1,1,-1,4374504,1,1,1,-1,4374735,2,2,17,17,4375068,3,1,10,10,4375242,2,2,17,17,4375468,1,1,10,10,4375650,3,1,1,-1,4375887,1,1,1,-1,4376098,2,2,19,19,4376506,3,1,7,7,4376663,2,2,19,19,4376895,1,1,7,7,4377079,2,2,17,17,4377424,3,1,6,6,4377583,2,2,17,17,4377806,1,1,6,6,4377983,3,1,1,-1,4378255,1,1,1,-1,4378477,2,2,23,23,4378762,3,1,8,8,4378948,2,2,23,23,4379174,1,1,8,8,4379382,3,1,1,-1,4379625,1,1,1,-1,4379852,2,2,30,30,4380339,3,1,5,5,4380528,2,2,30,30,4380770,1,1,5,5,4381015,3,1,1,-1,4381183,1,1,1,-1,4381483,2,2,34,34,4381856,3,1,4,4,4382013,3,1,3,3,4382230,2,2,34,34,4382489,1,1,4,4,4382660,1,1,3,3,4382842,3,1,1,-1,4383206,1,1,1,-1,4383420,2,2,34,34,4383723,3,1,7,7,4383900,2,2,34,34,4384128,1,1,7,7,4384303,3,1,1,-1,4384576,1,1,1,-1,4384806,2,2,39,39,4385255,3,1,8,8,4385481,2,2,39,39,4385671,1,1,8,8,4385870,3,1,1,-1,4386169,1,1,1,-1,4386371,2,2,35,35,4386843,3,1,11,11,4387025,2,2,35,35,4387260,1,1,11,11,4387420,2,2,37,37,4387746,3,1,13,13,4387935,2,2,37,37,4388148,1,1,13,13,4388340,3,1,1,-1,4388618,1,1,1,-1,4388853,2,2,31,31,4389283,3,1,9,9,4389469,2,2,31,31,4389678,1,1,9,9,4389862,3,1,1,-1,4390109,1,1,1,-1,4390378,3,1,1,-1,4390747,1,1,1,-1,4391017,2,2,27,27,4391389,3,1,11,11,4391568,2,2,27,27,4391776,1,1,11,11,4391948,2,2,28,28,4392285,3,1,14,14,4392477,2,2,28,28,4392715,1,1,14,14,4392897,3,1,1,-1,4393160,1,1,1,-1,4393365,2,2,30,30,4393709,2,2,31,31,4393871,3,1,15,15,4394106,2,2,31,31,4394352,2,2,30,30,4394501,1,1,15,15,4394740,3,1,1,-1,4395032,1,1,1,-1,4395280,2,2,25,25,4395601,3,1,18,18,4395753,2,2,25,25,4395991,1,1,18,18,4396181,3,1,1,-1,4396431,1,1,1,-1,4396727,2,2,24,24,4397180,3,1,15,15,4397366,2,2,24,24,4397604,1,1,15,15,4397745,2,2,22,22,4398143,3,1,14,14,4398316,2,2,22,22,4398515,1,1,14,14,4398685,3,1,1,-1,4398904,1,1,1,-1,4399181,2,2,21,21,4399499,3,1,12,12,4399648,3,1,11,11,4399843,2,2,21,21,4400056,1,1,12,12,4400227,1,1,11,11,4400438,3,1,1,-1,4400784,1,1,1,-1,4401030,2,2,21,21,4401379,2,2,19,19,4401606,3,1,17,17,4401839,2,2,19,19,4402073,2,2,21,21,4402315,1,1,17,17,4402541,2,2,20,20,4402786,3,1,18,18,4402971,2,2,20,20,4403201,1,1,18,18,4403399,3,1,1,-1,4403667,1,1,1,-1,4403922,2,2,18,18,4404321,3,1,20,20,4404501,2,2,18,18,4404703,1,1,20,20,4404868,2,2,21,21,4405209,3,1,23,23,4405403,2,2,21,21,4405619,1,1,23,23,4405824,3,1,1,-1,4406111,1,1,1,-1,4406328,3,1,1,-1,4406732,1,1,1,-1,4406982,3,1,1,-1,4407323,1,1,1,-1,4407581,2,2,29,29,4407990,3,1,23,23,4408161,2,2,29,29,4408396,1,1,23,23,4408558,3,1,1,-1,4408812,1,1,1,-1,4409065,2,2,28,28,4409371,3,1,21,21,4409550,3,1,19,19,4409761,2,2,28,28,4410015,1,1,19,19,4410204,1,1,21,21,4410466,3,1,1,-1,4410766,1,1,1,-1,4410998,3,1,1,-1,4411406,1,1,1,-1,4411654,2,2,34,34,4411916,2,2,33,33,4412085,3,1,18,18,4412296,2,2,34,34,4412648,2,2,33,33,4412841,1,1,18,18,4413071,3,1,1,-1,4413395,1,1,1,-1,4413646,2,2,36,36,4413962,2,2,38,38,4414208,2,2,39,39,4414412,3,1,21,21,4414639,2,2,39,39,4414870,2,2,38,38,4415040,2,2,36,36,4415343,1,1,21,21,4415589,3,1,1,-1,4415848,1,1,1,-1,4416102,2,2,37,37,4416538,2,2,35,35,4416746,3,1,24,24,4416975,2,2,35,35,4417200,2,2,37,37,4417422,1,1,24,24,4417639,3,1,1,-1,4417875,1,1,1,-1,4418088,2,2,34,34,4418421,3,1,26,26,4418627,2,2,34,34,4418830,1,1,26,26,4419019,2,2,39,39,4419390,3,1,25,25,4419588,2,2,39,39,4419813,1,1,25,25,4419992,3,2,-1,-1,4420228,3,1,1,-1,4420501,1,1,1,-1,4420708,3,1,1,-1,4421185,1,1,1,-1,4421441,2,2,35,35,4421865,3,1,16,16,4422050,2,2,35,35,4422274,1,1,16,16,4422428,2,2,38,38,4422768,3,1,17,17,4422966,2,2,39,39,4423204,1,1,17,17,4423418,3,1,17,17,4423797,2,2,39,39,4424038,2,2,38,38,4424197,1,1,17,17,4424467,3,1,1,-1,4425173,1,1,1,-1,4425415,2,2,36,36,4425695,3,1,10,10,4425864,2,2,36,36,4426093,1,1,10,10,4426262,2,2,39,39,4426572,3,1,11,11,4426749,2,2,39,39,4426994,1,1,11,11,4427190,3,1,1,-1,4427431,1,1,1,-1,4427639,2,2,34,34,4427936,3,1,9,9,4428132,2,2,34,34,4428346,1,1,9,9,4428491,2,2,35,35,4428782,3,1,7,7,4428953,2,2,35,35,4429146,1,1,7,7,4429347,3,1,1,-1,4429563,1,1,1,-1,4429764,2,2,32,32,4430075,3,1,5,5,4430253,2,2,32,32,4430474,1,1,5,5,4430661,2,2,34,34,4430954,3,1,2,2,4431183,2,2,34,34,4431402,1,1,2,2,4431598,3,1,1,-1,4431944,1,1,1,-1,4432136,2,2,25,25,4432441,2,2,24,24,4432583,3,1,7,7,4432795,2,2,25,25,4433033,2,2,24,24,4433191,1,1,7,7,4433474,3,1,1,-1,4433709,1,1,1,-1,4433905,2,2,26,26,4434245,3,1,5,5,4434439,2,2,26,26,4434653,1,1,5,5,4434862,3,1,1,-1,4435215,1,1,1,-1,4435448,2,2,19,19,4435806,3,1,5,5,4436007,2,2,19,19,4436239,1,1,5,5,4436430,3,1,1,-1,4436674,1,1,1,-1,4436946,3,1,1,-1,4437285,1,1,1,-1,4437517,2,2,12,12,4437861,3,1,8,8,4438027,3,1,6,6,4438232,2,2,12,12,4438453,1,1,6,6,4438642,1,1,8,8,4438853,2,2,13,13,4439116,3,1,9,9,4439300,3,1,7,7,4439566,2,2,13,13,4439808,1,1,7,7,4439974,1,1,9,9,4440216,3,1,1,-1,4440539,1,1,1,-1,4440741,2,2,5,5,4441145,3,1,2,2,4441325,2,2,5,5,4441553,1,1,2,2,4441734,3,1,1,-1,4442013,1,1,1,-1,4442220,2,2,4,4,4442518,3,1,6,6,4442682,3,1,8,8,4442916,2,2,4,4,4443163,1,1,8,8,4443309,1,1,6,6,4443535,2,2,3,3,4443834,3,1,5,5,4444016,2,2,3,3,4444217,1,1,5,5,4444427,3,1,1,-1,4444755,1,1,1,-1,4444961,2,2,2,2,4445293,3,1,13,13,4445475,3,1,15,15,4445707,2,2,2,2,4445947,1,1,15,15,4446107,1,1,13,13,4446332,2,2,3,3,4446597,2,2,6,6,4446864,3,1,12,12,4447065,2,2,6,6,4447298,2,2,3,3,4447605,1,1,12,12,4447807,3,1,1,-1,4448117,1,1,1,-1,4448286,2,2,3,3,4448607,2,2,2,2,4448778,3,1,18,18,4449008,2,2,3,3,4449215,2,2,2,2,4449376,1,1,18,18,4449641,3,1,1,-1,4449897,1,1,1,-1,4450117,2,2,9,9,4450435,3,1,20,20,4450629,2,2,9,9,4450829,1,1,20,20,4451010,2,2,11,11,4451281,3,1,22,22,4451467,2,2,11,11,4451704,1,1,22,22,4451874,3,1,1,-1,4452119,1,1,1,-1,4452316,2,2,13,13,4452598,3,1,18,18,4452770,2,2,13,13,4453006,1,1,18,18,4453170,2,2,16,16,4453480,3,1,15,15,4453657,2,2,16,16,4453882,1,1,15,15,4454060,2,2,11,11,4454454,3,1,15,15,4454636,2,2,11,11,4454861,1,1,15,15,4455047,3,1,1,-1,4455321,1,1,1,-1,4455554,2,2,18,18,4455956,3,1,12,12,4456135,2,2,18,18,4456357,1,1,12,12,4456525,3,1,1,-1,4456806,1,1,1,-1,4457071,2,2,24,24,4457391,3,1,12,12,4457584,2,2,24,24,4457815,1,1,12,12,4458050,3,1,1,-1,4458600,1,1,1,-1,4458839,3,1,1,-1,4459258,1,1,1,-1,4459478,2,2,26,26,4459801,3,1,20,20,4460005,2,2,26,26,4460196,1,1,20,20,4460378,2,2,27,27,4460676,3,1,21,21,4460907,2,2,27,27,4461205,1,1,21,21,4461432,3,1,1,-1,4461770,1,1,1,-1,4461991,2,2,29,29,4462315,3,1,16,16,4462505,2,2,29,29,4462717,1,1,16,16,4462881,2,2,30,30,4463158,3,1,17,17,4463348,2,2,30,30,4463601,1,1,17,17,4463738,3,1,1,-1,4464021,1,1,1,-1,4464232,2,2,31,31,4464622,3,1,12,12,4464810,2,2,31,31,4464992,1,1,12,12,4465214,3,1,1,-1,4465451,1,1,1,-1,4465690,3,1,1,-1,4466172,1,1,1,-1,4466454,3,1,1,-1,4467039,1,1,1,-1,4467216,2,2,31,31,4467699,2,2,34,34,4468012,3,1,33,33,4468371,2,2,34,34,4468637,2,2,31,31,4468929,1,1,33,33,4469123,3,1,1,-1,4469390,1,1,1,-1,4469659,3,1,1,-1,4469964,1,1,1,-1,4470213,2,2,28,28,4470540,2,2,26,26,4470711,2,2,27,27,4471285,2,2,26,26,4471425,3,1,35,35,4471699,2,2,28,28,4471940,2,2,27,27,4472115,1,1,35,35,4472340,3,1,1,-1,4472682,1,1,1,-1,4472925,2,2,24,24,4473375,3,1,24,24,4473559,2,2,24,24,4473766,1,1,24,24,4473933,2,2,27,27,4474267,3,1,28,28,4474455,2,2,27,27,4474689,1,1,28,28,4474851,3,1,1,-1,4475129,1,1,1,-1,4475335,2,2,23,23,4475664,3,1,30,30,4475867,3,1,32,32,4476076,2,2,23,23,4476311,1,1,32,32,4476458,1,1,30,30,4476667,3,1,1,-1,4476996,1,1,1,-1,4477210,2,2,18,18,4477569,3,1,35,35,4477721,2,2,18,18,4477944,1,1,35,35,4478115,2,2,21,21,4478417,3,1,36,36,4478624,2,2,21,21,4478855,1,1,36,36,4479028,2,2,19,19,4479404,3,1,32,32,4479610,2,2,19,19,4479821,1,1,32,32,4480020,3,1,1,-1,4480321,1,1,1,-1,4480559,2,2,15,15,4480870,3,1,29,29,4481038,2,2,15,15,4481253,1,1,29,29,4481438,2,2,16,16,4481686,3,1,30,30,4481865,2,2,16,16,4482086,1,1,30,30,4482266,3,1,1,-1,4482603,1,1,1,-1,4482842,2,2,10,10,4483219,3,1,25,25,4483416,2,2,10,10,4483630,1,1,25,25,4483816,2,2,13,13,4484121,3,1,26,26,4484296,2,2,13,13,4484566,1,1,26,26,4484748,3,1,1,-1,4485073,1,1,1,-1,4485243,2,2,10,10,4485562,3,1,34,34,4485805,2,2,10,10,4485997,1,1,34,34,4486158,2,2,11,11,4486423,3,1,35,35,4486607,2,2,11,11,4486834,1,1,35,35,4487017,3,1,1,-1,4487273,1,1,1,-1,4487450,3,1,1,-1,4487882,1,1,1,-1,4488152,2,2,3,3,4488530,3,1,35,35,4488699,2,2,3,3,4488920,1,1,35,35,4489104,3,1,1,-1,4489320,1,1,1,-1,4489595,3,1,1,-1,4489955,1,1,1,-1,4490225,3,1,1,-1,4490630,1,1,1,-1,4490871,3,2,-1,-1,4491526,3,1,1,-1,4492067,1,1,1,-1,4492332,2,2,34,34,4492668,2,2,33,33,4492806,3,1,17,17,4493038,2,2,34,34,4493255,2,2,33,33,4493418,1,1,17,17,4493652,3,1,1,-1,4493922,1,1,1,-1,4494127,2,2,31,31,4494403,3,1,21,21,4494567,3,1,19,19,4494769,2,2,31,31,4495044,1,1,19,19,4495253,1,1,21,21,4495479,2,2,31,31,4496131,3,1,24,24,4496645,2,2,31,31,4496928,1,1,24,24,4497129,3,1,1,-1,4497392,1,1,1,-1,4497588,2,2,24,24,4497894,3,1,18,18,4498063,2,2,24,24,4498275,1,1,18,18,4498423,2,2,25,25,4498684,3,1,19,19,4498853,2,2,25,25,4499093,1,1,19,19,4499260,3,1,1,-1,4499524,1,1,1,-1,4499726,2,2,26,26,4500081,3,1,15,15,4500283,2,2,26,26,4500480,1,1,15,15,4500652,2,2,28,28,4500950,2,2,25,25,4501221,3,1,13,13,4501458,2,2,25,25,4501735,2,2,28,28,4502054,1,1,13,13,4502276,3,1,1,-1,4502588,1,1,1,-1,4502786,3,1,1,-1,4503257,1,1,1,-1,4503526,2,2,36,36,4503881,3,1,15,15,4504070,2,2,36,36,4504314,1,1,15,15,4504490,2,2,32,32,4504832,3,1,12,12,4504985,2,2,32,32,4505230,1,1,12,12,4505397,3,1,1,-1,4505869,1,1,1,-1,4506116,2,2,37,37,4506523,3,1,9,9,4506692,2,2,37,37,4506933,1,1,9,9,4507095,3,1,1,-1,4507347,1,1,1,-1,4507568,2,2,29,29,4507920,3,1,7,7,4508077,2,2,29,29,4508322,1,1,7,7,4508468,2,2,32,32,4508755,3,1,6,6,4508936,2,2,32,32,4509174,1,1,6,6,4509353,3,1,1,-1,4509609,1,1,1,-1,4509809,2,2,24,24,4510121,3,1,6,6,4510302,2,2,24,24,4510489,1,1,6,6,4510660,2,2,26,26,4510944,3,1,4,4,4511143,2,2,26,26,4511323,1,1,4,4,4511520,3,1,1,-1,4511854,1,1,1,-1,4512084,2,2,18,18,4512393,3,1,7,7,4512566,2,2,18,18,4512775,1,1,7,7,4512971,2,2,15,15,4513310,3,1,3,3,4513475,2,2,15,15,4513711,1,1,3,3,4513889,3,1,1,-1,4514123,1,1,1,-1,4514365,2,2,12,12,4514639,3,1,7,7,4514832,2,2,12,12,4515053,1,1,7,7,4515219,2,2,13,13,4515599,3,1,2,2,4515860,2,2,13,13,4516121,1,1,2,2,4516328,3,1,1,-1,4516618,1,1,1,-1,4516820,2,2,7,7,4517156,3,1,4,4,4517558,2,2,7,7,4517798,1,1,4,4,4518003,3,1,1,-1,4518295,1,1,1,-1,4518479,2,2,11,11,4518846,3,1,9,9,4519014,2,2,11,11,4519227,1,1,9,9,4519425,3,1,1,-1,4519726,1,1,1,-1,4519938,3,1,1,-1,4520413,1,1,1,-1,4520612,2,2,10,10,4520942,3,1,18,18,4521127,2,2,10,10,4521390,1,1,18,18,4521551,3,1,1,-1,4522094,1,1,1,-1,4522301,2,2,5,5,4522673,3,1,27,27,4522874,2,2,5,5,4523110,1,1,27,27,4523284,3,1,1,-1,4523530,1,1,1,-1,4523705,2,2,10,10,4524105,3,1,28,28,4524335,2,2,10,10,4524604,1,1,28,28,4524772,3,1,1,-1,4525025,1,1,1,-1,4525215,2,2,5,5,4525529,3,1,32,32,4525728,2,2,5,5,4525960,1,1,32,32,4526165,3,1,1,-1,4526478,1,1,1,-1,4526673,2,2,3,3,4527024,3,1,39,39,4527215,2,2,3,3,4527453,1,1,39,39,4527623,3,1,1,-1,4527904,1,1,1,-1,4528095,2,2,11,11,4528590,3,1,39,39,4528809,2,2,11,11,4529053,1,1,39,39,4529224,3,1,1,-1,4529674,1,1,1,-1,4529876,2,2,23,23,4530349,3,1,26,26,4530550,2,2,23,23,4530761,1,1,26,26,4530924,2,2,25,25,4531271,3,1,30,30,4531435,2,2,25,25,4531656,1,1,30,30,4531860,3,1,1,-1,4532115,1,1,1,-1,4532285,2,2,27,27,4532586,3,1,32,32,4532776,2,2,27,27,4532971,1,1,32,32,4533144,2,2,31,31,4533501,3,1,31,31,4533683,2,2,31,31,4533876,1,1,31,31,4534052,3,1,1,-1,4534326,1,1,1,-1,4534503,2,2,31,31,4534806,3,1,35,35,4535002,2,2,31,31,4535237,1,1,35,35,4535380,2,2,35,35,4535820,3,1,36,36,4535997,2,2,35,35,4536237,1,1,36,36,4536450,3,1,1,-1,4536903,1,1,1,-1,4537210,3,1,1,-1,4537532,1,1,1,-1,4537819,3,2,-1,-1,4538361,3,1,1,-1,4538616,1,1,1,-1,4538847,2,2,35,35,4539141,3,1,13,13,4539308,3,1,14,14,4539521,2,2,35,35,4539750,1,1,14,14,4539916,1,1,13,13,4540100,2,2,37,37,4540462,3,1,10,10,4540643,2,2,37,37,4540820,1,1,10,10,4541007,2,2,30,30,4541412,3,1,13,13,4541597,2,2,30,30,4541852,1,1,13,13,4542033,3,1,1,-1,4542359,1,1,1,-1,4542567,2,2,25,25,4542821,3,1,16,16,4543012,3,1,17,17,4543210,2,2,25,25,4543496,1,1,17,17,4543671,1,1,16,16,4543872,3,1,1,-1,4544175,1,1,1,-1,4544383,2,2,22,22,4544687,3,1,15,15,4544887,2,2,22,22,4545091,1,1,15,15,4545245,2,2,20,20,4545570,3,1,13,13,4545762,2,2,20,20,4545973,1,1,13,13,4546166,3,1,1,-1,4546484,1,1,1,-1,4546682,2,2,32,32,4547019,3,1,22,22,4547197,2,2,32,32,4547416,1,1,22,22,4547645,2,2,1,-1,4549631,3,1,1,-1,4550248,1,1,1,-1,4550489,3,1,1,-1,4550957,1,1,1,-1,4551232,2,2,39,39,4551697,3,1,20,20,4551868,2,2,39,39,4552104,1,1,20,20,4552294,3,1,1,-1,4552749,1,1,1,-1,4552992,2,2,39,39,4553501,3,1,33,33,4553736,2,2,39,39,4553946,1,1,33,33,4554115,3,1,1,-1,4554382,1,1,1,-1,4554581,3,1,1,-1,4555001,1,1,1,-1,4555230,3,1,1,-1,4555534,1,1,1,-1,4555812,3,1,1,-1,4556391,1,1,1,-1,4556651,2,2,4,4,4557168,3,1,38,38,4557345,2,2,4,4,4557576,1,1,38,38,4557741,3,1,1,-1,4558055,1,1,1,-1,4558276,2,2,3,3,4558693,3,1,25,25,4558855,2,2,3,3,4559077,1,1,25,25,4559270,3,1,1,-1,4559619,1,1,1,-1,4559852,2,2,6,6,4560182,3,1,15,15,4560353,2,2,6,6,4560551,1,1,15,15,4560731,3,1,1,-1,4560995,1,1,1,-1,4561243,3,1,1,-1,4561762,1,1,1,-1,4561990,2,2,24,24,4562832,3,1,3,3,4563010,2,2,24,24,4563240,1,1,3,3,4563406,3,2,-1,-1,4563830,3,1,1,-1,4564154,1,1,1,-1,4564367,3,1,1,-1,4564743,1,1,1,-1,4565005,2,2,22,22,4565378,3,1,4,4,4565549,2,2,22,22,4565768,1,1,4,4,4565918,2,2,15,15,4566390,3,1,2,2,4566558,2,2,15,15,4566765,1,1,2,2,4566973,3,1,1,-1,4567386,1,1,1,-1,4567618,3,1,1,-1,4568026,1,1,1,-1,4568271,2,2,14,14,4568585,3,1,19,19,4568775,2,2,14,14,4569008,1,1,19,19,4569191,3,1,1,-1,4569679,1,1,1,-1,4569895,3,1,1,-1,4570203,1,1,1,-1,4570539,2,2,21,21,4570982,3,1,30,30,4571171,2,2,21,21,4571394,1,1,30,30,4571577,3,1,1,-1,4571802,1,1,1,-1,4572042,2,2,25,25,4572543,3,1,23,23,4572683,2,2,25,25,4572917,1,1,23,23,4573095,2,2,27,27,4573425,3,1,20,20,4573575,2,2,27,27,4573766,1,1,20,20,4573976,3,1,1,-1,4574241,1,1,1,-1,4574478,3,1,1,-1,4574986,1,1,1,-1,4575229,2,2,36,36,4575660,3,1,32,32,4575831,2,2,36,36,4576041,1,1,32,32,4576216,2,2,38,38,4576550,3,1,30,30,4576759,2,2,38,38,4576952,1,1,30,30,4577158,3,1,1,-1,4577400,1,1,1,-1,4577625,2,2,34,34,4577935,3,1,38,38,4578116,3,1,39,39,4578292,2,2,34,34,4578548,1,1,39,39,4578693,1,1,38,38,4578925,3,1,1,-1,4579323,1,1,1,-1,4579570,3,1,1,-1,4580285,1,1,1,-1,4580555,3,2,-1,-1,4581060,3,1,1,-1,4581341,1,1,1,-1,4581579,2,2,32,32,4581906,3,1,30,30,4582088,2,2,32,32,4582283,1,1,30,30,4582469,2,2,29,29,4582828,3,1,25,25,4583007,2,2,29,29,4583199,1,1,25,25,4583407,3,1,1,-1,4583704,1,1,1,-1,4583893,2,2,38,38,4584214,3,1,20,20,4584395,2,2,38,38,4584639,1,1,20,20,4584862,2,2,37,37,4585271,3,1,17,17,4585484,2,2,37,37,4585689,1,1,17,17,4585919,3,1,1,-1,4586453,1,1,1,-1,4586671,2,2,26,26,4587045,3,1,39,39,4587242,2,2,26,26,4587444,1,1,39,39,4587641,3,1,1,-1,4587979,1,1,1,-1,4588203,2,2,16,16,4588530,3,1,31,31,4588678,2,2,16,16,4588932,1,1,31,31,4589111,3,1,1,-1,4589475,1,1,1,-1,4589685,3,1,1,-1,4590164,1,1,1,-1,4590426,3,1,1,-1,4591279,1,1,1,-1,4591522,3,2,-1,-1,4591957,3,1,1,-1,4592241,1,1,1,-1,4592434,3,1,1,-1,4592951,1,1,1,-1,4593192,2,2,11,11,4593579,3,1,13,13,4593735,2,2,11,11,4593959,1,1,13,13,4594126,3,1,1,-1,4594431,1,1,1,-1,4594637,2,2,6,6,4594973,3,1,21,21,4595119,2,2,6,6,4595318,1,1,21,21,4595497,2,2,2,2,4595898,3,1,17,17,4596066,2,2,2,2,4596297,1,1,17,17,4596537,3,1,1,-1,4596920,1,1,1,-1,4597144,2,2,4,4,4597554,3,1,33,33,4597724,2,2,4,4,4597942,1,1,33,33,4598132,3,1,1,-1,4598403,1,1,1,-1,4598618,2,2,16,16,4598941,3,1,27,27,4599118,2,2,16,16,4599351,1,1,27,27,4599523,3,2,-1,-1,4600786,2,2,1,-1,4602249,2,2,1,-1,4602756,3,1,1,-1,4603097,1,1,1,-1,4603363,2,2,30,30,4603764,3,1,9,9,4603939,2,2,30,30,4604168,1,1,9,9,4604340,3,1,1,-1,4604614,1,1,1,-1,4605058,2,2,1,-1,4605772,1,1,1,-1,4606597,3,1,1,-1,4607233,3,1,1,-1,4607475,1,1,1,-1,4608052,3,1,1,20,4609327,2,2,1,1,4609534,1,1,1,20,4609709,3,1,-20,-1,4609876,2,2,1,1,4610103,1,1,-20,-1,4610279,3,1,1,-1,4610989,1,1,1,-1,4611259,3,2,-1,-1,4611942,3,1,1,-1,4612219,1,1,1,-1,4612384,2,2,16,16,4612721,3,1,26,26,4612903,2,2,16,16,4613104,1,1,26,26,4613286,1,2,-1,-1,4613798,3,1,1,20,4614452,2,2,1,1,4614689,1,1,1,20,4614828,3,1,-20,-1,4615008,2,2,1,1,4615234,1,1,-20,-1,4615410,1,1,1,-1,4615899,1,2,1,-1,4616117,3,1,1,-1,4616354,2,1,7,7,4617187,2,1,8,8,4617408,2,1,9,9,4617583,2,1,12,12,4617991,2,1,23,23,4618510,2,1,24,24,4618692,2,1,30,30,4619145,2,1,35,35,4619621,1,2,2,2,4620132,2,1,1,1,4620766,3,2,2,2,4620935,2,1,1,-1,4621111,2,1,2,2,4621648,2,1,6,6,4622189,2,1,7,7,4622377,2,1,8,8,4622576,2,1,9,9,4622782,2,1,12,12,4623146,2,1,12,12,4623343,2,1,11,11,4623627,2,1,12,12,4623830,2,1,15,15,4624433,2,1,16,16,4624614,2,1,17,17,4624811,2,1,19,19,4625123,2,1,21,21,4625413,2,1,23,23,4626549,2,1,24,24,4626706,2,1,25,25,4626943,2,1,26,26,4627109,2,1,28,28,4627551,2,1,29,29,4627747,2,1,30,30,4627933,2,1,31,31,4628125,2,1,35,35,4628637,2,1,36,36,4628811,2,1,37,37,4629040,2,1,39,39,4629317,2,1,1,-1,4629577,1,2,2,2,4629829,2,1,1,1,4630469,3,2,2,2,4630678,1,1,1,1,4630873,2,1,8,8,4631433,2,1,35,35,4632191,1,2,2,2,4632443,2,1,1,1,4633024,3,2,2,2,4633219,2,1,1,-1,4633415,2,1,8,8,4634093,2,1,15,15,4634610,2,1,23,23,4635166,2,1,28,28,4635587,2,1,30,30,4635773,2,1,35,35,4636241,2,1,39,39,4636613,2,1,1,-1,4636891,1,2,2,2,4637557,2,1,1,1,4637809,3,2,2,2,4637975,1,1,1,1,4638234,1,2,2,2,4638345,2,1,1,1,4638582,3,2,2,2,4638753,2,1,1,-1,4638987,2,1,23,23,4639771,2,1,35,35,4640291,2,1,39,39,4640649,2,1,1,-1,4640842,1,2,1,1,4641315,3,2,1,1,4641910,1,2,2,2,4642079,2,1,1,1,4642373,3,2,2,2,4642573,2,1,2,2,4642808,2,1,5,5,4643122,2,1,8,8,4643487,2,1,9,9,4643704,2,1,11,11,4643983,2,1,13,13,4644249,2,1,16,16,4644649,2,1,17,17,4644823,2,1,27,27,4645394,2,1,28,28,4645609,2,1,30,30,4645830,2,1,38,38,4646311,2,1,39,39,4646506,1,2,3,3,4646800,2,1,1,1,4647860,3,2,3,3,4648421,2,1,1,-1,4648970,2,1,4,4,4649509,2,1,5,5,4649705,2,1,8,8,4650189,2,1,9,9,4650386,2,1,10,10,4650615,2,1,11,11,4650786,2,1,13,13,4651119,2,1,16,16,4651527,2,1,17,17,4651708,2,1,19,19,4651967,2,1,26,26,4652457,2,1,27,27,4652660,2,1,28,28,4652839,2,1,30,30,4653176,2,1,31,31,4653345,2,1,36,36,4653911,2,1,38,38,4654178,2,1,39,39,4654393,2,1,1,-1,4654766,1,2,3,3,4655402,2,1,1,1,4655641,3,2,3,3,4655809,1,1,1,1,4656008,2,1,9,9,4656453,2,1,11,11,4656653,2,1,27,27,4657306,1,2,3,3,4657616,2,1,1,1,4658168,3,2,3,3,4658371,2,1,1,-1,4658622,2,1,2,2,4658997,2,1,5,5,4659345,2,1,8,8,4659719,2,1,9,9,4659944,2,1,11,11,4660128,2,1,19,19,4660609,2,1,27,27,4661179,2,1,1,-1,4661413,1,2,3,3,4661996,2,1,1,1,4662237,3,2,3,3,4662406,1,1,1,1,4662631,2,1,9,9,4663076,1,2,3,3,4663350,2,1,1,1,4663681,3,2,3,3,4663837,2,1,1,-1,4664051,2,1,5,5,4664779,2,1,9,9,4665164,2,1,11,11,4665355,2,1,1,-1,4665763,1,2,3,3,4666106,2,1,1,1,4666398,3,2,3,3,4666542,1,1,1,1,4666742,1,2,3,3,4666912,2,1,1,1,4667136,3,2,3,3,4667278,2,1,1,-1,4667489,2,1,5,5,4667892,2,1,1,-1,4668108,1,2,3,3,4668338,2,1,1,1,4668638,3,2,3,3,4668811,2,1,3,3,4669060,2,1,4,4,4669278,2,1,10,10,4669756,2,1,12,12,4669964,2,1,14,14,4670278,2,1,17,17,4670712,2,1,18,18,4670948,2,1,15,15,4671267,2,1,14,14,4671436,2,1,19,19,4671864,2,1,20,20,4672043,2,1,26,26,4672514,2,1,34,34,4672923,1,2,4,4,4673163,2,1,1,1,4673796,3,2,4,4,4674068,2,1,1,-1,4674270,2,1,3,3,4674825,2,1,2,2,4675045,2,1,8,8,4675511,2,1,10,10,4675845,2,1,11,11,4676034,2,1,12,12,4676207,2,1,14,14,4676589,2,1,15,15,4676790,2,1,16,16,4676995,2,1,17,17,4677192,2,1,19,19,4677501,2,1,20,20,4677680,2,1,24,24,4678104,2,1,26,26,4678552,2,1,27,27,4678724,2,1,32,32,4679198,2,1,33,33,4679405,2,1,34,34,4679576,2,1,36,36,4679869,2,1,39,39,4680221,2,1,1,-1,4680447,1,2,4,4,4680736,2,1,1,1,4681433,3,2,4,4,4681636,1,1,1,1,4681842,2,1,5,5,4682418,1,2,4,4,4682771,2,1,1,1,4683108,3,2,4,4,4683305,2,1,1,-1,4683496,2,1,5,5,4684128,2,1,10,10,4684665,2,1,11,11,4684831,2,1,12,12,4685041,2,1,19,19,4685606,2,1,33,33,4686111,2,1,1,-1,4686333,1,2,4,4,4686992,2,1,1,1,4687230,3,2,4,4,4687379,1,1,1,1,4687571,1,2,4,4,4687712,2,1,1,1,4687945,3,2,4,4,4688123,2,1,1,-1,4688334,2,1,10,10,4688975,2,1,19,19,4689517,2,1,33,33,4690318,2,1,1,-1,4690779,1,2,4,4,4691141,2,1,1,1,4691441,3,2,4,4,4691576,1,1,1,1,4691780,1,2,4,4,4691918,2,1,1,1,4692151,3,2,4,4,4692334,2,1,1,-1,4692589,2,1,10,10,4693072,2,1,1,-1,4693317,1,2,4,4,4693643,2,1,1,1,4693987,3,2,4,4,4694157,2,1,2,2,4694391,2,1,4,4,4694603,2,1,9,9,4695019,2,1,10,10,4695209,2,1,17,17,4695684,2,1,19,19,4696057,2,1,20,20,4696229,2,1,27,27,4696740,2,1,31,31,4697149,2,1,33,33,4697429,2,1,34,34,4697597,2,1,36,36,4697889,1,2,5,5,4698176,2,1,1,1,4699157,3,2,5,5,4699361,2,1,1,-1,4699586,2,1,4,4,4700172,2,1,5,5,4700386,2,1,6,6,4700582,2,1,9,9,4701029,2,1,10,10,4701217,2,1,12,12,4701587,2,1,13,13,4701789,2,1,14,14,4701992,2,1,17,17,4702409,2,1,19,19,4702881,2,1,21,21,4703081,2,1,21,21,4703305,2,1,20,20,4703610,2,1,21,21,4703777,2,1,25,25,4704494,2,1,26,26,4704716,2,1,27,27,4704895,2,1,29,29,4705201,2,1,31,31,4705564,2,1,33,33,4706020,2,1,34,34,4706223,2,1,35,35,4706447,2,1,36,36,4706630,2,1,37,37,4706831,2,1,1,-1,4707101,1,2,5,5,4707682,2,1,1,1,4708019,3,2,5,5,4708186,1,1,1,1,4708410,2,1,10,10,4708931,2,1,19,19,4709412,1,2,5,5,4709677,2,1,1,1,4710142,3,2,5,5,4710333,2,1,1,-1,4710520,2,1,4,4,4710958,2,1,2,2,4711177,2,1,9,9,4711717,2,1,10,10,4711909,2,1,17,17,4712431,2,1,19,19,4712793,2,1,20,20,4712970,2,1,26,26,4713471,2,1,27,27,4713640,2,1,36,36,4714103,2,1,1,-1,4714375,1,2,5,5,4715042,2,1,1,1,4715323,3,2,5,5,4715492,1,1,1,1,4715683,1,2,5,5,4715888,2,1,1,1,4716192,3,2,5,5,4716375,2,1,1,-1,4716581,2,1,9,9,4717089,2,1,27,27,4717784,2,1,36,36,4718206,2,1,1,-1,4718464,1,2,5,5,4719055,2,1,1,1,4719312,3,2,5,5,4719481,1,1,1,1,4719667,1,2,5,5,4719801,2,1,1,1,4720032,3,2,5,5,4720183,2,1,1,-1,4720454,2,1,9,9,4720941,2,1,1,-1,4721145,1,2,5,5,4721534,2,1,1,1,4721802,3,2,5,5,4721994,2,1,3,3,4722228,2,1,13,13,4722721,2,1,14,14,4722887,2,1,16,16,4723150,2,1,17,17,4723319,2,1,22,22,4723805,2,1,24,24,4724027,2,2,6,6,4724556,2,1,32,32,4724853,2,1,32,32,4725291,2,2,6,6,4725439,2,1,32,32,4725623,2,1,31,31,4725824,2,1,33,33,4726043,2,1,37,37,4726474,2,1,39,39,4726713,1,2,6,6,4726962,2,1,1,1,4727596,3,2,6,6,4727811,2,1,1,-1,4728005,2,1,8,8,4728713,2,1,9,9,4728923,2,1,10,10,4729139,2,1,11,11,4729325,2,1,5,5,4729706,2,1,13,13,4730342,2,1,14,14,4730526,2,1,15,15,4730728,2,1,16,16,4730949,2,1,17,17,4731157,2,1,18,18,4731364,2,1,19,19,4731578,2,1,20,20,4731785,2,1,22,22,4732220,2,1,23,23,4732398,2,1,24,24,4732568,2,1,29,29,4733033,2,1,31,31,4733446,2,1,32,32,4733619,2,1,33,33,4733857,2,1,35,35,4734287,2,1,37,37,4734535,2,1,39,39,4734817,2,1,1,-1,4735075,1,2,6,6,4735363,2,1,1,1,4736160,3,2,6,6,4736357,1,1,1,1,4736568,2,1,14,14,4737144,2,1,16,16,4737414,2,1,17,17,4737585,2,1,33,33,4738218,1,2,6,6,4738488,2,1,1,1,4739059,3,2,6,6,4739279,2,1,5,5,4739853,2,1,1,-1,4740111,2,1,7,7,4740473,2,1,14,14,4740978,2,1,16,16,4741231,2,1,17,17,4741386,2,1,22,22,4741814,2,1,23,23,4741997,2,1,29,29,4742553,2,1,31,31,4742943,2,1,32,32,4743119,2,1,32,32,4743288,2,1,37,37,4743751,2,1,32,32,4744086,2,1,33,33,4744392,2,1,1,-1,4744627,1,2,6,6,4745260,2,1,1,1,4745492,3,2,6,6,4745680,1,1,1,1,4745897,2,1,14,14,4746523,1,2,6,6,4746771,2,1,1,1,4747648,3,2,6,6,4747830,2,1,1,-1,4748057,2,1,3,3,4748613,2,1,4,4,4748781,2,1,14,14,4749420,2,1,31,31,4750030,2,1,33,33,4750236,2,1,1,-1,4750505,1,2,6,6,4751079,2,1,1,1,4751322,3,2,6,6,4751490,1,1,1,1,4751683,1,2,6,6,4751820,2,1,1,1,4752068,3,2,6,6,4752260,2,1,1,-1,4752509,2,1,31,31,4753244,2,1,1,-1,4753463,1,2,6,6,4754156,2,1,1,1,4754474,3,2,6,6,4754668,2,1,8,8,4755089,2,1,9,9,4755278,2,1,11,11,4755669,2,1,12,12,4756006,2,1,13,13,4756192,2,1,14,14,4756374,2,1,17,17,4757262,2,1,18,18,4757485,2,1,19,19,4757671,2,1,23,23,4758132,2,1,25,25,4758519,2,1,26,26,4758685,2,1,27,27,4758878,2,1,33,33,4759317,1,2,7,7,4759595,2,1,1,1,4760443,3,2,7,7,4760747,2,1,1,-1,4760949,2,1,3,3,4761452,2,1,5,5,4761830,2,1,7,7,4763364,2,1,8,8,4763562,2,1,9,9,4763747,2,1,10,10,4763973,2,1,11,11,4764135,2,1,12,12,4764337,2,1,13,13,4764526,2,1,14,14,4764716,2,1,17,17,4765129,2,1,18,18,4765332,2,1,19,19,4765527,2,1,23,23,4766004,2,1,24,24,4766183,2,1,25,25,4766389,2,1,26,26,4766582,2,1,27,27,4766815,2,1,31,31,4767265,2,1,32,32,4767440,2,1,33,33,4767617,2,1,36,36,4767955,2,1,1,-1,4768184,1,2,7,7,4768804,2,1,1,1,4769065,3,2,7,7,4769256,1,1,1,1,4769462,2,1,23,23,4770137,2,1,26,26,4770450,1,2,7,7,4771022,2,1,1,1,4771571,3,2,7,7,4771769,2,1,1,-1,4772192,2,1,17,17,4773004,2,1,18,18,4773170,2,1,23,23,4773719,2,1,25,25,4773900,2,1,25,25,4774109,2,1,24,24,4774446,2,1,25,25,4774634,2,1,26,26,4774841,2,1,36,36,4775336,2,1,1,-1,4775576,1,2,7,7,4776252,2,1,1,1,4776473,3,2,7,7,4776641,1,1,1,1,4776841,1,2,7,7,4776997,2,1,1,1,4777207,3,2,7,7,4777414,2,1,1,-1,4777640,2,1,23,23,4778283,2,1,24,24,4778461,2,1,25,25,4778660,2,1,36,36,4779257,2,1,1,-1,4779491,1,2,7,7,4780128,2,1,1,1,4780394,3,2,7,7,4780593,2,1,2,2,4780846,2,1,6,6,4781208,2,1,8,8,4781396,2,1,12,12,4781792,2,1,21,21,4782433,2,1,23,23,4782646,2,1,23,23,4782805,2,1,22,22,4783120,2,1,23,23,4783279,2,1,28,28,4784099,2,1,37,37,4784549,2,1,38,38,4784783,1,2,8,8,4785096,3,2,8,8,4785666,2,1,39,39,4785948,1,2,8,8,4786199,2,1,1,1,4786792,3,2,8,8,4786983,2,1,1,-1,4787189,2,1,2,2,4787600,2,1,5,5,4787971,2,1,6,6,4788137,2,1,8,8,4788445,2,1,9,9,4788642,2,1,12,12,4789439,2,1,13,13,4789626,2,1,15,15,4789905,2,1,18,18,4790308,2,1,20,20,4790727,2,1,21,21,4790953,2,1,22,22,4791155,2,1,23,23,4791309,2,1,27,27,4791905,2,1,28,28,4792111,2,1,29,29,4792296,2,1,31,31,4792647,2,1,32,32,4792825,2,1,35,35,4793205,2,1,37,37,4793466,2,1,39,39,4793748,2,1,1,-1,4793990,1,2,8,8,4794229,2,1,1,1,4794866,3,2,8,8,4795061,1,1,1,1,4795271,2,1,2,2,4795712,2,1,12,12,4796151,2,1,22,22,4796609,2,1,37,37,4797180,1,2,8,8,4797408,2,1,1,1,4798118,3,2,8,8,4798367,2,1,1,-1,4798768,2,1,2,2,4799205,2,1,3,3,4799383,2,1,6,6,4799658,2,1,9,9,4800024,2,1,12,12,4800483,2,1,18,18,4801021,2,1,20,20,4801230,2,1,22,22,4801582,2,1,23,23,4801754,2,1,35,35,4802275,2,1,37,37,4802540,2,1,1,-1,4802784,1,2,8,8,4803400,2,1,1,1,4803666,3,2,8,8,4803845,1,1,1,1,4804028,1,2,8,8,4804581,2,1,1,1,4805181,3,2,8,8,4805374,2,1,1,-1,4805566,2,1,9,9,4806051,2,1,1,-1,4806348,1,2,8,8,4806651,2,1,1,1,4806946,3,2,8,8,4807140,2,1,5,5,4807417,2,1,6,6,4807602,2,1,8,8,4807844,2,1,11,11,4808458,2,1,15,15,4808585,2,1,18,18,4809015,2,1,19,19,4809185,2,1,23,23,4809643,2,1,25,25,4809900,2,1,26,26,4810278,2,1,31,31,4810762,2,1,32,32,4810967,2,1,33,33,4811154,2,1,39,39,4811638,1,2,9,9,4812035,2,1,1,1,4812629,3,2,9,9,4812852,2,1,1,-1,4813044,2,1,2,2,4813680,2,1,4,4,4814071,2,1,5,5,4814273,2,1,6,6,4814448,2,1,7,7,4814662,2,1,8,8,4814850,2,1,11,11,4815364,2,1,13,13,4815568,2,1,15,15,4815916,2,1,16,16,4816115,2,1,18,18,4816488,2,1,19,19,4816701,2,1,20,20,4816868,2,1,23,23,4817340,2,1,25,25,4817615,2,1,26,26,4817806,2,1,30,30,4818260,2,1,31,31,4818458,2,1,32,32,4818666,2,1,33,33,4818845,2,1,37,37,4819338,2,1,39,39,4819588,2,1,1,-1,4819819,1,2,9,9,4820094,2,1,1,1,4820765,3,2,9,9,4820974,1,1,1,1,4821177,2,1,11,11,4821625,2,1,18,18,4822089,2,1,25,25,4822714,1,2,9,9,4822974,2,1,1,1,4823486,3,2,10,10,4823765,2,1,1,-1,4823915,2,1,1,-1,4824500,1,2,10,10,4824931,3,2,9,9,4825165,2,1,1,-1,4825343,2,1,6,6,4825913,2,1,11,11,4826325,2,1,16,16,4826716,2,1,18,18,4827161,2,1,23,23,4827417,2,1,25,25,4827726,2,1,26,26,4827897,2,1,33,33,4828420,2,1,37,37,4828696,2,1,1,-1,4828931,1,2,9,9,4829696,2,1,1,1,4829915,3,2,9,9,4830090,1,1,1,1,4830307,2,1,11,11,4830833,1,2,9,9,4831147,2,1,1,1,4831551,3,2,9,9,4831758,2,1,1,-1,4831954,2,1,6,6,4832639,2,1,11,11,4833010,2,1,16,16,4833373,2,1,26,26,4833869,2,1,33,33,4834242,2,1,1,-1,4834480,1,2,9,9,4835088,2,1,1,1,4835528,3,2,9,9,4835851,2,1,2,2,4836513,2,1,7,7,4836990,2,1,9,9,4837226,2,1,13,13,4837725,2,1,15,15,4837971,2,1,16,16,4838134,2,1,26,26,4838717,2,1,31,31,4839120,2,1,32,32,4839333,2,1,34,34,4839565,2,1,38,38,4839970,2,1,39,39,4840164,1,2,11,11,4840440,3,2,11,11,4841149,1,2,10,10,4841364,2,1,1,1,4841632,3,2,10,10,4841826,2,1,1,-1,4842058,2,1,2,2,4842644,2,1,4,4,4842843,2,1,7,7,4843321,2,1,8,8,4843499,2,1,9,9,4843694,2,1,11,11,4843971,2,1,13,13,4844207,2,1,15,15,4844540,2,1,16,16,4844719,2,1,23,23,4845361,2,1,24,24,4845555,2,1,25,25,4845756,2,1,26,26,4845930,2,1,27,27,4846146,2,1,28,28,4846537,2,1,30,30,4846955,2,1,31,31,4847129,2,1,32,32,4847315,2,1,34,34,4847652,2,1,38,38,4848113,2,1,39,39,4848326,2,1,1,-1,4848578,1,2,9,9,4849226,2,1,1,1,4849488,2,1,1,1,4850030,3,2,9,9,4850249,1,2,10,10,4850440,2,1,1,1,4850653,3,2,10,10,4850845,1,1,1,1,4851051,2,1,32,32,4851711,2,1,39,39,4852110,1,2,10,10,4852381,2,1,1,1,4852968,3,2,10,10,4853193,2,1,1,-1,4853380,2,1,13,13,4854190,2,1,26,26,4854821,2,1,32,32,4855144,2,1,39,39,4855640,2,1,1,-1,4855879,1,2,10,10,4856436,2,1,1,1,4856702,3,2,10,10,4856871,1,1,1,1,4857104,2,1,39,39,4857911,1,2,10,10,4858153,2,1,1,1,4858760,3,2,10,10,4858964,2,1,1,-1,4859214,2,1,32,32,4859881,2,1,-1,-1,4860318,2,1,39,39,4860702,2,1,-1,-1,4860863,2,1,1,-1,4861116,1,2,10,10,4861718,2,1,1,1,4862052,3,2,10,10,4862239,1,1,1,1,4862440,1,2,10,10,4862574,2,1,1,1,4862803,3,2,10,10,4863001,2,1,1,-1,4863249,2,1,39,39,4863853,2,1,1,-1,4864091,1,2,11,11,4864786,2,1,1,1,4865005,2,1,1,1,4865390,3,2,11,11,4865550,1,2,10,10,4865718,2,1,1,1,4865940,3,2,10,10,4866106,2,1,2,2,4866330,2,1,11,11,4866804,2,1,25,25,4867554,2,1,30,30,4867906,2,1,37,37,4868336,1,2,11,11,4868554,2,1,1,1,4870203,3,2,11,11,4870450,2,1,1,-1,4870682,2,1,4,4,4871288,2,1,6,6,4871705,2,1,7,7,4871889,2,1,8,8,4872073,2,1,9,9,4872282,2,1,11,11,4872763,2,1,12,12,4872925,2,1,13,13,4873106,2,1,15,15,4873429,2,1,17,17,4873670,2,1,20,20,4874117,2,1,23,23,4874590,2,1,24,24,4874762,2,1,25,25,4874965,2,1,26,26,4875130,2,1,28,28,4875609,2,1,30,30,4875846,2,1,33,33,4876292,2,1,36,36,4876626,2,1,37,37,4876799,2,1,1,-1,4877060,1,2,11,11,4877703,2,1,1,1,4877943,3,2,11,11,4878114,1,1,1,1,4878332,2,1,11,11,4878876,2,1,30,30,4879499,2,1,37,37,4879914,1,2,11,11,4880149,2,1,1,1,4880726,3,2,11,11,4880961,2,1,1,-1,4881276,2,1,3,3,4881752,2,1,11,11,4882153,2,1,15,15,4882460,2,1,20,20,4882934,2,1,25,25,4883456,2,1,28,28,4883727,2,1,30,30,4883959,2,1,36,36,4884406,2,1,37,37,4884584,2,1,1,-1,4884801,1,2,11,11,4885397,2,1,1,1,4885684,3,2,11,11,4885855,1,1,1,1,4886066,2,1,37,37,4886776,1,2,11,11,4887042,2,1,1,1,4887653,3,2,11,11,4887868,2,1,1,-1,4888245,2,1,2,2,4888799,2,1,30,30,4889463,2,1,36,36,4889886,2,1,37,37,4890031,2,1,1,-1,4890257,1,2,11,11,4890942,2,1,1,1,4891183,3,2,11,11,4891334,1,1,1,1,4891524,1,2,11,11,4891670,2,1,1,1,4891895,3,2,11,11,4892065,2,1,1,-1,4892312,2,1,30,30,4893096,2,1,1,-1,4893330,1,2,11,11,4893863,2,1,1,1,4894459,3,2,11,11,4894692,2,1,2,2,4894970,2,1,4,4,4895184,2,1,7,7,4895576,2,1,10,10,4895829,2,1,16,16,4896272,2,1,17,17,4896460,2,1,19,19,4896699,2,1,23,23,4897161,2,1,27,27,4897624,2,1,28,28,4897795,2,1,29,29,4897965,2,1,32,32,4898347,2,1,33,33,4898531,2,1,35,35,4898782,2,1,38,38,4899191,2,1,39,39,4899362,1,2,12,12,4899715,2,1,1,1,4900290,3,2,12,12,4900514,2,1,1,-1,4900706,2,1,2,2,4901215,2,1,3,3,4901404,2,1,4,4,4901578,2,1,7,7,4901975,2,1,8,8,4902179,2,1,9,9,4902383,2,1,10,10,4902537,2,1,13,13,4902989,2,1,14,14,4903170,2,1,16,16,4903616,2,1,17,17,4903784,2,1,19,19,4904029,2,1,19,19,4904235,2,1,18,18,4904963,2,1,19,19,4905180,2,1,21,21,4905451,2,1,23,23,4905845,2,1,25,25,4906051,2,1,27,27,4906401,2,1,28,28,4906612,2,1,29,29,4906779,2,1,32,32,4907208,2,1,33,33,4907402,2,1,34,34,4907615,2,1,35,35,4907794,2,1,36,36,4908020,2,1,38,38,4908376,2,1,39,39,4908600,2,1,36,36,4908916,2,1,1,-1,4909172,1,2,12,12,4909462,2,1,1,1,4910132,3,2,12,12,4910360,1,1,1,1,4910618,2,1,4,4,4911013,2,1,7,7,4911317,2,1,10,10,4911751,2,1,16,16,4912394,2,1,19,19,4912569,2,1,23,23,4912967,2,1,27,27,4913482,2,1,28,28,4913680,2,1,29,29,4913849,3,1,33,33,4914405,1,2,12,12,4914525,3,2,12,12,4915532,3,1,33,33,4915725,1,2,12,12,4916006,2,1,1,1,4917024,3,2,12,12,4917280,2,1,1,-1,4917479,2,1,4,4,4917996,2,1,5,5,4918276,2,1,7,7,4918675,2,1,10,10,4919083,2,1,14,14,4919592,2,1,16,16,4919775,2,1,19,19,4920242,2,1,23,23,4920678,2,1,27,27,4921183,2,1,28,28,4921349,2,1,29,29,4921522,2,1,33,33,4921941,2,1,36,36,4922236,2,1,1,-1,4922479,1,2,12,12,4923116,2,1,1,1,4923397,3,2,12,12,4923593,1,1,1,1,4923802,2,1,33,33,4924388,1,2,12,12,4924646,2,1,1,1,4925154,3,2,12,12,4925364,2,1,1,-1,4925567,2,1,5,5,4926190,2,1,7,7,4926395,2,1,14,14,4926958,2,1,19,19,4927400,2,1,28,28,4927909,2,1,33,33,4928356,2,1,1,-1,4928773,1,2,12,12,4929292,2,1,1,1,4929534,3,2,12,12,4929706,2,1,2,2,4929980,2,1,3,3,4930154,2,1,5,5,4930434,2,1,8,8,4930888,2,1,11,11,4931436,2,1,15,15,4931814,2,1,17,17,4932081,2,1,19,19,4932436,2,1,20,20,4932627,2,1,23,23,4933010,2,1,26,26,4933364,2,1,27,27,4933536,2,1,34,34,4934165,2,1,38,38,4934463,2,1,37,37,4934858,1,2,13,13,4935161,2,1,1,1,4935792,3,2,13,13,4936017,2,1,1,-1,4936215,2,1,3,3,4936740,2,1,5,5,4937030,2,1,6,6,4937212,2,1,8,8,4937545,2,1,9,9,4937744,2,1,11,11,4938062,2,1,12,12,4938232,2,1,15,15,4938694,2,1,17,17,4939004,2,1,19,19,4939615,2,1,20,20,4939787,2,1,23,23,4940294,2,1,25,25,4940697,2,1,26,26,4940886,2,1,27,27,4941079,2,1,28,28,4941278,2,1,34,34,4941699,2,1,36,36,4942074,2,1,37,37,4942273,2,1,38,38,4942468,2,1,39,39,4942704,2,1,1,-1,4942974,1,2,13,13,4943291,2,1,1,1,4944230,3,2,13,13,4944488,1,1,1,1,4944733,2,1,11,11,4945162,2,1,17,17,4945528,2,1,19,19,4945733,2,1,37,37,4946455,1,2,13,13,4946709,2,1,1,1,4947404,3,2,13,13,4947604,2,1,1,-1,4947808,2,1,2,2,4948283,2,1,6,6,4948502,2,1,8,8,4948999,2,1,6,6,4949149,2,1,5,5,4949391,2,1,11,11,4949859,2,1,17,17,4950278,2,1,19,19,4950540,2,1,20,20,4950743,2,1,37,37,4951353,2,1,38,38,4951531,2,1,1,-1,4951912,1,2,13,13,4952153,2,1,1,1,4952756,3,2,13,13,4952947,1,1,1,1,4953151,1,2,13,13,4953841,2,1,1,1,4954343,3,2,13,13,4954544,2,1,1,-1,4954711,2,1,17,17,4955495,2,1,19,19,4955772,2,1,1,-1,4956206,1,2,13,13,4956745,2,1,1,1,4956950,3,2,13,13,4957131,2,1,3,3,4957407,2,1,4,4,4957570,2,1,10,10,4958048,2,1,17,17,4958479,2,1,21,21,4958791,2,1,20,20,4959230,2,1,21,21,4959405,2,1,23,23,4959643,2,1,26,26,4960040,2,1,27,27,4960213,2,1,33,33,4960664,2,1,36,36,4960966,1,2,14,14,4961232,2,1,1,1,4961789,3,2,14,14,4961985,2,1,1,-1,4962181,2,1,2,2,4962657,2,1,4,4,4962895,2,1,6,6,4963229,2,1,7,7,4963425,2,1,10,10,4963706,2,1,16,16,4964158,2,1,17,17,4964348,2,1,20,20,4964804,2,1,21,21,4965001,2,1,22,22,4965209,2,1,23,23,4965417,2,1,25,25,4965621,2,1,26,26,4965842,2,1,27,27,4966119,2,1,28,28,4966331,2,1,24,24,4966755,2,1,30,30,4967260,2,1,32,32,4967532,2,1,33,33,4967724,2,1,34,34,4967938,2,1,36,36,4968484,2,1,37,37,4968689,2,1,38,38,4968933,2,1,39,39,4969108,2,1,1,-1,4969368,1,2,14,14,4969686,2,1,1,1,4970353,3,2,14,14,4970553,1,1,1,1,4970777,1,2,14,14,4971788,2,1,1,1,4972436,3,2,14,14,4972628,2,1,1,-1,4972836,2,1,3,3,4973344,2,1,6,6,4973586,2,1,17,17,4974206,2,1,23,23,4974640,2,1,24,24,4974787,2,1,30,30,4975244,2,1,32,32,4975478,2,1,37,37,4975954,2,1,39,39,4976164,2,1,1,-1,4976404,1,2,14,14,4977396,2,1,1,1,4977626,3,2,14,14,4977786,1,1,1,1,4977996,1,2,14,14,4978142,2,1,1,1,4978374,3,2,14,14,4978659,1,2,14,14,4979828,2,1,1,1,4980033,3,2,14,14,4980174,1,1,1,1,4980374,1,2,14,14,4980512,2,1,1,1,4980756,3,2,14,14,4980950,2,1,1,-1,4981211,2,1,39,39,4981876,2,1,1,-1,4982142,1,2,14,14,4982703,2,1,1,1,4982975,3,2,14,14,4983184,2,1,8,8,4983698,2,1,11,11,4984168,2,1,12,12,4984371,2,1,15,15,4985074,2,1,18,18,4985316,2,1,22,22,4985710,2,1,23,23,4985894,2,1,32,32,4986377,2,1,33,33,4986556,2,1,37,37,4986981,2,1,37,37,4987161,2,1,38,38,4987486,2,1,37,37,4987676,2,1,36,36,4987881,1,2,15,15,4988166,2,1,1,1,4988717,3,2,15,15,4988914,2,1,1,-1,4989120,2,1,5,5,4989682,2,1,6,6,4989910,2,1,8,8,4990344,2,1,9,9,4990527,2,1,10,10,4990718,2,1,11,11,4990890,2,1,12,12,4991123,2,1,13,13,4991346,2,1,14,14,4991570,2,1,15,15,4991782,2,1,15,15,4991985,2,1,17,17,4992211,2,1,16,16,4992692,2,1,15,15,4992889,2,1,18,18,4993175,2,1,20,20,4993811,2,1,22,22,4994017,2,1,24,24,4994256,2,1,24,24,4994428,2,1,23,23,4994722,2,1,24,24,4994910,2,1,27,27,4995349,2,1,28,28,4995504,2,1,32,32,4995913,2,1,33,33,4996085,2,1,36,36,4996535,2,1,37,37,4996702,2,1,38,38,4996907,2,1,1,-1,4997178,1,2,15,15,4997490,2,1,1,1,4998158,3,2,15,15,4998345,1,1,1,1,4998564,2,1,15,15,4999070,2,1,33,33,4999686,1,2,15,15,4999915,2,1,1,1,5000429,3,2,15,15,5000650,2,1,1,-1,5000873,2,1,2,2,5001274,2,1,4,4,5001482,2,1,6,6,5001814,2,1,9,9,5002138,2,1,12,12,5002509,2,1,13,13,5002705,2,1,14,14,5002888,2,1,15,15,5003093,2,1,17,17,5003467,2,1,24,24,5003958,2,1,28,28,5004278,2,1,32,32,5004679,2,1,33,33,5004855,2,1,37,37,5005196,2,1,1,-1,5005452,1,2,15,15,5005736,2,1,1,1,5006444,3,2,15,15,5006655,1,1,1,1,5006876,2,1,15,15,5007450,2,1,33,33,5008317,1,2,15,15,5008603,2,1,1,1,5009109,3,2,15,15,5009295,2,1,1,-1,5009492,2,1,6,6,5010170,2,1,9,9,5010446,2,1,13,13,5010895,2,1,14,14,5011084,2,1,15,15,5011299,2,1,24,24,5011767,2,1,33,33,5012224,2,1,37,37,5012550,2,1,1,-1,5012792,1,2,15,15,5013070,2,1,1,1,5013631,3,2,15,15,5013822,1,1,1,1,5014041,2,1,33,33,5014662,1,2,15,15,5014941,2,1,1,1,5015450,3,2,15,15,5015682,2,1,1,-1,5015891,2,1,6,6,5016520,2,1,9,9,5016759,2,1,13,13,5017128,2,1,33,33,5017910,2,1,37,37,5018185,2,1,1,-1,5018418,1,2,15,15,5018691,2,1,1,1,5019316,3,2,15,15,5019538,2,1,2,2,5019814,2,1,3,3,5020024,2,1,4,4,5020191,2,1,8,8,5020637,2,1,9,9,5020836,2,1,10,10,5021005,2,1,12,12,5021386,2,1,14,14,5021638,2,1,16,16,5021884,2,1,25,25,5022495,2,1,30,30,5022933,2,1,31,31,5023112,2,1,33,33,5023383,1,2,16,16,5023676,2,1,1,1,5024302,3,2,16,16,5024527,2,1,1,-1,5024763,2,1,2,2,5025254,2,1,4,4,5025461,2,1,6,6,5025866,2,1,7,7,5026054,2,1,8,8,5026260,2,1,9,9,5026496,2,1,10,10,5026674,2,1,12,12,5027116,2,1,13,13,5027311,2,1,14,14,5027515,2,1,15,15,5027731,2,1,16,16,5027967,2,1,17,17,5028173,2,1,18,18,5028378,2,1,19,19,5028616,2,1,22,22,5029050,2,1,24,24,5029497,2,1,25,25,5029662,2,1,28,28,5030136,2,1,30,30,5030526,2,1,31,31,5030728,2,1,32,32,5030938,2,1,33,33,5031121,2,1,36,36,5031575,2,1,1,-1,5031835,1,2,16,16,5032154,2,1,1,1,5032737,3,2,16,16,5032966,1,1,1,1,5033175,2,1,4,4,5033599,2,1,8,8,5033907,2,1,17,17,5034389,2,1,16,16,5034963,2,1,30,30,5035450,1,2,16,16,5035684,2,1,1,1,5036224,3,2,16,16,5036458,2,1,1,-1,5036664,2,1,3,3,5037181,2,1,4,4,5037367,2,1,8,8,5037887,2,1,12,12,5038199,2,1,16,16,5038700,2,1,25,25,5039272,2,1,30,30,5039696,2,1,32,32,5039933,2,1,36,36,5040346,2,1,1,-1,5040661,1,2,16,16,5041241,2,1,1,1,5041482,3,2,16,16,5041659,1,1,1,1,5041893,2,1,8,8,5042397,1,2,16,16,5042633,2,1,1,1,5042956,3,2,16,16,5043179,2,1,1,-1,5043413,2,1,4,4,5043887,2,1,3,3,5044069,2,1,8,8,5044476,2,1,11,11,5044806,2,1,12,12,5045284,2,1,11,11,5045471,2,1,25,25,5046041,2,1,32,32,5046454,2,1,36,36,5046782,2,1,1,-1,5047002,1,2,16,16,5047635,2,1,1,1,5047865,3,2,16,16,5048018,1,1,1,1,5048244,2,1,8,8,5048653,1,2,16,16,5048919,2,1,1,1,5049291,3,2,16,16,5049632,2,1,1,-1,5049859,2,1,3,3,5050454,2,1,8,8,5050789,2,1,25,25,5051366,2,1,1,-1,5051580,1,2,16,16,5052163,2,1,1,1,5052436,3,2,16,16,5052623,2,1,2,2,5052834,2,1,9,9,5053211,2,1,18,18,5053672,2,1,23,23,5054052,2,1,29,29,5054526,2,1,32,32,5054880,2,1,35,35,5055243,2,1,39,39,5055675,1,2,17,17,5055929,2,1,1,1,5056697,3,2,17,17,5056907,2,1,1,-1,5057374,2,1,3,3,5057776,2,1,8,8,5058202,2,1,10,10,5058424,2,1,9,9,5058678,2,1,8,8,5058887,2,1,13,13,5059316,2,1,17,17,5059681,2,1,18,18,5059858,2,1,20,20,5060171,2,1,22,22,5060574,2,1,23,23,5060751,2,1,29,29,5061214,2,1,32,32,5061603,2,1,33,33,5061783,2,1,35,35,5062063,2,1,38,38,5062546,2,1,39,39,5062717,2,1,1,-1,5062974,1,2,17,17,5063673,2,1,1,1,5064029,3,2,17,17,5064237,1,1,1,1,5064450,2,1,23,23,5065060,2,1,29,29,5065537,2,1,32,32,5065812,2,1,35,35,5066123,1,2,17,17,5066387,2,1,1,1,5067052,3,2,17,17,5067290,2,1,1,-1,5067526,2,1,2,2,5068051,2,1,9,9,5068475,2,1,10,10,5068677,2,1,17,17,5069185,2,1,20,20,5069427,2,1,23,23,5069760,2,1,29,29,5070287,2,1,32,32,5070525,2,1,35,35,5070827,2,1,38,38,5071169,2,1,1,-1,5071416,1,2,17,17,5072028,2,1,1,1,5072264,3,2,17,17,5072420,1,1,1,1,5072643,2,1,29,29,5073326,1,2,17,17,5073587,2,1,1,1,5074080,3,2,17,17,5074297,2,1,1,-1,5074519,2,1,10,10,5075222,2,1,17,17,5075627,2,1,20,20,5075866,2,1,29,29,5076541,2,1,35,35,5076984,2,1,38,38,5077258,2,1,1,-1,5077519,1,2,17,17,5078126,2,1,1,1,5078343,3,2,17,17,5078498,1,1,1,1,5078718,1,2,17,17,5078840,2,1,1,1,5079079,3,2,17,17,5079233,2,1,1,-1,5079488,2,1,20,20,5080235,2,1,35,35,5080827,2,1,38,38,5081087,2,1,1,-1,5081385,1,2,17,17,5081696,2,1,1,1,5082340,3,2,17,17,5082651,2,1,3,3,5082917,2,1,4,4,5083087,2,1,9,9,5083503,2,1,18,18,5083969,2,1,20,20,5084313,2,1,21,21,5084515,2,1,22,22,5084682,2,1,25,25,5085122,2,1,27,27,5085400,2,1,27,27,5085914,2,1,28,28,5086086,2,1,30,30,5087306,2,1,31,31,5087506,2,1,32,32,5087701,2,1,34,34,5088209,2,1,37,37,5088733,2,1,37,37,5088786,2,1,36,36,5089228,2,1,37,37,5089395,1,2,18,18,5089736,2,1,1,1,5090342,3,2,18,18,5090531,2,1,1,-1,5090735,2,1,4,4,5091177,2,1,9,9,5091906,2,1,11,11,5091986,2,1,13,13,5092168,2,1,17,17,5092766,2,1,18,18,5092955,2,1,19,19,5093186,2,1,20,20,5093368,2,1,21,21,5093596,2,1,22,22,5093785,2,1,24,24,5094239,2,1,25,25,5094426,2,1,27,27,5094791,2,1,28,28,5094961,2,1,29,29,5095194,2,1,30,30,5095398,2,1,31,31,5095615,2,1,32,32,5095815,2,1,34,34,5096351,2,1,35,35,5096528,2,1,36,36,5096750,2,1,37,37,5096961,2,1,39,39,5097295,2,1,1,-1,5097570,1,2,18,18,5097849,2,1,1,1,5098993,3,2,18,18,5100522,1,1,1,1,5100731,2,1,4,4,5101119,2,1,30,30,5101815,2,1,36,36,5102203,1,2,18,18,5102466,2,1,1,1,5102984,3,2,18,18,5103211,2,1,1,-1,5103451,2,1,4,4,5103939,2,1,9,9,5104328,2,1,11,11,5104565,2,1,17,17,5105060,2,1,18,18,5105229,2,1,20,20,5105489,2,1,25,25,5105964,2,1,30,30,5106307,2,1,32,32,5106519,2,1,36,36,5106952,2,1,1,-1,5107253,1,2,18,18,5107857,2,1,1,1,5108099,3,2,18,18,5108321,1,1,1,1,5108549,1,2,18,18,5109406,2,1,1,1,5109630,3,2,18,18,5109846,2,1,1,-1,5110031,2,1,3,3,5110508,2,1,11,11,5110919,2,1,18,18,5111308,2,1,17,17,5111638,2,1,32,32,5112238,2,1,1,-1,5112553,1,2,18,18,5113294,2,1,1,1,5113579,3,2,18,18,5113820,2,1,1,-1,5114276,2,1,1,-1,5114615,1,1,1,1,5115332,1,2,18,18,5115532,2,1,1,1,5115787,3,2,18,18,5115957,2,1,1,-1,5116194,2,1,32,32,5116771,2,1,1,-1,5117071,1,2,18,18,5117794,2,1,1,1,5118009,3,2,18,18,5118180,2,1,10,10,5118700,2,1,13,13,5118904,2,1,16,16,5119233,2,1,23,23,5119751,2,1,26,26,5120165,2,1,27,27,5120317,2,1,33,33,5120743,2,1,38,38,5121106,1,2,19,19,5121360,2,1,1,1,5122053,3,2,19,19,5122331,2,1,1,-1,5122562,2,1,2,2,5123182,2,1,3,3,5123375,2,1,4,4,5123591,2,1,9,9,5123993,2,1,10,10,5124167,2,1,12,12,5124463,2,1,13,13,5124675,2,1,14,14,5124847,2,1,16,16,5125177,2,1,23,23,5125653,2,1,25,25,5126104,2,1,26,26,5126306,2,1,27,27,5126499,2,1,28,28,5126708,2,1,33,33,5127170,2,1,38,38,5127659,2,1,1,-1,5127887,1,2,19,19,5128164,2,1,1,1,5128876,3,2,19,19,5129089,1,1,1,1,5129315,2,1,10,10,5129787,2,1,23,23,5130332,2,1,27,27,5130602,2,1,33,33,5131045,1,2,19,19,5131318,2,1,1,1,5131835,3,2,19,19,5132035,2,1,1,-1,5132239,2,1,9,9,5132990,2,1,10,10,5133192,2,1,12,12,5133460,2,1,14,14,5133737,2,1,23,23,5134224,2,1,25,25,5134423,2,1,27,27,5134756,2,1,28,28,5134921,2,1,33,33,5135373,2,1,38,38,5135782,2,1,1,-1,5136026,1,2,19,19,5136280,2,1,1,1,5136931,3,2,19,19,5137171,1,1,1,1,5137366,2,1,10,10,5137940,1,2,19,19,5138198,2,1,1,1,5138608,3,2,19,19,5138926,2,1,1,-1,5139133,2,1,10,10,5139845,2,1,12,12,5140048,2,1,14,14,5140275,2,1,23,23,5140817,2,1,27,27,5141184,2,1,28,28,5141343,2,1,1,-1,5141583,1,2,19,19,5142230,2,1,1,1,5142470,3,2,19,19,5142630,1,1,1,1,5142844,2,1,10,10,5143314,1,2,19,19,5143551,2,1,1,1,5144034,3,2,19,19,5144220,2,1,1,-1,5144432,2,1,10,10,5144884,2,1,23,23,5145545,2,1,29,29,5145868,2,1,1,-1,5146123,2,1,29,29,5146574,2,1,28,28,5146919,1,2,19,19,5147218,2,1,1,1,5147860,3,2,19,19,5148084,2,1,4,4,5148337,2,1,6,6,5148560,2,1,11,11,5149031,2,1,12,12,5149207,2,1,13,13,5149374,2,1,15,15,5149688,2,1,16,16,5149896,2,1,23,23,5150458,2,1,26,26,5150728,2,1,34,34,5151204,2,1,39,39,5151746,1,2,21,21,5151986,3,2,21,21,5152573,1,2,20,20,5152771,2,1,1,1,5153090,3,2,20,20,5153324,2,1,1,-1,5153757,2,1,2,2,5154195,2,1,4,4,5154412,2,1,6,6,5154806,2,1,8,8,5155254,2,1,10,10,5155686,2,1,11,11,5155898,2,1,13,13,5156195,2,1,13,13,5156313,2,1,12,12,5156583,2,1,13,13,5156786,2,1,15,15,5157469,2,1,16,16,5157674,2,1,17,17,5157856,2,1,22,22,5158314,2,1,23,23,5158487,2,1,25,25,5158818,2,1,26,26,5159015,2,1,27,27,5159199,2,1,29,29,5159605,2,1,31,31,5160013,2,1,32,32,5160202,2,1,34,34,5160657,2,1,35,35,5160841,2,1,37,37,5161076,2,1,36,36,5161489,2,1,39,39,5161806,2,1,1,-1,5162150,1,2,20,20,5162874,2,1,1,1,5163228,3,2,20,20,5163455,1,1,1,1,5163689,1,2,19,19,5164314,3,2,19,19,5164787,1,2,20,20,5164964,2,1,1,1,5165233,3,2,20,20,5165396,2,1,1,-1,5165591,2,1,3,3,5166098,2,1,11,11,5166557,2,1,12,12,5166745,2,1,13,13,5166926,2,1,15,15,5167359,2,1,16,16,5167542,2,1,23,23,5168003,2,1,23,23,5168171,2,1,22,22,5168531,2,1,23,23,5168716,2,1,32,32,5169192,2,1,35,35,5169499,2,1,39,39,5169873,2,1,1,-1,5170120,1,2,20,20,5170381,2,1,1,1,5171023,3,2,20,20,5171225,1,1,1,1,5171443,1,2,20,20,5171855,2,1,1,1,5172280,3,2,20,20,5172449,2,1,1,-1,5172653,2,1,3,3,5173259,2,1,12,12,5173741,2,1,1,-1,5174190,1,2,20,20,5174647,2,1,1,1,5174892,3,2,20,20,5175061,2,1,7,7,5175581,2,1,11,11,5176014,2,1,12,12,5176184,2,1,13,13,5176381,2,1,16,16,5176719,2,1,19,19,5177121,2,1,22,22,5177367,2,1,30,30,5177879,2,1,31,31,5178073,2,1,32,32,5178261,2,1,34,34,5178585,2,1,36,36,5178885,1,2,21,21,5179142,2,1,1,1,5180091,3,2,21,21,5180273,2,1,13,13,5181021,2,1,20,20,5181463,2,1,22,22,5181723,2,1,23,23,5181905,2,1,32,32,5182496,2,1,35,35,5182729,2,1,34,34,5183411,2,1,35,35,5183606,1,2,21,21,5183983,2,1,1,1,5184621,3,2,21,21,5184833,1,1,1,1,5185041,2,1,22,22,5185627,2,1,31,31,5186103,2,1,34,34,5186361,1,2,21,21,5186610,2,1,1,1,5187206,3,2,21,21,5187441,2,1,3,3,5188072,2,1,4,4,5188265,2,1,7,7,5188580,2,1,12,12,5189102,2,1,16,16,5189455,2,1,21,21,5189893,2,1,33,33,5190369,2,1,36,36,5190642,2,1,39,39,5191012,1,2,21,21,5191277,2,1,1,1,5191903,3,2,21,21,5192141,1,1,1,1,5192351,2,1,31,31,5192983,1,2,21,21,5193221,2,1,1,1,5193793,3,2,21,21,5194015,2,1,2,2,5194658,2,1,3,3,5194839,2,1,6,6,5195220,2,1,7,7,5195396,2,1,11,11,5195825,2,1,14,14,5196095,2,1,16,16,5196473,2,1,19,19,5196979,2,1,22,22,5197389,2,1,24,24,5197603,2,1,26,26,5198071,2,1,27,27,5198250,2,1,28,28,5198439,2,1,31,31,5199063,2,1,34,34,5199461,2,1,35,35,5199648,2,1,37,37,5200007,2,1,39,39,5200286,1,2,21,21,5200585,2,1,1,1,5201135,3,2,21,21,5201364,1,1,1,1,5201550,2,1,31,31,5202193,1,2,21,21,5202436,2,1,1,1,5203024,3,2,21,21,5203238,2,1,1,-1,5203446,2,1,15,15,5204111,2,1,31,31,5204826,2,1,31,31,5205014,2,1,30,30,5205266,2,1,31,31,5205435,2,1,38,38,5205930,2,1,1,-1,5206148,1,2,21,21,5206428,2,1,1,1,5207220,3,2,21,21,5207504,2,1,6,6,5207985,2,1,8,8,5208192,2,1,14,14,5208678,2,1,17,17,5209014,2,1,19,19,5209321,2,1,21,21,5209727,2,1,22,22,5209898,2,1,23,23,5210071,2,1,30,30,5210641,2,1,32,32,5210853,2,1,36,36,5211357,2,1,37,37,5211548,2,1,38,38,5211722,1,2,22,22,5212091,2,1,1,1,5212953,3,2,22,22,5213179,2,1,5,5,5213823,2,1,6,6,5214358,2,1,8,8,5214566,2,1,11,11,5214978,2,1,11,11,5215181,2,1,10,10,5215454,2,1,11,11,5215632,2,1,19,19,5216339,2,1,23,23,5216870,2,1,23,23,5217093,2,1,24,24,5217324,2,1,22,22,5217602,2,1,23,23,5217798,2,1,26,26,5218286,2,1,28,28,5218512,2,1,30,30,5218719,2,1,34,34,5219306,2,1,36,36,5219663,2,1,37,37,5219836,2,1,38,38,5220016,1,2,22,22,5220367,2,1,1,1,5221047,3,2,22,22,5221269,1,1,1,1,5221473,2,1,6,6,5221931,2,1,30,30,5222523,2,1,36,36,5222945,1,2,22,22,5223224,2,1,1,1,5223829,3,2,22,22,5224054,2,1,5,5,5224513,2,1,8,8,5224815,2,1,10,10,5225027,2,1,14,14,5225551,2,1,16,16,5225753,2,1,20,20,5226256,2,1,23,23,5226567,2,1,25,25,5226863,2,1,27,27,5227249,2,1,29,29,5227470,2,1,32,32,5227954,2,1,34,34,5228216,2,1,37,37,5228519,1,2,22,22,5228881,2,1,1,1,5229493,3,2,22,22,5229696,1,1,1,1,5229911,1,2,22,22,5230297,2,1,1,1,5230665,3,2,22,22,5230882,2,1,1,-1,5231100,2,1,4,4,5231541,2,1,6,6,5231783,2,1,7,7,5231977,2,1,17,17,5232569,2,1,21,21,5232870,2,1,30,30,5233321,2,1,36,36,5233719,2,1,1,-1,5234021,1,2,22,22,5234727,2,1,1,1,5234940,3,2,22,22,5235077,1,1,1,1,5235259,1,2,22,22,5235407,2,1,1,1,5235618,3,2,22,22,5235800,2,1,1,-1,5235986,2,1,21,21,5236538,2,1,36,36,5237095,2,1,1,-1,5237304,1,2,22,22,5237614,2,1,1,1,5238232,3,2,22,22,5238524,2,1,2,2,5238853,2,1,3,3,5239034,2,1,4,4,5239216,2,1,17,17,5239761,2,1,19,19,5239956,2,1,23,23,5240323,2,1,25,25,5240539,2,1,27,27,5240909,2,1,28,28,5241086,2,1,32,32,5241492,2,1,36,36,5241999,2,1,37,37,5242205,2,1,38,38,5242385,1,2,23,23,5242721,2,1,1,1,5243416,3,2,23,23,5243640,2,1,3,3,5244244,2,1,18,18,5244683,2,1,36,36,5245262,1,2,23,23,5245510,2,1,1,1,5246038,3,2,23,23,5246238,1,1,1,1,5246418,2,1,4,4,5246860,2,1,19,19,5247336,1,2,23,23,5247701,2,1,1,1,5248215,3,2,23,23,5248437,2,1,3,3,5248982,2,1,4,4,5249164,2,1,8,8,5249530,2,1,13,13,5249936,2,1,14,14,5250104,2,1,17,17,5250455,2,1,19,19,5250730,2,1,25,25,5251334,2,1,26,26,5251528,2,1,27,27,5251703,2,1,29,29,5252103,2,1,36,36,5252578,1,2,23,23,5252853,2,1,1,1,5253574,3,2,23,23,5253801,1,1,1,1,5254009,2,1,4,4,5254446,2,1,19,19,5254970,1,2,23,23,5255235,2,1,1,1,5255976,3,2,23,23,5256281,2,1,4,4,5256878,2,1,8,8,5257238,2,1,14,14,5257864,2,1,15,15,5258048,2,1,16,16,5258406,2,1,20,20,5258731,2,1,23,23,5259006,2,1,25,25,5259354,2,1,27,27,5259556,2,1,32,32,5260035,2,1,34,34,5260316,2,1,37,37,5260613,1,2,23,23,5260974,2,1,1,1,5261510,3,2,23,23,5261722,1,1,1,1,5261946,1,2,23,23,5262130,2,1,1,1,5262369,3,2,23,23,5262540,2,1,1,-1,5262870,2,1,2,2,5263464,2,1,10,10,5263864,2,1,12,12,5264088,2,1,19,19,5264565,2,1,28,28,5265062,2,1,31,31,5265313,2,1,38,38,5265799,2,1,1,-1,5266162,1,2,23,23,5266756,2,1,1,1,5267008,3,2,23,23,5267179,2,1,2,2,5267718,2,1,4,4,5267921,2,1,8,8,5268364,2,1,9,9,5268543,2,1,10,10,5268714,2,1,15,15,5269191,2,1,16,16,5269523,2,1,14,14,5269761,2,1,19,19,5270314,2,1,20,20,5270486,2,1,25,25,5270878,2,1,30,30,5271324,2,1,31,31,5271498,2,1,32,32,5271699,2,1,39,39,5272210,1,2,24,24,5272473,2,1,1,1,5273011,3,2,24,24,5273238,2,1,7,7,5273876,2,1,9,9,5274250,2,1,10,10,5274441,2,1,11,11,5274611,2,1,15,15,5275047,2,1,22,22,5275496,2,1,30,30,5276039,2,1,32,32,5276293,2,1,37,37,5276830,2,1,39,39,5277063,1,2,24,24,5277426,2,1,1,1,5278036,3,2,24,24,5278252,1,1,1,1,5278454,2,1,2,2,5278845,2,1,4,4,5279071,2,1,10,10,5279527,2,1,10,10,5279731,2,1,9,9,5280006,2,1,10,10,5280207,2,1,39,39,5281132,1,2,24,24,5281375,2,1,1,1,5281958,3,2,24,24,5282176,2,1,2,2,5282625,2,1,7,7,5283010,2,1,9,9,5283208,2,1,11,11,5283462,2,1,14,14,5284005,2,1,16,16,5284256,2,1,19,19,5284721,2,1,24,24,5285097,2,1,25,25,5285269,2,1,29,29,5285739,2,1,31,31,5285974,2,1,33,33,5286197,2,1,36,36,5286907,2,1,37,37,5287100,2,1,38,38,5287301,2,1,39,39,5287484,1,2,24,24,5287875,2,1,1,1,5288726,3,2,24,24,5288965,1,1,1,1,5289188,2,1,2,2,5289617,2,1,4,4,5290125,1,2,24,24,5290390,2,1,1,1,5291123,3,2,24,24,5291314,2,1,4,4,5291768,2,1,5,5,5291955,2,1,10,10,5292393,2,1,16,16,5292769,2,1,27,27,5293221,1,2,24,24,5293569,2,1,1,1,5294381,3,2,24,24,5294574,1,1,1,1,5294785,2,1,4,4,5295108,1,2,24,24,5295320,2,1,1,1,5295562,3,2,24,24,5295771,2,1,2,2,5296209,2,1,1,-1,5296439,2,1,4,4,5296862,2,1,8,8,5297158,2,1,20,20,5297970,2,1,23,23,5298255,2,1,28,28,5298646,2,1,1,-1,5298882,1,2,24,24,5299151,2,1,1,1,5299679,3,2,24,24,5299885,2,1,2,2,5300119,2,1,7,7,5300529,2,1,8,8,5300713,2,1,10,10,5300951,2,1,18,18,5301504,2,1,21,21,5301837,2,1,22,22,5302031,2,1,24,24,5302273,2,1,27,27,5302673,2,1,28,28,5302850,2,1,30,30,5303116,2,1,35,35,5303573,2,1,36,36,5303774,2,1,37,37,5303963,1,2,25,25,5304303,2,1,1,1,5304954,3,2,25,25,5305168,2,1,4,4,5305665,2,1,7,7,5305964,2,1,14,14,5306537,2,1,15,15,5306716,2,1,30,30,5307261,2,1,36,36,5307675,1,2,25,25,5307948,2,1,1,1,5308522,3,2,25,25,5308726,1,1,1,1,5308935,2,1,24,24,5309529,2,1,30,30,5309901,1,2,25,25,5310168,2,1,1,1,5310684,3,2,25,25,5310967,2,1,17,17,5311797,2,1,18,18,5311969,2,1,19,19,5312149,2,1,21,21,5312492,2,1,30,30,5312974,2,1,35,35,5313434,2,1,39,39,5313748,1,2,26,26,5314110,3,2,26,26,5314654,1,2,25,25,5314841,2,1,1,1,5315142,3,2,25,25,5315348,1,1,1,1,5315581,2,1,24,24,5316288,1,2,25,25,5316535,2,1,1,1,5317104,3,2,25,25,5317311,2,1,6,6,5317839,2,1,7,7,5318027,2,1,8,8,5318213,2,1,3,3,5318653,2,1,10,10,5319100,2,1,14,14,5319523,2,1,24,24,5320029,2,1,27,27,5320356,2,1,28,28,5320537,2,1,31,31,5320909,2,1,36,36,5321310,2,1,39,39,5321640,1,2,25,25,5321960,2,1,1,1,5322588,3,2,25,25,5322796,1,1,1,1,5323018,2,1,24,24,5323678,1,2,25,25,5323941,2,1,1,1,5324651,3,2,25,25,5324921,2,1,1,-1,5325160,2,1,2,2,5325867,2,1,22,22,5326379,2,1,24,24,5326580,2,1,29,29,5327007,2,1,37,37,5327462,2,1,1,-1,5327667,1,2,25,25,5327911,2,1,1,1,5328464,3,2,25,25,5328720,2,1,3,3,5328995,2,1,6,6,5329465,2,1,9,9,5329738,2,1,12,12,5330083,2,1,13,13,5330251,2,1,16,16,5330588,2,1,18,18,5330929,2,1,19,19,5331092,2,1,26,26,5331619,2,1,33,33,5332164,2,1,37,37,5332473,1,2,26,26,5332772,2,1,1,1,5333405,3,2,26,26,5333608,2,1,3,3,5334131,2,1,5,5,5334337,2,1,7,7,5334590,2,1,10,10,5334951,2,1,13,13,5335281,2,1,14,14,5335472,2,1,19,19,5335897,2,1,24,24,5336412,2,1,33,33,5336910,2,2,25,25,5337073,2,2,25,25,5337591,2,1,37,37,5337884,2,1,37,37,5338089,2,1,37,37,5338519,2,1,38,38,5338696,2,1,34,34,5339052,1,2,26,26,5339346,2,1,1,1,5339909,3,2,26,26,5340130,1,1,1,1,5340335,2,1,12,12,5340799,2,1,19,19,5341263,1,2,26,26,5341571,2,1,1,1,5342118,3,2,26,26,5342337,2,1,2,2,5342898,2,1,3,3,5343077,2,1,5,5,5343338,2,1,9,9,5343767,2,1,10,10,5343930,2,1,12,12,5344254,2,1,13,13,5344471,2,1,14,14,5344658,2,1,16,16,5345267,2,1,18,18,5345691,2,1,19,19,5345861,2,1,23,23,5346305,2,1,26,26,5346672,2,1,27,27,5346840,2,1,30,30,5347411,2,1,33,33,5347586,2,1,38,38,5348022,1,2,26,26,5348344,2,1,1,1,5348971,3,2,26,26,5349261,1,1,1,1,5349492,2,1,12,12,5350058,1,2,26,26,5350339,2,1,1,1,5350786,3,2,26,26,5351005,2,1,6,6,5351595,2,1,7,7,5351776,2,1,12,12,5352241,1,2,26,26,5352617,2,1,1,1,5352986,3,2,26,26,5353163,1,1,1,1,5353358,1,2,26,26,5353501,2,1,1,1,5353739,3,2,26,26,5353928,2,1,1,-1,5354168,2,1,31,31,5355190,2,1,1,-1,5355425,1,2,26,26,5355692,2,1,1,1,5356350,3,2,26,26,5356571,2,1,3,3,5356819,2,1,8,8,5357261,2,1,10,10,5357932,2,1,11,11,5358133,2,1,12,12,5358323,2,1,13,13,5358516,2,1,14,14,5358719,2,1,17,17,5359095,2,1,17,17,5359290,2,1,23,23,5359768,2,1,25,25,5360123,2,1,26,26,5360308,2,1,28,28,5360583,2,1,18,18,5361123,2,1,17,17,5361330,2,1,32,32,5361983,2,1,39,39,5362445,1,2,27,27,5362728,2,1,1,1,5363540,3,2,27,27,5363744,2,1,10,10,5364488,2,1,12,12,5364696,2,1,27,27,5365315,2,1,26,26,5365553,2,1,32,32,5366009,2,1,33,33,5366193,2,1,36,36,5366484,1,2,27,27,5366755,2,1,1,1,5367378,3,2,27,27,5367616,1,1,1,1,5367820,2,1,8,8,5368290,2,1,10,10,5368503,2,1,23,23,5369132,2,1,26,26,5369415,2,1,39,39,5369969,1,2,27,27,5370224,2,1,1,1,5370834,3,2,27,27,5371071,2,1,3,3,5371617,2,1,5,5,5371891,2,1,6,6,5372059,2,1,8,8,5372427,2,1,10,10,5372765,2,1,13,13,5373174,2,1,14,14,5373358,2,1,20,20,5373800,2,1,23,23,5374148,2,1,26,26,5374515,2,1,29,29,5374918,2,1,32,32,5375212,2,1,34,34,5375565,2,1,37,37,5375972,2,1,39,39,5376195,1,2,28,28,5376512,3,2,28,28,5377146,1,2,27,27,5377350,2,1,1,1,5377700,3,2,27,27,5377894,1,1,1,1,5378098,2,1,8,8,5378487,2,1,23,23,5379158,2,1,39,39,5379732,1,2,27,27,5379984,2,1,1,1,5380615,3,2,27,27,5380838,2,1,3,3,5381395,2,1,9,9,5381852,2,1,11,11,5382045,2,1,13,13,5382290,2,1,17,17,5382688,2,1,23,23,5383252,2,1,28,28,5383773,2,1,29,29,5383959,2,1,30,30,5384149,2,1,31,31,5384322,2,1,33,33,5384844,2,1,34,34,5385068,2,1,35,35,5385269,2,1,38,38,5385678,2,1,39,39,5385847,1,2,27,27,5386156,2,1,1,1,5386867,3,2,27,27,5387050,1,1,1,1,5387274,1,2,27,27,5387414,2,1,1,1,5387633,3,2,27,27,5387825,2,1,1,-1,5388098,2,1,7,7,5388669,2,1,8,8,5388844,2,1,4,4,5389226,2,1,18,18,5389729,2,1,19,19,5389931,2,1,21,21,5390243,2,1,25,25,5390617,2,1,1,-1,5390836,1,2,27,27,5391074,2,1,1,1,5391648,3,2,27,27,5391825,2,1,2,2,5392074,2,1,4,4,5392403,2,1,5,5,5392603,2,1,6,6,5392789,2,1,7,7,5392990,2,1,9,9,5393398,2,1,13,13,5393764,2,1,19,19,5394195,2,1,21,21,5394404,2,1,23,23,5394941,2,1,24,24,5395120,2,1,25,25,5395319,2,1,26,26,5395504,2,1,31,31,5396065,2,1,32,32,5396248,2,1,36,36,5396815,2,1,38,38,5397076,1,2,28,28,5397335,2,1,1,1,5397949,3,2,28,28,5398175,2,1,2,2,5398645,2,1,9,9,5399017,2,1,12,12,5399329,2,1,13,13,5399502,2,1,28,28,5400068,2,1,31,31,5400361,2,1,37,37,5400787,1,2,28,28,5401068,2,1,1,1,5401595,3,2,28,28,5401809,1,1,1,1,5402016,2,1,4,4,5402549,2,1,9,9,5402851,2,1,19,19,5403413,1,2,28,28,5403745,2,1,1,1,5404222,3,2,28,28,5404450,2,1,3,3,5405000,2,1,4,4,5405160,2,1,6,6,5405519,2,1,7,7,5405713,2,1,8,8,5405922,2,1,9,9,5406143,2,1,11,11,5406489,2,1,12,12,5406677,2,1,21,21,5407174,2,1,25,25,5407515,2,1,31,31,5408088,2,1,32,32,5408287,2,1,33,33,5408493,2,1,34,34,5408724,2,1,37,37,5409107,2,1,39,39,5409377,1,2,28,28,5409671,2,1,1,1,5410223,3,2,28,28,5410422,1,1,1,1,5410632,2,1,4,4,5411057,2,1,19,19,5411726,1,2,28,28,5411873,2,1,1,1,5412412,3,2,28,28,5412627,2,1,4,4,5413194,2,1,5,5,5413395,2,1,6,6,5413565,2,1,2,2,5413974,2,1,11,11,5414454,2,1,19,19,5414886,2,1,20,20,5415065,2,1,24,24,5415534,2,1,26,26,5415874,2,1,27,27,5416042,2,1,32,32,5416500,2,1,35,35,5416866,2,1,36,36,5417052,2,1,38,38,5417390,1,2,29,29,5417860,3,2,29,29,5418300,1,2,28,28,5418507,2,1,1,1,5419204,3,2,28,28,5419449,1,1,1,1,5419648,2,1,19,19,5420361,1,2,28,28,5420638,2,1,1,1,5421071,3,2,28,28,5421261,2,1,9,9,5421900,2,1,10,10,5422087,2,1,12,12,5422339,2,1,19,19,5422768,2,1,23,23,5423075,1,2,28,28,5423394,2,1,1,1,5423893,3,2,28,28,5424102,1,1,1,1,5424385,1,2,28,28,5424705,2,1,1,1,5424913,3,2,28,28,5425091,2,1,1,-1,5425328,2,1,1,-1,5426025,1,2,28,28,5426634,2,1,1,1,5426905,3,2,28,28,5427079,2,1,4,4,5427351,2,1,6,6,5427659,2,1,7,7,5427835,2,1,9,9,5428135,2,1,10,10,5428343,2,1,11,11,5428537,2,1,12,12,5428722,2,1,14,14,5429057,2,1,17,17,5429458,2,1,19,19,5429716,2,1,21,21,5429970,2,1,27,27,5430682,2,1,31,31,5431048,2,1,28,28,5431325,2,1,39,39,5431831,1,2,29,29,5432066,2,1,1,1,5433029,3,2,29,29,5433257,2,1,3,3,5433825,2,1,4,4,5433997,2,1,6,6,5434299,2,1,6,6,5434506,2,1,10,10,5435017,2,1,7,7,5435319,2,1,6,6,5435542,2,1,12,12,5435967,2,1,14,14,5436202,2,1,17,17,5436612,2,1,19,19,5436835,2,1,28,28,5437395,2,1,31,31,5437752,2,1,33,33,5438124,2,1,34,34,5438290,2,1,37,37,5438633,2,1,39,39,5438928,1,2,29,29,5439196,2,1,1,1,5439878,3,2,29,29,5440109,1,1,1,1,5440320,2,1,7,7,5440790,2,1,14,14,5441229,2,1,17,17,5441474,2,1,28,28,5441995,2,1,31,31,5442325,1,2,29,29,5442557,2,1,1,1,5443145,3,2,29,29,5443361,2,1,11,11,5444092,2,1,21,21,5444532,2,1,30,30,5444993,1,2,29,29,5445266,2,1,1,1,5445753,3,2,29,29,5445959,1,1,1,1,5446188,1,2,29,29,5446421,2,1,1,1,5446642,3,2,29,29,5446827,2,1,6,6,5447316,2,1,17,17,5447797,2,1,28,28,5448220,1,2,29,29,5448477,2,1,1,1,5449000,3,2,29,29,5449173,1,1,1,1,5449355,1,2,29,29,5449526,2,1,1,1,5449772,3,2,29,29,5449969,2,1,1,-1,5450201,2,1,7,7,5450780,2,1,9,9,5451002,2,1,15,15,5451450,2,1,31,31,5452035,2,1,15,15,5452565,2,1,14,14,5452744,2,1,1,-1,5452975,1,2,29,29,5453380,2,1,1,1,5453700,3,2,29,29,5453892,2,1,2,2,5454123,2,1,3,3,5454294,2,1,9,9,5454709,2,1,14,14,5455139,2,1,17,17,5455387,2,1,19,19,5455654,2,1,23,23,5456141,2,1,24,24,5456331,2,1,26,26,5456605,2,1,28,28,5456845,2,1,32,32,5457274,2,1,33,33,5457477,2,1,34,34,5457631,2,1,38,38,5458035,2,1,39,39,5458248,1,2,30,30,5458570,2,1,1,1,5459120,3,2,30,30,5459349,2,1,2,2,5459938,2,1,23,23,5460489,2,1,24,24,5460737,2,1,22,22,5461054,2,1,32,32,5461623,2,1,35,35,5461933,2,1,36,36,5462136,1,2,30,30,5462421,2,1,1,1,5463012,3,2,30,30,5463248,1,1,1,1,5463436,2,1,2,2,5463806,2,1,24,24,5464392,2,1,34,34,5464866,1,2,30,30,5465104,2,1,1,1,5465628,3,2,30,30,5465870,2,1,6,6,5466482,2,1,7,7,5466694,2,1,8,8,5466887,2,1,14,14,5467361,2,1,17,17,5467678,2,1,24,24,5468177,2,1,26,26,5468377,2,1,31,31,5468793,2,1,33,33,5469236,2,1,34,34,5469442,2,1,35,35,5469620,2,1,37,37,5469974,1,2,30,30,5470322,2,1,1,1,5470965,3,2,30,30,5471183,1,1,1,1,5471413,2,1,34,34,5472066,1,2,30,30,5472321,2,1,1,1,5472928,3,2,30,30,5473153,2,1,2,2,5473750,2,1,3,3,5473921,2,1,5,5,5474186,2,1,7,7,5474613,2,1,8,8,5474814,2,1,9,9,5475036,2,1,10,10,5475203,2,1,18,18,5475950,2,1,25,25,5476457,2,1,28,28,5476784,2,1,32,32,5477325,2,1,34,34,5477766,2,1,36,36,5478029,2,1,38,38,5478378,2,1,39,39,5478570,1,2,30,30,5479100,2,1,1,1,5479845,3,2,30,30,5480049,1,1,1,1,5480262,1,2,30,30,5480430,2,1,1,1,5480676,3,2,30,30,5480851,2,1,1,-1,5481070,2,1,19,19,5481861,2,1,1,-1,5482058,1,2,30,30,5482361,2,1,1,1,5482848,3,2,30,30,5483042,2,1,3,3,5483320,2,1,5,5,5483530,2,1,10,10,5483891,2,1,22,22,5484430,2,1,25,25,5484703,2,1,29,29,5485144,2,1,26,26,5485455,2,1,30,30,5485823,2,1,38,38,5486301,1,2,31,31,5486552,2,1,1,1,5487126,3,2,31,31,5487388,2,1,5,5,5487930,2,1,9,9,5488356,2,1,10,10,5488546,2,1,13,13,5488983,2,1,16,16,5489254,2,2,31,31,5489674,2,2,31,31,5490072,2,1,22,22,5490316,2,1,24,24,5490513,2,1,25,25,5490732,2,1,25,25,5491415,2,1,26,26,5491602,2,1,32,32,5492107,2,1,37,37,5492492,2,1,38,38,5492670,1,2,31,31,5492999,2,1,1,1,5493641,3,2,31,31,5493887,1,1,1,1,5494115,2,1,5,5,5494572,2,1,26,26,5495130,1,2,31,31,5495367,2,1,1,1,5495906,3,2,31,31,5496086,2,1,5,5,5496591,2,1,27,27,5497213,2,1,31,31,5497479,2,1,38,38,5497894,1,2,32,32,5498197,3,2,32,32,5498686,1,2,31,31,5498889,2,1,1,1,5499127,3,2,31,31,5499327,1,1,1,1,5499543,1,2,31,31,5499687,2,1,1,1,5499909,3,2,31,31,5500091,2,1,3,3,5500668,2,1,14,14,5501149,2,1,26,26,5501740,2,1,30,30,5502046,2,1,33,33,5502389,2,1,37,37,5502873,1,2,31,31,5503200,2,1,1,1,5503844,3,2,31,31,5504031,1,1,1,1,5504225,1,2,31,31,5504394,2,1,1,1,5504606,3,2,31,31,5504774,2,1,1,-1,5504973,2,1,21,21,5505867,2,1,39,39,5506525,2,1,1,-1,5506742,1,2,31,31,5507041,2,1,1,1,5507718,3,2,31,31,5507926,2,1,6,6,5508263,2,1,9,9,5508614,2,1,10,10,5508790,2,1,13,13,5509139,2,1,14,14,5509313,2,1,34,34,5509974,2,1,38,38,5510345,2,1,39,39,5510539,1,2,32,32,5510802,2,1,1,1,5511738,3,2,32,32,5511961,2,1,3,3,5512445,2,1,6,6,5512761,2,1,7,7,5512961,2,1,38,38,5513727,1,2,32,32,5513978,2,1,1,1,5514483,3,2,32,32,5514681,1,1,1,1,5514892,2,1,6,6,5515263,2,1,38,38,5515833,1,2,32,32,5516075,2,1,1,1,5516693,3,2,32,32,5517153,2,1,2,2,5517671,2,1,6,6,5517936,2,1,10,10,5518413,2,1,11,11,5518560,2,1,28,28,5519269,2,1,32,32,5519942,2,1,34,34,5519943,1,2,32,32,5520199,2,1,1,1,5520881,3,2,32,32,5521058,1,1,1,1,5521264,1,2,32,32,5521428,2,1,1,1,5521635,3,2,32,32,5521833,2,1,13,13,5522507,2,1,14,14,5522680,2,1,16,16,5522923,2,1,27,27,5523547,2,1,32,32,5524014,2,1,33,33,5524224,2,1,34,34,5524388,2,1,37,37,5524757,2,1,38,38,5525178,2,1,39,39,5525568,2,1,37,37,5525773,2,1,36,36,5525991,1,2,32,32,5526292,2,1,1,1,5526823,3,2,32,32,5527051,1,1,1,1,5527252,1,2,32,32,5527541,2,1,1,1,5527757,3,2,32,32,5527930,2,1,4,4,5528470,2,1,6,6,5528737,2,1,7,7,5528936,2,1,10,10,5529202,2,1,35,35,5529973,2,1,9,9,5530831,2,1,10,10,5531012,1,2,32,32,5531376,2,1,1,1,5531684,3,2,32,32,5531867,2,1,1,-1,5532122,2,1,1,-1,5532530,2,1,2,2,5533210,2,1,6,6,5533511,3,1,9,9,5535074,2,1,13,13,5535555,2,1,14,14,5535836,2,1,15,15,5536030,3,1,9,9,5536475,2,1,19,19,5536947,2,1,21,21,5537152,2,1,23,23,5537486,2,1,28,28,5538000,2,1,30,30,5538204,2,1,38,38,5538806,2,1,39,39,5538998,1,2,33,33,5539299,2,1,1,1,5539860,3,2,33,33,5540078,2,1,3,3,5540538,2,1,7,7,5540890,2,1,9,9,5541101,2,1,12,12,5541526,2,1,14,14,5541779,2,1,15,15,5541981,2,1,28,28,5542546,2,1,30,30,5542854,2,1,31,31,5543023,2,1,36,36,5543442,1,2,33,33,5543736,2,1,1,1,5544323,3,2,33,33,5544551,1,1,1,1,5544764,2,1,19,19,5545349,2,1,23,23,5545720,2,1,30,30,5546285,2,1,38,38,5546730,2,1,39,39,5546931,1,2,34,34,5547219,3,2,34,34,5547718,1,2,33,33,5547920,2,1,1,1,5548182,3,2,33,33,5548407,2,1,2,2,5550288,2,1,4,4,5550522,2,1,3,3,5550949,2,1,4,4,5551188,2,1,5,5,5551405,2,1,6,6,5551589,2,1,10,10,5552243,2,1,19,19,5552718,2,1,21,21,5552987,2,1,23,23,5553220,2,1,33,33,5553734,2,1,34,34,5553938,2,1,38,38,5554380,2,1,39,39,5554553,1,2,33,33,5554879,2,1,1,1,5555516,3,2,33,33,5555761,1,1,1,1,5555968,2,1,19,19,5556582,2,1,23,23,5557031,2,1,38,38,5557668,2,1,39,39,5557845,1,2,33,33,5558142,2,1,1,1,5558809,3,2,33,33,5559031,2,1,2,2,5559610,2,1,5,5,5559902,2,1,13,13,5560355,2,1,19,19,5560812,2,1,22,22,5561164,2,1,23,23,5561337,2,1,33,33,5561811,2,1,34,34,5562004,2,1,37,37,5562454,2,1,38,38,5562662,2,1,39,39,5562845,1,2,33,33,5563232,2,1,1,1,5563810,3,2,33,33,5564039,2,1,1,-1,5564324,2,1,1,-1,5564800,1,1,1,1,5565206,1,2,33,33,5565369,2,1,1,1,5565571,3,2,33,33,5565749,2,1,1,-1,5565952,2,1,8,8,5566551,2,1,30,30,5567133,2,1,1,-1,5567338,1,2,33,33,5567587,2,1,1,1,5568151,3,2,33,33,5568432,2,1,3,3,5568765,2,1,7,7,5569172,2,1,8,8,5569365,2,1,9,9,5569555,2,1,10,10,5569717,2,1,14,14,5570197,2,1,15,15,5570414,2,1,13,13,5570757,2,1,13,13,5570995,2,1,14,14,5571247,2,1,13,13,5571441,2,1,17,17,5572030,2,1,19,19,5572295,2,1,23,23,5572779,2,1,26,26,5573055,2,1,32,32,5573594,2,1,35,35,5574022,2,1,38,38,5574394,2,1,39,39,5574574,1,2,34,34,5574832,2,1,1,1,5575408,3,2,34,34,5575681,2,1,1,-1,5576019,2,1,1,-1,5576403,2,1,2,2,5576776,2,1,3,3,5576943,2,1,6,6,5577378,2,1,7,7,5577561,2,1,8,8,5577788,2,1,15,15,5578207,2,1,23,23,5578638,2,1,26,26,5578924,2,1,32,32,5579370,2,1,33,33,5579534,2,1,39,39,5579998,1,2,34,34,5580267,2,1,1,1,5580787,3,2,35,35,5581066,1,2,35,35,5581479,3,2,34,34,5581637,1,1,1,1,5581901,2,1,19,19,5582489,2,1,26,26,5582927,2,1,32,32,5583312,2,1,35,35,5583638,2,1,37,37,5583945,3,1,38,38,5584500,1,2,34,34,5584668,3,2,34,34,5585731,3,1,38,38,5585924,1,2,34,34,5586137,2,1,1,1,5586819,3,2,34,34,5587023,2,1,4,4,5587552,2,1,5,5,5587727,2,1,6,6,5587927,2,1,9,9,5588339,2,1,14,14,5588787,2,1,17,17,5589212,2,1,18,18,5589386,2,1,19,19,5589575,2,1,21,21,5589906,2,1,24,24,5590417,2,1,25,25,5590588,2,1,30,30,5591030,2,1,31,31,5591221,2,1,32,32,5591400,2,1,35,35,5591934,2,1,37,37,5592344,2,1,38,38,5592522,2,1,39,39,5592716,1,2,34,34,5593099,2,1,1,1,5593787,3,2,34,34,5594022,1,1,1,1,5594244,2,1,19,19,5594859,2,1,35,35,5595417,2,1,38,38,5595727,1,2,34,34,5595984,2,1,1,1,5596559,3,2,34,34,5596761,2,1,6,6,5597341,2,1,12,12,5597809,2,1,26,26,5598375,2,1,35,35,5598841,2,1,39,39,5599185,1,2,34,34,5599478,2,1,1,1,5600020,3,2,34,34,5600222,1,1,1,1,5600431,1,2,34,34,5600640,2,1,1,1,5601036,3,2,34,34,5601229,2,1,10,10,5601891,2,1,13,13,5602170,2,1,19,19,5602579,3,1,38,38,5603285,1,2,34,34,5603386,3,2,34,34,5604675,3,1,38,38,5605160,1,2,34,34,5605352,2,1,1,1,5606027,3,2,34,34,5606230,1,1,1,1,5606421,1,2,34,34,5606554,2,1,1,1,5606847,3,2,34,34,5607007,2,1,1,-1,5607182,2,1,1,-1,5607934,1,2,34,34,5608240,2,1,1,1,5608540,3,2,34,34,5608744,2,1,3,3,5609044,2,1,9,9,5609575,2,1,11,11,5609816,2,1,12,12,5609997,2,1,13,13,5610190,2,1,19,19,5610777,2,1,21,21,5611110,2,1,22,22,5611313,2,1,23,23,5611468,2,1,27,27,5611926,2,1,29,29,5612283,2,1,30,30,5612449,2,1,34,34,5612844,2,1,35,35,5613026,2,1,38,38,5613351,1,2,35,35,5613610,2,1,1,1,5614206,3,2,35,35,5614413,2,1,2,2,5615032,2,1,5,5,5615394,2,1,6,6,5615572,2,1,13,13,5616026,2,1,23,23,5616501,2,1,33,33,5616988,2,1,34,34,5617244,2,1,33,33,5617571,2,1,32,32,5617740,1,2,35,35,5618022,2,1,1,1,5618656,3,2,35,35,5618905,1,1,1,1,5619135,2,1,29,29,5619858,2,1,34,34,5620460,2,1,35,35,5620670,1,2,35,35,5620967,2,1,1,1,5621777,3,2,35,35,5622018,2,1,12,12,5622795,2,1,21,21,5623337,2,1,22,22,5623513,2,1,25,25,5623881,2,1,26,26,5624065,2,1,31,31,5624668,2,1,34,34,5625078,2,1,35,35,5625275,2,1,36,36,5625476,1,2,35,35,5625802,2,1,1,1,5626470,3,2,35,35,5626651,1,1,1,1,5626869,2,1,29,29,5627448,2,1,35,35,5627910,1,2,35,35,5628194,2,1,1,1,5628721,3,2,35,35,5628942,2,1,4,4,5629484,2,1,5,5,5629662,2,1,2,2,5629975,2,1,9,9,5630455,2,1,11,11,5630682,2,1,14,14,5631083,2,1,19,19,5631524,2,1,27,27,5632070,2,1,29,29,5632251,2,1,29,29,5632474,2,1,28,28,5632761,2,1,29,29,5632932,2,1,30,30,5633135,2,1,36,36,5633598,2,1,37,37,5633777,2,1,38,38,5633980,2,1,39,39,5634204,1,2,35,35,5634565,2,1,1,1,5635126,3,2,35,35,5635363,1,1,1,1,5635581,2,1,29,29,5636122,1,2,35,35,5636414,2,1,2,2,5636940,3,2,35,35,5637215,1,2,35,35,5637505,2,1,2,2,5637767,2,1,1,1,5637958,3,2,35,35,5638209,2,1,3,3,5638799,2,1,5,5,5639025,2,1,20,20,5639536,2,1,29,29,5640047,2,1,35,35,5640412,1,2,36,36,5640703,3,2,36,36,5641239,1,2,35,35,5641499,2,1,1,1,5641773,3,2,35,35,5642008,1,1,1,1,5642229,2,1,1,-1,5642526,2,1,1,-1,5643141,2,1,4,4,5643729,2,1,6,6,5643919,2,1,6,6,5644150,2,1,5,5,5644442,2,1,6,6,5644611,2,1,8,8,5644939,2,1,18,18,5645441,2,1,24,24,5645995,2,1,29,29,5646401,2,1,33,33,5646840,2,1,34,34,5647012,2,1,35,35,5647190,2,1,37,37,5647557,2,1,39,39,5647788,1,2,36,36,5648104,2,1,1,1,5648775,3,2,36,36,5648971,2,1,2,2,5649587,2,1,18,18,5650161,2,1,34,34,5650680,2,1,38,38,5651047,1,2,36,36,5651351,2,1,1,1,5651941,3,2,36,36,5652165,1,1,1,1,5652372,2,1,6,6,5652808,2,1,24,24,5653374,2,1,33,33,5653917,2,1,35,35,5654113,2,1,37,37,5654380,1,2,36,36,5654658,2,1,1,1,5655222,3,2,36,36,5655436,2,1,35,35,5656504,1,2,36,36,5656752,2,1,1,1,5657500,3,2,36,36,5657769,1,1,1,1,5658035,2,1,35,35,5658739,2,1,33,33,5658958,1,2,36,36,5659264,2,1,1,1,5659803,3,2,36,36,5660034,2,1,2,2,5660813,2,1,4,4,5661059,2,1,6,6,5661290,2,1,8,8,5661534,2,1,21,21,5662211,2,1,24,24,5662482,2,1,33,33,5663102,2,1,35,35,5663408,2,1,36,36,5663619,2,2,34,34,5663812,2,2,34,34,5664355,2,1,39,39,5664589,2,1,37,37,5664825,1,2,36,36,5665204,2,1,1,1,5665804,3,2,36,36,5666060,1,1,1,1,5666284,2,1,6,6,5666698,2,1,24,24,5667323,2,1,33,33,5667811,2,1,37,37,5668159,1,2,37,37,5668498,3,2,37,37,5669015,1,2,36,36,5669240,2,1,1,1,5669654,3,2,36,36,5669946,2,1,1,-1,5670150,2,1,5,5,5670606,2,1,6,6,5670796,2,1,10,10,5671216,2,1,11,11,5671474,2,1,14,14,5671685,2,1,16,16,5672024,2,1,17,17,5672188,2,1,24,24,5672833,2,1,26,26,5673070,2,1,29,29,5673555,2,1,33,33,5674028,2,2,36,36,5674302,2,2,36,36,5674731,2,1,37,37,5674908,2,1,1,-1,5675154,1,2,36,36,5675427,2,1,1,1,5676206,3,2,36,36,5676464,2,1,4,4,5676801,2,1,10,10,5677222,2,1,11,11,5677406,2,1,13,13,5677715,2,1,14,14,5677885,2,1,17,17,5678227,2,1,20,20,5678641,2,1,21,21,5678871,2,1,23,23,5679053,2,1,22,22,5679442,2,1,38,38,5679990,2,1,39,39,5680172,1,2,37,37,5680498,2,1,1,1,5681075,3,2,37,37,5681308,2,1,2,2,5681821,2,1,4,4,5682034,2,1,6,6,5682269,2,1,10,10,5682723,2,1,13,13,5682974,2,1,17,17,5683387,2,1,20,20,5683675,2,1,25,25,5684277,2,1,29,29,5684612,1,2,37,37,5684875,2,1,1,1,5685384,3,2,37,37,5685600,1,1,1,1,5685811,2,1,4,4,5686142,2,1,10,10,5686574,2,1,13,13,5686859,2,1,17,17,5687333,2,1,20,20,5687580,1,2,37,37,5687912,2,1,1,1,5688358,3,2,37,37,5688592,2,1,2,2,5689224,2,1,3,3,5689408,2,1,8,8,5689805,2,1,20,20,5690309,2,1,21,21,5690515,2,1,22,22,5691013,2,1,23,23,5691013,2,1,32,32,5691875,2,1,38,38,5692275,2,1,39,39,5692449,1,2,37,37,5692728,2,1,1,1,5693364,3,2,37,37,5693579,1,1,1,1,5693780,1,2,37,37,5694242,2,1,1,1,5694524,3,2,37,37,5694726,2,1,19,19,5695611,2,1,37,37,5696207,1,2,37,37,5696485,2,1,1,1,5697162,3,2,37,37,5697340,1,1,1,1,5697530,1,2,37,37,5697684,2,1,1,1,5697935,3,2,37,37,5698107,2,1,1,-1,5698553,2,1,4,4,5699131,2,1,7,7,5699379,2,1,10,10,5699783,2,1,11,11,5699949,2,1,13,13,5700285,2,1,14,14,5700485,2,1,17,17,5700810,2,1,1,-1,5701244,1,2,38,38,5701642,3,2,38,38,5702164,1,2,37,37,5702349,2,1,1,1,5702556,3,2,37,37,5702729,2,1,2,2,5702964,2,1,3,3,5703133,2,1,6,6,5703415,2,1,5,5,5704064,2,1,10,10,5704562,2,1,15,15,5704965,2,1,17,17,5705172,2,1,21,21,5705617,2,1,25,25,5706227,2,1,26,26,5706403,2,1,28,28,5706704,2,1,29,29,5706904,2,1,33,33,5707321,2,1,37,37,5707691,2,1,38,38,5707883,1,2,38,38,5708164,2,1,1,1,5708900,3,2,38,38,5709144,2,1,23,23,5709988,2,1,38,38,5710604,1,2,38,38,5710891,2,1,1,1,5711456,3,2,38,38,5711656,1,1,1,1,5711887,2,1,3,3,5712203,2,1,15,15,5712702,2,1,21,21,5713194,1,2,38,38,5713506,2,1,1,1,5714206,3,2,38,38,5714439,2,1,2,2,5715039,2,1,15,15,5715490,2,1,17,17,5715703,2,1,19,19,5715941,2,1,26,26,5716453,2,1,27,27,5716628,2,1,38,38,5717156,1,2,38,38,5717425,2,1,1,1,5718216,3,2,38,38,5718424,1,1,1,1,5718629,2,1,3,3,5719002,2,1,14,14,5719466,2,1,21,21,5719910,2,1,15,15,5720565,2,1,14,14,5720753,1,2,38,38,5721039,2,1,1,1,5721475,3,2,38,38,5721691,2,1,3,3,5722017,2,1,2,2,5722289,2,1,5,5,5722562,2,1,21,21,5723202,2,1,29,29,5723613,2,1,38,38,5724130,2,1,39,39,5724316,1,2,38,38,5724638,2,1,1,1,5725678,3,2,38,38,5725887,1,1,1,1,5726092,2,1,3,3,5726470,2,1,21,21,5727039,1,2,38,38,5727342,2,1,1,1,5727842,3,2,38,38,5728061,2,1,1,-1,5728292,2,1,3,3,5728603,2,1,10,10,5729077,2,1,14,14,5729417,2,1,15,15,5729591,2,1,21,21,5730065,2,1,25,25,5730406,2,1,28,28,5730832,2,1,31,31,5731241,2,1,32,32,5731413,2,1,33,33,5731615,2,1,37,37,5731998,2,1,1,-1,5732230,1,2,38,38,5732500,2,1,1,1,5733482,3,2,38,38,5733700,2,1,2,2,5733926,2,1,7,7,5734329,2,1,16,16,5734786,2,1,19,19,5735155,2,1,20,20,5735320,2,1,22,22,5735630,2,1,26,26,5736274,2,1,28,28,5736536,2,1,34,34,5737118,2,1,35,35,5737284,2,1,37,37,5737569,2,1,38,38,5737754,1,2,39,39,5738035,2,1,1,1,5738830,3,2,39,39,5739049,2,1,12,12,5739807,2,1,22,22,5740324,2,1,36,36,5740953,2,1,36,36,5741127,2,1,35,35,5741405,2,2,38,38,5741577,2,2,38,38,5742207,2,1,36,36,5742389,1,2,39,39,5742691,2,1,1,1,5743239,3,2,39,39,5743479,1,1,1,1,5743685,2,1,7,7,5744178,2,1,16,16,5744619,1,2,39,39,5744872,2,1,1,1,5745313,3,2,39,39,5745618,2,1,7,7,5746091,2,1,14,14,5746572,2,1,16,16,5746760,2,1,28,28,5747272,2,1,30,30,5747484,2,1,32,32,5747742,2,1,39,39,5748195,1,2,39,39,5748487,2,1,1,1,5749153,3,2,39,39,5749375,1,1,1,1,5749577,2,1,7,7,5749957,2,1,16,16,5750370,1,2,39,39,5750639,2,1,1,1,5751107,3,2,39,39,5751339,2,1,4,4,5751895,2,1,2,2,5752158,2,1,6,6,5752594,2,1,7,7,5752715,2,1,16,16,5753204,2,1,19,19,5753629,2,1,20,20,5753827,2,1,26,26,5754310,2,1,29,29,5754602,2,1,34,34,5755042,2,1,37,37,5755629,2,1,38,38,5755629,1,2,39,39,5756071,2,1,1,1,5756684,3,2,39,39,5756924,1,1,1,1,5757113,1,2,39,39,5757282,2,1,1,1,5757491,3,2,39,39,5757731,1,2,39,39,5758346,2,1,1,1,5758689,3,2,39,39,5758992,2,1,2,2,5759266,2,1,5,5,5759560,2,1,6,6,5759735,2,1,8,8,5760078,2,1,9,9,5760255,2,1,11,11,5760549,2,1,17,17,5760998,2,1,19,19,5761254,2,1,22,22,5761869,2,1,25,25,5762180,2,1,26,26,5762354,2,1,28,28,5762721,2,1,31,31,5763091,2,1,35,35,5763499,2,1,38,38,5763799,3,1,1,1,5764550,1,1,1,1,5764783,3,1,1,1,5765087,3,1,1,1,5765265,1,2,1,20,5765728,2,1,1,1,5765987,3,2,1,20,5766178,1,2,-20,-1,5766378,2,1,1,1,5766578,3,2,-20,-1,5766758,3,2,2,2,5767361,2,1,1,-1,5767736,2,1,2,2,5768284,2,1,3,3,5768480,2,1,4,4,5768672,2,1,5,5,5768862,2,1,6,6,5769039,2,1,8,8,5769439,2,1,9,9,5769602,2,1,12,12,5769990,2,1,13,13,5770178,2,1,15,15,5770433,2,1,17,17,5770898,2,1,18,18,5771101,2,1,19,19,5771281,2,1,21,21,5771737,2,1,22,22,5771918,2,1,23,23,5772128,2,1,26,26,5772550,2,1,28,28,5772962,2,1,29,29,5773158,2,1,30,30,5773347,2,1,35,35,5773842,2,1,36,36,5774047,2,1,37,37,5774250,2,1,38,38,5774465,2,1,39,39,5774697,2,1,1,-1,5774990,1,2,2,2,5775827,1,1,1,1,5776095,3,2,2,2,5776227,2,1,4,4,5776735,2,1,2,2,5777065,2,1,13,13,5777714,2,1,15,15,5778068,2,1,17,17,5778433,2,1,19,19,5778704,2,1,21,21,5779108,2,1,22,22,5779291,2,1,26,26,5780035,2,1,28,28,5780495,2,1,29,29,5780694,2,1,30,30,5780871,2,1,37,37,5781340,2,1,38,38,5781540,1,2,2,2,5782319,1,1,1,1,5782542,3,2,2,2,5782668,2,1,3,3,5783277,2,1,5,5,5783577,2,1,6,6,5783779,2,1,8,8,5784162,2,1,9,9,5784354,2,1,35,35,5785417,2,1,36,36,5785610,2,1,39,39,5786019,1,2,2,2,5787115,1,1,1,1,5787304,3,2,2,2,5787628,2,1,12,12,5788117,2,1,18,18,5788598,2,1,23,23,5789099,1,2,2,2,5789286,3,2,3,3,5789477,2,1,1,-1,5789682,2,1,38,38,5790265,2,1,39,39,5790456,2,1,30,30,5791042,2,1,29,29,5791243,2,1,28,28,5791447,2,1,27,27,5791672,2,1,24,24,5792054,2,1,22,22,5792325,2,1,19,19,5792733,2,1,18,18,5792946,2,1,16,16,5793326,2,1,13,13,5793720,2,1,9,9,5794141,2,1,6,6,5794456,2,1,4,4,5794789,2,1,3,3,5795021,2,1,2,2,5795206,2,1,1,-1,5795456,1,2,3,3,5795698,1,1,1,1,5796270,3,2,3,3,5796420,2,1,3,3,5796947,2,1,9,9,5797737,2,1,16,16,5798678,2,1,18,18,5798895,2,1,28,28,5799734,2,1,29,29,5799927,2,1,39,39,5800452,1,2,3,3,5801153,1,1,1,1,5801387,3,2,3,3,5801524,2,1,4,4,5802176,2,1,6,6,5802417,2,1,13,13,5803085,2,1,19,19,5803574,2,1,22,22,5803939,2,1,24,24,5804171,2,1,30,30,5804832,2,1,38,38,5805263,1,2,3,3,5805885,1,1,1,1,5806120,3,2,3,3,5806259,2,1,2,2,5806661,2,1,27,27,5807302,1,2,3,3,5807513,3,2,4,4,5807702,2,1,1,-1,5807930,2,1,37,37,5808530,2,1,35,35,5808841,2,1,34,34,5809069,2,1,33,33,5809250,2,1,32,32,5809454,2,1,31,31,5809672,2,1,27,27,5810146,2,1,26,26,5810349,2,1,25,25,5810553,2,1,24,24,5810763,2,1,22,22,5811115,2,1,20,20,5811475,2,1,16,16,5811998,2,1,14,14,5812190,2,1,13,13,5812433,2,1,12,12,5812792,2,1,15,15,5813078,2,1,3,3,5813621,2,1,2,2,5813796,2,1,1,-1,5814024,1,2,4,4,5814255,1,1,1,1,5814473,3,2,4,4,5814603,2,1,16,16,5815493,2,1,20,20,5816089,2,1,22,22,5816290,2,1,24,24,5816705,2,1,25,25,5816879,2,1,26,26,5817080,2,1,31,31,5817587,2,1,32,32,5817783,2,1,33,33,5817983,2,1,37,37,5818398,1,2,4,4,5819204,1,1,1,1,5819446,3,2,4,4,5819615,2,1,12,12,5820399,2,1,13,13,5820578,2,1,15,15,5820855,2,1,27,27,5821437,2,1,34,34,5821957,2,1,35,35,5822154,1,2,4,4,5822807,1,1,1,1,5823033,3,2,4,4,5823198,2,1,2,2,5823599,2,1,1,1,5824278,1,2,4,4,5824447,2,1,1,1,5824660,3,2,4,4,5824831,2,1,3,3,5825064,2,1,14,14,5825579,1,2,4,4,5826017,2,1,1,1,5826258,3,2,4,4,5826405,2,1,1,1,5826604,1,2,4,4,5826768,3,2,5,5,5826973,2,1,1,-1,5827171,2,1,3,3,5827647,2,1,5,5,5827860,2,1,10,10,5828311,2,1,11,11,5828502,2,1,15,15,5828915,2,1,16,16,5829131,2,1,18,18,5829444,2,1,19,19,5829627,2,1,20,20,5829834,2,1,21,21,5830033,2,1,23,23,5830439,2,1,30,30,5831062,2,1,31,31,5831260,2,1,34,34,5831686,2,1,35,35,5831873,2,1,38,38,5832210,2,1,38,38,5832416,2,1,39,39,5832743,2,1,38,38,5832953,2,1,37,37,5833153,2,1,1,-1,5833393,1,2,5,5,5833645,1,1,1,1,5834289,3,2,5,5,5834474,2,1,15,15,5835457,2,1,16,16,5835636,2,1,18,18,5835945,2,1,19,19,5836119,2,1,23,23,5836556,2,1,33,33,5837163,2,1,35,35,5837498,2,1,34,34,5837704,2,1,33,33,5837888,2,1,37,37,5838395,2,1,38,38,5838550,1,2,5,5,5839280,1,1,1,1,5839479,3,2,5,5,5839648,2,1,3,3,5840078,2,1,10,10,5840660,2,1,21,21,5841662,2,1,30,30,5841732,2,1,31,31,5841907,2,1,39,39,5842454,1,2,5,5,5843098,1,1,1,1,5843332,3,2,5,5,5843471,2,1,11,11,5844182,2,1,20,20,5844597,2,1,1,1,5845167,1,2,5,5,5845346,2,1,1,1,5845540,3,2,5,5,5845718,2,1,5,5,5846014,1,2,5,5,5846195,2,1,1,1,5846435,3,2,5,5,5846591,2,1,1,1,5846801,1,2,5,5,5846973,3,2,6,6,5847155,2,1,1,-1,5847371,2,1,3,3,5847917,2,1,5,5,5848222,2,1,6,6,5848402,2,1,8,8,5848683,2,1,10,10,5848953,2,1,14,14,5849316,2,1,17,17,5849714,2,1,18,18,5849889,2,1,19,19,5850055,2,1,21,21,5850368,2,1,27,27,5850837,2,1,29,29,5851120,2,1,30,30,5851292,2,1,35,35,5851748,2,1,38,38,5852103,2,1,39,39,5852297,2,1,1,-1,5852599,1,2,6,6,5853231,1,1,1,1,5853419,3,2,6,6,5853590,2,1,3,3,5854133,2,1,5,5,5854363,2,1,8,8,5854843,2,1,21,21,5855825,2,1,27,27,5856432,2,1,29,29,5856693,2,1,30,30,5856902,1,2,6,6,5857596,1,1,1,1,5857818,3,2,6,6,5857934,2,1,6,6,5858476,2,1,14,14,5858953,2,1,18,18,5859415,2,1,19,19,5859598,2,1,38,38,5860508,1,2,6,6,5861149,1,1,1,1,5861364,3,2,6,6,5861514,2,1,10,10,5862199,2,1,35,35,5862918,2,1,39,39,5863241,2,1,1,1,5864033,1,2,6,6,5864206,2,1,1,1,5864418,3,2,6,6,5864582,2,1,17,17,5865083,1,2,6,6,5865550,2,1,1,1,5865771,3,2,6,6,5865925,2,1,1,1,5866135,1,2,6,6,5866310,3,2,7,7,5866513,2,1,1,-1,5866777,2,1,2,2,5867418,2,1,3,3,5867589,2,1,5,5,5867968,2,1,6,6,5868165,2,1,7,7,5868371,2,1,8,8,5868561,2,1,10,10,5868981,2,1,11,11,5869183,2,1,12,12,5869362,2,1,15,15,5869709,2,1,16,16,5869902,2,1,17,17,5870115,2,1,19,19,5870577,2,1,20,20,5870777,2,1,21,21,5870948,2,1,24,24,5871576,2,1,25,25,5871770,2,1,26,26,5871975,2,1,29,29,5872372,2,1,30,30,5872542,2,1,32,32,5872815,2,1,35,35,5873194,2,1,38,38,5873492,2,1,1,-1,5873736,1,2,7,7,5874346,1,1,1,1,5874574,3,2,7,7,5874711,2,1,2,2,5875231,2,1,7,7,5875648,2,1,8,8,5875818,2,1,10,10,5876206,2,1,11,11,5876380,2,1,16,16,5876801,2,1,17,17,5876967,2,1,20,20,5877468,2,1,25,25,5877871,2,1,32,32,5878580,2,1,38,38,5878984,1,2,7,7,5879577,1,1,1,1,5879777,3,2,7,7,5879914,2,1,5,5,5880616,2,1,12,12,5881053,2,1,15,15,5881335,2,1,19,19,5881888,2,1,21,21,5882117,2,1,24,24,5882553,2,1,26,26,5882790,2,1,29,29,5883159,2,1,30,30,5883333,1,2,7,7,5883915,1,1,1,1,5884121,3,2,7,7,5884287,2,1,6,6,5885038,2,1,1,1,5885651,1,2,7,7,5885843,2,1,1,1,5886049,3,2,7,7,5886218,2,1,3,3,5886458,2,1,35,35,5887068,1,2,7,7,5887697,2,1,1,1,5887917,3,2,7,7,5888070,2,1,1,1,5888270,1,2,7,7,5888429,3,2,8,8,5888634,2,1,1,-1,5888864,2,1,2,2,5889447,2,1,3,3,5889672,2,1,4,4,5889862,2,1,5,5,5890052,2,1,7,7,5890345,2,1,11,11,5890735,2,1,13,13,5891041,2,1,14,14,5891242,2,1,16,16,5891553,2,1,18,18,5892005,2,1,19,19,5892196,2,1,20,20,5892367,2,1,22,22,5892687,2,1,25,25,5893216,2,1,26,26,5893400,2,1,27,27,5893593,2,1,28,28,5893778,2,1,29,29,5894001,2,1,30,30,5894178,2,1,34,34,5894604,2,1,35,35,5894783,2,1,37,37,5895096,2,1,38,38,5895293,2,1,1,-1,5895555,1,2,8,8,5896280,1,1,1,1,5896543,3,2,8,8,5896693,2,1,2,2,5897269,2,1,3,3,5897430,2,1,13,13,5898152,2,1,14,14,5898343,2,1,16,16,5898746,2,1,18,18,5899190,2,1,19,19,5899392,2,1,20,20,5899564,2,1,28,28,5900315,2,1,30,30,5900560,2,1,35,35,5901032,2,1,37,37,5901334,2,1,38,38,5901500,1,2,8,8,5902211,1,1,1,1,5902457,3,2,8,8,5902602,2,1,5,5,5903133,2,1,11,11,5903749,2,1,22,22,5904463,2,1,25,25,5904826,2,1,27,27,5905068,2,1,29,29,5905399,1,2,8,8,5906007,1,1,1,1,5906241,3,2,8,8,5906404,2,1,26,26,5907618,2,1,34,34,5908088,2,1,1,1,5908836,1,2,8,8,5909022,2,1,1,1,5909244,3,2,8,8,5909418,2,1,4,4,5909734,2,1,6,6,5909989,2,1,6,6,5910407,2,1,7,7,5910588,1,2,8,8,5910914,2,1,1,1,5911168,3,2,8,8,5911337,2,1,1,1,5911530,1,2,8,8,5911676,3,2,9,9,5911865,2,1,1,-1,5912062,2,1,2,2,5912542,2,1,6,6,5912946,2,1,8,8,5913154,2,1,10,10,5913528,2,1,11,11,5913708,2,1,13,13,5914007,2,1,14,14,5914202,2,1,16,16,5914453,2,1,19,19,5914959,2,1,20,20,5915120,2,1,21,21,5915307,2,1,25,25,5915774,2,1,26,26,5915971,2,1,27,27,5916150,2,1,29,29,5916480,2,1,31,31,5916720,2,1,33,33,5917376,2,1,34,34,5917572,2,1,37,37,5917990,2,1,38,38,5918187,2,1,39,39,5918380,2,1,1,-1,5918698,1,2,9,9,5919369,1,1,1,1,5919564,3,2,9,9,5919719,2,1,10,10,5920627,2,1,11,11,5920821,2,1,13,13,5921146,2,1,14,14,5921330,2,1,16,16,5921647,2,1,25,25,5922653,2,1,27,27,5922858,2,1,26,26,5923333,2,1,33,33,5923843,2,1,34,34,5924019,2,1,37,37,5924416,1,2,9,9,5925074,1,1,1,1,5925307,3,2,9,9,5925423,2,1,6,6,5926205,2,1,19,19,5926799,2,1,21,21,5926989,2,1,20,20,5927397,2,1,29,29,5927840,2,1,31,31,5928086,2,1,38,38,5928562,2,1,39,39,5928756,1,2,9,9,5929502,1,1,1,1,5929737,3,2,9,9,5929883,2,1,2,2,5930411,2,1,1,1,5930702,1,2,9,9,5930870,2,1,1,1,5931098,3,2,9,9,5931279,2,1,8,8,5931638,1,2,9,9,5931910,2,1,1,1,5932194,3,2,9,9,5932362,2,1,1,1,5932560,1,2,9,9,5932698,3,2,10,10,5932891,2,1,1,-1,5933117,2,1,4,4,5933624,2,1,6,6,5933963,2,1,7,7,5934150,2,1,8,8,5934335,2,1,11,11,5934707,2,1,12,12,5934905,2,1,14,14,5935170,2,1,19,19,5935728,2,1,20,20,5935928,2,1,22,22,5936629,2,1,23,23,5936811,2,1,24,24,5937036,2,1,25,25,5937209,2,2,8,8,5937395,2,2,8,8,5937920,2,1,26,26,5938191,2,1,28,28,5938514,2,1,30,30,5938773,2,1,32,32,5939220,2,1,33,33,5939381,2,1,38,38,5939820,2,1,37,37,5940135,2,1,39,39,5940331,2,1,1,-1,5940595,1,2,10,10,5940905,1,1,1,1,5941628,3,2,10,10,5941773,2,1,7,7,5942466,2,1,11,11,5942949,2,1,14,14,5943225,2,1,20,20,5943692,2,1,22,22,5944185,2,1,28,28,5944647,2,1,32,32,5945075,2,1,38,38,5945754,1,2,10,10,5946379,1,1,1,1,5946690,3,2,10,10,5946838,2,1,6,6,5947791,2,1,23,23,5948618,2,1,24,24,5948831,2,1,25,25,5949009,2,1,26,26,5949204,2,1,30,30,5949650,2,1,33,33,5949943,2,1,39,39,5950456,1,2,10,10,5951083,1,1,1,1,5951345,3,2,10,10,5951493,2,1,4,4,5951996,2,1,8,8,5952339,2,1,12,12,5952709,2,1,19,19,5953118,2,1,37,37,5953682,1,2,10,10,5953852,3,2,11,11,5954038,2,1,1,-1,5954260,2,1,38,38,5954768,2,1,39,39,5954948,2,1,35,35,5955381,2,1,29,29,5955801,2,1,28,28,5956004,2,1,26,26,5956301,2,1,24,24,5956604,2,1,22,22,5956937,2,1,21,21,5957127,2,1,18,18,5957629,2,1,17,17,5957855,2,1,16,16,5958043,2,1,15,15,5958258,2,1,13,13,5958599,2,1,11,11,5958871,2,1,9,9,5959276,2,1,8,8,5959485,2,1,6,6,5959796,2,1,4,4,5960042,2,1,2,2,5960298,2,1,1,-1,5960531,1,2,11,11,5960769,1,1,1,1,5960976,3,2,11,11,5961123,2,1,2,2,5961651,2,1,9,9,5962093,2,1,13,13,5962474,2,1,15,15,5962895,2,1,16,16,5963088,2,1,17,17,5963283,2,1,18,18,5963703,2,1,21,21,5964136,2,1,24,24,5964791,2,1,28,28,5965234,2,1,38,38,5965709,2,1,39,39,5965905,1,2,11,11,5966527,1,1,1,1,5966788,3,2,11,11,5966919,2,1,4,4,5967427,2,1,4,4,5967845,2,1,6,6,5968079,2,1,35,35,5969606,1,2,11,11,5970569,1,1,1,1,5970763,3,2,11,11,5970887,2,1,8,8,5971609,2,1,11,11,5971891,2,1,22,22,5972467,2,1,26,26,5972962,2,1,29,29,5973219,2,1,1,1,5973857,1,2,11,11,5974034,2,1,1,1,5974254,3,2,11,11,5974430,2,1,4,4,5974697,1,2,11,11,5974870,2,1,1,1,5975101,3,2,11,11,5975271,2,1,1,1,5975520,1,2,11,11,5975685,3,2,12,12,5975880,2,1,1,-1,5976097,2,1,3,3,5976564,2,1,8,8,5976935,2,1,10,10,5977212,2,1,12,12,5977553,2,1,14,14,5977956,2,1,15,15,5978154,2,1,16,16,5978335,2,1,19,19,5978811,2,1,20,20,5978997,2,1,21,21,5979169,2,1,22,22,5979385,2,1,23,23,5979580,2,1,27,27,5980013,2,1,28,28,5980219,2,1,29,29,5980426,2,1,30,30,5980628,2,1,32,32,5981001,2,1,1,-1,5981239,1,2,12,12,5981867,1,1,1,1,5982064,3,2,12,12,5982203,2,1,3,3,5982679,2,1,10,10,5983160,2,1,12,12,5983426,2,1,14,14,5983724,2,1,19,19,5984240,2,1,27,27,5984712,2,1,32,32,5985062,1,2,12,12,5985684,1,1,1,1,5985893,3,2,12,12,5986063,2,1,8,8,5986578,2,1,15,15,5987046,2,1,16,16,5987216,2,1,20,20,5987727,2,1,23,23,5987977,2,1,28,28,5988383,2,1,29,29,5988550,1,2,12,12,5989511,1,1,1,1,5989744,3,2,12,12,5989894,2,1,21,21,5990461,2,1,22,22,5990644,2,1,1,1,5991222,1,2,12,12,5991395,2,1,1,1,5991613,3,2,12,12,5991804,2,1,30,30,5992395,1,2,12,12,5993097,2,1,1,1,5993361,3,2,12,12,5993524,2,1,1,1,5993728,1,2,12,12,5993901,3,2,13,13,5994137,2,1,1,-1,5994455,2,1,6,6,5995529,2,1,9,9,5996386,2,1,10,10,5996596,2,1,11,11,5996805,2,1,13,13,5997316,2,1,17,17,5997669,2,1,19,19,5997903,2,1,23,23,5998292,2,1,24,24,5998493,2,1,27,27,5998873,2,1,30,30,5999398,2,1,31,31,5999574,2,1,28,28,5999993,2,1,27,27,6000182,2,1,34,34,6000723,2,1,35,35,6000907,2,1,36,36,6001106,2,1,38,38,6001385,2,1,1,-1,6001624,1,2,13,13,6002197,1,1,1,1,6002404,3,2,13,13,6002534,2,1,6,6,6003071,2,1,9,9,6003392,2,1,13,13,6003754,2,1,23,23,6004467,2,1,24,24,6004644,2,1,30,30,6005157,2,1,36,36,6005602,2,1,38,38,6005928,1,2,13,13,6006681,1,1,1,1,6006938,3,2,13,13,6007090,2,1,11,11,6007554,2,1,17,17,6007977,2,1,19,19,6008182,2,1,35,35,6009149,1,2,13,13,6009914,1,1,1,1,6010164,3,2,13,13,6010273,2,1,10,10,6010773,2,1,28,28,6011483,2,1,31,31,6011756,2,1,1,1,6012594,1,2,13,13,6012791,2,1,1,1,6012990,3,2,13,13,6013187,2,1,34,34,6013847,1,2,13,13,6014443,2,1,1,1,6014727,3,2,13,13,6014884,2,1,1,1,6015099,1,2,13,13,6015286,3,2,14,14,6015507,2,1,1,-1,6015816,2,1,2,2,6016490,2,1,5,5,6016783,2,1,6,6,6016959,2,1,11,11,6017493,2,1,13,13,6018103,2,1,14,14,6018285,2,1,18,18,6018770,2,1,19,19,6018922,2,1,22,22,6019235,2,1,23,23,6019402,2,1,27,27,6019877,2,1,28,28,6020045,2,1,29,29,6020257,2,1,33,33,6020718,2,1,35,35,6020925,2,1,38,38,6021395,2,1,39,39,6021570,2,1,1,-1,6021912,1,2,14,14,6022616,1,1,1,1,6022825,3,2,14,14,6022962,2,1,6,6,6023884,2,1,11,11,6024390,2,1,14,14,6024640,2,1,18,18,6025082,2,1,19,19,6025270,2,1,22,22,6025743,2,1,23,23,6025911,2,1,28,28,6026389,2,1,33,33,6026873,2,1,38,38,6027298,1,2,14,14,6027962,1,1,1,1,6028186,3,2,14,14,6028304,2,1,2,2,6028893,2,1,5,5,6029165,2,1,13,13,6029678,2,1,27,27,6030198,2,1,29,29,6030521,2,1,39,39,6031025,1,2,14,14,6031741,1,1,1,1,6031954,3,2,14,14,6032114,2,1,35,35,6033252,1,2,14,14,6033475,3,2,15,15,6033646,2,1,1,-1,6033886,2,1,38,38,6034373,2,1,36,36,6034671,2,1,33,33,6035039,2,1,32,32,6035252,2,1,31,31,6035447,2,1,30,30,6035653,2,1,25,25,6036061,2,1,24,24,6036259,2,1,22,22,6036529,2,1,15,15,6037045,2,1,13,13,6037316,2,1,12,12,6037513,2,1,10,10,6037821,2,1,9,9,6038027,2,1,5,5,6038367,2,1,4,4,6038581,2,1,1,-1,6038842,1,2,15,15,6039091,1,1,1,1,6039317,3,2,15,15,6039465,2,1,4,4,6039957,2,1,5,5,6040132,2,1,13,13,6040644,2,1,15,15,6040913,2,1,22,22,6041450,2,1,24,24,6041734,2,1,31,31,6042285,2,1,36,36,6042660,2,1,38,38,6042947,1,2,15,15,6043797,1,1,1,1,6044016,3,2,15,15,6044150,2,1,9,9,6044778,2,1,10,10,6044955,2,1,25,25,6045775,2,1,32,32,6046178,1,2,15,15,6046742,1,1,1,1,6047024,3,2,15,15,6047158,2,1,12,12,6047604,2,1,30,30,6048119,2,1,33,33,6048418,1,2,15,15,6048618,3,2,16,16,6048780,2,1,1,-1,6049034,2,1,39,39,6049467,2,1,38,38,6049648,2,1,36,36,6049939,2,1,35,35,6050137,2,1,34,34,6050342,2,1,31,31,6050736,2,1,30,30,6050940,2,1,28,28,6051261,2,1,27,27,6051446,2,1,26,26,6051671,2,1,24,24,6052282,2,1,23,23,6052482,2,1,21,21,6052844,2,1,16,16,6053449,2,1,15,15,6053645,2,1,14,14,6053888,2,1,11,11,6054492,2,1,10,10,6054677,2,1,10,10,6054876,2,1,6,6,6055342,2,1,9,9,6055675,2,1,10,10,6055847,2,1,1,-1,6056136,1,2,16,16,6056506,1,1,1,1,6056732,3,2,16,16,6056902,2,1,6,6,6057516,2,1,11,11,6057885,2,1,16,16,6058297,2,1,24,24,6058900,2,1,28,28,6059391,2,1,30,30,6059655,2,1,38,38,6060276,2,1,39,39,6060439,1,2,16,16,6061227,1,1,1,1,6061458,3,2,16,16,6061633,2,1,21,21,6062721,2,1,27,27,6063217,2,1,31,31,6063572,2,1,36,36,6063976,1,2,16,16,6064744,1,1,1,1,6064959,3,2,16,16,6065087,2,1,9,9,6065764,2,1,10,10,6065935,2,1,15,15,6066376,2,1,26,26,6066893,2,1,34,34,6067330,2,1,35,35,6067533,2,1,1,1,6068187,1,2,16,16,6068380,2,1,1,1,6068599,3,2,16,16,6068784,2,1,14,14,6069380,2,1,23,23,6069780,1,2,16,16,6070329,2,1,1,1,6070684,3,2,16,16,6070826,2,1,1,1,6071034,1,2,16,16,6071193,3,2,17,17,6071382,2,1,1,-1,6071612,2,1,2,2,6072222,2,1,5,5,6072688,2,1,6,6,6072855,2,1,7,7,6073026,2,1,12,12,6073473,2,1,14,14,6073740,2,1,17,17,6074090,2,1,20,20,6074457,2,1,21,21,6074636,2,1,23,23,6074874,2,1,25,25,6075180,2,1,29,29,6075616,2,1,30,30,6075784,2,1,33,33,6076134,2,1,36,36,6076501,2,1,38,38,6076743,2,1,1,-1,6077141,1,2,17,17,6077805,1,1,1,1,6078059,3,2,17,17,6078258,2,1,5,5,6079109,2,1,6,6,6079296,2,1,12,12,6079802,2,1,14,14,6080010,2,1,17,17,6080343,2,1,20,20,6080754,2,1,29,29,6081469,2,1,33,33,6081842,2,1,36,36,6082211,2,1,38,38,6082411,1,2,17,17,6083019,1,1,1,1,6083318,3,2,17,17,6083466,2,1,30,30,6084751,1,2,17,17,6085391,1,1,1,1,6085604,3,2,17,17,6085729,2,1,2,2,6086284,2,1,7,7,6086621,2,1,21,21,6087148,2,1,23,23,6087397,2,1,25,25,6087658,1,2,17,17,6087894,3,2,18,18,6088076,2,1,1,-1,6088317,2,1,38,38,6088849,2,1,37,37,6089084,2,1,33,33,6089530,2,1,36,36,6089907,2,1,37,37,6090116,2,1,31,31,6090750,2,1,30,30,6090966,2,1,29,29,6091167,2,1,28,28,6091359,2,1,26,26,6091695,2,1,25,25,6091919,2,1,22,22,6092199,2,1,22,22,6092427,2,1,21,21,6092695,2,1,22,22,6092901,2,1,23,23,6093098,2,1,18,18,6093660,2,1,14,14,6094042,2,1,12,12,6094421,2,1,11,11,6094613,2,1,9,9,6094902,2,1,5,5,6095342,2,1,2,2,6095602,2,1,1,-1,6095816,1,2,18,18,6096047,1,1,1,1,6096256,3,2,18,18,6096417,2,1,9,9,6097407,2,2,17,17,6097815,2,2,17,17,6098194,2,1,14,14,6098399,2,1,26,26,6099312,2,1,28,28,6099643,2,1,30,30,6099881,2,1,36,36,6100332,2,1,38,38,6100534,1,2,18,18,6101202,1,1,1,1,6101439,3,2,18,18,6101572,2,1,2,2,6101945,2,1,5,5,6102216,2,1,11,11,6102706,2,1,18,18,6103154,2,1,21,21,6103487,2,1,31,31,6104069,2,1,33,33,6104321,1,2,18,18,6104887,1,1,1,1,6105210,3,2,18,18,6105377,2,1,12,12,6105818,2,1,22,22,6106303,2,1,23,23,6106462,2,1,1,1,6107048,1,2,18,18,6107218,2,1,1,1,6107415,3,2,18,18,6107595,2,1,24,24,6108127,2,1,29,29,6108488,2,1,25,25,6108848,2,1,24,24,6109047,1,2,19,19,6109692,3,2,19,19,6110001,1,2,18,18,6110176,2,1,1,1,6110412,3,2,18,18,6110596,2,1,1,1,6110788,1,2,18,18,6110953,3,2,19,19,6111125,2,1,1,-1,6111685,2,1,3,3,6112406,2,1,7,7,6112821,2,1,9,9,6113141,2,1,10,10,6113329,2,1,14,14,6113699,2,1,18,18,6114296,2,1,21,21,6114484,2,1,20,20,6114924,2,1,21,21,6115129,2,1,23,23,6115959,2,1,24,24,6116156,2,1,25,25,6116377,2,1,26,26,6116583,2,1,28,28,6117122,2,1,30,30,6117370,2,1,33,33,6117839,2,1,35,35,6118211,2,1,36,36,6118390,2,1,37,37,6118582,2,1,38,38,6118869,2,1,38,38,6119368,2,1,39,39,6119569,2,1,1,-1,6119817,1,2,19,19,6120482,1,1,1,1,6120725,3,2,19,19,6120857,2,1,3,3,6121272,2,1,9,9,6121752,2,1,10,10,6121941,2,1,14,14,6122386,2,1,20,20,6122935,2,1,24,24,6123333,2,1,25,25,6123502,2,1,28,28,6123952,2,1,30,30,6124227,2,1,35,35,6124734,2,1,36,36,6124903,2,1,39,39,6125250,1,2,19,19,6125948,1,1,1,1,6126203,3,2,19,19,6126361,2,1,7,7,6126857,2,1,23,23,6127490,2,1,26,26,6127743,2,1,34,34,6128319,2,1,37,37,6128699,2,1,34,34,6129138,2,1,33,33,6129346,1,2,18,18,6129946,1,1,1,1,6130207,3,1,1,1,6130530,3,2,18,18,6130660,1,2,19,19,6130872,1,1,1,1,6131069,3,2,19,19,6131223,2,1,18,18,6132039,1,2,19,19,6132238,3,2,20,20,6132407,2,1,1,-1,6132632,2,1,39,39,6133290,2,1,38,38,6133464,2,1,34,34,6133900,2,1,33,33,6134070,2,1,32,32,6134293,2,1,27,27,6134708,2,1,25,25,6135010,2,1,24,24,6135210,2,1,22,22,6135554,2,1,21,21,6135743,2,1,19,19,6136242,2,1,18,18,6136434,2,1,15,15,6136914,2,1,14,14,6137116,2,1,13,13,6137320,2,1,10,10,6137723,2,1,8,8,6137973,2,1,3,3,6138401,2,1,2,2,6138609,2,1,1,-1,6138816,1,2,20,20,6139057,1,1,1,1,6139262,3,2,20,20,6139421,2,1,8,8,6140470,2,1,21,21,6141237,2,1,24,24,6141868,2,1,27,27,6142249,2,1,38,38,6142968,1,2,20,20,6143671,1,1,1,1,6143913,3,2,20,20,6144050,2,1,10,10,6145055,2,1,25,25,6145736,2,1,32,32,6146179,2,1,33,33,6146354,2,1,39,39,6146820,1,2,20,20,6147473,1,1,1,1,6147679,3,2,20,20,6147813,2,1,2,2,6148329,2,1,3,3,6148492,2,1,13,13,6149066,2,1,15,15,6149304,2,1,18,18,6149709,2,1,19,19,6149883,2,1,1,1,6151094,1,2,20,20,6151254,2,1,1,1,6151457,3,2,20,20,6151650,2,1,14,14,6152107,2,1,22,22,6152538,2,1,34,34,6153070,1,2,20,20,6153693,2,1,1,1,6153926,3,2,20,20,6154085,2,1,1,1,6154292,1,2,20,20,6154436,3,2,21,21,6154643,2,1,1,-1,6154843,2,1,3,3,6155463,2,1,4,4,6155647,2,1,5,5,6155825,2,1,10,10,6156232,2,1,12,12,6156475,2,1,14,14,6156986,2,1,15,15,6157178,2,1,16,16,6157378,2,1,17,17,6157560,2,1,17,17,6157788,2,1,17,17,6158412,2,1,18,18,6158596,2,1,22,22,6158950,2,1,21,21,6159392,2,1,22,22,6159581,2,1,23,23,6159822,2,1,24,24,6160026,2,1,25,25,6160238,2,1,26,26,6160449,2,1,28,28,6160847,2,1,30,30,6161243,2,1,31,31,6161414,2,1,33,33,6161820,2,1,34,34,6162004,2,1,35,35,6162209,2,1,36,36,6162444,2,1,1,-1,6162783,1,2,21,21,6163363,1,1,1,1,6163587,3,2,21,21,6163722,2,1,15,15,6164608,2,1,16,16,6164848,2,1,17,17,6165010,2,1,18,18,6165233,2,1,10,10,6165667,2,1,25,25,6166481,2,1,31,31,6166900,2,1,33,33,6167186,2,1,34,34,6167392,1,2,21,21,6168008,1,1,1,1,6168226,3,2,21,21,6168386,2,1,3,3,6168804,2,1,4,4,6168986,2,1,5,5,6169194,2,1,12,12,6169817,2,1,23,23,6170318,2,1,28,28,6170848,2,1,26,26,6171092,2,1,30,30,6171474,2,1,35,35,6171895,1,2,21,21,6172553,1,1,1,1,6172781,3,2,21,21,6172904,2,1,21,21,6174051,2,1,1,1,6174644,1,2,21,21,6174814,2,1,1,1,6175031,3,2,21,21,6175206,2,1,14,14,6175634,2,1,24,24,6176143,2,1,36,36,6176711,1,2,21,21,6177310,2,1,1,1,6177548,3,2,21,21,6177708,2,1,1,1,6177919,1,2,21,21,6178063,3,2,22,22,6178260,2,1,1,-1,6178487,2,1,2,2,6179084,2,1,3,3,6179202,2,1,4,4,6179404,2,1,6,6,6179755,2,1,13,13,6180194,2,1,15,15,6180529,2,1,16,16,6180697,2,1,17,17,6180908,2,1,19,19,6181553,2,1,20,20,6181760,2,1,22,22,6182063,2,1,26,26,6182508,2,1,27,27,6182701,2,1,28,28,6182872,2,1,31,31,6183265,2,1,33,33,6183723,2,1,35,35,6184142,2,1,36,36,6184335,2,1,37,37,6184540,2,1,39,39,6184886,2,1,1,-1,6185163,1,2,22,22,6185874,1,1,1,1,6186142,3,2,22,22,6186282,2,1,22,22,6187835,2,1,33,33,6188457,2,1,36,36,6188780,2,1,37,37,6188949,1,2,22,22,6189561,1,1,1,1,6189810,3,2,22,22,6189896,2,1,6,6,6190712,2,1,16,16,6191344,2,1,26,26,6192174,2,1,28,28,6192422,2,1,39,39,6193197,1,2,22,22,6193806,1,1,1,1,6194008,3,2,22,22,6194175,2,1,4,4,6194734,2,1,13,13,6195201,2,1,19,19,6195635,2,1,17,17,6195851,2,1,31,31,6196590,2,1,35,35,6196968,2,1,1,1,6197647,1,2,22,22,6197847,2,1,1,1,6198049,3,2,22,22,6198248,2,1,2,2,6198500,2,1,3,3,6198682,2,1,15,15,6199244,2,1,20,20,6199584,2,1,27,27,6200233,1,2,22,22,6200764,2,1,1,1,6200998,3,2,22,22,6201143,2,1,1,1,6201371,1,2,22,22,6201519,3,2,23,23,6201749,2,1,1,-1,6201987,2,1,2,2,6202529,2,1,4,4,6202710,2,1,6,6,6203104,2,1,7,7,6203300,2,1,8,8,6203480,2,1,9,9,6203689,2,1,13,13,6204119,2,1,14,14,6204298,2,1,17,17,6204635,2,1,18,18,6204839,2,1,21,21,6205279,2,1,28,28,6205784,2,1,29,29,6205953,2,1,32,32,6206276,2,1,34,34,6206702,2,1,35,35,6206900,2,1,36,36,6207110,2,1,37,37,6207316,2,1,1,-1,6207648,1,2,23,23,6208172,1,1,1,1,6208398,3,2,23,23,6208558,2,1,8,8,6209312,2,1,9,9,6209486,2,1,17,17,6210124,2,1,28,28,6210750,2,1,34,34,6211172,1,2,23,23,6211788,1,1,1,1,6212005,3,2,23,23,6212158,2,1,4,4,6212614,2,1,7,7,6212856,2,1,13,13,6213417,2,1,14,14,6213588,2,1,18,18,6213963,2,1,21,21,6214285,2,1,29,29,6215082,2,1,35,35,6215508,2,1,36,36,6215691,1,2,23,23,6216317,1,1,1,1,6216507,3,2,23,23,6216670,2,1,2,2,6217137,2,1,6,6,6217456,2,1,1,1,6218342,1,2,23,23,6218524,2,1,1,1,6218724,3,2,23,23,6218925,2,1,32,32,6219534,2,1,37,37,6219913,1,2,23,23,6220518,2,1,1,1,6220763,3,2,23,23,6220899,2,1,1,1,6221099,1,2,23,23,6221265,3,2,24,24,6221481,2,1,1,-1,6221687,2,1,2,2,6222258,2,1,3,3,6222452,2,1,4,4,6222638,2,1,5,5,6222807,2,1,7,7,6223210,2,1,8,8,6223399,2,1,9,9,6223583,2,1,10,10,6223782,2,1,13,13,6224187,2,1,14,14,6224566,2,1,13,13,6224755,2,1,17,17,6225238,2,1,18,18,6225413,2,1,23,23,6225841,2,1,25,25,6226181,2,1,26,26,6226360,2,1,28,28,6226694,2,1,29,29,6226870,2,1,33,33,6227346,2,1,33,33,6227536,2,1,32,32,6227819,2,1,33,33,6227994,2,1,36,36,6228326,2,1,37,37,6228521,2,1,1,-1,6228810,1,2,24,24,6229367,1,1,1,1,6229643,3,2,24,24,6229788,2,1,4,4,6230267,2,1,9,9,6230658,2,1,10,10,6230831,2,1,14,14,6231250,2,1,17,17,6231579,1,2,24,24,6232635,1,1,1,1,6232868,3,2,24,24,6233000,2,1,5,5,6233615,2,1,23,23,6234228,2,1,25,25,6234632,2,1,33,33,6235284,2,1,36,36,6235613,2,1,37,37,6235785,1,2,24,24,6236403,1,1,1,1,6236632,3,2,24,24,6236784,2,1,3,3,6237222,2,1,7,7,6237590,2,1,8,8,6237772,2,1,26,26,6238371,2,1,28,28,6238747,2,1,1,1,6239655,1,2,24,24,6239809,2,1,1,1,6239999,3,2,24,24,6240198,2,1,2,2,6240401,2,1,18,18,6240893,2,1,29,29,6241455,2,1,32,32,6241736,1,2,24,24,6242270,2,1,1,1,6242514,3,2,24,24,6242678,2,1,1,1,6242879,1,2,24,24,6243017,3,2,25,25,6243228,2,1,1,-1,6243470,2,1,2,2,6244035,2,1,4,4,6244247,2,1,6,6,6244549,2,1,8,8,6244914,2,1,9,9,6245092,2,1,10,10,6245292,2,1,11,11,6245472,2,1,13,13,6246034,2,1,17,17,6246483,2,1,20,20,6246846,2,1,21,21,6247000,2,1,24,24,6247367,2,1,25,25,6247545,2,1,28,28,6247972,2,1,29,29,6248151,2,1,32,32,6248592,2,1,33,33,6248767,2,1,34,34,6248949,2,1,36,36,6249365,2,1,38,38,6249611,2,1,1,-1,6249870,1,2,25,25,6250483,1,1,1,1,6250683,3,2,25,25,6250819,2,1,8,8,6251640,2,1,9,9,6251844,2,1,11,11,6252044,2,1,21,21,6252566,2,1,25,25,6253022,2,1,28,28,6253407,2,1,29,29,6253609,1,2,25,25,6254229,3,2,25,25,6254597,2,1,10,10,6255364,1,2,25,25,6255656,1,1,1,1,6255963,3,2,25,25,6256159,2,1,2,2,6256829,2,1,5,5,6257033,2,1,6,6,6257320,2,1,5,5,6257579,2,1,4,4,6257787,2,1,13,13,6258230,2,1,20,20,6258977,2,1,32,32,6259443,2,1,33,33,6259676,2,1,34,34,6260095,2,1,33,33,6260291,2,1,38,38,6260686,1,2,25,25,6261375,1,1,1,1,6261578,3,2,25,25,6261730,2,1,1,1,6262964,1,2,25,25,6263142,2,1,1,1,6263317,3,2,25,25,6263488,2,1,17,17,6263997,2,1,24,24,6264368,2,1,33,33,6264987,2,1,36,36,6265231,1,2,25,25,6265891,2,1,1,1,6266138,3,2,25,25,6266284,2,1,1,1,6266508,1,2,25,25,6266691,3,2,26,26,6266862,2,1,1,-1,6267139,2,1,3,3,6267741,2,1,3,3,6268145,2,1,1,-1,6268381,1,2,26,26,6268824,3,2,25,25,6268972,2,1,1,-1,6269169,2,1,11,11,6269617,2,1,1,-1,6269812,1,2,25,25,6270256,1,1,1,1,6270471,3,2,25,25,6270655,1,2,25,25,6271069,1,1,1,1,6271300,3,2,25,25,6271457,1,2,25,25,6271831,3,2,25,25,6271979,2,1,11,11,6272440,1,2,25,25,6272625,3,2,26,26,6272776,2,1,1,-1,6272978,2,1,3,3,6273445,2,1,6,6,6273678,2,1,8,8,6273916,2,1,11,11,6274326,2,1,12,12,6274499,2,1,13,13,6274665,2,1,15,15,6274950,2,1,19,19,6275314,2,1,23,23,6275688,2,1,24,24,6275867,2,1,27,27,6276241,2,1,29,29,6276498,2,1,31,31,6276940,2,1,35,35,6277279,2,1,37,37,6277688,2,1,39,39,6277987,2,1,32,32,6278373,2,1,31,31,6278573,2,1,1,-1,6278802,1,2,26,26,6279467,1,1,1,1,6279666,3,2,26,26,6279821,2,1,6,6,6280480,2,1,12,12,6280992,2,1,13,13,6281160,2,1,24,24,6281721,2,1,27,27,6282339,2,1,39,39,6283335,1,2,26,26,6283971,1,1,1,1,6284175,3,2,26,26,6284307,2,1,8,8,6285049,2,1,11,11,6285358,2,1,19,19,6286043,2,1,23,23,6286425,2,1,29,29,6286897,2,1,32,32,6287157,2,1,37,37,6287647,1,2,26,26,6288270,1,1,1,1,6288485,3,2,26,26,6288631,2,1,15,15,6289603,2,1,35,35,6290210,2,1,1,1,6290856,1,2,26,26,6291027,2,1,1,1,6291229,3,2,26,26,6291397,2,1,3,3,6291638,1,2,26,26,6291810,2,1,1,1,6292046,3,2,26,26,6292185,2,1,1,1,6292394,1,2,26,26,6292556,3,2,27,27,6292765,2,1,1,-1,6292995,2,1,2,2,6293469,2,1,7,7,6293793,2,1,10,10,6294088,2,1,17,17,6294469,2,1,22,22,6294983,2,1,23,23,6295175,2,1,24,24,6295376,2,1,25,25,6295582,2,1,26,26,6295782,2,1,27,27,6296025,2,1,28,28,6296215,2,1,30,30,6296701,2,1,31,31,6296895,2,1,32,32,6297074,2,1,34,34,6297384,2,1,38,38,6297777,2,1,39,39,6298125,2,1,38,38,6298332,2,1,1,-1,6298611,1,2,27,27,6299262,1,1,1,1,6299503,3,2,27,27,6299618,2,1,10,10,6300514,2,1,24,24,6301185,2,1,25,25,6301381,2,1,31,31,6301885,1,2,27,27,6302506,1,1,1,1,6302770,3,2,27,27,6302931,2,1,7,7,6303707,2,1,26,26,6304475,2,1,27,27,6304647,1,2,27,27,6305557,1,1,1,1,6305760,3,2,27,27,6305911,2,1,2,2,6306541,2,1,28,28,6307469,2,1,30,30,6307682,2,1,32,32,6307968,2,1,39,39,6308550,2,1,1,1,6309211,1,2,27,27,6309398,2,1,1,1,6309574,3,2,27,27,6309774,2,1,17,17,6310365,2,1,22,22,6310758,2,1,23,23,6310929,2,1,34,34,6311538,1,2,27,27,6312199,2,1,1,1,6312432,3,2,27,27,6312597,2,1,1,1,6312791,1,2,27,27,6312965,3,2,28,28,6313138,2,1,1,-1,6313404,2,1,2,2,6313982,2,1,3,3,6314154,2,1,4,4,6314337,2,1,6,6,6314682,2,1,9,9,6315081,2,1,10,10,6315254,2,1,11,11,6315445,2,1,13,13,6315749,2,1,14,14,6315951,2,1,15,15,6316171,2,1,20,20,6316637,2,1,21,21,6316864,2,1,20,20,6317220,2,1,19,19,6317423,2,1,24,24,6317826,2,1,23,23,6318189,2,1,24,24,6318369,2,1,26,26,6318764,2,1,29,29,6319155,2,1,34,34,6319670,2,1,36,36,6319956,2,1,37,37,6320142,2,1,39,39,6320462,2,1,1,-1,6320950,1,2,28,28,6321632,1,1,1,1,6321863,3,2,28,28,6321976,2,1,2,2,6322774,2,1,3,3,6322976,2,1,9,9,6323457,2,1,11,11,6323688,2,1,14,14,6324103,2,1,29,29,6324954,2,1,34,34,6325439,1,2,27,27,6326018,1,1,1,1,6326252,3,1,1,1,6326585,3,2,27,27,6326693,1,2,28,28,6326923,1,1,1,1,6327119,3,2,28,28,6327231,2,1,6,6,6327834,2,1,10,10,6328250,2,1,13,13,6328516,2,1,26,26,6329261,2,1,39,39,6329873,1,2,28,28,6330587,1,1,1,1,6330813,3,2,28,28,6330954,2,1,4,4,6331462,2,1,19,19,6332076,2,1,36,36,6332621,2,1,37,37,6332795,1,2,28,28,6333690,1,1,1,1,6333912,3,2,28,28,6334058,2,1,1,1,6334452,1,2,28,28,6334657,2,1,1,1,6334869,3,2,28,28,6335029,2,1,15,15,6335472,2,1,21,21,6335855,2,1,23,23,6336057,1,2,28,28,6336572,2,1,1,1,6336800,3,2,28,28,6336952,2,1,1,1,6337169,1,2,28,28,6337325,3,2,29,29,6337525,2,1,1,-1,6337754,2,1,3,3,6338209,2,1,6,6,6338582,2,1,7,7,6338764,2,1,8,8,6338952,2,1,9,9,6339149,2,1,14,14,6339762,2,1,19,19,6340130,2,1,22,22,6340481,2,1,22,22,6340649,2,1,21,21,6341016,2,1,22,22,6341191,2,1,24,24,6341484,2,1,25,25,6341658,2,1,28,28,6342047,2,1,29,29,6342244,2,1,31,31,6342609,2,1,32,32,6342813,2,1,34,34,6343161,2,1,35,35,6343360,2,1,36,36,6343535,2,1,39,39,6343904,2,1,38,38,6344216,2,1,1,-1,6344481,1,2,29,29,6345170,1,1,1,1,6345424,3,2,29,29,6345561,2,1,3,3,6346080,2,1,7,7,6346440,2,1,9,9,6346701,2,1,28,28,6347764,2,1,29,29,6347935,2,1,32,32,6348416,2,1,36,36,6348816,1,2,29,29,6349436,1,1,1,1,6349694,3,2,29,29,6349906,2,1,22,22,6350953,2,1,34,34,6351664,2,1,38,38,6352024,2,1,39,39,6352211,1,2,29,29,6352893,1,1,1,1,6353212,3,2,29,29,6353307,2,1,14,14,6354315,2,1,19,19,6354754,2,1,21,21,6354965,2,1,24,24,6355336,2,1,25,25,6355509,2,1,31,31,6355943,2,1,35,35,6356314,2,1,1,1,6356930,1,2,29,29,6357113,2,1,1,1,6357312,3,2,29,29,6357519,2,1,6,6,6357813,2,1,8,8,6358030,1,2,29,29,6358302,2,1,1,1,6358603,3,2,29,29,6358754,2,1,1,1,6358982,1,2,29,29,6359133,3,2,30,30,6359347,2,1,1,-1,6359712,2,1,3,3,6360131,2,1,4,4,6360297,2,1,6,6,6360595,2,1,7,7,6360768,2,1,9,9,6361111,2,1,10,10,6361304,2,1,11,11,6361475,2,1,15,15,6361834,2,1,17,17,6362189,2,1,18,18,6362369,2,1,20,20,6362712,2,1,21,21,6362922,2,1,22,22,6363125,2,1,23,23,6363345,2,1,27,27,6364043,2,1,28,28,6364246,2,1,33,33,6364764,2,1,36,36,6365071,2,1,38,38,6365319,2,1,1,-1,6365590,1,2,30,30,6366192,1,1,1,1,6366429,3,2,30,30,6366611,2,1,3,3,6367134,2,1,7,7,6367484,2,1,10,10,6367823,2,1,15,15,6368388,2,1,20,20,6368883,2,1,23,23,6369121,2,1,27,27,6369628,2,1,28,28,6369821,2,1,33,33,6370310,2,1,37,37,6370601,2,1,36,36,6371358,2,1,37,37,6371557,1,2,30,30,6372209,1,1,1,1,6372441,3,2,30,30,6372588,2,1,4,4,6373116,2,1,9,9,6373486,2,1,11,11,6373700,2,1,18,18,6374208,2,1,21,21,6374550,1,2,30,30,6375327,1,1,1,1,6375593,3,2,30,30,6375735,2,1,17,17,6376667,2,1,22,22,6377026,2,1,38,38,6377628,2,1,1,1,6378304,1,2,30,30,6378479,2,1,1,1,6378683,3,2,30,30,6378855,2,1,6,6,6379165,1,2,30,30,6379382,2,1,1,1,6379641,3,2,30,30,6379813,2,1,1,1,6380024,1,2,30,30,6380181,3,2,31,31,6380365,2,1,1,-1,6380571,2,1,2,2,6381140,2,1,3,3,6381348,2,1,4,4,6381521,2,1,5,5,6381712,2,1,6,6,6381925,2,1,7,7,6382113,2,1,10,10,6382488,2,1,14,14,6382928,2,1,16,16,6383198,2,1,18,18,6383605,2,1,19,19,6383780,2,1,21,21,6384154,2,1,24,24,6384439,2,1,26,26,6384873,2,1,27,27,6385042,2,1,29,29,6385380,2,1,30,30,6385578,2,1,39,39,6386101,2,1,1,-1,6386357,1,2,31,31,6387050,1,1,1,1,6387281,3,2,31,31,6387435,2,1,3,3,6387991,2,1,5,5,6388189,2,1,21,21,6389166,2,1,24,24,6389610,2,1,26,26,6389833,1,2,31,31,6390659,1,1,1,1,6390867,3,2,31,31,6391012,2,1,2,2,6391543,2,1,7,7,6391914,2,1,18,18,6392524,2,1,19,19,6392710,2,1,16,16,6393088,2,1,30,30,6393684,2,1,39,39,6394206,1,2,31,31,6394852,1,1,1,1,6395035,3,2,31,31,6395214,2,1,4,4,6395829,2,1,14,14,6396332,2,1,27,27,6396801,2,1,29,29,6397107,1,2,31,31,6397723,1,1,1,1,6397961,3,2,31,31,6398099,2,1,1,1,6398472,1,2,31,31,6398679,2,1,1,1,6398880,3,2,31,31,6399077,2,1,6,6,6399446,2,1,10,10,6399755,1,2,31,31,6400034,2,1,1,1,6400714,3,2,31,31,6400873,2,1,1,1,6401077,1,2,31,31,6401256,3,2,32,32,6401452,2,1,1,-1,6401653,2,1,2,2,6402285,2,1,1,14,6402936,2,1,1,3,6403361,2,1,19,19,6404065,2,1,22,22,6404464,2,1,22,22,6404709,2,1,21,21,6405028,2,1,22,22,6405196,2,1,23,23,6405423,2,1,-16,-1,6406001,2,1,-9,-1,6406753,2,1,34,34,6407335,2,1,35,35,6407525,2,1,37,37,6407868,2,2,30,30,6408059,2,1,39,39,6408245,2,1,39,39,6408672,2,2,30,30,6408892,2,1,39,39,6409065,2,1,38,38,6409268,2,1,1,-1,6409507,1,2,32,32,6410105,1,1,1,1,6410334,3,2,32,32,6410518,2,1,5,5,6411288,2,1,19,19,6412050,2,1,34,34,6412788,1,2,32,32,6413460,1,1,1,1,6413974,3,2,32,32,6414118,2,1,4,4,6414657,2,1,6,6,6415093,2,1,9,9,6415508,2,1,11,11,6415716,2,1,27,27,6416519,2,1,38,38,6417100,1,2,32,32,6417913,1,1,1,1,6418120,3,2,32,32,6418261,2,1,7,7,6418942,2,1,8,8,6419136,2,1,10,10,6419448,2,1,14,14,6419822,2,1,22,22,6420303,2,1,23,23,6420498,2,1,29,29,6420934,2,1,30,30,6421117,2,1,35,35,6421645,2,1,37,37,6421859,2,1,1,1,6422593,1,2,32,32,6422833,2,1,1,1,6423042,3,2,32,32,6423236,2,1,2,2,6423475,2,1,12,12,6423997,2,1,13,13,6424152,2,1,21,21,6424634,2,1,25,25,6425003,2,1,26,26,6425151,2,1,28,28,6425424,2,1,31,31,6425770,2,1,39,39,6426328,1,2,32,32,6426978,2,1,1,1,6427248,3,2,32,32,6427458,2,1,1,1,6427628,1,2,32,32,6427806,3,2,33,33,6428030,2,1,1,-1,6428265,2,1,3,3,6428723,2,1,13,13,6429158,2,1,14,14,6429354,2,1,15,15,6429529,2,1,17,17,6429870,2,1,18,18,6430061,2,1,21,21,6430404,2,1,27,27,6430829,2,1,30,30,6431288,2,1,30,30,6431490,2,1,31,31,6431707,2,1,30,30,6432526,2,1,32,32,6432828,2,1,33,33,6433001,2,1,36,36,6433490,2,1,38,38,6433763,2,1,39,39,6433937,2,1,1,-1,6434208,1,2,33,33,6435051,1,1,1,1,6435284,3,2,33,33,6435433,2,1,3,3,6435933,2,1,14,14,6436379,2,1,17,17,6436739,2,1,33,33,6437469,2,1,36,36,6437930,2,1,39,39,6438285,1,2,33,33,6438998,1,1,1,1,6439572,3,2,33,33,6439669,2,1,15,15,6440222,2,1,26,26,6440861,2,1,30,30,6441305,2,1,31,31,6441442,2,1,27,27,6441905,2,1,26,26,6442093,2,1,38,38,6442634,1,2,33,33,6443273,1,1,1,1,6443530,3,2,33,33,6443702,2,1,18,18,6444450,2,1,32,32,6444962,2,1,1,1,6445675,1,2,33,33,6445857,2,1,1,1,6446062,3,2,33,33,6446259,2,1,13,13,6446670,2,1,20,20,6447134,2,1,20,20,6447829,2,1,21,21,6447994,1,2,33,33,6448473,2,1,1,1,6448710,3,2,33,33,6448885,2,1,1,1,6449085,1,2,33,33,6449248,3,2,34,34,6449447,2,1,1,-1,6449651,2,1,2,2,6450158,2,1,3,3,6450347,2,1,7,7,6450676,2,1,9,9,6451046,2,2,33,33,6451218,2,2,33,33,6451690,2,1,10,10,6452106,2,1,13,13,6452412,2,1,15,15,6452620,2,1,19,19,6453356,2,1,20,20,6453593,2,1,23,23,6454004,2,1,25,25,6454415,2,1,26,26,6454624,2,1,27,27,6454763,2,1,29,29,6455100,2,1,32,32,6455524,2,1,34,34,6455731,2,1,36,36,6456102,2,1,37,37,6456283,2,1,1,-1,6456552,1,2,34,34,6457197,1,1,1,1,6457426,3,2,34,34,6457560,2,1,23,23,6458779,2,1,37,37,6459375,1,2,34,34,6460204,1,1,1,1,6460410,3,2,34,34,6460546,2,1,3,3,6461059,2,1,2,2,6461260,2,1,9,9,6461752,2,1,25,25,6462552,2,1,34,34,6463046,1,2,34,34,6463751,1,1,1,1,6463959,3,2,34,34,6464100,2,1,7,7,6464620,2,1,13,13,6465079,2,1,27,27,6465865,2,1,36,36,6466501,1,2,34,34,6467192,1,1,1,1,6467405,3,2,34,34,6467554,2,1,1,1,6468364,1,2,34,34,6468537,2,1,1,1,6468736,3,2,34,34,6468921,2,1,10,10,6469301,2,1,15,15,6469656,2,1,19,19,6470132,2,1,20,20,6470285,2,1,26,26,6470725,2,1,29,29,6471050,2,1,32,32,6471370,1,2,34,34,6472029,2,1,1,1,6472288,3,2,34,34,6472456,2,1,1,1,6472678,1,2,34,34,6472829,3,2,35,35,6473021,2,1,1,-1,6473252,2,1,2,2,6473831,2,1,5,5,6474098,2,1,8,8,6474579,2,1,9,9,6474753,2,1,10,10,6474929,2,1,13,13,6475369,2,1,14,14,6475519,2,1,18,18,6475931,2,1,21,21,6476282,2,1,26,26,6476717,2,1,32,32,6477181,2,1,33,33,6477335,2,1,37,37,6477735,2,1,38,38,6477904,2,1,39,39,6478112,2,1,1,-1,6478421,1,2,35,35,6479051,1,1,1,1,6479257,3,2,35,35,6479391,2,1,2,2,6480032,2,1,33,33,6480989,2,1,37,37,6481406,2,1,38,38,6481568,1,2,35,35,6482310,1,1,1,1,6482515,3,2,35,35,6482689,2,1,5,5,6483133,2,1,9,9,6483545,2,1,10,10,6483741,2,1,18,18,6484360,2,1,26,26,6484830,1,2,35,35,6485784,1,1,1,1,6485999,3,2,35,35,6486156,2,1,8,8,6486636,2,1,13,13,6487020,2,1,22,22,6487522,2,1,32,32,6488072,2,1,39,39,6488503,2,1,22,22,6489104,2,1,21,21,6489284,2,1,1,1,6489895,1,2,35,35,6490094,2,1,1,1,6490297,3,2,35,35,6490495,2,1,14,14,6490969,1,2,35,35,6491441,2,1,1,1,6491750,3,2,35,35,6491899,2,1,1,1,6492128,1,2,35,35,6492271,3,2,36,36,6492447,2,1,1,-1,6492674,2,1,3,3,6493169,2,1,6,6,6493427,2,1,8,8,6493787,2,1,9,9,6493972,2,1,15,15,6494376,2,1,17,17,6494614,2,1,19,19,6494917,2,1,22,22,6495360,2,1,23,23,6495557,2,1,25,25,6495820,2,1,26,26,6495992,2,1,28,28,6496330,2,1,30,30,6496748,2,1,32,32,6497180,2,1,33,33,6497392,2,1,34,34,6497587,2,1,34,34,6497762,2,1,34,34,6498299,2,1,35,35,6498488,2,1,37,37,6498788,2,1,39,39,6499067,2,1,1,-1,6499360,1,2,36,36,6499971,1,1,1,1,6500213,3,2,36,36,6500356,2,1,3,3,6500894,2,1,8,8,6501293,2,1,15,15,6501743,2,1,19,19,6502089,2,1,28,28,6502871,2,1,37,37,6503330,1,2,36,36,6503986,1,1,1,1,6504228,3,2,36,36,6504391,2,1,6,6,6504808,2,1,9,9,6505093,2,1,17,17,6505602,2,1,26,26,6506094,2,1,34,34,6506620,1,2,36,36,6507247,1,1,1,1,6507469,3,2,36,36,6507603,2,1,22,22,6508451,2,1,23,23,6508617,2,1,25,25,6508904,2,1,30,30,6509336,2,1,32,32,6509683,2,1,33,33,6509840,2,1,35,35,6510139,2,1,1,1,6510806,1,2,36,36,6511377,2,1,1,1,6511602,3,2,36,36,6511783,2,1,39,39,6512488,1,2,36,36,6513198,2,1,1,1,6513454,3,2,36,36,6513659,2,1,1,1,6513882,1,2,36,36,6514102,3,2,37,37,6514325,2,1,1,-1,6514560,2,1,2,2,6515206,2,1,3,3,6515385,2,1,4,4,6515590,2,1,5,5,6515792,2,1,6,6,6515985,2,1,7,7,6516187,2,1,9,9,6516526,2,1,10,10,6516709,2,1,12,12,6516983,2,1,16,16,6517410,2,1,17,17,6517593,2,1,19,19,6517921,2,1,20,20,6518102,2,1,21,21,6518297,2,1,23,23,6518808,2,1,24,24,6519052,2,1,25,25,6519250,2,1,26,26,6519420,2,1,29,29,6519897,2,1,30,30,6520059,2,1,32,32,6520334,2,1,34,34,6520680,2,1,36,36,6521117,2,1,37,37,6521295,2,1,39,39,6521629,2,1,1,-1,6521934,1,2,37,37,6522621,1,1,1,1,6522844,3,2,37,37,6522994,2,1,6,6,6523646,2,1,7,7,6523845,2,1,19,19,6524745,2,1,21,21,6524961,2,1,25,25,6525383,2,1,26,26,6525557,2,1,39,39,6526245,1,2,37,37,6527062,1,1,1,1,6527285,3,2,37,37,6527432,2,1,3,3,6527964,2,1,24,24,6528785,2,1,30,30,6529290,2,1,32,32,6529597,2,1,37,37,6530020,1,2,37,37,6530752,1,1,1,1,6530962,3,2,37,37,6531099,2,1,2,2,6531644,2,1,4,4,6531882,2,1,23,23,6532935,2,1,34,34,6533442,2,1,36,36,6533712,2,1,1,1,6534360,1,2,37,37,6534561,2,1,1,1,6534737,3,2,37,37,6534936,2,1,5,5,6535261,2,1,9,9,6535620,2,1,10,10,6535792,2,1,12,12,6536053,2,1,16,16,6536499,2,1,17,17,6536659,2,1,20,20,6537036,2,1,30,30,6537509,2,1,29,29,6537864,2,1,30,30,6538068,1,2,37,37,6538666,2,1,1,1,6538902,3,2,37,37,6539330,2,1,1,1,6540009,1,2,37,37,6540195,3,2,38,38,6540399,2,1,1,-1,6540638,2,1,6,6,6541459,2,1,8,8,6541862,2,1,9,9,6542068,2,1,10,10,6542245,2,1,11,11,6542440,2,1,14,14,6542854,2,1,15,15,6543052,2,1,16,16,6543268,2,1,17,17,6543428,2,1,21,21,6543869,2,1,23,23,6544114,2,1,29,29,6544658,2,1,30,30,6544860,2,1,31,31,6545050,2,1,33,33,6545357,2,1,35,35,6545626,2,1,36,36,6545823,2,1,38,38,6546341,2,1,1,-1,6546620,1,2,38,38,6547338,1,1,1,1,6547562,3,2,38,38,6547699,2,1,9,9,6548349,2,1,21,21,6548892,1,2,38,38,6549704,1,1,1,1,6549921,3,2,38,38,6550050,2,1,11,11,6550759,2,1,23,23,6551347,2,1,31,31,6551890,2,1,38,38,6552392,1,2,38,38,6553004,1,1,1,1,6553217,3,2,38,38,6553358,2,1,6,6,6553916,2,1,8,8,6554170,2,1,10,10,6554367,2,1,14,14,6554862,2,1,16,16,6555105,2,1,17,17,6555302,2,1,35,35,6556008,2,1,36,36,6556163,2,1,1,1,6556795,1,2,38,38,6556993,2,1,1,1,6557201,3,2,38,38,6557401,2,1,15,15,6557853,2,1,29,29,6558358,2,1,30,30,6558521,2,1,33,33,6558878,1,2,38,38,6559503,2,1,1,1,6559717,3,2,38,38,6559887,2,1,1,1,6560109,1,2,38,38,6560256,3,2,39,39,6560433,2,1,1,-1,6560635,2,1,2,2,6561196,2,1,6,6,6561568,2,1,7,7,6561743,2,1,8,8,6561919,2,1,11,11,6562324,2,1,12,12,6562503,2,1,13,13,6562691,2,1,15,15,6563026,2,1,16,16,6563230,2,1,20,20,6563708,2,1,21,21,6563873,2,1,25,25,6564294,2,1,26,26,6564467,2,1,30,30,6564861,2,1,31,31,6565038,2,1,33,33,6565345,2,1,36,36,6565760,2,1,37,37,6565956,2,1,1,-1,6566257,1,2,39,39,6566863,1,1,1,1,6567067,3,2,39,39,6567223,2,1,7,7,6567835,2,1,12,12,6568271,2,1,15,15,6568639,2,1,21,21,6569071,2,1,33,33,6569651,2,1,36,36,6570105,1,2,39,39,6570688,1,1,1,1,6570921,3,1,1,1,6571258,3,2,39,39,6571484,2,1,11,11,6572270,1,2,39,39,6572584,1,1,1,1,6572891,3,2,39,39,6573051,2,1,25,25,6574140,2,1,30,30,6574541,1,2,39,39,6575161,1,1,1,1,6575390,3,2,39,39,6575523,1,2,39,39,6577537,1,1,1,1,6577769,3,2,39,39,6577936,2,1,1,1,6578739,1,2,39,39,6578933,2,1,1,1,6579128,3,2,39,39,6579350,2,1,2,2,6579575,2,1,6,6,6579943,2,1,8,8,6580154,2,1,13,13,6580652,2,1,16,16,6580937,2,1,20,20,6581364,2,1,26,26,6581774,2,1,31,31,6582317,2,1,37,37,6582857,1,2,39,39,6583542,2,1,1,1,6583763,3,2,39,39,6584135,2,1,1,1,6584394,1,2,39,39,6584576,2,1,1,-1,6585148,2,1,1,-1,6585800,3,2,39,39,6586546,2,1,1,-1,6586838,2,1,12,12,6587281,2,1,1,-1,6587466,1,2,39,39,6587959,1,1,1,1,6588199,3,2,39,39,6588350,1,2,39,39,6588774,1,1,1,1,6588995,3,2,39,39,6589154,1,2,39,39,6589661,1,1,1,1,6590028,3,2,39,39,6590180,2,1,1,1,6590471,1,2,39,39,6590655,2,1,1,1,6590863,2,1,1,1,6591401,3,2,39,39,6591658,2,1,1,1,6591928,2,1,12,12,6592714,1,2,39,39,6593190,3,1,1,1,6593392,2,1,1,1,6593940"; - -// const icsMoves = -// "3,2,1,-1,13510,1,2,1,-1,14065,3,2,2,2,15162,3,1,1,-1,15360,3,1,7,7,15940,3,1,1,-1,16127,3,1,1,-1,16381,1,1,6,6,16849,1,1,4,4,17053,3,1,1,-1,17239,1,2,2,2,17444,1,1,7,7,17800,1,1,4,4,18080,1,1,2,2,18300,3,2,3,3,18461,3,1,1,-1,18649,3,1,2,2,18862,3,1,4,4,19212,3,1,6,6,19525,3,1,7,7,19698,3,1,8,8,19848,3,1,1,-1,20070,3,1,1,-1,20310,2,1,8,8,20655,1,1,6,6,20920,1,1,2,2,21262,3,1,1,-1,21433,1,2,3,3,21698,1,1,7,7,22005,3,2,4,4,22149,3,1,1,-1,22334,3,1,7,7,22596,3,1,8,8,22878,3,1,1,-1,23158,3,1,1,-1,23418,2,1,7,7,23850,1,1,6,6,24120,1,1,4,4,24369,1,1,2,2,24598,3,1,1,-1,24809,1,2,4,4,25123,3,2,5,5,25388,3,1,1,-1,25670,3,1,7,7,26176,3,1,10,10,26462,3,1,1,-1,26656,3,1,1,-1,26860,1,1,5,5,27399,1,1,9,9,27713,3,1,1,-1,27902,1,2,5,5,28112,1,1,7,7,28399,3,2,6,6,28569,3,1,1,-1,28764,3,1,7,7,29001,3,1,5,5,29311,3,1,3,3,29554,3,1,2,2,29767,3,1,1,-1,29984,3,1,1,-1,30195,1,1,6,6,30646,1,1,7,7,30820,3,1,1,-1,31008,1,2,6,6,31239,1,1,9,9,31604,3,2,7,7,31762,3,1,1,-1,31951,3,1,9,9,32203,3,1,1,-1,32560,3,1,1,-1,32779,2,1,6,6,33148,1,1,7,7,33429,1,1,3,3,33732,3,1,1,-1,33957,1,2,7,7,34277,1,1,7,7,34516,1,1,10,10,34775,3,2,8,8,34943,3,1,1,-1,35149,3,1,10,10,35365,3,1,7,7,35664,3,1,1,-1,35861,3,1,1,-1,36099,2,1,2,2,36585,1,1,6,6,36896,1,1,6,6,37066,1,1,5,5,37411,3,1,1,-1,37655,3,1,6,6,37909,1,2,8,8,38087,1,1,7,7,38322,3,2,9,9,38489,3,1,1,-1,38709,3,1,7,7,38924,3,1,8,8,39188,3,1,2,2,39743,3,1,1,-1,39945,3,1,1,-1,40202,2,1,2,2,40652,1,1,3,3,41107,3,1,1,-1,41304,1,2,9,9,41538,1,1,7,7,41856,1,1,9,9,42077,3,2,10,10,42256,3,1,1,-1,42449,3,1,9,9,42661,3,1,7,7,42942,3,1,5,5,43164,3,1,1,-1,43373,3,1,1,-1,43592,1,1,2,2,44078,3,1,1,-1,44325,1,2,10,10,44617,3,2,1,-1,44863,1,1,1,-1,45048,3,2,-1,-1,45408,3,1,1,-1,45622,1,1,1,-1,45818,3,2,4,4,46161,3,1,3,3,46294,1,2,4,4,46470,1,1,3,3,46615,3,1,1,-1,46859,1,1,1,-1,46995,3,2,3,3,47374,3,1,7,7,47539,1,2,3,3,47702,1,1,7,7,47822,3,1,1,-1,48093,1,1,1,-1,48231,3,2,10,10,48510,3,1,9,9,48664,3,1,10,10,48862,1,2,10,10,49024,1,1,10,10,49197,1,1,9,9,49377,3,2,-1,-1,49544,3,1,1,-1,49768,1,1,1,-1,49939,3,2,3,3,50228,3,1,7,7,50372,1,2,3,3,50533,1,1,7,7,50684,3,1,1,-1,50908,1,1,1,-1,51054,3,2,5,5,51342,3,1,4,4,51494,1,2,5,5,51654,1,1,4,4,51804,3,2,9,9,52089,3,1,3,3,52259,1,2,9,9,52430,1,1,3,3,52573,3,2,1,-1,52804,3,1,1,-1,53134,1,1,1,-1,53325,3,1,1,-1,53778,1,1,1,-1,53993,3,2,-1,-1,54310,3,1,1,-1,54505,1,1,1,-1,54743,3,2,5,5,55164,3,1,6,6,55315,1,2,5,5,55486,1,1,6,6,55642,3,2,10,10,55896,3,1,6,6,56093,3,1,4,4,56354,1,2,10,10,56518,1,1,4,4,56682,1,1,6,6,56893,3,1,1,-1,57093,1,1,1,-1,57260,3,2,-1,-1,57568,3,1,1,-1,57757,1,1,1,-1,57995,3,2,5,5,58285,3,1,5,5,58433,1,2,5,5,58598,1,1,5,5,58752,3,2,6,6,58978,3,1,3,3,59115,1,2,6,6,59314,1,1,3,3,59436,3,2,2,2,59834,3,1,7,7,60209,1,2,2,2,60389,1,1,7,7,60537,3,2,1,-1,60767,3,1,1,-1,61067,1,1,1,-1,61288,3,2,4,4,61601,3,1,4,4,61756,1,2,4,4,61895,1,1,4,4,62056,3,2,5,5,62317,3,1,8,8,62515,1,2,5,5,62684,1,1,8,8,62816,3,2,-1,-1,63182,3,1,1,-1,63404,1,1,1,-1,63583,3,2,-1,-1,64271,3,1,1,-1,64473,1,1,1,-1,64668,3,2,3,3,65135,3,1,5,5,65293,1,2,3,3,65472,1,1,5,5,65607,3,2,10,10,65953,1,2,-1,-1,66296,3,2,-1,-1,66510,3,2,-1,-1,66995,3,1,1,-1,67234,1,1,1,-1,67416,3,2,3,3,67678,3,1,9,9,67850,1,2,3,3,67989,1,1,9,9,68131,3,2,4,4,68434,3,1,4,4,68615,1,2,4,4,68763,1,1,4,4,69006,3,2,1,-1,69233,3,1,1,-1,69553,1,1,1,-1,69782,3,2,4,4,70111,3,1,3,3,70272,1,2,4,4,70436,1,1,3,3,70588,3,2,4,4,70856,3,1,9,9,71018,1,2,4,4,71190,1,1,9,9,71358,3,2,-1,-1,71690,3,1,1,-1,71888,1,1,1,-1,72046,3,2,-1,-1,72522,3,1,1,-1,72718,1,1,1,-1,72866,3,2,5,5,73278,3,1,4,4,73668,1,2,5,5,73887,1,1,4,4,74050,3,1,1,5,74451,2,2,1,1,74639,1,1,1,5,74764,3,1,-5,-1,74967,2,2,1,1,75173,1,1,-5,-1,75313,1,2,1,1,75490,3,1,6,6,75659,3,2,1,1,75805,1,1,6,6,75966,3,1,1,-1,76347,1,1,1,-1,76554,3,2,4,4,76941,3,1,5,5,77107,1,2,4,4,77268,1,1,5,5,77412,3,1,1,-1,77702,1,1,1,-1,77856,3,2,2,2,78158,1,2,2,2,78447,1,2,2,2,78675,3,2,2,2,78872,3,2,2,2,79020,3,1,8,8,79245,1,2,2,2,79461,1,1,8,8,79590,3,1,1,-1,79892,1,1,1,-1,80077,3,2,6,6,80397,3,1,9,9,80581,1,2,6,6,80725,1,1,9,9,80860,3,2,-1,-1,81168,3,1,1,-1,81382,1,1,1,-1,81575,3,2,5,5,81850,3,1,10,10,82020,1,2,5,5,82195,1,1,10,10,82333,3,2,9,9,82613,3,1,10,10,82787,1,2,9,9,82968,1,1,10,10,83112,3,1,1,-1,83334,1,1,1,-1,83496,3,2,3,3,83789,3,1,8,8,83945,1,2,3,3,84120,1,1,8,8,84262,3,1,1,-1,84493,1,1,1,-1,84657,3,2,3,3,85065,3,1,2,2,85256,1,2,3,3,85417,1,1,2,2,85563,3,2,-1,-1,86016,3,1,1,-1,86252,1,1,1,-1,86406,3,2,6,6,86681,3,1,8,8,86840,1,2,6,6,87016,1,1,8,8,87143,3,2,10,10,87590,3,1,9,9,87956,1,2,10,10,88125,1,1,9,9,88271,3,1,1,-1,88558,1,1,1,-1,88719,3,2,-1,-1,89474,3,1,1,-1,89678,1,1,1,-1,89885,3,2,2,2,90234,3,1,10,10,90394,1,2,2,2,90548,1,1,10,10,90729,3,2,2,2,91053,3,1,4,4,91245,1,2,2,2,91405,1,1,4,4,91562,3,2,1,-1,91786,3,2,1,-1,92132,3,2,1,-1,92245,3,2,1,-1,92603,1,2,1,-1,92918,3,1,1,-1,93117,1,1,1,-1,93309,2,2,-1,-1,93787,3,2,4,4,94191,3,1,9,9,94363,1,2,4,4,94548,1,1,9,9,94706,1,1,1,-1,94942,1,2,1,-1,95092,1,1,4,4,95820,1,2,2,2,96010,2,1,1,1,96263,3,2,2,2,96378,3,1,1,-1,96577,3,1,4,4,96932,3,1,1,1,97148,3,1,8,8,97518,3,1,9,9,97843,3,1,10,10,98043,3,1,1,-1,98258,3,1,1,-1,98486,2,1,6,6,98881,1,1,3,3,99239,3,1,1,-1,99419,1,2,2,2,99604,2,1,1,1,99826,3,2,2,2,100208,1,1,5,5,100451,1,2,3,3,100582,2,1,1,1,100826,3,2,3,3,100984,3,1,1,-1,101178,3,1,5,5,101800,3,1,1,-1,102009,3,1,1,-1,102273,2,1,5,5,102551,3,1,1,-1,103254,1,2,3,3,103502,2,1,1,1,103721,3,2,3,3,103895,1,1,7,7,104256,1,1,10,10,104542,1,2,4,4,104694,2,1,1,1,105041,3,2,4,4,105173,3,1,1,-1,105378,3,1,5,5,105870,3,1,7,7,106080,3,1,10,10,106392,3,1,1,-1,106589,2,1,3,3,107209,3,1,1,-1,107512,1,1,7,7,107971,1,1,4,4,108184,3,1,1,-1,108360,1,2,4,4,108553,2,1,1,1,108780,3,2,4,4,108935,1,1,3,3,109144,1,1,8,8,109504,1,2,5,5,109646,2,1,1,1,109940,3,2,5,5,110096,3,1,1,-1,110281,3,1,8,8,110887,3,1,10,10,111127,3,1,3,3,111564,3,1,2,2,111733,3,1,1,-1,111949,3,1,1,-1,112208,2,1,6,6,112549,1,1,5,5,112778,1,1,2,2,113042,3,1,1,-1,113216,1,2,5,5,113388,2,1,1,1,113607,3,2,5,5,113796,1,1,7,7,114141,3,2,5,5,114312,1,1,9,9,114491,3,1,9,9,114891,1,2,5,5,115045,1,1,9,9,115207,1,1,8,8,115400,1,1,1,1,116158,1,2,6,6,116313,3,1,1,1,116488,3,2,6,6,116625,3,1,1,-1,116830,3,1,2,2,117409,3,1,2,2,117618,3,1,3,3,117910,3,1,7,7,118285,3,1,8,8,118456,3,1,9,9,118638,3,1,1,-1,118881,3,1,1,-1,119156,1,1,8,8,119788,1,1,9,9,119992,1,1,10,10,120208,1,1,2,2,120661,3,1,1,-1,120831,1,2,6,6,121061,1,1,1,1,121246,3,2,6,6,121378,3,1,1,1,121563,1,1,4,4,121890,1,1,7,7,122198,1,2,7,7,122355,2,1,1,1,122653,3,2,7,7,122820,3,1,1,-1,122990,3,1,4,4,123590,3,1,7,7,123838,3,1,9,9,124063,3,1,1,-1,124275,3,1,1,-1,124535,2,1,5,5,124936,1,1,4,4,125299,1,1,6,6,125541,1,1,7,7,125699,3,1,1,-1,126106,1,2,7,7,126370,2,1,1,1,126636,3,2,7,7,126782,1,1,3,3,127026,1,1,7,7,127293,1,1,10,10,127677,1,2,8,8,127821,2,1,1,1,128188,3,2,8,8,128355,3,1,1,-1,128534,3,1,3,3,129003,3,1,5,5,129188,3,1,9,9,129540,3,1,1,-1,129821,1,1,9,9,130279,3,1,10,10,130479,3,1,8,8,130733,3,1,8,8,130978,3,1,1,-1,131239,3,1,1,-1,131575,1,1,6,6,131853,1,2,8,8,132337,2,1,1,1,132591,3,2,8,8,132729,1,1,3,3,132958,1,2,9,9,133108,2,1,1,1,133333,3,2,9,9,133500,3,1,1,-1,133696,3,1,3,3,134040,3,1,8,8,134410,3,1,1,-1,134603,3,1,1,-1,134845,2,1,4,4,135244,2,1,9,9,135708,2,1,10,10,135895,1,1,5,5,136294,3,1,1,-1,136468,1,2,9,9,136692,2,1,1,1,136979,3,2,9,9,137123,1,1,8,8,137487,1,1,10,10,137727,1,2,10,10,137894,2,1,1,1,138256,3,2,10,10,138425,3,1,1,-1,138609,3,1,8,8,139258,3,1,9,9,139449,3,1,10,10,139643,3,1,1,-1,139863,3,1,1,-1,140131,2,1,7,7,140525,2,1,4,4,140821,2,1,3,3,140997,1,1,6,6,141270,3,1,1,-1,141785,1,1,5,5,142315,3,1,6,6,142507,1,2,10,10,142776,2,1,1,1,143032,3,2,10,10,143225,1,2,1,5,144409,2,1,1,1,144614,3,2,1,5,144736,1,2,-5,-1,144935,2,1,1,1,145136,3,2,-5,-1,145307,1,1,1,1,145501,1,2,6,6,145639,3,1,1,1,145803,3,2,6,6,145920,1,1,1,-1,146539,3,1,1,-1,147076,1,1,1,-1,147342,3,1,1,-1,147800,1,1,1,-1,148034,3,2,-1,-1,148583,3,1,1,-1,148801,1,1,1,-1,148972,2,2,8,8,149321,3,1,10,10,149482,2,2,8,8,149682,1,1,10,10,149817,2,2,10,10,150071,3,1,9,9,150208,2,2,10,10,150411,1,1,9,9,150579,3,1,1,-1,150815,1,1,1,-1,150994,2,2,6,6,151376,3,1,3,3,151523,2,2,6,6,151706,1,1,3,3,151868,2,2,8,8,152108,3,1,5,5,152272,2,2,8,8,152457,1,1,5,5,152639,3,1,1,-1,152848,1,1,1,-1,153062,2,2,2,2,153476,3,1,4,4,153624,2,2,2,2,153807,1,1,4,4,154005,3,1,1,-1,154257,1,1,1,-1,154411,2,2,2,2,155033,3,1,9,9,155183,2,2,2,2,155394,1,1,9,9,155542,3,2,-1,-1,155934,3,1,1,-1,156223,1,1,1,-1,156394,3,2,-1,-1,156943,3,1,1,-1,157138,1,1,1,-1,157303,2,2,8,8,157587,3,1,5,5,157741,2,2,8,8,157927,1,1,5,5,158048,2,2,9,9,158271,2,2,6,6,158481,3,1,3,3,158667,2,2,6,6,158844,2,2,9,9,159097,1,1,3,3,159348,2,2,1,-1,159620,3,1,1,-1,160013,1,1,1,-1,160204,3,1,1,-1,160701,1,1,1,-1,160898,2,2,9,9,161200,3,1,7,7,161353,2,2,9,9,161550,1,1,7,7,161690,2,2,10,10,161945,3,1,5,5,162097,2,2,10,10,162279,1,1,5,5,162488,3,1,1,-1,162725,1,1,1,-1,162903,3,2,-1,-1,163408,3,1,1,-1,163622,1,1,1,-1,163801,3,2,-1,-1,164515,3,1,1,-1,164726,1,1,1,-1,164903,2,2,5,5,165316,3,1,8,8,165466,2,2,5,5,165664,1,1,8,8,165834,2,2,6,6,166048,3,1,10,10,166206,2,2,6,6,166399,1,1,10,10,166552,2,2,1,-1,166812,3,1,1,-1,167307,1,1,1,-1,167550,3,2,-1,-1,167889,3,1,1,-1,168099,1,1,1,-1,168264,2,2,10,10,168610,3,1,7,7,168737,2,2,10,10,168937,1,1,7,7,169097,1,2,1,5,169638,2,1,1,1,169829,3,2,1,5,169974,1,2,-5,-1,170156,2,1,1,1,170359,3,2,-5,-1,170509,1,1,1,1,170725,1,2,6,6,171044,3,1,1,1,171233,3,2,6,6,171380,3,1,1,-1,171994,1,1,1,-1,172271,2,2,6,6,172805,3,1,7,7,172953,2,2,6,6,173153,1,1,7,7,173293,3,1,1,-1,173550,1,2,1,1,173949,1,1,1,-1,174134,3,1,1,-1,174507,1,1,1,-1,174745,3,1,1,-1,175179,1,1,1,-1,175408,2,2,6,6,175720,3,1,8,8,175878,2,2,6,6,176068,1,1,8,8,176218,3,1,1,-1,176470,1,1,1,-1,176635,3,2,-1,-1,177016,3,1,1,-1,177216,1,1,1,-1,177421,2,2,6,6,177798,3,1,4,4,177949,2,2,6,6,178119,1,1,4,4,178288,2,2,5,5,178508,3,1,5,5,178680,2,2,5,5,178896,1,1,5,5,179061,3,1,1,-1,179273,1,1,1,-1,179438,3,1,1,-1,179789,1,1,1,-1,179951,2,2,10,10,180377,3,1,10,10,180554,2,2,10,10,180761,1,1,10,10,180918,3,2,-1,-1,181128,3,1,1,-1,181333,1,1,1,-1,181524,2,2,9,9,181875,3,1,7,7,182031,2,2,9,9,182215,1,1,7,7,182394,3,1,1,-1,182597,1,1,1,-1,182805,2,2,4,4,183243,3,1,2,2,183411,2,2,4,4,183604,1,1,2,2,183761,3,2,-1,-1,184110,3,1,1,-1,184311,1,1,1,-1,184499,2,2,9,9,184766,3,1,4,4,184926,2,2,9,9,185118,1,1,4,4,185268,2,2,7,7,185718,3,1,10,10,186042,2,2,7,7,186288,1,1,10,10,186446,1,1,6,6,186843,1,1,6,6,187197,3,1,1,5,187470,2,2,1,1,187701,1,1,1,5,187850,3,1,-5,-1,188042,2,2,1,1,188254,1,1,-5,-1,188397,1,2,1,1,188564,3,1,6,6,188754,3,2,1,1,188884,1,1,6,6,189053,3,1,1,-1,189624,1,1,1,-1,189956,3,1,6,6,190365,3,1,1,-1,190858,1,1,1,-1,191073,1,1,1,-1,191234,2,1,6,6,191700,3,1,1,-1,192036,3,1,1,-1,192253,1,1,1,-1,192738,3,2,-1,-1,193300,3,1,1,-1,193502,1,1,1,-1,193673,2,2,5,5,194053,3,1,10,10,194216,2,2,5,5,194403,1,1,10,10,194534,3,2,-1,-1,194854,3,1,1,-1,195036,1,1,1,-1,195204,3,2,-1,-1,195503,3,1,1,-1,195685,1,1,1,-1,195869,2,2,4,4,196189,3,1,9,9,196356,2,2,4,4,196536,1,1,9,9,196686,3,1,1,-1,196897,1,2,6,6,197337,1,1,1,1,197518,3,2,6,6,197660,3,1,1,1,197830,1,2,1,5,198054,2,1,1,1,198240,3,2,1,5,198383,1,2,-5,-1,198565,2,1,1,1,198805,3,2,-5,-1,199042,3,0,1,-1,199798,3,2,9,9,200720,3,2,1,-1,200934,2,0,1,1,201445,1,2,1,-1,201713,3,2,7,7,202337,3,2,4,4,202612,1,1,1,1,202823,3,2,1,-1,203160,2,2,6,6,204015,2,0,1,1,204249,1,2,1,-1,204522,3,2,8,8,204825,1,2,-1,-1,205159,3,1,1,1,205361,1,2,-1,-1,205768,3,1,1,1,205988,1,2,-1,-1,206304,3,1,1,1,206516,3,2,5,5,207251,2,1,1,1,207465,2,2,3,3,207688,1,2,1,1,208019,1,1,1,1,208191,1,2,1,1,208468,1,1,1,1,208611,3,2,10,10,209179,3,1,1,1,209396,2,1,1,1,209878,2,2,2,2,210157,1,2,1,1,210439,1,2,1,-1,210701,1,2,1,-1,210925,3,2,1,-1,211156,3,0,1,1,211547,3,2,-1,-1,212060,1,0,1,1,212283,1,2,-1,-1,212871,3,2,3,3,213279,3,2,1,-1,213470,1,2,1,-1,214363,1,1,1,1,214713,3,2,1,-1,215044,1,2,1,-1,215654,2,2,8,8,215980,3,2,-1,-1,216313,3,1,1,1,216488,3,2,-1,-1,216936,3,2,5,5,217317,3,1,1,1,217503,1,2,1,1,217987,1,1,1,1,218193,1,2,1,1,218492,1,1,1,1,218667,1,2,1,1,218995,1,1,1,1,219157,2,1,1,1,219635,2,2,10,10,220022,2,1,1,1,220181,3,2,9,9,220451,2,1,1,1,220949,2,1,1,1,221664,2,2,2,2,221787,1,2,1,-1,222047,1,2,1,-1,222241,3,2,1,-1,222524,3,2,1,-1,222848,3,2,1,-1,223032,1,2,1,-1,223436,3,1,1,-1,223672,3,0,1,1,224262,3,0,1,1,224642,1,0,1,1,224887,3,1,1,1,225039,1,0,7,7,225363,1,2,1,1,225610,3,2,1,1,226092,3,0,7,7,226349,1,0,6,6,226523,1,2,1,1,226733,1,1,1,-1,227072,3,2,9,9,227678,3,2,8,8,228322,2,1,1,1,228540,2,2,6,6,228707,1,1,1,1,229171,3,2,1,-1,229493,2,0,1,1,229922,2,2,10,10,230324,2,0,1,1,230530,2,2,4,4,230857,1,2,1,-1,231091,1,2,1,1,231461,1,1,1,1,231630,3,2,5,5,232069,1,2,2,2,232416,3,2,2,2,232818,1,2,1,1,233010,3,1,1,1,233172,2,2,2,2,233395,1,2,1,1,233659,1,1,1,1,233885,2,1,1,1,234170,2,2,3,3,234377,3,1,1,-1,234723,1,0,1,1,235093,3,1,1,1,235297,1,0,5,5,235884,3,0,1,-1,236116,3,0,1,-1,236331,1,0,1,-1,236580,1,0,1,-1,237092,1,1,1,-1,237326,3,2,1,-1,237568,1,2,1,-1,237874,3,1,1,1,238380,3,2,9,9,238517,1,0,1,1,238729,1,2,1,1,239636,1,1,1,1,239786,3,2,8,8,240096,3,2,7,7,240302,3,1,1,1,240808,2,2,2,2,241029,1,2,1,1,241265,1,1,1,1,241441,3,2,4,4,241772,3,2,6,6,242021,1,2,1,1,242368,3,1,1,1,242544,2,2,9,9,243005,1,2,1,1,243461,1,1,1,1,243628,3,2,5,5,244205,2,1,1,1,244419,2,2,3,3,244746,1,2,1,-1,245154,1,2,1,-1,245331,3,2,1,-1,245719,1,2,10,10,246154,3,2,-1,-1,246364,3,1,1,1,246548,3,2,1,1,246910,3,2,2,2,247172,3,2,1,-1,247461,2,2,9,9,248129,2,0,1,1,248357,3,0,1,1,248834,1,2,1,-1,249196,3,2,6,6,249854,2,1,1,1,251068,2,2,7,7,251354,3,2,1,1,251772,1,1,1,1,251946,3,2,8,8,252532,2,1,1,1,252827,2,2,3,3,253167,3,2,1,1,253522,1,1,1,1,253699,2,1,1,1,254391,3,2,1,-1,254662,2,2,4,4,254992,2,2,5,5,255222,3,2,1,-1,255524,3,2,1,-1,255788,1,2,1,-1,256824,3,2,1,-1,257077,2,1,1,1,257529,2,2,2,2,257655,2,1,1,1,257823,3,2,10,10,258301,1,2,10,10,258724,3,2,-1,-1,258916,1,2,1,1,259414,3,1,1,1,259606,3,2,1,1,259729,3,2,6,6,260232,3,2,1,-1,260472,2,0,1,1,261011,2,2,3,3,261232,2,0,1,1,261467,2,2,7,7,261847,1,0,1,1,262181,1,2,1,-1,262522,2,2,5,5,262858,2,2,3,3,263119,2,2,3,3,263498,2,2,2,2,263742,3,2,10,10,264210,2,1,1,1,264426,2,2,9,9,264585,3,2,1,1,265033,1,1,1,1,265205,2,1,1,1,265680,2,2,4,4,266053,1,2,1,-1,266293,1,2,1,-1,266446,3,2,1,-1,266779,1,2,8,8,267105,3,2,-1,-1,267395,3,1,1,1,267582,3,2,1,1,267979,3,2,9,9,268838,2,1,1,1,269044,2,2,2,2,269617,2,2,6,6,269990,1,1,1,1,270226,3,2,1,-1,270570,3,2,10,10,271074,1,2,1,-1,271397,1,1,1,1,271840,3,2,1,-1,272120,1,2,1,-1,272524,1,2,1,-1,272710,1,2,1,-1,272979,3,2,1,-1,273288,1,2,8,8,273647,1,2,1,-1,273964,1,2,3,3,274538,3,2,1,-1,274724,2,1,1,1,275120,2,2,7,7,275314,2,1,1,1,275591,3,2,1,-1,276026,2,1,1,1,276543,2,2,4,4,276684,2,1,1,1,276864,1,2,1,-1,277486,3,2,-1,-1,277767,3,2,1,1,278147,3,1,1,1,278334,3,2,1,1,278465,3,2,5,5,278911,1,1,1,1,279345,3,1,1,1,279955,3,2,1,-1,280739,3,2,1,-1,280896,3,2,1,-1,282012,1,2,8,8,282320,1,2,7,7,282600,3,2,7,7,282964,1,2,6,6,283156,1,2,6,6,283637,1,2,8,8,283870,3,2,5,5,284399,3,2,2,2,284649,3,2,1,-1,284842,2,0,1,1,285220,1,2,1,-1,285463,3,2,3,3,285777,3,2,4,4,286150,3,2,6,6,286403,1,2,3,3,286720,1,1,1,1,287103,3,2,-1,-1,287256,3,1,1,1,287435,1,2,1,-1,287731,3,2,1,-1,288174,2,1,1,1,288529,2,2,9,9,288680,3,2,1,-1,288955,2,0,1,1,289498,2,2,3,3,289640,3,2,1,-1,289971,3,2,1,-1,290208,2,1,1,1,290731,2,2,4,4,290874,2,1,1,1,291054,3,1,1,-1,291371,3,2,1,1,291814,1,0,1,1,291963,1,2,1,1,292154,1,1,1,-1,292436,3,2,1,-1,292819,3,2,4,4,293913,3,2,2,2,294110,3,2,10,10,294517,3,2,1,-1,294721,3,2,1,-1,295375,1,2,7,7,296035,2,0,1,1,296292,2,2,3,3,296558,3,2,1,-1,296855,3,2,1,-1,297179,1,2,6,6,297520,2,1,1,1,297724,2,2,6,6,297855,3,2,1,-1,298447,2,1,1,1,299083,1,2,4,4,299344,2,1,1,1,299557,3,2,4,4,299675,2,1,1,1,300019,1,2,8,8,300627,2,1,1,1,300815,3,2,8,8,300992,1,2,1,-1,301219,1,0,1,1,301660,3,1,1,1,301897,1,2,1,1,302034,1,1,1,1,302190,3,2,1,-1,302460,2,1,1,1,302878,2,1,1,1,303580,1,2,7,7,303857,1,2,10,10,304173,2,1,1,1,304357,3,2,10,10,304527,3,2,7,7,304797,2,1,1,1,305251,1,2,3,3,305461,2,1,1,1,305660,3,2,3,3,305790,1,2,1,-1,306042,1,0,1,1,306413,3,1,1,1,306659,1,2,1,1,306841,1,1,1,1,306982,3,2,1,-1,307218,2,1,1,1,307721,2,1,1,1,308029,1,2,10,10,308250,2,1,1,1,308464,3,2,10,10,308640,3,2,1,-1,308944,3,2,5,5,309461,3,2,3,3,309717,3,2,2,2,309902,1,2,1,-1,310134,3,1,1,1,310454,1,0,1,1,310595,3,2,1,1,310781,1,1,1,1,310986,3,0,1,1,311144,1,2,2,2,311381,1,2,3,3,311594,1,2,5,5,311951,1,0,1,1,312455,3,1,1,1,313006,1,2,1,1,313162,1,1,1,1,313315,3,2,1,-1,313528,3,2,5,5,313918,3,2,8,8,314190,3,2,10,10,314415,1,2,1,-1,314638,3,1,1,1,315041,1,0,1,1,315176,3,2,1,1,315348,1,1,1,1,315532,3,0,1,1,315700,3,2,1,-1,315943,1,2,5,5,316385,1,2,8,8,316723,1,2,10,10,316947,1,2,1,-1,317266,1,0,1,1,317678,3,1,1,1,317875,1,2,1,1,318018,1,1,1,1,318169,3,2,10,10,318566,3,1,1,1,319101,1,0,1,1,319392,1,0,1,1,319563,3,0,1,1,320037,3,2,1,1,320201,1,1,1,1,320392,3,0,1,1,320588,1,2,1,1,320801,1,2,10,10,321315,3,2,6,6,322033,3,1,1,1,322498,1,0,1,1,322612,3,2,1,1,322809,1,1,1,1,322993,3,0,1,1,323162,1,2,6,6,323591,2,2,5,5,323907,2,2,2,2,324134,2,1,1,1,324529,3,2,2,2,324692,3,2,5,5,324948,2,1,1,1,325146,3,2,5,5,325325,3,2,2,2,325576,3,2,1,-1,325821,3,1,1,1,326197,1,0,1,1,326331,3,2,1,1,326524,1,1,1,1,326706,3,0,1,1,326885,3,2,2,2,327193,3,2,5,5,327495,1,1,1,-1,328019,3,2,1,-1,328281,1,0,1,1,328815,1,2,1,-1,329053,3,0,1,1,329376,3,2,1,1,329552,1,0,1,-1,329808,3,2,1,-1,330109,1,2,1,-1,330444,2,1,1,1,330958,1,0,1,-1,331226,1,0,1,1,331816,1,0,1,1,332002,3,1,1,1,332290,3,0,1,1,333040,3,2,1,-1,333292,3,1,1,-1,333525,1,1,1,-1,333781,3,1,1,1,334171,1,2,1,1,334380,3,1,1,1,334558,3,2,1,1,334666,2,1,1,1,334882,3,1,1,-1,335189,3,0,1,1,335564,1,1,1,1,335907,1,0,1,1,336286,1,1,1,-1,336529,3,1,1,1,336851,3,1,1,1,337019,1,2,1,1,337289,3,1,1,1,337467,2,2,1,1,337684,1,1,1,1,337903,1,2,1,1,338045,3,1,1,1,338263,3,1,1,1,338422,1,2,1,1,338633,3,1,1,1,338832,3,2,1,1,338966,1,1,1,1,339146,1,2,1,1,339316,1,1,1,1,339488,3,2,1,1,339620,1,1,1,-1,339864,1,1,1,1,340281,3,2,1,1,340417,2,1,1,1,340663,1,2,1,1,340825,3,1,1,-1,341128,3,1,1,1,341478,3,0,1,1,341731,1,0,1,-1,341998,1,1,1,1,342400,1,0,1,1,342574,1,2,1,1,342798,3,0,1,1,343024,3,1,1,1,343169,1,0,1,1,343304,3,0,1,-1,343611,3,1,1,1,344198,3,1,1,1,344399,1,0,1,1,344577,3,0,1,1,345043,2,1,1,1,345346,3,1,1,1,345771,1,0,1,1,346071,1,1,1,1,346245,3,2,1,1,346441,3,1,1,1,346597,3,0,1,1,346764,1,1,1,1,346984,3,2,1,1,347134,1,2,1,1,347478,1,0,1,1,347932,1,2,1,1,348098,3,0,1,1,348249,1,1,1,1,348569,1,2,1,-1,348886,2,2,1,1,349416,2,1,-1,-1,349759,1,2,1,1,350273,1,1,1,1,350469,3,2,1,1,350582,2,1,-1,-1,351448,1,2,1,1,351633,3,1,1,1,352006,1,2,1,1,352162,3,2,1,-1,352375,2,1,1,-1,352847,2,2,9,9,354373,3,1,2,2,354547,2,2,1,-1,354757,2,2,9,9,355012,2,2,8,8,355182,2,2,3,3,355583,2,2,2,2,355732,2,2,1,-1,355920,1,1,2,2,356141,3,1,3,3,356598,2,2,1,-1,356803,2,2,9,9,357326,2,2,6,6,357615,2,2,5,5,357755,2,2,3,3,358031,2,2,1,-1,358221,1,1,3,3,358436,2,2,5,5,358721,2,2,8,8,359019,2,2,10,10,359196,2,2,10,10,359361,2,2,9,9,359691,2,2,10,10,359855,3,1,4,4,360064,2,2,1,-1,360280,2,2,10,10,360481,2,2,9,9,360650,2,2,8,8,360845,2,2,5,5,361194,2,2,1,-1,361397,1,1,4,4,361590,2,2,9,9,361987,3,1,5,5,362191,2,2,1,-1,362413,2,2,10,10,362670,2,2,9,9,362827,2,2,7,7,363148,2,2,5,5,363433,2,2,3,3,363611,2,2,1,-1,363805,1,1,5,5,364002,3,1,6,6,364162,2,2,1,-1,364368,2,2,5,5,364713,2,2,8,8,364954,2,2,2,2,365335,2,2,1,-1,365520,1,1,6,6,365763,2,2,4,4,366164,2,2,10,10,366527,3,1,7,7,366689,2,2,1,-1,366904,2,2,8,8,367481,2,2,10,10,367691,2,2,4,4,368049,2,2,1,-1,368239,1,1,7,7,368459,2,2,3,3,368789,2,2,8,8,369112,2,2,10,10,369302,3,1,8,8,369501,2,2,1,-1,369719,2,2,10,10,369954,2,2,9,9,370178,2,2,8,8,370370,2,2,3,3,370715,2,2,2,2,370879,2,2,1,-1,371090,1,1,8,8,371302,2,2,8,8,371760,2,2,9,9,372157,3,1,9,9,372455,2,2,1,-1,372667,2,2,9,9,372936,2,2,7,7,373275,2,2,4,4,373492,2,2,1,-1,373705,1,1,9,9,373927,2,2,2,2,374314,2,2,8,8,374790,3,1,10,10,374978,2,2,1,-1,375153,2,2,9,9,375697,2,2,8,8,375861,2,2,6,6,376142,2,2,2,2,376416,2,2,1,-1,376601,1,1,10,10,376815,2,2,4,4,377122,2,2,5,5,377412,2,2,3,3,377646,2,2,2,2,377807,2,2,9,9,378194,2,2,10,10,378364,3,2,-1,-1,378668,3,1,1,-1,379101,1,1,1,-1,379312,2,2,7,7,379693,3,1,5,5,379839,2,2,7,7,380039,1,1,5,5,380211,3,1,1,-1,380432,1,1,1,-1,380626,2,2,4,4,380954,2,2,4,4,381244,2,2,3,3,381406,3,1,2,2,381599,2,2,3,3,381805,1,1,2,2,381949,2,2,6,6,382245,3,1,3,3,382393,2,2,6,6,382596,1,1,3,3,382768,3,1,1,-1,383035,1,1,1,-1,383222,2,2,2,2,383513,3,1,8,8,383665,3,1,6,6,383877,2,2,2,2,384092,1,1,6,6,384240,1,1,8,8,384477,3,1,1,-1,384752,1,1,1,-1,384960,2,2,6,6,385249,3,1,9,9,385406,2,2,6,6,385619,1,1,9,9,385785,2,2,10,10,386080,3,1,7,7,386226,2,2,10,10,386450,1,1,7,7,386590,3,1,1,-1,386795,1,1,1,-1,386970,3,2,-1,-1,387284,3,1,1,-1,387484,1,1,1,-1,387705,2,2,10,10,387960,3,1,7,7,388145,3,1,9,9,388323,2,2,10,10,388605,1,1,9,9,388776,1,1,7,7,388989,3,1,1,-1,389217,1,1,1,-1,389390,2,2,2,2,390048,3,1,10,10,390211,2,2,2,2,390426,1,1,10,10,390587,3,1,1,-1,390870,1,1,1,-1,391026,2,2,10,10,391539,3,1,3,3,391705,2,2,10,10,391879,1,1,3,3,392051,3,2,-1,-1,392194,3,1,1,-1,392394,1,1,1,-1,392547,2,2,9,9,392844,3,1,4,4,392994,2,2,9,9,393182,1,1,4,4,393334,3,2,-1,-1,393551,2,2,1,-1,393797,3,1,1,-1,394254,1,2,1,1,394709,1,1,1,-1,394951,3,1,1,-1,395334,1,1,1,-1,395564,2,2,6,6,395861,3,1,4,4,396000,3,1,3,3,396179,2,2,6,6,396370,1,1,4,4,396524,1,1,3,3,396705,3,1,1,-1,396985,1,1,1,-1,397151,2,2,6,6,397383,3,1,7,7,397547,3,1,10,10,397859,2,2,6,6,398091,1,1,10,10,398244,1,1,7,7,398496,3,1,1,-1,398736,3,2,1,1,399074,1,1,1,-1,399271,3,1,1,-1,399667,1,1,1,-1,399905,2,2,4,4,400224,3,1,7,7,400383,2,2,4,4,400579,1,1,7,7,400765,3,1,1,-1,401005,1,2,1,1,401462,1,1,1,-1,401860,1,2,-1,-1,402310,2,2,6,6,402638,3,1,2,2,402812,2,2,6,6,402999,1,1,2,2,403146,3,2,-1,-1,403459,3,1,1,-1,403709,3,2,1,1,404054,1,1,1,-1,404285,3,1,1,-1,404594,1,1,1,-1,404773,2,2,8,8,405071,3,1,4,4,405214,2,2,8,8,405422,1,1,4,4,405589,2,2,9,9,405808,3,1,5,5,405968,2,2,9,9,406163,1,1,5,5,406367,3,1,1,-1,407487,1,1,1,-1,407686,3,2,-1,-1,408037,3,1,1,-1,408216,1,1,1,-1,408388,3,2,-1,-1,408679,3,1,1,-1,408853,1,1,1,-1,409014,3,2,-1,-1,409424,2,2,9,9,409735,3,1,7,7,409892,2,2,9,9,410069,1,1,7,7,410253,3,2,-1,-1,410440,3,1,1,5,410824,2,2,1,1,411018,1,1,1,5,411176,3,1,-5,-1,411365,2,2,1,1,411578,1,1,-5,-1,411744,1,2,1,1,412615,3,1,6,6,412786,3,2,1,1,412965,1,1,6,6,413107,3,1,1,-1,413572,1,1,1,-1,413783,2,2,5,5,414079,3,1,4,4,414220,2,2,5,5,414429,1,1,4,4,414587,3,1,1,-1,414896,1,1,1,-1,415080,3,2,-1,-1,415697,3,1,1,-1,415904,1,1,1,-1,416116,2,2,3,3,416504,3,1,3,3,416647,2,2,3,3,416828,1,1,3,3,416974,2,2,8,8,417309,3,1,3,3,417464,2,2,8,8,417621,1,1,3,3,417790,3,1,1,-1,418071,1,1,1,-1,418248,3,2,-1,-1,418610,3,1,1,-1,418810,1,1,1,-1,418978,3,1,1,-1,419465,1,1,1,-1,419649,2,2,4,4,419958,2,2,6,6,420157,3,1,4,4,420462,2,2,6,6,420689,2,2,4,4,420891,1,1,4,4,421103,2,2,5,5,421646,3,1,2,2,421805,2,2,5,5,422002,1,1,2,2,422170,3,2,-1,-1,422502,3,1,1,-1,422724,1,1,1,-1,422864,2,2,7,7,423198,3,1,7,7,423350,2,2,7,7,423545,1,1,7,7,423715,2,2,10,10,423981,3,1,8,8,424389,2,2,10,10,424611,1,1,8,8,424785,2,2,1,-1,425013,3,1,1,-1,425391,1,1,1,-1,425609,2,2,-1,-1,426046,2,2,5,5,426431,3,1,8,8,426596,2,2,5,5,426803,1,1,8,8,426948,3,2,10,10,427254,3,2,10,10,427643,3,2,10,10,427797,3,2,-1,-1,428193,1,2,10,10,428620,3,2,-1,-1,429172,3,2,10,10,429637,3,2,-1,-1,429924,3,2,10,10,430117,2,2,1,-1,430517,1,1,1,-1,430930,1,2,1,-1,431131,3,1,1,-1,431341,2,1,5,5,431846,2,1,6,6,432015,2,1,10,10,432388,1,2,2,2,432644,2,1,1,1,432956,3,2,2,2,433099,2,1,1,-1,433277,2,1,4,4,433681,2,2,3,3,433838,2,2,3,3,434337,2,1,6,6,434524,2,1,5,5,434716,2,1,3,3,434947,2,1,8,8,435361,2,1,9,9,435550,2,1,10,10,435718,2,1,1,-1,435989,1,2,2,2,436342,2,1,1,1,436594,3,2,2,2,436731,2,1,3,3,436968,1,2,3,3,437206,2,1,1,1,437434,3,2,3,3,437563,2,1,1,-1,437752,2,1,3,3,437963,2,1,4,4,438149,2,1,2,2,438422,2,1,6,6,438749,2,1,9,9,438964,2,1,1,-1,439187,1,2,3,3,439550,2,1,1,1,439759,3,2,3,3,439887,1,1,1,1,440073,2,1,3,3,440295,1,2,3,3,440480,2,1,1,1,440702,3,2,3,3,440833,2,1,3,3,441091,1,2,3,3,441259,2,1,1,1,441477,3,2,3,3,441641,2,1,5,5,441914,2,1,6,6,442085,1,2,4,4,442339,2,1,1,1,442587,3,2,4,4,442730,2,1,1,-1,442937,2,1,5,5,443181,2,1,8,8,443420,2,1,1,-1,443636,1,2,4,4,444198,2,1,1,1,444421,3,2,4,4,444563,1,1,1,1,444744,1,2,4,4,444880,2,1,1,1,445067,3,2,4,4,445268,2,1,5,5,445728,2,1,7,7,445908,1,2,4,4,446202,2,1,1,1,446476,3,2,4,4,446618,1,1,1,1,446803,2,1,5,5,447113,1,2,4,4,447324,2,1,1,1,447634,3,2,4,4,447825,2,1,6,6,448179,2,1,5,5,448527,1,2,4,4,448747,2,1,1,1,449019,3,2,4,4,449173,2,1,6,6,449466,2,1,7,7,449635,1,2,5,5,449868,2,1,1,1,450141,3,2,5,5,450331,2,1,1,-1,450534,2,1,5,5,450889,2,1,6,6,451142,2,1,7,7,451301,2,1,10,10,451611,2,1,4,4,451971,2,1,3,3,452144,2,1,2,2,452394,2,1,1,-1,452680,1,2,5,5,452915,2,1,1,1,453128,3,2,5,5,453310,1,1,1,1,453486,1,2,5,5,453783,2,1,1,1,453995,3,2,5,5,454162,2,1,1,-1,454346,2,1,2,2,454586,2,1,7,7,454955,2,1,1,-1,455156,1,2,5,5,455454,2,1,1,1,455664,3,2,5,5,455814,1,1,1,1,455996,1,2,5,5,456165,2,1,1,1,456343,3,2,5,5,456470,2,1,2,2,456678,1,2,5,5,456837,2,1,1,1,457025,3,2,5,5,457179,2,1,10,10,457598,1,2,6,6,457800,1,1,1,1,458101,3,2,6,6,458238,2,1,1,-1,458446,2,1,6,6,458742,2,1,10,10,459016,2,1,2,2,459419,2,1,1,-1,459613,1,2,6,6,459814,3,1,1,1,460001,3,2,6,6,460116,1,1,1,1,460323,1,2,6,6,460962,1,1,1,1,461287,3,2,6,6,461403,2,1,1,-1,461610,2,1,1,-1,461819,1,2,6,6,462137,3,1,1,1,462333,3,2,6,6,462457,2,1,3,3,462728,2,1,5,5,462983,2,1,6,6,463165,2,1,7,7,463335,2,1,9,9,463630,1,2,7,7,463899,2,1,1,1,464156,3,2,7,7,464310,2,1,1,-1,464498,2,1,2,2,464805,2,1,6,6,465161,2,1,7,7,465363,2,1,8,8,465580,2,1,9,9,465787,2,1,1,-1,466017,2,1,5,5,466362,1,2,7,7,466601,2,1,1,1,466855,3,2,7,7,466986,1,1,1,1,467197,2,1,6,6,467543,2,1,9,9,467801,1,2,7,7,468029,2,1,1,1,468330,3,2,7,7,468520,2,1,3,3,468960,2,1,7,7,469310,2,1,8,8,469477,2,1,9,9,469630,1,2,7,7,469967,2,1,1,1,470287,3,2,7,7,470440,1,1,1,1,470615,1,2,7,7,470762,2,1,1,1,470975,3,2,7,7,471116,2,1,5,5,471527,2,1,6,6,471677,2,1,8,8,471934,2,1,9,9,472106,2,1,1,-1,472377,2,1,1,-1,472920,1,2,7,7,473150,2,1,1,1,473362,3,2,7,7,473516,2,1,3,3,473815,2,1,4,4,473956,2,1,6,6,474233,2,1,7,7,474397,2,1,10,10,474702,1,2,8,8,474960,2,1,1,1,475280,3,2,8,8,475486,2,1,7,7,476041,1,2,8,8,476282,2,1,1,1,476565,3,2,8,8,476717,1,1,1,1,476914,1,2,8,8,477028,2,1,1,1,477234,3,2,8,8,477389,2,1,5,5,477860,2,1,8,8,478125,2,1,9,9,478298,2,1,3,3,478678,1,2,8,8,478906,2,1,1,1,479132,3,2,8,8,479258,1,1,1,1,479462,1,2,8,8,479590,2,1,1,1,479802,3,2,8,8,479959,2,1,1,-1,480228,2,1,4,4,480515,2,1,6,6,480699,2,1,9,9,481012,2,1,1,-1,481255,2,1,10,10,481603,1,2,8,8,482056,2,1,2,2,482404,2,1,1,1,482752,2,1,2,2,482935,3,2,8,8,483142,2,1,4,4,483406,2,1,5,5,483572,1,2,9,9,483815,2,1,1,1,484060,3,2,9,9,484198,1,2,9,9,484839,2,1,1,1,485054,3,2,9,9,485201,1,1,1,1,485383,1,2,9,9,485533,2,1,1,1,485720,3,2,9,9,485868,2,1,4,4,486269,2,2,9,9,486454,1,2,9,9,486706,3,2,9,9,487108,3,2,9,9,487253,3,2,9,9,487511,2,1,6,6,487888,1,2,9,9,488108,2,1,1,1,488347,3,2,9,9,488490,1,1,1,1,488685,1,2,9,9,488813,2,1,1,1,489008,3,2,9,9,489140,2,1,1,-1,489376,2,1,10,10,489779,2,1,1,-1,490042,1,2,9,9,490458,2,1,1,1,490658,3,2,9,9,490788,1,1,1,1,490975,1,2,9,9,491103,2,1,1,1,491299,3,2,9,9,491437,2,1,2,2,491638,2,1,5,5,491872,1,2,9,9,492106,2,1,1,1,492344,3,2,9,9,492497,2,1,7,7,492828,1,2,-1,-1,493037,3,2,-1,-1,493917,1,2,10,10,494092,2,1,1,1,494275,3,2,10,10,494431,2,1,5,5,494839,2,1,8,8,495047,1,2,10,10,495284,2,1,1,1,495664,3,2,10,10,495908,1,1,1,1,496149,1,2,10,10,496282,2,1,1,1,496461,2,2,1,-1,496773,2,2,1,-1,497457,3,2,10,10,497820,2,1,1,-1,498074,2,1,10,10,498650,2,1,1,-1,498876,1,2,10,10,499258,2,1,1,1,499459,3,2,10,10,499598,1,1,1,1,499780,1,2,10,10,499924,2,1,1,1,500116,3,2,10,10,500272,2,1,7,7,500679,1,2,10,10,500866,2,1,1,1,501169,3,2,10,10,501593,2,1,3,3,501848,2,1,-1,-1,502273,2,1,1,-1,502493,3,1,1,1,502974,3,1,1,1,503121,1,1,1,1,503542,1,2,6,6,503842,1,1,1,1,504030,3,2,6,6,504159,3,1,1,1,504329,1,2,1,5,504656,2,1,1,1,504860,3,2,1,5,505009,1,2,-5,-1,505215,2,1,1,1,505399,3,2,-5,-1,505574,3,2,2,2,505931,2,1,1,-1,506137,2,1,3,3,506532,2,1,7,7,506897,2,1,8,8,507065,2,1,10,10,507324,2,1,1,-1,507553,1,2,2,2,507955,1,1,1,1,508167,3,2,2,2,508286,2,1,7,7,508934,2,1,8,8,509093,1,2,2,2,509391,1,1,1,1,509619,3,2,2,2,509753,2,1,3,3,510133,2,1,10,10,510530,1,2,2,2,510724,3,2,3,3,510872,2,1,1,-1,511055,2,1,10,10,511325,2,1,7,7,511690,2,1,6,6,511863,2,1,5,5,512056,2,1,3,3,512297,2,1,2,2,512501,2,1,10,10,512949,2,1,1,-1,513177,1,2,3,3,513533,1,1,1,1,513770,3,2,3,3,513890,2,1,2,2,514272,2,1,3,3,514425,2,1,5,5,514695,2,1,7,7,514892,1,2,3,3,515152,1,1,1,1,515362,3,2,3,3,515493,2,1,6,6,515898,1,2,3,3,516070,3,2,4,4,516236,2,1,1,-1,516419,2,1,9,9,516806,2,1,7,7,517024,2,1,6,6,517207,2,1,3,3,517530,2,1,1,-1,517773,1,2,4,4,517967,1,1,1,1,518177,3,2,4,4,518286,2,1,3,3,518629,2,1,7,7,518939,2,1,6,6,519229,2,1,9,9,519495,1,2,4,4,519730,3,2,5,5,519911,2,1,1,-1,520107,2,1,5,5,520837,2,1,3,3,521087,2,1,2,2,521279,2,1,1,-1,521485,1,2,5,5,521687,1,1,1,1,521871,3,2,5,5,522007,2,1,5,5,522789,1,2,5,5,523001,1,1,1,1,523217,3,2,5,5,523355,1,2,5,5,523854,1,1,1,1,524052,3,2,5,5,524188,2,1,2,2,524533,2,1,3,3,524696,1,2,5,5,525205,1,2,6,6,525438,1,1,1,1,525669,3,2,6,6,525750,3,1,1,1,525931,2,1,1,-1,526142,2,1,2,2,526572,2,1,5,5,526800,2,1,9,9,527103,2,1,1,-1,527320,1,2,6,6,527679,1,1,1,1,527863,3,2,6,6,527987,1,2,6,6,528836,1,1,1,1,529036,3,2,6,6,529171,1,2,6,6,529879,1,1,1,1,530077,3,2,6,6,530232,2,1,2,2,530602,2,1,9,9,530972,2,1,5,5,531332,1,2,6,6,531535,1,1,1,1,531740,3,2,6,6,531876,2,1,5,5,532151,1,2,6,6,532337,2,1,1,1,532555,1,1,1,1,532990,3,2,6,6,533152,2,1,5,5,533439,1,2,6,6,533663,1,1,1,1,533889,3,2,6,6,533999,1,1,1,1,534239,1,2,6,6,534372,3,1,1,1,534557,3,2,6,6,534679,3,2,7,7,534855,2,1,1,-1,535072,2,1,2,2,535406,2,1,3,3,535569,2,1,5,5,535777,2,1,9,9,536038,2,1,8,8,536394,2,1,9,9,536577,2,1,1,-1,536805,1,2,7,7,537163,1,1,1,1,537370,3,2,7,7,537491,1,2,7,7,538015,1,1,1,1,538191,3,2,7,7,538324,2,1,2,2,538675,2,1,3,3,538839,2,1,5,5,539049,2,1,8,8,539314,1,2,7,7,539517,3,2,8,8,539674,2,1,1,-1,539879,2,1,9,9,540268,2,1,8,8,540456,2,1,7,7,540647,2,1,6,6,540866,2,1,5,5,541066,2,1,3,3,541357,2,1,1,-1,541558,1,2,8,8,541789,1,1,1,1,541996,3,2,8,8,542141,2,1,4,4,542501,2,1,7,7,542812,2,1,4,4,543154,2,1,3,3,543370,1,2,8,8,543651,1,1,1,1,543882,3,2,8,8,544020,2,1,5,5,544364,2,1,6,6,544524,2,1,9,9,544805,1,2,8,8,545167,1,1,1,1,545391,3,2,8,8,545541,2,1,7,7,546235,2,1,8,8,546580,2,1,7,7,546766,1,2,8,8,546981,3,2,9,9,547139,2,1,1,-1,547325,2,1,9,9,547708,2,1,8,8,547898,2,1,3,3,548248,2,1,2,2,548446,2,1,1,-1,548657,1,2,9,9,548870,1,1,1,1,549069,3,2,9,9,549217,2,1,2,2,549598,1,2,9,9,549856,1,1,1,1,550043,3,2,9,9,550201,2,1,9,9,550968,1,2,9,9,551325,1,1,1,1,551578,3,2,9,9,551721,2,1,3,3,552047,2,1,8,8,552379,1,2,9,9,552582,3,2,10,10,552765,2,1,1,-1,552984,2,1,7,7,553433,2,1,5,5,553669,2,1,3,3,553897,2,1,2,2,554106,2,1,1,-1,554339,1,2,10,10,554555,1,1,1,1,554757,3,2,10,10,554900,2,1,7,7,555530,1,2,10,10,555774,1,1,1,1,555981,3,2,10,10,556272,2,1,3,3,556687,1,2,10,10,556884,1,1,1,1,557081,3,2,10,10,557211,2,1,2,2,557500,2,1,5,5,557900,2,1,2,2,558163,1,2,10,10,558462,1,1,1,1,558665,3,2,10,10,558818,2,1,2,2,559087,1,2,10,10,559265,3,1,1,1,559464,3,2,10,10,559546,2,1,2,2,559821,1,2,10,10,559980,1,1,1,1,560181,3,2,10,10,560295,2,1,2,2,560516,1,2,10,10,560842"; - -// console.log(icsMoves.split(",").map((s: string) => parseInt(s)).length); - -const width = 40; -function layer(n: number): number { - return n < 0 ? n + width + 1 : n; -} - -const nums = icsMoves.split(",").map((s: string) => parseInt(s)); -const algBuilder = new AlgBuilder(); -for (let i = 0; i < nums.length; i += 5) { - const amount: number = [0, 1, 2, -1][nums[i]]; - let innerLayer: number | null = layer(nums[i + 3]); - let outerLayer: number | null = layer(nums[i + 2]); - if (outerLayer === innerLayer) { - outerLayer = null; - const family = "FUR"[nums[i + 1]]; - if (innerLayer === 1) { - innerLayer = null; - } - algBuilder.push( - new Move(new QuantumMove(family, innerLayer, outerLayer), amount), - ); - } else if (outerLayer === 1 && innerLayer === width) { - const family = "zyx"[nums[i + 1]]; - algBuilder.push(new Move(new QuantumMove(family), amount)); - } else { - const family = "fur"[nums[i + 1]]; - algBuilder.push( - new Move(new QuantumMove(family, innerLayer, outerLayer), amount), - ); - } -} - -algBuilder.push(new Move("z")); -const alg = algBuilder.toAlg(); -// console.log(alg.toString()); +// console.log(solutionAlg.toString()); setTimeout(() => { const player = new TwistyPlayer({ puzzle: "40x40x40", - alg, + alg: solutionAlg, experimentalSetupAnchor: "end", }); document.querySelector("#player-wrapper")!.appendChild(player);