diff --git a/docs/plans/2026-07-30-issue-128-delivery-design.md b/docs/plans/2026-07-30-issue-128-delivery-design.md new file mode 100644 index 000000000..65215fff8 --- /dev/null +++ b/docs/plans/2026-07-30-issue-128-delivery-design.md @@ -0,0 +1,143 @@ +# Issue 128 Final Delivery Design + +**Date:** 2026-07-30 + +**Status:** Approved by the user (option A) + +**Target:** Existing pull request `QuantumBFS/quantum.harness#248` + +## Objective + +Finish Issue 128 as a reviewer-ready, reproducible package. Preserve the +proved `11791/2911 = 4.050498110614909...x` resource improvement as the +official result, add a polished technical report and machine-readable +summaries, and report the strict fivefold investigation as an honest +feasibility appendix rather than a completed certificate. + +## Frozen Scientific Claim + +The benchmark is the periodic `12 x 12` spin-1/2 isotropic Heisenberg model + +```text +H = sum_ (X_i X_j + Y_i Y_j + Z_i Z_j) / 4, +T = 1, operator-norm tolerance = 1e-6. +``` + +The pinned published rigorous baseline uses 393 Trotter steps and 11,791 +merged group exponentials. The submitted certificate uses 97 steps and 2,911 +merged group exponentials. The 97-step exact-rational error bound is below +`1e-6`; the 96-step bound is above it. The proof, circuit, normalization, +tolerance, resource model, main certificate, and D4 sidecar are immutable. + +## Chosen Approach + +Extend the existing proof branch with four reviewer-facing layers: + +1. a standard LaTeX article of approximately 6--8 pages; +2. compact JSON and plain-text result summaries; +3. a verifier transcript and SHA-256 manifest; and +4. a precise update to the existing PR description. + +The exact D5 artifact is follow-up evidence only. No `5x` result may be stated +or implied. The unresolved translation-coupled D4 and explicit D8/tail proof +gates, and the absence of an accepted 78-step global certificate, must be +visible wherever the conditional fivefold arithmetic appears. + +## Deliverables + +All final files live under +`tracks/qcs/solutions/WangTheoPhys/issue128`: + +```text +docs/report/issue128-technical-report.tex +docs/report/references.bib +docs/report/output/issue128-technical-report.pdf +artifacts/issue128-summary.json +artifacts/issue128-summary.txt +artifacts/verification-transcript.txt +artifacts/SHA256SUMS +``` + +The PDF is versioned because it is a competition deliverable. Auxiliary LaTeX +files and rendered page images are temporary and are not committed. + +## Report Structure + +No challenge template exists, so the report uses the standard `article` class. +It contains: + +1. abstract and contribution summary; +2. benchmark and resource accounting; +3. reconstruction of the published rigorous baseline; +4. local logarithm, Lie projection, concrete Pauli representation, and exact + anticommuting-group method; +5. finite-step right-generator error ledger; +6. verifier architecture and small-size dense cross-check; +7. certified result and exact integer boundary; +8. strict fivefold feasibility evidence and unresolved gates; and +9. limitations and copy-paste reproduction commands. + +External citations are restricted to verified primary sources. + +## Trust Boundary and Data Flow + +The certificate and sidecars remain the source of truth. A packaging script +checks their frozen hashes, projects exact fields into JSON and text, runs the +fast main verifier and exact D5 verifier, and records their complete output. +The final manifest binds the PDF, summaries, transcript, certificates, and +report sources. + +- integers, `Fraction`, rational intervals, and symplectic Pauli algebra are + trusted; +- heuristic grouping is untrusted discovery and is rechecked exactly; +- floating point is presentation-only or part of the dense sanity check; +- PDF and summaries explain the certificate but never replace it. + +## Fivefold Reporting Policy + +At 78 steps the unchanged compilation rule gives 2,341 groups and the +conditional ratio `11791/2341 = 5.036736...`. This arithmetic does not prove a +78-step error bound. The D5 sidecar has 605,832 exact terms, 123,106 +same-support pairwise-anticommuting groups, and site-density upper bound +`11.23706750025696`; it narrows the gap without closing D4 or D8/tail. + +Every conditional fivefold statement must be accompanied by: + +```text +No 78-step global error certificate is claimed or supplied. +``` + +## Validation + +Release requires all of the following: + +- the full default Issue 128 test suite; +- the main fast verifier and exact D5 verifier; +- the 97-accept/96-reject boundary checks; +- frozen main-certificate and D4 hashes; +- deterministic JSON/text regeneration; +- SHA-256 verification of every manifest entry; +- LaTeX compilation without fatal errors, undefined references, or missing + citations; +- PDF text/page checks and visual inspection of every rendered page; +- an unsupported-fivefold-language scan; +- an explicit Git allowlist and remote-head drift check. + +If a follow-up check fails, remove its affirmative claim; never weaken the +official 4.050x proof or substitute a numerical estimate. + +## Git and PR Strategy + +Work only in the isolated Issue 128 clone. Explicitly stage approved files; +never use `git add -A`. Push to the existing fork head branch +`JunkaiWang-TheoPhy:codex/issue-128-trotter-certificate` only if its remote head +is still an ancestor of the audited local head. Do not force-push and do not +open a competing PR. Update PR #248 with artifact links, exact results, +validation commands, and the fivefold non-claim. + +## Definition of Done + +The report and data package are committed, every validation gate passes, the +audited history is fast-forward pushed to the existing PR branch, the remote +SHA equals the local SHA, and PR #248 exposes accurate reproduction steps and +limitations. Maintainer review and merge are external outcomes. diff --git a/hpc/issue128_d8_array.sbatch b/hpc/issue128_d8_array.sbatch new file mode 100755 index 000000000..a84c19a8c --- /dev/null +++ b/hpc/issue128_d8_array.sbatch @@ -0,0 +1,38 @@ +#!/usr/bin/env bash +#SBATCH --job-name=issue128-d8 +#SBATCH --partition=xhacnormalb +#SBATCH --account=giggleliu +#SBATCH --qos=user_acamtw70yu +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=17 +#SBATCH --mem=64G +#SBATCH --time=04:30:00 +#SBATCH --array=0-30%16 +#SBATCH --output=results/slurm-%x-%A_%a.out +#SBATCH --error=results/slurm-%x-%A_%a.err + +set -euo pipefail + +: "${ISSUE128_RUN_ID:?ISSUE128_RUN_ID must name the result run}" +ISSUE128_ORDER="${ISSUE128_ORDER:-8}" + +export PYTHONHASHSEED=0 +export OMP_NUM_THREADS=1 +export OPENBLAS_NUM_THREADS=1 +export MKL_NUM_THREADS=1 +export NUMEXPR_NUM_THREADS=1 + +REPOSITORY_ROOT="${SLURM_SUBMIT_DIR:?}" +ISSUE_ROOT="$REPOSITORY_ROOT/tracks/qcs/solutions/WangTheoPhys/issue128" +export PYTHONPATH="$ISSUE_ROOT/src${PYTHONPATH:+:$PYTHONPATH}" +CELL_ID=$(printf "stage-%02d" "$SLURM_ARRAY_TASK_ID") +CELL_DIR="$REPOSITORY_ROOT/results/$ISSUE128_RUN_ID/cells/$CELL_ID" +mkdir -p "$CELL_DIR" + +cd "$ISSUE_ROOT" +"$REPOSITORY_ROOT/.venv/bin/python" -u scripts/build_d8_shard.py \ + --stage-index "$SLURM_ARRAY_TASK_ID" \ + --order "$ISSUE128_ORDER" \ + --output "$CELL_DIR/shard.json.gz" \ + --manifest "$CELL_DIR/manifest.json" diff --git a/hpc/issue128_d8_reduce.sbatch b/hpc/issue128_d8_reduce.sbatch new file mode 100755 index 000000000..55db8cb0d --- /dev/null +++ b/hpc/issue128_d8_reduce.sbatch @@ -0,0 +1,34 @@ +#!/usr/bin/env bash +#SBATCH --job-name=issue128-d8-reduce +#SBATCH --partition=xhacnormalb +#SBATCH --account=giggleliu +#SBATCH --qos=user_acamtw70yu +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=26 +#SBATCH --mem=96G +#SBATCH --time=01:15:00 +#SBATCH --output=results/slurm-%x-%j.out +#SBATCH --error=results/slurm-%x-%j.err + +set -euo pipefail +: "${ISSUE128_RUN_ID:?ISSUE128_RUN_ID must name the result run}" +ISSUE128_ORDER="${ISSUE128_ORDER:-8}" + +export PYTHONHASHSEED=0 +export OMP_NUM_THREADS=1 +export OPENBLAS_NUM_THREADS=1 +export MKL_NUM_THREADS=1 + +REPOSITORY_ROOT="${SLURM_SUBMIT_DIR:?}" +ISSUE_ROOT="$REPOSITORY_ROOT/tracks/qcs/solutions/WangTheoPhys/issue128" +export PYTHONPATH="$ISSUE_ROOT/src${PYTHONPATH:+:$PYTHONPATH}" +RUN_ROOT="$REPOSITORY_ROOT/results/$ISSUE128_RUN_ID" +mkdir -p "$RUN_ROOT/reduced" +cd "$ISSUE_ROOT" +"$REPOSITORY_ROOT/.venv/bin/python" -u scripts/reduce_d8_shards.py \ + --input-root "$RUN_ROOT/cells" \ + --expected-stages 31 \ + --order "$ISSUE128_ORDER" \ + --output "$RUN_ROOT/reduced/degree-${ISSUE128_ORDER}.json.gz" \ + --summary "$RUN_ROOT/reduced/summary.json" diff --git a/hpc/issue128_screen_array.sbatch b/hpc/issue128_screen_array.sbatch new file mode 100755 index 000000000..b4fa5b048 --- /dev/null +++ b/hpc/issue128_screen_array.sbatch @@ -0,0 +1,35 @@ +#!/usr/bin/env bash +#SBATCH --job-name=issue128-screen +#SBATCH --partition=xhacnormalb +#SBATCH --account=giggleliu +#SBATCH --qos=user_acamtw70yu +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=5 +#SBATCH --mem=16G +#SBATCH --time=02:00:00 +#SBATCH --array=0-23%24 +#SBATCH --output=results/slurm-%x-%A_%a.out +#SBATCH --error=results/slurm-%x-%A_%a.err + +set -euo pipefail +: "${ISSUE128_RUN_ID:?ISSUE128_RUN_ID must name the result run}" +ISSUE128_SCREEN_ORDER="${ISSUE128_SCREEN_ORDER:-6}" + +export PYTHONHASHSEED=0 +export OMP_NUM_THREADS=1 +export OPENBLAS_NUM_THREADS=1 +export MKL_NUM_THREADS=1 + +REPOSITORY_ROOT="${SLURM_SUBMIT_DIR:?}" +ISSUE_ROOT="$REPOSITORY_ROOT/tracks/qcs/solutions/WangTheoPhys/issue128" +export PYTHONPATH="$ISSUE_ROOT/src${PYTHONPATH:+:$PYTHONPATH}" +CELL_ID=$(printf "permutation-%02d" "$SLURM_ARRAY_TASK_ID") +CELL_DIR="$REPOSITORY_ROOT/results/$ISSUE128_RUN_ID/screen/$CELL_ID" +mkdir -p "$CELL_DIR" +cd "$ISSUE_ROOT" +"$REPOSITORY_ROOT/.venv/bin/python" -u scripts/screen_matching_order.py \ + --permutation-index "$SLURM_ARRAY_TASK_ID" \ + --order "$ISSUE128_SCREEN_ORDER" \ + --output "$CELL_DIR/result.json" \ + --manifest "$CELL_DIR/manifest.json" diff --git a/hpc/issue128_verify.sbatch b/hpc/issue128_verify.sbatch new file mode 100755 index 000000000..654ce7789 --- /dev/null +++ b/hpc/issue128_verify.sbatch @@ -0,0 +1,66 @@ +#!/usr/bin/env bash +#SBATCH --job-name=issue128-verify +#SBATCH --partition=xhacnormalb +#SBATCH --account=giggleliu +#SBATCH --qos=user_acamtw70yu +#SBATCH --nodes=1 +#SBATCH --ntasks=1 +#SBATCH --cpus-per-task=9 +#SBATCH --mem=32G +#SBATCH --time=04:30:00 +#SBATCH --output=results/slurm-%x-%j.out +#SBATCH --error=results/slurm-%x-%j.err + +set -euo pipefail +: "${ISSUE128_RUN_ID:?ISSUE128_RUN_ID must name the result run}" + +export PYTHONHASHSEED=0 +export OMP_NUM_THREADS=1 +export OPENBLAS_NUM_THREADS=1 +export MKL_NUM_THREADS=1 + +REPOSITORY_ROOT="${SLURM_SUBMIT_DIR:?}" +ISSUE_ROOT="$REPOSITORY_ROOT/tracks/qcs/solutions/WangTheoPhys/issue128" +export PYTHONPATH="$ISSUE_ROOT/src${PYTHONPATH:+:$PYTHONPATH}" +OUT="$REPOSITORY_ROOT/results/$ISSUE128_RUN_ID/verification" +mkdir -p "$OUT" +cd "$ISSUE_ROOT" + +set +e +"$REPOSITORY_ROOT/.venv/bin/python" -u scripts/verify.py \ + certificates/issue128-certificate.json --deep \ + >"$OUT/deep-verifier.stdout" 2>"$OUT/deep-verifier.stderr" +VERIFY_RC=$? +"$REPOSITORY_ROOT/.venv/bin/python" -m pytest -q -o addopts='' \ + >"$OUT/pytest.stdout" 2>"$OUT/pytest.stderr" +PYTEST_RC=$? +set -e + +"$REPOSITORY_ROOT/.venv/bin/python" - "$OUT" "$VERIFY_RC" "$PYTEST_RC" <<'PY' +import datetime +import hashlib +import json +import pathlib +import sys + +root = pathlib.Path(sys.argv[1]) +verify_rc = int(sys.argv[2]) +pytest_rc = int(sys.argv[3]) +files = {} +for path in sorted(root.glob("*.std*")): + files[path.name] = hashlib.sha256(path.read_bytes()).hexdigest() +payload = { + "schema_version": 1, + "kind": "issue128_hpc_verification", + "status": "complete" if verify_rc == 0 and pytest_rc == 0 else "failed", + "deep_verifier_exit_code": verify_rc, + "pytest_exit_code": pytest_rc, + "completed_at": datetime.datetime.now(datetime.timezone.utc).isoformat(), + "sha256": files, +} +(root / "manifest.json.tmp").write_text(json.dumps(payload, sort_keys=True, indent=2) + "\n") +(root / "manifest.json.tmp").replace(root / "manifest.json") +PY + +test "$VERIFY_RC" -eq 0 +test "$PYTEST_RC" -eq 0 diff --git a/scripts/harness_slurm.sh b/scripts/harness_slurm.sh index d14bc7f7e..bb816840b 100755 --- a/scripts/harness_slurm.sh +++ b/scripts/harness_slurm.sh @@ -21,6 +21,7 @@ # precheck resolve profile, test ssh, capture git dirty status # probe-partitions ssh sinfo and print a parsed candidate table # submit ... build+run sbatch, or validate with --test-only +# (repeat --env KEY=VALUE for explicit job metadata) # status squeue the job, parse state + pending-reason category # fetch rsync results// back from the cluster # classify sacct + per-cell manifests -> cell outcome table @@ -208,6 +209,7 @@ cmd_probe_partitions() { cmd_submit() { local array="" run_spec="" command="" entrypoint="" partition="" walltime="" cpus="" \ script="scripts/harness_array_sbatch.sh" extra="" test_only="false" + local -a job_env=() while [[ $# -gt 0 ]]; do case "$1" in --array) array="$2"; shift 2 ;; @@ -218,6 +220,7 @@ cmd_submit() { --time) walltime="$2"; shift 2 ;; --cpus) cpus="$2"; shift 2 ;; --script) script="$2"; shift 2 ;; + --env) job_env+=("$2"); shift 2 ;; --extra) extra="$2"; shift 2 ;; --test-only) test_only="true"; shift ;; *) die "submit: unknown flag $1" ;; @@ -237,6 +240,12 @@ cmd_submit() { elif [[ -n "$array" ]]; then die "submit: --array requires --run-spec; use a plain --script for single jobs" fi + local assignment + for assignment in "${job_env[@]}"; do + [[ "$assignment" =~ ^[A-Za-z_][A-Za-z0-9_]*=[^,[:space:]]+$ ]] || \ + die "submit: --env must be KEY=VALUE without commas or whitespace" + exports="${exports},${assignment}" + done local extra_partition="" extra_gres="" extra_status=0 \ extra_partition_set="false" extra_gres_set="false" diff --git a/skills/using-slurm/profiles/xh5-acamtw.toml b/skills/using-slurm/profiles/xh5-acamtw.toml new file mode 100644 index 000000000..9183e7fec --- /dev/null +++ b/skills/using-slurm/profiles/xh5-acamtw.toml @@ -0,0 +1,62 @@ +[identity] +name = "xh5-acamtw" +purpose = "Issue 128 exact-rational CPU sprint on hpccube Xiongheng" +maintainer = "Wander" + +[connection] +repo_path_remote = "/work/home/acamtw70yu/quantum-harness-issue128-hpc" +login_shell = false + +[connection.ssh] +alias = "xh5-acamtw" +host = "xh5.hpccube.com" +user = "acamtw70yu" +port = 65061 + +[scheduler] +type = "slurm" +default_partition = "xhacnormalb" + +[[partitions]] +name = "xhacnormalb" +class = "default-cpu" +cores = 128 +memory = "513500M" +max_wall = "333-08:00:00" +gpu = "" + +[filesystem] +home = "/work/home/acamtw70yu" +scratch = "" +project = "/work/home/acamtw70yu/quantum-harness-issue128-hpc" +quota = "" + +[network] +internet_from_login = true +internet_from_compute = false + +[region] +region = "mainland_china" + +[limits.hard] +max_walltime = "06:00:00" +max_nodes = 1 +max_cpus = 64 +max_array_size = 200 + +[limits.soft] +warn_walltime = "04:30:00" +warn_cpus = 32 +unusual_partitions = [] + +[limits.paths] +allowed_roots = ["/work/home/acamtw70yu/quantum-harness-issue128-hpc/results"] + +[commands] +squeue = "squeue -u $USER" +sacct = "sacct --format=JobID,State,ExitCode,MaxRSS,Elapsed" +sinfo = "sinfo -o '%P %a %.10l %.6D %.6t'" +quota_command = "sacctmgr -n -P show assoc where user=$USER format=Account,Partition,QOS,GrpTRES,MaxTRES" + +[notes] +text = "Live-probed 2026-07-31: account giggleliu, QOS user_acamtw70yu, CPU partition xhacnormalb, 128 cores and about 501 GiB per node. GPU partitions are intentionally excluded because the sprint is exact Python/Fraction work." diff --git a/skills/using-slurm/profiles/xh5-cfys.toml b/skills/using-slurm/profiles/xh5-cfys.toml new file mode 100644 index 000000000..d8586c6b1 --- /dev/null +++ b/skills/using-slurm/profiles/xh5-cfys.toml @@ -0,0 +1,56 @@ +[identity] +name = "xh5-cfys" +purpose = "Secondary Issue 128 discovery and independent verification on hpccube Xiongheng" +maintainer = "Wander" + +[connection] +repo_path_remote = "/work/home/cfys01/quantum-harness-issue128-hpc" +login_shell = false + +[connection.ssh] +alias = "hpccube-xh5" +host = "xh5.hpccube.com" +user = "cfys01" +port = 65061 + +[scheduler] +type = "slurm" +default_partition = "xhacnormalb" + +[[partitions]] +name = "xhacnormalb" +class = "default-cpu" +cores = 128 +memory = "513500M" +max_wall = "333-08:00:00" +gpu = "" + +[limits.hard] +max_walltime = "06:00:00" +max_nodes = 1 +max_cpus = 32 +max_array_size = 100 + +[limits.soft] +warn_walltime = "04:30:00" +warn_cpus = 16 +unusual_partitions = [] + +[limits.paths] +allowed_roots = ["/work/home/cfys01/quantum-harness-issue128-hpc/results"] + +[network] +internet_from_login = true +internet_from_compute = false + +[region] +region = "mainland_china" + +[commands] +squeue = "squeue -u $USER" +sacct = "sacct --format=JobID,State,ExitCode,MaxRSS,Elapsed" +sinfo = "sinfo -o '%P %a %.10l %.6D %.6t'" +quota_command = "sacctmgr -n -P show assoc where user=$USER format=Account,Partition,QOS,GrpTRES,MaxTRES" + +[notes] +text = "Secondary account already had 36 running jobs at the 2026-07-31 probe. Do not use it to bypass shared account/QOS limits." diff --git a/tracks/qcs/solutions/WangTheoPhys/README.md b/tracks/qcs/solutions/WangTheoPhys/README.md new file mode 100644 index 000000000..195496419 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/README.md @@ -0,0 +1,268 @@ +# 🔭 WangTheoPhys: machine-certified local-logarithm Trotter bounds + +## Team + +| | | +|---|---| +| **Team name** | WangTheoPhys | +| **Members** | Junkai Wang, WangTheoPhys@outlook.com | +| **Challenge** | [#128 — Tighter provable Trotter error bounds for a concrete 2D Hamiltonian](https://github.com/QuantumBFS/quantum.harness/issues/128) | +| **Track** | `qcs` — selected from the issue's `Method: Quantum Circuit Simulation` field | + +## Result + +For the periodic spin-1/2 square-lattice Heisenberg Hamiltonian + +```text +H = Σ_ (X_i X_j + Y_i Y_j + Z_i Z_j) / 4 +L = 12, N = 144, T = 1, operator-norm tolerance = 1e-6 +``` + +we certify the same five-copy fourth-order Suzuki circuit with 97 Trotter +steps, compared with 393 steps from the pinned published +Childs–Su–Tran–Wiebe–Zhu high-order commutator-bound instantiation. + +| Resource | Published rigorous baseline | This certificate | +|---|---:|---:| +| Trotter steps | 393 | 97 | +| Merged group exponentials | 11,791 | 2,911 | +| Bond propagators | 848,952 | 209,592 | +| CNOT upper bound (3 per bond) | 2,546,856 | 628,776 | + +The exact resource improvement is + +```text +11791 / 2911 = 4.050498110614909... +``` + +At 97 steps the certified global operator-norm error is +`9.958938494314325e-7`. At 96 steps the bound is +`1.050565873970784e-6`, so 97 is the smallest integer accepted by this +certificate. + +## What is new + +The circuit, fragmentation, and cost model are identical on both sides. The +gain comes entirely from changing where norm inequalities enter the proof. + +The published baseline expands partial Hamiltonian sums into individual +degree-five nested commutators and takes local Pauli-l1 norms term by term. +Our proof instead: + +1. computes the homogeneous free-associative-word logarithm of the complete + fourth-order formula; +2. applies the Dynkin–Specht–Wever projection to recover the degree-five and + degree-seven Lie elements; +3. maps those Lie elements into the concrete four-matching Heisenberg + representation; +4. combines identical local Pauli strings before taking a norm bound; +5. partitions the leading right-generator Pauli terms into exactly checked + pairwise-anticommuting groups; +6. converts the logarithm into the exact right generator; and +7. closes every degree at finite step size with a rational geometric locality + tail. + +For a group \(K_g=\sum_j c_jP_j\) whose Pauli strings anticommute pairwise, + +```text +||K_g|| <= sqrt(Σ_j upper(|c_j|)^2). +``` + +The submitted sidecar covers all 75,324 canonical leading-defect terms +exactly once with 7,576 groups of size at most 10. Every pairwise +anticommutation relation and every outward-rounded rational square-root bound +is checked independently. The untrusted greedy search chooses the partition +only; it is not part of the trusted proof. This tightens the leading +per-cell bound from `20.160968407335066` to `6.472926505087888`, a factor of +`3.114660484942633`. + +A further exact local lemma tightens all higher-degree growth estimates. For +one Heisenberg bond `h=(XX+YY+ZZ)/4`, every phase-free two-qubit Pauli string +anticommutes with either zero or exactly two of `XX`, `YY`, and `ZZ`. +Consequently + +```text +||[h,P]||_Pauli-l1 <= ||P||_Pauli-l1, +``` + +so the bond commutator growth constant is `1`, not the generic triangle bound +`3/2`. The verifier checks all 16 local Pauli cases exactly. + +Writing + +```text +log S4(t) = t A + t^5 B + t^7 C + O(t^9), +``` + +the right logarithmic generator obeys + +```text +S4'(t) S4(t)^(-1) - A + = 5 t^4 B + + 2 t^5 [A,B] + + t^6 (7 C + 2/3 [A,[A,B]]) + + t^7 (3 [A,C] + 1/6 [A,[A,[A,B]]]) + + R_{>=8}(t). +``` + +The remainder is not discarded. Local support growth, conjugation Taylor +factorials, and the Duhamel integration factor reduce it to an explicitly +summable rational geometric series. + +## Error ledger at 97 steps + +| Right-generator degree | Global contribution | +|---:|---:| +| 4 | `5.264367936822258e-7` | +| 5 | `1.3834875367446118e-7` | +| 6 | `1.579057000594835e-7` | +| 7 | `1.8946570806914694e-8` | +| 8 and above | `1.5425603120834724e-7` | +| **Total** | **`9.958938494314325e-7`** | + +All certificate values are stored as exact rational numerators and +denominators in +[`issue128/certificates/issue128-certificate.json`](issue128/certificates/issue128-certificate.json). +The large exact partition is stored separately in +[`issue128/certificates/issue128-d4-groups.json`](issue128/certificates/issue128-d4-groups.json) +and bound to the main certificate by SHA-256. + +## Published baseline control + +The baseline instantiates the higher-order commutator theorem of: + +- A. M. Childs, Y. Su, M. C. Tran, N. Wiebe, and S. Zhu, + [*A Theory of Trotter Error*](https://arxiv.org/abs/1912.08854); +- A. Schubert and C. B. Mendl, + [*Trotter error with commutator scaling for the Fermi-Hubbard model*](https://arxiv.org/abs/2306.10603). + +The verifier expands partial sums before applying local Pauli-l1 bounds and +checks all coefficients with rational intervals. All 31 allowed theorem +centers were scanned; center 20 gives the smallest published-baseline +instantiation, with site-density upper bound `164.97591695274392` and 393 +steps. + +We separately audited the standard recursive Suzuki orders 2, 4, 6, and 8. +The authoritative schema-v3 certificate records 179,785, 24,241, 55,501, and +251,251 merged groups, respectively. These are contextual audit values and do +not enter the primary 393-versus-97 comparison. An earlier short report copied +a legacy set of auxiliary values; the discrepancy and its non-impact on the +main claim are documented in the [report erratum](issue128/docs/report/ERRATA.md). + +Optimized/processed formulas ranked empirically on random matrices are not +treated as deterministic worst-case bounds for this instance. Adapting their +coefficients to an interval-certified comparison is a useful follow-up, but +their empirical constants cannot replace the pinned rigorous baseline. + +## Independent checks and negative results + +- A fast verifier checks the sidecar digest, exact term coverage, every + symplectic anticommutation relation, every rational group bound, the + integer step boundary, and all resource arithmetic. +- A deep verifier additionally regenerates the published baseline, all 75,324 + canonical leading-defect coefficients, the degree-seven majorant, and the + finite tail directly from the formula. +- A degenerate 2x2 periodic-algebra sanity check gives actual spectral-norm + error `9.128277711816321e-10`, below its outward-rounded certificate + `2.7666666666666666e-8`. +- The degree-three Lie representation of the four matching fragments has + exact rank 20, equal to the free-Lie dimension `(4^3-4)/3 = 20`. Thus the + current fragmentation has no free model-specific reduction in fourth-order + order conditions. +- A three-site SU(2)-cluster decomposition improves local block counts but not + the conservative compiled CNOT bound once the three-site propagator cost is + included. +- A [quantitative 5×/10× follow-up audit](issue128/docs/followups/2026-07-29-5x-10x-audit.md) + shows that D4 tightening alone cannot reach the next threshold: 5× also + requires tighter D5-D10/tail certificates, while 10× requires an effective + order lift such as a certified processor or shorter sixth-order kernel. + +## Final delivery package + +The reviewer-facing package freezes the certified `4.050498110614909×` +result and binds the human-readable report to the exact proof artifacts: + +- [technical report PDF](issue128/docs/report/output/issue128-technical-report.pdf) + and [LaTeX source](issue128/docs/report/issue128-technical-report.tex); +- [machine-readable JSON summary](issue128/artifacts/issue128-summary.json) and + [plain-text result summary](issue128/artifacts/issue128-summary.txt); +- [verification transcript](issue128/artifacts/verification-transcript.txt); +- [SHA-256 manifest](issue128/artifacts/SHA256SUMS) covering the report, + summaries, transcript, certificates, and exact sidecars. + +The following derived materials sit outside that frozen ten-file manifest and +must be read as explanations or follow-up engineering, not as replacements for +the exact certificate: + +| Material | Purpose | Claim status | +|---|---|---| +| [30-page research manuscript](issue128/docs/manuscript/output/pdf/issue128-proof-carrying-trotter-paper.pdf) | Full derivation, proofs, literature positioning, limitations, and appendices | Explains the frozen 4.050498× certificate | +| [Manuscript source and build instructions](issue128/docs/manuscript/README.md) | Rebuild the PDF and all four vector figures | Derived, reproducible document | +| [Citation audit](issue128/docs/manuscript/CITATION_AUDIT.md) | Validate all 23 references by DOI, arXiv ID, or official catalog | Bibliographic QA | +| [10-minute talk script](issue128/docs/presentation/issue128-10-minute-talk.md) | Eight-slide presentation and Q&A boundaries | Reports only the certified 4.050498× result | +| [Six-hour HPC log](issue128/docs/report/issue128-hpc-sprint-log.md) | Exact D8 shard/reducer follow-up | Exploratory; no fivefold certificate | +| [Short-report erratum](issue128/docs/report/ERRATA.md) | Correct a legacy auxiliary recursive-order table | Main result unchanged | + +The fivefold follow-up includes an independently checked degree-five sidecar: +605,832 canonical Pauli terms, 123,106 same-support pairwise-anticommuting +groups, and site-density upper bound `11.23706750025696`. Conditional resource +arithmetic at `r=78` would be `11791/2341 = 5.036736437419906...`, but the D4 +budget and D8-plus global tail gates are not closed. **No 78-step global error +certificate is claimed or supplied.** + +## Reproduce + +From this directory: + +```bash +python -m pip install -e '.[test]' +pytest -q +PYTHONPATH=src python scripts/verify.py \ + certificates/issue128-certificate.json +PYTHONPATH=src python scripts/build_d5_certificate.py --verify-only +PYTHONPATH=src python scripts/package_delivery.py --check +shasum -a 256 -c artifacts/SHA256SUMS +``` + +The fast verifier checks the submitted exact-rational certificate. The deep +mode regenerates the expensive local algebra: + +```bash +PYTHONPATH=src python scripts/verify.py \ + certificates/issue128-certificate.json --deep +``` + +Regenerate the certificate: + +```bash +PYTHONPATH=src python scripts/build_v3_certificate.py +``` + +Build and validate the long-form paper: + +```bash +cd docs/manuscript +make pdf +``` + +The default test suite excludes explicitly marked research-reproduction tests. +The deep verifier independently regenerates the expensive local algebra. + +## Files + +```text +issue128/ +├── certificates/ exact certificate and verification summaries +├── artifacts/ reviewer summaries, transcript, and frozen manifest +├── docs/manuscript/ 30-page paper, source, figures, and citation audit +├── docs/presentation/ 10-minute presentation script +├── docs/report/ short report, HPC log, and erratum +├── scripts/ certificate builder, verifier, dense cross-check +├── src/trottercert/ exact Pauli/Lie/interval/locality implementation +├── tests/ fast and marked slow regression tests +└── pyproject.toml +``` + +The trusted verification path uses integers, `Fraction`, rational interval +arithmetic, exact symplectic Pauli multiplication, and outward rounding. +Floating point is used only for discovery and dense sanity checks. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/artifacts/SHA256SUMS b/tracks/qcs/solutions/WangTheoPhys/issue128/artifacts/SHA256SUMS new file mode 100644 index 000000000..312761b84 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/artifacts/SHA256SUMS @@ -0,0 +1,10 @@ +c623999ecac8a7718ed0971a497ece8148e4d70a293d5ed90338db7cea9d735b artifacts/issue128-summary.json +77228cdb866363c2c8efebc456b6f4c7591ec2f515ebdfd9090cd8a029976c8a artifacts/issue128-summary.txt +f4c9e2c4850052ddecfe2f8a8b584cdcf16eddc5eb0b86fffcb5bd93a237db73 artifacts/verification-transcript.txt +0a09623ce3b292a3637065c870fb3153bbdcddce30aef968565c4db3ddfc7201 certificates/issue128-certificate.json +a397414bb0229fb1ebdb38798aa781fb89dbb9d5cdbed94c7cd2e9120da62718 certificates/issue128-d4-groups.json +c5e8968a93b4497b41fe42c0e364324388272e183e1fcd20a536bc988f5361dd certificates/issue128-d5-groups.json.gz +ffeba2a7d2f880a14b7ee1600740885d46d702f70de1c94dfb6476efe785a4e8 certificates/issue128-small-crosscheck.json +fc963a624ab29a301df4be06de352b33b0fb531ef9b4196e298fcc61ccbff19e docs/report/issue128-technical-report.tex +16b2ef450a2ffd7662c4bd56a244f709f6dc09173175e2fc1e2a3bca7f5ea0f8 docs/report/references.bib +f50090a26979e0ba1bda7fe74a8a2673b101bc2d7115bda939e69953e14f4ba8 docs/report/output/issue128-technical-report.pdf diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/artifacts/issue128-summary.json b/tracks/qcs/solutions/WangTheoPhys/issue128/artifacts/issue128-summary.json new file mode 100644 index 000000000..e9a32468c --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/artifacts/issue128-summary.json @@ -0,0 +1,176 @@ +{ + "benchmark": { + "formula": "five_copy_suzuki_fourth_order", + "formula_order": 4, + "length": 12, + "model": "periodic_square_spin_half_isotropic_heisenberg", + "normalization": "(XX+YY+ZZ)/4", + "sites": 144, + "stage_count": 31, + "time": [ + 1, + 1 + ], + "tolerance": [ + 1, + 1000000 + ] + }, + "certified_result": { + "accepted_at_97": true, + "bond_propagators": 209592, + "cnot_upper": 628776, + "error_upper": [ + 599670422745656108926597685630153943951201095508880641428475695866175124754901808839128699565476683604156496265888897758053359535162204152523497215954848848755961894315360438774573129074241941927331478665448272993350597926513476349231331606355445437094033812134866153343154999415560759372473990440779968348417384816501377794329390792937346394068204978527979293780943439329901747152018428695684650908057947950752275565153549211215094936727050696808115471285220887575343320538864415440435484823724401, + 602142912206973711887315561170904756952640210127850551940789493157746056377379826763616362402020237696865327014080068950216304555089934702434312544962569240809623049749328049167909681727688996310217153579438228870667754675519567228647196647974878833696933930210200163871410118653330480389842312109713005945868498493675588732493636994540139751795974102904699839249296328754059282438334102079705540750359815808000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ], + "error_upper_decimal_outward": "9.958938494314325e-7", + "group_exponentials": 2911, + "previous_step": 96, + "previous_step_error_upper": [ + 18628098815762331308955745375744031451312712544003951915143323587191765140913687282590556923012229284286727492973637946908091979520580506941522631107558919299568456616026386835101726158947303895942669287179491573040382549259481731100862869066053794714470474282725565473839414726457780840434975235932140103612890697147056306440018341055946734378261970229499903599140373782008230578526026304631306088724623197505724600262101991677390833449941204813309538996425837404480621025826120161090811331145602190211, + 17731490501737330132971023158265461256557754955863122336739410011121346612799210695034681326844820557504793235783494060750359613343514225496752334858555018334128350507379874818501208678928093800230834997231437643227318036143974224856394241661177886302136098849703389670867925933947203616654322290404728008558748552082205606402627773932681885052986146827660046233143704985663445575306347781684791090345692853436416000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ], + "previous_step_error_upper_decimal_outward": "1.050565873970784e-6", + "rejected_at_96": true, + "status": "certified", + "steps": 97 + }, + "error_ledger": { + "degree4": { + "decimal_outward": "5.264367936822258e-7", + "exact": [ + 58256338545790990093628258829867, + 110661601250000000000000000000000000000 + ] + }, + "degree5": { + "decimal_outward": "1.383487536744612e-7", + "exact": [ + 5940239109672385481139, + 42936701285000000000000000000 + ] + }, + "degree6": { + "decimal_outward": "1.579057000594836e-7", + "exact": [ + 1841434385955714104548091490621189043370256643471762447183931887538056269601500787798709217, + 11661608069006000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ] + }, + "degree7": { + "decimal_outward": "1.894657080691470e-8", + "exact": [ + 5357976462796315520172382471863567130110769930415287341551795662614168808804502363396127651, + 282793995673395500000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ] + }, + "tail": { + "decimal_outward": "1.542560312083473e-7", + "exact": [ + 92884175857284035685491336120458886544591778856897518237878840530272528365781587849919976832473665497571875376721654086499568100219300178381272091488081075497432947804603406574221283511468320089988532596441734375778223324921737782346334828088922482572379748281546586565691964441068690267790066150715130700988982046174633901066873595346096298659855593548453567339620090693131651503331290224972643248428821639173717842799629028021042107274754690384076727696817482166801994662813450060403484823724401, + 602142912206973711887315561170904756952640210127850551940789493157746056377379826763616362402020237696865327014080068950216304555089934702434312544962569240809623049749328049167909681727688996310217153579438228870667754675519567228647196647974878833696933930210200163871410118653330480389842312109713005945868498493675588732493636994540139751795974102904699839249296328754059282438334102079705540750359815808000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ] + } + }, + "fivefold_followup": { + "claim_boundary": "No 78-step global error certificate is claimed or supplied.", + "conditional_exact_ratio": [ + 11791, + 2341 + ], + "conditional_group_exponentials": 2341, + "conditional_ratio_decimal": "5.036736437419906", + "conditional_step_count": 78, + "d5_group_count": 123106, + "d5_site_density_upper": [ + 44948270001027856175670154896253, + 4000000000000000000000000000000 + ], + "d5_site_density_upper_decimal": "1.123706750025697e+1", + "d5_term_count": 605832, + "status": "not_certified", + "unresolved_proof_gates": [ + "translation-coupled D4 norm below the r=78 budget", + "explicit D8 and delayed high-degree tail certificate", + "complete exact global error ledger at r=78" + ] + }, + "improvement": { + "decimal": "4.050498110614909", + "exact_ratio": [ + 11791, + 2911 + ], + "multiple_of_required_twofold_target": "2.025249055307454", + "resource_fraction_removed": [ + 8880, + 11791 + ], + "resource_percent_removed": "75.31167839877873%" + }, + "method": { + "innovations": [ + "full free-associative-word logarithm before norm inequalities", + "Dynkin-Specht-Wever projection to degree-5 and degree-7 Lie elements", + "translation-canonical Pauli combination before taking norms", + "exact pairwise-anticommuting grouping for the leading D4 defect", + "exact single-bond Heisenberg commutator growth constant 1", + "finite-step right-generator ledger with a rational geometric tail", + "independent exact-rational and symplectic verification" + ], + "proof_method": "local_log_E5_grouped_D4_plus_E7_majorant_plus_exact_generator_tail" + }, + "published_baseline": { + "bond_propagators": 848952, + "cnot_upper": 2546856, + "group_exponentials": 11791, + "site_density_upper": [ + 13198073356219512631693646217169939173745709526165852646345503355718759045842787628228078578619, + 80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ], + "site_density_upper_decimal": "1.649759169527440e+2", + "source_theorem": "Childs_Su_Tran_Wiebe_Zhu_high_order_commutator_bound", + "steps": 393, + "theorem_center": 20 + }, + "schema_version": 1, + "sources": { + "anchored_pr_head": "c550a6b0915ccf7a1db410ee765ff65d99f96b6f", + "d4_sidecar": { + "path": "certificates/issue128-d4-groups.json", + "sha256": "a397414bb0229fb1ebdb38798aa781fb89dbb9d5cdbed94c7cd2e9120da62718" + }, + "d5_sidecar": { + "path": "certificates/issue128-d5-groups.json.gz", + "sha256": "c5e8968a93b4497b41fe42c0e364324388272e183e1fcd20a536bc988f5361dd" + }, + "main_certificate": { + "path": "certificates/issue128-certificate.json", + "sha256": "0a09623ce3b292a3637065c870fb3153bbdcddce30aef968565c4db3ddfc7201" + }, + "source_commit_for_main_certificate": "d7381a630b1e42194fb6635ffb0864ca326db0e2", + "source_commit_timestamp": "2026-07-29T21:54:48+08:00" + }, + "verification": { + "d4_cell_norm_upper": [ + 6472926505087887788180917647763, + 1000000000000000000000000000000 + ], + "d4_cell_norm_upper_decimal": "6.472926505087888e+0", + "d4_group_count": 7576, + "d4_max_group_size": 10, + "d4_term_count": 75324, + "small_crosscheck": { + "bound_dominates_empirical_error": true, + "bound_meets_tolerance": true, + "certified_upper_bound": 2.7666666666666666e-08, + "empirical_operator_norm_error": 9.128277711816321e-10, + "length": 2, + "model_note": "degenerate 2x2 periodic algebra sanity check for schema-v3 r=97", + "n_sites": 4, + "requested_tolerance": 1e-06, + "steps": 97 + } + } +} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/artifacts/issue128-summary.txt b/tracks/qcs/solutions/WangTheoPhys/issue128/artifacts/issue128-summary.txt new file mode 100644 index 000000000..0002e8339 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/artifacts/issue128-summary.txt @@ -0,0 +1,28 @@ +ISSUE 128 FINAL RESULT SUMMARY +================================ + +BENCHMARK: periodic_square_spin_half_isotropic_heisenberg +LATTICE: L=12, N=144 +NORMALIZATION: (XX+YY+ZZ)/4 +TIME: T=1; OPERATOR-NORM TOLERANCE: 1e-6 + +PUBLISHED BASELINE: 393 steps, 11791 groups, 848952 bond propagators, 2546856 CNOT upper +CERTIFIED RESULT: 4.050498110614909x + 97 steps, 2911 groups, 209592 bond propagators, 628776 CNOT upper + exact ratio: 11791/2911 + resource reduction: 75.31167839877873% + 97-step error upper (outward decimal): 9.958938494314325e-7 + 96-step error upper (outward decimal): 1.050565873970784e-6 + integer boundary: 97 accepted; 96 rejected + +EXACT D4: 75324 terms, 7576 groups, maximum size 10, cell bound 6.472926505087888e+0 + +FIVEFOLD STATUS: NOT CERTIFIED + conditional arithmetic only: r=78, groups=2341, ratio=5.036736437419906x + verified D5 evidence: 605832 terms, 123106 groups, site bound 1.123706750025697e+1 + No 78-step global error certificate is claimed or supplied. + +SOURCE BINDINGS + main certificate SHA-256: 0a09623ce3b292a3637065c870fb3153bbdcddce30aef968565c4db3ddfc7201 + D4 sidecar SHA-256: a397414bb0229fb1ebdb38798aa781fb89dbb9d5cdbed94c7cd2e9120da62718 + D5 sidecar SHA-256: c5e8968a93b4497b41fe42c0e364324388272e183e1fcd20a536bc988f5361dd diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/artifacts/verification-transcript.txt b/tracks/qcs/solutions/WangTheoPhys/issue128/artifacts/verification-transcript.txt new file mode 100644 index 000000000..680bc07b6 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/artifacts/verification-transcript.txt @@ -0,0 +1,43 @@ +ISSUE 128 VERIFICATION TRANSCRIPT +================================= +source_commit_for_main_certificate: d7381a630b1e42194fb6635ffb0864ca326db0e2 +source_commit_timestamp: 2026-07-29T21:54:48+08:00 +python: 3.12.11 +platform: macOS-15.6-arm64-arm-64bit + +$ PYTHONPATH=src python scripts/verify.py certificates/issue128-certificate.json +exit_code: 0 +--- stdout --- +{ + "valid": true, + "verification_level": "fast", + "deep_proof_regenerated": false, + "published_steps": 393, + "candidate_steps": 97, + "published_group_exponentials": 11791, + "candidate_group_exponentials": 2911, + "candidate_error_upper": "599670422745656108926597685630153943951201095508880641428475695866175124754901808839128699565476683604156496265888897758053359535162204152523497215954848848755961894315360438774573129074241941927331478665448272993350597926513476349231331606355445437094033812134866153343154999415560759372473990440779968348417384816501377794329390792937346394068204978527979293780943439329901747152018428695684650908057947950752275565153549211215094936727050696808115471285220887575343320538864415440435484823724401/602142912206973711887315561170904756952640210127850551940789493157746056377379826763616362402020237696865327014080068950216304555089934702434312544962569240809623049749328049167909681727688996310217153579438228870667754675519567228647196647974878833696933930210200163871410118653330480389842312109713005945868498493675588732493636994540139751795974102904699839249296328754059282438334102079705540750359815808000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "previous_step_error_upper": "18628098815762331308955745375744031451312712544003951915143323587191765140913687282590556923012229284286727492973637946908091979520580506941522631107558919299568456616026386835101726158947303895942669287179491573040382549259481731100862869066053794714470474282725565473839414726457780840434975235932140103612890697147056306440018341055946734378261970229499903599140373782008230578526026304631306088724623197505724600262101991677390833449941204813309538996425837404480621025826120161090811331145602190211/17731490501737330132971023158265461256557754955863122336739410011121346612799210695034681326844820557504793235783494060750359613343514225496752334858555018334128350507379874818501208678928093800230834997231437643227318036143974224856394241661177886302136098849703389670867925933947203616654322290404728008558748552082205606402627773932681885052986146827660046233143704985663445575306347781684791090345692853436416000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "d4_cell_norm_upper": "6472926505087887788180917647763/1000000000000000000000000000000", + "d4_term_count": 75324, + "d4_group_count": 7576, + "d4_max_group_size": 10, + "exact_improvement_ratio": "11791/2911", + "improvement": 4.050498110614909, + "global_twofold_target_met": true, + "global_fourfold_target_met": true +} +--- stderr --- +(empty) + +$ PYTHONPATH=src python scripts/build_d5_certificate.py --verify-only +exit_code: 0 +--- stdout --- +term_count=605832 +group_count=123106 +site_density=44948270001027856175670154896253/4000000000000000000000000000000 +site_density_decimal=11.23706750025696 +--- stderr --- +(empty) + +OVERALL STATUS: PASS diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-certificate.json b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-certificate.json new file mode 100644 index 000000000..c988161f9 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-certificate.json @@ -0,0 +1,144 @@ +{ + "schema_version": 3, + "benchmark": { + "model": "periodic_square_spin_half_isotropic_heisenberg", + "normalization": "(XX+YY+ZZ)/4", + "length": 12, + "time": [ + 1, + 1 + ], + "tolerance": [ + 1, + 1000000 + ], + "primary_certified_metric": "compiled_cnot_upper" + }, + "published_baseline": { + "source_theorem": "Childs_Su_Tran_Wiebe_Zhu_high_order_commutator_bound", + "formula": "five_copy_suzuki_fourth_order", + "formula_order": 4, + "stage_count": 31, + "theorem_center": 20, + "coefficient_interval_decimal_digits": 18, + "norm_method": "expand_partial_sums_then_local_Pauli_l1", + "site_density_upper": [ + 13198073356219512631693646217169939173745709526165852646345503355718759045842787628228078578619, + 80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ], + "theorem_terms": 8316, + "expanded_commutator_keys": 1024, + "steps": 393, + "group_exponentials": 11791 + }, + "candidate": { + "formula": "five_copy_suzuki_fourth_order", + "proof_method": "local_log_E5_grouped_D4_plus_E7_majorant_plus_exact_generator_tail", + "coefficient_interval_decimal_digits": 12, + "e5_quantization_digits": 18, + "e5_site_l1_upper": [ + 660026567741376164571, + 640000000000000000000 + ], + "e7_site_majorant": [ + 189819225544339185530064210069021004818917404830195827464881320837561807733500087533189913, + 224000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ], + "d4_certificate": { + "path": "issue128-d4-groups.json", + "sha256": "a397414bb0229fb1ebdb38798aa781fb89dbb9d5cdbed94c7cd2e9120da62718", + "max_group_size": 10, + "term_count": 75324, + "group_count": 7576, + "cell_norm_upper": [ + 6472926505087887788180917647763, + 1000000000000000000000000000000 + ] + }, + "steps": 97, + "group_exponentials": 2911, + "contributions": { + "degree4": [ + 58256338545790990093628258829867, + 110661601250000000000000000000000000000 + ], + "degree5": [ + 5940239109672385481139, + 42936701285000000000000000000 + ], + "degree6": [ + 1841434385955714104548091490621189043370256643471762447183931887538056269601500787798709217, + 11661608069006000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ], + "degree7": [ + 5357976462796315520172382471863567130110769930415287341551795662614168808804502363396127651, + 282793995673395500000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ], + "tail": [ + 92884175857284035685491336120458886544591778856897518237878840530272528365781587849919976832473665497571875376721654086499568100219300178381272091488081075497432947804603406574221283511468320089988532596441734375778223324921737782346334828088922482572379748281546586565691964441068690267790066150715130700988982046174633901066873595346096298659855593548453567339620090693131651503331290224972643248428821639173717842799629028021042107274754690384076727696817482166801994662813450060403484823724401, + 602142912206973711887315561170904756952640210127850551940789493157746056377379826763616362402020237696865327014080068950216304555089934702434312544962569240809623049749328049167909681727688996310217153579438228870667754675519567228647196647974878833696933930210200163871410118653330480389842312109713005945868498493675588732493636994540139751795974102904699839249296328754059282438334102079705540750359815808000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ] + }, + "global_error_upper": [ + 599670422745656108926597685630153943951201095508880641428475695866175124754901808839128699565476683604156496265888897758053359535162204152523497215954848848755961894315360438774573129074241941927331478665448272993350597926513476349231331606355445437094033812134866153343154999415560759372473990440779968348417384816501377794329390792937346394068204978527979293780943439329901747152018428695684650908057947950752275565153549211215094936727050696808115471285220887575343320538864415440435484823724401, + 602142912206973711887315561170904756952640210127850551940789493157746056377379826763616362402020237696865327014080068950216304555089934702434312544962569240809623049749328049167909681727688996310217153579438228870667754675519567228647196647974878833696933930210200163871410118653330480389842312109713005945868498493675588732493636994540139751795974102904699839249296328754059282438334102079705540750359815808000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ], + "previous_step_error_upper": [ + 18628098815762331308955745375744031451312712544003951915143323587191765140913687282590556923012229284286727492973637946908091979520580506941522631107558919299568456616026386835101726158947303895942669287179491573040382549259481731100862869066053794714470474282725565473839414726457780840434975235932140103612890697147056306440018341055946734378261970229499903599140373782008230578526026304631306088724623197505724600262101991677390833449941204813309538996425837404480621025826120161090811331145602190211, + 17731490501737330132971023158265461256557754955863122336739410011121346612799210695034681326844820557504793235783494060750359613343514225496752334858555018334128350507379874818501208678928093800230834997231437643227318036143974224856394241661177886302136098849703389670867925933947203616654322290404728008558748552082205606402627773932681885052986146827660046233143704985663445575306347781684791090345692853436416000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 + ] + }, + "cost_model": { + "bonds_per_matching": 72, + "cnots_per_bond_propagator": 3, + "inter_step_merge_rule": "30*r+1" + }, + "claimed_resources": { + "published_steps": 393, + "candidate_steps": 97, + "published_group_exponentials": 11791, + "candidate_group_exponentials": 2911, + "published_bond_propagators": 848952, + "candidate_bond_propagators": 209592, + "published_cnot_upper": 2546856, + "candidate_cnot_upper": 628776 + }, + "published_recursive_suzuki_audit": [ + { + "order": 2, + "steps": 29964, + "stages_per_step": 7, + "group_exponentials": 179785, + "global_error_upper_decimal_summary": "9.9999203748666826e-07" + }, + { + "order": 4, + "steps": 808, + "stages_per_step": 31, + "group_exponentials": 24241, + "global_error_upper_decimal_summary": "9.9682621337975879e-07" + }, + { + "order": 6, + "steps": 370, + "stages_per_step": 151, + "group_exponentials": 55501, + "global_error_upper_decimal_summary": "9.8463753882538689e-07" + }, + { + "order": 8, + "steps": 335, + "stages_per_step": 751, + "group_exponentials": 251251, + "global_error_upper_decimal_summary": "9.9829085642259163e-07" + } + ], + "claims": { + "global_twofold_target_met": true, + "global_fourfold_target_met": true, + "exact_improvement_ratio": [ + 11791, + 2911 + ] + } +} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-d4-groups.json b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-d4-groups.json new file mode 100644 index 000000000..d4a1fc22d --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-d4-groups.json @@ -0,0 +1 @@ +{"cell_bound":[6472926505087887788180917647763,1000000000000000000000000000000],"coefficient_denominator":64000000000000000000,"groups":[[[0,342,11183,418,898,5446,7522,558,3139,10690],18787493156641712685503687102],[[5,10786,2100,343,60126,29208,7882,21142,41432,19612],20651598452015207572612866501],[[292,551,697,10913,7538,3155,1500,5051,13290,7074],18161308832385673502670635854],[[293,553,695,10924,894,5420,7540,3616,3132,13314],18799716973783184516990242895],[[670,13291,24346,791,17781,27787,5737,2081,39625,49469],20651598452015207572612866501],[[672,10793,24373,17748,39624,13307,49511,40376,24980,54761],19294543339006124565248757949],[[722,13315,2104,11194,17756,2292,1213,38054,31772,20738],18247566543793106011963054495],[[724,18136,25300,10667,11124,299,1760,1508,10772,51612],18963521305426702398466260476],[[17706,18146,10679,41278,13068,393,5728,13382,24070,2080],17205947871653055192978370016],[[17717,25349,708,38084,11117,12035,78,1752,15474,33815],17821867298224877584820105742],[[18133,794,12812,17773,41410,41274,2016,561,71746,59149],17615240337291484831252713043],[[18152,710,41288,10605,13345,19282,2047,55022,1103,40502],16193734732578355694152352284],[[294,13601,38059,696,511,13326,10921,11116,15382,391],15350402761268088261378297682],[[295,12793,60158,711,513,1982,27728,29212,31703,5715],16812532120702091988480431914],[[671,13585,58595,17749,419,2820,19244,13353,59309,38362],15918554235638916004920594993],[[673,58544,13698,17757,59537,2381,24824,2819,556,38343],15407412924873183168131302799],[[790,694,38265,908,6458,20310,24826,3882,51676,64147],15775617049905874111722063078],[[795,709,60012,39609,25335,13343,66,13496,59095,51602],14586799844908291979224122141],[[10614,17772,11181,12032,10929,23708,680,12926,15426,13612],13133964255105931752619165496],[[12895,17780,13149,31385,15092,22052,18542,20316,14434,48602],14544048697009079178254464654],[[12927,11196,904,716,26789,10918,298,2075,13394,61398],13707458052258164592810111364],[[13673,58448,13160,17726,26663,13294,15052,24458,62160,26927],13245247970674434813529734684],[[38230,11018,13602,1995,6463,12051,14490,24842,3886,49471],14592211621692783247118744056],[[41427,13070,60117,1987,29162,14499,5853,16228,22598,26096],14795695935418496158763731233],[[58418,13584,59513,704,26659,485,43187,60006,14410,810],13292569697590485362871931124],[[60037,11023,16278,26655,80,30394,24437,2010,1210,58612],13338121194809986097490359107],[[13091,60167,2826,14416,11646,2079,58414,40030,8116,3744],12190179477976984762642176117],[[41292,702,19289,15046,20283,1509,13298,483,48239,48537],13911912764581381781868030030],[[7,296,1141,13805,2519,14911,7191,18233,15417,2215],10819485511841622332736904862],[[18,11603,718,26794,1291,1611,19495,41405,474,25146],12797746780197581558619030329],[[1990,11620,17727,33267,13324,432,38079,49513,26078,56870],11979499323484608819592431283],[[16266,17734,22594,33649,2053,10946,6801,10702,38394,58561],12644539731172070452269543178],[[19251,31404,33219,13318,26102,23709,13840,22024,212,17788],12534318331382917934718964741],[[33613,6447,14382,30399,11634,31727,6996,20622,20294,46256],12427074455273933046474999987],[[33657,6442,22041,23729,2073,1774,12934,1695,13517,60172],12301721285675150099321329477],[[17735,1792,13132,16210,20303,19085,24844,10934,18579,13603],11906567528668525042392522591],[[19440,31402,30368,6400,7186,26799,43204,20298,31680,50372],11997530888270802694213866078],[[19462,20277,1800,1145,13283,1293,12822,24693,40803,11089],11741746109982694579828110182],[[19483,31383,5865,12048,2293,1622,6397,20270,13381,13613],12768408093260364860640249341],[[19505,26651,20344,1501,2386,13112,13301,65533,61860,11211],11831109334408733574388722754],[[22551,13119,33621,15420,6789,2045,14419,1671,40227,43262],11561065024979841883499373268],[[25313,28144,20328,3558,1823,33227,18537,3127,48,3037],11888931270351380262839665701],[[28172,26116,6413,1603,13334,12902,20582,15456,999,51945],10975568136918076505588839587],[[29158,3339,3577,4191,5807,7870,987,12914,37930,13244],11693383939506230471822497509],[[18553,27815,10910,13125,42875,394,61390,62526,60688,2092],9816161644209400003571362963],[[27756,2298,681,20333,38800,5587,560,18026,18242,11923],11209755609859712802677004259],[[297,1178,392,3122,555,834,15423,19975,2009,52201],10527180982636611685653340844],[[678,989,4199,2299,20620,3615,13277,12946,19105,20279],11593500497231474533151642660],[[985,1180,1093,19039,19452,3317,3863,60149,25346,51486],10489366584578038651956626720],[[1091,3573,837,20584,2210,4706,19059,13008,7521,12157],10287149233157932121076753176],[[1096,1618,6410,3146,5706,557,10942,13342,36,4033],10758382185085765545445145545],[[3348,7524,679,5818,2205,562,838,14467,4382,18236],10824473234809978106514342043],[[7866,3564,1816,20349,38841,9843,13671,1425,840,55310],10560150496347908440973538159],[[7886,1296,23730,24469,28184,21188,9857,1147,3050,2393],11025676208594258656415405473],[[7210,26782,15387,24426,14471,6425,512,607,11082,2703],10112221135353258956315990751],[[64,13089,15087,10937,433,71907,59100,18595,54298,25488],9633220065252524558365785377],[[10770,833,1782,6799,58478,72659,61467,24861,1305,1933],9298907743343940771140775743],[[10777,1094,559,10933,38260,58490,18144,38132,17789,146],9615264778032066879207802212],[[13274,22547,14400,31699,10779,54222,15454,18252,18390,27854],9056367004231296233400131220],[[30363,48155,14452,2525,38274,6420,40374,20312,59740,62227],10342326323304169355698681071],[[33256,51621,19536,5568,13387,18024,64108,60114,2217,3052],9827291635518827210375170224],[[6111,26122,2533,3117,1688,14913,20265,31724,16800,5280],9212663281500052683413680634],[[6125,21996,6791,4350,8725,2517,12894,15476,17902,30909],9590169987789172897170748338],[[18558,19513,991,38239,1416,10828,42891,13393,41339,32452],9530570850532487627643470125],[[28156,1412,5441,2513,554,13891,43270,13595,25309,29004],8842341641338200601999586649],[[31731,3305,24424,505,11013,64516,40052,11126,20576,793],9543642209817087502959038111],[[848,913,2539,14878,3567,2387,6993,18040,24983,10],10275335624162941947466838753],[[852,910,1415,2507,3570,5707,1143,14876,14448,2822],10287660118838940902121993806],[[3112,3075,19925,5061,2535,18038,13870,723,18145,6467],9356400426380898424991128642],[[3607,3063,5415,5053,7204,484,12811,1140,614,22623],9210745529377525723069983295],[[3608,7010,2828,1753,2,12958,8124,6644,7802,15261],8349404056220834317044064232],[[4353,2051,51992,5759,39610,43172,38225,21140,262,7635],9977394527066095958945640068],[[19959,24460,8965,1761,4193,41866,1610,50338,172,29749],9530463806936122466294623137],[[24435,5747,564,9853,14555,13144,1167,17818,41329,7473],9555771851919261993110878136],[[24471,8977,9847,4196,41888,40251,20629,13596,2304,6465],8564470900915108937235813067],[[42852,8750,2380,5729,19429,2204,64500,13404,50331,68833],9512192913570042088916781555],[[51926,2523,15384,19472,48534,48230,51654,1203,20261,11927],8227231009092449694564822702],[[4710,4546,1294,1164,21191,25540,606,13231,2106,6658],8374102284200762600954719714],[[4557,2541,13700,1602,3871,25558,510,605,1420,8655],8623618965103375163075329998],[[5059,14385,1639,4359,13092,1149,17964,7677,18181,17837],7360585363244201323746629622],[[503,13399,19633,1411,17835,25331,38823,20612,27284,29205],8697024189152217853494697633],[[10834,14546,10621,13105,25317,42836,15300,41624,25080,25490],7870619220874668817857091120],[[10838,43219,10628,40057,14446,41401,51716,17793,16154,15478],7774476732186318311527158117],[[11125,13082,395,38410,1664,13497,54225,48263,19068,10703],7715986035163305089969799972],[[59512,51685,10784,13306,24675,357,11209,25707,1417,33099],7482062121981354105531980351],[[59536,13103,10832,65577,19497,13323,61393,49899,48179,22701],7936631860469558682953840188],[[60043,13155,59307,10791,10943,40799,356,13582,55684,54509],8345200215648523268065330337],[[11006,17836,12803,40398,59115,388,58457,200,675,72314],8179004093407259242966405230],[[17829,482,13084,389,10872,10912,15309,13835,18088,13521],7048122514473641971238333671],[[40400,2211,58587,117,1238,20414,43246,59763,3300,62751],7629162270494162259093260890],[[58444,4344,58536,1240,19624,59523,82,792,54227,10422],7608298663292225518336362059],[[59276,17830,65584,14465,19451,61833,20611,2102,27265,24407],7385577016530230362089959485],[[1632,90,20417,24691,13672,20976,25019,6422,13615,13389],6433103115850801984214928112],[[6105,14376,20405,24673,40762,13516,3580,844,902,18626],6784591299248293926900474601],[[6119,51917,14516,50641,25537,18528,3582,20370,906,18487],6506146896290468002867345991],[[7013,19454,12980,48146,38259,69,42203,4342,33825,1988],6491296062082772741485201654],[[59274,71895,72673,61867,10984,717,18573,41613,72371,42493],6408337977588422528417740776],[[72657,59120,10603,39653,61465,13071,39996,15238,114,72009],6382739395472818320359805074],[[72675,71721,58427,59547,13699,11180,477,60190,11878,62147],6141275805352684787461509855],[[18138,19424,3,38262,55040,14673,31751,2827,1996,18624],6126490756727473784718438545],[[65540,19467,13282,19941,38782,39980,153,11792,59770,2898],6629936305450616559554643241],[[476,41864,19603,10923,37961,2824,51720,8117,23167,186],5817040210737649442314286636],[[13413,52001,14532,13184,38224,20174,24858,12172,43274,66104],5758621502238216262503595334],[[41886,19494,25555,50645,17821,12898,31434,24810,13246,13401],5933017374209965601743926599],[[38227,50711,61826,40037,13025,25158,54218,62246,38867,31938],5660356701205631315327510779],[[40766,48599,604,41437,13604,61399,56206,25468,60266,61915],5305115546038355303714047911],[[13384,39647,61485,59078,40249,43226,3039,2295,61097,61746],5279827735018997383496552626],[[13396,50707,11115,43254,51650,32369,21185,728,17790,615],5033728948430492154366223012],[[20402,10980,99,11220,1614,39865,6472,24073,53029,24353],4693524848757485061499799218],[[416,355,10647,18431,2690,39995,11223,609,67214,25170],4286869506369776257410974494],[[417,61483,10665,60010,11197,43774,20776,59096,13411,26991],4855175272805433544589188018],[[10612,354,60041,40225,20649,475,14176,2911,42843,18154],4834417033804393521244188102],[[10863,10677,59083,60184,17823,18717,40041,1366,40663,24386],4490660194221738667390962662],[[10871,38120,59150,41268,729,2209,18493,2074,11873,897],4519498990213048131840597409],[[10862,13188,41300,1207,17913,14140,2214,2825,1848,50724],4376896538565191912726557812],[[12792,10651,10826,41331,60143,18738,11674,62279,11189,13098],4423047571238229234143226501],[[58412,10830,41337,17972,61780,725,62505,613,17922,18658],4192046018704297831454902225],[[58442,58298,61579,17814,2213,23713,60140,17850,1037,64134],3876585642608817667135367331],[[59135,58317,11222,39872,17763,1932,24822,62235,61859,39786],4015187920641565680613671011],[[59136,61597,42083,62283,18590,1370,2920,3034,62162,73492],3704799296418198090821997898],[[122,390,1144,19923,20973,19293,31696,42120,39747,14702],3771686151148768349789829585],[[235,1153,12930,20943,17762,39984,2858,32936,25691,53789],3719562246875910990321229446],[[43166,15,14173,24976,608,27275,15142,27078,2324,26224],3650065176454365079940723120],[[51700,1606,38292,41913,20650,19255,50359,18224,59739,62762],3703938539733038625561554083],[[1600,41904,24484,20946,38889,7022,2686,31750,6395,25441],3496786403355895816966379193],[[1608,14143,42198,24985,31437,18486,26154,2560,19224,2624],3662497396320843152570200260],[[1690,48625,49861,25686,32350,1365,16267,68830,23628,50455],3561371323136434064650319940],[[1697,48560,55157,53800,1423,5452,1298,19547,46608,29915],3559571636771361492261602452],[[19957,55165,25034,55665,2857,33824,16795,1150,25626,14062],3539712632183950785926366671],[[38314,54722,24487,1410,25382,27274,593,1157,20337,32303],3489342207324234181139546331],[[49486,54753,50364,31492,2202,2856,8110,19431,51912,41325],3638196401747487510528727311],[[49528,55193,40008,21566,31756,4384,8118,38871,49859,22294],3565053903108844943530528321],[[54473,20149,18405,719,7664,2206,13464,59291,2325,52460],3424140233299665281539081494],[[54516,61753,40017,31523,24841,4362,639,55668,22321,40120],3492077539336977047721996673],[[610,19041,14650,23181,3350,1100,43211,12805,23631,16771],3353676787884053480972112217],[[2577,55201,727,21587,19,1939,33214,5727,49782,9666],3482851602314175034634483572],[[2583,13800,6474,26141,1891,33277,32927,20329,25236,31681],3354206898653901515070946998],[[19087,42058,17791,26174,30400,19566,9371,10691,25319,5160],3353435752572561686209319172],[[54480,43761,50043,7006,7746,995,27270,4235,60163,25655],3506357821689099226945774919],[[50016,23174,31442,2693,16279,8115,28741,7766,42102,41921],3328065178823629097239798369],[[53795,6444,56191,7470,23978,2579,52010,18730,39874,30852],3412382688104144412922079276],[[6449,56156,7019,23995,24873,3161,14588,7549,9360,5705],3490761707357194664412036739],[[15225,62317,30864,13,3341,19577,2565,1630,27826,5439],3395120080556957566004362761],[[31444,6988,25329,18606,1513,8553,1604,24859,40387,56820],3268842767166185772255559055],[[56858,26167,30934,4390,22674,5717,19473,56902,59079,11883],3394677997071210778599301128],[[56877,25376,7774,33834,4376,2855,47227,32155,31789,33372],3289004835015085989099080674],[[30867,32134,2823,3044,5914,843,27084,2544,27268,1369],3324222833683938188148060656],[[32156,11682,7000,23715,1856,26671,18399,13457,1161,14691],3277256824564983625483117791],[[26187,1505,27261,30369,7220,25391,11784,1756,31430,28598],3173360276758359050471500632],[[27774,3045,7028,33820,3152,14426,42117,18219,53002,60137],3087723651523792778305805141],[[27833,1418,8123,26775,33838,5739,3124,10227,10599,900],3077784422449256579177397739],[[5426,1894,3047,14870,19474,726,54706,3756,23325,11771],3074445516002094750906602513],[[5910,15165,847,19524,32016,705,10773,15311,66429,55072],3114980604735465944886844533],[[23736,2382,5773,31412,45647,1637,24361,2621,24836,18582],3042921402259846488509274783],[[26815,33811,1757,14476,33640,31415,28732,9408,7986,18135],3095109490657093764927274612],[[27279,1765,4221,14381,42845,3114,17897,38251,51776,59619],3020724535173358151742202117],[[27288,7194,30361,25371,7891,32460,6475,24114,55926,60133],3103625623182288643690972119],[[33829,3042,14392,14919,26650,10818,25131,59631,49871,26492],3034048675451975070828681544],[[8109,5785,19430,6476,31445,13300,27281,2593,14712,56815],3078618463776289815829099466],[[14457,30392,7864,10411,17786,638,24388,38127,29005,52767],3102709963507047290435268297],[[16766,612,8211,56218,39985,8107,23014,30739,53013,1474],2995607060560776906017921222],[[20736,14415,33630,6473,62502,11680,17982,68796,53038,8985],3022342866198553414175430638],[[23734,14595,12113,2821,703,40034,20148,24839,52971,42158],3002568034422676703011971244],[[27104,50333,35120,13284,1612,2695,2924,47769,8059,35202],2971363516225124341135104521],[[32954,25357,6477,62268,595,24396,20175,54595,22972,18465],2998257266952886724261252211],[[2585,32560,31443,62479,20380,18243,14371,23444,18011,45915],2963018173644672503512053575],[[21145,35131,31424,13308,2060,50346,26177,2208,4398,42106],2924442497961510603538451316],[[40000,36662,45640,17792,13871,46602,20345,13406,17145,39934],2929701181065210056408847663],[[42884,6427,60543,29760,11208,32365,42197,1424,31854,18090],2956088061776421960817671019],[[12114,8219,18691,32028,2625,27110,33831,15224,35762,1449],3019387756557524014407297738],[[29264,32537,32440,43179,368,13892,10835,26179,21166,30803],2955466237549022776145444882],[[36655,31427,6460,60122,1764,2064,5413,1938,42103,10334],2968093654939018075832657827],[[8572,56883,20577,18249,7475,15239,25469,829,35751,53614],2925659597854642680867371136],[[17787,47234,13440,10814,25697,563,33818,55003,14354,24762],2965800640405390427909539075],[[18714,13434,40001,27767,2545,22985,2015,22975,25623,32131],2885898687673793540206431899],[[32421,20628,369,3754,48277,41343,8126,13357,10875,28785],2947008724581786001668042820],[[60553,50357,41296,1154,20774,15452,3055,32138,811,6454],2913822934446168126891180102],[[61112,15390,11182,58566,565,55579,63342,13391,66090,67651],2835499249928438107628182864],[[51606,10780,2922,16761,19114,25004,611,7024,28983,34328],2843174159694650392377626749],[[51694,6660,25696,43242,24068,46609,66107,4393,32248,30159],2823986594408887960551687902],[[11195,13276,11672,62229,24075,2595,23880,54626,46439,21243],2844904981913186648523704115],[[13583,39979,19262,20605,12824,62521,30717,55315,47693,39942],2824003278755543684376422822],[[41270,16184,20656,38139,14713,13320,53806,54631,26168,56377],2823415181207347467516174211],[[2620,25702,38893,13338,23188,1502,20430,27002,23442,30955],2775120272557431147127158311],[[6642,32945,48193,13593,58617,14690,4030,32256,62152,55827],2786834566061448006421680650],[[51642,62244,60686,28982,55058,912,63359,23503,18089,3559],2723523126006215233973289560],[[51728,7466,20353,56865,13420,2910,7660,31784,56393,47308],2765592420306390905375629633],[[55674,62238,30862,60709,915,20338,41794,30817,55091,23184],2675515716172220209751696383],[[55675,30869,11885,32354,25174,3742,6289,66124,43644,20047],2702740033008999543057209045],[[55681,60193,13296,55566,61564,40786,40407,40727,31373,18205],2690110164653361186260681386],[[62510,20428,25047,13229,59643,52764,40385,32283,60791,72895],2693796161636219705592196289],[[18725,20433,18139,994,39906,50723,72902,31927,32295,40662],2688003312068710733812087684],[[42473,25333,61787,828,998,33858,18490,39746,24758,31493],2685788541258241493047613991],[[42495,42212,3312,49793,40043,17865,23896,7336,30176,10592],2658897266405554609469950390],[[43760,15299,11090,39751,13355,50660,23899,60771,49800,67235],2651900717590136701067194475],[[43775,52994,49901,11081,39744,77,31097,24856,30476,26136],2693049358629535419481366475],[[18225,17959,13415,14047,49802,59293,32308,35335,41180,73472],2592245057987092321391425340],[[61607,2918,20420,50350,4378,69468,65923,47866,2005,39767],2606840537975911090097585228],[[39863,20408,50376,38216,7756,18625,11897,51793,25460,54267],2591667665016023252369417676],[[1510,43384,23164,53538,18587,46452,11445,6451,20739,25498],2590670786044185324132435077],[[42112,2594,30872,2767,69488,1454,9400,23101,22578,55605],2571542306982888796402856000],[[43365,14038,53519,18598,24099,7004,68801,61918,54767,13224],2609530051349678236393202368],[[52212,23141,47777,31752,1419,50655,60701,10055,50454,49432],2581276195770630637095080988],[[10839,62703,30882,12892,31723,66123,72347,14920,55594,54299],2593703330040603975255156280],[[60247,62713,10602,2706,24855,14871,18586,59822,49744,61625],2552294788976438680148056637],[[2592,57490,20425,25984,66406,40826,32508,55906,23364,56172],2590973478128181408616371556],[[22966,57487,25988,2765,26170,10265,39908,7341,17931,6990],2596770861353609408292118998],[[40047,20354,41807,23994,24840,18091,54900,42475,1413,69476],2590973505383721394541474649],[[13336,33847,23979,26164,61947,47734,18069,55905,22231,32074],2568005763041000376493414822],[[13403,10611,67237,59623,18661,54903,41378,2999,26989,19800],2521307753313019513694440279],[[23889,62,61515,59288,54905,18142,14102,13617,61629,51347],2529107960475775224537257534],[[39913,253,25249,61942,17879,18193,40386,58899,62752,24550],2548731526891309082404711458],[[52774,30911,4388,7643,24759,65935,40410,18141,47319,20001],2594003260750865667226733884],[[12924,30932,54598,42116,40408,18068,17941,16218,55589,49709],2554251836708457043474826517],[[58410,61534,17880,11442,18148,42170,62410,39795,11767,24115],2536042072718252660510668852],[[58440,61539,39764,18071,14045,11912,18196,62814,18407,41166],2564422799599411273311961704],[[6306,55279,25650,23882,32384,51144,30146,40679,4347,24488],2561661775362705368536988252],[[55282,24786,65920,26166,14040,61500,47501,50657,54648,24948],2570691999109629284014769572],[[66407,49784,61518,31094,1470,47309,47312,25654,742,817],2570692013522344117216975282],[[66428,24791,65936,32503,13501,11857,47444,55073,14841,11790],2570692002370477632140202674],[[69471,40825,67215,26181,59319,32245,46264,56552,30088,43376],2561661747775965404682809108],[[69487,40791,72901,35311,31823,42898,23445,24032,24576,12052],2570692000425024557085885884],[[49789,72344,8204,23885,26175,55929,47507,17930,47694,62761],2580059885499680425277928805],[[49805,72889,35315,59639,23026,23443,17881,35329,40714,41275],2560917905860736459943436291],[[67236,18113,30876,59816,62706,35563,51089,54901,33741,70773],2570321412806816991075770587],[[72366,17862,32387,47773,35924,18151,31440,47340,14122,18336],2589761730132542046478954954],[[72886,18114,59321,32281,11880,25651,2259,45913,46877,25350],2560545906502114980861915243],[[39765,8502,45899,61892,8076,46239,51065,59290,2000,25405],2560917913697915046522265011],[[40382,8199,17853,30855,51183,1473,47310,42014,14659,27220],2570691998495344082142528981],[[59318,7040,39911,28747,29862,824,30479,53036,2497,7880],2561661739814148058888056680],[[59620,7049,31818,13520,35550,28791,31429,47688,23992,12947],2562405376190704041449816799],[[59634,8512,30879,8067,46222,30186,39838,40383,32203,33680],2579690642672473784984538482],[[9377,59821,7090,8083,14717,30058,47347,42169,22249,7761],2589393875603972942732785608],[[9383,31851,7099,56376,821,23922,56566,18070,1983,18963],2551106374431865421850666089],[[10273,52771,47735,29881,52072,42157,15126,61134,29295,37973],2514130592291437568691886359],[[45897,10867,28753,8060,25196,40734,302,18437,35317,13993],2504135755012922350981845118],[[7067,47772,5239,14904,32304,36374,17940,46263,8070,2851],2521266330854085426690312480],[[21774,55907,5240,32250,23021,56816,30077,2252,2320,52707],2580059881418564156179431603],[[21800,8048,14942,32257,56823,18506,40709,8171,10054,42396],2551106360171919077170947019],[[22970,56737,8044,23500,35205,24911,40133,31939,10062,26798],2524840575590290201130782436],[[29597,9659,28809,46603,6450,24763,42023,8174,30952,23933],2560545904925710135782623690],[[29609,9401,32259,8084,52027,10331,1400,30975,4837,1041],2560917905199496409745937503],[[54906,56742,35910,62163,49874,39829,46588,60793,67489,41795],2522953405874737125742803443],[[61482,42507,47506,25060,59317,51145,36709,52350,25442,14060],2502994263012051244753920116],[[62708,18218,28773,46592,6468,47517,30806,9409,72343,39763],2560917900251943314180561208],[[62724,32293,42975,40789,30933,54907,36251,11929,56800,13657],2540882062432041727724797895],[[62726,42986,31428,40823,49841,30912,61049,11921,12080,22588],2540882064782143016157186804],[[8170,22996,51985,6452,15264,9667,53468,17344,43345,47692],2531745484490965695708413616],[[8175,21210,53021,5878,6469,4431,26065,36620,21579,32265],2541631764339959509155185979],[[21262,60707,5883,47516,4439,17878,31926,41293,29199,65906],2531745477941263458349850581],[[23003,46574,60783,6453,23932,59238,52781,24380,8075,39885],2531745492349656998357940188],[[28977,60676,6466,22571,23635,23977,901,10593,26899,7860],2532121719200627667792900254],[[28992,60757,23624,31438,47457,24906,25061,35867,12308,26652],2541631764297666738303398405],[[42504,8989,23318,21611,18010,18627,61611,42803,2903,70479],2521820443775960125982301370],[[62149,23659,47311,25081,59251,26066,35914,11266,41344,44564],2521820440841139769735611065],[[23670,29829,29908,31431,52936,59592,26747,17383,50029,40121],2541631760751662275368019546],[[29828,31441,54111,49938,26246,59601,40132,7349,73711,33859],2502994249386817471470780458],[[29830,31439,33377,54100,49842,23931,40411,55813,24811,28737],2541256949317755182132932853],[[29831,30177,53662,62391,30818,13500,7676,7911,24342,29442],2531369206447940752126000762],[[29920,36375,53914,25153,59726,29202,18569,18183,32253,60169],2512235409633833751093792713],[[29927,47488,53921,15280,1397,18531,25489,2502,51090,20711],2493336849706298237516320540],[[30187,53922,49953,26251,39840,14070,14119,64730,65907,35863],2484025380279720724043112349],[[53923,54107,25197,18597,26165,7800,14716,2464,36241,29377],2511856189012439315310781585],[[53924,54104,31719,20164,9447,17710,33344,43350,40678,18452],2492572624315253075094028155],[[53925,20138,40409,51096,14059,10063,36236,937,52200,2862],2474293946992822123890834074],[[54117,50472,50726,18507,5278,46257,27873,45062,42063,21606],2492190414503742198652213468],[[54128,40713,21625,59749,31855,61784,36716,55721,56187,23109],2492190412524593081557019002],[[54736,24573,24857,32201,54301,56490,43660,33427,70081,63183],2463364217450951489580529604],[[23919,32220,52723,21778,32145,743,33306,22248,17938,32272],2444477527207244935670154755],[[24562,24837,32227,55830,56706,7553,26081,10112,21739,53681],2482107227869764276285266381],[[26178,51182,47865,21617,61761,41345,24369,16236,33692,26672],2482107223038458906717837844],[[31850,39830,52710,14112,8318,31392,1414,33368,29258,550],2471344103516028605737305657],[[39933,21796,21639,5238,7777,13599,17970,36619,47197,18182],2491808151227962370908838173],[[51069,56392,62820,9658,17978,24860,43628,52711,55812,7667],2462977494440483596059992785],[[52791,1469,23042,29880,53015,60769,55720,7686,48612,22487],2431664681630027497986713858],[[22238,7066,8317,29863,2070,30018,11944,12305,12030,15085],2461271271937352351122174913],[[61858,61587,9452,28825,32040,303,39794,26938,20,70512],2472368211674534822531520740],[[61893,13238,62750,7914,28832,24035,29375,33732,36718,23564],2501471466690813040779531580],[[7075,14099,23504,23560,56789,35464,5477,43889,7910,33653],2472368210340862451037027735],[[23035,29259,32151,11078,42505,62358,2071,33428,26225,43348],2472753480714378357643438770],[[47691,5241,32474,28786,26499,36363,56056,10057,48682,10145],2411739999310777887602277430],[[55928,23499,23567,28976,7702,11909,5541,42022,2463,73657],2482107208504677457910173242],[[56713,62759,32133,11068,11204,3565,5330,16215,47689,36163],2462977491629184868960103475],[[7536,35547,11868,1958,28772,35500,4207,25491,23102,42235],2472368207869239146273250740],[[32476,7983,23025,60760,677,5324,55560,24572,28734,68906],2453162544122551617348279788],[[33689,11862,1961,46242,934,33282,4219,8624,46092,2906],2462590701869555068973921100],[[35566,28993,7703,11900,59760,17721,12299,69899,43175,25328],2472368222269217848973008661],[[35920,47130,12068,41334,31755,19247,66912,25375,18197,43190],2453162551221100488818995999],[[42506,18459,23110,26741,26494,34339,20723,40728,31771,57479],2443698015730121071778746076],[[47139,23022,6408,23278,16233,26908,27571,18185,14116,7650],2401319021175808093294565579],[[56496,14703,29249,53502,36007,4835,39390,26904,60119,54],2462590691598236940610572364],[[61022,28808,29198,62345,15154,61131,69884,39954,52722,11441],2462590691739704572804195030],[[28792,30972,46578,60780,1991,34372,35866,11966,66930,25379],2462590701507246792550245502],[[29398,46219,59730,60180,6455,30025,5321,25445,62315,33677],2462590704204610202217586431],[[32046,60695,2137,22651,4919,29448,39943,12142,24481,8981],2414687448754578926290046843],[[46858,60682,2136,23391,5327,21698,15523,2864,36246,24027],2442918271377859579721053513],[[2203,34437,35868,7240,8370,15090,8072,32941,6657,4364],2384924672494294082007701534],[[2212,30095,35869,10582,2429,25448,18163,22255,7897,8521],2384924671707817242376124206],[[4356,36614,3332,7224,27908,47192,42070,9381,15976,14797],2404279238397543950199776897],[[7016,17388,35966,10118,58853,7314,55562,35309,39826,56573],2403882988038294735484943732],[[17351,36625,3325,47191,66405,25404,23921,12084,26231,1750],2375189544795806825073105658],[[23281,26497,4663,9208,56059,25345,59600,33665,2276,56783],2423086115673195313832118878],[[34361,36340,4658,8377,26372,28554,7552,18271,31684,17843],2337556599095955420440414027],[[34457,4903,8899,10117,43222,18434,7982,33729,18476,13686],2404279235138745684135791492],[[36711,5464,8647,26374,45035,60858,29453,27221,43347,2355],2363493975684785550606570842],[[4625,8463,10585,26377,49939,2899,820,42178,36136,46782],2384924659248504220539780190],[[4634,8456,10123,29447,42015,42101,26067,18301,43364,25206],2371388463808122585634513152],[[8632,9233,22647,5528,39404,15058,7537,19404,51479,7868],2403882981721792193586849041],[[8886,10329,10584,15645,49952,14077,23920,25208,7786,9015],2384924659835702575188566027],[[10194,10583,15658,7330,51614,31506,43973,4427,18716,13397],2339800140848976376133409907],[[10312,10598,2418,26057,54292,55578,70649,48701,6183,8244],2384924654482671596735905253],[[14855,47186,12302,20710,25353,62301,42059,66554,1716,1843],2384924658213058117730338072],[[18993,26379,60805,43681,24551,32311,11786,46863,27218,72880],2423086112398745556110615660],[[19285,61140,11293,68829,7308,10061,60551,56247,62372,9152],2404279215338124824596722843],[[27927,11278,51687,25304,14668,5282,61673,2094,66740,33863],2384924660297326178099627149],[[46126,61137,68835,39935,825,56215,72079,24398,20722,53742],2381303497156229267701714268],[[27531,56054,66410,49806,40733,21630,7597,33097,15527,39026],2394621492301813417080266151],[[42789,48090,56061,22253,39787,30819,15047,73070,71991,41906],2336630420061078475024626023],[[43881,25409,7311,14105,23930,21569,40917,73644,68916,15571],2382667212274172952052867994],[[48053,49356,15528,30804,22539,43621,23568,155,23165,1401],2403882977319654035479412399],[[49332,55719,25465,21557,56818,13628,44582,30943,52650,61133],2384924650020088387692259877],[[52293,55718,25410,2866,59593,22558,56826,23114,19723,32270],2385324043181177725289733359],[[53617,26033,2863,42082,47690,36248,61019,2998,55829,2246],2403882978327347515072914008],[[50473,25301,50012,18207,8069,5279,35129,42377,59787,48317],2404279210455396186663151939],[[25402,30816,22608,14055,56809,60219,2321,73473,66557,73196],2403882972595371485291284100],[[25423,31519,2869,47695,32457,68165,3001,16799,33614,70793],2394621488063664327426322433],[[43641,51064,59250,15093,72350,47133,6783,32091,73434,38529],2413503634592742970073134549],[[52736,55606,59239,33433,8200,29150,73399,70086,10657,5749],2384924648855072118938653675],[[53589,18192,14672,22239,5281,162,30967,49422,26806,1456],2402927757330587875909501480],[[53649,55592,62318,33604,47733,26743,68402,19942,66182,62185],2356403326058878780155124212],[[55797,7354,14095,54300,29203,2290,60545,20737,59755,28271],2403882968854988769548686623],[[18165,26064,56190,62157,67481,26642,2301,41353,798,60323],2385324046358980632858413676],[[18429,32235,14074,21620,5276,23571,62407,24432,2626,7002],2394223653345632837611396539],[[24563,30805,14651,41381,31098,63180,60176,71973,68905,52559],2394621483329154926790909826],[[31522,816,26937,56157,23559,18534,52737,53804,4029,16397],2365814422165904711415558091],[[32262,39932,33438,62169,73184,8201,29217,23901,2088,24478],2412157362408381310073958306],[[32302,21584,56825,73199,7881,55335,62362,41289,47860,69543],2384924645729270950002929391],[[32306,40708,22604,60234,47738,26664,1979,61618,41611,18160],2384924645736387139007086389],[[50017,21636,55831,75,11202,28748,45645,13077,39844,9159],2370018244696113369798694887],[[50042,62166,7896,11261,33625,59362,24485,65141,33538,58464],2375188246051507042882737577],[[51070,62285,7915,59626,49923,20775,4,2046,5163,18529],2401477385045988001170565088],[[51095,7571,35122,28751,47136,12064,27112,32472,23171,25416],2375188239094113962134269800],[[53601,62749,32455,7987,30858,54650,64972,31552,39824,23794],2371388447227814364685957394],[[53641,62146,67494,31093,13600,55334,68233,2297,2919,39841],2384525193470216937560050050],[[62760,67239,179,53470,62722,23895,70775,56050,57101,26270],2321510677523234378641208776],[[7566,1090,29396,18394,6780,2267,2302,28692,43122,3136],2365814404827150082769423749],[[8214,36233,11185,18396,66112,31757,2090,41616,33862,8504],2351763221430827396243614353],[[8215,9,59815,6781,20777,26031,25192,18235,59970,15409],2314774675935873219822857186],[[9362,1097,7592,12145,32111,15991,7805,10623,33453,29189],2243555624620703811393817555],[[9367,13648,1122,32021,70678,56675,61960,7888,5283,70896],2384924643059185304405151183],[[9378,29280,1121,29397,60121,2101,26662,10056,45382,9736],2365411735512354187601055920],[[51,11191,29248,30960,1972,22229,17945,23032,32052,4727],2365411725946428894152979644],[[7516,11200,46855,4424,22014,25085,36243,59721,60160,806],2364038050800040346140305318],[[7547,53506,23105,2105,29262,20034,23154,33813,17182,16882],2222729793249953036847209312],[[7893,56211,29312,54651,70557,31685,65924,22537,52209,38232],2402531289791097652193298306],[[11446,29374,29327,66093,17153,552,3797,34681,14359,18167],2374122184549126991130963829],[[41335,57403,33652,68156,32161,39880,66563,48605,64509,64173],2375188220180798560911557620],[[41350,57406,26745,30851,56530,62344,23572,25356,5846,13407],2307396798514386220842926243],[[53472,62278,13637,50793,33096,56692,38428,2900,18168,15477],2317121906067831715315719820],[[53500,62729,13616,49916,18572,19416,69896,18519,64777,1883],2342295653538519153921084972],[[61052,32025,60171,40932,42230,70691,33238,32252,59582,64479],2333319088518005555665382135],[[62270,45901,50812,55333,66115,6782,28161,49548,12146,20016],2392866506847438820777771825],[[63195,33624,54649,18285,56803,52706,64505,48732,33922,38379],2374787133457316741113874692],[[33744,68283,70760,70792,24933,39955,49882,8245,19976,39152],2355999043076380028905665744],[[45642,69461,70530,43965,62015,43797,54293,1422,6308,26380],2355999027551694631405819211],[[45895,55332,69458,52486,19699,49877,32175,62368,6287,49594],2355999013414682606187306016],[[46872,69479,70574,44584,64641,70091,52204,57489,25992,22110],2332381293031215273546493897],[[46874,64709,64979,70636,31594,21986,64521,25078,61585,25699],2373820226437167064816381969],[[68306,70543,3000,16765,24443,15578,51508,38387,31682,66751],2314363101067038478365282880],[[70697,44566,61657,64660,73384,25200,72486,44501,47863,73733],2365411715659550829626629682],[[70730,26230,7689,53743,24491,25204,30905,27969,15742,33770],2245733933880989820086729904],[[24020,52461,27219,56569,26335,58499,67486,62527,25369,62176],2346142558249077852171707182],[[52487,16805,62068,15054,26059,54794,51623,60255,23106,35277],2354215253358608113903157511],[[19722,33098,59349,72894,51792,70096,7651,11263,17949,53530],2365008965841759613956669221],[[56301,61961,10956,24577,12116,66978,1104,30907,17935,25821],2344351300479159743824026551],[[40489,61549,1,24872,2216,61799,73243,18157,59441,60631],2229987491571833833073335723],[[59780,61548,340,2049,13037,60267,62809,40503,1595,67],2276377690062794092325391542],[[61550,72070,73659,24359,69887,42179,43131,2921,72482,72688],2269817974725928529171805655],[[61551,65925,73458,341,41379,13099,55725,1940,18715,40787],2260324328160596424599917418],[[61962,64478,72881,10962,54790,3790,10661,63355,35670,10595],2344757585284067164015885275],[[61963,64485,73471,14079,51777,68426,2925,13240,11187,70887],2345736493291944396278795355],[[71990,73397,24493,68919,2207,58419,26999,451,73742,30434],2326304350278765885522237583],[[73609,73670,26776,12111,69744,43385,1099,57488,59757,38915],2344351293856234500182575991],[[73632,73698,25517,66990,39237,67349,49553,14527,13717,2761],2326304376507490020098847293],[[2052,33247,26356,18603,15524,58487,51951,25417,25494,16164],2304303818332018758441150482],[[22606,24409,43802,26157,13051,49832,67638,17993,9173,56830],2323509967150467442636822054],[[28189,2110,22930,33658,55079,1421,8316,18007,12141,55667],2324497841399212487365179299],[[2113,22945,54266,20773,66564,17589,19934,18574,11044,8752],2315910268510406519107998724],[[53756,2055,55795,24823,18015,29281,59962,28269,14816,17852],2282163506718259986574765455],[[15585,16899,54785,43373,6672,31762,55673,799,20815,49837],2265054440194388412594933082],[[55728,16904,26184,66999,4380,23113,18250,35740,36713,6107],2279051505976910267014967317],[[55747,27080,29207,38435,7529,17586,18504,60162,11045,22944],2303547551566621366133699847],[[56029,20814,31697,55087,61815,58449,52049,10630,28587,10889],2262606427361699916038202274],[[26658,65162,66987,7026,60221,29294,30901,41952,73745,8047],2296640530085352005759771544],[[32950,54801,66918,25074,38448,72485,73187,32198,26579,22931],2293880999024332498181001281],[[55095,66924,68217,25069,38441,8319,60246,19655,55682,4968],2306295531806065856306953231],[[66710,13044,49833,7543,17954,38516,60258,66462,31720,59785],2214721570968245500120687691],[[69717,38241,42151,2623,61807,32232,60063,30716,36616,1070],2286944802284160273669849631],[[38276,52213,41380,61803,71897,57412,23972,57108,42150,25003],2269616951993540981181721813],[[39256,42146,60232,67313,72171,13649,23563,12899,53539,32523],2315910243932375799265901036],[[43105,61634,64525,8248,60128,17233,53518,48386,35712,38528],2296640520287019103147811921],[[43207,48540,64791,67303,73249,32480,52628,2266,27086,56480],2263027361611294230632868486],[[48756,64776,67304,73252,59754,14364,26538,49210,55621,33710],2264166378681049975461127161],[[51678,67371,30945,33661,1209,33552,48564,25250,26491,35022],2286944801911503937786290025],[[4386,67646,5277,11264,33932,13222,450,55615,59363,31149],2296640519734622161692548626],[[67310,67659,71909,41626,58777,17928,39633,25983,25046,43391],2195304627068579659663374356],[[72193,72472,18003,41924,63192,13636,26994,2699,19225,30670],2239421875975053447484652906],[[72475,73258,39823,1119,14493,63066,69724,58684,1881,62177],2242088743716041077561022426],[[73097,13020,33617,34650,19780,38269,24921,14958,44503,67412],2261823277611126917495469271],[[7567,9321,38267,58757,7796,12996,56879,11134,66183,9725],2296640533962707963536433518],[[7570,7787,11065,11198,18522,33846,60354,21989,25689,16628],2293880995415715983702605361],[[9308,9446,41621,59990,23140,7810,32210,32349,40933,26996],2306295504234154633790912393],[[9453,35325,7596,56502,12974,53504,64708,61139,5161,33250],2274424626648273428862044276],[[9724,35337,36238,7593,11075,28706,29313,60317,55676,29066],2306295524547741149593440242],[[9737,10060,32181,1124,23046,11364,38306,5847,4550,6656],2277626058993085189827451368],[[13656,1205,1388,19507,26550,39618,2257,25694,62528,18191],2296640535957502423452388410],[[17999,11518,14366,1389,13629,14502,48547,11145,8045,2011],2288780676511638685882667518],[[41279,59718,61793,14543,32034,43770,73754,32516,18211,64767],2254330950613313732736520405],[[1717,28833,11372,29376,32189,41802,60130,18739,26381,5162],2306295503160325523070332624],[[11532,28824,29395,32195,39846,46791,58992,48629,58759,2390],2287361306593499667956705152],[[29040,56484,19464,23151,33843,21668,39027,35872,66105,66560],2228052386009632351488749719],[[29067,57397,19646,45401,42761,8038,70696,8833,5842,57383],2191334862357568249365317187],[[44506,56697,17238,18509,30941,62992,12989,65160,73251,51724],2262606382790024655311430277],[[50128,56719,63346,59723,25457,73493,56053,19075,32504,28887],2196587339013590533388368764],[[50133,57498,19801,23996,27004,14985,48387,72191,1985,59728],2244750660890383936407815339],[[61615,1396,33616,38234,42922,26611,36712,14356,62675,67219],2201572726144105083550936922],[[61767,12931,17989,33660,41351,26262,57036,64731,20431,25622],2249950788544752773160982793],[[7811,14361,19968,46860,52778,38328,3143,24593,23975,13511],2243303445647541405062687337],[[23971,26656,46758,53474,56529,12008,32261,64900,23795,40070],2236535840609893888746943843],[[23999,26660,47869,48590,26269,62237,55608,69542,5556,4263],2264633793562634456499028360],[[29326,32206,15229,18244,38348,42748,39255,33936,4225,8399],2223404562296593317228894664],[[41352,41799,52795,62408,38367,57013,25456,22677,44171,6046],2220554007845430682721713581],[[41806,45917,59012,63340,4446,25398,21708,2515,17590,38517],2277207760968176039823918132],[[45909,46869,63361,24904,62504,41485,21493,64661,28469,59305],2252764158430775033038663890],[[47870,32370,21220,58434,49171,50792,70909,39664,10597,44504],2247743637398005690227183104],[[48655,62808,63016,25704,41510,40488,65984,32310,42233,15405],2191021682182933321788538649],[[53527,62824,12915,33149,66177,25432,62195,67648,15164,54904],2213388019562411514500146337],[[62827,43765,4453,12967,25233,25418,59575,32313,20160,32475],2208016062818277614953619846],[[6185,53791,56856,2868,63058,66176,35043,8427,17284,26542],2257607719278630973777039681],[[13078,21167,62243,41959,70898,9014,24932,5867,32507,8321],2187796243076692134475543957],[[15234,18241,60024,4038,67935,8832,1071,33532,619,32478],2200016421904028654879021231],[[22017,42954,62230,12007,24096,70478,70886,31550,5793,9001],2212957603567607581504015732],[[62236,25387,14010,55597,2710,50813,7047,62369,8049,19781],2227884407596860793737884200],[[25308,46156,18164,2771,41988,55625,17279,13372,22731,70642],2181341677692831036430960369],[[25437,2897,60843,70513,70556,60459,42376,34651,56042,32147],2181341664576715944072668020],[[28625,46174,40916,68093,39238,25495,31760,8043,32242,4231],2218317551691365435805910634],[[33156,60882,49568,70575,68403,18774,32312,55714,54545,65538],2160382397690816428023557155],[[39174,21519,49581,68069,65143,8727,5855,11475,19263,8085],2227884372059126230664152509],[[52265,30740,68282,70897,7033,10113,56245,72173,8036,6673],2218317549271885445231288218],[[52305,55576,68307,69537,66720,35766,10122,55925,10419,66433],2160823292596199695939154892],[[55602,69536,70731,66988,65991,54890,55715,16900,63240,18660],2180159371226870295981083783],[[41989,70774,64166,25394,65985,31142,35873,8969,73090,7771],2218317530613950636281848061],[[49595,70908,55622,38200,1463,12306,801,2385,55075,55278],2180159352548733959826813087],[[64917,70899,55632,64127,43375,35185,5761,18765,27789,50028],2186295053065030495742771437],[[55612,66730,64425,64640,72938,24864,30444,12300,33269,56790],2184679462500291592466506956],[[55626,66989,58685,59566,36714,8420,10116,49745,29452,20319],2215030395242747460125710864],[[55635,68425,39669,73743,1885,44727,19698,62173,15469,830],2105678052065582744675637451],[[67968,25451,43374,72029,35195,36622,47188,30516,7645,56567],2193217682690828342773003826],[[69737,70088,59348,59583,26500,18775,41619,1299,26296,32166],2167827239121919400403151205],[[70089,25399,37950,38201,73398,18764,2277,23778,40183,2362],2143339127121142784689952537],[[25433,37981,65990,73435,31782,1597,45788,56844,62196,2923],2218317529001693744051504611],[[43114,48476,8792,26445,4561,5840,26143,49708,62538,31717],2194392932536546298480529827],[[48443,48755,26086,30422,25780,45515,18337,27106,26343,36654],2180159353844718182292076271],[[48733,52208,71972,73744,23804,25484,5558,11374,20901,61631],2177615886693250938217291765],[[51501,52205,72944,8793,5845,61132,11778,15974,20772,20919],2193217689347331917259858254],[[39688,72939,73671,18677,61138,20892,73250,15592,61838,67504],2155811318243206027573346070],[[39689,64412,24812,25485,12307,1849,73077,55229,24492,142],2098842293476343654398328710],[[72945,73633,1839,42397,43845,56063,48308,54770,1978,12082],2147124351110244586820934888],[[73608,73732,24627,24949,1805,18186,57499,1304,61747,42071],2150958196752546614947314774],[[73658,73755,59840,44720,20887,814,63357,17950,55671,13242],2099907095761736501587816405],[[26145,26420,4586,44726,17278,13921,916,30939,24689,9473],2091972316468123486369102904],[[26490,30412,31801,8763,26370,45495,45811,20893,56855,55093],2202893508300830912066516668],[[26501,35038,35249,8514,30468,31816,62069,11516,58991,42735],2215030397050915197570656683],[[35017,35862,26371,59875,49323,29449,60257,803,40020,5905],2189892868807321922248865642],[[36617,10119,18670,47195,23776,49347,4429,2832,54787,5861],2152041383584999708119930625],[[36623,10594,26080,47189,18575,55394,591,23152,21703,25598],2181341635160979655657387199],[[36715,8738,3430,7083,29443,9309,57091,4713,43301,68504],2132115908736885768176085846],[[4374,4724,10596,3431,18530,27730,32274,33836,29041,14213],2202893512127023464530451079],[[4589,4956,18300,16194,32237,33918,4201,20655,17832,13085],2126590594091779681819779758],[[5320,10263,5902,32323,28499,4422,12006,15270,11210,31663],2094384914309254257687953968],[[5325,10139,5897,11460,15993,28693,28586,3472,19415,1092],2107608462216468905527262868],[[5326,10169,32322,43861,1797,7097,8082,28626,32442,22902],2129808306305689934593822549],[[5331,10281,44721,11626,20886,399,14823,3463,24790,20621],2121497780791338386659555841],[[10578,31596,30515,56052,17585,32271,819,26808,32114,14159],2155811324177322571192192642],[[10579,12301,796,8058,58775,42,49883,2838,24686,18025],2127422780201727516876604286],[[10588,16396,5781,36145,25059,42159,26212,15444,20952,24813],2025930726667954725249093605],[[10589,29446,30512,36154,8077,32932,25064,42168,7517,8349],2054902601935339424399192951],[[23811,52564,19385,54387,56062,17285,26348,69193,62363,45823],2094384910265842524963510615],[[30458,31835,55449,27971,62014,37942,53529,42774,47226,60373],2155811321872601519782886547],[[47194,23783,11609,56854,590,18212,32289,40011,54777,7674],2164463424057532538706194999],[[60489,52558,54862,55724,56572,67363,54525,40463,14468,2103],2091613192003853114699019734],[[52565,23792,62539,34680,59982,13802,2388,18520,40064,55192],2109391798131397870226835812],[[19383,54429,62409,2509,23153,41803,42609,69164,44447,66657],2118681010917579372290317395],[[55885,1857,62186,67357,27272,38834,56813,32641,65821,56498],2152041381082062537385981376],[[11779,23820,56303,32277,38793,1931,7130,40567,72392,66748],2107282079109822798490210995],[[23823,62189,71730,3036,14369,17234,57258,50591,62350,25752],2085442082803256389326430823],[[30519,56528,71755,3053,38908,62170,1368,46176,14226,50107],2145923220023057089674921416],[[56845,62182,13378,41170,13837,18158,52894,41341,23809,13201],2121631282067918221945223005],[[62529,62175,64790,32244,41618,33241,25343,50688,55423,62242],2095373598703618260542929182],[[67649,8131,18176,32285,2627,5700,26778,25559,52598,20109],2100128063499549776340193842],[[8061,8102,18173,11362,19121,32238,42177,25070,17951,31785],2138731649775214306587531260],[[8249,18189,41176,57118,3791,21673,24703,23843,16935,65921],2027998348755847918691387378],[[9320,18175,17237,57478,7196,14790,42171,1837,70541,6802],2048366131243861050261044944],[[18198,11534,32297,48254,1758,15207,7122,25027,5907,18276],2092323902771268304992561279],[[18201,58305,33842,62998,398,46154,24198,10884,67306,59117],2086755771726456148722570579],[[20290,8066,18178,53528,60348,480,32959,20606,42163,32441],2133706942992949867361063646],[[20323,13914,18171,28705,16903,55161,42160,5900,40827,29250],2071842042508542645449196335],[[27277,18203,41798,896,7188,12009,16556,12168,15249,43558],2050649819422354955767526006],[[58324,18214,33558,63010,1993,24000,43791,50721,25554,15247],2102578734545522492542280715],[[60256,26546,32300,46767,1292,4255,54627,10776,20422,66373],2006113728266569922430152749],[[19055,45383,3861,7207,13412,42254,62862,32179,45911,25571],2059916082294132812749304616],[[19101,45400,48170,56829,7751,20503,68739,25071,28877,25282],2027780995647889797859727901],[[26997,50132,56810,33221,2622,53757,4412,56024,51619,72363],2065947472435540754437770967],[[50129,59013,32169,1367,25178,15458,55283,66471,24690,22334],2020258748022680556994128417],[[62154,478,2017,7218,5722,63244,25513,61490,12161,62412],2077696205964741089706749138],[[62155,63344,2379,15143,50344,25187,62390,61519,18588,55614],2046649636958532924331346038],[[919,18482,15208,2590,20426,15472,42187,26180,61563,50613],1938546730026426502017178767],[[1295,6121,18495,22698,60842,51646,15271,42133,64858,12],1998571519136805063076553504],[[3869,26793,7658,52259,44164,40858,9000,26171,24910,2130],2010555620118313465989352753],[[4188,30903,3796,1343,20482,4155,31133,44371,32443,13859],1879307569603067247114518067],[[32119,22752,15283,20286,6062,65792,10414,3930,24061,15401],1993740026437081033359685243],[[6,20137,15363,2845,25538,4716,2279,17148,20052,55130],1901210363424523578965868020],[[16,25135,56037,42584,20998,2278,7091,350,54702,52783],1928733893638122981369884831],[[27,1340,4151,20968,24787,30551,10267,19405,20658,13509],1924249923428228063205794194],[[832,617,16635,25049,4410,40166,29752,20954,20130,16004],1911015508365003005664462809],[[836,20165,15339,40788,25714,1853,17863,10930,52965,48630],1913857996108002188037477005],[[3110,2591,49630,25186,1861,7785,18589,20944,20615,4456],1907077790739680691597548668],[[3120,22132,13346,25207,31745,20131,32123,4455,11109,2306],1843594755215068055782398917],[[52311,54735,51324,68915,25627,18596,25177,30669,16690,15489],1921607183913717711477356562],[[55071,57269,13421,43250,42263,26453,35326,12162,17921,22589],1920129560878127649256062269],[[60883,50370,25502,25322,54786,62413,62500,18599,47654,55220],1937667612425195521011084335],[[22159,13327,22515,40871,54630,68716,20163,32558,49922,24708],1962953528709791182994876990],[[55732,43808,25384,54493,49872,24938,18041,35334,45910,22111],1990833943851279830382533775],[[55743,52860,25377,43266,49839,50614,61865,61108,65093,5874],1923851148644350122338424958],[[16559,50754,69470,40828,15292,61943,7681,17851,67640,56173],1926258704262215608079628678],[[31247,40588,26209,52587,23797,47591,39828,10409,47864,44677],1945077462331811393544443032],[[31263,55092,49655,5775,59339,18115,32539,31748,67421,13532],1900395719251294657046015878],[[32657,55205,66125,66559,50520,50658,35193,35327,8979,25599],1945077469535702494512392698],[[68908,69486,5837,30563,21356,55063,65503,32048,54902,62188],1951459891083577709840195861],[[50551,1887,44688,49838,30513,61630,36663,11079,23037,65356],1883626589210989725152525639],[[18591,25132,25735,30442,55062,67165,59211,31041,62503,1793],1963715879925313633880697060],[[23785,24935,25044,5787,60146,8418,47805,55254,268,63464],1893426259280095477220818768],[[24205,26277,30432,49885,17105,60187,8315,47807,25698,24413],1920558802803906408669833334],[[41059,17096,30510,67309,35183,40384,1841,45710,10806,72888],1897916606990374144426385336],[[41079,44681,15287,13594,31788,35251,3171,9443,56499,17957],1945077454633491625001135284],[[49840,54705,13530,72744,59727,18521,59544,62836,56186,5573],1879285661741442463579323381],[[49873,20132,55005,72415,30414,35761,59658,9457,50662,68164],1944587645167189248388273151],[[2273,54765,55032,41327,35263,10866,11399,54567,64974,4062],1925764093802790234661412179],[[15729,21369,61514,67158,30936,36664,62815,25603,16580,25380],1858964725527986638098335969],[[47586,55752,61800,61946,39696,1387,62478,50727,15868,13250],1895704672497105475748230841],[[54776,55773,61801,30913,36653,39703,56738,47632,19499,62224],1916531525806724119126935892],[[56005,62874,13614,65934,35339,59748,32383,49984,65647,17956],1914552487189565717011462577],[[56549,40466,65922,18001,24037,32388,55450,24739,60507,44626],1876476373591306569395273645],[[11221,72477,72903,30950,35689,24623,31822,24044,20686,24402],1920062734608890632603711804],[[61470,65480,18000,26450,30424,30910,47225,41359,73082,17159],1895704665502381131219267824],[[72767,17864,32177,32536,17991,45790,69892,54764,39862,19485],1880161235628403943029332618],[[72887,5906,30957,59320,7670,25830,24047,65582,29216,61496],1878118347156556186715314505],[[18112,31120,32470,3166,9175,18478,24058,4434,2131,20126],1889637806473306108852177878],[[32479,35708,39839,59679,46440,11459,20977,64484,19456,10783],1900996359136434215659645453],[[32561,59194,4395,4976,7758,528,32191,46377,42345,56568],1944587645898898083344823652],[[35752,40406,8967,17990,18712,7707,18594,65633,62225,525],1906754730634889405183383540],[[59289,4396,4971,7781,529,56904,31747,62392,11080,51620],1906754729587495384550111083],[[5755,7048,7789,17985,18659,32193,46398,59839,2258,7863],1929772106201804298550519574],[[5767,7041,8312,17960,31032,59292,28476,15313,33014,1429],1856551340795449338078993066],[[8322,10162,10271,18449,26169,59862,29599,47633,447,54797],1893841182189498088354526685],[[8510,18690,23976,5873,49989,49917,24447,2803,29151,55749],1844680617128767366248277692],[[8552,9444,32165,46451,7813,56881,51784,68394,24113,26101],1876390796648173192626314558],[[8557,3931,18693,1390,28837,17149,17984,49451,14879,56350],1826622464582761455349614038],[[8568,9454,31819,32030,45799,1801,40793,56550,14449,13416],1894924711333364599123932622],[[8573,25833,32109,7809,24907,65553,1258,40824,18536,1374],1805620052010216897313137678],[[10424,23802,23993,7700,26247,56565,70536,69792,49905,7106],1822253403795289623851735825],[[23853,24030,45914,56741,61790,26213,54507,25574,61919,25818],1809715840431339272688320536],[[24610,24838,30470,59729,28174,26208,14146,69263,61609,43196],1896927547565447282035589927],[[24854,30460,30935,32419,42342,42232,26715,11091,446,10883],1854459960442446876005663502],[[26176,30970,59750,54441,61768,4407,69754,20623,42213,2111],1896927547658807713368413709],[[30977,32420,61107,28146,30521,17188,55663,1265,24954,25406],1790503528442969443854632897],[[32041,45702,1956,54438,61791,50725,65133,65663,13106,51731],1896927544163917864550556557],[[32049,47235,59520,47867,30655,4436,55251,54999,54426,61672],1815416778314626839605295074],[[45919,59322,28501,56782,28834,24934,43968,41915,18436,30908],1856876054085601318497935742],[[47236,59423,13202,24939,30652,4415,20672,30961,18435,44281],1877118844662439419627866154],[[59761,1963,10876,11408,49815,65632,11039,62231,50281,38381],1829925578171913573215138878],[[61101,11467,11074,23818,62666,54570,41367,73244,52162,20055],1846870415078886741798010436],[[61102,10919,29757,30666,20985,62389,59782,68794,17983,12188],1824876329218334933933526199],[[12167,62819,11066,24734,70763,51671,73656,54321,59122,55543],1867645807270544357106497114],[[13203,61501,1450,43325,65597,56682,72183,30664,51259,2200],1787398356027138923532718782],[[29607,56805,28822,55908,50656,65150,43234,25182,4454,51519],1786971180598492698351801529],[[61481,1453,11067,15871,56551,65549,73208,19668,51248,38484],1815837266851692426607624670],[[62342,55927,56882,49819,20687,51628,61027,25684,15013,25779],1815837264015287225825337969],[[7098,28821,56903,31722,14183,69282,43203,50400,55776,40768],1836635438557317298064067521],[[23821,56491,26250,2272,69258,29050,32087,25602,39818,1582],1825294644096786830053059986],[[29473,29762,42135,69283,43239,15297,42196,33639,21469,2812],1780868892823075618257485351],[[29494,29747,14191,69293,1973,20585,60342,55672,43974,8362],1787308538287433760869892239],[[30518,62481,24707,2253,47655,72678,25715,21318,3811,61603],1785315904612420515429584531],[[40829,20120,43334,7682,15406,61048,60213,11060,25496,2201],1768133140501993590320009709],[[20114,55191,69316,7691,14614,62249,2107,351,63445,57349],1768240511962543254603250326],[[21462,64977,70772,20673,24021,25002,62241,62830,19664,25172],1754974572526439464893995110],[[21467,62411,65646,69728,32077,43306,72072,55311,24957,49425],1749217393905147200172168432],[[62796,66938,69317,7925,15441,30966,2066,67212,24146,25000],1815883264707996071331238547],[[62798,65593,7940,15446,29187,25685,55228,18137,35995,62043],1713417158455814561534405400],[[62834,68157,70647,19763,47140,65662,55677,25241,21460,26010],1775988669732295289541710708],[[51768,68417,19786,49423,65677,73037,25176,25901,40900,18217],1731377756377680302561623957],[[66941,12073,18457,51670,55678,59738,43273,20105,23394,8142],1706111936704243458129594739],[[69288,15440,18471,43292,43970,61562,17109,33018,53431,53764],1754172055300291269250895776],[[69910,15411,20583,24026,2077,21575,192,16043,25274,25683],1693446721805270084968035306],[[70681,11558,33707,46809,18239,40790,14150,173,29817,49711],1715729159586442905531016068],[[70690,11553,46819,61662,18245,2801,2040,15560,72900,7621],1732428755653070427239948017],[[18283,29082,51745,14618,59771,21368,4059,2286,61699,5695],1699838775109321093194393098],[[26725,43198,61671,65545,72123,52596,2083,54312,62397,26121],1750618942444448366008285392],[[43297,44460,49431,72671,69808,70094,55753,12046,13218,40963],1775798882754524874713487360],[[47125,50081,62183,55662,18255,66979,24098,1363,22912,20719],1721354437792221361690655378],[[51683,56795,73710,64836,49858,39655,11073,42516,25123,20188],1705922489243254440356289684],[[51692,56686,39881,72143,20177,1721,72375,20409,54863,72483],1749934021875284036606500809],[[51744,62357,60224,72165,25700,40067,15455,16829,24043,54879],1732841287166768469307038607],[[39884,65676,55633,25708,49530,44692,21851,60477,53254,24806],1706366276682390941180307684],[[64783,55620,73026,25048,18230,66425,20248,24054,19669,43265],1739736712499544477816711969],[[65589,73192,66645,62194,24986,20214,30769,14783,21811,23798],1707663746412501003612794564],[[67380,67507,68474,19663,49902,527,66998,41894,39043,15329],1722611828998228825004086081],[[67383,72077,55627,54704,18240,24444,11676,55099,18204,52563],1658272486193422599002394485],[[72662,73390,49488,18231,24149,10802,54998,14623,66030,1631],1685389663438046028755622848],[[72664,73464,13198,59549,43943,2752,54571,42341,38726,59999],1693037701313083271938795331],[[72672,73469,65068,55686,61743,17923,56051,42469,19267,19852],1665804197360186928138131060],[[72680,73395,55061,11042,40061,20228,2300,14622,15457,61786],1708975028544346267667758647],[[72689,55687,10944,17896,56026,50294,47758,2291,43275,31211],1690690212393821242812645427],[[73106,73647,1725,56003,73257,55864,20352,60658,982,62179],1652114316439019422328095524],[[73701,25693,18246,24466,42062,44262,14658,19442,27107,3500],1705006685709519740680058223],[[20146,10935,39649,70083,31518,26646,6714,49997,18147,61684],1659052974862501417059690524],[[25695,1260,13228,24477,55772,16675,59752,15575,48835,18128],1670212867745758355443499182],[[25127,61789,25898,26022,16662,7890,51730,62148,28118,54339],1647285757145264696031818944],[[25709,13247,50393,26298,20234,2022,59716,55884,61620,19421],1672153424665442648574694178],[[62248,18254,24998,20100,55871,1992,1356,27828,38741,2491],1652405992809235406869480747],[[39875,68805,52589,17092,25230,47757,49870,23958,63482,15396],1680531773322881596287315820],[[59525,25734,24489,26023,20627,26667,49826,1937,40968,62159],1690319617437607577866022548],[[62232,43951,16578,6324,43237,110,30928,5751,20076,55707],1617836473066149613358690613],[[2108,16586,24486,6327,25126,259,32164,41993,67267,31686],1649599811801696274985076113],[[25907,2062,55787,25945,21561,20157,2589,20336,43806,30284],1677657369310937730606937250],[[26275,24490,25279,2753,28893,31848,14421,20116,5763,1696],1617568626594337181369572980],[[49442,21357,50728,2036,97,61788,616,15030,54977,52784],1633683805397253202602447617],[[67657,25277,44289,62300,7421,18477,52680,32225,55152,56691],1637372303898236131876786581],[[30715,15437,44249,12036,247,7632,24995,13419,43753,52922],1627983746410649132589914977],[[30736,20587,20987,62319,28903,15258,52,33450,61822,31733],1655991927877644351626597407],[[31507,30766,54566,1984,119,50349,26357,48509,42409,2873],1606652461891217988592095278],[[50013,25953,43249,24385,246,61560,7073,13385,41717,65793],1611101821177298130423374896],[[50661,50305,7430,54760,57378,39902,18019,14238,13570,40167],1576116050667756121171185747],[[16698,51658,147,39837,47630,30650,19372,57175,55909,60638],1594805079347693668293595961],[[50266,14179,62918,205,55060,15244,27241,14387,61730,14301],1621758212325189044245134285],[[51693,24358,225,23987,1926,33507,15436,68914,55446,38399],1585213137936915550731480229],[[55540,33629,2020,113,7775,24050,43945,18545,35973,55619],1564646851684974023326463455],[[14669,62924,25175,13356,31867,54781,2670,62794,41685,48490],1569626776847967712756377549],[[344,109,7742,13237,42138,51688,49996,2886,24971,17034],1534766691569396150574208636],[[345,18448,24064,49881,2673,49821,13786,25523,18130,48246],1539843734666523195113108582],[[895,148,61742,30659,1476,19357,3816,52006,30628,43402],1557322360363939754957274059],[[899,17,618,26079,21333,24991,31906,24881,9224,18221],1512621633849063526888679238],[[940,30884,7663,13337,25190,20102,20432,19709,27240,24196],1532679846649407685258683654],[[941,17894,53,49991,22936,16327,41992,18053,25318,55645],1545396966529091636507375819],[[1095,79,15537,1724,49831,20162,15475,7107,10608,16890],1525428013879263612176439218],[[7418,168,21866,52389,1720,26142,20403,52400,56817,62218],1551631235370334451520554378],[[7427,32108,15253,20421,42152,15289,39036,52792,32280,8461],1544699360581775275428530373],[[7546,27252,1264,11684,43573,13410,49131,1489,7750,14408],1523328355017346604306813886],[[42144,15285,269,62841,43410,25055,43084,55151,18556,49435],1562176626186597118526546804],[[42175,2588,47637,52376,49481,7059,43201,49723,22322,44382],1531537025235727825274391419],[[61605,40044,18643,27325,15872,54315,32956,20424,50521,38372],1520460018748783348413398478],[[40048,42130,41872,15588,52177,45549,15431,53765,10890,10711],1541276229427883548513453399],[[50375,33518,18636,53747,6707,20689,38228,25315,40437,26675],1528602624685590287697857884],[[49982,24865,26334,55924,16321,57362,31553,46663,43243,31102],1481901949420974809518741739],[[25519,49523,27769,15402,51684,2335,56709,2287,38326,25429],1489873995826371139273210536],[[43793,54891,42183,15268,3006,15867,23041,61914,22366,2839],1499378902570465154662953872],[[53752,1483,16052,20586,20765,13046,54370,61432,20891,35890],1476759335450926248329384832],[[22939,25009,3386,20625,52479,27168,22341,21261,69489,4315],1526213081128651873485014975],[[55726,27310,55029,47657,25903,13405,48600,54868,45330,32005],1486268101530940265962794234],[[56028,54774,3009,47653,43949,20429,65373,26127,26020,2895],1482733604446334713630401662],[[1574,16584,43257,20657,43752,51987,25106,49038,39702,38508],1460427131037549763555573680],[[3379,55067,15395,20589,52500,14214,28128,22312,809,25352],1456830001541208562265988298],[[45537,43313,44611,20616,20864,41408,12193,40764,52356,30228],1469474313129935140730835230],[[63477,43318,51659,15490,43743,52681,25467,54796,34579,45336],1488683919767982446718764173],[[20119,55784,63385,43232,13053,20415,40971,40377,1087,2878],1482653397447644404494886363],[[20626,54320,16858,49813,41783,2342,55563,55393,6872,43276],1488043867278008018260828150],[[51674,16932,27181,14776,21211,56705,40461,21023,13260,26192],1496924127029419212942410758],[[51747,20676,49444,13390,49998,52070,29252,66364,25050,52942],1501059938723973349813293872],[[55780,62802,20877,13414,48535,61884,54468,22301,8988,32538],1456829979268124386500076622],[[57178,20802,32929,20410,21308,38263,25005,25578,25688,25403],1469474295406329087783682637],[[63367,27087,39904,42892,52919,61811,59888,55893,65155,35299],1465899314968699878818770060],[[42346,49449,13402,49124,53775,25470,40857,55153,21035,61457],1493414881736704507144373533],[[43176,51629,41990,53774,42982,12079,61463,18056,40399,60619],1488043865979240860493811818],[[43223,39903,42462,43097,59340,69085,72840,14203,52973,10870],1471998463923382177092814195],[[51615,13791,40960,7964,24663,68871,24594,17924,30329,31575],1471351165790768175416107846],[[20427,21313,39905,14912,12071,17827,28483,21788,14509,23355],1465899332621361416072133429],[[41435,42837,49999,61581,61535,25129,11484,6932,25291,27253],1452568209904596611627711023],[[41774,41991,21165,2912,66122,20183,25673,50643,55666,10699],1448951532924336239084857218],[[42547,51922,53418,32215,18226,56537,21011,23038,32112,38105],1461664030283985067095173243],[[43742,52682,52915,13226,47126,14940,60561,1790,43208,21415],1460427122590744304269799754],[[51251,52683,52908,14905,24715,827,65937,67307,10212,14508],1481618038435812416928999510],[[51256,52409,53315,42882,54594,15274,39204,54762,3618,55683],1461664020574426065059889898],[[7949,21244,50764,18223,45840,56556,54880,13559,32284,46683],1435463069562293419863030783],[[42977,17909,26705,59304,25738,52301,24088,47754,55650,25832],1411214411682883709274971238],[[47141,17918,51949,50686,68909,60573,54867,61495,42809,15808],1448951538375843124608166738],[[61026,26695,2909,66558,2288,28509,25670,34066,24121,29265],1435463042909300989993856323],[[61047,39848,14225,40474,69469,4457,61656,17890,20588,32332],1445325803589774118676252296],[[33767,20966,55083,24956,54850,39850,18681,6931,8057,55656],1421846610242232188055419802],[[39832,55218,61538,24660,54708,1490,17898,17154,46634,48565],1421846608209938129039504705],[[42859,25337,66049,25526,18561,54834,38202,43288,24403,5414],1412494404147990652902058575],[[52023,55082,55314,24624,54992,50709,56246,29554,54164,25424],1412494401867991687098444695],[[21001,54599,72853,2289,54707,18678,61823,3609,64118,59838],1418151567979949094266367281],[[54470,66106,45627,56540,59855,48516,52799,48672,56905,19106],1398654374532631593556288675],[[54537,40872,61621,42220,50778,42424,6790,28564,47760,789],1408774866812397080723628154],[[55582,68858,61810,50700,26272,55002,812,15498,32278,46600],1399335295452475103590643948],[[66561,72476,40885,42225,51202,13550,6809,26025,51788,68226],1398654361804116047965917634],[[69068,24711,20202,7108,61608,2225,25463,2867,20026,38349],1378881533008838668718842741],[[67260,62377,14169,55057,18284,24827,31875,34067,14738,28318],1397973127946246111785960906],[[67308,72325,45620,56553,18540,18270,35493,38242,43315,35997],1389146046669746053546535467],[[49862,24955,24808,1491,10895,26163,53184,19930,19229,31787],1368540003635261300995172152],[[62373,15295,31705,54978,54535,18334,35475,10196,21392,60487],1368540006566078819985658278],[[62393,31701,15324,54680,39855,62066,32105,15747,20466,29667],1378190482677964830316584978],[[11493,31729,54469,14249,1488,32228,32094,3617,9218,39496],1387773884970310228827980214],[[26271,54388,54763,20197,40805,32162,32249,51764,3448,16399],1368539997754837039917872065],[[26273,54536,21047,50713,55001,19732,30320,24093,47763,8079],1378190488732498374115837606],[[24807,39211,40801,55889,19409,56714,2865,11943,10213,37938],1368540020401749309767441759],[[24809,48855,50647,49756,31873,6808,2904,8087,30562,21364],1368540011641600024914773402],[[25671,54693,31595,13257,18453,4051,32789,5520,25355,36661],1358820957616932950806223074],[[25672,54964,55219,32075,18679,56300,8050,26276,58571,46903],1368539997096864684672111887],[[55056,18021,13539,56694,61821,6871,7001,19850,37993,18132],1378190497158038079553146125],[[7109,18299,31940,62013,58686,3641,11805,65128,5592,5895],1368539993090675121199144632],[[32092,32208,18680,24845,38469,61444,4381,14835,46690,339],1378190500675293767148854676],[[40450,23049,31872,13267,34064,25408,46653,66463,68421,20005],1358820975957616035982870784],[[43979,55913,24843,17891,4387,11823,19999,47753,27967,35256],1358820965569749796125440770],[[51159,26107,38209,40401,61883,6870,12937,66746,55706,56427],1368539986672019798182349479],[[16015,24825,18129,61413,61697,6930,25413,27033,30552,34213],1368540001977475680569450758],[[31874,61565,11104,59275,18576,14774,21745,11801,23368,12257],1358820993678421918059179625],[[56394,18131,40375,24305,1953,32246,35484,25347,55775,905],1358820967998999790572631750],[[56674,61885,10902,59308,6873,18813,1625,19488,8556,10653],1368539999762471220453742178],[[17892,59277,61606,18479,42541,14753,11832,48541,63149,67925],1349031943700272885593893359],[[17893,58695,6933,18808,7025,48606,55590,18209,38347,19787],1358820951754074137071642467],[[58505,59310,61462,18823,14769,2813,68390,51662,2843,3520],1349031916340852425447827789],[[58518,18848,3640,25462,14274,30013,14810,55660,31998,11766],1339171342844880334442252192],[[61745,24011,34065,7616,42560,56821,15550,43533,17521,26488],1349031923944463315884641538],[[24004,24896,6792,17029,55586,8063,1798,32810,32290,19640],1339171342691614021235672745],[[24310,1946,6798,19884,50216,29985,35985,55591,24611,32326],1339171340457404458700011569],[[30293,30604,6797,25341,29534,9277,20677,51746,831,26486],1339171329615255276394403114],[[30947,5686,17041,42555,18220,8970,5857,12845,49079,72241],1329237596727628979030597428],[[31627,31758,3610,53115,18150,29578,33506,2908,38116,3854],1339171329756020421412337436],[[34062,2234,5953,42526,9235,62930,64540,55696,19724,32254],1339171321043781533339503741],[[34063,4312,25332,50177,62161,34585,55558,51726,54948,60051],1329237589126033535987810095],[[34068,5969,25326,55567,23397,10617,57381,66470,67982,9228],1329237592119957532332971437],[[34069,7646,22282,55580,28600,52381,62911,64533,17718,4973],1329237586348627699220212518],[[1375,3646,52960,22414,4923,4704,27021,69538,25330,46886],1329237591890581037455586465],[[1430,3517,2905,4924,18140,4058,55697,26302,29778,59311],1329237576676969386069003399],[[3503,3647,11835,5879,12905,43399,44678,60926,13640,10311],1329237562210848895430241339],[[3524,7740,32260,21751,51624,38420,25327,18758,58622,47332],1329237562689160356872853107],[[6800,7659,10205,32258,4708,35459,43316,20702,2830,62530],1329237578845173770747242583],[[6958,55572,32292,4910,8958,35187,30706,16187,12158,29007],1319229041417639488957501022],[[6974,7731,8041,1624,19445,30748,51679,38404,49734,35895],1329237571468748962184471287],[[7770,35976,32296,3162,30000,25351,19705,8052,32519,9373],1319229025267444436499066059],[[29545,60808,1190,28660,2807,63444,19990,10416,19151,9214],1309143964903395894058851573],[[46102,60650,1191,11814,20624,54149,48457,4298,11227,5021],1309143963346620887606193820],[[46121,60616,8984,5869,2798,21856,25411,13033,43244,62245],1309143967174971098036778509],[[46637,60853,8081,11962,29963,28671,33519,25705,2885,30730],1309143983496817617318525887],[[42813,30410,4050,38277,48786,42262,23852,45791,23508,60800],1309143949103075625188773581],[[62151,23805,20062,26007,69192,40566,55708,32236,59442,61098],1309143948706271120942329273],[[3167,4900,30707,24349,13016,8404,29754,6941,30093,34907],1309143942492522644650027820],[[8145,29822,30456,2913,49631,25354,24965,7550,28799,22969],1309143947955857924129328750],[[8150,30420,12976,40992,51491,18854,338,26451,32321,32344],1309143943728892884954083486],[[8340,9283,15547,25439,38304,826,59659,8055,2145,31169],1309143943624083533412308680],[[8363,30466,983,25446,55638,15724,35262,8039,56808,32713],1309143941923695384494227495],[[9203,35177,15796,55616,55689,69911,21361,62070,2833,23276],1309143945095548417113117845],[[29525,4063,24120,56952,42255,50962,48566,3449,18216,22624],1309143940179596693286358177],[[29555,12998,15430,25285,50550,15936,56628,35690,27266,58300],1309143940217008865799507244],[[58422,19964,20688,51675,52384,55628,31592,61111,2118,51139],1309143942082342016581753333],[[58452,20014,48810,55631,43320,42372,25871,11244,59366,60879],1309143937510604383044542881],[[15470,30743,57380,24376,43339,1086,25374,12066,18772,29598],1309143931659272340411011626],[[21861,43191,48588,68717,64157,43138,49325,18257,60228,72947],1309143933176794878001987442],[[38389,39515,25298,66180,69727,25712,72745,35040,56880,30082],1309143930500061228231657751],[[48653,62929,63465,70889,39247,51546,18153,2844,46271,49130],1309143931410902064003880858],[[56959,69165,25466,40589,48691,70895,43843,6963,24622,4213],1309143929282063980319326497],[[62914,65820,67949,55639,12923,18763,8811,38012,13827,30870],1309143927381619701688959577],[[63119,68738,66185,66936,41058,56025,15447,18692,26026,6770],1309143927538563889583855762],[[25471,49654,64196,70894,15483,32004,32282,18713,61018,54951],1309143926130441823924014615],[[25710,66174,66753,37969,18343,55593,32267,62537,38319,35595],1309143925504360230324648580],[[64185,66943,69535,40997,48724,38305,62222,8042,56819,27835],1309143926457159852955533998],[[66179,67958,43145,50963,25459,27966,32266,23096,31145,71192],1309143924922336249428191371],[[68242,69541,48752,24207,17094,12833,35707,8127,7837,42572],1309143924820678369774546330],[[69544,69891,15515,25302,12986,55709,24286,60194,36642,30506],1309143924581820253923771472],[[69755,70888,55644,25373,48631,56619,31122,1989,26195,31839],1309143924614640169887925460],[[70902,20039,40991,25737,12242,46048,72414,5971,32299,5440],1309143925809062063904655118],[[70903,39224,55694,52595,15460,62455,32418,65992,31091,67735],1309143924576475430651903232],[[70904,38003,40986,49349,17107,19947,25372,14405,62260,36342],1309143924985075262452140570],[[70905,48468,50969,41080,56004,62251,6955,56827,24390,65986],1309143925588282450548768138],[[48435,5521,25412,15985,16157,15947,23844,33821,26481,32501],1309143924028625825100708667],[[50968,25299,2876,12964,28351,31644,4573,943,9013,61125],1309143923742359533065005351],[[51640,55695,25440,55750,20668,25480,62228,24414,32995,6698],1309143924289530157256731897],[[18344,25438,2883,56299,20685,25872,26645,62535,30035,46394],1309143923182509214900150255],[[25447,52590,55561,12955,51727,62456,59195,2115,13862,66791],1309143924070452004698651694],[[26297,42383,20905,55559,51641,56622,18134,65989,59372,6838],1309143923658007960969112439],[[43859,47590,15407,20528,36656,8051,38813,8519,11840,56424],1309143922442940904629417985],[[44691,11738,55607,20601,25869,62180,58319,48210,28981,60923],1309143923081787508098294960],[[50592,15966,62872,20653,65481,31131,61350,11561,1187,14498],1309143923566051038522605887],[[2892,18752,45223,56625,62192,25381,4476,45798,13824,8499],1309143923789169995224002653],[[11739,55604,20558,25474,38327,18227,47809,48294,42481,47020],1309143923181967080402801556],[[20915,55577,25874,43307,788,18162,46397,47228,64113,8106],1309143924166199790833374569],[[47587,19981,25481,62144,72766,30606,1098,32993,23023,47208],1309143922365905695915943015],[[55595,18757,28058,38353,35019,2850,12171,73107,57305,71228],1309143923026463577999946962],[[56274,31999,48577,60965,62165,45497,41369,19518,34254,25278],1309143922908166594777369927],[[62864,43522,18251,24293,18180,32264,2840,64765,3049,69630],1309143923267222844604748864],[[25475,45206,62191,18853,26452,4974,32263,49498,36360,34562],1309143922618577371552453635],[[28031,48642,62461,25348,26323,1997,18767,1871,17051,47333],1309143921645469087473480636],[[46026,51742,18234,67159,47233,54440,65983,40524,26487,65019],1309143922367612562978678197],[[51584,55657,67164,5658,61338,4294,59975,26382,29185,73326],1309143922540182274337207620],[[55651,30211,30616,32294,62145,12117,64208,7816,29980,42823],1309143921505489194033313612],[[62450,17707,72393,25303,5959,813,71750,13854,22671,20798],1309143922211268300152314659],[[65502,5659,18208,32251,59422,64785,14568,17287,18902,35413],1309143921681679445519996540],[[25393,31659,18184,18228,8065,1566,33828,60209,24086,22006],1309143921920993801204753329],[[34208,32279,40182,8758,55451,73753,19150,27855,56425,4836],1309143921094377919423085824],[[8810,39697,3082,8413,805,72941,38366,13633,7230,10207],1309143921604329867022443362],[[18222,32287,59678,25831,60457,73752,40521,13819,48581,29660],1309143921821492693610546398],[[32559,59210,3529,9160,808,1233,19132,44718,9624,30020],1309143921473449460025204996],[[35252,2853,4567,1567,29489,27283,62532,56837,34779,8878],1309143921354938450387313013],[[3070,8062,10417,46378,909,38942,38368,8133,31096,20750],1309143920784398081710216159],[[4477,8733,18155,59863,58494,14572,33698,22649,26461,24547],1309143920689113418331670893],[[7403,8056,18206,11470,11255,37931,14439,26430,21933,26106],1309143920472985852420032283],[[7406,31043,8086,27736,24363,2294,62255,31790,35313,15175],1309143920528262989130828728],[[8569,9174,32234,8080,18770,41931,23402,30091,23803,23227],1309143920089857908956570114],[[10150,31030,27262,3040,37962,7924,19993,6935,9468,15110],1309143920212028087242094310],[[10157,32291,45517,47803,60139,1232,19314,35594,35750,23884],1309143920371493400171926182],[[18166,8089,11396,38415,73746,19040,29084,30021,73328,8439],1309143920124359197101706586],[[804,11604,62480,33605,17198,17282,62261,34452,42512,51308],1309143920000639985054739787],[[11411,19398,62168,2144,64152,11550,18769,23390,67716,35490],1309143919819839409403348378],[[11456,11621,27287,73081,13653,62213,7941,32506,24103,51277],1309143919904893194014792500],[[16398,29755,12110,73747,12981,1025,33299,31100,5266,44852],1309143919286443113309280226],[[19399,54439,29204,71725,19086,11557,18386,1638,26464,35645],1309143920082028314856924050],[[27795,28477,33810,10649,62212,12089,19133,9168,7345,31077],1309143919922683812051061003],[[28500,56824,7894,40518,1689,19772,38937,8143,23365,21945],1309143919884242907795632420],[[29478,55422,942,13026,56849,32339,44495,48209,35366,9649],1309143920133488069087161625],[[62158,62501,41357,71915,1105,2354,55979,17833,51303,9642],1309143919480748237451426366],[[62167,62665,33666,38022,17172,11699,35491,35989,23420,26110],1309143919203618357538241675],[[62676,33839,72187,58312,60192,17276,17204,35894,16843,31166],1309143919819300169642416319],[[58482,67509,3038,62204,20885,60375,11888,63103,60789,11163],1309143918880077487763976689],[[64219,64548,2021,38525,17281,29184,55985,62254,22692,52362],1309143919755392593202625877],[[64555,67378,73737,2305,62205,20888,41321,60371,72395,73337],1309143919843476157524943104],[[67385,67502,41197,33719,53455,1024,32737,49109,56439,54011],1309143918852080024897175685],[[71738,72936,73209,3051,41342,2363,20894,38928,1185,47765],1309143919928114657347302341],[[71763,71903,41190,62219,44440,12919,34261,20762,38187,42511],1309143919176793851875648595],[[72161,72942,2023,19541,46807,26387,48646,22650,30011,69407],1309143919426368660884790908],[[73191,73736,41324,19762,26727,53495,19519,40735,42797,22563],1309143918722943111028719546],[[73738,40515,58433,52560,48184,55974,5998,34184,14845,35380],1309143918834010702007746958],[[73739,58748,59371,50109,8132,26691,11925,51309,54257,6920],1309143918030092720179310591],[[7519,19619,32314,44467,54945,7895,4908,29859,29000,42575],1309143918710307161896548999],[[7551,13009,58770,19060,46806,3849,9621,30023,35369,26362],1309143918874399508697962859],[[7861,26713,32320,49540,20008,29382,7235,35691,30692,5264],1309143918891137582818882497],[[8103,59377,47122,52557,32345,38923,1163,17523,35316,4940],1309143919051333015272125809],[[8130,29048,29253,48162,19797,19951,27874,22646,21769,36345],1309143918706353791508417674],[[58331,62202,38854,56848,60340,44476,60141,35498,47839,63106],1309143919252043647969229256],[[58463,62203,50079,56850,26388,1113,17520,31174,27147,59817],1309143918752523786121383379],[[32315,41939,11212,17222,48293,2315,4964,9472,20553,30105],1309143918634977735443988330],[[44723,46821,11546,18381,4212,35312,5893,23883,5259,46664],1309143918042411183886495255],[[44724,47143,52566,13620,29085,11695,29858,60798,5249,49168],1309143918450937247311863606],[[44729,56851,61057,12951,23069,41309,42489,59825,60680,23448],1309143918688224779667323685],[[12959,13901,24968,50089,32333,33610,34775,29861,23909,22562],1309143918353095081689723068],[[13880,18383,19985,29413,6011,8516,35686,36697,23877,6687],1309143918346578882365912821],[[18384,26393,38297,46820,14507,31146,9012,34916,16888,23234],1309143918268789223736120100],[[24974,29049,32338,56838,1106,12074,35637,24080,46008,9149],1309143918345515250321772313],[[38878,48636,54954,19531,5017,31110,60776,72256,4793,44355],1309143917830805990560104524],[[38900,48571,19554,26677,5016,26479,31128,26359,41716,23523],1309143917691435411176929217],[[48268,55980,7862,4913,29878,36636,33079,10332,22973,31062],1309143917393474117303503506],[[50117,56839,3270,6938,16894,23507,30811,47209,46373,23642],1309143917544854364790328395],[[56836,60336,1159,3848,30090,34774,34902,35642,14701,5237],1309143917809599578303055159],[[1538,1646,19299,19542,8375,35544,36003,29574,53041,4237],1309143917309348439242668268],[[1539,1643,4370,4961,23279,35184,14849,15134,5263,47455],1309143917006766929066032959],[[3281,3302,8090,14442,16174,35266,30022,35319,8501,46240],1309143917393220294419427218],[[3314,6944,7518,12565,9156,9465,35363,31959,23451,28817],1309143917167330510139465842],[[3855,7505,12558,18904,9625,30069,17060,20749,24166,8450],1309143917268973930765213614],[[7484,8101,16204,29118,7042,17522,35471,25276,69012,71264],1309143917377352232085730575],[[8091,12093,32327,8425,9620,35569,36416,27909,30853,53701],1309143917262457761120419108],[[8100,29141,4369,8422,34851,35561,35980,53026,9536,22570],1309143917047141437551574180],[[18899,31191,10218,22590,26128,26483,29001,52677,53708,71305],1309143917144980578935064689],[[18901,33671,8372,9461,31715,34914,30722,46657,9533,10333],1309143917006766929066032959],[[27776,34175,7037,10319,23502,19276,20793,26923,60777,68647],1309143917066814273178890643],[[29254,34252,9460,23366,29879,34432,35643,46701,9489,54120],1309143917047141437551574180],[[34178,10324,23389,35759,17473,36417,36690,24546,28804,31057],1309143917002045875742760438],[[34181,5020,35703,16263,30413,31101,35260,16881,10516,23435],1309143916932246966557282404],[[34263,8458,26111,16895,26485,31744,4719,22728,35538,23457],1309143916755042976663114401],[[9464,10270,26435,23501,31090,7344,11887,46272,23194,57700],1309143916734397414410713557],[[9469,10152,16868,22696,35905,20751,46273,68587,69417,57701],1309143916766815474156909195],[[10163,36358,5894,23506,26236,45900,3802,32398,45351,25572],1299713691966514528107521165],[[10275,16252,17478,30423,26368,31074,46596,3774,1461,11443],1309143916587141982528672651],[[32520,33290,16883,30092,35310,22579,26233,26365,23329,30509],1309143916696605617126376312],[[34778,35473,23403,35553,35903,36696,10326,10520,28197,53623],1309143916676556134438402297],[[35598,35891,29882,31095,33296,36359,32382,5244,47053,33779],1299713689976690572641746639],[[35599,35978,23509,26489,33297,11924,26910,46270,53042,67719],1309143916837025331183676699],[[36346,31177,33294,35487,35639,11932,12001,71071,8993,46267],1309143916658813819840948110],[[26198,32990,34868,35194,30459,46454,46704,63273,66805,71206],1309143916721067228125484178],[[31103,32989,35418,35928,16250,53040,69631,23017,23459,34899],1309143916479849044048070070],[[32991,33293,35307,36341,17840,20792,46327,60946,21700,43650],1309143916272234171447688944],[[32992,35239,35372,35764,1875,11148,20790,72960,35536,15148],1309143916582442630379148509],[[34903,35306,35477,35554,36643,33041,42510,72963,46244,51302],1309143916621022022554428951],[[34915,35560,35753,35904,36072,20748,33045,46617,46698,36440],1309143916590433409589853960],[[35314,35636,11841,15146,22661,23024,28803,23515,29894,22980],1309143916124865530014238668],[[35638,35710,36637,31742,33356,46201,3781,4242,23450,9009],1309143916449260401395784603],[[35644,35931,36691,5888,28980,46000,52368,68997,45454,22739],1309143916540880854614508976],[[35929,35969,14847,15950,24109,39914,46614,51098,4405,45455],1309143916541691474824142663],[[36053,36418,15941,16864,23850,24959,45738,59824,61128,35196],1309143916570108354095727084],[[36424,16833,17057,19238,27145,72984,8208,9670,31160,11905],1309143916090686654705512722],[[36426,16876,19873,20535,27155,31036,46245,65204,16238,56071],1309143916459523988552226322],[[36427,2494,11886,14718,16878,31071,42764,60667,71112,47014],1309143916529733845595473978],[[11139,11770,11934,12000,27199,60713,60801,61115,5709,12087],1280644933840071303687372768],[[11889,11933,16889,18538,33359,47017,68532,69641,8165,17659],1309143916459147341497069440],[[11935,15077,19840,20791,23926,24172,24541,60096,66822,20467],1309143916489359337093975706],[[16261,21699,25283,26027,46237,47838,8167,58076,46274,46446],1309143916319335476458031464],[[16877,21738,25280,28810,40716,46196,47837,53043,9632,34861],1309143916428558728528712190],[[16893,18559,23891,28784,29676,42513,46330,69639,36357,6617],1309143916112531253726506118],[[23810,23876,23897,24169,27157,33358,7102,54025,47786,29876],1309143916008427936602237080],[[23837,23898,27198,31713,46331,61917,71090,72118,26943,35874],1309143916148847650733351898],[[23890,24540,28607,28778,43028,56426,71294,8207,9673,25810],1309143916428935345899465952],[[24163,26029,26909,43713,46103,68589,68990,5835,60739,54042],1309143916317163742763482412],[[24962,26924,27209,30846,33044,60762,22748,36332,28775,30149],1309143916282319998594071161],[[26028,27197,28570,33042,42479,59459,69633,7030,7270,35546],1309143916089132375373518422],[[27207,30877,33355,42487,46615,51071,71084,35474,28800,28855],1309143916320146126352214254],[[27210,27928,28779,30878,45896,46116,59465,68993,8182,32399],1309143916460942457820638510],[[29542,33043,42825,46226,52324,59458,60799,8524,2241,42655],1309143916346565088469499399],[[30469,30794,33075,46216,52125,59568,65909,68654,53996,28793],1309143916418064146827591914],[[30700,30847,33077,45740,52100,56758,57304,71204,9410,53044],1309143916459147341497069440],[[30854,30871,33047,46990,52672,71063,71295,71384,6688,9672],1309143916499145202944354087],[[31020,31080,52981,53590,57076,71202,49300,58149,10238,47447],1309143916282319998594071161],[[32385,42751,45898,49103,65911,71465,10569,34566,39034,47361],1309143916286951747162602272],[[33073,43627,45903,46326,52986,66678,71468,6689,7228,33181],1309143916430730462223076449],[[38186,39681,43720,52281,52997,53650,49206,53271,42736,51136],1309143916278150347740248054],[[39680,39909,43017,47836,53005,53185,44844,23465,30764,43763],1290214540662570289519983982],[[39910,41684,43640,53018,56759,67743,72566,58253,36025,54005],1309143916350734739323104604],[[39915,46441,46616,53116,56762,65929,69975,4987,5265,56077],1309143916428935345899465952],[[46225,46569,56437,59296,60625,65039,72242,58121,35282,42799],1309143916350734739323104604],[[46236,46641,56438,60715,60846,65016,4784,49301,2420,11010],1309143916319335476458031464],[[46379,46969,52772,56763,70326,71229,46437,23446,43891,60690],1309143916279439549049171400],[[46400,47214,56436,65010,66648,68998,71073,35551,26436,60032],1309143916349547472058164262],[[47215,52766,56760,65471,68584,71082,57278,23447,58063,14698],1309143915972111539591495978],[[52768,56761,57077,65469,65910,69794,23517,21690,23361,34136],1309143915972111539591495978],[[52775,59464,60697,61516,62699,65928,51280,2806,70078,18732],1290214539022825546919814790],[[56764,62698,65497,65908,67711,71414,72541,54010,44605,15065],1309143916039440947115455919],[[56765,63276,66621,68588,68996,51138,44603,62725,33091,35572],1309143916146967132822196740],[[59329,59428,59577,60643,65011,67710,56414,55898,46147,47716],1290214537070357250961816407],[[59447,59818,61517,65081,72542,73336,26922,42793,52521,60797],1309143916276559099504265301],[[60020,60670,61930,65926,67729,71372,57279,24830,47766,11869],1309143916278252281784166400],[[60082,60763,60893,61931,69009,71257,11945,11903,12224,52522],1309143916275473766283176251],[[60712,60816,61122,61958,71109,71207,5468,9639,47011,47336],1309143916358725488850812436],[[60714,60754,61526,62697,72238,72567,53611,44358,25951,38412],1290214540026635857782550631],[[60786,60899,61546,65197,72565,26913,26637,60649,18723,64857],1290214537854111002079070826],[[61119,61527,65495,65927,72233,51173,44888,53977,54129,60725],1309143916210315025213644340],[[61536,65012,66610,67752,72884,73131,20460,52477,5605,9199],1309143915739211440423758178],[[61537,65013,65037,66780,72011,73027,73142,49298,49303,49197],1309143916351342588381883617],[[61547,62696,67728,69416,69640,70320,71383,53824,47896,44594],1309143916317265676807397720],[[61916,67712,68468,72031,72394,49295,12203,24619,2960,11819],1309143916208144358771355503],[[61944,65059,67713,67753,72236,72540,23516,22107,31869,21455],1309143916279337615005253146],[[61945,67727,68502,69862,71358,35284,53934,44600,62748,52026],1309143916205161975182368507],[[61959,67726,67732,72543,72981,43666,39049,32670,45950,60089],1299713688005485178154735639],[[67742,68538,68586,71259,72141,72882,58089,53193,35933,35993],1309143915980719773168911969],[[68579,69013,69632,71085,71247,35492,35537,58169,46557,46679],1309143916212819924640321430],[[68999,69014,71070,71209,71304,5753,8449,9638,58093,26520],1309143916330308609574639642],[[69006,69991,70327,71205,71248,6690,7243,10359,17530,35203],1309143916328513493250891445],[[69015,70116,71087,71246,8206,10195,30104,35301,17531,22639],1309143916221896007390005435],[[69406,69818,71083,72244,32401,10235,44877,47338,55411,14049],1309143916139019834932063963],[[69638,69855,70321,71201,73327,35919,58195,17514,28999,9419],1309143916181521528563425249],[[70109,71014,71208,71411,73339,7233,10364,35899,35199,30485],1309143916289225414901118934],[[71021,71195,71203,71359,71376,7008,10313,10574,35897,9256],1309143916330308609574639642],[[71052,71072,71251,71382,23417,46450,6733,50232,10522,6613],1309143915800727662339913369],[[71198,71256,71361,6699,10328,35898,58091,34544,35756,58020],1309143916151686150330248325],[[71234,71249,71258,4217,4929,5247,9397,46598,53956,2424],1309143916227006307373484545],[[71235,71254,72426,4834,7236,10514,29895,32400,58162,22999],1309143916193479128110862557],[[71261,72551,73044,47823,44841,53959,47746,14724,44855,35618],1309143915767817601452564551],[[71348,71360,4400,5765,9062,9219,47821,56755,17503,47727],1309143916160386682961966357],[[71352,72239,72245,4268,57050,58120,55900,43529,52520,15188],1309143916070127610029616270],[[71385,72427,73324,57051,31868,55920,53632,5766,9655,53007],1309143915221963642624892130],[[72240,72247,72564,23514,23299,32532,52638,23030,49589,66575],1290214536855432742323041999],[[72243,72545,72575,72896,21919,22998,23190,54405,21693,23363],1309143916077132825876834962],[[72569,72885,72966,56413,11461,27931,11444,11939,47403,6820],1309143915767817601452564551],[[72883,72969,73338,33180,58163,5830,46269,52430,62939,57699],1309143916040016481214530802],[[72897,73321,73334,12199,11404,11430,14048,62727,34083,11813],1309143915486129022919613039],[[72898,72987,73329,73331,51172,51281,54263,60796,61474,51006],1309143916137457017548535235],[[72899,3353,3801,4982,9399,21500,44190,53964,47899,51135],1309143916087194442309654741],[[72990,3164,3800,4917,5248,21771,9181,28560,30061,29669],1309143916050077030395194646],[[3169,3803,4905,8891,9394,21901,29897,5875,22386,5236],1299713690987798360400864185],[[3358,4721,5245,8373,8511,9498,7338,29964,6077,16459],1309143915450042493817724134],[[4209,4932,8196,8489,9412,10161,21935,35684,28769,23657],1309143916067578962451417034],[[5242,8179,8197,8459,21794,35909,29008,30075,28953,22680],1299713692309531316132735789],[[5246,5481,8374,8488,21944,28859,8990,17506,23010,3108],1309143915750750472655983245],[[5257,8181,8209,9589,9651,28846,21737,14708,29874,4132],1309143915719167758252596192],[[5261,8163,8980,9376,9534,7079,7320,23005,9430,32427],1299713691035413770493707832],[[5267,8203,8415,10358,35455,56757,23298,25796,44850,47893],1309143916019966968832089224],[[8202,8396,8460,9413,5250,21947,26132,8987,23666,37686],1309143915690658579907024925],[[8342,8498,9372,9529,10453,28845,28998,6772,8162,7608],1299713687956081599465036588],[[8365,9166,9384,10575,35454,35539,45464,22835,23526,33192],1309143916021660151112322187],[[8968,9212,9586,9633,10511,8189,29495,46449,28812,36438],1309143916032256666860557683],[[9055,9229,9592,8190,21946,29480,35567,51276,55919,25767],1299713688406409638188793959],[[9241,9374,9650,10470,31055,45459,26129,7326,29493,50225],1309143916017796302389484774],[[9379,9635,10365,10519,35564,23528,14696,46988,53982,26322],1299713691058509334621373010],[[9380,9634,10144,21938,7325,8522,26109,29903,47451,6174],1299713690891280345467736607],[[9382,9640,4269,8380,33291,17142,23236,29794,29527,29979],1309143915911177749250852454],[[9528,10274,5251,8188,28847,35953,23229,33373,52991,10524],1309143915912870931531226120],[[9535,10266,8191,21940,28844,6176,10523,34592,4896,6834],1309143915304044630450416189],[[9583,9641,4941,8466,21904,6179,16220,23648,29900,28796],1309143915941766362231298495],[[10198,10568,21523,35956,56415,26113,34567,53981,43871,49125],1309143915940579094965987258],[[10215,8467,29479,31957,5882,8527,27934,21616,34593,25247],1299713700728886398326110535],[[10226,21792,28869,31958,46374,4842,29652,1040,5216,6835],1309143915325933778060283934],[[10512,8381,29601,35298,35923,46438,22034,34756,54139,54200],1299713688723803442880304678],[[28858,29496,29611,30034,49302,4843,28852,35746,45800,47324],1309143915866446205171651308],[[28868,29612,35548,35896,22424,23449,4065,6743,9424,36959],1309143915562675313207324146],[[29602,29892,31054,58096,8523,22387,29966,36376,22631,22983],1309143915525649133081078613],[[29893,31956,35996,58082,7081,9180,22586,62910,46498,34541],1309143915831789875378153395],[[31056,35977,56412,58088,58118,23191,23440,28494,28766,37198],1309143915596144375742322592],[[33300,45452,47822,58256,7078,26120,32534,22369,32404,45353],1309143915861191221095071128],[[35300,35913,47820,56754,9183,17515,21726,22818,35755,8472],1309143915595434592639221429],[[36329,45453,58074,8437,8525,17528,29833,30156,35506,37201],1309143915563050863325885413],[[45458,45465,46393,58166,8997,22990,45728,26946,62705,34965],1309143915831891809422106496],[[56756,58077,58079,58152,3919,17140,29009,6732,9078,17510],1309143915802388529660575353],[[58075,58090,58153,58168,9261,17529,53960,46964,57899,34150],1309143915524461865815389998],[[58119,58148,58154,3918,7080,8438,28979,34742,52523,62916],1309143915860685306080015392],[[58155,58167,17141,17662,23455,23524,29560,46715,7271,23470],1309143915799883630233112948],[[58198,5552,7105,22103,23452,34533,53009,46120,9080,17451],1309143915796901246643195887],[[1458,2427,7103,7339,24609,26511,29586,10481,23192,3890],1299713690784549866216220025],[[5549,8526,8986,17512,29901,35515,35757,45793,46183,46224],1309143915857470623549705436],[[5877,7087,15132,21926,26431,30132,34590,57697,46223,37508],1309143915587066860074551356],[[7092,8436,14851,23658,29686,31837,23687,34910,53046,5673],1309143915457291441800269818],[[7104,11474,18673,20461,23015,23430,35285,36807,36666,47223],1290214541631234218364416392],[[8528,9182,22997,23335,28628,28815,33376,2800,6747,23690],1309143915795208064362672231],[[8529,12201,23662,26133,28243,29899,47473,54008,11810,15089],1309143915855299957106831555],[[11965,17143,23518,28207,30003,30053,47437,56068,11937,23031],1309143915855096089018928990],[[12205,17513,18674,22852,23671,57648,58030,11902,11951,51134],1309143915854112689841441901],[[22868,23008,23374,26112,26514,29006,60710,42519,45350,23196],1309143915823422142814994049],[[23016,23461,23529,28473,29536,29683,35702,11431,62707,6080],1309143915546886614327894188],[[23195,23424,26426,28246,28636,29952,2967,14041,10526,34215],1299713690895651584723155030],[[23453,23520,28593,29898,30142,21720,28771,51170,10480,16781],1309143915792935463875738987],[[23522,26130,28978,29896,31824,34455,5859,34900,13087,23020],1290214541825830707334354791],[[23667,26517,28813,28933,29902,35697,47502,42468,60607,34149],1309143915546682746239943596],[[24846,26441,28849,29839,31838,35206,35283,35510,29857,14894],1309143915518468667781657616],[[28774,28853,28932,30133,34736,44875,46556,46581,32402,28975],1309143915547870013505612058],[[28814,28938,31836,35747,57725,2415,2986,11898,28959,34564],1309143915822540677681436996],[[28848,28939,29583,29774,46100,62926,60609,9431,34565,37249],1309143915524804300874657816],[[29790,29937,32530,33352,35745,43883,54125,6742,28330,6833],1309143915546886614327894188],[[29835,30143,30144,35679,47334,2966,42897,34909,37498,35902],1299713690607699523599177435],[[29837,30161,30478,31158,36373,22340,46591,36441,23812,42496],1309143915207680790391417459],[[30038,31161,31821,44853,46721,47472,47491,46251,46448,6889],1309143915546784680283918896],[[30475,31159,32531,44874,46119,46612,54000,62700,10345,54054],1309143915795208064362672231],[[31870,33361,34435,34595,35758,44375,56074,2419,14817,65132],1299713688274318305046320267],[[31871,34594,35809,47330,47339,53940,5545,44599,30474,21656],1309143915516298001338221642],[[32528,34762,35748,46610,46695,53032,14042,55848,22106,3921],1309143915823524076858947801],[[32529,34591,36024,44191,46580,52660,55918,35939,47370,9692],1309143915527076901362056521],[[32533,35808,44851,46268,46989,46133,53014,57723,1807,11876],1309143915207782724435419155],[[32535,35814,44876,44885,47487,33381,28996,35208,36084,46540],1309143915485607454303854325],[[34563,35815,44392,53962,53992,57690,17525,23197,9101,34104],1309143915218663558505795058],[[43675,45726,46553,47326,53346,53825,58032,52524,62664,39051],1309143915854112689841441901],[[44188,46241,47335,47369,52996,58036,2802,52929,34964,44960],1309143915794020797097228081],[[44189,46221,46278,52349,53291,2980,46208,44835,9643,22988],1309143915246979571014540946],[[46178,46279,46599,46665,47463,53139,53664,53965,22102,45172],1309143915855096089018928990],[[46266,46275,47047,47384,57724,43672,47741,17465,63666,63859],1309143915286278351636484736],[[46552,46611,47337,53031,53958,61491,42665,47327,9657,44484],1299713687808547402525966199],[[46613,46973,47387,53048,54006,56095,46262,47767,53819,51950],1309143915545699347062224834],[[46639,47328,47462,53963,54872,60854,46230,33362,46106,25941],1299713700681978023418012062],[[47402,53004,54002,54116,57720,43696,18126,46079,52989,36038],1309143915583606992321621815],[[47419,47498,52279,53675,56092,46583,60772,32407,48929,47475],1309143915822336809593529330],[[52294,53033,53951,55897,2982,22417,60691,33353,27419,2404],1299713700336862738493926696],[[52332,53327,56098,57736,55857,62723,17889,39158,52442,41689],1299713697335230261170484267],[[52439,53008,53946,53994,56089,52518,46562,30450,57904,10371],1309143915524804300874657816],[[53023,53045,54423,55899,2984,23824,47670,52990,16812,19725],1299713691163899066600444102],[[53049,53830,53928,54016,58034,44628,39087,9421,44879,57645],1309143915763432184113329912],[[53831,53961,55896,58026,46258,49365,39032,39137,40179,46724],1309143915821149542328109783],[[53998,55912,57679,57778,60717,43875,46111,33056,9644,10186],1309143915286278351636484736],[[54004,57641,57730,58056,14106,22725,29592,34448,36757,6858],1309143915245792303748599605],[[54881,55917,58062,60809,14697,44613,21454,46622,36751,68460],1299713687916919439992536056],[[55443,57696,58037,14273,22544,4458,31969,46433,46972,44848],1309143915819962275062689158],[[57721,58023,58031,14120,14709,53678,4463,32409,35945,57695],1309143915790662863388801798],[[57784,58033,58057,60719,14300,15057,22992,55854,54013,18701],1299713690830693793366290960],[[58029,58035,21681,49373,53620,54256,31970,21922,57890,57906],1309143915760176184448783855],[[59842,1796,2804,2961,4066,10879,28558,6774,32682,46597],1299713690517856305460639202],[[59873,1804,6759,11414,21638,52525,14725,22423,9411,12679],1309143915242638238126765097],[[60723,2962,6761,12233,47744,47764,58972,28247,47352,30712],1299713690860365526901804969],[[1036,2428,2964,29557,11122,29010,40380,9682,23486,11827],1309143915479976920107160445],[[4064,5532,5871,11448,28952,60711,60839,29645,46435,10377],1309143915578282260257267991],[[4067,6760,7323,11910,14798,11861,60852,30054,28385,34148],1309143915202254124281532496],[[6762,7318,11434,12287,11938,14861,46564,52910,9395,6911],1309143915270750382546998865],[[6771,7333,11915,28958,47749,14726,26640,51169,37004,12605],1309143915270852316590995650],[[11435,11959,22613,11131,11893,14863,31982,45872,23380,29846],1309143915787101061592453749],[[11449,12296,28795,33380,52519,21758,59661,34958,37562,34151],1309143915241450970860819819],[[11907,22967,28746,29703,47673,21764,28816,45450,14804,34121],1309143915231655470012588628],[[12290,28754,29696,11852,15005,40405,59432,29834,3650,42382],1299713690952453228065630726],[[12293,22987,23827,42795,62757,2244,46078,53986,6908,29513],1309143915202254124281532496],[[22971,28307,47902,28648,31981,45302,6180,29856,9100,47297],1309143915211845757041980944],[[28594,28744,29472,21283,32408,46587,46277,54052,6888,60788],1309143915172648910461807217],[[28752,30482,44598,15017,28969,46209,9689,34733,10376,28794],1309143915211845757041980944],[[29610,29697,44597,11890,28640,39035,59411,27935,53993,9025],1309143915519071832634155068],[[29702,44606,47726,52296,47005,10252,30160,34959,57722,9693],1309143915460371075228274378],[[43534,43669,46250,46582,56740,6746,16170,35529,30417,22634],1299713697001551469567119470],[[43693,46231,52347,54262,31968,46565,51168,56548,16776,53369],1299713688072849962321042136],[[44604,47788,60635,17886,23875,60018,35440,57687,5754,9665],1309143915251042603620981085],[[46601,51553,55851,60774,31063,4845,9420,9198,35915,16532],1309143914943918462009928884],[[46652,62673,62709,17887,40379,16815,17461,54046,9109,9398],1309143915221641257890360358],[[47728,60773,62942,12879,18102,5798,9245,35443,44331,60154],1299713691957677340531081009],[[47729,51579,60661,23872,31980,39067,46210,46220,35586,35921],1309143915548473178358095964],[[52498,56735,62936,18100,42461,42503,60606,3920,9028,37210],1309143915280443949350941503],[[53690,12876,17870,26911,39041,40163,46577,52955,27932,44846],1309143915786897193504540564],[[62718,11017,18101,26920,49260,58963,59689,6890,35384,16414],1309143915002415351350931464],[[62922,11170,11936,12022,22335,23029,59279,23483,53607,6818],1309143915518867964546200144],[[62933,12019,17872,40403,42459,51882,33340,29954,28384,60198],1299713688509900303523621907],[[11849,11892,13174,33193,40404,59486,59946,23458,22516,53683],1290214552969915164088065923],[[11891,13168,18125,46563,52913,58956,59436,33058,47353,6828],1309143915518766030502222670],[[14727,14778,17871,23874,42458,17017,54022,8178,1726,40691],1290214539595339096835360813],[[14781,17888,23873,39038,60741,22020,23490,5881,10199,51386],1309143914943510725833839871],[[17873,21302,40402,42472,52331,59660,60601,23460,54130,6840],1309143915479569183931238388],[[18103,23028,28223,45189,45440,46372,29793,29848,30063,23471],1309143915489364684777614597],[[18124,28233,29011,46387,46436,60700,23467,29994,43636,50179],1299713696932820683850897369],[[18127,28819,29692,42842,45447,46504,9684,23693,55041,62508],1290214546525027534982933825],[[28818,29012,31971,45324,45871,46638,5803,9079,9686,30145],1309143915727992568022746549],[[29013,31064,32403,40378,42701,17656,35211,9213,63646,34103],1309143914943510725833839871],[[29589,31065,45310,46243,46573,9005,35936,53051,5611,68947],1299713687906923827356230441],[[29689,31983,42544,46367,46447,60681,6745,9674,28244,35204],1309143915727992568022746549],[[32405,40165,40381,42640,43729,46961,47000,48990,23645,23672],1309143915786795259460583960],[[32406,40181,42463,43739,60694,23301,23478,33375,57775,2757],1299713691069963507337101960],[[39033,42474,45870,53818,10335,17500,53665,35984,7206,23082],1290214552574735297605948836],[[42460,42494,45873,48895,48996,60738,60756,6744,9423,6921],1309143915518766030502222670],[[42492,43738,49165,49258,51007,60759,23193,23474,12520,60628],1309143915172343108329793898],[[42508,43728,49259,58729,58960,9422,35932,6893,11864,43959],1299713687563509020194419533],[[42775,46619,51171,52995,60052,62378,10229,36087,44858,6822],1309143915489364684777614597],[[45325,45352,45437,46392,53003,53813,30477,7173,14699,53274],1299713687395525493796842103],[[45326,46499,51137,51944,5551,6775,17526,29869,30264,44010],1309143915113540416864357198],[[45327,46101,46434,50997,10330,10482,10529,10216,22545,31495],1299713687375777396365880847],[[46211,52227,53037,59688,4844,7337,8991,47366,53968,6301],1299713690706723918793985371],[[46445,49261,50996,58959,7340,9244,9677,29875,23011,8183],1299713690407494163261192882],[[46505,52278,53022,6177,9262,10525,44838,36958,37713,4162],1299713699982819808595988870],[[51850,52236,6773,10232,16810,17674,29877,9690,52836,8571],1299713690107905546099098555],[[52988,53030,9418,9687,16811,30108,37270,22506,54758,26115],1290214547702391655787573497],[[53812,56561,5548,9688,17509,23663,4133,7134,2444,48754],1280644943144097847577364153],[[58540,58949,59281,60807,16200,21992,3628,6891,23339,1889],1299713690048734437643083379],[[58591,58952,58955,59415,60736,17524,9108,23491,6910,61532],1299713687796210934673984726],[[58709,58961,59313,9425,10483,23468,29849,37461,22614,14271],1299713696603617397698060845],[[58954,59280,59480,60608,9081,29951,4216,5232,23475,6860],1309143914675481496702827660],[[58957,59314,59926,60747,17527,3629,6918,29709,2750,58707],1290214538607749167027597612],[[58958,59278,59483,60675,60779,23484,47354,23462,28964,53697],1299713687627083307045188701],[[59312,60066,60604,17653,23328,10370,34101,61269,15236,22452],1290214536471702757970991697],[[59477,60615,16777,16996,23494,44593,28544,29715,61304,12155],1299713689741581432962559107],[[60737,60782,62394,9675,33057,36011,47367,7146,35621,6916],1309143914884708034358124730],[[5880,9432,10527,17677,28854,37361,6841,12688,28965,56275],1299713689842009319118675018],[[9267,9676,10348,17497,28176,29797,33090,37499,33235,4014],1290214561147417995895754048],[[9433,9685,21729,23376,29777,34560,35441,54133,28410,53625],1299713696755132660912614661],[[9683,10528,17447,23696,34428,47359,6881,25969,22717,49108],1280644929521741397151444347],[[10249,16778,17671,22109,23479,33341,46718,37271,63707,6615],1309143914796503997139599702],[[17508,22565,23300,23456,35587,46280,9273,37557,63684,3895],1299713689847798172773247614],[[17511,21929,23454,35575,44573,47357,53667,16413,21106,29883],1299713690074992983735935686],[[17680,22108,23349,29781,34838,44870,6859,28991,2725,25713],1290214551303570185527916160],[[22625,23495,23639,35573,44847,3109,35385,27418,2411,53798],1290214548944182364950314281],[[23334,28148,29832,30119,30453,33088,47418,54056,6832,60654],1309143914995935033925560095],[[28565,29836,30074,34753,47428,54057,6919,30002,20167,2343],1290214545861773471856269653],[[28606,28850,29868,9129,23412,37706,5614,12516,24134,64419],1290214548045261770370361578],[[28851,29838,29872,30065,30155,7147,37503,50214,54544,66986],1280644939757092158226152277],[[29851,29936,30001,30072,5674,8337,23342,16409,56887,11224],1290214537760853352498802634],[[30039,30118,33089,35934,47385,9388,29965,34134,56868,29225],1290214536254260341086673972],[[30109,30150,34589,34739,35442,44591,5876,12682,16557,66128],1290214549493263716569878942],[[33059,34561,35507,35580,43851,53929,10183,6852,13192,48582],1290214539328149290117120313],[[33374,34530,34759,34901,44352,9435,10255,29841,22982,8554],1299713689567957652880094284],[[34588,34856,34911,35207,47329,9021,37707,46589,49477,39020],1290214539728959663082442552],[[34843,34898,35944,47432,52433,9029,37456,34115,46543,25258],1299713689610953991272807030],[[34908,35524,35581,44849,47388,9230,2431,30742,15265,15970],1280644951238283303090802266],[[35574,35935,36085,36377,45711,47485,53995,9387,37207,51457],1309143914796503997139599702],[[35582,35947,36010,44574,47050,47503,30268,47291,60684,61185],1309143914440285573921894948],[[35583,35937,43867,47331,54142,57905,9645,32887,42533,3925],1299713689721833335567244272],[[35584,36032,36372,46132,52652,6892,26325,23027,14551,53244],1271003273356310830868798120],[[35585,35938,36029,36435,47056,52630,57733,63658,46547,57297],1299713687395172680287407119],[[35946,36436,44866,44871,53047,53194,63835,34119,29383,53613],1290214536504668342546870108],[[36086,36379,36437,45703,46281,53935,57908,6819,9414,53976],1299713687296799957521466497],[[36382,36434,46276,47452,53140,54044,7237,37235,32543,9396],1290214541151992259382488862],[[36439,44863,44873,47355,6821,7229,37680,63827,34114,61405],1299713686757932124148920385],[[44575,44872,44957,47365,9389,37251,11877,27420,61184,11228],1299713690548320879623381830],[[44576,44882,47492,54050,6823,10258,5620,12515,8564,75076],1290214538220854010701618661],[[44592,47364,47484,47497,23464,12518,12525,28962,6045,59954],1290214547729658792627428208],[[44963,47436,47454,54136,57907,35381,37441,22272,25970,10425],1290214540886893787770758486],[[44966,47449,47486,52341,57909,34152,46227,17039,65579,68902],1280644935791006703682127258],[[47325,47363,47474,52287,53978,54051,9386,10351,6619,22981],1309143914518679267124923939],[[53050,53997,54049,54121,9436,37497,63826,6861,21205,1665],1299713687571550532906108953],[[53609,54043,54115,57939,9663,30239,19704,23746,50485,54304],1271003273873257035523405534],[[53999,54048,57910,6829,10354,30130,26932,42874,53476,69229],1290214539287978967104088559],[[54124,57638,57727,57932,9437,35591,1811,11865,2730,28159],1290214550466203859354424073],[[57676,57698,5675,35530,35590,37230,37250,37272,12517,14760],1309143913564167733001692815],[[57694,57718,57896,57911,9691,37496,63678,12511,14157,22050],1290214540983575720518998847],[[57719,57893,23350,29840,30131,35949,63819,30473,31299,29860],1299713688873196603598750108],[[57781,57933,9268,34082,35876,36756,12510,61283,2231,47307],1290214537245273557835507849],[[57938,3634,4170,4729,9128,29873,37515,63858,33357,2720],1299713688625909784335618074],[[3163,3649,4751,4916,5255,22509,30098,37517,22581,42932],1290214547417854530049779734],[[3168,4742,4904,5217,5252,7118,2790,7985,2894,29373],1243162649511252305128271299],[[3635,4167,4743,4948,9126,29889,32671,37500,45951,29746],1299713688319158922829141642],[[3648,4731,5218,5253,36929,15153,30737,9648,29770,1358],1255369178360574348114741267],[[3651,4208,5223,8192,23487,30028,42711,43014,39817,65581],1271003267542738027614815916],[[4750,4945,5226,8193,22626,23413,29888,37501,7398,15233],1290214537914828441172471180],[[4893,5219,5229,8476,23511,36891,37447,11919,8166,53483],1280644931399875594212082148],[[5254,8158,8180,9127,22480,29891,37048,37502,22060,46217],1290214539719070087208787146],[[8156,8164,8473,23381,29843,29847,37020,24116,6329,45716],1280644933855252560908578115],[[8157,8194,8487,29842,29850,37049,37701,28997,18727,48689],1280644929005584062278290387],[[8159,23463,23512,35880,36928,36955,16408,52843,22486,24735],1290214549914349568569462744],[[8195,8364,23510,29890,37446,37702,16558,28187,42712,54204],1271003283188945906442001427],[[8332,8387,8477,30235,30427,37021,37647,63829,13592,52662],1290214540835392204169345161],[[8341,9434,23513,35386,36916,52840,18342,14193,25964,22212],1271003275146943343259055451],[[8386,8486,34085,37022,37650,37700,11916,30463,30713,10423],1290214539972783459862507119],[[29959,30121,34084,35950,36833,37010,14715,46541,20974,28205],1290214539975288154257713509],[[30029,33298,34087,35612,35951,37364,29516,25931,56027,63098],1280644931254957167612037720],[[30099,34086,35555,37248,37469,29714,45960,50041,56898,43197],1280644931640906798524324891],[[30120,35387,35480,35562,37509,37556,6906,7319,25553,48683],1290214537219305156355869057],[[33295,34089,35214,35588,2434,11967,46105,24144,19476,69451],1280644932277341448593906191],[[34088,35535,35615,35925,36889,63864,2780,33410,18704,4016],1271003288804661450359468154],[[35217,35571,37516,63642,6907,12609,16423,7193,11034,39123],1280644940655529583763079111],[[35589,35875,37351,63679,11904,34105,44378,58637,43957,64847],1271003276324591771714259508],[[35877,35881,37436,37703,7327,44064,26849,42373,44424,49253],1271003279104696984665463173],[[35911,36385,63667,63710,11917,11954,33264,26300,23498,36250],1271003284716621041446160342],[[35948,36035,37514,63808,6878,12617,27421,46118,12903,40532],1290214535579560823754411443],[[36388,36917,36954,37468,37654,12519,16425,6063,1259,53442],1280644941674089231663034419],[[36750,36960,37038,37273,28411,46645,2439,10410,49596,29918],1271003273048880109914045050],[[36802,36890,36961,37677,6854,12685,29558,32550,59129,49230],1280644927684752794652825355],[[36836,36888,37652,37683,4134,15129,21365,40151,28714,51088],1261287918799311509043736012],[[36952,37039,5667,6853,12514,1317,22401,29763,42046,39816],1261287931749137411675114481],[[36953,37023,5872,6855,14828,31517,46568,15509,28651,46956],1261287912965617412778405698],[[37001,37354,37510,37653,6839,1261,70087,56866,65547,14974],1261287912285795892953688226],[[37007,37511,37655,63828,16406,34120,41713,25932,13108,36214],1271003281249482147438396291],[[37563,37712,63677,63811,6883,31302,52953,55858,7407,64240],1280644931061651767071988352],[[63663,63664,63676,14714,15100,16407,16517,46247,6997,35522],1290214536641699970504918739],[[63665,63681,63833,23815,42483,44011,46542,20947,21276,43255],1280644928974626504912431258],[[63816,63834,12621,21160,28595,28963,34100,61298,62042,46246],1290214539769769297657381870],[[63832,5860,21662,34098,42482,42072,60795,68257,66898,13022],1261287913609746741682498375],[[63865,6879,7172,14743,32683,47290,61191,28158,5731,53511],1280644930147368606760632391],[[4135,6880,21721,28761,44209,25289,30771,14395,50434,24528],1261287916360928102080580384],[[6882,12521,12524,28989,44075,15159,25042,55879,31746,66991],1261287935806238018262226626],[[6909,16444,33360,42783,45963,2814,1779,56897,51691,52092],1261287914880966510114027112],[[6917,14930,22993,32889,46288,26852,25213,22063,29414,52745],1261287922709866263698148692],[[21078,22275,22469,32883,34118,25959,42173,42065,60785,41493],1261287935513314240605009469],[[21682,23006,28758,28797,44213,25231,44687,14429,38197,72661],1261287926038738821813078593],[[22289,28767,34116,47296,53581,32645,17030,15281,15981,32353],1261287942135355935623458362],[[22307,28540,29708,32885,20141,26009,4049,22074,70260,7124],1251497146564218840718425441],[[26929,28559,30255,34099,44037,46575,50722,55303,11216,56131],1271003271691773612132916641],[[28759,34130,44016,61285,25144,55023,56002,62923,32432,32367],1251497157354588872504124438],[[28760,28770,34102,61295,7283,2810,6322,62488,67956,49977],1251497141593057396013915544],[[28973,30251,34131,46286,53594,50018,28241,65693,74391,70343],1261287913997182602671026058],[[29528,34117,42550,46292,22667,46898,18345,10938,55838,66576],1251497142646185422871640053],[[34132,44008,44035,46593,61190,31243,14621,13039,41823,65876],1261287922365267749544409853],[[34133,46218,46579,6299,15117,25287,55250,47238,6129,56125],1241629177519541091866185790],[[34135,46238,46290,22636,53134,14304,24135,7402,68076,65420],1241629187850095569740190491],[[34137,42497,44009,45962,61271,6279,31593,41897,11874,59258],1261287928216524889137560993],[[34146,42909,52999,53654,61187,41287,55532,1255,43719,51982],1261287914631483744559775888],[[34147,42757,53028,61188,31504,24097,26134,48334,69595,72676],1251497139839496248713057460],[[34153,46546,52328,60705,13608,55549,25217,14962,66743,57078],1251497138457203981513926657],[[44015,46661,15140,2443,26848,49519,18600,19994,30835,3349],1231682144302849134525669672],[[45961,52024,24129,26824,53671,55751,36651,67329,54061,57548],1231682152503098427292157828],[[51413,51453,61301,32653,49886,18410,46265,24535,61377,17573],1241629177842889532409464037],[[52285,53020,31267,43679,50659,24883,22039,26707,51734,60049],1231682143384812415306833224],[[52835,52842,25026,54730,26274,30605,18708,29255,15511,69259],1231682140778017665817227654],[[52841,53563,60704,43664,19433,24128,30617,5972,15008,64504],1241629170158599315766169552],[[52935,60764,60859,30718,44373,56170,70090,64241,43353,51772],1241629176832488763459233319],[[60685,61186,26831,60195,55774,31660,858,6140,28968,43333],1231682142454307127132769231],[[60765,19882,49847,2448,26851,25736,31643,7965,64372,64575],1221654125163788943239924662],[[60787,60819,7290,62295,24738,41875,26303,30751,1436,71961],1231682139462409453068899116],[[61180,22585,22380,15072,62306,25257,56298,5843,40692,50155],1221654121729478531084882404],[[61181,61189,25156,21567,31574,1888,46255,69388,68398,69430],1231682133761256063377652799],[[61194,2776,4144,7276,11031,22077,4355,38246,61907,50255],1221654130471260921873284936],[[61198,1318,29389,43688,47756,18852,34205,22049,60753,20009],1221654121424538453587484332],[[3462,4002,33390,26299,60674,48326,41930,26693,61056,66903],1211543099281128586049885194],[[3473,53165,18424,7296,17103,23753,5243,42981,55842,66574],1211543098711423706655106195],[[4194,33408,29408,46893,24151,40830,4052,30405,54305,33573],1211543102140361131832909021],[[4197,33388,11219,53637,24284,2715,4288,54609,67647,67999],1211543100285215103070917755],[[42161,41302,14657,1727,52588,22038,6278,21223,14343,12726],1211543087992582661289173488],[[53452,21586,43703,34216,32547,39656,39070,42724,66839,74744],1211543080436221312916689302],[[14666,23063,49710,17098,30714,28768,54234,66712,57075,46621],1211543078832330261840462700],[[56185,44682,18855,25267,14719,3530,6115,55323,68445,61410],1211543081468392508597476800],[[26008,14617,54508,24100,34206,36667,426,59550,53797,51106],1211543082924507884419910295],[[40792,19671,47759,35570,2774,12154,46904,50484,70013,70392],1211543078016746933851202268],[[49735,55255,30374,30738,18697,6298,12174,70099,43769,24588],1211543080997780926209404708],[[52597,21360,5838,24117,23505,52640,29186,40540,43579,65017],1211543076946474252812252855],[[19670,62071,25269,35930,862,6168,509,62519,47714,41527],1211543079707824182188357352],[[62919,28215,10947,2724,6951,8561,69493,48615,53700,59406],1211543077516608609232045657],[[18593,32554,28186,4304,62497,53808,48727,67655,65711,74764],1211543075064764870524852791],[[24295,24886,13195,28783,2236,5958,13589,41307,69890,40150],1211543077290309838469246732],[[31721,11931,47239,4000,427,66982,14610,58645,33325,18879],1211543074552994834898420277],[[35545,14700,28231,2782,29748,64906,41283,63269,68098,69620],1211543074651154820487559379],[[36650,60703,3118,4015,3894,19582,12063,43766,67457,53068],1211543075235138945159882197],[[28811,61094,4466,6967,15227,65421,51778,64925,39202,50006],1211543070706859714386048843],[[32429,1439,2731,3519,10408,39014,46887,38373,65391,69269],1211543075467612545018724991],[[32434,61095,4475,7011,1672,19571,21291,66698,43300,24584],1211543072342612944032302846],[[47222,2786,3128,4352,9671,507,39126,40724,41236,50051],1211543075356872486664838379],[[61114,4003,4478,3924,23086,12922,48888,49972,75014,75069],1211543072942837891979026925],[[1787,4487,6134,28798,54592,60151,40693,64689,52703,38413],1211543072256843703118907529],[[6277,11914,62484,64923,56869,19543,48745,66842,74723,67957],1211543070872417967660241663],[[7411,3888,53012,13611,49499,65028,65586,67327,38617,31105],1211543069104566555650389970],[[9415,56888,66100,41938,56867,39243,69351,43338,54308,38578],1211543067832247104183783308],[[11895,42502,68100,14436,48647,42048,64110,68017,26073,54210],1211543067885445264589078401],[[12175,60767,66995,14606,32352,64432,74466,61404,66931,52731],1211543067789614501317240589],[[29761,53039,11231,19520,32366,65917,42725,69289,26076,43136],1211543067768142713406562212],[[39650,11856,23166,43772,19935,43142,43354,62783,68599,68941],1211543067313004447694503143],[[42509,1254,62512,2334,12954,65438,75193,51773,23950,67991],1211543065507131363514423664],[[45722,23189,15230,18728,40529,42976,43355,54307,67087,18443],1211543064358655484210591318],[[59526,23058,12935,33758,51714,42049,69353,69845,64148,26075],1211543065403446236310660024],[[62493,49541,7948,38281,48918,67642,69234,20534,65534,74370],1211543065253904147483607004],[[14402,19969,47123,40528,51885,48946,68448,64908,68676,64692],1211543062873700172213840923],[[53787,23177,48550,15018,20705,49973,68259,74770,60958,41362],1211543063094240439863691153],[[23178,38354,15501,51964,48670,68170,69394,74771,74740,20720],1211543062548197088452654057],[[47144,20712,50431,51516,51855,75071,52109,68966,53390,53432],1211543061619785546435076826],[[61017,39088,39227,50430,54230,68255,69261,68074,64474,51839],1211543061778750709848058710],[[62523,40533,52038,54205,50487,69264,75068,15937,67071,73099],1211543061643067346274141771],[[42940,43141,50435,61927,50486,65712,70012,74766,70254,18464],1205380089666074039592034131],[[43263,54201,67650,49970,64568,65858,69256,55844,67090,65578],1211543061243282497908646221],[[51494,54231,65941,48951,65710,68012,24534,68424,67540,72520],1211543060630506393905812080],[[51652,72012,49971,51893,69294,41966,54309,65708,74872,19634],1211543060364267828444959383],[[54235,61545,38396,51896,65542,74368,46157,49573,54310,18263],1211543060759722878733647166],[[38193,40690,64964,65707,74765,43296,69726,19911,72014,42633],1211543059524934532474361673],[[72032,43025,64688,64967,65595,20645,25765,24590,54216,29180],1211543059744396754483787001],[[72876,52091,64369,64690,64966,21695,59955,14907,13643,46202],1211543059991740471987390238],[[72906,52116,64965,69226,75080,21734,67709,69986,13650,72497],1211543060104567929870521600],[[73240,65056,65591,65861,74453,74767,67398,69961,12878,1529],1211543059891957010829883272],[[73248,65551,68459,75038,75078,39003,51669,69954,70173,15514],1211543060299737673642046277],[[73253,42047,64691,65029,69355,75009,41969,53709,65250,41193],1211543060586370246306145668],[[73261,64569,65078,65706,74456,43050,69886,74039,74873,43099],1211543060039673372560285996],[[64149,65535,68252,69389,43717,65256,39244,51083,69109,51273],1211543059378823991426730209],[[65439,65713,74369,75039,75082,39005,60832,67296,59996,69008],1211543060057144165447436757],[[65692,67923,68258,74390,74803,43329,66722,66913,67066,26077],1211543060166652170567928825],[[65855,66695,69291,74716,74793,46033,56130,66577,21309,45652],1211543059945666565434364287],[[65864,68173,68256,69286,74768,48359,70205,53380,68628,58134],1211543059753226939453223029],[[67995,68171,69395,74463,75079,57292,64830,70261,49600,28180],1205380088076747273969861331],[[68172,69237,74819,75083,38449,49586,66086,20671,64821,60185],1211543059531499398991896312],[[68493,69354,74721,75073,24529,43324,62785,67332,39228,42794],1211543059792249227610255565],[[69350,74718,74769,74809,41767,60862,68610,69960,65419,14560],1211543059815823641896071542],[[69352,69844,74717,74788,75074,67333,67699,67571,53508,16345],1211543059415423443608740731],[[69360,74720,74818,75049,41973,47715,54306,61411,73586,59973],1211543059599700335101159188],[[69361,74722,75008,41975,48382,55843,22458,54211,67070,66417],1211543059220508339771289227],[[74719,74808,75048,75075,51791,64889,69597,20726,52698,67557],1211543059702310656558483101],[[74798,75015,75070,52057,62782,65201,70255,70229,11645,75305],1195928181160263346238308692],[[75072,75203,41763,44421,46040,67045,67478,42796,65548,70802],1202139610540142745692735141],[[75077,75218,14846,43051,63099,65390,39814,51715,73079,49205],1211543058789994391530713972],[[75081,75219,50247,53215,56124,65394,38395,64476,65716,53364],1211543059092428949283295750],[[75196,75224,15462,51779,53221,66083,19613,51040,53083,50048],1211543059021705706382243856],[[75206,75225,49576,66284,67463,68593,41784,67734,59580,40996],1202139619796296946780530423],[[14848,25759,38442,64893,66080,68655,68964,58744,59256,59811],1211543058375577834039631617],[[15481,21177,51790,55839,67300,22740,43088,43264,22882,26740],1211543058102654347741224784],[[15946,47717,48685,51796,66285,11980,19213,26873,64150,59234],1211543058188316086545831238],[[20552,20609,43352,52131,69614,41542,65588,33321,69188,62324],1211543058280850210681986932],[[25761,48704,63268,65154,65203,66914,64570,74371,66420,71430],1211543058263389408068410394],[[51797,55840,57061,67698,69725,39924,65038,69339,46339,18887],1211543057747639403859762085],[[54311,60934,62784,66808,67697,69591,72660,49413,7304,43071],1211543058114178493043349288],[[55841,57064,64520,66283,68965,65541,51552,61388,68572,69268],1211543058323368101035459072],[[55845,65137,66089,66919,64572,72702,73946,44377,57306,58164],1211543057980937964433276961],[[57289,65395,67039,67330,70214,74833,43525,68735,33274,55692],1202139618820150336284111518],[[65149,66282,66925,67437,67678,74741,52292,39966,45449,59004],1211543058059105831568730493],[[66734,66800,67301,67680,69751,41263,74025,49416,61376,50306],1202139616917047578815447884],[[66920,67042,67063,67326,68234,19643,30836,42094,53707,65674],1211543058297625485866949841],[[66928,67048,68399,68672,68945,31482,42356,70927,68475,59408],1211543058080916712758784890],[[66933,67328,68423,69895,40148,39927,61385,65803,69300,48702],1211543058147767791073227892],[[67297,67331,69617,70346,65742,71963,11247,69257,73803,72034],1211543058171342205391042473],[[67663,68643,68970,69593,59259,65585,15512,43714,14318,4345],1211543057737678797591118705],[[67708,68204,68673,38411,64475,64757,65695,18269,68992,3976],1211543057824026063850160978],[[68193,68623,68677,68943,69623,65694,74882,15014,20678,11169],1211543058257202550159090668],[[68218,68967,69750,69898,70364,38612,38846,41644,44303,68646],1211543058364675170137715862],[[68968,69883,70185,60078,64574,51686,41330,65596,68176,62451],1202139618451045177070425463],[[68969,69889,70127,70347,64109,64571,21236,40749,68653,72574],1211543058190911639518016171],[[68971,69906,69955,64242,65537,14943,48240,52359,56205,49310],1211543057974824347788685618],[[69907,70130,70342,41266,65714,39896,68571,69299,50175,38233],1211543057951899445540159772],[[69974,70154,64252,64819,15410,17080,53226,13759,60183,52367],1211543058058846168845214269],[[70163,70267,70368,59612,65709,74883,69290,69415,53703,69104],1211543058038885743856978774],[[70278,39815,40149,64477,65431,19210,21312,66499,71379,71514],1211543058119119398391749508],[[70388,58479,59615,64243,65717,15179,61381,38268,33451,14950],1192662040214035006055571005],[[58491,59257,64760,65715,72055,74746,59133,59571,38512,75302],1202139609415358967529925129],[[58741,59614,65437,71777,15500,24586,42941,40091,41257,13789],1211543057906181241094491139],[[59613,64573,65413,72099,48542,40094,41258,69260,45744,68634],1211543057840456116300121384],[[64257,64845,65544,65736,15508,19652,42853,51053,68616,69292],1211543058072656097182118974],[[65737,67460,71960,73940,15443,38771,42574,59609,58598,33766],1211543057239795908627231851],[[65743,71747,72054,72704,74392,74503,73585,26569,13049,1307],1211543057342976156628680153],[[67574,71722,72057,72785,74393,74747,24591,58724,65621,14674],1211543057952349141089642392],[[71770,71923,72618,74493,74506,39160,41635,66078,18440,3538],1211543057386524672826915489],[[71859,71962,72056,72629,73941,15502,41822,11161,26744,60129],1211543057796540420220644676],[[71862,71919,72114,72677,74034,24585,40720,26685,3837,191],1202139609844649305507082509],[[72098,72134,72628,72663,74033,73185,22524,1442,3842,193],1202139609196601022507914526],[[72619,72658,73153,73996,74038,39897,39926,65035,66349,7142],1211543057449936556852934134],[[72674,73058,73987,74183,12245,13947,14528,23953,73100,38581],1202139617524650311988906239],[[72679,72788,73059,73152,38275,49417,40095,41194,32664,35382],1211543057144517624479199616],[[72703,73947,73986,74024,13935,14544,39141,12133,41750,42052],1211543057621724182193106222],[[72705,73997,74020,24589,38240,39226,41214,62329,19775,6372],1211543057300810494615164507],[[72706,74026,74203,15029,15521,40536,63089,64220,41371,40525],1202139617457076148090128235],[[72707,74021,74202,38595,38767,39900,51622,64111,65867,22666],1211543057630142635116588764],[[72714,74022,74037,11987,39901,39947,42933,54214,26571,41842],1211543057301371013323039959],[[72715,74027,74036,74496,26886,41773,38559,62787,42055,7821],1211543057343380824353482459],[[72791,74023,74743,39246,39944,65587,11215,15210,40722,22784],1211543057091982799185979019],[[72794,74032,74176,12253,18262,65580,65195,18438,41777,22123],1211543057091982799185979019],[[74035,74173,74208,23951,26631,51677,65594,66892,72546,60746],1211543057685209312414061672],[[74186,74209,74828,24587,51817,65494,65809,71510,11164,52280],1211543057343557482193351553],[[74742,74745,74830,39929,40541,41817,67718,54240,35469,55808],1211543057624171967869646623],[[74829,74832,14347,20706,40705,43585,54244,38522,52983,69338],1211543058005937834412545204],[[74831,74834,15190,15520,40537,51058,11252,26568,33226,8027],1211543057002718910071101692],[[74835,74871,20707,26072,28321,43588,68039,70931,70123,23319],1211543057748483904186569331],[[74856,17077,20051,20728,44323,48156,64221,65198,71511,44891],1211543057810571233632900313],[[74861,74866,20721,26070,38571,52733,53391,68249,68899,8026],1211543057464875052711759643],[[18268,19919,20054,20727,28344,43956,22849,33303,26682,12523],1211543056732644789198154830],[[20729,26634,39946,43137,51931,42822,67560,66605,71023,45732],1211543057593935706644868553],[[21251,23952,28575,43192,51618,42095,64493,43711,51271,26917],1211543057530523817685327951],[[26071,30834,33186,41816,42876,39965,65079,59407,39162,15105],1211543057123760616281103188],[[26074,28611,38805,43238,52690,61384,40748,70366,73759,65207],1211543057829651996975679098],[[30837,31476,33187,42357,43118,43209,42573,22441,62323,72493],1211543057677897953444951207],[[31477,39548,39949,42355,51653,41529,65771,44488,31327,33664],1211543057033080970335127484],[[31483,42354,48415,40750,42096,65470,65649,73809,42827,23591],1211543057636122170563934075],[[39542,41672,43093,43202,51036,50050,71300,29691,23321,29795],1211543057486325799301024433],[[40701,43177,43958,50195,52686,48690,65550,65041,2487,15262],1202139612740137899183203968],[[41703,43233,43530,51042,52730,64891,67095,66013,26570,36232],1211543057548550406175514153],[[43117,43224,51488,51682,53417,52746,71301,70225,33618,53920],1211543057531711089890592134],[[43256,43582,44302,51038,41765,64885,68766,41370,44391,60368],1211543057508786187633681669],[[44339,48426,49140,49412,53109,51109,68606,46341,5299,28875],1211543057486325799301024433],[[48607,48728,50071,51613,53216,64556,69266,38173,62328,41995],1211543057571010799448076667],[[48729,49134,49198,51510,39967,57070,66502,69337,71523,31810],1202139609085374950682599460],[[48753,49157,49601,51078,51822,64378,70933,39672,26746,53644],1211543057187172500320874843],[[49240,49597,52700,40090,53218,64557,69301,12127,60603,2367],1211543057100480135633390973],[[50065,51503,51627,52684,40751,64494,31478,33733,22258,23547],1211543057378926420510690076],[[51481,51965,52403,54245,52747,53371,64695,71683,59409,1013],1211543057307128023525482324],[[51578,52688,52701,54217,58751,65679,73756,3913,5303,23590],1211543057449917043935552202],[[51816,13771,41336,38397,65576,66689,23592,19794,23118,7148],1211543056892699603609716213],[[51823,51997,53178,54239,38511,65205,69298,14285,66423,32644],1211543057325051210294420588],[[52039,52406,53381,59978,52984,65036,69190,45375,7995,30833],1211543057445018725227761838],[[52343,41500,60148,39964,64970,69405,72548,54208,57650,22036],1205380085584338401232783177],[[52728,58767,39199,41544,65543,72496,73307,4270,3733,6557],1211543056546656263632714157],[[54238,61380,42097,57069,65873,69839,62325,73080,60530,34188],1211543057128791270889801127],[[11165,59132,59931,43026,67446,11547,63105,12135,62320,3147],1211543056907472257621776582],[[59128,61389,42824,43015,67733,72407,73310,10954,25455,21325],1186400991243960048941871524],[[59948,60029,57298,65496,65536,70006,71521,71347,38526,42785],1211543057064794138537196316],[[60056,50049,65468,65678,70007,73582,56199,71267,47317,43082],1211543057338342109655534231],[[41759,43721,48671,64492,66498,69262,69622,70147,36273,39047],1211543057336173903859101963],[[49227,51108,64969,65552,69162,18265,38175,41375,53908,53930],1211543057251699432258724832],[[51107,52365,65546,68174,68734,45742,71377,71431,36217,52715],1211543057251699432258724832],[[52117,63094,65583,67094,68344,53509,56204,66618,68635,35132],1211543057313924049027382595],[[52744,63259,65539,65777,71676,41470,60896,65070,73197,43633],1211543056952546143102759159],[[63264,64694,65590,66692,44372,56201,71271,71455,44842,41495],1211543057164850431064390367],[[64375,64495,64971,69265,18259,22443,53705,66007,33730,34035],1211543057182877014618958594],[[64693,65018,69271,70677,71513,47724,71461,33572,33742,33980],1211543057223153457948112421],[[64968,65057,65575,66833,70928,73584,41465,73304,23594,23120],1211543057336173903859101963],[[65554,67924,68346,68529,72406,38433,66084,10077,18433,26044],1211543057189474820427930066],[[65592,65870,68175,70673,71682,54241,62789,4256,33567,34459],1211543057189474820427930066],[[65598,66503,68177,68570,31479,49102,67545,68537,71143,24262],1211543056978947252816957432],[[65620,67987,68596,69160,47723,52363,10245,29173,43287,45313],1211543057040401197508566213],[[65634,66836,68494,68767,53331,66343,71435,46984,36235,52665],1211543057120652402784629122],[[65635,67443,67717,70672,71310,71517,53510,71406,45654,46659],1211543057371039813580627993],[[65648,68345,68535,70674,72439,73760,66009,68510,23295,47071],1211543056975983265205865130],[[65660,68042,68246,70396,71520,68931,46976,20591,36318,36367],1211543057144089529825541943],[[65661,68347,69433,70670,38426,46207,45374,4839,57693,3545],1211543056753081304304495542],[[65675,68582,69007,71519,41313,41554,68933,70106,22057,35341],1211543057166037693387895217],[[65680,68594,69838,70390,50204,62322,46962,32493,47012,43631],1211543056697049880005212348],[[65681,68573,68581,69427,53377,71429,71454,55809,32141,74395],1195928179071947871648477175],[[68991,69267,69403,70930,73808,66081,66774,42076,50987,53427],1211543057185913013693245566],[[69270,69413,70932,71515,47725,53515,66787,73301,39075,42715],1202139618204107187394803784],[[69284,70191,70671,72438,41372,68932,45934,60602,45938,51272],1211543057075267102297545179],[[69285,70180,70237,70675,71677,56197,57271,58196,64365,71329],1192662021609966566527664014],[[69287,70372,70676,39674,41373,50112,62326,53204,7389,61216],1211543056350239677708310314],[[69295,69436,70926,71311,47722,57303,45653,16285,43174,40643],1211543057057240513800316980],[[69296,70929,71522,73818,41316,43723,66891,47709,49304,49262],1211543057102625814288076212],[[69297,71351,71512,73581,54247,62327,69786,26742,49297,11026],1211543057119465130578962115],[[69318,71355,73580,73819,56202,71434,45448,17504,49305,17032],1211543057057240513800316980],[[69319,71375,71524,41363,42821,59006,15205,51063,43070,50983],1211543056908166890864682432],[[69334,71518,72554,54215,56200,64771,71270,52314,51871,5738],1211543056711617583812589147],[[69335,71516,52671,68235,68629,46620,22090,52738,56066,37791],1211543056480967855167732082],[[69336,71525,72572,73763,53463,65098,12125,59945,54067,10040],1211543056731355271036992244],[[69344,71649,31484,52676,68533,71371,73188,53919,58254,61402],1211543056931302336519279899],[[69345,71635,29079,53512,60902,70140,45438,45935,9751,32491],1211543056903943629465938931],[[71638,73757,41374,50093,66347,58985,50010,52262,49976,52223],1211543056822505151969563466],[[71652,73761,53288,53488,64786,71353,33745,15424,34044,54078],1211543056887104313172057480],[[72578,73784,13693,41555,66422,73190,59246,56159,6008,31218],1211543056220379915402198256],[[73583,13718,64526,66421,66880,26045,26416,43221,25763,3470],1211543056415844872368522288],[[73587,73798,54246,64770,69852,60531,21677,21972,55824,7187],1211543056519533214621067543],[[73758,53513,56203,63274,68928,46336,26055,53191,25769,45632],1211543056736843413068387815],[[73762,18267,56198,66418,71432,22729,36220,51754,21759,46840],1211543056720004096772183828],[[73789,53514,62788,66345,69816,70114,20662,6511,6025,6556],1211543055756500943990380236],[[11556,22876,31485,64787,68649,21564,22747,35110,36274,6551],1211543056331370405645034339],[[18261,29055,29407,66011,72250,60532,60641,9249,10072,23597],1211543056670395534870533687],[[29388,66087,67687,72259,72492,4267,4942,10076,41997,23965],1205380084766611407062084819],[[54209,62786,66669,67690,29690,46340,23533,28873,29789,30106],1211543056608170923009883267],[[63104,63275,66416,66890,69619,41745,16510,32618,54106,42966],1202139614771760151723568264],[[64510,66419,69105,71460,29314,7999,28631,53948,57542,2316],1211543056285985115010500996],[[66628,68219,71138,72550,60623,52427,52261,60534,18614,12866],1202139616013455106499465013],[[66881,68903,68934,70230,71428,33574,60533,22867,49196,12075],1211543056419893205205386462],[[66909,68651,68898,72570,33575,20635,21583,32492,47342,57982],1211543056591331611652949695],[[68929,69108,70141,70275,71433,33746,33979,47111,57277,47519],1211543055114131629623909641],[[68930,69616,70270,71066,15497,29535,29967,35456,53943,58249],1211543056574492285472605544],[[68935,70134,70146,71403,73200,33565,36268,46716,57052,7382],1211543056331370405645034339],[[69625,71016,71409,17035,17565,28872,33654,35652,45730,12025],1211543056511080396459707505],[[69860,71142,71400,46963,7994,10242,29224,30004,56906,53348],1211543056527919722640933023],[[71055,72521,11851,29304,46342,7984,8290,28211,25768,32598],1211543056250058685878220261],[[71139,73189,11850,29305,7997,42080,58150,18447,26638,30681],1211543056232032097368713759],[[71266,72525,73202,29590,45388,21713,23418,29773,36325,6001],1211543056240599819433208642],[[72524,73201,29315,45932,8289,23419,36331,45936,52937,22859],1211543056482534422131644874],[[29591,46338,46343,5553,23546,28864,29272,36188,22833,31466],1211543056125609452228429053],[[45389,45933,46337,3911,10073,21903,28867,29283,36368,33619],1211543056126796734317187696],[[45439,46643,1344,5298,5550,21907,26418,31321,32619,32160],1202139632552642378827842990],[[45655,59594,59927,21522,21574,22241,26417,33752,46697,57980],1211543056376111791836540969],[[58710,58951,59247,4939,5302,17563,21613,21978,23431,22903],1211543056374924519630144337],[[58728,58950,58983,26792,12875,42733,29138,6368,27762,74072],1192662028293227237258522382],[[59235,5296,7998,9757,21565,29282,31526,13645,2349,44554],1211543055618490064608026594],[[59595,60021,15492,21563,21956,23316,33566,31530,46892,53052],1211543055995520019971352600],[[59608,1339,17050,21582,21911,21969,45657,47313,3734,36021],1211543054514501394064041649],[[4261,4841,5301,7299,7605,23439,36190,47345,57985,22188],1211543056076278775520318656],[[5297,6181,7595,16273,21906,23427,29787,1879,7211,44231],1211543055409554382245312785],[[5300,7604,8288,21501,21909,23432,29685,29919,39385,54839],1180999792796588124743995421],[[6178,7607,9755,10078,23359,23654,45939,46644,18441,23074],1211543056323219293578233074],[[7594,8291,9254,10075,21912,22046,35453,5036,37765,30007],1211543054115184886216068308],[[7606,8379,8468,10079,21913,23333,36194,52970,53141,46812],1211543056324406570725739220],[[7609,8382,8465,17575,20618,23331,52739,54073,9801,12588],1211543055620304085372589474],[[7996,9753,21633,22259,22295,34737,35111,42639,26825,37310],1211543055731179661887045066],[[10074,10341,21948,22099,28870,35517,36237,36353,31244,9854],1211543055732366929153013700],[[10338,14653,21908,21910,22320,29322,35112,22191,37059,38672],1202139616760418438618064764],[[15385,17505,17668,21612,28862,46529,50053,14859,12042,25407],1202139614641621616462320211],[[17665,21634,22297,23297,29307,29561,46526,30841,5886,63714],1211543055731179656945986219],[[21902,21954,23651,26054,29332,29584,35646,46530,45176,48611],1211543056323219278755056542],[[21916,21950,22621,26797,36272,46720,47341,16753,21480,44033],1211543055353522948001776482],[[21923,22240,22733,23324,27933,28695,30055,34757,18883,16647],1211543055714900859344413877],[[21975,22389,22836,23314,29172,30059,34536,35650,7528,6075],1211543055676335499839552297],[[22318,22569,22821,23596,29771,29911,29917,43899,49296,8385],1211543055981681996635651644],[[22422,23317,23541,29306,30162,33179,45633,7867,9844,10353],1211543055331236391033416660],[[22750,23315,23553,28639,28860,29785,19323,26827,10352,30437],1211543055121673960089395538],[[23322,23532,26419,28857,32490,33751,44932,31754,9200,40514],1202139615401429771488849451],[[23372,23539,29330,30078,34669,46525,50038,16274,12586,48884],1202139616742815739830981135],[[23555,28201,28874,29333,29585,29779,29912,52447,56195,48546],1211543056324406550961503844],[[23593,28245,28694,29331,33220,34668,46524,12559,26828,3957],1211543055483051856678012086],[[23595,27930,28713,28865,33681,35134,36017,46977,2312,2410],1211543055714900844495323957],[[28242,29273,29906,29921,31529,36247,49311,49269,56132,26710],1211543055961841372534926634],[[28863,29684,29768,29926,30830,34439,46527,50055,54072,30375],1211543056076278765638200966],[[29323,29651,29904,29938,35340,36324,56064,53156,22482,7854],1211543055713713592078428126],[[29668,29907,29916,30103,45376,47048,28227,22513,7015,7869],1211543055464398519573674590],[[29769,29784,29914,29924,33422,34741,43895,47110,6057,10256],1211543055676335509721669991],[[29786,29905,29923,33268,35133,35343,36240,52452,4895,29107],1211543055620304070549412933],[[29909,30033,30172,30831,33417,45377,53345,60170,6355,6078],1211543055657682162764104043],[[29953,30040,30832,31106,33662,45937,51690,50036,35499,24887],1202139614344396277497296978],[[30036,30163,31104,33734,36242,45396,53980,21763,10010,37363],1211543055636582868152256318],[[30173,31107,31528,33690,34643,47090,53906,46859,35171,15045],1211543054474817848011002869],[[31524,33182,33287,34642,36223,36271,57280,58080,4174,49951],1202139609182052353836693566],[[31527,33626,35135,35222,44376,47153,47318,46876,31277,50203],1211543055619116803283334481],[[33564,33693,33981,35982,46528,47303,57979,50037,32578,6267],1211543055769744996658953256],[[33678,33978,35342,35991,47152,47300,52453,57124,31249,19659],1211543055714900849462296184],[[33731,34038,35496,45397,45457,51617,33365,26098,9887,16525],1211543055387267805539661659],[[33743,34041,34761,35113,35220,35647,36192,52714,31534,9814],1211543055980494699723574256],[[33750,34547,36018,36270,45460,47091,47301,20049,52851,7195],1202139615088659863846888623],[[33753,35221,35649,44843,44894,46985,57968,46951,15160,63765],1211543055731179656945986219],[[35223,35648,35653,36319,47904,53915,56908,53299,22568,22792],1211543055619116808224393328],[[35651,35954,43282,46184,47415,50032,53916,53422,15139,5029],1211543055731179652004927373],[[35955,36330,44933,47404,47706,58242,18446,36037,44325,18736],1211543054162359882026700310],[[36245,36349,42057,46189,47383,50054,57404,49263,31338,16713],1211543055619116803283334481],[[36269,45463,45658,47306,51751,54028,18884,26124,22081,67413],1202139605657261402188811791],[[36275,44926,46696,47314,47386,47458,57398,31464,32368,55978],1202139614160012375686223812],[[44927,46531,47013,47304,47405,53661,23121,40641,49166,9023],1211543055978120175074239826],[[45466,45656,47150,47707,47907,58218,39134,6995,23627,7752],1205380075209581227041748204],[[45659,46660,47368,56194,57049,57970,13171,13662,32652,6390],1211543055712526319871382365],[[47052,47305,47414,57731,57973,30838,40718,8726,35219,1867],1211543055274017699401959368],[[47151,47302,47906,51062,52969,57981,13660,13788,56127,7542],1211543056016685529602522890],[[47346,47445,50007,53907,56065,57983,12564,32604,36386,17709],1202139632189700980488281154],[[47401,47420,47905,49169,52446,54079,13661,48937,6531,38847],1202139617254313195527369481],[[47438,47708,51270,56067,11021,24532,26639,6261,44237,3445],1211543054132722354346515557],[[50011,50052,53932,54060,57123,31197,7388,36464,37763,31300],1211543054721730689034562806],[[50039,51087,53292,53955,57413,58147,33349,6069,37352,44798],1211543055313770326160092832],[[52436,52643,53324,57125,58094,58220,24332,7239,9884,22504],1202139607750781397616484083],[[52938,53909,56909,57122,57967,57984,18863,5716,6352,3148],1202139625086957816219299193],[[53947,54019,57418,57539,57813,58216,26687,33367,61044,19307],1202139614491678611811627353],[[54066,55825,56192,57419,57682,58135,23752,16723,51452,62201],1202139615037225090582856488],[[56196,57254,57417,57972,57978,58221,13663,18442,6510,6159],1211543054495287548143649674],[[56907,57407,57802,58193,23092,41780,50982,34189,12548,17006],1211543055349961151143812177],[[57416,57545,57779,57812,57966,58105,58136,58248,35023,68000],1202139607578555602250685955],[[57643,57735,57969,58190,21453,46846,61409,31320,17428,13842],1202139616922177390276974396],[[57783,57803,57971,58102,58217,52399,60339,19308,24335,22785],1211543055463211272097592126],[[58081,58103,58137,58243,22738,31537,16752,8844,37773,6568],1211543055024702651537931479],[[58095,58222,13644,17209,22089,41430,6539,9990,36473,61042],1211543054966296677776189108],[[58104,58223,62299,12028,13630,18445,50005,23786,60818,42591],1202139614273827257270591349],[[58161,58187,58197,22098,23117,18877,4224,7871,21661,29359],1211543054740455439246347335],[[58184,58219,63248,18444,19875,59810,24265,2311,2401,9992],1211543055118112148381659697],[[58255,17042,20036,31532,46097,52416,6043,35173,35379,14573],1211543054965109405568410903],[[63238,13741,15172,19845,29196,31202,31725,11968,8134,42602],1192662034687905282199069147],[[13042,13165,13623,17218,45630,56133,1116,10257,769,3444],1211543052689869684525033881],[[13654,14865,23954,38513,42054,5891,12100,31471,6375,44780],1211543054866422551154654950],[[13655,13729,15192,24526,42661,49980,50033,16564,22208,29161],1211543055457274911061124267],[[21448,22726,22911,23123,31533,46077,32635,2309,9211,31337],1211543055075984982142827293],[[23116,23955,25762,45749,16552,23745,30614,12723,28571,55652],1192662037649323310909472159],[[23119,23956,24527,39100,53264,15082,37061,6383,55641,25479],1192662038490929827626997697],[[23122,24533,31536,42053,45748,46849,60538,4161,4602,5115],1211543055324112772612052297],[[23957,26914,31531,38527,42079,46814,46871,30684,31334,32620],1211543055457274911061124267],[[28237,31535,33194,45305,16286,16746,24263,7117,32602,38806],1202139616151522286732755415],[[28643,30840,40639,43081,48902,60136,24834,31662,6373,32753],1211543055114550341666798992],[[30839,33191,40699,45193,52422,22633,31645,3457,19381,9248],1211543053631717688973973629],[[39053,40703,42077,60387,24257,3340,4862,6564,23636,5422],1205380074246515600244295076],[[40645,42001,46080,46873,31006,31472,1112,10011,2432,14802],1211543054450200482396995624],[[41413,42078,42772,60150,60393,60811,29177,7248,53809,23630],1211543052728435039183900663],[[41502,42654,46843,50009,60161,22189,26681,6366,4168,3595],1211543053666092165764974651],[[41999,45746,46857,60390,29233,30674,4894,33305,1836,56618],1192662054157865298537966045],[[42697,46854,50008,51056,60742,2406,30027,37086,7292,34849],1192662033910520111960040834],[[43080,45747,56126,60535,11663,29236,5055,37720,31341,18719],1211543053316256112227385147],[[45631,46123,46862,48995,49268,1878,27807,36589,63754,16620],1202139613805305548867774408],[[46868,49981,51061,58966,60848,24258,6519,6380,7151,127],1202139607733684230495346129],[[46897,46950,48991,51086,24853,31000,7502,35472,16727,52066],1202139615196446214416119987],[[46957,50034,52410,12108,16751,30687,1229,12717,23720,32998],1192662049162427921063853355],[[50986,58547,60132,61408,11671,34194,5057,19484,22179,44153],1202139613424694713056093537],[[51081,52417,58975,60175,12092,32579,34248,16720,11633,5271],1195928181302748332072769921],[[52232,53305,59974,60539,22584,33627,5108,6567,47510,21175],1202139613969685887782734041],[[52313,52423,59995,16527,31312,8032,4863,37367,6079,7954],1211543054107475912717786416],[[59806,59994,60179,15124,24253,1315,3950,30174,6470,25173],1192662047877275850177261413],[[59807,16565,18611,18866,1320,3280,5062,17429,6382,13486],1202139611332138871531767427],[[60120,12101,18885,22209,32599,2310,37037,37058,28279,23538],1202139609680123646687421084],[[60396,61403,12109,16750,24264,30997,31467,8858,37381,6096],1211543054027442400276065528],[[16745,18881,24272,33620,2222,3156,4864,36869,37394,28177],1211543052163319816417751857],[[18886,24290,24324,30680,31003,5028,5065,17639,45949,25427],1202139612346685830824250400],[[22523,22679,26683,30678,6512,9027,9907,37774,16427,54109],1211543052107288396847260306],[[24252,24327,26826,33663,5961,3477,3731,35044,36504,43779],1211543052190582809607237897],[[26684,29121,1009,3978,7383,4698,10008,37353,37721,7930],1211543053173898972301706211],[[27748,30406,31258,2405,6516,23340,2366,17115,22595,44235],1211543053177532192196117149],[[29243,30595,31470,857,1537,4177,9988,37790,21657,25508],1202139614830031837678710208],[[30675,31465,32601,33225,3488,3732,4772,35377,36731,23699],1202139630473833233096278879],[[30682,31268,32577,32736,1447,3483,3735,8474,8957,16721],1211543053363092530502115225],[[31326,32718,33273,2219,3972,7835,23311,36467,48275,2877],1192662037095646364650336222],[[31473,34249,1107,3726,5421,5203,9993,12043,43767,12448],1192662035598109405199209485],[[33655,34195,1312,3835,8767,3400,22618,30182,10750,3773],1192662028469450428922099600],[[34242,2317,3271,3952,3729,5052,10009,36857,37781,32127],1205380081555426968410925706],[[34243,3839,3939,4192,6270,8873,9856,1590,19441,22185],1211543053082935403177086113],[[861,1114,3845,7197,4734,5110,10013,30097,37087,15063],1211543053023270763754262278],[[1115,1786,3844,5976,6538,3730,3955,36868,15883,7652],1202139623011007419338108633],[[1117,3841,3966,6548,3728,6070,37378,37591,6377,3207],1202139612472508459112753039],[[1778,3843,3967,4200,5114,9881,37056,30183,26339,22691],1192662036375227107020241058],[[3715,3937,3977,6513,4210,6374,6553,17636,17268,1359],1202139622972140402062494463],[[3936,3973,4230,6517,6550,4558,8859,9860,37362,37719],1211543053079302183282391494],[[3951,3979,6968,4603,4773,9032,37366,37723,2486,12552],1211543052967239344223541721],[[4143,4302,6259,7493,4214,9890,37050,12581,12587,3782],1202139609052369599261139572],[[4286,4330,4360,6264,7715,7227,9850,30030,43618,34870],1202139608004891953853723725],[[4331,6050,6263,7539,9035,9789,16722,22561,19199,27589],1192662035608892371889734269],[[4340,5447,6269,4695,6554,30100,37779,51852,16680,17540],1183108528006249000283028492],[[4341,6518,7523,8033,3480,9987,17442,37324,10743,3847],1192662034180420677952958551],[[6271,6354,7883,4906,10014,37063,37584,14830,59367,16866],1192662030693927550698095216],[[6367,6952,7889,4169,8471,8751,37379,3929,4346,3389],1192662023665503240772327930],[[7133,7525,3954,5109,9232,22207,37108,37708,37760,23348],1211543051784932704553737297],[[7219,7541,3133,5054,10034,37372,6101,768,30080,26860],1202139611885582861273580004],[[7709,7887,3140,4547,5037,22620,23358,37780,17475,39941],1192662023644868553031217733],[[7712,3956,5060,5796,7145,8774,9793,16736,48014,69113],1192662018318116630406469932],[[7718,5063,5197,5748,9815,37711,37767,22198,7762,14284],1195928176047730591824980514],[[4735,4914,5200,8954,9033,9817,37717,29211,15097,25844],1192662022003133476392827463],[[4774,5113,5760,8388,9816,17440,23341,37294,15601,9527],1192662031340904390628362757],[[4775,4865,9197,9910,17441,37722,7171,7935,48073,13690],1192662035206280577927578208],[[5111,5801,9037,16738,22481,37081,37119,835,50440,39273],1183108531555738981952384068],[[5112,6552,8956,17633,37093,37295,63687,63712,21326,15562],1192662026910808703909967237],[[5206,8851,9034,9846,16547,35374,5866,6391,19650,3928],1211543051655403795508040483],[[6555,8955,9858,17642,31339,7855,45693,23169,23623,21272],1202139611844916326165161846],[[8868,9036,17443,35087,36587,37080,16522,22205,28557,39125],1202139604752931443520699018],[[9797,9848,16739,35083,36493,37762,22786,29215,19130,16632],1192662034244089378227405849],[[9901,10035,30415,32605,36036,11631,32696,43655,61353,16362],1211543050493638761667062893],[[9904,10041,22187,23313,31272,63878,7317,42637,53786,53896],1211543050560024772483556985],[[9986,22186,23312,36586,37060,37369,37761,17124,28149,13756],1202139611674382991093715475],[[9989,22206,23310,23371,37057,22121,22774,1929,3974,2741],1186400973885504912126771796],[[9991,22508,30425,35175,36500,37585,16717,17130,31347,47081],1211543052816611155466466490],[[10012,31336,33289,37325,37368,37705,37718,44771,42708,56860],1192662037153741078995179852],[[10015,32603,32672,36730,37382,2348,45952,17720,13879,53459],1183108551803082961478715442],[[32669,35174,36387,37303,37380,2346,6566,14569,25507,26840],1192662037675221712921388542],[[35166,35376,37370,37385,37401,63762,22125,31286,47068,56109],1211543051672312197547176290],[[35172,36470,36496,37590,12589,22364,22465,31344,47102,6161],1211543051620471655773038906],[[35216,36497,36736,37383,63682,63755,31345,47103,23980,41457],1195928183456546983677102825],[[35375,36505,37311,37371,63713,5854,6388,17265,45943,45503],1211543051637937725640665593],[[36492,37391,37766,63708,6379,22358,32752,17723,33439,35523],1211543049380793672633349684],[[36501,36737,37373,37404,6024,6381,16340,45940,61193,47512],1211543051620471655773038906],[[36588,37040,37047,37062,37716,2347,7154,12526,47440,6934],1202139611093941683968230916],[[36590,37768,63715,63720,63764,16651,17274,22178,50325,18450],1202139629944341473848977709],[[36591,37082,37085,37302,37384,2467,50965,15231,18382,9518],1173477261027575965482887014],[[36592,63686,63709,1231,3395,19378,32755,23186,31374,15025],1192662051962983405242984353],[[36593,37083,37084,37714,37764,1708,5792,29364,336,18949],1202139612397092752877653159],[[36856,37088,6376,7174,7852,28539,1751,32342,1435,25949],1173477268237070202034637069],[[37098,63688,63885,6569,14313,2460,15584,7912,29274,69362],1173477247719651875399560346],[[37103,63758,63879,7927,21477,21686,29129,2247,51878,39124],1183108517162251618792895366],[[37109,63689,63759,5780,21476,22499,38648,39064,29372,23125],1173477254436882177087254978],[[37118,63768,7959,14283,14430,29125,38894,40617,40908,18618],1173477239933467014791404028],[[63683,63726,63753,1587,1713,16733,31216,61199,30349,10710],1192662053020598708080725352],[[63722,63769,1863,2368,15886,16711,26709,30189,40987,30683],1192662033339538766526755803],[[63728,63752,63763,16421,16715,22203,26730,53604,6471,13774],1192662051755609772437464204],[[63884,2369,6565,22202,28274,53088,31375,22827,74404,75298],1183108518705088071384706774],[[1809,6026,6571,12540,15781,22803,33703,44233,55568,40497],1192662025024710669855831852],[[1813,6027,6378,12041,16737,17712,29961,1934,17026,10465],1186400972173523014569932956],[[2433,6389,6558,12058,15061,21717,61229,23385,47513,14319],1202139610261006164073287266],[[6559,7262,7853,7951,12580,16731,10343,62214,41742,21430],1183108526311159619153749404],[[6570,11614,12045,15774,21481,23814,56116,53888,45112,6768],1192662029442087187484983384],[[7329,11953,12699,15109,26708,44202,30188,27558,18592,29394],1183108530991264146261405046],[[7938,12579,12720,16541,28545,41693,8135,15347,6260,16856],1173477257145896659989074311],[[7962,14396,17271,22797,31353,53586,10336,24969,26114,39920],1183108525271706593398240188],[[12057,12578,16729,26894,42636,53054,15243,48922,20502,29291],1183108531323793738240347988],[[12059,12536,16537,16649,22343,50324,10247,21991,39010,6345],1192662026421067388290736739],[[12061,16645,22119,22199,23789,44546,13107,15127,21396,15921],1176796653272248244690273496],[[12702,15882,17121,27788,28132,61014,32351,18903,68484,27317],1183108523706053974459620098],[[15887,19871,22501,22603,29163,53834,19066,7297,27552,42656],1173477259655206727763153013],[[16989,22184,28136,29159,44548,53578,8901,30175,31393,22843],1192662048343041900716146148],[[19836,22177,22557,29209,31291,32611,33432,54110,21735,2889],1192662031817934184814720024],[[22176,22412,22478,22775,28278,44556,27819,6945,20756,55535],1176796652917164270899927272],[[22204,26711,29111,32615,44544,50321,48278,56840,1525,26935],1173477260215330134545749588],[[22552,26728,28275,42755,61011,30056,35516,15232,15659,45210],1183108534715898677681606961],[[23817,26731,28009,28133,60462,3597,48257,58572,45104,41482],1173477264108208115233600772],[[26729,26895,28137,29358,31346,44216,50163,13929,8140,33430],1183108532784471757546832815],[[26930,27729,29213,30447,53059,15220,30924,2436,7922,64250],1173477268627004266473817800],[[26931,30471,32697,41877,47084,52853,25388,41315,60134,25852],1173477248951120875359317469],[[27998,28597,29165,45677,6506,3574,22645,64814,16710,70160],1163766277741209011475662945],[[29365,31219,31301,42632,44559,47082,53065,36364,67874,13216],1192662016474273355732098858],[[30461,31340,32612,41833,44552,53846,61205,30181,22163,29275],1192662028272452106621513272],[[31217,31342,32610,33706,44553,61341,11335,60874,66633,2461],1173477257474949989475864189],[[31343,32616,32681,45498,52849,45712,54113,47968,40675,18404],1183108521438280962375378165],[[31352,32684,41899,47099,45704,47518,30886,251,31012,62419],1173477254592046764672695511],[[31354,32613,32754,41726,44545,60860,36014,55738,40990,5365],1183108537320839957601170004],[[31355,33315,33718,45692,46099,5448,52050,52169,5376,24256],1167113294654555326494105941],[[32614,33715,43657,45691,45941,61221,47511,12483,53639,50143],1183108521852414084956709162],[[32617,33775,44212,47271,61209,33423,22656,49068,22520,7014],1173477263002089042227413239],[[32621,33334,33763,44789,49524,52333,15155,38625,2884,51953],1173477268067164687383750538],[[33351,33778,44039,44795,47062,19112,43563,11158,62371,65749],1163766275654612364602376184],[[44220,44550,45942,47276,61013,43647,15002,41202,273,43449],1173477241086773458411900693],[[44341,44551,44786,52855,7355,45523,16256,38095,5346,44619],1176796655315765414689155823],[[44558,45672,47270,61208,61224,47416,47504,55693,29290,24521],1183108522921581656466107629],[[44777,44792,45518,53061,23240,54098,48005,55643,41486,64657],1173477255296975462593613997],[[45690,47065,53057,53845,54105,10951,39095,14982,24975,4419],1167113294192788020500472713],[[46125,47085,53053,53560,23986,21295,45228,25364,16041,66981],1153973604385864119893409368],[[47100,47277,51458,53066,7348,23625,25870,38925,24259,19688],1173477253135809395400772230],[[49482,50320,53064,53186,337,10240,48036,37879,67782,27808],1173477245237339412101285603],[[53055,53103,61041,36371,52629,23251,47982,13481,74405,75299],1173477242353142134468225675],[[53063,53574,53602,27801,28265,15579,40520,48321,55863,2499],1163766275025991859136195572],[[53067,53642,61228,15095,47442,7655,5712,50960,36423,13982],1167113292368058644657338687],[[53117,53844,53857,23634,986,32110,55653,62257,68274,51068],1157348919782440704061836190],[[53570,53835,61318,9255,28152,16054,11994,12855,54848,4448],1157348919825136130602522102],[[53852,60492,61204,31394,62507,19236,11304,1533,24174,31010],1167113282732901271500128564],[[53863,61012,33416,23629,53750,22937,21225,55654,25334,47886],1153973583212692355156295709],[[61043,61213,26934,18458,481,19054,55699,34185,1313,69116],1150895770899944866303688438],[[61232,61237,61315,22543,23632,30894,33384,58397,16692,38964],1167113291886367008312135333],[[61233,43756,22080,6126,30380,48194,18735,55704,41484,27651],1147501479079534111018248940],[[61246,61324,6507,22630,30916,396,301,33412,53796,62083],1160714443214527433529318903],[[61321,53657,7298,16363,22019,55640,39360,2409,53336,23127],1163766273086155362468236351],[[26941,7305,27742,47505,3336,19100,42953,37862,33682,55004],1157348908723937332902136540],[[56859,28263,54102,397,1840,26352,38879,25873,5425,44166],1147501477092311394832140365],[[56876,54101,34477,300,3157,33414,52051,3236,20476,20441],1144097095075954013418604930],[[62524,30180,13086,19274,839,25478,42921,18380,64687,66977],1140992626497596018198216487],[[8903,34475,47460,18474,53749,50971,25422,56624,40519,69233],1144097090227898468397809714],[[52651,53967,1499,3884,1936,38682,41261,22435,41511,56570],1140992623267802724515691220],[[53606,53991,16245,1507,1927,6398,48173,45079,58369,43623],1140992642923355351160306304],[[53669,22047,3880,7747,38901,55601,58912,53354,4220,10058],1131002772003774449502858691],[[27760,990,741,7640,51952,28035,21255,62217,3243,16631],1120923905718603582962396533],[[479,3345,740,5901,22938,47945,38939,22866,58864,13711],1120923906057619209120874805],[[1361,23959,3578,22574,38872,42952,18720,24863,50475,43133],1117438532696348330492529799],[[6112,5896,6411,13941,21385,11315,18756,21232,26389,6338],1117438548341572488586189021],[[7637,676,43801,55737,48191,52170,19065,62457,60918,63032],1117438524703187970700521003],[[674,1759,26861,7274,38070,21408,48052,32341,2881,23094],1113942287432227235282802721],[[1360,13900,43798,26839,12800,21694,22805,48329,5268,54291],1113942266319646089624055126],[[5734,7767,2440,51888,10698,14954,18990,53317,16259,33595],1113942271548989374113353389],[[2451,56032,40993,15070,45211,48087,18960,11206,40108,26204],1113942251074493608370283494],[[13807,43682,50966,49027,27309,50167,17049,24514,64579,3192],1113942243982546440539537134],[[43661,56047,42920,53799,27326,32002,10695,53210,8141,56531],1113942266399301472848904646],[[53616,19182,43768,12819,55710,41753,5270,10518,62282,39274],1113942245652498307967960814],[[53680,55642,15119,43685,55611,48206,20491,12225,31866,15284],1113942257868113307249265574],[[55698,32361,62515,25307,46136,13826,18900,58641,74406,67704],1113942249547784482598639155],[[28062,33386,53692,33452,55573,58616,26817,52696,11718,64254],1113942243632623458313195401],[[32358,23180,43706,11328,14840,13861,14901,1306,22158,15943],1113942265850918024517440281],[[2447,62516,25361,15655,25476,39399,58633,34905,38552,54197],1113942246518118978301540706],[[7282,56875,25431,18962,25868,15081,52876,46856,4023,70077],1113942250808949656411987221],[[23175,53628,25400,13876,28615,54950,18601,35145,64259,71077],1113942245496789396475222394],[[58623,27598,2872,46166,32001,12478,32331,7123,25243,61566],1113942258687159273236097692],[[39335,15623,18992,19148,48089,22527,3853,2230,64896,6696],1113942258623369478674102903],[[43568,18979,15642,25875,38138,12843,34179,30775,50000,67054],1113942246387950537150580678],[[45090,25477,48290,51971,59951,11313,21419,54709,7347,46205],1113942244523100524343796650],[[55598,13897,56623,18762,59376,38103,6040,25426,13225,258],1113942253421980115807408613],[[57348,19111,56629,55655,60023,39401,25414,23091,52504,74252],1113942250074049762287601852],[[57363,42993,60822,18753,59370,27592,28034,3218,26901,38031],1113942253141044216361140772],[[58879,45101,62454,18759,27549,38873,42802,43639,1480,67787],1113942251846332599541183880],[[58925,14854,38895,42788,62200,13721,27821,3969,56695,71399],1113942251483028161825452399],[[63479,58866,11974,48276,55711,53150,13734,65074,7353,250],1113942252299537366592836020],[[63480,62460,11168,41254,22449,15125,25324,29393,10052,67422],1113942246974208121336262444],[[31996,48192,52346,55705,22870,16287,7221,13684,14101,59866],1113942246681268253288587338],[[32007,52289,10707,11302,19842,22655,25444,244,56591,71327],1113942238037318320065060758],[[37902,41509,49040,50212,15646,24970,26135,6056,65753,19839],1113942236497744082040766483],[[37909,38126,18385,26386,27680,32328,32632,13625,49926,31014],1113942242413333915131950418],[[38556,58377,62207,38114,13726,18905,22144,65292,2959,18364],1113942246602597881365256668],[[58349,58727,32340,45082,56835,22690,2500,4140,68016,72459],1113942233094589080730668394],[[58565,59373,60062,54944,2890,44132,40135,65807,65885,66887],1113942227902407684350702548],[[58704,62206,48050,18898,20249,42620,2237,40911,65880,30790],1113942233290659532184791991],[[59928,62215,39387,55981,16553,27660,16696,67423,23928,67000],1113942242451062975490606692],[[62216,18387,22888,45227,53293,32329,2907,43781,60986,72799],1113942234900413883679267276],[[28061,44362,55984,13744,11654,25744,33050,24175,34071,53838],1113942228161894353093705808],[[32343,44389,26383,31270,2880,44244,194,21488,16248,67057],1113942227995447918237153089],[[41478,54955,26392,34255,6060,6266,20439,10053,35851,66533],1113942241305417815383320131],[[49081,53278,19878,58910,8097,2870,12182,27960,66582,12285],1113942231244930859483341206],[[53343,12831,62259,11642,26836,2861,38190,12183,64683,67636],1113942237174523746952177007],[[54949,24964,16526,33281,16600,55583,53494,70093,70743,17247],1113942230398539279618493225],[[55975,62258,31239,34180,2398,22858,53287,10454,62424,17803],1113942237650882122173237756],[[56834,58618,16275,34262,20233,11193,60947,26058,5887,64009],1113942228759974515541843343],[[56841,58567,34253,4172,15371,31749,25110,44521,19188,61332],1113942229190237515641178966],[[62256,19322,32330,15355,44267,64409,72131,36064,24548,70101],1113942234367370319524339889],[[12441,32667,34174,6939,25336,44287,25224,21554,74294,74638],1113942231232561678925984297],[[27689,33218,34260,2902,51337,27204,51583,18642,74447,74821],1113942231102301965445769200],[[1003,3850,22133,25464,6994,66658,23073,55059,42050,75309],1113942232596121424998167267],[[1007,8094,13750,25449,11192,24155,60138,187,50568,50787],1113942224915933205292126988],[[3342,4179,6940,20215,53464,33694,14007,45,26240,45802],1113942219877268824911884291],[[3351,8095,16657,25461,31718,45613,54766,65412,19028,8826],1113942224483106736270863667],[[3456,5451,20483,50269,12230,27201,7061,232,69364,43787],1113942223798724386745668517],[[3471,5357,20227,53256,4361,23045,38577,3934,43593,48344],1113942221366765800005989322],[[3856,15376,41449,1440,72590,43646,6528,73857,73639,24918],1113942218053368988816852328],[[4234,25320,41423,68065,69020,26139,49191,42731,38532,27316],1113942217571993989413697981],[[7143,8096,22830,55588,28124,91,38549,65489,10759,37944],1113942213536443232589138007],[[25314,44169,24882,39016,65291,45996,51826,75312,65418,66530],1113942218954520172769997408],[[25323,44283,72004,2968,36234,42184,59228,74295,74577,66992],1113942213385685559173372368],[[25339,41467,68089,10855,64838,20557,49888,18430,16382,48408],1113942220238611516503082243],[[25344,50280,13487,67401,25120,34918,52130,68790,66731,63051],1113942213293705471970797892],[[42615,30679,69017,15948,4866,14671,7110,64383,64722,60423],1113942209391974799637829439],[[50291,65045,13485,2732,24160,9572,227,65430,66623,28609],1113942212228633593577236517],[[51318,64913,6757,46870,18637,53591,7071,221,74578,70524],1113942215212476576633872610],[[51325,65296,69772,73045,13635,24815,15051,199,64701,43780],1113942217676309995939880061],[[51346,68452,25751,25943,28112,55876,6685,64700,64832,19822],1113942215058433544301956675],[[52864,10854,13624,51549,60567,112,62766,24180,20407,6929],1113942206924455482883704689],[[52890,69819,65297,11207,13634,39849,20140,39793,55794,52103],1113942217859761796649658536],[[52899,38194,72107,41323,54865,22462,69771,12003,32107,6633],1113942205072167292726472708],[[55564,72594,20804,55544,17925,55887,56998,44423,18361,62947],1113942209478484258564495643],[[55570,64422,43535,60181,7923,33691,64364,68002,68303,74937],1113942209444862938766362855],[[55571,72024,20531,52471,25130,41242,14092,28568,53778,60897],1113942206575607609758898328],[[55581,73012,41314,60177,39831,26902,59249,72272,49703,34094],1113942209252309531800343868],[[55585,16841,23070,43528,8942,209,26572,38695,64698,14125],1113942206808872211302746733],[[25961,28305,33038,46875,26084,33425,189,43619,62423,72509],1113942206763754721875336998],[[28336,44622,45618,6319,53651,20168,14648,136,65769,43575],1113942206870073219043141503],[[30780,46861,5269,10513,35108,35856,7312,58723,31232,69228],1113942211284625311371884225],[[41322,46014,30755,49845,55922,40646,42075,53656,62091,18633],1113942202205952473411384633],[[53489,60560,8951,10059,18533,39056,49,14646,65251,68861],1104570270848399407175720872],[[54841,7578,9053,10499,52796,230,50789,69854,34395,34409],1113942200450002668571853873],[[54982,23552,26403,25006,4451,196,32628,40927,66655,37871],1113942201437815026201613636],[[54991,23540,26406,7307,2256,31490,1913,15048,17245,43583],1113942199527234098944633995],[[4018,4871,7569,32209,22553,226,65879,885,10285,33534],1113942199606971273420103900],[[4783,9531,35842,17899,26263,22226,31015,14789,51819,17667],1113942198902191747550597713],[[4794,6312,9538,7350,236,6348,16540,24177,45312,6992],1113942196811860665194161230],[[7568,10433,16845,13243,203,14073,23904,38698,53585,39337],1113942198018545427616167314],[[7579,9068,10440,1479,154,48768,69171,24181,31013,59343],1113942194927390180923000376],[[7913,9487,2466,15086,50027,40616,38614,42387,51484,31768],1113942194353416297635205429],[[9500,17476,23554,52780,42027,48880,68013,53783,66766,8917],1113942197118597423083889954],[[9581,35101,35360,36421,53599,18571,128,2490,40485,16048],1113942203685896104920007311],[[10506,25051,22546,42002,48916,177,69363,65434,49252,6197],1113942193365607238059773404],[[25963,32986,36249,22615,56715,197,62316,68277,71408,51461],1113942200574781544064070753],[[30760,33679,42154,32229,152,21631,39272,23929,19355,21405],1113942195965948790286054072],[[35152,35353,36244,31687,22596,144,47664,74637,75307,70585],1113942201440142575052228062],[[35408,35837,54888,223,58700,40730,54188,69110,69367,72266],1113942193954226525314145587],[[35426,36239,33436,59603,190,56154,75292,75311,74234,54925],1113942193657862455112748256],[[36061,31849,24920,26940,239,21578,50786,67903,75189,45146],1113942196356491617112836670],[[24905,15055,39084,256,51048,74253,75310,74791,23703,72617],1113942189266401103352148299],[[26268,33435,260,59584,33174,64686,64725,68101,65428,67134],1113942188310199262670057437],[[31759,43626,23034,87,3708,74579,75301,70525,69735,8819],1113942191434637030149847628],[[61610,39774,171,47676,75316,64723,74394,5949,55478,73098],1113942184135563867805117964],[[62406,255,40694,52727,74407,74576,68279,70522,75213,58403],1113942184713734091835944828],[[42702,59912,167,75295,75317,64370,74289,2495,64772,51813],1113942180467074850513443198],[[59943,86,3452,74636,75296,75315,64380,70584,74372,62430],1113942180266710472593777195],[[85,14052,31521,74639,75321,14647,74985,60982,18621,46135],1113942179860831472242328258],[[129,21517,30788,38977,40909,48018,64720,69365,38029,15772],1113942179585110325244361326],[[133,14117,49150,39275,40612,48770,68405,58407,59223,23126],1113942179340972558420510869],[[141,26030,3723,75297,75300,75323,48947,11667,73444,42391],1113942179623538368762164347],[[204,21602,39156,48364,64371,64381,64682,74827,24901,38631],1113942179874288351684570502],[[224,22251,32574,48950,50804,46074,56586,19818,53232,34042],1113942178709102426525319297],[[249,33128,51092,75319,38039,68301,74813,56325,68637,45783],1113942179783919755710272415],[[271,24575,73961,74106,75267,75268,64928,64249,51531,16562],1113942178396118345143890755],[[272,26613,6036,73960,74075,74104,75274,38548,64255,6786],1113942179445282582093613278],[[30814,39128,30,75320,48341,69152,53190,63985,64637,74878],1113942179103679454829606080],[[54264,56189,102,75304,48769,65801,69387,58664,73078,1826],1113942179425821138448012123],[[55828,62732,105,75294,75306,50806,66996,69396,31009,71405],1113942179833751931361914224],[[57045,32,31308,40922,64703,74261,38992,67703,68611,42674],1113942178700726404046106597],[[63083,29,16506,40613,40924,50249,69722,64656,18653,6970],1113942178114539813953667688],[[34,3949,40925,64263,64278,65854,1876,67468,38654,59831],1113942177470627135267584541],[[43,6363,22174,50570,64011,65881,58784,72798,31620,9337],1113942178207038442063346598],[[46,3467,50807,64305,69393,16387,23129,38835,4444,13991],1113942177102201011414982552],[[132,31257,73856,74073,75266,75271,58682,60528,62431,3991],1113942177724820797847770376],[[169,16735,73880,74105,75275,48355,62418,67870,65463,67209],1113942177580934930379217804],[[170,4164,24523,48771,69390,23906,43782,40496,18667,41820],1113942177183501885156638786],[[174,32661,73962,75264,75283,48378,64164,67832,19953,20324],1113942177537609611803760640],[[175,6547,73881,75262,58940,62082,62425,15567,42746,1770],1113942176908959210325979296],[[7138,73963,74107,75272,75281,73121,73295,74184,37975,39234],1113942176823821560402923265],[[22201,74074,75265,75279,75285,54913,68811,38551,40211,15563],1113942176826780701244393715],[[31325,75260,75269,75284,71801,72503,65403,73445,74858,18356],1113942176421809048071871040],[[32597,75261,75270,75276,75286,54915,68195,72467,65397,38963],1113942176845484219715462661],[[75263,75273,75277,75290,62078,62421,73441,73877,63372,60810],1091967608995947438365718287],[[75278,75289,1872,54917,68819,73071,73315,71968,1555,27318],1113942174990910213227326536],[[75280,75287,50253,54921,62420,71834,61372,73638,73865,62945],1113942174974597317341517157],[[75282,75288,11659,62422,73113,59356,73439,74196,63073,38814],1113942174622821924320927061],[[75291,1912,41723,62079,62432,66609,67689,69715,67637,22349],1113942174391415150685224354],[[75293,75308,75313,50784,65865,65884,68298,46072,56593,74248],1113942176455078003397748037],[[75303,75314,54184,64960,65775,68300,70803,75208,55474,74869],1113942176586381295653929407],[[75318,19689,24512,68264,70744,74942,54449,64581,74876,41642],1113942175891325251106813113],[[75322,40906,50574,68262,75223,54914,66588,71457,15098,15568],1113942175677191970146601792],[[43040,48497,50572,64382,65747,68131,70092,21974,26241,27406],1113942175687166046615429772],[[43047,48501,65065,69366,70742,74373,64788,66763,39413,47909],1113942175771088225538638321],[[50809,54193,65755,66325,69143,42781,55955,68477,31863,73340],1113942175540073530448091754],[[64000,64961,65882,66531,68260,70804,64297,31622,37888,4417],1113942175748857047975609861],[[65096,65860,65883,68001,68127,68787,75204,17061,66614,17501],1113942176079876135330350936],[[65436,65878,66673,69368,69964,30490,58946,65164,20619,24947],1113942175521938530195535268],[[65859,66532,68471,70084,70807,74773,54459,70144,15290,69980],1092531611989689568327885891],[[66330,66985,67909,69225,69369,74794,74800,45261,28650,4681],1113942176038941439299907204],[[66792,67914,68276,68791,74781,74823,30815,66778,51808,17018],1113942175789791744016713497],[[66817,68507,68664,70523,70588,74978,56323,28368,64402,34196],1113942175524172418069887147],[[66976,67818,69119,69994,70528,74801,54451,66885,11053,2160],1104570264502729588887296758],[[67001,67856,68786,70100,75199,40712,54453,64324,18619,59792],1113942175559345567159738219],[[67907,68266,70076,70589,38999,43923,65216,66886,68691,65729],1113942175354089708671881749],[[68003,68670,70085,70527,75212,11998,46204,39252,57684,4101],1113942175241580707607928530],[[69180,69236,69826,70740,74443,74782,74826,66540,68429,47846],1113942176079876135330350936],[[70526,70587,74280,74772,74979,24179,56592,60901,27921,28369],1113942175559345567159738219],[[70529,70586,74812,74927,75053,75064,54919,56597,41677,52418],1113942175808495262494474633],[[70590,74247,74774,74783,24178,65270,68818,64577,33593,34047],1113942175234813279582303385],[[70591,74775,74797,75020,75205,75210,55470,67038,71402,58192],1113942175830726440056312880],[[70741,70806,74257,75010,62428,65144,73311,64861,65483,68776],1113942175255907420685177685],[[70745,70808,74321,74796,7342,24176,72251,5812,12284,59864],1113942175269261175710548148],[[70746,70805,74442,74820,75222,55471,25849,39421,71250,28252],1110542025248241295883089091],[[70747,74325,75052,75061,53785,64294,68404,72258,67641,43612],1113942175294451494128689022],[[70809,74446,74806,75060,31008,55942,67036,43495,43597,30330],1113942175045145063938044766],[[74780,74795,74804,31011,55947,56317,71458,28086,38661,17651],1113942175001407961764205626],[[74790,74815,74932,75191,75198,56595,71452,11052,15674,17364],1113942175483962974989626260],[[74805,74814,75065,75201,66741,67055,70142,37913,46764,23598],1113942175253516798069382823],[[74807,74824,74960,75011,65071,67043,67439,67661,38533,38593],1113942175234244761341726037],[[74822,75021,75056,75188,48129,56599,65145,63998,64027,42331],1113942175275179457401740436],[[74825,74956,75195,75214,39445,65165,67044,57544,57555,68980],1113942175212582102019291628],[[74947,74984,75057,44522,54924,62426,67668,74206,32841,4092],1113942174540827864097444151],[[74952,75194,75209,75220,39443,40739,69948,49615,72975,32100],1113942175025873027217502246],[[75190,75221,19277,27749,67027,67050,67688,68697,5797,31088],1113942174774489443831869952],[[75200,75211,19874,54447,64174,65271,66587,73238,23292,32496],1113942174736513888600479555],[[75215,5948,48124,49394,54923,65097,17812,41558,27963,6876],1113942174175954977710793486],[[5892,11714,17056,23724,56587,68181,38037,60101,5178,8775],1113942174200238942146079002],[[19239,23764,44520,53107,55948,56588,69695,24647,34037,34049],1113942174235255356547404753],[[19332,27948,30383,44523,65267,66783,47993,57554,12572,6825],1113942173705165302529906439],[[19341,23758,30352,54927,66884,68813,74188,18662,16121,16169],1113942174197279801297631253],[[30499,41679,43648,50142,62429,67938,40498,65739,35068,47523],1113942174200238942146079002],[[43783,43921,46073,54457,66585,67796,69958,48445,57669,58189],1113942174235255356547404753],[[43784,44422,45583,52270,54922,68636,38165,72297,43285,53605],1113942174200238942146079002],[[43785,52337,54916,56321,64125,65255,68820,73262,39286,3234],1113942174017494889099807546],[[43786,45264,49389,53779,56589,60983,52404,53386,15987,57596],1113942174194320660449175644],[[45143,46075,53781,56319,56590,60522,64911,73091,48409,48424],1113942174313597089650165755],[[45580,50146,53780,56329,64855,66721,73246,54092,57625,58111],1113942174178576282792817188],[[50147,51101,54918,64388,66541,67052,74192,47890,47956,48734],1113942174234686838306317265],[[53782,54455,54926,56596,66711,69809,40499,15566,18631,21439],1113942174215983319802131279],[[53784,54461,54912,62090,64789,69947,74005,18616,43584,9242],1113942174215983319802131279],[[54920,56327,56598,60987,66583,67049,67056,69949,70143,64048],1113942174357490926592041757],[[55466,55945,62086,64135,69866,71387,67652,73263,58177,18820],1113942173994826348666710371],[[55467,55943,62087,64773,66901,69944,40215,65730,38573,65875],1113942174218373942420152783],[[55475,55944,56331,56594,13217,37916,25848,26239,58113,58126],1113942174118369549945542994],[[55479,55951,64394,67030,67702,64833,26258,17647,68568,71532],1113942174136504550231668864],[[55946,56600,66544,69945,70157,71318,53074,26599,43566,58133],1113942174175617141944311894],[[55949,64035,64321,66584,71042,73289,73011,26242,46060,49399],1113942174196711283067243638],[[55950,65266,67836,68508,68563,68821,17614,24903,34980,6795],1113942173917490496617883052],[[55952,56601,66772,69697,70272,71882,60084,67139,31137,46725],1113942174200238942146079002],[[55953,62427,66769,67051,73306,72120,73499,74877,16329,32446],1113942174180966905400199717],[[55954,62433,66545,68180,72216,71855,72047,24900,49374,44904],1113942174178007764551700773],[[55956,65222,66586,67472,71419,64634,72051,72291,73254,24916],1113942174202629564753415040],[[55957,66589,67033,67053,68555,71390,31618,31843,49613,53423],1113942174231727697457961026],[[64056,64415,66643,68077,69951,71007,63989,53159,47912,6560],1093147524128081553762538334],[[64428,67672,68047,69874,71283,58341,58669,71690,38244,56313],1113942174162263386895111752],[[66900,67705,68187,68202,70258,71444,72466,71966,74180,869],1113942174020454029948732886],[[67805,67936,68810,70182,71057,72273,40482,65740,46109,58652],1113942174218373942420152783],[[67969,68022,68630,71048,40209,40483,41565,65410,19819,46062],1113942174142991350148575462],[[67971,68186,68699,69703,69872,70974,65728,53077,45124,48132],1113942174196711283067243638],[[68031,68430,69793,70108,71393,65732,65745,67391,26243,4849],1113942174180966905400199717],[[68056,68631,68689,68812,69963,65726,48447,39687,1022,1383],1113942173658226814759596343],[[68622,69868,70145,70208,70257,72508,65400,73503,43455,33540],1113942174218942460650529342],[[69701,69742,70259,70273,71396,18352,51467,51846,52267,39686],1113942174171520964624278832],[[69858,69946,69957,71321,71449,17810,73144,43594,52419,56581],1113942174178007764551700773],[[69950,70112,70256,71275,71319,64248,73443,62641,35169,41340],1101446756892207364863463741],[[69952,70128,70176,71064,71326,72146,73897,11760,47889,1384],1113942173938584637734983552],[[70129,70211,71416,71872,72502,73314,73247,10765,39547,39563],1113942174234686838306317265],[[70954,70984,71277,71422,73255,1057,11357,49264,45246,49306],1113942174115410409096877763],[[70964,70997,71320,73305,38155,58786,59354,31695,71075,71164],1113942174101488135827238913],[[71043,71328,71445,58742,59345,71867,71985,31842,46061,56576],1113942174083353135540542975],[[71049,71425,71451,17805,58785,59344,71984,19370,31828,49829],1104570287339339460453061444],[[71285,71446,72267,72511,65733,18357,49738,56315,59023,13888],1104570287333370964247249302],[[71447,72226,73300,73313,61368,71860,60427,58239,49398,7136],1113942173859674386375288909],[[71448,71463,73291,65457,67530,73050,18650,24928,41778,3995],1113942173859674386364569655],[[71450,72458,73312,64635,73498,24917,45306,46928,4445,28632],1113942174077434853843018613],[[72500,73317,58651,65406,71698,74014,74853,11355,15565,55012],1101446758032545078285367120],[[72501,73115,73318,65727,65734,67553,73674,73145,10978,69835],1086460858826397686718582494],[[72510,73297,73319,59342,71821,71866,71982,74204,74890,34154],1113942173834541275586538062],[[73119,38550,40484,58335,73917,74849,15564,60392,24329,67542],1104570242189983437498974274],[[73316,59222,61361,71710,73497,74205,74891,38091,25927,32879],1113942173536950185543896464],[[38615,59355,64251,65416,71967,11755,18664,28644,46952,34976],1113942173982211706582098524],[[40213,64460,71864,72627,72796,73954,18630,60428,11072,27276],1095118135807294272997421244],[[58743,58787,59357,64096,71969,73239,73845,74854,18665,23825],1113942174009792647637094191],[[59226,61365,67208,72614,73502,74189,51464,62734,6895,30914],1101446756160197207389334791],[[59227,64636,67207,71861,72730,74889,14305,42645,18953,10917],1101446775215476798297933419],[[64097,64583,64654,73893,74013,24641,24899,42648,32694,32758],1113942173416640867620009289],[[64461,64655,65731,71865,71955,72803,24927,41779,3238,7617],1113942173487621075146913605],[[67206,67656,71959,72734,73942,74481,39076,51752,24355,38855],1113942173468917556640568086],[[67645,71705,71851,72639,74281,31813,42759,58802,10253,35717],1113942173963508188073673382],[[67660,71788,71958,73440,73501,58387,20291,72142,73788,30333],1113942173719551521064698943],[[71954,72446,72641,72752,74474,74859,62387,72820,23705,39372],1113942173449645519892755646],[[71983,72447,72797,73438,74174,18340,19279,30337,1444,12787],1113942172992110072378563942],[[72450,72624,72647,72802,74194,74855,59801,73437,11946,51548],1088807968753263731264986367],[[72451,72645,72795,74185,74195,18353,60324,5578,8689,12727],1113942173166908636382896563],[[72756,72800,73442,73861,73921,74199,28092,31845,45152,9010],1113942173985170847431117591],[[72784,72801,73642,73677,73872,15569,24944,38519,64086,6886],1113942173689506009649754038],[[72789,73124,73496,73916,73955,62414,32633,32730,6035,29353],1113942172949705124759000602],[[72790,73643,73676,74217,74848,18628,64450,34096,41834,51390],1110542035489450662134173100],[[73500,73920,74007,74012,3417,23124,24645,48936,5827,28638],1113942173960549047224596769],[[73636,73675,74006,74015,74179,74190,1060,59800,71546,18501],1113942173760486217169655422],[[73637,73678,73943,74837,74884,59984,60303,60349,48658,19675],1101446775374254607991861809],[[73640,73679,74004,74178,74375,74868,39150,51753,71986,41494],1095987642841973258017748383],[[73641,73680,73853,74193,14268,19917,24914,51810,34232,36720],1113942173490097207719361481],[[73681,74175,74181,74198,24915,41698,51806,71560,42618,60942],1071949563275715684042280847],[[74191,74207,74844,74863,74887,24929,39099,39235,12481,34074],1113942173552683000989750728],[[74197,74374,74836,74845,24945,41230,51807,43677,7817,70907],1079788455806861035108045493],[[74222,74235,887,12283,18360,59828,20419,38198,64087,6948],1113942173676663565174255316],[[74267,74290,74396,74475,74885,18365,39253,52167,66515,30229],1113942173738823557807841806],[[74272,74480,74852,1819,18655,43074,51812,64944,7380,24946],1104570243446099176073345129],[[74397,74840,74886,14826,24643,41637,64348,6925,7754,9121],1113942173209739384631098611],[[74841,74864,24898,38518,41821,59454,64945,73794,27379,8016],1113942173451978934850566537],[[74862,74888,12026,12282,18652,38794,59972,62417,64451,73672],1113942173934790210556489431],[[74865,74879,12027,24926,49741,51811,51820,59576,73817,12648],1113942173729377617028171660],[[1561,3190,5514,17244,31831,45785,48403,15897,35273,53966],1113942173930008965319224100],[[3421,15693,23131,24651,41818,42366,15493,16324,22628,58232],1113942173911305446809922454],[[5505,5823,13953,28372,31860,45268,45804,46755,48759,40486],1113942173966847484106380342],[[13960,22367,22616,24943,42684,45782,4406,16115,31776,59567],1113942173910736928579388887],[[15695,16323,23128,26205,42390,43124,8671,16113,17692,27540],1113942173911305446809922454],[[17078,17246,21614,25845,26220,49241,4992,22559,34699,45405],1113942173911305446809922454],[[17079,21640,23130,24655,42388,51809,59029,13409,33560,34197],1113942173724596371790024660],[[19022,19205,21678,24942,31614,4420,4988,35228,49173,31214],1113942173627562682351346321],[[19823,21723,22541,26218,37948,48760,3391,21888,2474,15593],1107131443613572528225405760],[[19913,22419,25841,26202,38066,59964,7268,26470,60081,72977],1113942173910168410348855030],[[23828,24649,31610,42327,46732,46930,62946,12908,20634,35224],1113942173930008965319224100],[[24653,26947,30484,41220,43077,47887,50224,2281,33924,34048],1113942173930008965319224100],[[25840,26201,28373,31612,31826,43578,43591,46726,36106,47049],1113942173948712483828211706],[[25853,26256,30481,43478,43874,48167,10171,34983,56776,21017],1101446757201893576720350066],[[26217,31616,31808,37979,42330,46788,53128,59035,10176,18581],1113942173948712483828211706],[[26221,31811,33378,43075,43447,43595,18580,26473,35049,43472],1113942173911305446809922454],[[26255,31624,31840,45506,45760,4433,9006,12940,34981,9099],1113942173627562682351346321],[[26259,31858,39562,43596,45269,49705,10177,23336,28361,39454],1113942173910736928579388887],[[26942,27902,43090,43107,43471,46929,50233,59793,31600,34332],1113942173948712483828211706],[[27619,31829,39543,39558,43091,43502,48251,49607,43605,53937],1113942173948712483828211706],[[27625,39559,43870,45273,46958,58847,31085,39595,67896,6796],1113942173671313801705226297],[[31861,42367,44354,46839,47534,48903,52421,53384,34449,42451],1113942173948712483828211706],[[33383,41819,43076,45756,46926,51506,60503,35198,35509,36298],1113942173930008965319224100],[[38638,42364,43453,43589,44359,4443,16141,21955,44839,45739],1113942173892033410069763657],[[39280,39362,45272,46735,46779,2586,28364,39573,20133,25514],1107131443594341756400372673],[[42326,42363,43116,43590,45758,59830,4995,31606,49228,58942],1113942173910168410348855030],[[43592,45526,46729,47666,51470,17409,30452,34695,43496,44330],1113942173892601928300306770],[[44979,45056,45158,46848,52230,8675,10175,23685,34387,44952],1113942173892601928300306770],[[44985,45029,46842,51499,2260,9341,17408,27611,27848,69426],1113942173873329891559824388],[[45754,45805,47951,51537,60318,14012,21382,31602,31795,47461],1113942173892601928300306770],[[45780,46925,46949,49270,49739,9336,20592,31774,34498,44951],1113942173892601928300306770],[[45807,46845,46931,51825,8913,9340,22384,31797,47914,51190],1101446757840204852566814164],[[46924,47530,48735,49605,8999,19987,35770,44805,26321,9716],1113942173403446570248546545],[[46927,46955,53387,62944,13369,23383,26222,57549,68120,14281],1113942173599896231344415916],[[47677,47888,49265,52405,53238,53385,60881,15920,38333,71243],1113942173929440447088700078],[[47884,48478,48956,49064,58974,59992,13004,28360,39338,44950],1113942173911305446809922454],[[47885,48480,49023,51565,10248,16146,19727,21970,33343,47410],1113942173873898409790377046],[[47891,48966,49271,58893,60837,10344,21914,27965,43206,17426],1113942173627562682351346321],[[47920,47988,48071,59028,60297,4665,4994,16087,21881,40500],1113942173892033410069763657],[[47929,48034,49704,51477,58967,4438,8780,21322,38076,39514],1095118143609911321760011166],[[48402,48417,49366,51814,59034,4418,5183,17666,35059,42453],1113942173892601928300306770],[[49702,59833,60301,62948,622,8807,10349,15388,71158,32868],1113942173667917298020173242],[[49740,51559,60355,62630,15626,31115,47417,54091,39203,53673],1110542035985629752024664660],[[51864,52225,52307,53426,15604,15988,58936,72805,34186,15783],1113942173393915119523545861],[[52420,60295,60424,623,5832,21513,34744,36151,54096,430],1104570274775516083368401680],[[58359,59867,60429,10173,13375,15964,30081,34729,35771,57711],1113942173855194891280133283],[[58792,59869,60397,2580,10283,18607,29799,34419,34745,6004],1113942173615771764394032866],[[60386,60425,60473,4667,4989,16112,34694,45384,57606,57668],1113942173855194891280133283],[[60391,60422,4421,8768,15421,21321,21897,32511,34698,45404],1113942173836491372769575481],[[60426,62767,2270,4442,4991,8800,15496,68041,37335,63979],1113942173390654257772965880],[[62949,4680,7273,13002,16106,17649,30191,33934,16461,55744],1107131443519479644361951483],[[62950,2251,4848,15896,15972,17690,19926,33599,31199,34092],1113942173347336014693175935],[[62951,4993,5182,8995,16100,16143,26254,59024,72818,25925],1113942173611238224247437907],[[4990,5179,16114,16127,21715,35074,57675,58233,34233,7739],1113942173354248615251865204],[[5516,8660,10170,15682,17612,31767,34973,39598,5677,31274],1113942173328632496174090986],[[5518,5802,8658,17648,21675,33134,34725,34748,36142,34090],1113942173534045089776306753],[[8787,9247,10174,10289,16123,23326,27319,34886,28393,30382],1113942173388259148602955097],[[10172,10287,13418,17338,17613,17693,33461,34979,7018,19469],1104570262081389672889457153],[[10282,16036,16140,16995,17400,26260,34479,35201,43610,24326],1113942173593671742194175621],[[10284,16047,16147,17370,21329,23682,31138,63936,37826,25501],1110542023132396670841975566],[[10286,16059,16125,16199,17615,23653,34365,51219,37480,37126],1113942173310842273124362340],[[10288,16144,16330,19960,20661,21951,28697,45038,70950,71167],1113942173797947299286335786],[[15973,16077,17496,19702,30449,34349,57646,2147,68860,40131],1083595755833159885672064293],[[15989,16073,17401,26207,28054,30190,33938,51218,30918,5960],1113942173353680097021047334],[[16089,16101,17644,21977,23600,26593,35241,39599,48604,57042],1113942173799084335747517758],[[16107,17329,17646,18349,26206,47408,57884,45420,64639,67821],1113942173797378781055744365],[[16142,17691,21949,28080,30504,33554,43503,64304,27662,3511],1113942173353680097021047334],[[16145,18602,21957,23346,26472,34391,43284,57857,63962,37472],1113942173311410791355202073],[[17645,21895,23269,23604,26477,45385,47392,57875,65768,7613],1113942173559092690618644287],[[17650,21330,21498,21925,21973,26474,35063,36033,42450,52451],1113942173799084335747517758],[[22425,23264,23599,31554,34034,34293,47395,49110,71642,3915],1101446775206815508343360577],[[23293,23601,23652,26244,30197,33920,34968,31275,967,25820],1086460841262632558995981744],[[23602,23684,26223,28027,31084,36109,44817,53196,27837,32961],1101446755990915329477276220],[[23603,24930,26261,30195,35721,42393,46717,52268,63475,38203],1101446756795946918712819650],[[23605,26200,26476,27580,28696,35212,43599,44815,9733,45789],1095987619344935743631708099],[[23683,28715,29783,31140,34504,34827,36293,27778,31005,51115],1093147523547701174385078048],[[26219,26471,28716,29962,32514,33338,34818,51211,3613,37395],1113942173294053444590332289],[[26245,29944,30166,30192,31141,32447,42362,27389,34075,12783],1113942173123219902533996830],[[26475,29775,31114,34499,34550,39363,44955,57550,66301,71669],1113942173797947299286335786],[[27605,27867,29791,30194,30507,36320,39594,43479,34057,2218],1113942173354248615251865204],[[28074,28365,30167,34546,34982,49095,57092,71170,19241,23726],1113942173387690630372154585],[[29947,30046,31604,31779,33170,35504,43616,57942,40293,55027],1080411641026743578714435326],[[30008,30057,31690,34732,34969,42392,44892,6897,3289,35624],1113942173089209369174814842],[[30049,30168,31118,34046,35064,36378,68349,34198,31213,37645],1113942173063024731859979594],[[30169,31608,31792,34050,34740,38279,43850,56912,69146,7730],1113942173559092690618644287],[[30193,31117,31777,33597,34752,35773,44949,58127,62386,7394],1113942173559661208849357321],[[30196,31794,33443,34297,35774,44954,57109,3543,53167,50153],1095987621930403486679294800],[[31089,32500,34045,34052,35053,36028,44834,54095,37603,35109],1095987619054181960329416599],[[32450,32515,33442,34728,34749,36222,44905,47910,56916,30592],1113942173593671742194175621],[[32451,32497,33460,34724,34975,35718,44893,49065,3103,3642],1113942173320238081899736911],[[32499,34053,34895,36133,36299,42369,57600,5691,15427,14417],1101141173300095105868556416],[[32512,34051,34974,47374,47915,49208,51210,65231,10141,46315],1038453965163530859655440647],[[34283,34389,34483,34760,35226,35775,49229,6894,6621,11061],1104570259440017211564622827],[[34287,34316,34505,35243,36292,43556,52172,48367,30198,37772],1113942173328063977943260042],[[34414,34429,34551,35078,47411,53668,57620,6805,7638,20477],1093147528596967430068359909],[[34424,34556,34977,43565,44801,47377,57529,31004,9721,31709],1076859742081950142809917750],[[34537,34821,34978,35209,35777,36317,47908,56914,57944,30287],1113942173593671742194175621],[[34557,34824,35268,35719,52428,46417,5685,6928,18819,37337],1113942172959643738251541420],[[34889,34971,35246,35716,36383,43598,52435,57703,71076,24330],1113942173593103223963479945],[[34892,34972,35270,35720,36297,49313,51626,69155,34234,17550],1113942173328063977943260042],[[34970,35230,35723,51681,43933,68358,69174,29135,30336,35164],1113942173121514347841188623],[[35244,36103,36213,44906,45181,47409,57866,1903,6924,11775],1113942173114825488268478803],[[35271,35722,36160,36295,46186,52164,58670,59347,66517,71889],1113942173796810262825152654],[[35772,36294,36326,42452,45198,56580,57543,58245,71575,27387],1113942173593103223963479945],[[35776,38335,43613,47524,47847,64374,71238,29115,12557,63761],1113942173062456213629013093],[[36100,36216,39176,40024,47843,56781,56911,57702,71410,73417],1113942173797947299286335786],[[36219,39569,43611,45561,47911,56309,57949,11696,58902,42942],1095987646511136218261963846],[[36296,42389,47443,47525,56780,57365,57946,12570,6032,48186],1104570286516335825567810195],[[36323,43604,45243,47913,56533,62040,63485,46414,66514,20669],1101446757763392111014990088],[[39583,40026,42368,45121,46063,54093,43932,64638,37481,37127],1113942173310273754893522317],[[39585,43189,43614,44353,49307,58107,71079,29134,30331,32837],1113942173182278036742950838],[[43615,43866,45558,49743,52448,56777,73335,34054,12612,52503],1093147528604942195979497346],[[43617,44907,46187,52175,56249,58109,39455,5676,37528,37134],1113942173105429679480987641],[[44948,45065,47057,47520,57102,57533,57863,71639,37527,37133],1113942173310842273124362340],[[44953,47441,47527,49024,54034,57538,39198,71490,27428,61669],1101446756811010060483444223],[[47521,49054,49275,53138,57576,58183,58204,71245,71502,12571],1113942173592534705732783979],[[47522,47842,52450,54040,57566,63474,65868,6923,12469,5379],1113942173122651384303061051],[[47526,49282,53903,56915,38976,40487,71503,73436,32872,12773],1113942173326358423250765471],[[48539,49291,49312,54090,56307,57586,52679,73482,34059,51644],1101446757600969995389680622],[[48661,49284,52449,56910,57706,58213,34223,37334,8310,49517],1101446774621781684435529741],[[49706,50383,54094,56585,60524,71239,12660,4093,7829,8020],1113942172874265324750739647],[[50380,53990,54041,56917,57005,68040,71081,43281,39821,41858],1091659383584039404907195255],[[52308,53895,56311,56536,57630,45421,65230,68569,37526,63966],1113942173352110184274299551],[[53927,54097,56579,57145,57552,57707,58210,63956,6607,6827],1113942173046371545267959346],[[54020,56578,57147,57714,58131,58237,58246,34073,51632,31193],1098007912514367302672857988],[[54027,54035,57119,57143,64349,71653,37216,4860,33999,2182],1104570261731901450207494885],[[56575,57149,57346,57556,57715,71492,37217,4861,6601,6815],1113942172780763780886545807],[[56582,57531,57553,58186,45139,45423,68121,63963,63983,37463],1113942173087070938196740394],[[56583,57347,57569,57854,59022,64658,23985,3993,7819,4119],1113942172840254791394340645],[[56584,57579,58129,58171,58234,65869,71504,71526,12659,6804],1113942173352543060559410724],[[56913,57364,57551,58238,65800,68348,69431,71547,12468,6034],1113942173317964008986778249],[[57527,57557,57878,58240,45422,71487,73799,63969,63978,26878],1110542035533175587566258390],[[57559,57589,58128,49111,68359,71528,31212,33998,63734,36502],1095987618513686185854883299],[[57601,57639,57872,57943,45741,70993,2146,17328,32895,1236],1104570286247901131744440904],[[57607,57635,57674,57885,59346,67859,70991,72757,21068,43229],1107131443497960810219477800],[[57691,57860,57879,45257,66300,71670,6898,28391,1019,6583],1113942172907707339885438761],[[57710,57734,57869,57882,58132,66299,68983,71648,34684,42963],1104570243257542814979026430],[[57726,57782,58251,40501,66298,71493,37184,1382,3241,4100],1113942172856475101693754526],[[57774,57880,58174,63484,68779,30280,32104,37479,8697,12749],1113942172634977839614609298],[[57881,58180,46415,68981,71179,71415,34079,49326,42186,42441],1055334661622397389347279378],[[57883,58130,58235,46470,68982,71074,5919,30295,31251,15291],1093147528455224342929915828],[[57945,58207,45576,46416,69183,71654,31698,35001,37788,48174],1113942172787885516752350653],[[57947,58236,46469,46700,67897,71657,29114,5597,6810,12437],1113942172847512169199775663],[[57948,62075,60518,71561,71685,16258,27671,1385,3509,12429],1113942172642668093702143240],[[38199,59358,65774,71675,71970,3508,3612,6016,9110,6913],1113942172513883338028873265],[[45136,45579,64379,71242,73494,73816,1902,6014,36120,11774],1113942172812364599380371854],[[45254,46705,66516,71244,71641,73416,30999,4094,8702,36723],1113942172820759013648169158],[[46468,47021,68777,70990,71182,5684,32720,30236,27707,61254],1113942172573509990511732934],[[46471,47016,65806,68778,6899,30323,32716,63955,63972,37213],1113942172470264638797921098],[[48133,52678,69432,71584,22484,26083,34077,34245,6868,64935],1095987622840623134829803665],[[59025,59455,67195,68062,72821,7113,9787,60366,61226,39620],1104570259002790443630651632],[[59359,59452,64277,70992,71188,71684,71971,72002,8867,44453],1113942173256063283630682388],[[59453,60666,68063,71891,72804,72823,34055,53704,11142,68450],1068044407056778213178616725],[[60097,67194,67810,69437,72976,30926,3096,3620,5424,6599],1113942172633136642960248963],[[60671,64659,70338,71634,71888,72979,12646,44790,24884,21107],1071949560161586478350433419],[[64403,68036,71574,73780,73796,24867,9096,34093,36726,31222],1113942172522277752309303845],[[65874,67196,70339,71987,72232,3636,5372,6212,7749,1660],1101446774351298640043272486],[[67197,67811,72000,72819,73777,12507,27427,10911,27029,64085],1076849765188106066137807028],[[68037,71078,71185,71527,23963,30317,3637,5602,6877,32727],1101446754994151637332871755],[[70340,71530,71668,73774,18615,22511,9701,27699,6623,31288],1113942172309039262480273452],[[70341,71531,71655,73778,6901,12649,16523,17634,61267,69795],1083215973455161568752229443],[[70960,70970,71890,72816,18821,24382,31207,36721,13818,20154],1104570285832443554619821048],[[70980,70996,71080,71183,73785,27386,30288,7381,9124,12771],1113942172615914938145617067],[[71006,71015,72972,73810,6922,12573,30303,5356,6015,61223],1113942172428292567433578773],[[71022,71086,71161,71672,73483,31667,15609,16486,22941,68110],1089064615873954772495753481],[[71091,71108,71173,71508,18502,30316,36733,29349,12561,44086],1080411632977239618387743462],[[71113,71176,71186,73811,12661,871,936,3346,6052,12556],1113942172368665914942945964],[[71184,71260,71674,73495,27691,32869,37336,63960,8308,34091],1113942172410637986319918942],[[71187,71255,71585,5918,6927,12476,32840,8019,34097,49350],1113942172189437958482586050],[[71189,71464,71640,24291,30896,5624,6847,16168,44073,16818],1098007923998634749256284681],[[71240,71506,6896,11692,30215,63959,63977,23305,35611,37329],1113942171941323182623187071],[[71241,71507,12647,18503,24333,63981,8017,37853,6885,22027],1110542021998704631795912072],[[71265,71486,73802,18610,30281,34061,12544,35399,22780,40228],1101446755358365658585547743],[[71469,71488,18500,30212,30351,34060,63958,63976,35609,37328],1113942172000949835126310522],[[71489,71509,71643,6900,24270,32836,5375,7629,5623,31498],1093147527668589760323128737],[[71491,71533,26304,31630,34187,63961,6595,27856,37306,37854],1113942171924534354068516253],[[71505,71667,6926,12658,18867,23969,3337,34081,14315,27407],1113942171924967230359940676],[[71529,71656,71666,73772,26138,5692,6573,6072,9795,12789],1113942172317433676741479711],[[71671,73634,73673,73773,73776,16787,64293,66178,68869,66801],1018572724084133180367204042],[[71673,73620,73665,73775,31260,35625,34107,41725,70226,65364],1073575851225201865493924622],[[71789,71878,72731,72811,16247,939,3150,5450,3227,5133],1113942172343049795842507371],[[71822,71868,72001,25929,27378,32096,32734,3482,3680,4614],1113942172206226787027505865],[[72003,72010,72753,72817,27642,6785,8030,10028,35162,12428],1113942172309039262469889462],[[72030,72212,23991,27388,30304,1944,3287,3685,6846,28383],1113942171873734992127683919],[[72117,72222,72735,73344,12770,6625,44459,61785,33636,52756],1070746277159719031094478770],[[72237,72810,72974,18862,30334,34246,12758,5403,23170,18037],1088807967302525330612917081],[[72822,73016,73795,24817,34240,4102,8021,6017,36725,49843],1110542034555710688897713311],[[72973,73126,73621,16567,27397,3231,3290,7626,17638,41841],1113942172129811305979167926],[[72978,73051,28390,1516,3106,6575,4739,5031,34304,35397],1113942171814108339607366973],[[73320,73343,28423,30888,3643,6593,8029,17554,50087,61456],1101446755108311706595255745],[[73325,73330,73828,28392,30615,34251,5698,7630,7823,22475],1113942172189437958472202060],[[73341,73779,73781,36728,30271,32756,34144,43810,10666,20878],1091659363260189653527281205],[[73342,73635,73664,73797,28422,1445,1767,6811,16549,4124],1113942172334655381571110159],[[73345,25923,27396,30998,1943,7733,12764,4125,2183,40315],1091967606034817041312677813],[[73346,73782,28421,1520,3099,3159,3625,5026,32877,45003],1113942171805713925331983779],[[73347,28420,30324,4095,3285,5116,10043,12772,53839,12823],1104570272763433285441849050],[[73783,73829,1945,3291,3677,6255,6813,7627,17971,41863],1091967637337001228634134067],[[73830,30294,32121,32662,34072,3288,3688,9698,32881,39347],1113942171694507035566924012],[[73831,31773,32140,34058,7736,12765,4118,16163,44779,504],1104570272760886244002447300],[[73832,32159,32873,34070,3692,6866,30232,13853,17180,29109],1113942171592475435376167787],[[73833,32173,34076,3689,6213,7500,32875,45973,1108,6645],1088807945964966529372829274],[[73834,34056,1942,3664,5353,4616,5462,8871,34309,27711],1113942171541243197118235135],[[73835,3540,3611,3665,5594,8645,9039,9112,27695,36117],1113942171515627077988385210],[[18818,30332,31196,3676,5713,6787,4746,12614,12722,28285],1113942171379236945358764235],[[30335,31204,63980,4147,5699,7641,9041,37852,22378,15383],1110542021460134527347208315],[[34235,37185,63952,63974,4158,6245,7497,7769,37842,7155],1113942171429603431025905032],[[34236,37529,63954,63965,3621,5575,37135,37855,6627,12721],1113942171369976778502582767],[[34237,63953,63968,63973,4289,6005,7487,7625,37181,29015],1113942171429603431025905032],[[34238,63957,63967,63982,3693,6807,7391,9704,37307,37513],1113942171412381726182282351],[[34239,63970,63975,4333,6246,5625,37843,22399,442,14463],1101141196374695268666282289],[[36788,36813,36937,36970,3489,7619,4617,14383,13303,29164],1070543001506803219642322350],[[36789,36812,36938,36969,6199,6788,7611,37507,19426,5368],1080833146352555763712886013],[[36876,36939,36968,63934,3623,4103,4338,37259,5526,6836],1113942171378371192776624084],[[36877,36936,36971,63930,3645,4339,4481,9728,37267,1048],1113942171386765607055227635],[[36878,63920,63923,63929,6067,6254,9344,37838,4543,568],1061502744040451670457065852],[[36879,63921,63922,63933,3622,4693,36787,36798,10391,26039],1074845671241814019035038223],[[37478,63971,2001,4332,7764,3626,5137,12763,37124,63889],1113942171310350125959926346],[[63924,63931,63932,63938,7656,8622,36935,37111,37828,17308],1076859735688828200584228037],[[63925,63928,63935,63942,7390,5475,10038,36786,36967,29032],1113942171335533368808601991],[[63926,63939,63945,2006,7717,3284,36810,36874,37825,12745],1113942171318744540244800984],[[63927,63937,63940,3510,3997,5122,36811,37262,4127,17895],1104570257831810389748619698],[[63941,63944,3644,4348,7415,5140,37521,6830,17283,16005],1074845671267634209078684392],[[63943,63947,5735,3329,4531,37102,37495,6842,15136,19110],1101141208753523260285474357],[[63946,2223,3639,7624,3091,4615,4694,4738,22323,25522],1085748645922288269355542601],[[63948,3638,4357,6597,5124,37254,37494,37832,6856,25119],1101446755463867745150070853],[[63949,4472,6214,6585,7628,9113,36933,37833,12700,21085],1110542033725754657428446441],[[63950,3614,5977,8023,3481,36957,37116,6837,24343,15223],1091967624223783906397170583],[[63951,4299,6793,7710,8022,3630,37117,12611,20654,13867],1101141196322890917075199289],[[63964,6215,6794,3322,5204,34467,37504,6629,22781,28291],1113942171217145816305567756],[[6196,6812,8024,3086,4699,12784,36963,12350,12436,22300],1101446757334470734561085250],[[6198,7490,3624,3681,4747,5034,12788,59747,756,28140],1082405475332126226843462812],[[6806,7653,8018,3633,4769,8918,37110,11545,1718,24348],1088917178837662124448224866],[[7631,7711,4692,4740,6867,37168,37848,63896,7150,17191],1113942171183135282892815604],[[7716,3224,3286,3627,5198,12545,37089,26350,18348,28591],1088498815256763452562726024],[[7833,3631,3684,5023,6018,9125,9808,12785,29037,20863],1104570241158914485735311008],[[8035,4525,4622,5135,6817,37430,12538,25171,17704,72937],1076849783434153598736379137],[[3476,3632,4768,5118,6849,9119,25037,24370,24931,51492],1078905908055027082619363365],[[4604,4631,4741,4765,5129,12613,12762,13129,13803,54691],1088498841603027850389600557],[[4607,4748,5131,5199,12624,13838,13234,1184,43776,50917],1059777211974298231157604118],[[4749,5132,6073,6869,9045,9123,6635,1234,51723,8424],1073645660059287599902489705],[[4764,5134,5147,8703,9111,9806,16198,10975,18583,16836],1082405442510712303074824218],[[5128,5150,9791,12625,12748,37390,6844,25154,8129,22263],1073959095892811912624138244],[[5130,5383,6603,6814,8677,9345,11544,20801,50881,7504],1076020698762348558819501111],[[5205,6019,6824,8864,8919,34466,34686,37204,37332,3254],1113942171140297458917285507],[[5608,6816,8676,9120,9342,10029,1049,15362,18411,50581],1036365251011185997804677635],[[6605,6826,8870,12782,17419,36830,37214,12506,44797,13116],1110542021212066636128045124],[[6848,8309,8866,10025,12759,12786,17536,37333,63598,44104],1110542033518500445813406691],[[8311,9097,9695,17637,27875,36158,37215,37331,3255,6905],1113942171131903044636824628],[[8602,9043,9118,10024,34375,35395,63804,63825,12810,51919],1095118141311882928480920761],[[8607,9098,9809,31215,35163,36167,27910,7257,19660,56968],1091659362406359758650892913],[[8865,9122,10031,17641,35165,35393,4126,31223,32891,55731],1110542021204057449807237183],[[9343,9799,12761,34685,37512,63820,63837,6099,25028,10168],1086460864103352583835049698],[[9807,10026,34342,34687,35627,17123,34125,61280,51399,16933],1101141165002749457096255038],[[10027,10032,12760,17337,36462,63821,5539,30252,47066,15610],1095987619987562205807759885],[[10030,10037,17431,34080,35626,63805,46795,55054,49487,58593],1091659418982179252902578559],[[17418,34000,36724,37470,37519,63645,63725,29350,25212,43790],1067232388432300503531723213],[[23304,34001,36123,36734,37471,28283,47273,61325,43789,42086],1089682492830813997330233878],[[34078,34376,36468,36727,63649,15631,17196,19232,29105,44206],1093147521257365781572797594],[[34377,34996,35610,36140,37807,6033,60991,61333,41746,58915],1077733995810026371969936924],[[35168,35608,36739,37448,37805,27408,1666,12804,43267,14170],1060992925584128056179704261],[[36114,36149,36465,37783,37804,63823,63906,19270,34111,61601],1101446754659302375137511455],[[36471,37449,37518,6850,11528,12740,51417,15263,1722,68615],1082094503200791519257593301],[[36722,37505,37750,37812,5670,6904,29024,29362,43169,38796],1101141196150861355572014853],[[36799,36872,36956,37035,37475,63899,965,14995,54976,13554],1069541632929379604219920704],[[36831,36873,36918,37034,37523,63898,502,952,21184,25138],1072758051040418159842941409],[[36875,36919,36962,37153,37190,5064,5428,5720,9738,8541],951626432910676903010683683],[[36930,36965,37240,37476,37525,63892,12550,16513,15939,8213],1077640850518850592261205966],[[36931,36964,37092,37477,37524,37778,37834,25014,28551,21100],1073645675105667704128343198],[[36932,37099,37182,37246,37258,37330,63900,12317,12389,3960],1093147525772369625916855857],[[36934,37032,37132,37183,37583,63897,7845,17175,7666,7166],1083595762110182049730881044],[[36966,37033,37125,37582,37751,37814,37844,63904,63914,30701],1076859735516288812635159747],[[37148,37195,37255,37266,63588,63603,63619,63630,352,12820],1008764693600682045307138992],[[37241,37400,37473,37827,63608,63622,9852,5004,4584,8897],993394754637538959416022733],[[37247,37405,37450,37775,63626,63822,63839,16546,13652,14174],1085748642648710837842954009],[[37263,37431,37520,37593,37841,37849,63593,63636,63724,63893],1113942171148691873197683128],[[37451,37506,37769,37806,37815,37845,63836,53854,60334,14613],1104570259900320804126074809],[[37462,37602,37748,37830,37836,63894,63903,54727,28471,1662],1054183452696409121767628135],[[37474,37592,37831,37839,63614,63902,4117,19869,319,2705],1086460848874907352098182999],[[37522,37782,37837,63631,63895,6862,12610,1256,19773,60186],1079217792770433122411316297],[[37644,37749,37846,63735,63890,63901,6874,59051,50880,15121],1083285122914395985988765707],[[37789,37813,37847,63812,63917,6098,6915,19052,46762,53855],1113942171106719801795062441],[[37824,37829,63609,63618,63641,63908,63912,17269,14164,13261],1088807946998053365104597818],[[37835,63615,63813,63830,6903,19098,15260,14996,17705,13642],1057853122701352150522891413],[[37840,37850,63824,17273,19791,29127,46297,17907,65044,31571],1061890294270672724157335651],[[37851,63623,63771,63887,6887,27986,28000,44223,61218,66831],1095987621480336402836573205],[[63627,63756,63838,63909,17122,27993,14612,42841,56937,151],1067152136307083512878776717],[[63766,63831,63876,63888,6875,19453,54710,25045,15797,70183],1066259197509474721399550171],[[63877,63891,6631,6851,19768,29367,1673,19036,18341,2271],1075964860176633270053173651],[[63886,63907,63913,6857,32757,44446,45472,47060,11225,71800],1083285122212521093929633196],[[63905,63910,16193,17270,22778,32893,34145,17911,31834,60611],1062319164123706588078733392],[[63911,63915,6884,27503,31220,44336,51380,50115,19731,15590],1047626773034800055719074843],[[63916,5399,6912,17266,45064,45975,2481,443,38837,23071],1076593114816324626166657683],[[63918,5664,6864,16992,29348,47261,15570,48270,55000,48517],1078905939602123787445752868],[[63919,6863,29356,30248,43848,45037,51729,15464,64851,27116],1079476704519131140429972213],[[4116,6831,11529,12730,22492,28293,21113,52258,15510,42582],1066893117681922426400262892],[[5617,7844,12622,12741,27929,44793,54752,20644,49475,43293],1081839015498313631343014838],[[6843,12313,12602,28412,31289,47262,1607,3743,24625,61487],1052054786550360199961656696],[[6845,7846,12351,12701,12746,29123,21096,49742,14730,5999],1075707901082954791562889293],[[6865,7847,12357,12393,27409,61161,39644,13221,63142,21804],1078905907730964590695820627],[[6902,12356,12543,27429,45675,47279,60434,26885,26216,43251],1088498810059483338503493752],[[6914,12392,12555,12623,22779,46285,14928,1269,54967,6339],1060675605857084296909880386],[[11282,12606,12716,28413,47268,61320,10992,19564,25142,67886],1073332191221100808432715429],[[11297,12388,12729,27637,34106,6155,10995,14580,20129,16758],1069802976070589274385149302],[[12618,12731,12742,17003,34110,45674,47069,22580,55860,49159],1071321449244837115275086688],[[12728,12747,22794,34112,53571,16446,54146,63382,2314,2955],1065999880384721469133422235],[[12743,27426,29063,32699,34126,26341,15279,10939,13545,53638],1051319365499207199688511815],[[12744,28380,32903,34128,44999,45977,24001,40453,2928,12054],1055005508960590963152793247],[[18983,19838,30267,34113,61215,42145,318,19678,11253,56852],1050828758542210004860966154],[[19769,22795,28415,34108,61261,51643,7776,60847,1952,61394],1057104168762248433736933742],[[19790,27666,27987,29354,22934,28259,17703,31693,22095,13709],1056785735025728955855686691],[[22352,28381,34109,41694,60367,61287,20597,49867,14380,7548],1075707933049267072095935798],[[27513,27529,28382,15151,20161,38122,54703,17958,52310,54530],1052616076613585908012033181],[[27569,28414,29018,34095,19064,13187,7634,52081,22333,50091],1049921899209578070699023169],[[27992,29355,34122,53567,54729,48225,39834,11071,14501,32360],1053782990382844467566388516],[[28007,29351,31221,32899,34142,47265,16485,19575,19082,32919],1082094529683760876342052271],[[29021,29361,32897,34129,46740,61571,1155,56305,42562,49863],1059777166453276112157520586],[[29058,32905,34156,46295,47260,431,3041,68648,50044,11815],1039577409654925556519648559],[[29352,34123,43864,45661,50111,20602,11062,19726,56708,35711],1060358265870246855392007648],[[32759,34127,44205,46786,47267,61266,14478,14884,59163,43305],1060992854106008007166495884],[[32901,34138,45468,46294,46746,43668,39654,39819,11957,2957],1065999930127104505389273630],[[34124,44466,46282,53094,61281,53754,14994,22101,42529,43531],1062763032534732721797170532],[[34139,45660,45979,48042,61171,10678,20061,63090,22326,13266],1059777156866034383531943661],[[34140,45662,47266,60998,61326,43258,38861,58557,20959,60931],1065999930627633123542604361],[[34141,45663,46296,53097,61327,48141,62041,18202,12076,53056],1033350941299290041814419654],[[34143,44794,46283,46749,14584,13083,61588,2669,12190,22126],1044193423440739231427129721],[[34155,47063,53841,21999,49529,59522,49869,15282,778,39854],1049601325751523448242168541],[[34157,50086,60335,25149,10701,31598,52078,56873,13641,55548],1031352944387583915058108523],[[44329,60990,61245,55025,41911,54147,3818,519,13299,70893],1034037336804990286995809746],[[44778,60441,61272,39638,41902,42174,49707,12247,143,44139],1028431984745832880482959802],[[46284,46743,61286,6150,445,327,33814,69067,14574,1880],1040565357416861375905024363],[[46771,47264,61273,33316,54743,17963,58608,1268,46901,5694],1043015833707052191040539529],[[47263,47274,61314,33328,38883,13183,2161,53370,67429,25552],1049601298878325204259703228],[[48079,50165,42185,15487,19496,55033,61748,1930,15807,24702],1045992059294639637202480127],[[48258,25168,52657,55015,59546,54162,59717,45698,25566,14166],1029333144827904166389788727],[[50110,53136,61328,25018,49504,20155,53805,40304,60075,44719],1028104682642051698360647991],[[50201,60999,42165,955,17981,63124,3905,12090,13279,52720],1009467851146005911414303255],[[53840,44062,53621,52635,42155,39605,61335,32115,14997,31765],1045670216718431758907656444],[[58856,60440,61331,10689,20128,61347,8105,21183,15480,49434],1039973170021289082591805522],[[59041,22635,56035,14444,10941,61744,15412,7623,16383,20206],1014220873473500795696592445],[[60435,7251,44103,53745,38051,54161,42961,15326,25933,32317],1024091104683723250670301594],[[61238,61260,51712,12791,25128,19509,18604,7728,11636,18976],1021321660253492199402831025],[[61255,42167,49827,779,19529,42960,46818,11214,59137,931],1007066897088358908976057192],[[61319,61330,17900,61775,59509,18481,42365,62388,18731,62536],1018214270255057849330448815],[[61329,49876,13104,49462,326,1647,62415,39229,54521,18156],1017006560797251214560151115],[[15273,56044,24371,55055,61336,48785,33078,17210,38509,18415],1006792388405113413982823234],[[10932,59724,24344,41880,54759,32964,21143,22317,40412,35848],996809866594235610755254812],[[58542,1257,19665,11036,2280,56251,42548,6735,28117,3126],996690543021044521602819246],[[38134,39648,25001,444,39836,61604,33817,14885,33072,59147],1009539058694819787730556558],[[524,757,10922,33832,19703,20079,43712,28157,3917,46044],1006120539833004111369790837],[[526,11037,18498,1644,42962,43759,44624,31929,7892,54463],995914116520348270873632167],[[17714,59751,13090,7743,39497,42896,63093,54750,20825,241],1000141180166965389285345906],[[17715,13069,23974,1151,21231,14786,42558,58688,25124,39963],984016271176335806713463977],[[17920,59533,13196,14459,22105,45715,51156,56364,59997,29251],995794732844257853881395681],[[13199,14492,1615,21230,3809,42771,518,27156,52086,43707],987170393058896687502806001],[[13219,19552,27026,42386,15968,14744,20761,2159,44,48370],983795052838509981609925708],[[13236,27269,3043,27101,42880,14927,66025,29051,20940,43762],996809753111393860825308488],[[61348,30900,1941,32782,41548,53702,42569,46114,54490,25570],1002690390817291850564135377],[[61561,27273,3046,52003,67548,62513,16855,55180,23187,20630],984016255189205890115770111],[[19466,1186,26203,2676,4414,62074,68882,52920,2983,5058],1000141147002576190026879651],[[27280,1364,27094,51928,21146,63263,66020,32362,1998,69539],994125869999532293555500456],[[30942,3048,31556,32813,66038,28319,51191,1559,20895,27171],977901745638523033674017536],[[32170,8128,42857,57168,13175,15240,14739,40452,21028,20296],992448705203845631932341482],[[33835,1371,16934,52079,57072,64829,62518,52475,1994,215],990654212999187323532429547],[[8104,4409,52080,66043,70231,1657,52972,32088,8582,18392],980973204900501680589284887],[[48811,21186,43724,67415,10948,32357,38208,32943,13495,56162],983229853320937042432472527],[[51994,15983,21189,41537,3908,24682,14752,20979,38659,55448],980286784056084635217697053],[[56535,57183,53366,70177,10928,46089,20196,17216,28123,6318],983674146611603125976004388],[[56574,57300,65196,14767,21672,40831,52502,2307,32097,44350],986265923508043148081764906],[[57067,66388,13169,521,40795,43143,25160,4008,17368,53648],967274774078679216959666196],[[57295,65208,68608,68883,52950,50893,59977,2956,2768,9862],983674117797038397382479269],[[63260,66368,13170,19435,14771,20189,18273,64309,55111,3711],964055565725715941628723029],[[66369,68650,28185,19478,27148,15442,24368,39977,2376,14149],963499751799508757127600434],[[66389,69082,28168,45706,52932,25109,24692,54485,40226,65987],982766507067807629432835839],[[69066,18722,22086,14414,40261,51518,17841,38981,123,32522],963480546357941564207641389],[[69083,13164,52966,23185,42557,54751,32224,40318,7865,328],981979144424208881439756839],[[18733,520,22284,14772,50675,55212,54686,17157,30728,16619],969563338161428069300150575],[[41885,53790,59527,42538,6730,48751,13621,19796,61599,56874],975730051318294773120828625],[[42517,14757,59519,52943,28129,54728,54514,13275,40115,30621],959669580453731555660809105],[[42732,14575,2985,39206,40305,20603,43976,6010,62294,40124],954625604769725155991270832],[[14819,59543,25550,44615,50857,20556,60571,61880,46888,22889],975730033261773639463257016],[[21702,45721,50743,14151,40262,56385,29411,6659,55923,49056],957876501224871504135700586],[[52944,59551,20991,39242,15276,13632,11554,18281,20263,17912],950702114478237983427920639],[[52979,14180,20703,15944,21806,56685,7610,2598,24345,42543],966126477940601752092693775],[[56862,22306,15503,43268,23040,56681,61820,30377,25151,31512],953398956249313495166181436],[[22288,15327,12191,18050,42223,52797,23,65988,7035,15338],957110612929645640764916633],[[20203,48508,31916,43252,25749,49426,20436,903,14288,18671],959898019728377151644945335],[[20718,48725,20182,31917,43524,61876,7773,40753,53355,12034],966126431280613596789153274],[[39209,40237,15293,40441,24694,40889,27139,777,62520,27761],966126431302225252753895635],[[40238,55011,18036,40440,45621,40888,2596,17825,2099,63331],962677352710191989832417519],[[40292,51722,51582,54981,61842,61577,29384,31817,9861,18421],960124712537998538762862689],[[43140,50892,28350,21781,51666,11549,32102,2700,52556,50464],960124729585287962678940218],[[50856,31928,54990,15463,56380,52786,54478,20839,67448,11316],969563259283627920706617340],[[50916,12252,18051,13544,61449,3272,2185,42934,67862,14192],956654008301302208152362321],[[55047,20684,13555,32078,53460,7520,68496,58892,4367,60337],953857104962803368944284012],[[51157,54846,20530,20651,14200,17916,652,18052,43035,51517],959442706433942227935199930],[[51645,55048,25041,19410,60338,29083,64320,20889,39420,47],957110616722849101675495622],[[21783,25741,19420,25569,46808,41319,55217,14978,72042,1058],948092106749137599598777943],[[25023,51738,17156,56704,14198,2658,20838,53807,16834,51570],956881452835444199866908163],[[42222,43302,13256,24676,40883,12562,24010,907,7095,9171],963357058897198991607263751],[[45626,46030,13251,55179,40314,32124,54160,24984,34029,52856],959898029808974260816687445],[[49904,23047,23075,40252,2656,25573,18018,24372,4959,44146],953170620488048641902608398],[[56369,23090,50781,43977,44481,13450,60057,24078,72022,26607],941744427534981011335913036],[[60563,60960,40882,21016,59138,23701,22278,22689,16681,26800],936072995401204276389184906],[[61846,24674,50780,55215,40250,2659,54148,2709,45619,42041],956653981059375608481115770],[[25551,50703,60147,60369,1372,16821,628,62187,42040,52742],953398911596486942961179146],[[50704,60188,21029,44490,50353,20434,22311,64335,44722,4249],946856972010031001431139744],[[61660,32214,11107,26689,50327,5702,70064,19359,53211,19774],944031079323636761051848054],[[39851,55211,38524,653,842,6293,134,48347,13694,30574],937655916345139261201570868],[[41311,11106,58693,16784,32723,14141,17716,39974,68086,73275],959215830089080422176611429],[[53490,40319,7665,30285,24657,55150,1755,3401,25781,12179],950134448137971289551361634],[[55175,41191,59148,1947,24709,54163,38636,53788,16802,33787],950134443800872348223668742],[[11246,58768,18473,27136,30321,51963,149,48075,807,57264],947548063922617030450258444],[[41196,41326,3745,54533,59076,10847,43432,61007,2417,73491],925242647626967992158812212],[[58750,59151,12077,24005,32952,968,54226,2696,43008,60550],947212382855871916367304337],[[59152,61690,2954,7485,951,630,25253,40657,59976,20967],921281100820489312474338581],[[59162,61758,1111,7636,29119,24341,39990,15672,11213,17235],938457339793286887728275016],[[60145,2657,6661,7745,329,55623,45534,43686,3958,2026],937548811647697661769439375],[[61575,3498,7836,18809,32148,776,70890,22807,18199,60142],950363479259402934502942230],[[61693,3755,7741,24375,52037,15237,58385,26144,21060,26804],937655902915794111375179136],[[61773,3757,5687,61493,11137,42514,25256,125,25583,11715],925566313151906598439179362],[[1377,18812,29140,2158,5724,55624,66181,11639,18676,65340],940965418211528271151247957],[[3279,6643,2184,971,17817,14755,47953,56846,1302,62276],924321186194202382050782462],[[3505,29188,31209,948,759,2134,15073,9520,9859,44217],940500944987372142494759593],[[18462,27126,32934,758,846,14728,64282,42606,54487,8875],931129262622669726408029494],[[20824,26679,50631,54145,61349,5841,2468,8593,802,9978],940269517501640135621206108],[[27129,30292,33646,59093,61337,2135,5836,7975,281,22145],940500964624385748657018077],[[30328,40813,376,13518,24378,69545,44725,45612,288,39789],930533882458584244863446164],[[30938,50731,59273,13474,24979,933,22654,8517,65369,21012],930533907553080155772683427],[[39993,377,40367,61334,13714,33312,26733,54389,49966,6385],923592627588195140902393898],[[13451,17702,61346,23722,38169,72946,72304,44555,16712,1123],896403702772971346488774598],[[17713,59315,10778,14965,93,24076,19340,39810,16724,15102],917312690760956687215088178],[[316,21171,41501,25214,1986,62511,18213,4371,18031,16725],914873265279913228169441841],[[317,21216,13689,3116,41454,18174,51407,20607,16853,65367],899533786531884280693139498],[[10771,17822,6274,207,2758,19331,38159,52567,4021,25218],906419172071846881169136040],[[10846,54221,1884,2098,67013,66824,41496,64444,57523,60189],918264899381963719376171535],[[10861,60030,24107,41525,65982,27820,29160,20713,14680,31350],911468957940573743657039204],[[10873,61397,2003,6295,47990,60467,1460,233,54424,40438],914873216503258138582432708],[[13472,24351,30689,66175,67824,70003,67623,62172,61006,66014],921644021125450405054012351],[[61459,55634,64346,43435,13725,73734,16337,2914,54979,14202],918264830772100001477427268],[[61882,25965,4005,65088,69534,64817,45533,4868,44238,54274],918264849722315079892172856],[[30346,1763,52916,65050,27763,22848,48038,25935,35834,6359],915350696567324146174518461],[[2762,52959,55613,69540,60497,58673,67562,4869,43248,56272],911948202582475135456652239],[[166,6272,67872,66184,25430,16342,18773,55888,7831,14053],902962485355418524397836117],[[24110,67014,52119,11648,32359,41416,41757,36401,60570,68795],912078589207770379138106679],[[25930,24,38968,70892,53294,22434,32972,5066,49724,31333],911948189714259745040241097],[[25968,33,67834,68454,70891,41515,35741,54283,43317,8452],896558687964700236643551681],[[30688,70063,64942,70900,53253,7253,19828,56831,9845,280],918740543313370622455896379],[[30729,66687,70901,22871,73748,14323,2740,54271,2233,15743],908532960922466770341513574],[[2772,66680,25420,1553,72940,2479,45083,2374,40887,14655],902962483392955526182360491],[[3998,70906,52146,53323,73750,60498,32275,33885,62310,49749],911948192077257792720530218],[[4013,67848,52145,16388,13678,39369,60282,35671,44623,14892],911948183748851181872485383],[[69799,25454,18724,3419,71833,58869,8053,5056,66672,7873],915350659022469534353182886],[[25396,27822,43773,45546,71813,56847,32276,55395,276,56160],906398685987303087604861536],[[3423,58655,60094,18766,32319,36402,106,9851,15945,61727],911948180740967717640585398],[[15226,41546,72943,62174,19864,60281,32273,21570,40443,24074],905236246296881165251988359],[[23168,64031,67569,73751,33337,34368,33786,9976,64812,2308],915350650977264096310781703],[[56861,64052,72111,32318,1571,15632,62533,18968,6667,4020],918740540516832605017876380],[[64077,64449,62184,44728,52561,54835,55878,44614,50113,51528],908532950069198032573169715],[[64849,71792,64062,18768,18946,17362,69050,18826,10733,56872],890401933147145809621317981],[[65993,71825,73133,18215,20779,25254,12038,39245,73663,38530],884422295229457966788972841],[[67455,73735,11651,37886,18170,54851,20158,53493,52032,68953],893084600047392552476766440],[[71846,73029,73741,64041,1579,25,2377,67438,20764,3273],911948171978085274314301385],[[72139,73749,67624,60468,32243,35361,66377,67246,120,6542],915350638545246427904811592],[[73055,73276,18771,44315,20884,33789,15513,55052,12255,31316],905104849005055906845699351],[[73149,73740,11305,20890,62153,20730,72132,42038,44078,1016],899513124585342193190315611],[[62197,26871,32316,16985,37869,33902,3759,14239,7474,67544],899271169840245364039530432],[[19374,27551,3396,7267,18998,32288,3740,9525,39225,44547],911948172856449365365094198],[[22448,26890,17277,62534,18188,32286,4641,24814,25753,25971],918740532898949512360403732],[[27591,50199,17280,41593,11288,31,9918,67390,26867,30863],908663839130258462268954476],[[39344,17015,53627,34335,7972,26407,44269,51718,51321,16734],908532941084471516704048459],[[52562,17286,53691,4647,2375,25739,12050,25936,54756,51113],911948163545970228498843295],[[45105,53151,34014,58357,27576,7973,12187,26444,24606,33429],908663820493772653747108672],[[45545,56853,62531,26972,24154,45810,9855,20468,22162,42088],911948165522484930545156172],[[41594,8040,15680,26971,25215,9917,9574,16616,32594,51851],908532942534933247993418145],[[8054,32239,29729,56811,24862,36503,285,16430,40114,39139],911948155224794117303987034],[[8064,58846,11273,157,2629,11473,54369,42617,25166,29193],905104845803731268031169081],[[8629,60407,8088,24161,35765,43139,45824,56374,16730,3068],892574454358681749374843915],[[8652,60412,8078,2616,59841,7045,45831,20803,38470,48467],896050514651730961172892739],[[10392,27536,57504,7974,6344,31143,20232,21036,16153,40592],887417142132293902198717350],[[32298,11579,32910,24595,54887,229,7825,53060,12816,2151],876106089804441519338415457],[[45032,29730,176,47080,28497,35859,21021,11254,22053,60009],880900358798664395663796478],[[45059,11592,25107,278,65075,42039,12243,60191,33395,7334],898341747591791487123532065],[[47033,22,26140,29210,8518,48853,58769,12091,31319,43216],881846246285284963356880171],[[47034,39412,25967,29214,277,40667,20647,22707,31324,23842],880383147129369711051958420],[[48102,26085,26735,26402,66350,49944,51668,18548,2841,2773],886229784724847378608672099],[[48111,30774,47083,66047,121,21045,15938,7287,37945,19574],883391697345650581456405339],[[63320,30781,47098,11462,35276,69825,21589,22183,66562,19562],890023861992286708536221128],[[27072,59874,60557,26734,55547,16467,41338,33628,53684,63262],889730617186230168024995093],[[6636,28113,9979,26087,10443,43532,31656,1354,35121,2528],895007468894064581002279860],[[47101,1459,2735,36490,66622,44152,52718,4311,2689,10323],898474122789002775295246070],[[61036,7085,31148,31783,51310,56176,20135,15006,40130,68472],895674810845161979362049244],[[61037,54864,30754,284,16652,51648,3007,15375,61832,46811],889596951984097384719925346],[[26732,54993,26421,279,22153,43247,11485,43523,39085,72879],889596942203514301399391239],[[33788,9916,35845,68486,68844,59857,31591,31639,55259,40119],901663672650488653138726901],[[54427,9919,283,69087,72106,52877,59610,2226,7885,66431],898341743929600726151209242],[[55533,32517,64840,208,48726,46041,43272,46816,2313,67532],894874600168542481036434728],[[9977,4965,10280,16596,14248,14681,11492,43215,4554,14581],885715684533297151040210333],[[30761,35100,9849,286,14682,3008,51649,2384,38073,14751],865533190259615776983418276],[[31800,35250,275,72828,21571,6706,42087,24209,35987,55081],888839975373960969048834075],[[35144,36491,8950,98,38727,15272,55199,39960,16741,42879],886095588707527759350445609],[[35153,35352,20493,50260,40671,33010,14067,15728,51077,60040],876844982716649284755408747],[[36494,6313,69770,51339,50446,54352,51200,52719,15015,7469],894874608255205994973270396],[[36495,8423,67271,104,55170,41312,21810,20359,2096,37976],882333691707836139059169439],[[36498,8943,9579,51364,25546,28507,54488,32606,2553,43349],882715045231481583225515016],[[36499,9154,101,50448,42089,51161,63233,51946,68907,73083],876461078896039051215264680],[[5092,10264,131,43271,55198,24701,1109,3719,22600,24397],882198916006113535413051231],[[5093,10140,103,48746,25035,29053,15488,2454,16460,2743],891393941750881466151828242],[[5094,10498,15482,21588,31510,18843,36352,2516,5649,10261],856816596750612313841613401],[[5095,10432,43144,49945,15461,50021,32722,42881,8785,6350],878668077677539293261554035],[[10509,15499,55121,14683,25020,22217,24190,16442,40113,659],869201651343244412134055997],[[282,72323,44128,40653,52898,11226,4389,57257,43653,43109],882580318411099168306035082],[[289,73010,44081,62289,54725,55407,18304,66630,43214,26552],864042447695084625134676784],[[290,73049,44042,49967,20490,52476,50045,18567,51748,58320],885581417041657023954908024],[[291,72855,38740,15372,51550,6387,22498,69970,13186,22181],869338450473816842157411890],[[213,50288,20704,20532,61871,11555,46890,22719,52104,11088],867767978399046124591969316],[[214,48836,51493,24681,39812,6959,33257,22694,29550,13122],868650871698378384281804289],[[234,52887,54527,24620,6715,18043,46810,39068,52129,19056],878668086978830855110283302],[[240,20554,20679,38510,14082,50617,62881,42678,23378,55226],881004510960743282092354856],[[50466,25562,25788,28345,50020,55171,26049,20675,1301,42394],868513989461155905328700019],[[25807,43291,16604,28484,18323,60370,3713,15213,24661,49055],871563479759728185819331596],[[40898,62305,33022,15445,40126,44479,43634,53577,62272,11804],877468883752853938450881161],[[46032,51735,49844,15408,44493,26680,41057,4248,30868,52631],871563507636079387064753088],[[50701,56180,27178,18425,59231,16740,12269,927,19623,3299],862156978520048307610147984],[[50769,42164,10897,41328,24889,24733,41081,26900,854,65642],851045400347902046586082005],[[56166,49875,20670,31500,29081,21789,31351,51414,15163,4238],877468910959743685296390230],[[59886,60929,51334,54528,38523,14066,26043,28356,9204,39057],871563481379270025251488739],[[60963,28320,51719,22265,29386,62021,29246,20897,65094,3311],868814375765229113958387348],[[51580,54402,13560,22264,31922,24567,62854,60064,28151,11688],862156990175876377227912492],[[55429,38483,41192,53458,6358,51673,15177,31280,26915,33475],877468882053367114676414704],[[10900,11245,39811,29409,29120,30609,63241,15064,11146,33830],868513968705931399673861040],[[13569,59597,14083,13622,12563,20514,42911,67551,45220,30087],859074065186568059508506958],[[13651,40127,61421,42411,55817,24557,22708,44557,60450,363],877468870583573816571940970],[[39813,58516,22262,39961,50577,20980,42870,38048,62380,35713],849925336055014743105731512],[[41195,58507,11548,24306,4316,63245,26841,24069,2422,73021],871313760155254423177702407],[[58749,59233,61705,12560,31739,43497,57260,4039,12072,69972],846797904818535874064417134],[[59243,59596,41317,26183,32586,14158,43314,39157,24357,6300],854551228283164707506547120],[[59245,61430,22215,31205,22709,1353,39805,10781,14182,21271],865064703056185324443828742],[[59611,42422,55806,17221,20690,28325,31283,3212,54800,60098],868563821605353864054254913],[[59998,31936,17206,26053,22214,5954,6386,16435,7244,35014],877468880996311742666734582],[[61471,55822,24556,3959,33228,15397,51948,22601,7368,45713],871563470119833325887041209],[[61830,13540,16014,39962,26810,26628,14889,16516,40654,22169],862547240810254784650829394],[[50092,55801,19710,23095,1352,52753,53598,8795,50444,2698],859074053573074289641470520],[[54286,13549,24566,62055,47585,30067,11789,11004,6157,40490],846002658314756678843735374],[[13631,22216,31194,31708,22706,1355,6563,9612,2540,3056],859074046689100606183187240],[[19795,46899,52743,26686,32732,6535,29648,25365,16293,11154],861601685412317184083705702],[[56294,61873,26172,32591,43183,57268,52028,22676,42013,59242],862156993542310858982483223],[[56388,31330,6543,12270,33239,51608,21077,8888,55739,48262],862156960785948965956000924],[[60144,24309,3961,6009,4251,6384,31348,14514,26349,13482],844955350634733569954590892],[[29139,1432,6371,15471,26780,22182,32607,9608,66024,24800],855980021741140248485101371],[[32583,3526,24748,15428,21284,22550,43045,67305,65302,42722],833353405544239774245820779],[[33656,5968,6370,30550,20941,16469,42868,7200,8729,66556],871313737159607093665921125],[[1110,1427,7492,15187,26623,9370,8802,19268,3032,2714],834676056050739870982929427],[[3278,3515,7023,33200,21158,7232,29969,25255,13067,51636],832636098457206979525948448],[[3721,7003,15215,50734,22473,22684,12458,2551,10166,48322],840840541434440960148847165],[[4379,6000,15212,4250,15912,7281,26786,47667,32581,48913],852646708411758738452161631],[[6534,7526,15214,60973,21301,16534,8453,2530,56175,43337],855586763237544210708238064],[[6973,25532,51696,20580,6084,8778,4899,23345,24417,50552],858124626360211038599019006],[[7503,26787,33248,15894,21203,32688,2842,37935,26050,29296],849529253953407240915044593],[[7544,50636,55247,42858,22673,8217,8742,926,30782,37958],857732368224883877663489929],[[40783,46037,33199,33401,32608,44549,43042,55736,3710,40565],849529259403973168148414838],[[40839,20921,46054,39804,6087,26918,20993,61619,25506,49536],852391395540139450644356270],[[43473,47602,54506,26856,40118,31349,5349,10708,59077,51781],849529248978498942037158576],[[20542,54554,33397,52022,14935,15116,27797,28057,22166,42856],842860622831523494943526060],[[63253,22742,39788,7165,16714,33260,47001,2097,3904,23565],852085209555748570383193827],[[42688,2457,6562,16718,4227,29677,29530,58619,54280,27282],842461257950186818093629996],[[48896,49200,21079,51385,15144,8717,2501,50002,39651,41303],834272725735591936435280758],[[48928,51121,14931,53062,33231,60050,2029,25216,69815,21489],854938786309345940473723242],[[51119,52752,6561,21207,22197,11123,11821,16231,55819,57031],849132992583882924825273893],[[51881,52757,26864,42915,68804,25311,54538,19161,12885,51918],842461221427883828664184834],[[21105,21162,32691,2694,41559,10315,35482,43625,51967,6286],845038579287044588462361591],[[22196,32609,51415,53058,60022,7367,55085,39635,8114,69058],836450857316831138034286531],[[33407,51384,66427,15071,43687,56216,35463,40785,13143,13972],844640208524457909537160831],[[44053,2391,69988,67213,33304,9205,24141,5513,50025,38875],834930459898929589475993057],[[44059,51942,4229,30084,18398,47004,16292,15091,3883,33926],838334233584745930662331078],[[53566,22699,7214,66815,4511,20271,3434,55534,21609,41286],829699487313976630246221511],[[26803,66794,60086,56210,28909,34433,35632,41561,38897,62745],834669746481780986432569839],[[41564,32454,7322,12464,35008,28917,50752,18726,13794,23570],824934217711575111016786064],[[60099,33288,45641,27657,2831,35029,60646,55877,42955,37960],837530917426290710791260935],[[67218,35130,33350,11130,28733,10208,9604,42923,27766,60823],831341889464302166006676155],[[72365,36348,33366,25389,4508,59080,38063,59591,62756,6361],825106410435138885142381745],[[72373,11141,25363,20361,1540,72474,10950,31253,43445,44057],798713539252344954010112092],[[73127,45646,11787,27442,24420,2498,51935,435,49712,54625],818649960679421843440831486],[[73139,27457,35035,35963,16351,30787,68917,42835,14873,22194],828459276540995281032800790],[[32458,4241,22669,3223,4909,4812,55156,52056,44134,53368],816569981760126230103405405],[[8445,29659,7437,28895,29974,43809,14926,13898,18107,11083],803821541654608597533958383],[[9361,46975,28740,27686,10201,28879,23238,19095,20269,18309],828144242743200135322591395],[[32020,29666,7423,3364,5005,1242,22470,441,33819,11371],812317049503663694565979920],[[32026,43702,28913,35629,24712,43044,14585,15573,14664,72834],818968656250653012798408639],[[46983,60546,23354,9223,9613,28894,16213,14586,28248,55049],813488921388310612365503694],[[60034,33476,20304,34453,19386,7310,31496,13966,51927,18955],810220801881809011056050138],[[2852,4563,35971,29989,28921,5504,1781,13109,52002,10460],803821496022011457213476136],[[4569,29995,3368,8350,28878,46625,33705,5166,7602,47008],812142133311200398501089175],[[4901,4817,23249,11599,40841,53595,49929,40698,26575,21269],821884469465232196766699972],[[7432,8354,27738,45493,46314,25580,22235,7119,31781,57263],818649900856598775826397846],[[7441,5454,10220,35999,45513,16350,6336,13877,59285,11136],816569939971650048911356752],[[8345,4911,25528,20958,14955,22943,13154,28254,31116,48674],797370842468918454154237442],[[8358,10190,3438,46311,15056,6153,5438,15040,8508,46401],809044207118378379582742584],[[8754,29562,7451,46667,19512,52338,33714,36168,3357,6491],781957470957037673505588254],[[9222,23369,35481,10774,22549,49948,12797,5412,41360,60028],803821515901030238651128967],[[35461,10842,362,60640,43643,53755,47672,32588,487,22705],812317030630407032932460174],[[1544,11799,19391,25934,69973,39641,20332,62509,66927,2255],800839869819798789253949583],[[10843,11616,25966,52106,72144,56036,434,38554,13363,10635],801165664706339715073547182],[[29520,7455,50674,66671,28030,10974,39939,19045,5816,49664],806258117777563495624124446],[[46632,27791,2746,33426,19248,6148,22023,24089,8406,46986],802635545257082875912390011],[[46655,27732,7309,65067,11719,52653,11992,65361,14603,2648],785246915870165321391756071],[[60480,60618,6333,26903,66809,27959,48311,39998,28165,69708],809366707420351551988500012],[[59097,53645,43043,72122,49333,38088,50332,13367,60070,23112],799975769365707407452139709],[[24136,52127,61813,19573,18408,26036,5626,14785,65505,238],790826748238572294658812468],[[54471,41562,64834,19602,25509,37927,48164,5564,43055,39873],784794614482796419966520030],[[55859,54795,69785,40664,41926,23908,38856,50358,21516,51333],796830557744887182950592743],[[68506,60087,48432,27947,13146,516,39978,11971,14959,65129],769313928119920594989618983],[[69985,61624,48434,21229,21555,54269,657,21725,42623,5275],786958571299234239326705280],[[61809,64860,42020,49357,58318,48178,5725,581,46817,65479],786958572339859720264015377],[[67311,67539,48465,53744,13833,5703,946,13286,489,69901],786958571919331808044100797],[[67397,72484,14983,10696,13909,14002,24408,66392,67286,68427],783579851063391624607537951],[[67436,37966,19286,49494,55798,59528,19168,51873,70782,33635],783428082712987074018995491],[[73042,73137,26342,42905,58568,1017,5583,53792,403,71988],786958574659360388818242563],[[73129,52033,43880,13182,13798,48302,12794,3057,47128,69195],780034076223927492399020822],[[14530,21155,62291,37929,13157,13799,33153,73193,24459,64931],758583558255967729307224016],[[50463,21179,1061,21400,10977,13834,10720,66802,9061,55875],758583558058821602766943765],[[21208,1243,62302,19104,14115,59552,42666,69893,31707,72192],776472100458690893731415437],[[22932,1669,14398,59232,514,38816,49014,52879,25617,35401],767579936873064382577815425],[[43888,21377,41934,13111,39083,39153,52661,16617,12143,40059],767579930813517633118003846],[[56043,45203,14582,30791,38820,19091,3125,2181,2361,8887],771028780118873295662468234],[[21577,19563,11011,48150,14094,5805,3720,58582,14822,42535],777447792243604147414236119],[[14432,58301,30810,1832,42689,5632,53803,67365,68500,64022],767579921882818508135478470],[[18422,39777,22244,45705,27825,2180,6152,8119,17176,10989],770592147128455306188798852],[[19535,39790,14072,19049,38775,10714,6309,20724,10046,11118],773047536995004851147189177],[[31509,58299,51057,23748,663,2152,30217,8113,11365,7375],767579938909780580377084654],[[42061,10953,21995,850,2613,49190,43758,15977,51607,32377],776472081723375183576002981],[[42068,59598,1828,58531,31235,66019,67287,15990,25631,64140],760635353177824114102479166],[[49015,13908,13124,30356,3940,2149,65824,43126,40185,20438],764115528711028617365547386],[[19102,22082,38857,19230,21399,29192,65791,55454,28550,67918],757852604765035469015806023],[[22091,23923,1773,975,566,33823,36228,24629,21218,42525],751555864087370777192858037],[[28179,38781,11689,3115,39982,41204,45212,20348,30302,51523],762073089740198139142921227],[[38822,48248,21623,3945,38575,38049,22495,22168,7039,66436],767579922375158873141806191],[[40721,16183,1514,383,6054,51770,41433,10877,54489,26821],751555871643411151873911808],[[48234,10976,16732,6533,54156,18729,24122,66795,2848,68936],755077875379408559255998262],[[10979,3907,30387,1518,2522,15241,70712,62063,33262,49860],764115552673558180746827667],[[19058,31309,51829,12881,28037,32636,13135,402,40155,13591],764115529705767272930429061],[[24555,382,59936,3074,16531,25999,40919,70492,24941,17770],760635350266586959566370780],[[24564,23741,662,20302,10994,27267,67379,17868,19802,63022],760635337956691775320295071],[[28255,38779,58701,579,30200,50794,69074,69452,63261,70496],760635342553607395575717112],[[39922,2611,54174,38074,3464,69062,50104,43056,41411,15218],769607733942920260990006146],[[52709,6540,48137,3062,21680,60211,11155,17861,31798,25378],760635335702865577935722754],[[48221,949,16514,22048,43777,2759,40930,11157,17962,25340],751555843928219513705941792],[[48883,58722,12813,42730,23173,69909,65345,41568,7223,13688],760635344977991586782892399],[[10728,59094,54178,3455,25976,65131,72185,73433,52041,13531],748017265756073774303818701],[[39994,59918,58625,10991,28193,69753,20474,47137,66127,19305],757139175288035216008044449],[[41237,21376,6038,28261,64711,15369,7931,4246,40859,1319],748017253509665318256260690],[[974,28064,4153,13088,50803,44465,16601,7576,10322,52123],766152497502417793148464244],[[13987,2534,22037,42780,59360,31590,33224,40370,23060,44023],748017211877977334929453066],[[45229,39131,3080,32650,43323,65153,11559,62031,41406,2164],757139159605999553680959190],[[54171,4149,52271,15222,2711,66937,15352,52083,65161,69323],757139157482985597494306269],[[57008,5570,28581,46173,10959,6113,69078,44445,52085,69609],766152509407430994860370898],[[58574,13310,32363,52639,3887,66393,20709,22704,36252,7879],766152497587242542025312639],[[63052,28623,23182,22042,6127,68864,11156,38515,7222,20358],753626769047603044829245817],[[63060,32356,60875,66042,59351,26229,50502,23858,10888,2784],744461806577017056900840713],[[24384,5643,62522,10965,66752,18327,16607,66916,33263,15301],753626794718185561867381516],[[33146,5589,440,66747,68886,41365,12144,57068,19482,5786],747567148649251285645715189],[[49151,30206,39657,25261,33826,72846,15525,14379,60059,25960],738326976535251148289210913],[[7127,30223,56863,3033,66037,70786,15041,51695,29663,53710],762681617712131263897631819],[[46149,27285,68865,65348,66733,17587,33234,56732,61600,25973],737299513431736500305175587],[[27264,30750,68297,69729,73414,11552,69984,40414,14734,6364],736842898975887666322203806],[[30710,64728,66390,73207,26716,31738,41428,33543,53473,29826],742989975182963529743882500],[[4028,66942,64653,44148,42622,51993,41182,13638,64584,751],733692135219951910621740987],[[8120,66391,70562,24936,26722,2268,73128,41271,4394,28592],749358718815593041854827854],[[68284,68414,73105,18562,29080,2356,11265,31136,5159,68470],752172881079585766760950480],[[68396,70509,71975,29052,56273,15526,61951,18663,1120,22011],746101456616160724725805918],[[68887,70720,26226,55287,50733,41569,30086,1316,8610,1283],724274944598693726372631021],[[70571,64642,67288,73480,2275,65142,66816,60045,217,6663],740140887739447376669964307],[[40495,67503,51317,69746,60165,1327,63185,65300,58703,67944],724274929131273203104755818],[[60226,67289,15368,17197,51775,51473,39695,41162,4447,35237],733692126741575188013156430],[[64768,67508,19785,20488,43346,67550,59966,60351,63230,66223],742989960576553398862058235],[[64781,73619,44155,20489,39239,58758,59193,62395,20652,14640],724274934710661998154926744],[[67384,72319,19700,42624,21270,64775,59443,3319,2093,37970],724274945610501004756353635],[[72163,72334,15353,19721,19764,41377,13792,65021,2025,64330],724274937833905802110184923],[[72318,72837,73626,42379,61024,42840,438,66907,70659,72631],717967635597795854530591454],[[72335,18541,20475,61051,64792,72727,11153,57299,4001,17755],733692129096124157583603266],[[72849,12083,22167,68715,43182,72905,34682,59651,19779,44767],742989955739693176995262869],[[73667,44141,42625,69987,42247,59986,60008,60320,38450,27811],733692119797263250563114131],[[29245,49737,50082,52082,41297,29680,59865,67268,1172,74384],733692112758385280572672073],[[31570,51320,4423,52878,60374,60220,29681,3943,41552,66504],724274939023519260357729498],[[51336,7936,16623,68401,60072,73102,11199,24685,10851,58315],724274957934572679195965502],[[4428,52903,56295,54640,60073,59011,59327,22211,74339,68665],724274935849831604593084043],[[52902,56546,55275,66714,4397,15217,29069,28256,25264,69004],727466477393831827640395084],[[56559,51794,52084,42895,18117,32510,7202,8408,48440,66984],733692106845979541925432358],[[60341,43057,66477,66810,65918,26783,53505,65202,53592,69880],733692105047432044267561055],[[62396,66103,68748,40835,61524,73138,31047,14754,67768,52071],727466465057049531085540295],[[43054,66457,69490,40781,65938,55421,2946,64232,74642,49912],714733659319440916096459237],[[69137,69969,21268,48731,50635,72172,13658,69817,14224,69011],733692131755393513720860902],[[69879,48757,60071,73140,24599,57267,59306,27088,68938,69668],714733682599376835261370057],[[15042,42267,60233,61513,67352,17588,26190,25836,57071,55013],742989964253260851914281232],[[15043,39254,41567,67155,13793,60124,13510,6536,74556,9095],714733681063329106080178876],[[24785,41382,61939,73064,26161,25829,47003,46088,61576,38451],730806791034368138150294601],[[49629,67172,67491,67543,33645,59681,33547,60125,52250,42199],740140882979096653661661754],[[51511,41566,13647,30070,36343,33223,57410,6646,50391,23254],724274920576751188518807897],[[67484,67538,72389,11152,60046,63236,60855,2403,2936,13208],721351936838340168880393655],[[67531,73130,26449,39706,26159,60166,52926,14602,54529,64099],721187097559808629183405371],[[72419,73204,22702,35248,36128,59324,11151,49521,2847,48303],727466459755976071624786552],[[72770,26454,33272,33929,36355,58776,4972,1249,24260,19692],727466460864988463978380045],[[73182,22703,30071,60014,29328,45381,439,40073,35007,74345],717967613976202418562846124],[[11262,13795,35274,36347,7900,8454,31832,29595,130,1788],740140857346693354758398705],[[29279,32498,35673,60039,17236,4282,28249,13066,34319,26588],717967618662082885656721197],[[34649,35743,4244,4975,31025,46796,29029,6149,25036,4157],727466481688798234941281875],[[35767,4247,5285,10138,29662,33633,47799,47002,54749,39081],733692128834106202480684693],[[36351,7050,7565,22713,1329,29498,6154,11144,8648,6409],717967631370198670893366442],[[59214,7203,8241,10064,26186,1663,14729,14964,7436,16262],711604441099306907503250511],[[4245,8446,9709,22711,33233,44502,68957,19439,52977,69676],727466459380364586747890092],[[8252,8448,8506,11150,23107,24820,55904,52917,61831,26892],727466472335703490069033974],[[9158,9326,15219,31815,46852,1326,29613,51955,2550,60330],724274936937163812259577544],[[9176,9307,15216,45808,46878,29468,1670,33468,2552,3563],717967624240280146675149783],[[9739,10316,18654,22712,46361,4283,14821,10885,22330,68295],721351938852610457810236647],[[10277,10314,22710,33271,45402,57256,7100,14984,48686,74512],724274938232148771181618699],[[10320,29661,45787,46974,59287,53698,52045,13687,46902,41131],714733695102129905216127767],[[13627,17856,29311,59421,11409,67263,13076,61774,67915,66615],717967621558368725396191190],[[17849,26533,11530,54898,60035,21214,25163,6249,66220,68807],705063351923327290436753153],[[24868,26647,26790,59832,60068,13097,59338,68924,24445,49188],708341425674264617836411893],[[26668,26795,32391,58993,63246,69976,11940,19565,54726,9107],724556361114042154753823836],[[33643,46431,46982,44505,7089,29649,57296,42946,22115,43430],724274936216891766722168098],[[46455,60015,1328,11457,63092,42728,22310,18027,7697,74241],715018846068989587024357781],[[46752,10865,11128,21710,210,15308,50687,33483,64696,68161],699044503369499813518063107],[[46970,4280,11186,1452,25541,14979,17974,26834,39251,32494],695258520995396895929241690],[[4281,11398,7591,21664,42202,4518,29410,52830,64233,74551],692212965365750063511645050],[[11519,29399,11119,14413,50755,25017,19690,64717,17333,74647],688685506117276056117894142],[[29370,11129,14784,21983,22302,1528,37946,17464,39044,23561],688981412843727435253038753],[[41349,47813,57273,43718,66650,59762,15158,46891,49364,75101],705063324948438453069724262],[[41354,50127,47009,52102,10988,42926,67737,14740,31382,51604],698582589422051700902796415],[[50134,62660,60036,43024,74,55169,13480,37957,26439,6441],702060350294032843758872762],[[56747,63250,54443,65077,65200,60802,52646,20999,33244,67846],715018869388916335530013941],[[61480,62686,65366,266,11135,17903,7209,27770,2089,48312],692212989393223092991304139],[[61506,55931,65351,41882,24704,30301,7190,74338,66489,66659],688685499848203630709872104],[[1451,63000,65350,25556,55197,15141,1015,32584,67681,44019],685313410196804868643938367],[[11468,54908,60069,94,20147,11230,16848,25383,64138,64697],692212972981824851534654630],[[28475,28711,68644,68956,14749,4512,70714,68995,16977,14914],698582575149908366945313154],[[28502,28691,68656,69607,52321,11678,48431,34323,45047,892],702060325958321035393188143],[[29647,57095,22287,20176,42950,25915,52980,53652,64020,68168],678644070344067588429242944],[[29665,57112,57401,21169,30705,16859,20440,67976,52967,20604],685313372206256543441596991],[[54437,43716,66676,66807,49479,19320,70313,68763,70497,41954],698582559155735993327887703],[[63004,43019,42515,39616,14215,30310,24125,46900,32595,48758],682049166154149794980281077],[[63189,63091,65061,42778,2412,42568,2935,74226,67324,30435],692212955955020826024067968],[[66820,11963,1248,39631,13230,59741,14745,8409,10455,41285],678944389209178727102440077],[[67262,46115,159,41504,25937,4501,30309,64603,66215,66337],679119498223451456893223315],[[67269,22279,19576,42930,61472,30747,6244,67850,13206,64650],671908571018677999730316671],[[68952,69603,41860,40462,41507,27453,52962,3762,52133,1173],678644065308585667878884470],[[69601,42542,21173,3982,22329,3753,65299,68927,31237,52157],668451805995572598107559985],[[69990,40467,61759,60061,22641,3986,24913,67323,2061,4955],664977123239472903036968886],[[52949,52624,17831,60026,33253,2792,13478,2063,53848,65565],661612556610049014304449109],[[42522,49900,18039,61488,33477,7369,60152,67533,2024,24419],658101754952773350607457045],[[52958,40870,25141,61872,25918,53378,15068,8740,35633,15484],658101761724214589744796818],[[51959,13245,17838,22576,6243,7360,14766,64299,42553,21212],654572114820065393621569524],[[13715,41491,4202,1536,11217,56547,20830,63045,9060,66167],654572071523233956591904848],[[41488,11143,4189,16240,5416,18560,74239,64188,52828,34451],654572083545211050869584146],[[13716,6252,24094,7366,29387,2248,16871,14637,7260,3466],654572069478910134113921436],[[39864,11686,33474,52924,13609,68937,15103,13712,64224,74535],654572043697150377954445917],[[25914,27441,2721,14736,16747,74528,64329,64210,43652,6337],654572053607618637479106017],[[16222,25272,3307,26264,2637,30677,6357,7250,9163,21317],654572044224043088347206789],[[27446,4507,53446,42563,3971,3946,50396,24433,2068,68024],654572037531618759354571649],[[27458,27829,4017,22285,24255,64223,65303,67840,68671,63067],654572049824254017444861818],[[1011,18539,23085,6265,27108,74534,70502,41557,22315,44756],654572036676513255956045995],[[5442,24908,53482,27124,22192,64602,52987,64651,53340,65822],654572029990304910562455157],[[6276,31740,52946,6262,68273,40060,68926,2179,34352,74278],654572029677450114467584991],[[26267,4452,3750,32953,70706,70306,22281,33327,1282,64986],654572017018757251575086540],[[42540,22316,56560,2651,2835,63994,67322,24446,65452,50494],654572018608336143752941429],[[60197,2638,20769,25325,10852,42570,13479,39155,310,72710],654572021095891444338741224],[[62379,2949,32957,71772,71925,64081,37924,11410,2187,67861],654572014734484561118940095],[[3761,20843,64005,65298,67552,68939,39129,70017,69551,4046],654572008994295724708455425],[[3970,25917,3724,10662,71716,73400,14763,51647,6053,72636],654572018429445401172557384],[[3984,16830,10850,71740,66335,64139,2091,14006,72696,74057],654572014548257350023004491],[[3985,20810,31328,71694,71715,66894,64043,41225,73837,73841],654572016223543445706900564],[[6649,30685,71937,73848,64100,64633,2095,58467,8741,73950],654572018506201123949721471],[[6664,27137,10663,71686,65014,64632,42530,358,13683,72637],654572018836064502100107261],[[32930,6545,64585,64177,64340,66212,71734,16594,70612,71946],654572015125734230478306332],[[32944,2836,71924,40054,66793,71815,72299,73882,68191,11344],654572009130612432517857293],[[3717,71936,40063,64502,10853,64199,24479,30445,6039,1970],654572021136545631058889127],[[16744,71765,72597,67754,64073,753,62672,11740,9106,73836],654572016234991412630775958],[[31317,74550,64101,66333,69018,70486,18456,69245,49692,69439],654572006999266213800411860],[[72596,73927,40068,73424,2489,16417,17117,71838,72709,73569],654572005251112242700465226],[[73840,74046,67325,67769,73610,5774,59932,15419,71949,74112],654572010982510163679057669],[[73926,74051,40071,72293,2484,17128,9094,37920,73937,43303],654572004489551961448821613],[[74056,40072,43049,71782,71980,72595,17778,38013,38370,72994],654572005553184831495186971],[[74061,43052,67730,13483,71981,58437,59431,74115,65442,64490],654572004623761465552250470],[[13484,14636,68272,48705,66334,70312,37977,1967,69917,74467],654572012143583467077144841],[[64272,64716,67943,50394,51841,16966,52831,22474,31379,65608],654572014900668807965026920],[[66332,67812,69021,52107,64518,68578,44020,22810,23065,74470],654572016100045230826037237],[[67878,67951,70722,50395,67721,39059,24482,4963,74362,54185],654572012475475195874664368],[[68294,70480,50398,66814,67714,48914,15467,69320,70637,64229],654572006582569237221219743],[[70698,42577,50401,24470,16970,56111,2529,64338,68731,68132],654572005213066688351185113],[[50402,67696,68988,42672,2067,16410,22607,51708,43153,75084],654572010266808144744355070],[[50403,68215,68925,23791,44022,38902,43872,6332,7692,69196],654572012929747677884793567],[[66336,68231,70307,2176,23788,24448,48222,62671,69762,75187],654572010258673018254821083],[[67755,68585,69671,2148,24449,330,4954,17744,21260,68785],654572013269004590728229654],[[69679,69971,70269,33323,52829,754,59105,50388,75151,64090],654572004100261930990129800],[[69989,70223,2065,44012,53877,4962,1650,59414,66331,74688],654572008479772544646798784],[[70124,37926,65301,16973,44021,38574,8771,75036,39012,70597],654572003907892560607605785],[[70133,70232,24422,16595,3590,15666,25244,62349,48020,67784],654572007371471278350224706],[[70276,42682,1869,52921,19090,8611,13735,74227,74591,70724],654572002795606590985286510],[[48464,11054,71804,44784,20360,14397,46383,20598,66926,64678],654572007385182223951997098],[[48473,1865,16593,22114,22277,38909,8634,64631,74645,43335],654572002873976326966753856],[[48882,71741,71964,43638,755,19231,64738,65564,52149,74306],654571997217531148714254719],[[51859,16592,22116,22952,19044,19558,26434,64021,65453,48013],654572002528659973465481313],[[11055,71837,72591,38555,18470,65455,66713,66158,74684,64879],654571991465285069122989861],[[67140,73418,22117,22270,13749,72634,73930,64882,69528,50242],654571991578766152218499565],[[67141,73406,22788,22963,8694,73928,74041,37921,65528,70468],654571991640243301987144068],[[71759,73627,22538,61343,38817,15392,71950,73849,73883,64472],654571996742592094529010285],[[71965,24480,44773,2531,35680,35417,2028,73887,15507,20581],654572000823467207329614189],[[73615,22801,770,11269,22491,71948,73948,64470,72048,15459],654571990074323837256638847],[[73622,22953,772,10798,6396,24016,15473,64053,67160,62688],654571993500763920403407837],[[22962,24483,44760,331,31111,35400,20643,65557,68724,52358],654572000852815595413457542],[[26897,52839,41215,56118,20320,22826,69773,43100,69524,65425],654571995660177495978419531],[[44763,52832,37939,61355,8715,65700,64938,43326,69546,74724],654571991213520873746711609],[[53861,53866,17747,13832,23243,8633,9046,65624,66507,68784],654572001226183478693496937],[[53867,59921,17342,29818,28881,22862,31398,49915,68797,51472],654571999408624078804431574],[[53876,3592,4619,8874,26424,35238,2747,74213,64017,64999],654572000262105825155503480],[[37955,13797,4628,923,2069,8764,9494,26415,36127,36685],654571999613041699037599563],[[58296,13983,1170,2027,4787,1021,41305,74518,65795,4877],654571997853462029812679421],[[58302,14456,17349,31127,35037,24140,58401,64455,72701,43555],654571994375578774492063744],[[58321,14475,16251,17358,17450,36048,24137,72712,23737,43168],654571999512515860121041689],[[58720,4643,4818,8146,35675,9605,34852,14946,24013,59704],654572008266606766650636502],[[21495,1651,7440,8614,4744,22838,14900,66162,41030,64761],654571998014389292509009976],[[21511,1653,4813,35257,13910,53448,41891,74689,73559,1496],654571994063070063778619688],[[57001,9164,19556,20287,41452,48332,52087,65750,39231,23562],654571989489666803696712125],[[57038,9146,6500,1652,10829,58445,21245,69275,70849,75167],654571999070867297619229162],[[3352,7433,9282,35698,4654,46368,7112,20725,42440,43546],654571999012150809934868852],[[4637,5465,8151,49153,9047,3557,52141,20691,33455,15022],654571993921085052336039765],[[5478,8414,10146,27839,4627,45020,25225,49472,12868,5075],654571999263730010576818922],[[7424,8395,17356,29823,5006,16249,64628,52142,66160,40943],654571995043274453608817840],[[8400,9276,28908,31109,11229,20708,28324,42439,41033,6290],654571988473276464981610735],[[8625,10158,28912,1171,4618,9614,27572,29469,20544,33561],654572004465401652115001367],[[9147,28882,17725,9478,14431,17379,20674,26117,14998,4587],654571994377782174469704951],[[10153,27858,48138,4542,17458,34839,311,3181,37881,31172],654571998704604052048135279],[[26429,34431,6501,17324,35416,37457,43167,65780,8830,34603],654571994044059916944301397],[[28898,34584,33168,17378,29474,13610,56791,36509,5939,32505],654571997210059688385223408],[[31125,17733,4575,8637,28663,23080,24472,43033,60872,31072],654571993555497731734312569],[[34356,34578,31401,4776,7454,16507,43228,20698,40946,48422],654571993537105560993815858],[[35258,35693,13917,4553,46363,41481,60196,48324,64983,65630],654571998722827585962580403],[[19072,33132,4786,17444,24416,41468,60153,49914,67977,68332],654571998695931146828912157],[[19118,4777,9482,28670,4541,5008,11218,20614,15505,50846],654571997702872518479323408],[[26594,5007,9275,29827,65454,74344,42727,52156,27630,56604],654571984802340599492537562],[[38776,4659,8734,34312,34857,45333,43184,74346,65789,70537],654571999616640605409004790],[[925,4580,8154,8815,9490,21334,23400,5069,34521,4875],654571988592280128877145297],[[8155,8822,19557,34354,31017,53478,2186,51762,70068,48891],654571993718942357937270480],[[8759,10449,34321,34834,35016,16260,31037,2742,74212,74515],654572004457979977247703579],[[9281,10466,34345,34576,9616,8836,9969,8973,23409,34935],654571988155667303268012745],[[9609,19559,35630,45329,42850,65686,74299,15522,51774,69521],654571989005970195837178108],[[9615,35028,15664,28674,37437,64629,74643,70614,65604,65157],654571989395161976773865028],[[34582,36062,5529,29485,8846,27752,13590,15957,41032,72739],654571996910008382138181815],[[36055,5542,7450,28897,8839,37171,39283,39313,47168,4986],654571993039159129770205465],[[36069,27532,47783,46388,11690,65031,5931,65889,35840,67126],654571988020047775316975639],[[359,1026,10634,58837,55545,74047,73611,74593,69448,19753],654571988601965974630953179],[[1030,11394,10833,8686,687,16150,43227,74139,73515,42588],645476363707365876028066509],[[10606,11284,10800,23848,720,43150,65124,65685,74383,70474],654571988309376131536680980],[[10615,59088,62662,1789,689,73934,74114,64676,65699,74302],654571988152854289398844424],[[11397,48105,18985,19235,72635,73931,67147,51598,69529,67806],654571983967769465689597242],[[11407,48096,49372,58415,721,31252,68497,69176,17845,67797],654571992208287544261377311],[[28659,47787,27912,37432,30786,74296,74646,48012,65888,51495],654571988682813835703189928],[[29490,39374,28916,9617,30783,1018,38970,43327,52121,66492],654571992463913133823689109],[[39376,43868,31019,45335,37268,51725,64180,19695,65048,75089],654571993874468038854157383],[[45339,46312,27893,41420,32660,51941,65628,66636,70016,70531],654571992527725928307873037],[[47785,37158,37269,16539,30979,42971,64736,49689,74530,70498],654571991026187759459696618],[[47789,43260,6446,29412,68222,70645,65134,44426,68612,45968],654571982197248133513092133],[[62661,11746,23836,8716,30982,38456,67884,69168,66758,64332],654571988254535529497539384],[[19273,23847,864,4737,25942,1515,2167,38982,39730,64766],654571992235876303029067092],[[23835,59410,53283,16180,29385,46889,40077,69327,16488,65560],654571991255733660746095146],[[28920,31035,3297,17741,65689,74387,33456,68729,15504,17583],654571982068020107773952292],[[58883,43279,7135,32125,64532,66486,66661,70679,51513,64668],654571982588316110827401497],[[59435,53312,11691,62356,48663,65638,48498,38702,75109,70187],654571982509213921217615303],[[865,922,36780,4146,7054,15690,40942,5087,5990,18682],654571981599257645446916373],[[924,4596,36772,65682,74240,74380,43006,15960,50603,3587],654571978441063812965326884],[[4522,4552,5009,1519,1748,33448,16026,48926,50843,6311],654571982111487136230196556],[[4528,4736,36912,5434,64630,74644,69520,70592,3179,20701],654571982835306872620784384],[[4591,36920,65696,74358,24461,38402,890,14866,10461,27913],654571973433806533971055993],[[4745,3453,14877,71766,72698,74052,65650,20715,50491,41524],654571977138540138024910917],[[36842,3309,21164,49693,66161,15432,19756,62441,3589,4723],654571976669284690817128330],[[36843,5408,74297,74641,1749,64621,68687,19909,48008,50840],654571973357405393279935443],[[36908,74513,74529,51522,51701,64189,65600,21064,33579,33768],654571968924854854080800594],[[36924,74298,74347,74640,2189,48368,68388,72357,31688,9590],654571969110916174733457672],[[37452,53261,42990,74557,42241,48666,65107,66438,38041,71874],654571978233766378618352103],[[55536,19269,52031,49913,51756,65644,69166,66192,51490,26194],654571977418596581312217656],[[55862,42889,56796,40079,65835,68109,68293,66599,74413,15918],654571977471399609807768342],[[32629,71702,71773,72708,63992,67148,71852,72780,11720,24220],654571968371714492359095758],[[32149,51986,74514,38454,68730,69324,39236,68375,73380,51594],654571972836094040700313222],[[71703,71951,74111,39740,64018,64211,64679,73407,65656,73550],654571964108847557723825059],[[73884,73936,74109,39738,65683,67579,72396,73401,74552,62003],654571964101981319074695064],[[73885,73929,74042,39739,65524,67339,73509,74649,62061,62469],654571964070453435542086385],[[74040,74062,39741,64019,64200,65526,65569,74516,14856,63204],654571963776859380342851187],[[74043,74110,58400,64093,64625,65448,65668,73952,64741,72695],654571963788762055109736391],[[74108,38195,64624,65654,67188,73506,20512,21335,50827,64075],654571963508159851819780316],[[74113,38191,64471,64626,64677,65443,73382,74673,20717,48723],654571963673754685520102364],[[39011,42242,50385,64341,64739,65100,43344,68392,75172,69769],654571965185843270415200693],[[39017,64191,64539,65561,70768,64363,66326,66694,74725,17375],654571964877427852778946822],[[42240,43357,64985,65174,66508,38969,64310,66164,75051,64671],654571965022727810685906955],[[42243,43360,64982,65169,66490,70707,68788,74728,69349,66168],654571965024541895721170604],[[51761,64183,65602,65823,68314,68760,43423,65163,69518,65444],654571965185843270415200693],[[64194,64327,64737,69136,69242,70639,70723,69706,74731,74926],654571965225394366268015877],[[64984,65563,65834,68292,70539,19694,67020,74324,66846,74660],654571965146292174559995720],[[65606,65788,66434,67881,68762,51524,64959,64746,69216,69346],654571965123389082147611526],[[65609,65831,68315,68433,70811,64260,67017,70693,73425,73588],654571964850854165956680615],[[65631,66511,66870,67843,70079,70682,51786,64561,70052,67182],654571964917639686698417955],[[65645,66440,66493,69707,70483,70814,69847,70059,70464,54181],654571964997275660653159817],[[65830,66732,66877,66915,69306,70699,42314,70487,65449,70601],654571964859432995402421901],[[66871,66993,68162,69204,69249,64002,65811,67912,75093,65556],654571964976921625851690312],[[66876,67974,68728,68806,69246,70846,48692,74941,75033,20659],654571965047444988137013403],[[67941,68238,68756,68798,69279,39257,51782,66188,66759,71843],654571965030796984689871316],[[68085,69194,69276,70653,70685,70816,66761,74256,73446,46036],654571964850808204329019380],[[68169,68406,69272,70652,51525,65151,68133,68320,74300,51856],654571964806939927428599318],[[68481,69134,69305,70489,70610,70762,48502,65640,74588,66197],654571965001638803304526439],[[68514,69302,70499,70613,38696,66742,74737,43199,68772,70833],654571964683477057721732144],[[69202,69745,70026,70505,70765,67002,69548,70053,74732,70463],654571965169195266971578548],[[69309,69820,70027,70609,14641,67822,69519,64342,70708,74699],654571965106741078702400957],[[69902,70615,70843,24522,48016,67025,67906,69115,74350,39248],654571964813195016399379434],[[70098,70611,70643,42313,52150,64116,67010,65441,64355,69848],654571964805227336623995264],[[70533,70608,70658,24429,65125,74440,64995,64627,62890,39233],654571964628990549183837454],[[70688,70715,42312,43321,52120,69112,65691,68726,70607,53213],654571964643165325574756712],[[70771,70810,24513,43427,48345,65815,68663,70503,42828,65605],654571964788579333170692754],[[70812,70852,38033,41869,66190,66527,69147,74586,67602,70754],654571964780510159163742477],[[70813,24515,38418,43440,64987,74245,75118,64358,67791,55910],654571964891132550986324622],[[70815,24440,42315,43151,66189,69878,74584,64957,16483,69278],654571964771931329716966828],[[70817,38699,43152,43444,49514,66704,74445,75185,64996,24850],654571964941301878478313492],[[15529,24520,43340,48673,64991,66526,69156,42322,65424,71381],654571964767614148691736138],[[43134,43351,49696,64238,64283,66159,69760,75034,74704,64385],654571964924653875028471822],[[43422,48730,49697,54192,64566,66187,69175,75006,72039,39013],654571964755283326262817486],[[43437,51766,52134,65122,66186,68254,74698,74653,69419,38032],654571964444874467873174078],[[51603,51897,64360,65783,67910,74260,67904,30395,12857,39452],654571964399184580866140761],[[51795,51892,52135,65779,69549,69919,68343,74661,64234,71314],654571964736641882258611163],[[54189,65156,65756,66528,68126,69547,69220,74558,52181,71288],654571964598243599885447760],[[54196,64013,65123,66191,66838,66910,74736,70481,74656,74692],654571965040149064917324524],[[64155,64990,66193,66948,69121,74730,48330,64016,66505,65002],654571964878847690187392079],[[64264,65026,66163,67003,68138,70075,74461,68342,70599,19609],654571964563300482428496594],[[64956,65140,65757,68139,69552,74982,39018,70040,41160,73180],654571964287243687400208180],[[65086,65751,68130,68400,74695,68333,70824,65451,74648,68355],654571964579602155876769129],[[66165,66529,66951,68415,70010,70074,75127,69241,71373,13890],654571964592442332774020145],[[66699,66760,67007,67860,74977,65422,68769,72563,58931,71557],654571964424611402611471940],[[66843,66932,67024,68789,69523,75175,64235,72062,65188,43319],654571964579046538809212764],[[66949,67926,68376,68419,69842,75041,67917,70692,68384,69398],654571964732380233836752120],[[66950,67959,68374,69525,69916,75045,65705,65847,72432,72461],654571964736641882258611163],[[67789,67994,68455,69550,74459,49690,69230,69821,71615,56637],654571964690280080336912611],[[67902,67998,68377,68428,68444,74441,68754,65701,74363,71593],654571964602505248308180111],[[68251,68669,69184,69918,75086,38703,65559,74360,73512,12992],654571964416830846371783967],[[68449,69118,69747,74320,74460,75182,69240,75000,75018,51389],654571964851581455113312391],[[69522,69761,70067,74457,74458,67945,69303,74333,42818,17484],654571964613178731079897525],[[69553,74287,74444,74946,75095,68683,74364,70291,20632,9945],654571964447514213589718773],[[69763,70060,74232,74726,64623,64747,65636,70462,72157,74130],654571964703166519834507275],[[69903,70015,74468,74585,74733,67996,70716,2190,49773,51418],654571964551881797953946782],[[74452,74469,74590,74729,64226,68323,69247,67779,45857,58636],654571964540106592588554055],[[74462,74471,74694,74735,74976,42321,75145,64205,66935,70241],654571964571078859030978456],[[74727,74951,75032,65447,65622,74531,70219,71573,64669,2373],654571964264363476505369114],[[74734,74955,75044,64267,64997,68125,69218,73511,74522,73450],654571964541865145021534690],[[74738,75043,75046,42323,64178,74657,74228,43554,26005,35415],654571964190470045389377259],[[74739,74936,74959,49688,64745,67900,68129,75098,67402,45572],654571964667932604976054208],[[74931,74983,75179,64361,64954,66448,70029,59707,71713,66506],654571964533795971011543068],[[75035,75042,75092,75121,64620,49099,51787,71280,3365,5164],654571963965512817006243274],[[75124,75176,64622,65440,65851,67786,68136,70820,70709,64071],654571964510962562605235189],[[75173,65684,66487,66847,70465,72400,43547,67469,66864,72369],654571964077126271231822085],[[75174,42320,65850,66509,74409,72069,43331,66169,71620,46194],654571964206931572837096071],[[75177,65688,66491,66634,69238,74322,74595,69557,41027,43101],654571964298866559112240425],[[75178,49691,65555,67841,70595,71767,72699,73951,20578,39230],654571964168991573497654066],[[75180,65116,65626,70695,75150,59706,71708,66200,65009,63027],654571964088682305987562328],[[75181,64331,66449,69239,69243,72360,74354,74381,1917,70831],654571964215454869687628369],[[75183,64744,65121,65698,66447,69222,75002,74359,62889,68245],654571964491797311730242457],[[75184,65423,65846,66602,70694,70823,64458,65610,74385,70301],654571964361922326153935890],[[75186,65446,65704,66852,68682,68758,72610,72653,58944,64285],654571964112638847211906549],[[64266,64994,70028,70598,58642,72068,73504,74361,69527,71341],654571964066484317196599106],[[65445,65702,68526,68686,74305,72700,73953,71603,40558,41047],654571964133757658610447743],[[65690,66446,69214,69764,74242,74663,67772,71368,44478,44537],654571963984413953175673164],[[66853,68142,68322,70822,65664,72361,69532,73594,1924,1598],654571963759849795348934452],[[67879,68137,69347,70593,74412,74964,67578,65049,41269,64562],654571964023757672679232325],[[67978,68722,69223,69321,70039,70819,73383,65812,68033,68692],654571964314357588839889722],[[67992,68321,69277,70821,74690,65687,73419,67802,65839,2351],654571964065779213538172980],[[68143,68523,69273,74962,64225,67584,18646,69555,64001,44483],654571963733681720484979867],[[69231,69348,69774,74307,74945,75019,38160,44076,67676,65980],654571964172865156364673737],[[69307,70038,70700,70818,74998,72428,73510,74352,69836,56225],654571964173354716154541733],[[69325,70596,74229,74367,75126,74650,74682,51765,45207,44698],654571963997662211298573214],[[69356,74258,74328,74662,75004,71848,71998,74118,71312,45969],654571964165285542140007334],[[69357,74304,74408,74537,74580,75005,43007,65152,66266,71313],654571964318165114428030623],[[69358,74254,74659,74974,75007,74303,45135,71625,64350,16053],654571964156762245288821771],[[69359,74318,74934,75148,65697,74316,38419,72586,45251,74763],654571963896522714187415186],[[70594,74366,74950,74963,74996,75106,24833,69749,65573,5924],654571964213797530026537887],[[70825,74553,75017,75144,65530,72356,66166,73552,65629,72397],654571963920086544691754284],[[74382,74582,64074,67180,72611,72651,73965,74117,19018,50821],654571963743678578754265289],[[74386,74559,74658,71774,72630,73890,73935,47617,69709,71340],654571963928086034681742107],[[74388,74686,74939,71997,72781,73889,74076,45248,69206,37864],654571963884681451532170816],[[74389,74924,75146,65450,67342,72711,74053,66520,67685,67888],654571963911947686646526782],[[74705,74929,74965,75117,73381,74348,38403,65666,68117,19792],654571963919311757005600281],[[74971,75090,75170,58634,74214,74270,74601,52366,65784,69556],654571963928086034681742107],[[75016,75087,75161,73505,33447,43550,65816,69574,70009,73402],654571963785495787737183269],[[75120,75149,59705,74365,43336,48693,52180,64343,69255,67563],645476339932421875231817939],[[75123,75147,74219,74265,74524,30364,47618,69560,20568,26232],654571963635648953230368270],[[75164,65614,67424,72063,74124,48369,69756,67880,51972,72040],654571963486148758695254027],[[63993,64473,67585,72776,73623,73685,59331,69871,59113,20222],654571962975677183282406576],[[64082,67146,71999,72684,73607,74133,51526,68378,41638,65653],654571963364342946943922053],[[65703,67149,71693,73157,73628,73905,11716,24223,72255,72271],654571963221860182707615291],[[67178,71760,72621,72690,74048,19757,40947,71844,74078,5991],654571963003981865928806301],[[67190,71735,72632,72667,72777,74063,21316,50820,65476,73420],654571963207271410028984481],[[71701,71805,71947,72044,73508,64311,65003,73457,73602,68700],654571963509083661368774078],[[71934,71996,72633,72665,73000,73939,51572,40949,38971,64672],654571963241832031510610204],[[71935,72620,72692,73013,1916,48121,49777,48388,48413,65516],654571963328553414944785762],[[72152,72697,73166,73968,74144,2169,69710,72536,73603,63200],654571963394641919986686080],[[72682,73604,73684,73842,74138,51596,65042,66230,47921,58435],654571963047746998226939644],[[72713,73605,73683,74121,21086,64216,67793,71810,19349,42306],654571963458358716698505955],[[73005,73616,73682,74085,27320,49776,64156,66170,17828,61121],654571963267869356127651175],[[73046,73156,73606,73938,74119,49392,69445,72281,71901,58887],654571963093405761553065707],[[73167,73850,73949,74145,2168,43576,67894,71542,65652,72468],654571963496752838916147236],[[73507,73862,74120,24399,69882,71365,73590,48470,63483,59449],654571963331586152851811238],[[73686,73888,74079,74116,74679,969,13031,19179,50535,64217],654571963278282593097689223],[[73687,73886,74122,74599,12273,15468,48346,20574,48712,60385],654571963335847801282790274],[[73688,73900,74654,39437,43341,66606,38691,48131,72020,68061],654571963045377602306209122],[[73689,74058,15491,49387,51785,69126,64438,64946,62434,66782],654571963338452391509022419],[[73858,73894,24364,31805,49772,27957,48288,32469,36174,58471],654571963111294948944785394],[[73964,74127,74652,43034,43504,72583,66635,71794,67387,38786],654571963053249460125274614],[[73969,74082,74301,74536,74655,43466,51763,69531,72562,19024],654571963489886600260596574],[[74123,74313,24410,50251,65087,66519,68060,42991,60907,61092],654571963319255330395840700],[[74651,5930,21112,24391,66201,69881,71364,69308,39309,48986],654571963437504597384372414],[[74676,26103,28357,49105,65139,68151,69315,15519,43812,62462],654571963410238362250253492],[[12266,27315,38170,43915,47619,66196,68773,69157,72559,67473],654571963487775419219240777],[[18647,42438,48126,51789,66239,66518,73598,65607,68363,57131],654571963357195329784534726],[[23716,27311,31804,39440,50245,46191,59894,64949,63026,65981],654571963195757023454991725],[[27324,38983,43342,51699,60515,64352,65894,73522,48710,48721],654571963433242948954055224],[[43235,44414,45132,51600,64032,70968,45569,68565,68049,64755],654571963203826197481477896],[[43322,43551,47616,52159,66267,66832,68768,71135,15403,20028],654571963441312122977613810],[[43330,43577,43918,52158,66199,69123,73592,42447,65574,66859],654571963471637071173169678],[[43343,45573,51783,64998,65138,65184,68536,73591,65514,68727],654571963479706245196254964],[[44419,51370,51702,65185,65895,72230,68517,69280,43813,30404],654571963299070877783153377],[[45570,51611,64284,65158,68114,59895,72405,15506,15956,30591],654571963397907539795764603],[[51409,51769,52088,62891,66521,68416,65658,70050,70986,48722],654571963444370836040472546],[[51767,60512,64545,66194,66245,68200,48114,49383,68557,5923],654571963318267938896927059],[[58930,62888,64948,66172,70152,71536,73593,69210,60911,64079],654571963330703882333922146],[[58933,64117,64552,66688,66755,71134,70169,40948,70379,67224],654571963208192966894314347],[[64391,64951,65130,66242,72582,58644,70466,73554,9943,17592],654571963262901902083595752],[[65032,65135,66171,66837,66921,68391,72019,42448,44431,70358],654571963357195329784534726],[[65159,65189,65213,66198,66744,73451,73601,70504,70553,34633],654571963375338660661074976],[[65219,66173,66922,69148,71567,73599,64353,66512,67426,72094],654571963463567897149984921],[[65246,66261,66745,67960,68528,42446,45854,70827,60940,24085],654571963321859920622138867],[[65254,66195,66757,68456,39019,68316,69423,70857,39316,65211],654571963313790746597107746],[[66248,67773,68019,68382,68418,71349,71886,68723,70102,54177],654571963452440010063893953],[[66260,66723,67927,68144,69185,69561,65562,70874,9019,47217],654571963252827745229821106],[[66693,66754,67476,67669,69554,73597,48116,32463,36171,10366],654571963126107057552360263],[[66724,66934,69526,69759,70004,65794,70717,71297,51657,17485],654571963340003251499658539],[[66756,66945,69132,70290,71369,71617,69248,71047,65966,52283],654571963040464514826734625],[[66944,68248,68498,69533,73558,64863,65008,65263,46082,35096],654571963340003251499658539],[[66946,68380,68389,69571,70204,73596,64866,65672,73562,60743],654571963444370836040472546],[[66947,68420,69558,69904,49381,65110,70041,51749,71839,8256],654571963161632341709825637],[[67778,67990,68028,69442,72537,64067,71286,57351,8829,27810],654571963243704840968198315],[[67823,68045,68150,68393,45856,50239,66495,66547,46046,63025],654571963313790746597107746],[[67890,68118,68422,69577,69757,73553,59893,41031,60384,73150],654571963184629136364347906],[[67986,68054,68395,69559,70300,71628,69332,70625,68096,48245],654571963185764473141458474],[[68145,69580,69912,71614,39450,67609,73527,51028,2370,71097],654571963199349005180875815],[[69129,70958,70988,71619,60513,65472,70280,46167,49397,10746],654571963150429063969808354],[[69530,69905,70978,71026,72530,49768,68362,57360,71196,49403],654571963131851601817910495],[[69748,69841,71128,71344,71623,45855,66858,50826,53722,46068],654571963302662859508470530],[[69758,69913,70167,71545,71564,67984,69212,960,50540,51706],654571963397907539795764603],[[69914,71012,71626,43928,65567,68317,72398,47169,72814,4404],654571963065612873700987423],[[69915,71002,71622,49769,64743,67404,73403,54157,57352,46432],654571963286524511457835515],[[71019,71129,71570,45133,65508,65612,72430,48720,56607,32464],654571963255666294591872172],[[71345,71616,72531,64190,64670,68757,51891,47078,60981,10278],654571963046415812579803961],[[71357,71539,71624,39448,65601,68318,70829,40580,40944,58474],654571963279230125119281357],[[71618,72555,72571,73456,48323,49770,66786,69698,70434,37914],654571963073246107990127019],[[71621,72547,72579,48331,65558,67946,68354,2372,73629,41741],654571963013840765576077779],[[71627,71876,72587,60891,65006,65115,69140,71315,39308,30693],654571963305721572571977153],[[71629,72558,42449,58928,64740,69251,69399,16027,65566,67643],654571963168621884448201407],[[72220,73589,45130,65670,68520,68755,69408,9940,34632,29276],654571963093394421703048951],[[73595,59892,64064,65474,65826,68725,41137,64312,41384,58850],654571963000315960892530406],[[73600,43926,64179,64435,65498,65603,66510,70600,72075,4047],654571963156621880747022668],[[49771,60886,64202,65510,65571,66550,39312,51732,57137,31058],654571963098955306740991244],[[60510,64742,65500,65616,65838,70122,33953,36507,25297,58938],654571962993672549069437262],[[64213,64396,65512,65618,67603,70826,60906,34465,35850,67034],654571963088917229401691531],[[64399,65007,65258,65659,66488,69208,46024,46087,48963,71175],654571963243119928265722362],[[65224,65619,66513,66551,70828,71551,15516,39060,56636,72083],654571963235825541926684514],[[65227,65623,65842,68113,69822,19196,21445,50510,67031,67129],654571963128678186837134737],[[65625,66660,68149,68759,70606,70634,972,45162,47942,23270],654571963261263259145424537],[[65627,65827,66865,68702,70830,49648,60910,35858,36645,36683],654571963087863499165699975],[[65637,66494,66546,68319,70551,15517,8828,34845,18532,48385],654571962974475487946143959],[[65639,66777,69198,70251,70869,24221,42307,43147,33950,36485],654571963164964848602380352],[[65641,65843,68051,70203,70482,73427,13014,41769,63206,51228],654571963003710626410197584],[[65643,66896,67842,70545,71592,19915,39232,39304,48384,64420],654571963128678186837134737],[[65673,67665,67988,70976,73548,30588,44101,45166,45595,71172],654571963223922867149744765],[[66905,67892,68206,69409,70250,70860,39054,51514,63486,35155],654571963261263259145424537],[[67465,67673,69775,71039,72404,15961,41052,54172,43710,66773],654571963128678186837134737],[[67608,68148,68627,69304,70748,71563,71807,16058,61068,73517],654571963159777922734228228],[[67692,68155,68694,69244,71840,39538,41136,43289,64042,39136],654571963079758245620785637],[[67798,67979,69310,70605,70631,71548,13944,38688,17372,35015],654571963135160361966603485],[[67807,68197,68761,70602,72402,45971,51496,16299,35041,71115],654571963069720168281191530],[[68154,69138,69250,69863,71534,71612,13932,16308,36680,67062],654571963166018578838247790],[[69200,69252,69418,70265,71296,16316,43822,62439,65611,73408],654571963114089414156427133],[[69253,69422,70051,70240,73421,49681,62649,2352,64674,35754],654571962995280903291052832],[[69254,70218,70472,71299,71554,73521,55894,64869,65570,74757],654571963007183578072150185],[[69274,70488,70547,71572,72434,73520,20716,42304,60585,8837],654571963261263259145424537],[[69281,70117,70725,72436,72460,73568,41682,30702,35154,68564],654571963088917229401691531],[[69311,70604,71543,71588,19752,27945,46055,50497,57424,67122],654571963109481125717800832],[[69312,70751,71537,15393,16037,41026,43269,9968,32467,64489],654571963024031659697104489],[[69313,70150,71278,71586,20570,44990,71114,65478,17813,72050],654571962849980944934046001],[[69314,70701,70956,72089,961,15687,51032,30353,67221,73695],654571962999647672705280527],[[69322,70854,72437,73563,16024,21762,39305,41029,62440,67123],654571963204725806033204164],[[69326,70863,73452,15434,15888,16042,41028,9971,70432,64675],654571963005888328810826763],[[69328,70135,71032,72228,21299,41007,51672,36634,36684,41971],654571963050523107160128525],[[69329,70757,73525,16445,21754,43110,51029,26412,65504,67189],654571962998593942469145265],[[69330,70165,1493,20041,38023,38628,16294,17385,35020,35975],654571962904169418579096930],[[69331,70603,70966,73524,21279,39249,62435,60520,17811,72046],654571962952520011629484598],[[69333,70628,71038,73454,20699,48494,50837,56257,56630,2350],654571963204725806033204164],[[69340,71001,71298,24222,39277,39354,45077,51515,47160,59776],654571963082989678257162910],[[69341,71033,71587,71884,73409,53123,65655,41589,72104,14571],654571962820258064825247392],[[69342,71011,73523,17075,37967,43135,46028,61009,66619,26751],654571962941949989834235125],[[69343,71540,20700,37936,41130,41721,43146,24165,69699,65665],654571962968547936800578997],[[70832,70868,71591,73556,38351,40559,34665,46831,57132,4983],654571962906712818790731881],[[70875,72095,72469,73526,15518,42964,43149,50822,5072,9300],654571963048636571445662321],[[71059,71590,30590,38926,41013,47916,56281,67101,64201,23408],654571962937689719919625415],[[71068,71589,30589,38940,41009,47925,56266,67098,64212,23407],654571962937689719919625415],[[71566,72263,16025,17070,38651,43253,58370,57130,66233,72686],654571962968547936800578997],[[71569,72088,41068,51034,60975,61996,62467,9973,72270,29201],654571962963127437149951475],[[71606,11345,40945,42716,43308,45591,11843,24079,8666,27609],654571962764602076751378873],[[71609,72218,19364,39317,42721,47979,50824,17580,35114,17229],654571963012128984916313501],[[72252,27633,42305,45970,50607,62029,63020,64389,73693,2331],654571962638332987345028837],[[73448,16462,21450,40581,41073,48204,48953,19390,11059,72065],654571962894928828254294951],[[7055,20572,48394,48461,51521,11666,41961,48373,72965,46866],654571962698559587707330761],[[20631,39250,44994,48716,50825,53082,34341,35847,24958,8812],654571962847631965436033230],[[20714,41015,48028,53717,58620,27751,19793,29543,38196,4069],654571962708887843476976585],[[21099,39546,43170,51520,52067,60927,26004,61129,71178,73537],654571962853052465087617169],[[39092,39329,43230,48578,54883,56631,57428,67654,73546,9017],654571962796756530965415881],[[41649,43148,43294,51710,56609,17486,17595,35350,67119,23581],654571962770530615961974544],[[43127,43185,48437,48994,51489,51740,53723,60932,17594,23273],654571963068979543005401794],[[43217,45224,47539,51031,56603,60961,62002,47206,66228,60206],654571962930153814551955693],[[43312,45594,47971,48395,56632,9942,34664,8000,45259,60115],654571962752387285068670312],[[43823,45590,48643,50505,51664,33960,36487,39446,64395,68023],654571962783245501958359531],[[44106,46042,48747,50823,62463,19770,60984,67191,73617,12055],654571962683450126236770366],[[45099,46137,47546,51030,51736,53173,9972,34666,41267,60001],654571962816773748549379356],[[48065,48389,48749,51033,58867,23405,31764,32439,67364,73393],654571962768656729269953097],[[48714,48748,49680,56602,60751,17487,30734,31079,46835,67086],654571962783245501958359531],[[48750,50488,50585,53716,17380,23702,69658,16271,35018,36125],654571962577282839996568084],[[49649,56222,56608,57359,17373,17582,33952,35148,36480,16357],654571962742430814265385920],[[51035,51634,54874,62033,9947,34667,35097,35674,64083,71736],654571962709698710681582361],[[51630,56231,60584,17581,26002,35176,27809,69659,36456,19974],654571962531642002713988204],[[51660,53073,56228,62436,9970,34865,26017,69663,39891,72747],654571962673412048891098743],[[56290,56605,9941,31171,31396,32465,33942,34864,71123,28522],654571962521685531907346130],[[56606,58398,58569,5925,34374,46362,61004,64887,40084,35709],654571962554603537945739009],[[56633,58796,58913,6490,34445,36051,41761,45577,70323,40082],654571962603605085742683316],[[56634,58806,9944,26460,30354,36170,67067,71054,59110,73460],654571962519209349892857317],[[56635,60966,61997,63476,26003,35423,47207,67128,67425,72687],654571962673412048891098743],[[60578,62468,63473,26414,35186,36682,47828,67124,3369,15647],654571962532077942453299822],[[60579,62057,31689,35157,6499,17231,26018,8813,19071,8946],654571962365374878501769943],[[60820,62437,30694,32557,35103,35156,31763,64926,38192,67181],654571962519209349892857317],[[62438,9946,17593,31108,35147,46751,71218,8808,26870,51471],654571962309855342723735828],[[62464,9974,26413,33943,35027,36065,47831,66293,68973,8653],654571962426274495910096973],[[62465,9018,31129,34635,36479,36681,49584,70115,35116,8397],654571962372959443275016644],[[62466,62638,31377,35744,36070,2371,16352,70430,17361,35143],654571962453938357880894349],[[9975,26199,30009,33949,35365,36175,8004,71181,9002,23078],654571962300337954152906695],[[26465,30385,30726,35159,36644,17230,46403,31130,31716,8348],654571962246856545925064392],[[29982,31168,33959,35161,36126,36486,39000,33683,36638,49132],654571962268959048459855728],[[31175,32540,34351,35115,36484,36694,10434,26409,36057,27894],654571962238536771285428829],[[32509,34318,35123,35348,36131,5938,46629,23579,23089,12250],654571962229241473513603786],[[34634,34844,35261,35479,36478,31016,47107,64442,67351,73385],654571962339568933604719146],[[35006,35141,35158,35355,36056,26237,67114,26411,30134,53492],654571962233795370747582650],[[35104,35124,35236,35412,35844,36686,41970,23401,36041,23220],654571962269479737240451964],[[35140,35357,35420,35967,36515,8003,67115,17482,17297,28371],654571962233274681966958028],[[35160,35364,36506,11658,30384,39001,10437,10501,35150,28083],654571962184542718299313340],[[35370,35489,35715,35836,6498,17228,46833,57288,35798,4042],654571962242030396346165262],[[35371,35769,35854,36635,43727,45256,46071,49593,61069,65506],654571962336014375397843679],[[35861,36001,36508,8006,46198,46837,70436,59779,8630,33686],654571962256590550407279593],[[36130,36513,36699,1925,46799,63096,71099,67591,71806,760],654571962279718441231174947],[[36481,36646,8001,27750,45138,47166,41389,64447,473,13211],654571962230716893409984343],[[36512,36671,36693,11838,31039,31076,71116,65520,67183,72655],654571962303282271793717122],[[36514,36688,8002,17711,19395,47161,73462,472,29293,35974],654571962207153062844829898],[[36687,787,24102,26019,46069,60980,61070,63271,66231,72685],654571962281584382680290727],[[786,8005,23851,47158,58657,71040,72986,34006,36455,34715],654571962160619751789754826],[[2353,23723,24963,61126,64909,72224,67138,44387,54956,33501],654571962089989321700934681],[[8007,19771,24108,48350,60898,67179,71761,72691,30017,29704],654571962169074120874150698],[[17722,23834,24170,38984,60622,63201,70382,72980,41376,59897],654571962186787826716596315],[[18570,24164,25296,60526,65194,67838,72248,73169,10625,64186],654571962157398507543706032],[[18694,24171,25295,49592,61035,72287,4879,10547,9259,33336],654571962112571689980239435],[[18711,29573,46457,57065,67118,71169,64546,73720,29182,34646],654571962194430231592948028],[[25294,30725,31376,47105,66226,71093,71223,10191,10497,44982],654571962160970942488189833],[[26016,31075,32422,45574,46070,46797,59778,64874,65568,8835],654571962217994062158560479],[[30733,32372,43924,46669,57293,57426,68556,8226,8261,10546],654571962179468606596033025],[[31395,45141,47077,60894,69662,71199,72985,38460,71978,32488],654571962225288448508940787],[[32389,43925,47108,53223,66229,69664,10137,10441,35362,46914],654571962130633414349871663],[[39447,46199,47075,63101,68032,70433,65669,73519,10262,10504],654571962195302111072020136],[[46753,47074,47218,53711,66291,71226,67485,8834,36454,39611],654571962170866401026487306],[[47104,47216,47243,53694,66292,66764,71095,26458,33669,32386],654571962155929609798788537],[[47159,47829,57134,64295,66290,71166,58635,59777,34005,74233],654571962194430231592948028],[[47167,47830,57133,67116,70370,71163,8220,9706,543,17224],654571962130633414349871663],[[48130,57060,57135,62694,64322,67127,73014,73272,74163,44313],654571962126824618921873350],[[49396,57425,62695,65217,67028,67100,48185,47791,5636,56642],654571962067509944851572737],[[49571,57136,57429,64895,67099,69876,70435,64782,74288,39453],654571962155929609798788537],[[57427,62692,64063,67117,67167,64553,65613,73259,74087,44685],654571962143094063138704550],[[57430,62693,64902,66767,67403,72656,41590,74129,26704,58570],654571962092557140562753838],[[57431,64919,66770,67037,70354,65518,65572,74602,26561,26630],654571962127448565937555458],[[58675,60326,61039,66232,66612,69704,67192,15697,31059,60892],654571962112511774708865930],[[59294,60380,61064,67121,70424,67492,72693,55958,11523,12037],654571962109907530348558520],[[59426,60361,61034,63266,64433,67161,72670,73705,15196,67800],654571962154137329646411031],[[60365,61005,66227,67166,69705,70331,73694,41583,12094,57059],654571961963720232164449620],[[60381,60645,61008,67120,71160,72968,39892,71811,73242,5917],654571962217994062158560479],[[60985,61071,67091,68080,70330,72764,58643,12294,51468,63034],654571962090136525741934871],[[61038,61118,66789,67747,68591,69870,67596,39626,14279,15414],654571962126676535380997221],[[61065,63021,68072,70335,70431,72998,73181,73648,62667,42056],645476331990249767815855669],[[61074,61117,67749,67865,60203,72126,542,41366,51540,45607],654571962092557140562753838],[[61075,63023,68058,71827,72264,72433,67635,12053,12297,70943],654571962081653557787556586],[[63024,63202,67746,69877,70426,13646,41201,73265,13963,46680],654571962080320904798963219],[[63203,65223,67074,67827,69665,39893,71995,72666,73047,48151],654571962192637951440675940],[[63205,67076,68976,69660,65615,73101,73168,65978,48675,53556],654571962090004668637993676],[[63207,67077,69661,69856,72196,17802,65970,73992,44002,44497],654571962074067896008471202],[[67075,67876,70110,70334,71732,71913,64754,64848,39577,70923],654571962092941584586998946],[[67125,67748,68601,64673,72435,72768,73540,41200,41479,44000],654571962113901170795973350],[[68104,68972,70355,70362,65522,65651,73543,41183,74759,70198],654571962134046450745085000],[[68640,69861,70322,71757,72724,4045,5157,8760,9836,10543],654571962104035279534227695],[[68657,70325,70428,38462,72175,38168,41605,65977,20640,47835],654571962057529470429593538],[[68977,70359,70422,65617,67590,39733,65466,37889,20594,57474],654571962017092497088516216],[[70324,70425,65667,72076,73468,11058,73844,73914,55442,55520],654571962059479123304258972],[[70378,70394,72207,72280,72992,73715,61360,67512,22799,6044],654571961954562859040816356],[[70383,70386,70423,72210,72282,73702,65398,73212,38320,63426],654571962077860721971422124],[[70427,72211,72283,72962,71979,72769,73697,73155,25099,14838],654571962116641659912751415],[[70429,72286,72808,64206,72652,72761,12984,22743,62472,23989],654571962021926710466589517],[[70437,70952,70982,71004,73708,13210,30016,30421,65460,72058],654571962109149967187915859],[[70962,70972,70994,71190,4044,8735,17481,34320,17413,4979],654571962046896084507377586],[[71041,71061,71117,72971,67193,72669,11260,34008,34010,38158],654571962132713797756598301],[[71046,71125,71225,72082,72431,8222,9708,31167,35688,36390],654571962102727460315436749],[[71122,71193,71221,64491,67225,17357,17758,23398,30411,35099],654571962101855580836241333],[[71124,71219,72742,65657,73651,73721,25986,35422,41356,67372],654571962125419411405186365],[[71220,71231,72277,72996,6484,30922,41598,59712,23360,35812],654571962050504065437677576],[[71222,71237,72214,72367,72399,11267,17591,25979,35419,35478],654571962101855580836241333],[[71224,72206,72265,72999,73178,3174,8885,9740,73993,46864],654571962092916750817241721],[[71232,71870,72815,72993,72151,17584,29277,32176,67613,50168],654571962091608931598428560],[[71880,72743,64800,67220,8809,27865,60275,72110,26724,8428],654571962008893857430603122],[[72276,39890,72403,73426,73645,6488,32484,34441,35849,59709],654571962087266808132648421],[[72765,72401,73063,73518,3176,4582,5071,8224,38514,74758],654571962065446736520821248],[[72809,72997,72654,73179,4655,10456,31170,32453,14333,21239],654571962032233274976873952],[[72991,64807,65671,72378,73203,23275,23580,31409,59539,59713],654571962087266808132648421],[[72995,67597,72668,73624,4876,10544,23404,34007,73864,74000],654571962064574857041576174],[[64488,71994,72429,72683,73516,4401,4660,4803,8941,26408],654571962081716180739178001],[[72376,72694,72746,73691,16283,30930,31121,60173,67496,12128],654571962038346866838468637],[[72725,73387,73466,73514,73612,5916,30010,32158,38040,32027],654571962057741244198791015],[[72772,73391,73696,4652,4801,5742,6291,8831,17750,23393],654571962034588519597293136],[[72773,73513,73714,30890,33928,35972,58493,59993,64030,67480],654571962032844760638719624],[[73654,73690,4577,5083,8269,8407,9514,9016,25993,60218],654571962011460628764736644],[[73692,73699,781,17804,29183,29988,32461,41198,65969,43195],654571961987185997238615593],[[4649,4726,5073,5430,9570,10450,33644,30135,19629,29705],654571961911104423014242282],[[4800,4832,5077,5156,17598,30757,34011,35259,26437,4930],654571961924335096280471652],[[4802,4829,6310,6403,8616,9299,26457,34384,8496,8537],654571961903186079754939622],[[4878,4928,5079,8271,8639,35460,23097,35281,44730,4585],654571961889168276049962860],[[4933,5084,5168,6416,9315,10165,13869,17663,35806,10066],654571961890124904570600360],[[5078,5172,5456,8405,9240,9003,17775,33634,29940,28604],654571961902750149904735046],[[5081,5165,8268,8495,9492,9561,35857,35658,38308,54957],654571961912145800576003660],[[5085,5169,7007,8493,9317,9567,9568,19109,5291,10305],654571961903622019494669787],[[5089,8258,8947,9480,10548,762,32502,36040,67461,73109],654571961964332967617793543],[[5090,7031,8259,8494,9220,30953,35462,14324,15660,7159],654571961907155963600059540],[[5091,5173,8356,8507,9560,10573,35843,17022,52429,7668],654571961907665940165486971],[[8266,8352,8505,9073,9575,17597,58756,60288,8904,9186],654571961929250896430587355],[[8492,8565,9297,9484,9834,23577,34678,8790,29380,23241],654571961885209114309716703],[[8560,8898,9058,9301,9523,9563,32468,35835,60278,46910],654571961947227871764126603],[[8720,9167,9496,9577,29986,34363,35687,35839,19846,7898],654571961924335096280471652],[[8745,8961,9318,9363,9564,10570,6489,17381,30954,35356],654571961964768907357482985],[[8940,9072,9355,9566,9742,33609,35117,35494,26333,46654],654571961924560754437963261],[[8948,9059,9319,9585,783,32486,33915,36256,58672,60212],654571961963897027878103811],[[9148,9354,9591,9831,17783,26000,34683,36255,17309,53444],654571961928814956690874259],[[9364,9521,9839,5922,17480,29292,35118,35180,17353,30457],654571961923688874958530530],[[9516,9584,9833,10356,6485,32120,35126,35601,7531,8250],654571961919855235870038386],[[9562,9710,9840,17377,31390,35098,35368,36224,38898,48694],654571961923688874958530530],[[9565,9744,9842,17367,17596,27846,30373,32456,58404,72643],654571961963461088138413788],[[9712,9837,10221,10567,13659,32482,34461,35240,35860,41597],654571961963897027878103811],[[9864,10357,10407,10467,17599,34015,36257,38414,72736,47499],654571961946355992284724065],[[9866,10367,10545,29240,30752,31414,35988,26442,29045,51576],654571961906284084120603626],[[9867,10426,17359,23566,26462,33914,35358,36639,12970,45371],654571961927422388430579278],[[9869,10508,17483,23576,29260,32180,36689,23668,53486,55994],654571961910402041617103964],[[9870,10576,17386,23272,31112,35367,59515,73892,74002,35061],654571961945484112805320365],[[9872,10430,23406,23575,31173,35036,29404,45115,9582,19745],654571961883827248375260069],[[9873,23578,26196,29241,30948,35011,16084,22714,45271,10572],654571961886903828310101805],[[9875,10542,26197,31126,32172,35032,58408,61369,16081,26394],654571961927943077211447194],[[10549,26463,29278,30012,35411,36225,36398,31165,35057,52819],654571961909966101877378314],[[23573,26410,26459,33608,34648,35986,36066,22391,29152,29745],654571961908488784575886834],[[23574,29981,30949,35106,35128,35333,41545,60235,72164,72931],654571961962153268919341978],[[26456,29987,31176,32487,33940,34032,35105,11717,38927,30893],654571961895732225672320442],[[29297,30753,31743,32139,34003,34033,3424,29949,35664,9438],654571961887509266132161079],[[30758,31119,33687,34009,34336,35320,35692,26513,9449,9771],654571961878549555200285699],[[30898,31132,33684,34019,35192,35323,10237,53823,9150,9441],654571961883029405721475779],[[31411,32178,32483,33670,34679,41582,60271,72444,74166,25799],654571961944612233325915503],[[32183,32459,32485,33939,35142,35254,35605,34285,44435,64347],654571961904319331364000682],[[32462,33674,34866,35264,35332,35607,36169,23083,45063,39142],654571961737299886701648059],[[32466,34002,34028,34846,35149,36397,17225,23076,23206,27713],654571961887435229306458889],[[32489,33695,34330,34847,35349,35483,13878,28523,35800,4935],654571961887509266132161079],[[33925,34004,34867,35042,35488,36044,36413,23099,23641,34956],654571961883029415611001659],[[34024,34647,35127,35182,35322,60285,65975,72448,74168,35279],654571961944612233325915503],[[34340,35021,35485,35602,35994,36042,23258,26518,8509,47023],654571961882819124139237897],[[34353,35039,35253,35414,35476,36172,22823,23203,7558,8353],654571961883029405721475779],[[34369,35119,35330,35606,36229,41604,59708,73287,73919,17658],654571961944612233325915503],[[34373,35190,35351,35604,36002,36227,36452,46774,55998,46630],654571961904840020144886976],[[35125,35373,35600,35705,35968,61373,64012,72292,72648,21727],654571961944612233325915503],[[35265,35331,35603,36052,36124,16385,34526,34723,43512,26234],654571961869237260173578037],[[35321,35706,36230,36453,17219,21420,35655,4403,30257,6497],654571961843183155710998244],[[35763,35853,36071,36253,60227,60293,72935,29089,29421,34469],654571961909530162137652374],[[35846,36045,36406,38531,60000,64239,72059,28630,46772,44433],654571961909009473356769811],[[36043,36129,36391,36457,41301,64567,74126,25815,26330,11520],654571961909009473356769811],[[36046,36173,36231,60003,60208,65974,73896,23661,8586,11318],654571961900496404490851820],[[36047,36405,36640,36692,10236,17412,23211,43457,5295,44739],654571961825405759630925861],[[36254,36451,36641,67575,72103,72194,17213,22433,35811,58022],654571961891989126542815720],[[36259,36412,36450,41262,60002,67570,73205,74761,45118,28367],654571961926550508951150359],[[36695,37917,38398,60270,64467,72170,74760,16390,26396,26432],654571961909530162137652374],[[36698,39731,41368,58481,65968,67612,72449,17212,25887,26331],654571961909530162137652374],[[39732,41358,59952,65971,67204,73990,13730,25102,59541,14327],654571961860798238022373879],[[41199,41383,58778,63986,65976,74157,74520,41458,59900,64978],645476339881705088030469550],[[58336,60093,60223,64462,65967,72642,74160,60382,11361,43690],645476340393198727865318989],[[58342,58654,64230,65404,65492,74752,10881,39709,59295,67849],654571961881567464995191578],[[59957,59958,60074,64095,64753,74526,877,10632,3700,66035],645476329422672795775036286],[[60292,61364,64051,72921,73991,73994,37872,51462,25108,41306],654571961859090281976467656],[[63990,64112,64793,65407,73108,74500,5645,19297,7111,28439],654571961591262618631803326],[[64092,64151,64459,64764,67627,74081,39403,44003,44498,26968],654571961887298984549924637],[[64456,64774,67389,72064,72926,74135,19029,51465,1599,25115],654571961881567464995191578],[[64463,64752,64784,65486,71922,72923,73056,59209,59434,59385],654571961881321459565153443],[[64466,65972,67133,67205,73264,74498,38330,44889,55997,56090],654571961891989126542815720],[[64756,65401,67203,67344,72105,74266,10868,39698,64818,4104],654571961740448250285982188],[[64816,67388,67513,67617,73062,19881,18689,24960,58943,11418],654571961693139953960953895],[[65973,67202,67510,67630,73110,25098,39580,44499,55515,55961],654571961874448090947509006],[[65979,67456,72102,72186,73103,74171,74527,18683,70365,11250],654571961873118797897545716],[[67386,67511,67620,71724,72649,13962,31060,43732,46651,10697],654571961867811438587371288],[[67634,71706,71749,71850,17223,17300,26512,11403,59488,17576],654571961829364931261059618],[[71691,71711,71769,71854,74596,2240,2796,59493,11307,22472],654571961863778230131765209],[[71699,71776,71791,73210,73279,74132,2795,12049,59476,2472],654571961863926313672700813],[[71824,72096,72298,72445,72925,10753,12953,18315,18832,62444],654571961855711813220478497],[[71918,72138,72924,73286,74271,2245,38663,58830,45603,58994],654571961863641985375226033],[[72101,72160,72920,73061,74165,26714,44300,44448,56655,44529],654571961841831380839967980],[[72182,72922,73213,74159,74597,13747,25101,12289,15448,70555],654571961864683362937062921],[[72758,72928,73111,73860,74158,19940,26759,50106,58914,61173],654571961864298918912683752],[[72927,73211,73984,73999,74749,1065,4324,18803,67745,53203],654571961829595510716048690],[[72929,73280,74169,74478,74499,54961,40999,14947,67176,67499],654571961859993220943976186],[[72930,73271,74084,74156,44290,11415,19209,59487,13425,31208],654571961661304109017422967],[[72932,73852,73918,74001,74170,74603,2794,23871,70549,71869],654571961881567464995191578],[[72933,73876,74472,25104,44278,55959,44305,58982,59482,51586],654571961833250056175935228],[[72934,73871,73989,74473,74748,14349,62442,67175,70938,61033],654571961832927829975132616],[[73915,74003,74162,74490,39389,44487,52818,53497,56075,44731],654571961856386366570807809],[[74161,74216,74479,74489,12962,44492,44541,55514,43507,43986],654571961855865677789882972],[[74164,74246,74279,4674,8435,17311,46800,54959,57754,3435],654571961838845330974547023],[[74167,74492,74507,74521,49042,49288,53462,53554,53892,44402],654571961852353158115131333],[[74221,74502,74750,19063,50276,55962,11539,23869,18314,18797],654571961829216847720116195],[[74488,74497,74753,25103,41728,11809,12031,12286,15433,62691],654571961828559914182623267],[[74491,74755,38876,44001,44884,48634,52824,54026,33311,50064],654571961820783606596863433],[[74501,74751,20247,38888,44486,44536,55965,41003,12491,16519],654571961812196500904087316],[[74754,25100,41737,44809,14567,33569,50072,17126,53174,19292],654571961788923945751098084],[[74756,8434,8798,13899,17310,23198,23216,27842,12047,17834],654571961799073117787092031],[[74762,8783,9258,19983,21885,23077,26329,16338,6417,70942],654571961794593257375801477],[[3425,8433,21892,23088,25105,31164,47471,58045,33711,10051],654571961781742363771565800],[[4675,8432,22863,23247,26400,45849,46824,55963,52553,5158],654571961781742363771565800],[[8663,8805,8907,21689,23221,26327,27603,35278,4638,8534],654571961777783192141143998],[[9184,17046,17346,23067,34527,44432,4874,8540,10452,21882],654571961746281896416529789],[[9185,16689,17301,23087,23649,25881,29073,26889,52550,4926],654571961781221674990581586],[[9187,17207,21927,23226,26398,34714,46882,19184,52552,9593],654571961781221674990581586],[[16701,17296,21918,23093,52275,3603,4068,33699,8535,33882],654571961776010844215908473],[[17211,21397,23066,25886,26328,31162,29028,39281,8225,8628],654571961776741814579168858],[[19117,19949,28519,29381,30050,31163,34381,38649,9179,30242],654571961777188466534441975],[[23061,23199,25814,27861,34326,53546,44703,10044,10558,41868],654571961772572361366443513],[[23068,23207,23228,26399,35678,45847,7564,8631,10309,28807],654571961768749434492525203],[[23072,23217,25880,26401,35070,38827,62925,20546,20641,1923],654571961771903598934021498],[[23098,23202,23237,25798,26395,26427,36023,51223,8737,8884],654571961777262503360156635],[[23210,23375,26326,29093,29378,30041,58039,43987,8583,51711],654571961777188466534441975],[[23235,26397,28518,29091,29420,34535,44360,46884,58042,53360],654571961782052770970279346],[[26332,28070,29075,34359,46828,46867,325,29221,3165,3259],654571961776667777753454139],[[26519,28634,29043,29379,30141,46912,57764,58008,44736,28362],654571961759721477651301392],[[28076,29087,29423,29972,34472,46822,324,12921,22764,31878],654571961772560532471571286],[[29403,29998,34410,34720,35799,54963,47992,3588,22770,65995],654571961772498324540728322],[[29405,30140,30158,34420,35701,35737,46826,46883,57996,5274],654571961782263052552549599],[[29406,34520,34609,34721,35696,35805,19618,3932,6483,24439],654571961772151798201896713],[[29418,34542,34722,45237,47434,58005,20682,31637,21744,70971],654571961768254834502260277],[[29419,30147,35280,46182,28366,46476,8978,10442,23352,29721],654571961723073743029840829],[[29422,34601,34713,35066,35511,35803,43984,7778,8236,10203],654571961772782642948716811],[[29424,34712,35514,35728,46802,58002,26635,6426,21752,26294],654571961750551475245870611],[[29425,34295,35731,38866,47470,53543,3196,7647,30968,67081],654571961772362079784170147],[[34611,35661,35683,45553,47465,53453,15174,4921,8331,45813],654571961750761756828150983],[[35734,35801,46885,47399,47464,53202,29319,29497,68600,9190],654571961754510646876457123],[[35802,35817,38298,44540,47423,55964,58019,3601,44702,8238],654571961781221674990581586],[[35804,36026,45240,52825,56069,27616,33755,7029,7903,10577],654571961772261954167725470],[[44812,45846,46179,47372,49083,57661,15696,33792,45354,33904],654571961780490704627326204],[[45556,46865,47381,47390,57762,57999,29298,10709,19312,53576],654571961772560532471571286],[[45848,46908,53450,57773,58025,58040,33793,48037,49401,71191],654571961780490704627326204],[[46909,47490,48195,53341,55438,56078,58055,26560,26694,44734],654571961785180846620982590],[[46911,48269,48559,57660,58044,11569,11820,27622,29695,38773],654571961784139469059019219],[[46913,48279,52336,53276,53984,58064,44468,8361,31879,45100],654571961772634569297286470],[[46915,48569,53480,53833,53973,57655,44434,8357,20683,30885],654571961772498324540728322],[[48624,49279,53454,53547,16343,33756,4588,4722,19127,46261],654571961767634020104819950],[[50213,52440,53457,53551,56001,26562,26758,1593,12151,70912],654571961771631109420904871],[[50303,53143,53466,54126,58061,19023,42762,62405,28060,41722],654571961776073052146751103],[[53465,53542,53900,57987,22460,33577,41005,10302,28316,71165],654571961771456946978744774],[[53485,53550,54960,57623,26564,26760,44473,49404,18331,17839],654571961775416118609204840],[[53487,53555,54015,56091,57770,40998,52326,4725,43236,46375],654571961771977635759736755],[[53498,53822,54119,54962,57763,19373,23870,38626,38853,60821],654571961780106260602897586],[[53499,55521,56097,57748,57765,47930,49405,52297,15678,70945],654571961771767354177463198],[[53832,55960,57633,57654,57990,44474,49069,7916,18686,23966],654571961771977635759736755],[[54958,57573,57583,57771,876,11350,26692,52544,1064,33887],654571961775416118609204840],[[55410,55995,13930,14536,19192,38094,31577,32070,1890,54059],654571961744361474839772232],[[55414,55996,13942,14520,39708,47955,31896,56526,58995,67442],654571961766172079378278022],[[55999,56096,14341,39699,41002,50130,32068,45496,59016,56076],654571961744225230083208200],[[56000,56072,57680,33189,45395,47747,52228,7757,8536,10559],654571961771220576605741546],[[57563,57593,58028,3198,29096,4981,8328,8966,29977,34484],654571961719260461102236367],[[57689,57746,57772,11353,12281,46506,31541,46830,46879,13331],654571961744745918864221843],[[57756,57993,58043,2797,3439,11536,12129,38765,46474,16071],654571961779064883040926142],[[58038,58058,1543,11573,11744,12134,58971,3177,4583,48644],654571961770625850999033561],[[58041,1547,11568,11750,12279,29223,41001,7555,38352,56291],654571961770031125392325035],[[4070,4459,22450,28370,28641,45358,51226,18554,23845,26644],654571961769027665515939445],[[4071,4462,12033,19608,28089,46369,58984,8223,8640,9481],654571961769658510262762554],[[11572,12039,12152,29521,39166,44699,45266,3359,15908,18480],654571961769374191854772708],[[12020,12126,12278,43735,52541,59005,46025,744,13618,30371],654571961764994457059724700],[[12021,12124,23868,26566,44349,20667,43542,5936,31407,9302],654571961619842033868274211],[[12132,12177,12280,29563,46389,50198,58831,3354,39425,62449],654571961769510436611331506],[[12136,19201,26565,44704,52551,59413,31876,11831,32116,46922],654571961764994457059724700],[[12137,19639,28647,45149,59489,7158,15933,45602,25755,47422],654571961739286888821370776],[[19358,26563,26757,38640,39287,47782,50125,39428,43290,13598],654571961769300155029057156],[[26567,26712,38069,41000,42649,27716,14811,18525,60542,61492],654571961738449754867971751],[[26706,38812,39370,43985,47535,50056,50108,14805,46750,7943],654571961747353305734092214],[[26726,42646,43450,52542,12807,18330,18839,30645,23103,26960],654571961757064284903782045],[[26756,31061,39345,43456,47742,47947,48235,31388,33891,41526],654571961769027665515939445],[[26761,41004,45507,48957,52804,5651,28314,14833,17736,10477],654571961739150644064805687],[[26762,42749,43483,51562,52543,60472,28665,45986,18527,44738],654571961743320097277743921],[[26763,44461,45527,52811,56743,12260,46047,17239,24162,25883],654571961739150644064805687],[[29026,29154,29467,43451,45373,47984,4873,7673,10571,15995],654571961765625301806551696],[[29068,29155,29764,44314,45370,52810,8539,31877,48205,24173],654571961765340983398560098],[[29070,29157,29694,44700,3583,4040,5171,9057,30047,30116],654571961713739223128324206],[[29094,29220,33184,46364,52549,59389,7669,30261,51973,8905],654571961743530378860026616],[[29098,29300,29596,44701,45392,52555,59382,4931,4984,9588],654571961769658510262762554],[[29100,29218,29614,45356,45390,52548,4571,4662,4830,27506],654571961765625301806551696],[[29301,33568,44705,45155,47745,49028,50152,8329,10362,45398],654571961769448228680488252],[[29303,33576,43488,44976,51225,7759,9745,10210,10272,25122],654571961761529885419471980],[[29316,33570,45048,46344,47897,56884,3581,4717,9217,10160],654571961765699338632267663],[[29318,33571,45267,46473,56117,7678,10049,10304,49729,30773],654571961761455848593755541],[[29321,33578,44732,46347,47750,8497,10069,16175,11836,41766],654571961761245567011478604],[[33708,43733,44735,47901,51534,52547,62921,15932,1592,29174],654571961769163910272498315],[[33720,43734,44737,47531,49142,13829,15398,27982,25989,32381],654571961761097493360045652],[[33754,44475,45021,45270,46422,51222,31544,5911,64197,44533],654571961743183852521179672],[[33757,44441,44733,47898,51229,4657,4936,22372,31893,49476],654571961761381811768039093],[[33759,44472,48074,48161,62640,11721,27649,30246,31564,12150],654571961761233738116606173],[[33771,45360,46353,46497,4566,4644,4985,9161,9587,1922],654571961757570713788927924],[[33780,45393,46419,46478,4798,4872,8410,10386,22403,24312],654571961757632921719772306],[[33790,45303,46350,4645,5480,8416,49046,3447,17672,55417],654571961709495733089475234],[[33791,45309,46475,49201,4714,8952,12249,29308,33867,68620],654571961757076113798654551],[[45368,46428,52554,53816,56110,6404,7557,8503,10435,15400],654571961761666130176032410],[[46384,46425,46479,56532,5743,7909,9741,10564,20666,25248],654571961757496676963211037],[[46472,46500,49154,56571,7573,8255,8325,9711,20642,31447],654571961735121427984144488],[[46477,46503,47894,53814,4934,7782,8210,9239,20566,43903],654571961757632921719772306],[[48967,49400,50060,52540,12248,12442,43474,17777,60620,67373],654571961756928040147220657],[[50057,50078,51224,52805,5392,15978,17119,21749,8275,23535],654571961713443075825436777],[[50061,50131,51227,58380,59027,15994,18798,20562,17232,34470],654571961739286888821370776],[[50080,51568,56724,62915,14897,15909,31293,33726,46395,3403],654571961735117435608406852],[[50124,52545,58834,59003,59189,59494,12319,15889,31653,54929],654571961742789763550126553],[[52235,52546,53817,60502,62629,11918,12826,43824,46049,31078],654571961761233738116606173],[[53815,56901,3175,4041,5764,12398,15449,18802,46633,58896],654571961749219978468333797],[[58352,58800,58841,58987,59188,18684,15211,45258,71177,47396],654571961739014399308240571],[[58790,58986,59033,59495,5284,9448,4323,18543,12943,26516],654571961713454904720310072],[[58835,58964,59007,59026,61352,6094,22771,53729,56615,34276],654571961620114523381454026],[[59008,59438,59491,5290,7009,8330,31902,12148,33524,45578],654571961753116942168083556],[[59032,59383,59481,4639,5294,9440,18688,22345,27235,36898],654571961612133972187773063],[[59208,59388,59417,4578,5174,10400,24314,56641,26615,46442],654571961753253186924645738],[[59490,60633,61464,3257,4325,45984,49760,51661,15952,32192],654571961753031076447493586],[[59492,61340,5630,12258,12709,16998,43825,44218,24158,46919],654571961748997867991180277],[[60663,61499,62654,12490,19000,19740,43304,61001,70286,62804],654571961730655827468274390],[[62370,62681,62937,14311,16068,30644,43310,25259,26530,60621],654571961752894831690931359],[[62482,62941,5395,5501,15770,18783,43171,58621,26738,72209],654571961748997867991180277],[[62499,62909,5510,5989,15404,18785,18916,43309,25882,50154],654571961705376658912297456],[[62934,4322,12259,15429,16205,18779,18799,28578,7947,17088],654571961701343450455690519],[[62938,5988,6091,11970,12251,24313,45005,51743,11842,19400],654571961722589410555347186],[[3170,4043,4402,4565,7561,8491,9178,9227,20664,31899],654571961741796235197358116],[[3586,4796,4833,5721,7784,8402,8953,15415,35785,36979],654571961468931775186096540],[[4572,4653,4978,5273,6321,6421,32069,33738,45379,35813],654571961719428822736890334],[[4650,4799,4937,5287,7874,8347,9306,20639,6480,69651],654571961741449708858510253],[[4797,5170,5288,5467,7533,9305,10155,10202,27539,55969],654571961697235958120620076],[[4980,5167,5289,7563,8627,8974,10566,27946,45685,49728],654571961741722198371639445],[[5175,5293,5752,6316,8762,12407,18827,46168,17339,36090],654571961697680426127677121],[[5292,6315,7535,7648,8326,8731,15979,29549,17201,29287],654571961697618218196827040],[[6320,7575,7672,8227,8343,8538,9524,30921,9264,4450],645476332774706208147370176],[[7577,7679,8216,8253,8945,9571,11765,38979,59446,28125],654571961718727933540035280],[[7780,7904,8239,8596,8721,9056,9357,9493,9596,28173],654571961719358778286906865],[[7788,7876,8218,8755,9162,9226,9303,9594,27800,20029],654571961697235958120620076],[[7790,8221,8360,8579,9485,9599,9743,12399,15919,23669],654571961719775349075749854],[[7877,8366,8401,8490,8588,10383,33883,43930,68559,70288],654571961741103182519662207],[[7901,8212,8411,8587,9323,9497,29576,27741,33970,44532],654571961675671368899458707],[[7907,8324,9071,9206,9327,9601,12261,15439,23231,8287],654571961693666596505432935],[[7918,8589,8730,8962,9359,10560,41829,43539,62126,15954],654571961741511916789356168],[[7919,8650,8746,9365,9515,10458,24315,42431,56645,26574],654571961741511916789356168],[[8327,8592,9578,9597,10071,10306,15394,30778,29042,9131],654571961578309607992725463],[[8617,9070,9358,9439,9522,19006,20551,45860,34282,35071],654571961697407936614529595],[[8651,9165,9207,9356,10070,10303,29580,33868,23537,44929],654571961697481973440253279],[[8654,8756,9221,9366,10048,10148,43218,46138,60962,20527],654571961741511916789356168],[[9236,9451,9598,10143,10507,15416,18844,22753,54071,17291],654571961693456314923134220],[[9325,9368,9450,9707,10050,31538,5915,23983,46670,71159],654571961741029145693943458],[[9369,9517,9576,10209,19992,20564,15955,29541,7932,36989],654571961578025289584652503],[[9569,9713,10193,10268,10363,15435,33642,23215,35654,44803],654571961671509465625626344],[[9595,10047,10149,10360,10561,11991,31883,32678,44407,23108],654571961741437879963637465],[[9600,10065,10156,10503,10562,20560,22765,1893,11844,70910],654571961741165390450508155],[[10068,10308,10394,10438,20524,1276,25756,17414,35050,28738],654571961674822406051104331],[[10197,10389,10500,10565,1277,31029,47212,66295,70921,16108],654571961718872014815740080],[[10214,10382,10463,12406,15450,12070,17785,23801,41890,44864],654571961718934222746588141],[[10223,10307,10496,15778,18777,27546,32157,60569,9765,21688],654571961697259862963082203],[[10361,10431,10469,10563,12394,18687,45859,60732,69653,9191],654571961719144504328878671],[[10397,12408,18685,19145,20596,28315,41840,1728,12149,34948],654571961719058638608284244],[[10401,11930,16060,19744,20595,20550,26235,71212,21367,26527],654571961696975544555060911],[[12322,12395,15614,15895,18917,22354,18402,26534,45137,46656],654571961740658961565349584],[[12409,12704,13864,42804,43231,43906,51574,62477,12102,6342],654571961718556202098846307],[[12449,15413,19897,20007,27983,43200,51542,21366,34840,4469],654571961551966916044669348],[[15451,15636,16536,18800,21423,15204,29581,39177,72738,58774],654571961718045533785217559],[[15913,16063,18910,21432,22497,27958,62445,785,24152,23656],654571961718984601782563001],[[17021,18911,20548,28317,32071,38941,42433,25985,60174,17183],654571961718984601782563001],[[18796,20680,21259,32675,60591,62030,62554,46635,46921,72223],654571961740795206321914358],[[18801,19741,28288,30642,15665,15953,31031,46923,36267,47391],654571961696765262972763259],[[19891,20522,20681,27586,43505,60766,2117,24153,25125,31426],654571961740658961565349584],[[20593,22790,28033,28676,45606,51556,56239,18956,26649,1128],654571961718419957342276903],[[20665,27516,28347,42816,51635,53734,53859,62062,70282,71227],654571961740931451078479105],[[21740,28011,28346,31559,31633,32066,45208,51637,62034,13626],654571961741067695835043822],[[27678,27976,31582,32073,41683,43538,61000,64401,67079,34639],654571961718984601782563001],[[27977,28286,28348,38128,45010,51544,2140,60730,9085,16392],654571961697037752485911052],[[28002,28296,28349,31547,45477,49360,53124,45616,19943,2048],654571961696609352802179994],[[28294,28619,31649,38140,42432,43298,23838,26967,60647,48567],654571961718848357025993687],[[28780,30643,31296,43835,45346,59043,19778,33739,15929,17468],654571961697037752485911052],[[31880,43241,45982,46031,46252,51739,60969,62474,46380,19403],654571961718556202098846307],[[31881,43299,44782,48579,53090,62572,15670,33869,46662,46834],654571961740658961565349584],[[31882,38371,43186,43467,45679,62058,18400,25220,26670,59445],654571961740658961565349584],[[32067,43311,43543,44207,46043,51667,56520,61127,12214,54997],654571961696044708361874595],[[32072,43498,45980,51631,60596,2143,11839,27233,55522,22026],654571961577592897525104958],[[42430,44775,49087,49336,56258,56517,25996,33525,70916,47113],654571961718848357025993687],[[42965,43295,43834,50219,60873,26554,31073,58674,67073,17321],654571961718712112269424345],[[42992,45078,46029,49761,51633,62551,29239,30402,46200,50126],654571961718181778541787040],[[45225,45341,50181,51709,53728,11763,13639,30969,31018,56088],654571961718712112269424345],[[45482,46027,48289,51737,56614,62132,24157,43404,47030,3426],654571961718848357025993687],[[46045,48055,51663,52068,53565,11847,18492,29547,64534,27859],654571961718712112269424345],[[48092,51665,56643,60597,62545,15667,26814,29996,46803,58003],654571961675090903188523257],[[51554,51741,53099,56236,56282,18999,19254,48372,67809,70357],654571961740522716808784781],[[51588,51707,56242,56523,56612,11846,27229,8803,34348,34837],654571961675090903188523257],[[51713,53735,56611,60933,62548,26961,46798,64943,10091,34719],654571961696901507729337170],[[52353,53850,56616,56664,60993,6496,23731,72084,44744,48491],654571961696234929245108173],[[56233,56267,58465,58868,61163,18526,33872,67864,34962,30523],654571961696336863289032022],[[56610,56658,60794,60968,20526,23710,33896,22572,47496,57931],654571961674954658431944806],[[56613,56661,60937,2114,12098,23846,45709,60116,20314,2734],654571961696064373775883938],[[56617,60590,62133,537,26982,33213,33546,71094,72090,7806],654571961717874978315999006],[[56638,60936,60992,62573,12147,24465,49518,30111,33712,29471],654571961674390013991620727],[[56639,59053,60928,61239,1729,11845,12078,60399,16393,57469],654571961696200618532457994],[[56640,60967,61250,62567,18403,24167,29256,67556,7966,11203],654571961696098684488534124],[[56644,3446,18986,23808,24033,25757,29310,60900,72954,7970],654571961718167133243146691],[[62127,62448,536,746,26553,27226,64280,64936,21421,23259],654571961696492773459615353],[[62443,784,5937,23104,26555,49170,60734,71101,36265,57767],654571961696356528703041357],[[62446,3451,12140,18485,24476,31741,33900,10239,41731,29957],654571961551138784707530597],[[62447,3450,18497,23855,29309,45140,60458,72982,57997,46692],654571961695791884262735740],[[62470,3933,16269,26531,30467,46707,65999,23556,44902,55517],654571961674545924162209285],[[62471,62566,18401,24168,29191,45036,64153,71103,33988,34842],654571961696492773459615353],[[62473,16281,18524,25754,29238,33526,21928,34673,35436,35738],654571961652735319620650475],[[62475,17728,23960,26976,27227,46880,60488,23208,23544,1127],654571961673981279721884853],[[62476,12106,18969,19803,33129,46197,60378,70914,47493,57940],654571961696356528703041357],[[22730,23115,23849,24034,26673,33873,72205,27733,33941,32864],654571961413497037770703956],[[23854,24028,24961,26749,31038,45858,46117,59014,71106,19330],654571961717364310002369727],[[24029,25235,25978,26774,31423,33606,39149,46009,23545,11582],654571961695655639506161598],[[24428,26643,27228,33866,38416,43393,60210,35438,46058,11743],654571961673743100921378820],[[26674,26975,27230,31714,32029,32197,33500,45494,19014,61220],654571961554680496197130518],[[26737,27231,30772,31040,46850,68243,69654,10083,29074,35789],654571961674409679405630721],[[26739,27258,27919,31042,45575,59901,72953,8429,17319,7979],654571961673845034965306172],[[26748,26983,27234,29548,43397,59425,34385,45119,54131,19339],654571961651932496379793260],[[27232,29324,30777,32135,33175,45255,59330,60216,61123,8272],654571961718030888486577206],[[27259,27900,32022,32171,45861,46376,58990,60230,19977,43513],654571961696220283946467333],[[29175,29575,30973,33562,45610,45639,70911,27602,31155,47802],654571961673845034965306172],[[29325,32017,32190,33871,46104,46853,67928,71005,17305,49070],654571961696220283946467333],[[29329,30929,43408,45378,45514,70949,17306,17657,26529,45199],654571961652599074864067371],[[30974,31070,33668,33870,45403,46916,60945,67961,43521,60634],654571961695090995065855376],[[31081,32194,33276,33542,33735,45638,71035,57858,701,11249],654571961673178456481053696],[[33527,33667,33905,41547,41758,45516,60214,22390,53553,29636],654571961673845034965306172],[[33607,38400,45054,46453,52378,58852,60519,60733,44542,46501],654571961695553705462237643],[[33632,38966,45380,45643,46709,47833,65226,70859,8282,29166],654571961696220283946467333],[[33736,45399,45615,46396,59427,71162,10087,17298,17560,44471],654571961652599074864067371],[[33747,43931,46710,64307,66000,68035,7957,9083,23204,9897],654571961648511208415817533],[[45027,45644,45701,47834,67102,68974,7933,17101,17571,26528],654571961652599074864067371],[[45611,46011,46399,46706,47045,35816,1118,11349,38877,59379],654571961628224090428522377],[[45999,46711,46917,47044,67097,70981,9759,28479,57757,6459],654571961652034430423724008],[[46001,46636,46712,46836,60951,67561,44886,45241,13029,14338],654571961651265917895518469],[[46708,46832,47029,47210,59896,65996,67092,9769,13350,17661],654571961674409679405630721],[[46713,46920,47022,53222,60922,15633,17307,29948,52286,57870],654571961630788470321777283],[[46918,47037,52387,53375,58898,60421,72955,10092,10479,34670],654571961674409679405630721],[[47038,47211,58656,60225,60420,10086,10234,6464,21731,5105],654571961502728819969220062],[[47213,52379,59015,60453,70397,71194,17185,17289,25722,35073],654571961652599074864067371],[[47832,49211,64884,66620,67080,70944,33781,38331,53897,34217],654571961533290464651760170],[[48118,49385,60178,60413,64066,64439,70336,72204,38250,39371],654571961696220283946467333],[[48119,48349,59448,60135,70333,70941,20281,56099,56105,51590],654571961652034430423724008],[[49384,52386,59424,68590,33772,43606,44449,53557,56093,56100],654571961608977865778760457],[[53212,59517,60406,60639,67350,67447,71826,1125,62601,32858],654571961391932438704713040],[[58937,60217,60379,60398,68227,71062,72948,15928,17113,17462],654571961674409679405630721],[[60229,60314,60525,60552,60815,69652,71028,72970,35787,47114],654571961696220283946467333],[[60231,60357,60544,60556,60845,16339,31156,36027,2332,39434],654571961349042051733368311],[[60383,60403,60651,69657,70227,70913,72168,43996,41187,44880],654571961669655234473261028],[[60416,60549,60612,64892,70947,72988,2483,10880,11817,66053],645476329129352438425677371],[[60483,60558,60644,65994,72188,72967,16981,33724,33972,43999],654571961652599074864067371],[[60566,60728,61120,65998,71233,72807,8670,8915,9260,34887],654571961652599074864067371],[[60617,60729,61124,64114,70373,72741,72806,63005,414,8392],654571961435227814526690417],[[60731,62689,64850,67826,25720,53544,54058,38318,53435,20318],654571961488336098589621693],[[60735,60916,65997,70356,72813,13424,16344,35054,44742,44965],654571961630788470321777283],[[62690,64069,64436,67376,67488,69650,57085,41186,62398,55146],648005680123999715365477349],[[64336,64541,66294,67177,70194,38285,44539,63178,44477,43602],654571961625469380948724471],[[64398,65229,67104,70287,70328,17402,44538,52288,46631,50630],648005680049899550489313492],[[66001,66781,67078,67103,67501,67751,70477,17403,17794,33975],654571961669757168517189017],[[66296,66790,67374,68602,70756,70915,33335,52594,48002,49407],654571961651265917895518469],[[66297,67105,67174,67498,69655,70470,70936,52591,48097,19396],654571961532971825695527033],[[66611,67068,67377,67500,25727,33700,33973,49085,55762,47092],654571961608413221338379465],[[67358,67483,67887,67950,68975,70759,70862,44934,47784,57517],654571961673178456481053696],[[67366,67497,67983,68026,68979,69656,33709,48103,50067,4106],654571961532059241726917705],[[67375,67493,67750,70385,70471,70940,31154,33721,36012,47121],654571961652034430423724008],[[67744,68087,70193,70200,70332,70753,38309,43508,43607,44867],654571961652599074864067371],[[68052,68111,70381,72190,72949,21358,23867,44311,7409,32776],654571961369107316140926274],[[68567,68978,70283,70380,70750,33725,36009,39581,50200,10182],654571961507381330858848956],[[69850,70119,70178,70197,70360,70917,26872,63198,8390,8709],654571961413417209977157430],[[69865,70104,70196,70239,7263,9082,10095,23209,23643,26293],654571961608977865778760457],[[70195,70284,70318,70548,70934,20411,44462,44743,55516,39575],654571961626700603873391235],[[70199,70329,70361,70384,70865,26891,44959,54081,44860,47059],654571961485827394593465943],[[70201,70319,70389,70948,71213,8818,21728,29226,54062,29565],654571961630121891837480961],[[70285,70337,70922,20423,39391,44455,39713,44437,54933,44865],654571961581079659333321670],[[70289,70476,70939,31157,33971,44469,52586,53549,44917,245],648005680055692620029015477],[[70554,70937,72763,15157,33723,16364,47093,56794,33977,10372],654571961462076851239859685],[[70856,70918,71092,71102,71236,9767,26279,34949,16401,34397],654571961626135959433025531],[[70919,71096,71105,71174,9188,9773,17347,17687,34951,58059],654571961608977865778760457],[[70920,71100,71214,4676,8674,8911,9763,10090,21398,47373],654571961587167261235016892],[[70924,71197,626,4669,7969,8281,17679,28478,7599,7401],654571961445483402021816204],[[70925,71098,71104,3427,8791,12911,17652,21886,22643,34955],654571961587167261235016892],[[70935,72184,72812,19927,43683,11793,12232,20285,1042,62585],654571961184982943470752836],[[70946,70951,71168,71215,72989,14337,36279,2323,11956,47379],654571961625571314992659341],[[70961,70995,71107,71217,71793,9761,10088,34525,34716,24495],654571961630223825881415106],[[71029,71200,71210,8796,17318,26428,26525,45795,16104,17695],654571961578991528337674430],[[71034,71053,71211,7945,8273,23218,23248,23646,45812,46107],654571961587167261235016892],[[71171,72085,72189,72208,12969,17304,29092,57590,17654,17682],654571961600802132881690413],[[71180,71879,72213,72952,9257,15130,17200,23230,29640,30525],654571961607848576897997986],[[71216,71230,72964,2587,8825,17177,23232,45794,57800,37990],654571961586500682750676149],[[72091,72162,72246,72983,33769,33989,43489,29487,63085,52434],654571961603760710449468677],[[72166,72760,72950,7967,9189,23660,28629,7698,29071,55973],654571961585269459825933770],[[72169,72257,7956,8662,8908,16082,35512,46180,58024,2085],654571961564792012250127969],[[72951,627,7968,8280,8784,10231,23549,28635,34473,57046],654571961542981407704912114],[[72961,2581,7246,7942,17193,29171,34641,57915,11507,8278],654571961538791607212029335],[[3402,7946,8283,10081,15904,23213,25888,29269,34625,13845],654571961376774371846963618],[[4668,7944,8776,10085,17688,23205,23677,44887,27534,28681],654571961380297593856332712],[[4677,8274,8430,10094,17566,23200,29044,30137,47848,54942],654571961520504224674561570],[[7971,8431,9265,17199,19961,33784,34324,45522,43520,30045],654571961517082936709898900],[[8665,10084,10476,17299,17317,21730,26433,2326,20357,30765],645476341097622447225661529],[[8769,10089,10478,17316,17448,19868,26521,29271,27793,16075],654571961517082936709898900],[[9084,10080,15905,17184,23219,30051,45502,27792,9913,35081],654571961397774326472891217],[[10082,12991,15648,17013,17288,17561,17678,23647,30152,34495],654571961517647581150358674],[[10093,10230,15661,16102,17100,17577,49044,57988,19185,20042],654571961520402290630610339],[[15611,16078,17292,17330,25816,26438,27840,34357,1795,11802],654571961520606158718512785],[[16074,16103,17320,23362,23680,35657,35783,2738,12216,15612],654571961516518292269438638],[[16085,16109,17302,17567,17686,23689,34518,46686,56219,8921],654571961401297548482147279],[[17293,17322,17354,17673,21917,23534,29229,30157,7601,29476],654571961520606158718512785],[[17303,17415,17660,21889,23551,35067,44901,47087,22113,35623],654571961397763663675374860],[[17323,17454,17689,21409,21893,30117,57503,13760,44974,8849],654571961397107747988357607],[[17570,21359,21930,23212,23543,30044,33783,35784,45116,16964],645476327230958484176711194],[[19832,21386,23214,23536,25729,26522,36089,39578,44903,8777],654571961517647581150358674],[[21692,23252,23542,25817,27579,28025,1394,3199,4889,38789],654571961256057698170750572],[[21921,23233,23377,25889,26515,26523,28359,44442,57470,34346],654571961517082936709898900],[[22432,23386,23550,23673,23694,28505,29289,50368,57274,17655],654571961517082936709898900],[[23201,23531,28358,29169,34392,34823,36182,57688,57861,10869],654571961521170803158969521],[[23530,23638,23681,25801,26280,29268,35807,55758,57368,17449],654571961517082936709898900],[[23548,23676,26510,26524,28567,34597,35694,44696,56739,40637],654571961520504224674561570],[[23557,23686,26526,28052,29231,29943,29992,34708,41253,9915],654571961516981002665947136],[[23697,25800,27608,28071,28363,29946,34820,48543,55763,34500],654571961517647581150358674],[[26443,28077,29086,34524,34710,35786,29551,34540,34894,20006],629547155719907389103187764],[[28504,29088,29266,33310,34599,34711,44964,53970,57898,34957],654571961517647581150358674],[[29072,29168,29939,30138,34417,34860,48632,57392,9266,9950],654571961512995070260802749],[[29090,29228,29970,34534,34950,34961,35663,35676,47467,28026],654571961517647581150358674],[[29284,30110,34315,34496,34952,36266,57889,29724,46371,45040],654571961516416358225486786],[[29286,30042,30136,34608,35056,47154,54070,45295,36520,37458],654571961393573863181562567],[[30139,30153,33722,34421,34497,35286,45238,55523,31449,7920],654571961401862192922706932],[[30148,33760,34382,34602,34718,5531,46693,57473,46496,8277],654571961515287069344564626],[[33782,33986,34284,34503,34543,34953,39346,52443,52354,54843],654571961520606158718512785],[[33785,34294,34396,34605,34636,35681,47400,5544,54938,63810],654571961401195614438177485],[[33987,34292,34407,34502,34826,46181,47112,14627,46494,64973],645476339518827666279407367],[[34411,34480,34675,34717,35288,44806,52284,48183,57930,37530],654571961393573863181562567],[[34519,34539,34610,34709,34817,35782,28708,44507,28053,34622],654571961512328491776386473],[[34532,34600,34638,36088,39570,47489,49285,56073,38000,53501],654571961520402290630610339],[[34607,34672,34855,34890,36281,46775,4461,15704,9964,57753],654571961512226557732433969],[[34884,35060,35287,39574,43600,44958,54076,58000,55868,7392],654571961401862192922706932],[[34893,35289,35528,36022,36180,36282,47086,29400,40635,57811],654571961516314424181534918],[[34954,34967,35077,35735,39405,44878,54017,46687,34939,36579],654571961512995070260802749],[[35437,35513,36186,36260,44673,56022,57570,57580,35292,48310],654571961261553628035073897],[[35439,35525,35699,36091,36276,54077,57659,45359,33974,36008],654571961512893136216850349],[[35660,35732,40013,43998,44454,47382,47468,57876,52813,44898],654571961516981002665947136],[[35729,35788,44740,44925,46773,47148,47476,28712,34660,29465],654571961376209727406382324],[[35810,36184,43484,43997,44470,53828,54127,57393,44531,33685],654571961397774326472891217],[[36196,36261,40022,45039,47477,55445,39419,43991,46492,34937],654571961515749779741073994],[[36198,36263,43662,44528,46056,46827,47378,57761,29727,57941],654571961517082936709898900],[[36200,36262,44348,44745,45555,46823,47426,54852,53471,19530],654571961379464837681061207],[[36202,36264,44802,45552,46801,54024,57766,57991,16400,40366],648005678874662821175853396],[[36277,43601,44543,44741,44931,47088,4253,22112,45355,36566],654571961515851713785025949],[[36278,44813,44856,44928,46059,47375,56070,28115,28690,28730],654571961520041514278055563],[[36280,44684,44935,46057,46825,47393,57742,57895,28308,44145],637746116271839206049827738],[[36283,44810,47115,47430,47466,56094,58006,47851,55556,63433],654571961520041514278055563],[[44859,44883,44900,47089,49029,53545,57658,57873,21860,37343],654571961401862192922706932],[[44924,45066,45182,47149,52327,52431,31069,42643,43731,55413],654571961519069133661792194],[[44930,46131,46829,47146,52438,54118,27574,57395,10217,22873],636250701249416366184206486],[[47147,47433,48608,52816,54074,57752,57769,39411,55968,44909],654571961516416358225486786],[[47155,47482,47500,49276,52822,53552,53615,37892,38113,61356],654571961519735712146201606],[[47156,47469,52823,54033,54075,57677,57758,58048,40631,53491],654571961520402290630610339],[[47157,53144,53988,57629,58049,58054,47859,27623,38560,7393],654571961400529035953647358],[[47483,49280,53679,53974,56079,57920,14626,29552,29429,43988],654571961519273001749695055],[[49289,52342,53827,53893,54063,57667,19017,33993,29706,39617],637746116122778393763016080],[[50342,52432,52817,53985,56102,57672,57855,55553,63431,9130],654571961401297548482147279],[[52599,53548,53889,54039,57892,5858,6346,7590,28601,56121],654571961518810291353188177],[[53826,54023,54065,56007,57653,29701,29732,43896,50211,53820],654571961518708357309236683],[[53829,53901,54012,54068,57744,21521,29700,46345,48438,44914],654571961515185135300612582],[[54032,54069,55767,57760,58053,29698,38762,45023,45426,10373],654571961399862457469116553],[[54038,54080,56021,57686,57768,29556,52303,8673,17290,17600],654571961389023286335096468],[[54064,54114,54135,55444,57560,57652,42811,50075,17700,7905],654571961397107747988357607],[[54132,56104,57673,57801,5870,7587,7699,45361,36081,47494],654571961511199202895457260],[[54140,56101,57619,57666,57815,28116,29637,29523,23644,35444],654571961511763847335922110],[[54143,56103,57814,58021,7589,7812,3197,3602,36534,26469],654571961395876525063258988],[[55416,56008,57564,57594,57632,57750,23832,60636,63430,55376],654571961519374935793646462],[[56106,57749,57759,57919,57937,28339,43990,45425,23664,10103],654571961396441169503823317],[[56107,57681,57918,58027,7808,28687,46386,23679,37662,37293],654571961273135964040703000],[[57574,57584,57622,57755,13205,54995,63315,41189,43989,57809],654571961514620490860150683],[[57747,57799,57864,57916,1345,51593,43736,47480,36289,34662],654571961273135964040703000],[[57798,57867,57914,58009,58050,29531,46354,54936,44535,27493],654571961392342640256457302],[[57816,57921,57994,58047,27535,47806,40633,46502,53440,39571],654571961514518556816198536],[[57817,57934,58060,1959,2319,2733,11791,14420,28531,28646],654571961517579068428318476],[[57917,58018,58046,1392,12292,21491,24506,13012,26466,37693],654571961280193070858056161],[[58051,1338,1395,11578,12291,63443,11190,59412,47481,57923],654571961509403335530106844],[[58052,58065,1393,6347,29488,12023,46391,59485,45501,1314],654571961394645302138158054],[[699,1035,1803,1960,12235,15556,13777,61344,7139,12480],654571961278397203492071962],[[1039,1964,6341,11417,12220,15541,29638,59207,14938,59116],636250702880391761479737547],[[1126,1965,2087,11277,11375,11788,21857,40632,61268,16501],645476328753747566351641302],[[1129,4265,10915,11275,11367,60664,62932,8285,10005,37323],654571961266880791073855808],[[2054,2322,11400,11625,11808,873,11535,1044,6021,684],645476337000789871351720467],[[2328,7705,10926,11377,12178,28731,59484,1130,12680,12170],645476328985430695440205651],[[2329,2737,11290,11803,12211,21850,58799,10874,48887,16979],629493315548363052917641319],[[7603,7814,11401,11623,56999,4460,3405,4670,37660,58881],654571961249888094445537365],[[7704,7990,11825,19479,29492,29699,27896,58973,59479,46545],654571961375308458509050529],[[7976,11402,12184,12215,875,11248,28642,9934,7598,28686],654571961231642849296332168],[[7981,11292,11606,12180,12212,323,59405,59478,9939,34663],654571961508736757045686910],[[7988,11413,11608,15553,28563,29526,40630,58822,30151,7556],654571961393617947300996800],[[7991,11416,11818,11949,12186,19436,11514,28526,51244,4465],654571961397039235266304792],[[11366,11593,12217,17796,49378,61063,2243,14346,61227,11828],654571961235101827659721333],[[11376,12210,21867,23830,61028,62813,322,4611,37681,11811],654571961138190572621984773],[[11589,11785,12223,29639,3600,28082,9967,15930,7562,47076],654571961249786160401543991],[[11826,13204,14013,57252,57369,35447,57927,7213,7827,8233],654571961148712132470320834],[[12213,12295,24497,28309,28530,29101,38899,35797,36208,59069],654571961137820526843181778],[[12288,14386,15544,19401,43730,54939,589,4185,13810,26754],654571960976049296863291630],[[13990,16365,39375,47804,56801,38683,46689,36532,44970,31123],654571961390094725291699403],[[19402,19683,43518,43892,57121,63427,52226,53811,57871,6109],654571961393617947300996800],[[19682,27575,28710,29600,55880,54940,34816,44857,44908,10211],654571961386673437326355114],[[24504,27734,28126,28739,63255,2242,34932,13118,37624,4888],654571961152133420436908889],[[28145,28689,29641,29735,47120,56807,41248,57520,34960,6227],654571961393617947300996800],[[28338,29532,47127,55882,29368,49250,51242,53810,30113,8267],654571961389315549965669834],[[29477,29608,63442,11580,29371,54937,58789,4640,7842,35667],654571961159449369564312832],[[29642,43519,47142,47856,29095,29427,44436,9770,9965,57793],654571961505213535037009137],[[29643,54853,55870,13927,38770,39290,9962,34858,8270,37438],654571961263051766931902376],[[39377,42810,46681,63336,44439,44491,54328,10228,23589,22430],645476341089731259817676346],[[46650,47790,57394,62816,39293,39388,8279,10473,36752,10003],654571961267252230224068601],[[47808,47895,54996,57475,62274,38584,48570,52807,587,37619],654571961278295269448083029],[[47892,51591,54994,56785,57472,56545,36564,45521,7185,36288],654571961271452693516207871],[[47900,54842,55554,57084,62351,42743,57507,36548,2402,4107],654571961274873981482154391],[[47903,51592,56207,57111,22451,31066,53456,43490,43609,4891],654571961385894262000321472],[[48106,49370,56217,57094,63428,23864,21410,23253,16561,36206],654571961271452693516207871],[[48112,55551,56212,56736,61058,13939,38102,53484,46021,53890],654571961508736757045686910],[[57120,57408,60662,62281,23865,40634,47933,55437,36546,16289],654571961393414079213054803],[[57399,57502,63229,63466,23866,41333,23640,23674,29227,34222],654571961271350759472217856],[[57414,57525,62823,63429,37934,48960,52806,23665,6064,61763],645476339929563041353791181],[[57415,57468,57524,27915,28088,29739,44496,21691,34624,34835],654571961505111600993055525],[[57471,61046,62674,63001,39710,44916,7408,29113,8711,9134],654571961029290925324620262],[[60637,62273,62367,62943,63191,16384,41188,44961,44969,9102],654571961390094725291699403],[[60665,61473,62668,62987,63197,61010,63528,40075,72381,57063],626889298736642329693424046],[[61025,62280,62354,62935,63018,15705,31067,39712,49371,68575],645476328813619659077119210],[[62364,62663,63187,47924,51243,4887,30343,32729,9804,63577],654571960896502177575567895],[[62677,62940,11184,11574,39711,55972,59186,59416,46002,35448],654571961389111681877726497],[[62678,62986,63432,11806,41308,48471,54930,2543,8398,10222],654571961155350840315462919],[[63017,63179,63314,37965,41477,54420,35527,36535,57936,65782],645476339503894111476635618],[[63337,63467,11201,11597,41456,55971,3404,8770,9894,10185],654571961386367635194438850],[[10745,11251,11506,22461,29097,38296,8912,57671,30342,46640],654571961249212246534817176],[[10752,11256,11567,11749,38673,54934,58752,11419,12672,23860],654571961094117414825462617],[[11257,11508,11566,45308,47965,53249,9922,17294,33930,37161],654571961270943023296257638],[[11258,11352,11570,40636,44388,59433,57664,3355,8412,4656],654571961151623750216865750],[[11259,11509,11571,12018,48635,55967,47429,57888,3360,8403],654571961270943023296257638],[[11591,19202,22894,29431,46351,59402,35072,57628,9132,17384],654571961266844494048105829],[[16389,22909,29099,45304,45424,51238,9766,29975,36082,37274],654571961382065237859064228],[[27617,29401,29738,44361,52812,10475,17405,17463,45200,46486],654571961361011702383400866],[[28527,29027,29432,45148,45427,28310,2537,10296,25958,41050],636250693605357151611436230],[[29426,29720,31068,45357,46424,53234,55966,8916,36578,44896],654571961504805798861194593],[[29428,38623,44438,45290,53436,9768,9895,27798,34885,10295],654571961382742479141129759],[[29430,38646,46427,46495,47542,49082,9923,52340,6202,20982],648005679856770863302477773],[[29433,39402,44306,45291,46421,47549,53439,17675,36519,36054],654571961385486525824432603],[[37895,41172,41282,44482,51239,54334,16111,17547,17685,6223],654571961386163767106494595],[[41171,41284,44500,48970,51240,54414,60630,36550,57856,7838],654571961389585055071841548],[[41184,41310,43737,48049,50063,15619,21845,15112,66358,24777],626889290467793487232207901],[[41185,41304,46684,49041,55409,56114,33991,46003,33688,28682],654571961249378424225570340],[[41318,42652,47948,50166,55377,10233,43608,8932,26320,46549],654571961130736392424573793],[[41320,47985,49232,55986,15907,17455,36183,57745,57808,23283],654571961379321191175747042],[[41346,48267,48458,54394,58817,58886,47376,57865,21841,6430],645476337154208723264498820],[[41348,42769,48086,49133,54941,58379,62374,12754,61040,68765],645476339251496310319284019],[[41355,49143,50058,50090,51245,54331,9877,44975,29144,35669],654571961270943023296257638],[[44977,45050,45154,45428,46507,9760,28340,36083,44971,37618],654571961382742479141129759],[[44983,45429,46418,46488,52335,54943,8823,34418,4755,8926],654571961266844494048105829],[[45294,45431,55441,4671,9898,17542,34501,37227,37537,64501],645476339255330506451509701],[[45430,46348,46366,59401,8286,9758,9892,34509,34615,2751],645476340903458547425859799],[[46489,53437,53443,55970,9772,16346,17684,4570,10102,32741],654571961148879703532582524],[[46490,52274,53277,53441,53507,9912,15906,4752,37421,12670],654571961130570214733790509],[[46491,53342,55991,8816,9088,21920,36185,495,63701,15852],654571961123893816491156127],[[46493,53434,55987,9879,10474,16105,53898,63703,59057,37454],654571961014305702026078227],[[49402,50062,53438,54935,17331,17670,46130,574,35533,12501],654571961123050397518037590],[[49406,50088,52237,53469,63328,17556,35445,52441,7841,34279],654571961267521735330290572],[[50059,50114,53821,60659,34393,34485,57862,415,8391,10446],654571961144781174283666430],[[50116,51241,53461,55382,62646,47495,57790,63856,14539,2756],645476340880734770596952384],[[50135,53479,54337,56564,17532,17694,36547,53989,57685,10375],654571961379321191175747042],[[53449,54400,54928,8276,9876,36187,7843,7917,36755,45127],654571961008673072634753217],[[53496,54932,62635,63323,44530,15597,15848,39334,62360,65488],626889307267628678839109619],[[54931,58771,58833,17533,2526,8333,10132,10300,9554,37616],654571960791599125445082040],[[55383,55988,9920,17543,28341,28605,34938,34966,4947,10134],654571961257257871432282080],[[55989,57510,8669,9086,16079,16110,36530,44922,5385,7510],654571961257257871432282080],[[55990,8284,9089,9925,17557,27538,34934,4187,4946,37008],654571961134517310383733334],[[55992,9087,9899,21387,5306,7417,7508,8925,23582,37651],654571960788855078759289546],[[55993,9263,9764,9948,30114,34494,9195,37665,57287,30341],654571960980099719929684979],[[58351,58753,58823,58832,58840,9936,12485,27385,32725,35617],654571961032981718398151039],[[58754,58816,58828,59187,59381,34408,27395,27487,32760,11294],654571961015515648569375344],[[58755,58829,59206,59400,30048,4484,4809,37009,37483,59058],654571960884411851283586090],[[58772,59387,59398,27578,7532,8545,9304,8481,8683,11834],645476339489296008158440114],[[58773,58962,59403,9878,15931,17469,4488,5191,7506,36984],654571961026139142463711494],[[59399,59437,9937,17340,17681,34933,7554,8933,9785,4180],654571961001153255417599925],[[59404,63319,9893,10472,17683,35446,46020,57924,4610,7840],654571961257257871432282080],[[63332,15634,35051,36531,44968,8732,29167,9835,10457,88],648005679486186174747618408],[[9762,9896,17676,34313,34604,57894,7878,30122,34671,12547],654571960998243031041869031],[[9914,17404,17696,23242,30115,8609,8939,30345,34226,20257],645476328374734906212362971],[[9951,16347,17546,29942,47397,54037,57618,3370,10554,37288],654571961122898963918972652],[[9953,17295,17701,34598,54122,57868,4886,63860,4661,6234],654571960994310679482827661],[[17697,21890,23353,36199,3872,5194,37661,37691,63693,7512],654571960763869191704120528],[[17698,21883,23387,36181,36536,53971,9103,13131,34209,63651],654571961019973807811641282],[[17699,21931,23688,36197,57751,8231,8692,10101,37341,36910],654571960900654534686501232],[[23675,27739,33990,34853,36201,36563,9115,9780,37531,63733],654571961007678220062394623],[[23678,29990,34606,34825,47479,8543,29142,36753,9841,45126],654571960879089935603614935],[[23691,30112,34658,36551,49071,8649,35668,37550,36459,32126],645476339599888153361465093],[[23692,34481,34627,36013,36552,44923,17605,9805,10378,63654],654571961007678220062394623],[[23695,29945,33976,34819,57792,57877,31135,37455,29707,32132],645476339906521532108964088],[[28311,30154,36203,36533,44915,8842,34278,35791,37559,8679],654571960900654534686501232],[[28566,34596,34661,44881,44956,57928,7875,8542,35531,8257],654571961015875278561918058],[[33992,34888,36521,39373,57791,9192,9270,10096,63638,9774],654571960900654534686501232],[[34281,34891,35055,36562,44868,8708,10297,17607,37435,10192],654571960900654534686501232],[[34291,34531,36537,57897,57922,7899,8237,27489,9092,23282],654571960896556005436030904],[[34822,36565,43517,44807,8757,9194,9292,27488,9093,47288],654571960763869191704120528],[[34936,35076,57581,57891,57929,2413,4105,16277,63779,36205],654571960900654534686501232],[[34963,35526,36549,44534,7908,34204,37658,30127,37319,57423],654571960759770662452793734],[[36080,36568,44967,57678,10204,26467,37174,10553,37218,63716],654571960777236732288393521],[[36518,43603,44973,47478,8804,29288,32763,34325,1584,27384],654571960746236944177283196],[[36553,44897,54141,8684,9114,9324,9779,34277,10468,32765],654571960666114517622909323],[[36567,44899,47394,54030,29958,30123,37178,63776,37222,46688],645476339326353282879723341],[[36569,45183,57810,4473,4884,8549,29285,35085,35700,36839],654571960674311576126710085],[[36580,45067,494,7416,17606,35666,3366,9104,9838,34164],654571960525064467647784647],[[36581,46108,57743,4165,5307,7902,8229,63843,9803,9983],654571960666114517622909323],[[39348,44972,47425,8855,26310,29267,36286,4108,57128,60490],654571960626917671002244761],[[43491,54021,3244,8604,9322,26306,32740,4612,15846,31179],654571960511696927058361841],[[43516,49030,3245,4885,8700,9133,28195,36285,57127,63171],654571960515961634002181280],[[44962,54014,54134,8626,9193,26319,9090,37145,37221,47827],654571960640451389280222305],[[49277,54123,5381,6222,8938,31124,37275,33944,36068,19159],654571960529162996900581028],[[49286,5466,6226,7511,10133,13332,27860,17389,28447,27562],645476337422211493979093987],[[54031,5479,7509,7572,10374,15161,35004,35025,5401,21839],654571960400740890038767372],[[54036,7560,8680,9777,28438,35879,3246,10444,32767,47824],654571960410009901376939318],[[54137,7574,9271,10100,23587,28442,35795,36766,28103,19833],645476340162489652878522420],[[54138,9288,9775,10097,21998,31134,32742,36761,37453,29515],654571960414108430630456100],[[57561,57591,576,4464,7826,23588,9778,34401,34493,15850],654571960525230645338721652],[[57571,57935,3460,4685,4855,10099,35291,37345,34405,28102],654571960533427703844286671],[[57665,57874,1321,2520,4687,4853,34201,36287,21840,29464],654571960515961634002181280],[[57670,3864,5190,5311,8228,36949,35450,37532,63697,63850],654571960427475971221871839],[[57859,3475,4646,4998,5195,26308,37016,3247,4111,35451],654571960431574500475279260],[[57925,4141,4205,4996,17393,37233,37554,37625,63818,63783],654571960439771558982017114],[[57926,4489,4997,5309,8230,34514,63785,34623,1351,51234],654571960396476183094197240],[[4480,4535,4599,8359,22485,26305,29170,34640,37018,9952],654571960324550815005191881],[[4534,4594,5308,8240,8544,22517,36997,9782,36819,49149],654571960298721508958119059],[[4564,4753,5304,7839,23586,26315,29997,37444,37172,35990],645476339223336095706007087],[[4754,5310,6123,8346,8546,23585,36887,37445,29956,46357],654571960302820038212332662],[[4999,7400,7507,8336,8854,16554,23584,29143,37692,23415],654571960324550815005191881],[[5305,7494,8251,8547,36886,37019,8922,17491,16067,25805],625976149491446706965170706],[[7495,7530,8254,8797,10147,26468,27841,34515,5377,47073],654571960302986215903326089],[[8393,8478,8548,9289,10154,12755,23411,23284,7588,39353],654571960281255439109750958],[[8417,8479,15138,17371,27486,27696,37687,5429,6203,34512],654571960316353756497011144],[[8484,10159,10298,13351,17604,32715,35622,5455,34830,36516],654571960316353756497011144],[[8485,9293,9781,17392,34273,37688,37694,6219,9997,16298],654571960316353756497011144],[[10098,10142,10294,17365,22573,23414,35046,10004,6239,11751],654571960281255439109750958],[[10135,10299,22644,23583,33697,34508,37695,5358,12687,43913],654571960281421616800749859],[[10184,10972,13379,27382,29133,37226,37340,37552,35885,14506],654571960302820038212332662],[[10301,23285,26317,27392,32743,37228,37546,37420,19141,11607],645476337305367135950993486],[[10973,13373,29112,34301,36834,37011,37229,34829,36994,37155],654571960210864171151524659],[[20341,26837,29132,34275,36291,37560,35614,37320,18016,45989],638816569254408118280193153],[[26818,28443,29230,30344,34488,63847,9865,10550,7633,29559],642062510197525761112064665],[[27692,28167,30128,34272,35794,63652,63732,1182,28823,41497],632787097130009241409794079],[[29145,29955,31240,34212,34614,35293,37279,63700,4686,36946],654571960320452285751114344],[[29270,29971,30129,34619,35682,36290,36835,36892,4944,27670],654571960320452285751114344],[[31271,32761,34358,34999,35534,36210,10445,27491,28417,53687],645476338939927170111341006],[[32630,32739,33648,33927,37146,37192,37491,4110,12757,32766],654571960316353756497011144],[[32665,33216,35290,35792,36754,37418,36461,15711,2037,16614],636250690010826933391427703],[[32762,33279,33612,34220,37151,37187,37482,63705,34507,63795],654571960320452285751114344],[[33638,34199,35619,35998,37281,37656,63696,34489,34616,7857],654571960298887686649113527],[[33673,33916,35796,37232,37424,4109,12486,35532,37160,111],648005677667456281191927209],[[33676,34274,34618,34674,35695,37485,5038,5070,9825,37299],654571960312255227242882281],[[34306,34404,34637,36791,36894,63863,9136,9949,28418,12508],654571960294789157394875303],[[34400,34492,35793,36841,37006,37013,37342,63807,8817,36990],654571960320452285751114344],[[35613,35882,37165,37344,37460,37697,34828,36004,7980,46293],654571960277156909855402331],[[35616,35979,37277,37338,37641,63690,27399,36073,37290,33647],654571960294622979703879794],[[35677,35790,36838,36943,37611,5040,6218,37314,27515,29710],654571960273224558292029025],[[36204,36795,36883,37000,37017,37467,63694,4598,5099,9924],654571960316353756497011144],[[36284,36775,36840,36895,36911,63702,5101,9818,9938,36790],654571960312255227242882281],[[36783,36827,36882,36941,37610,37698,5106,8935,9559,6717],645476328292244383683596697],[[36823,36896,36915,37415,37689,63601,5107,34617,63661,15851],654571960294789157394875303],[[36893,36927,36947,36991,37615,37649,37676,9137,9555,15706],654571960298887686649113527],[[36897,37015,37547,37595,37673,4854,8355,8934,9291,9921],654571960308156697988727756],[[36899,36995,37548,37614,37637,63698,4890,17391,7513,29491],654571960277323087546402273],[[36923,37014,37549,63596,63794,4811,5193,37298,4264,12620],654571960273224558292029025],[[37005,37012,37466,37551,37667,4759,10000,34940,36826,9826],654571960202667112641920249],[[37339,37440,37599,37648,37659,4852,8482,8710,9871,37535],654571960308156697988727756],[[37488,37553,37663,37671,8334,8480,9776,37613,37622,43912],654571960286592098886321867],[[37565,37682,63586,63704,63791,8693,27400,36211,37492,37154],654571960202667112641920249],[[37657,37690,63633,63653,63846,63866,9821,37555,29630,24851],645476327842279375227241411],[[37696,63650,63659,63841,5100,10001,34506,36866,6610,12138],654571960268793673655626025],[[37699,63662,63699,63845,8235,8824,9105,29486,29632,34228],654571960251493781497465853],[[63591,63692,63782,63842,4593,5103,27799,30126,34942,36782],654571960304058168734547569],[[63773,63788,4613,4810,4949,10551,17390,34831,26816,8713],654571960172739277335035489],[[63815,8232,8260,9783,9832,12487,36749,37276,19092,46544],654571960256830441274279405],[[63840,4684,5192,8847,17601,34947,36855,37629,19046,12044],654571960256664263583274260],[[63844,4808,5188,8853,9996,10462,34945,36926,37464,29261],645476328199649454536369123],[[63857,8701,8736,9820,10002,17602,12494,12512,21147,7332],636250704070788188828298516],[[4536,4581,5039,5074,9476,9483,65,7779,5235,3067],585585809301549826408659797],[[4537,4576,5044,5082,5189,8852,9819,9935,37630,8712],654571960182174466367460130],[[4756,5041,5068,9296,9824,9966,17603,34836,28707,30275],654571960252565734328771659],[[4757,5042,5076,8234,8351,9963,30125,37631,37684,7264],645476327512546308217358120],[[4758,5045,5080,9135,9495,9822,17490,29991,35886,19005],654571960270031804177905293],[[5043,5086,8335,9474,17489,34941,37679,12513,23861,32150],645476338946823201632688165],[[5088,8615,9290,9298,10368,36983,4538,36973,20516,18703],636250690114290171826262397],[[5097,8483,8928,9269,9479,27740,28389,37177,37301,37225],654571960182174466367460130],[[8600,8638,9287,9314,9994,28388,34513,34659,35000,37604],654571960287664051717570194],[[8605,8840,9477,9823,9985,28419,34859,3266,20506,31894],636250679795510708296687897],[[8761,8929,9116,9286,9491,34305,34626,5405,12377,29512],654571960235099664479171974],[[9091,9272,9556,27641,35005,35026,36475,28386,29514,13519],648005677643939767814867140],[[9117,9557,9868,12756,27492,34946,35620,14016,27735,29156],654571960235099664479171974],[[9316,9475,9553,9784,34300,34347,34613,37322,28416,32728],654571960252565734328771659],[[9552,9980,10369,27490,29976,36762,37278,37561,3295,22685],645476338964703911024502645],[[9558,9802,9874,10379,32764,33951,35887,36477,4136,31192],654571960252399556637765431],[[9982,10556,17488,35080,36458,36488,37533,27834,37544,51535],645476337169297080554584509],[[9999,10451,30124,35449,36482,37164,37433,63657,38958,6609],654571960252565734328771659],[[10006,23410,27398,36209,37291,63849,1704,5530,37173,53851],645476327370145851503848280],[[10007,33954,35047,36748,37489,37594,12608,22744,55222,56797],638816572054311722987115620],[[10187,10555,34944,36474,36517,37564,63695,63853,4138,23395],645476339172205122410495826],[[10447,10552,27401,34612,36207,37159,63854,9138,37540,48363],645476338179809094322650198],[[10557,34314,36476,36510,37317,37605,63691,28387,57054,24150],645476340057445502450215832],[[16303,34841,34943,36489,37321,37612,6235,34161,17842,18467],638816569264154863213508470],[[33961,35084,35878,36059,36758,37219,37234,63717,63809,14497],654571960270031804177905293],[[34854,36511,37300,37632,37664,19397,27505,31045,32852,31322],645476324726573991421570709],[[35883,35884,36460,37280,37423,37465,21838,28451,52007,19406],636250702392526727674792163],[[35970,36584,36763,37220,37231,63806,39435,41948,9981,195],648005677611469872350607185],[[36483,36759,37417,37536,37607,37628,22533,9995,37459,41422],645476331276824495593100059],[[36582,36764,37316,37558,63814,2330,12683,27669,47825,62597],654571960200333702469593940],[[36583,36822,36988,37442,37598,37666,63731,7600,39462,48236],654571960234933486788161312],[[36585,36832,36996,37443,37609,63786,28109,31034,41120,46098],645476338928942492240378362],[[36594,36794,36820,36881,36981,37617,37640,63817,5543,34268],654571960252565734328771659],[[36595,36837,37002,37606,37608,63867,7515,29463,14523,51235],654571960217467416938091142],[[36596,36818,36880,36940,37636,37670,63632,63718,39328,64513],645476337418522139767471768],[[36597,37003,37635,63719,1217,12684,6608,27394,9829,124],648005678694341925792857765],[[36760,37150,37188,63774,7992,11612,29713,57126,63177,11812],654571960182701454927576616],[[36765,37193,37414,37678,63780,27573,29634,33749,41127,1570],645476337152791285904940560],[[36767,37486,63848,4252,12616,27413,4137,59068,37285,1957],645476338736772160091500320],[[36774,36821,36853,36884,3497,36768,36977,2789,1641,20495],610475310561750545960146292],[[36851,36885,36914,37634,63587,29629,16276,19428,3556,50815],626889296264530276584661343],[[36854,36948,37633,37646,7977,29633,29146,29302,25265,26318],636250684968362425938017142],[[36863,36942,36980,63592,18951,29475,15199,41125,2254,6662],636250686525818991656974850],[[36865,36922,36982,63656,3383,21844,28688,16577,32738,69768],645476328033741490834803677],[[36867,36986,1131,1346,3294,11829,29320,45372,58842,13494],648005677555220909856924743],[[36985,37623,63655,63730,1585,28680,16315,51236,11069,46051],636250701179427066993136339],[[36987,37672,63637,63851,7989,29631,49155,28883,11132,11205],632787093680820600263873181],[[37534,63602,1701,7856,12433,28709,12541,59048,59059,2508],645476336039915532886114770],[[37685,63597,2333,6020,45564,49555,62598,59497,37223,21684],645476335748081318899385303],[[63660,63852,1220,11629,12425,13994,59060,30951,28323,51564],626889309179356856982877501],[[63777,63792,6022,6238,59047,63536,12553,34171,43971,31381],636250698425211254256200183],[[63789,6023,7514,21842,27718,47289,32750,59498,8841,9984],654571959954090036628349390],[[63855,63862,3376,27410,29533,61015,31228,51233,60915,42571],636250689884925296656519810],[[63861,3492,15847,18981,32909,12678,27341,45364,40752,29678],638816572108549859988242637],[[1132,3251,3293,12330,12495,27412,47294,257,41739,33504],629493331446473826740484604],[[1133,3248,3697,11405,21843,16307,45394,46291,24145,8367],636250704228785270893502407],[[3292,3696,7858,12314,29711,61305,29149,29564,2058,14388],636250699374049908705071299],[[3701,7586,12334,12373,47298,12139,15180,59503,15901,28584],636250698146212728253986549],[[7859,11406,12360,16356,21520,26558,45362,9139,55537,1969],636250700853743319809960275],[[11279,11369,12332,12364,16361,21487,47106,32724,45500,59062],654571960112504820136841320],[[11368,12331,12337,12604,45487,46671,30272,46358,61300,73463],645476336571482684024594614],[[11378,12310,12362,28683,47079,3440,27704,29148,37427,32845],645476329993377146883880367],[[11379,12358,12370,27533,29470,16572,33737,34160,2649,28435],636250685208576038191713671],[[12333,12336,12374,27411,47109,3436,51232,37426,51958,60964],636250702134527282477569131],[[12335,15849,27719,1549,12576,26559,29317,37282,17968,12219],636250701138280504261564307],[[12371,21482,28108,32906,1548,26616,41126,9998,21362,15195],636250679100778422957276318],[[12372,29712,45486,57163,61219,12329,34229,59010,61458,4078],638816561956167267627423270],[[12375,21490,27640,12509,29147,45471,18468,10200,11958,53873],623373689223734497509341517],[[12376,32907,47058,62600,62616,19011,19366,37428,60935,55755],636250690196949535999949801],[[15853,29462,32908,60627,19553,23862,28896,21219,28562,16792],623373700645744252169049471],[[27794,29628,57420,63503,11338,26557,30274,32047,14505,40358],626889291907663278115149344],[[29553,29635,47072,61177,63494,11339,31178,45369,6435,3441],636250689111286656907565323],[[38959,56930,57282,62586,63556,4139,26621,27340,37289,37539],654571959936457789079698984],[[41949,47299,57162,62679,63182,13923,15675,49144,9828,37541],654571959936457789079698984],[[45014,45565,56932,61045,63563,6611,11694,34224,52273,52868],636250692640004255363776284],[[45015,47826,48104,57165,61212,63564,5386,27521,44322,14557],636250695231414136360103888],[[48113,49550,56933,62599,11698,12479,30338,34227,8848,37315],654571959936291611388612506],[[48319,56931,57421,61179,62596,63583,29219,34269,41733,45488],636250702225085493086033420],[[49379,61294,62614,63168,63188,63582,29131,32779,33177,46385],654571960112338642445799535],[[57129,57422,62669,12535,12686,32627,34162,37292,38961,66469],636250701656641836100267567],[[57164,61297,62615,63043,63194,3267,27601,9141,65058,19508],636250693417110183336930399],[[58927,60479,60655,12040,12689,32770,19540,248,70769,40081],625992352109139352298395848],[[60509,61167,61182,12681,27688,34172,37318,40053,42234,16768],626889308218902179795005817],[[61302,62584,63497,63574,15683,19630,29153,61494,66496,74436],629493327484122873522380274],[[62587,62602,63002,63087,12671,27339,34270,45508,38154,19460],626889298961092169648458095],[[62603,62604,63011,63535,63550,27338,31210,34265,37434,64057],645476336482218799622868921],[[62609,62618,63174,63549,27561,33672,37538,19517,50004,69965],632787084706615976219601525],[[62617,62670,63500,63559,12328,19351,26678,43468,49510,52375],626889299959679475771365331],[[62623,62680,63552,12056,30273,33217,37439,17824,66825,68158],629493338000768232102876132],[[62993,63199,5387,12673,27511,34267,19448,16320,14633,73053],623373696545933993908644971],[[63019,63234,63562,12484,26752,34271,46124,50156,14793,65354],617385977858307752625897761],[[63257,63554,12060,19321,26556,27381,44996,37543,68705,69177],636250701656470873213045647],[[63533,63534,63568,28446,32666,32773,9140,60849,69142,51563],626889309969007858840718234],[[63537,63542,63572,26753,27391,30339,40413,26912,29650,65810],620029931868158434861264622],[[63547,63548,63569,19306,31033,32751,50197,28602,71896,68752],617385979023525930598850905],[[63551,63553,11745,26676,30340,34158,42938,65778,58649,66356],617385978699343635486953139],[[63555,12500,13916,26688,31181,34170,1146,67814,24022,38425],623373688876018254618914948],[[63557,16288,29222,33528,34165,45000,46971,64275,19617,38811],617385971017246683459746918],[[63558,26690,27708,31180,61303,10799,59759,38452,68458,20519],613815951344610233080903131],[[63560,12131,23863,27659,29103,33280,34266,54462,68212,17147],629493337062015809207276253],[[63561,12130,27775,28450,34159,46482,61178,14177,46999,21228],629493333030933771399575793],[[63565,12574,29130,29717,34163,61270,25226,7701,11624,60890],617385979649720497886136413],[[63566,12575,26835,31238,45022,37429,32477,56497,21719,48247],617385977653399802870637966],[[63567,22715,31044,34166,59505,7419,30083,43016,13893,7921],613815931401518198638478322],[[63570,29102,31187,34168,41121,1928,22695,22842,66074,61016],613815928695001774988790969],[[63571,26755,29716,34264,10795,61886,32039,60019,2072,71819],606808806686045740548418686],[[63573,29299,29517,31182,49202,61284,14837,43027,46604,3674],617385974315000097169520010],[[63575,29522,31190,31269,9827,14433,66497,28353,17151,52025],613815942537997652924847455],[[63576,12577,32709,45282,48030,51230,28880,25940,66460,40051],623373700654968739976794307],[[63578,27914,32708,33544,45278,61299,59316,52048,42815,40074],620029932962823427107326148],[[63579,22528,31230,32622,33548,33637,46365,53146,60950,24124],626889302678289579880282221],[[63580,31229,32714,34173,39467,61168,50732,66461,51558,22149],620029923902189191352234077],[[63581,27895,32631,32710,45283,47293,1645,7696,14491,48524],623373678674654981760770281],[[31231,32749,33740,46370,46483,19491,59272,18455,1977,31313],616475195104405314920834239],[[32711,32846,33728,47295,51231,59496,61282,6323,48662,64314],626889312275468909834532077],[[32748,33563,34230,59440,7428,30068,48340,67855,68732,36226],604106996291997785670539378],[[33131,34169,45049,46484,60626,14488,23396,65766,30962,43506],613815950480286049190228694],[[33611,34225,45363,46359,58989,37284,33301,29577,69151,19684],617385989814221093522447807],[[34167,39169,45279,46481,30920,81,35981,7680,51541,21202],606808801854720433292184776],[[34231,38830,45520,46289,59419,270,7242,28299,24015,66983],610419817938250018738514258],[[41122,45365,45391,60656,23964,25245,14808,43475,17738,22989],604106997866465326714020000],[[41123,46356,46390,48067,10788,1357,54534,7324,22446,11049],612899860500889575896904718],[[41124,46287,46548,48152,7662,51923,30014,68090,64497,58667],604107006204987926571854663],[[45475,46480,47292,32146,7420,18054,28322,41870,13708,27765],603176154891286246605913999],[[46485,59009,59038,14399,14968,7675,66468,41748,22885,66076],594239435705744225091628478],[[46487,46666,58888,61158,14138,52355,60033,46035,64047,67454],600655988485789308713678333],[[51237,58988,60460,10801,346,50157,43699,51530,52884,40361],600458006602434385756436313],[[59061,59063,59499,1362,24656,42957,66686,2041,72413,20731],596985912399070543904428834],[[59418,59501,61183,37224,349,267,26921,60632,19354,27123],606808797396117853346221345],[[59439,59502,18454,1601,24710,32473,24036,48665,66500,6369],593293129576894871574255663],[[59500,61296,348,16988,11140,60812,7255,26119,65781,19550],575652830235005979662688583],[[59504,23981,1609,150,17005,10317,50384,28328,21180,70002],583242641618916014357712943],[[59506,14484,1935,145,42914,60657,65814,13696,66603,42627],583242635597574575673153911],[[59507,37283,28899,40814,55546,10321,56792,70001,67449,71784],586998667419884352159640182],[[4539,4592,5048,5098,8451,4482,14411,8338,21610,6402],542415268685227777813137906],[[4597,4761,5046,36816,21746,15916,7397,32430,12189,15325],575828392075754992234606294],[[4760,5049,5096,36862,22392,8344,15114,18461,28298,50295],597926374415421553369990775],[[4762,36781,36815,36844,29658,15621,23111,11455,3663,41652],557914206197479685185946574],[[4763,5047,5102,36850,21187,15080,32144,26105,1020,50582],597926355079540074085716492],[[5104,36773,36846,36852,1142,8314,20536,8562,18706,5435],593276027121565994550740858],[[36769,36814,36909,36972,19867,4240,4922,17980,2934,19043],597926371086888480637764796],[[36817,36845,36906,7744,14987,11807,15361,1179,21433,22171],594239415927509629742318452],[[36847,36907,36921,347,25520,11276,584,22887,40359,68329],596985887329491728354811241],[[36864,36905,36978,14334,21750,22668,21161,23100,39545,4416],587955075312577053904957984],[[36904,36913,7429,25576,21170,11833,12231,15380,44025,49632],586998634017540385072378412],[[36925,36975,10860,14891,1200,12246,32142,22136,21294,4440],580635931698870321114364754],[[36974,1183,20938,11147,2423,14422,15890,6700,42610,5411],568175220432093125323646362],[[36976,1642,14330,9237,9455,18469,15892,66382,64822,39140],573995639792226441008373402],[[37542,30892,108,33363,11121,66830,68704,72412,70095,3714],576838509137619222251130234],[[37545,32122,7772,30770,36344,18282,31853,48503,11697,40346],580431128948565646567540933],[[198,61816,6328,29984,35336,68737,1732,58851,7063,69859],562814591156886654253965939],[[231,53201,9445,29546,28835,47006,68733,24500,60486,64839],559900553511188014750717723],[[42867,22672,35328,46658,42231,1578,1214,27185,6671,67586],556971207926181240755334934],[[44338,30956,9216,50390,68492,70535,13312,14496,7906,16615],556971217104708000002326494],[[55861,32152,56489,49921,65804,68736,43482,53153,42770,66022],556971236320762978363980864],[[55874,35470,7234,46987,53635,68066,59786,64813,6580,72526],556971229399285923244158044],[[33292,35497,30971,46642,61782,60065,68214,69170,41892,56689],556971251992674128106486789],[[36356,7760,33354,2416,69149,2504,7693,7068,19555,33675],556971218538991014921831331],[[4239,4925,11077,11291,32128,736,1481,32948,38432,43722],556971206184638519413679889],[[8320,15075,46685,38974,49918,12244,42844,33004,4823,56892],556971207989239010910774497],[[8447,45912,11816,65798,68163,69801,2122,42608,70704,1542],556971219697480166050791201],[[24031,60642,29529,64287,66501,12256,24430,61670,42478,19389],556971228418795369560123283],[[30976,59731,60053,1962,24457,15924,20537,50795,16827,53379],556971212861949069865557504],[[45916,60624,7706,11947,65772,69833,12234,46006,2717,70728],556971228854871746454712332],[[29664,38453,40058,70648,68228,45018,45988,2514,6393,67251],556971232349808448960090950],[[42807,50387,64517,68764,48696,22686,65493,41514,63449,1634],556971219159288790104107780],[[52302,62348,52115,67852,14632,60921,38164,20262,43361,72153],556971220106057330891560885],[[62355,50397,64922,69179,19685,15900,14875,27248,25730,60466],556971207628837652641921773],[[52090,64302,69186,70687,12254,24441,13212,60827,72830,5417],556971221183343303460020456],[[64905,65080,67817,38429,26887,20517,67137,21849,65375,54644],556971213108858634082361755],[[66681,68230,69158,68662,22436,7265,41543,71817,38443,2926],556971237793992292706859601],[[69982,14642,65046,30965,49430,64512,737,59561,33026,32545],556971207658367350184261624],[[70542,70641,66624,26874,24450,6666,41498,16634,11884,66826],556971213551253509042773533],[[70684,38422,65073,1201,2125,28329,33326,62347,53263,1619],556971228874182361645476115],[[70766,68451,16326,43492,64499,71892,20778,27358,14473,70851],556971208728317974241509796],[[14643,48677,14320,24468,60930,62375,31525,67653,42629,51313],556971192680179932697910261],[[66323,69810,12222,14291,3385,38436,24831,70018,64595,42611],556971197484253976984676689],[[66328,69780,19369,28352,39359,20539,28620,53296,6353,66017],556971215426516018285504362],[[66665,1730,18277,17008,67392,31400,14707,22809,12827,55890],556971200190216498527356872],[[68485,68668,44340,51536,53688,64026,20295,51968,17099,66063],556971208217569781803042089],[[22657,27721,49424,51569,19597,59121,27097,2788,26309,2943],556971205859094961989837377],[[24025,27522,27780,43487,56679,14815,56544,66412,69098,68225],556971196834684000240755763],[[32080,43499,49468,1974,2478,72409,11048,53027,22846,67459],556971211244958312629809710],[[32084,48033,2469,19595,13374,54873,70082,64537,74605,66241],556971190172940854108489912],[[33322,43511,7685,24503,64820,67431,32918,18639,3953,69038],556971208871271921219074973],[[43967,50196,2056,67132,682,31712,3763,39679,38896,68515],556971191025263594814403733],[[44324,48070,15914,19829,60079,11973,21556,43041,66069,65247],556971194856116822117351597],[[2078,20538,41755,46050,40080,65461,24014,36258,66073,45180],556971202615196028987376202],[[3378,15925,43695,65482,13723,24912,27114,21363,66386,34221],556971188457888041800424332],[[7690,18945,19471,59781,22813,60687,21868,16826,10686,66008],556971188112127328900214609],[[15599,19863,24453,71786,72754,585,62359,16629,41967,14652],556971211272340541563567757],[[16993,18975,43698,46034,72732,6406,66994,19070,69573,38587],556971195486989389040536291],[[19414,56787,65456,72441,53314,60871,49549,2937,1181,49107],556971197087262937964656917],[[20518,45045,46007,60456,71908,72740,20288,66051,68839,54611],556971205755765678755587038],[[53209,53630,64846,72728,27090,1968,13707,38852,66402,67611],556971194351419421790104412],[[56798,58897,40056,72026,13213,30981,4083,39685,33727,26123],556971195664425827298656585],[[60944,38458,39882,64483,58483,2916,41964,7412,66050,70657],556971196213034033291567018],[[60959,39883,64036,67156,14977,18439,62298,64940,18645,60470],556971179842389921568014550],[[61663,58470,59111,72078,72115,17730,20501,52470,65030,51301],556971194645017267116229629],[[38459,64480,67186,72750,73470,71904,20484,2716,19250,50244],556971197061709113791738043],[[41528,59108,64430,72408,62346,42931,43392,65054,64904,72300],556971186187442382185299141],[[58473,65487,67157,73650,64496,12652,24095,66685,74541,66061],556971185428127578796507295],[[60090,64417,65462,72440,73707,55770,51757,66071,66736,43011],556971181064439343225583588],[[64515,65467,67162,73031,41451,14961,3003,68190,64844,73614],556971183276788410283262617],[[67163,67568,72737,20321,66028,42081,43012,55330,72337,72833],556971175316981147387659740],[[67184,72006,72759,73135,44170,25271,32863,68872,66397,66667],556971179635231105281034895],[[67185,72762,58495,14924,66980,49554,4007,19089,68852,66353],556971173276930134425920912],[[67187,73147,11990,15342,68851,14548,73260,19394,72862,73972],556971172133913368158161656],[[72071,72135,73017,51326,13680,66360,14454,52509,12062,66844],556971174617689892233960848],[[72380,73389,72108,72289,52055,49575,48196,66812,26312,72310],556971177951087757370793470],[[73396,72130,72295,41419,24847,44165,64596,65083,48360,74143],556971177156216634542111947],[[73653,73704,73038,54882,66997,3751,4010,7413,66799,68083],556971175490623339948599322],[[13288,571,2617,18555,1211,31335,4485,69047,7414,38564],556971169179204712537803568],[[13368,3562,42899,28985,1702,16872,65084,68849,25657,40767],556971162150806059536356903],[[32963,3741,42744,41448,49562,6297,59557,3727,2327,74465],556971173261135514150496915],[[304,3758,18640,19465,34219,1168,20758,50720,33196,6117],556971154468776838253847498],[[305,570,13679,31856,1478,31494,6648,26287,27141,41760],556971172032786940569196424],[[2510,18466,53353,52998,49588,4471,70778,70844,1546,68534],556971167918611381207522098],[[2628,18460,52334,13724,19638,4468,16295,8896,67294,18568],556971166258455478047924109],[[6637,30980,41513,42947,11879,6207,7396,68489,70493,47124],556971171459312421085492134],[[32130,46171,26266,29002,41920,13852,5286,48356,50950,70867],556971159583759071693578769],[[46151,51943,53319,69089,41923,6530,8563,70014,75139,45736],556971156096072898635397458],[[56788,51345,22875,24909,15557,3938,36659,66403,28050,42626],556971156623371868896240952],[[56799,55895,53258,62399,21581,28406,68848,11693,66893,68595],556971156541170312248632218],[[55911,13695,69052,27245,25972,34202,20809,50799,68240,74607],556971150031111763566018419],[[18544,42488,49558,14675,20842,19503,1165,64530,12166,34210],556971151507944602254785612],[[26265,2249,41982,56158,32939,22190,52592,7993,66002,19648],556971148888289077779919058],[[31737,53298,66387,43409,1705,30708,32549,69070,18702,26736],556971150013368022502250855],[[4449,14694,68879,39677,16742,27167,29257,69046,52675,66798],556971146429162698300411487],[[23012,53351,41980,57372,20831,1623,66029,68831,52670,49590],556971148717179545414436052],[[46607,70080,18432,57389,3669,56014,10674,40357,69080,66473],556971145415076548079101155],[[56563,60708,70097,14500,67279,23569,28023,46195,42576,44176],556971146405984124405821734],[[33521,56193,6591,30744,3367,7559,52105,69053,3746,42628],556971140844162077839392040],[[50035,15540,12655,16847,23558,68296,69036,38129,55326,62892],556971140567212237084391587],[[52390,6194,67639,48280,38994,68875,69092,48499,74970,40492],556971138581197905560045904],[[62321,2650,67644,16749,3013,23265,36669,68832,51357,40363],556971140312173316732549566],[[63460,6280,27367,44629,65101,65175,61106,12159,68527,42578],556971138476643347599043896],[[25938,59578,26311,44683,40918,68826,62483,27777,69485,74342],556971137742060457271128177],[[27082,59569,6549,44686,70019,70776,13597,65040,47612,52905],556971137485964207858445266],[[39684,19532,13872,44608,36648,48679,69042,66355,43815,11655],556971134840987126782134100],[[67658,22213,25719,34464,48379,66879,70561,68446,51215,68201],556971135507504045474108726],[[72312,26307,16861,48163,16300,68462,70850,62498,43010,44299],556971135961540656022906734],[[72331,32576,26286,40931,69071,56893,66004,54629,64883,74680],556971134971378972199682411],[[72857,34218,13817,50802,52094,69716,40344,66797,40914,14782],556971134908008529635264180],[[73241,32600,19116,17102,50817,65168,66415,69088,70008,74285],556971135623865397649831874],[[73245,26314,52593,48698,64933,66414,12808,2953,24832,51354],556971135367902152028564276],[[73256,34203,38874,56015,33696,64729,61110,65082,68985,58647],556971134056208498449800902],[[23260,4826,10415,50798,64710,13619,66854,65240,69463,69612],556971130461273962089607584],[[27824,36658,5272,66067,68836,38043,66340,75138,64888,43833],556971130437342914188452925],[[29200,3371,7534,40934,66077,29753,66598,74989,68372,41264],556971130795263835691156971],[[32548,5457,43356,50816,66075,69093,12086,66855,68522,51295],556971131159054169357994720],[[32552,8558,8883,43031,66627,69743,45197,70125,44178,42524],556971130539521232079805212],[[34444,8567,10045,66706,68480,66040,66352,1023,70705,16535],556971130301704435556009159],[[5431,10067,38987,40935,52128,29190,69048,68897,50797,50270],556971130407443883215022024],[[10406,43046,66056,66384,69981,12163,69063,74439,16230,51091],556971127736844618678101867],[[10418,40936,52112,66055,66929,7978,74329,54596,68208,64559],556971130430544271744960321],[[10427,66057,66380,66409,70508,70563,11647,65027,68856,66303],556971130910800500671959707],[[40937,51760,65106,66054,70025,70845,66003,52014,67282,43820],556971130360275843910166271],[[66354,66829,69043,69900,2318,29765,74454,74700,4470,69480],556971131023782781084469321],[[66361,66668,66869,68432,62495,38042,27836,21174,70626,16678],556971129927080454530354071],[[66408,66878,69039,69885,70788,46851,66399,66904,67093,70633],556971130329837676388963195],[[66413,68876,69037,70024,61103,62486,74703,38172,24774,14624],556971127077573903727333775],[[66682,66868,70567,16353,60182,49047,69075,70011,68613,67234],556971130442836061414352504],[[66911,68224,68828,70654,47230,68490,75162,52364,65363,50839],556971130363407975749932624],[[68107,68834,21424,33748,41347,45535,38430,66318,69443,50800],556971130366120518151635492],[[68285,69045,18699,58552,29402,50942,68893,54612,67664,20496],556971130009527683636321844],[[68407,68838,69044,32425,46881,52095,69094,69978,74504,51359],556971130025548990756296910],[[68855,69800,70660,32436,29756,74622,6639,39675,67725,45253],556971128872513291233280543],[[69782,69992,11635,32431,45547,42723,40508,55280,66286,38772],556971129975250024670732981],[[69812,16358,26750,29744,40356,68842,75108,49569,65243,68962],556971130277933888174907361],[[69834,70651,27764,48680,65120,66841,68364,70363,74604,2274],556971129568065525112255023],[[70559,27823,47145,3437,64565,69059,74464,68994,65324,65331],556971129994584596497186456],[[70569,47231,60131,49088,64560,74455,51214,69107,21215,52861],556971129703465893989706748],[[70570,47241,61055,56886,50951,66840,69079,67060,38045,65344],556971130254073500139429294],[[70780,58603,29369,40345,43029,66845,66306,70374,69596,27882],556971127885975494816207404],[[70784,47220,53467,66338,70036,70048,71583,65063,70292,41066],556971129621111020718529125],[[70790,61099,53503,38423,66697,74437,53372,69440,74486,51404],556971129845172549267040862],[[38141,40360,65052,68250,74697,45734,14967,55297,67064,41941],556971129163895666478379255],[[11188,42726,50940,65117,66400,74994,43030,54628,65239,66262],556971129870667255849066624],[[41332,56899,48699,66666,68895,66617,68896,41535,55295,38184],556971129326140713688543940],[[60496,50944,66005,66341,74563,51216,66383,68721,72097,24792],556971129485715019191391515],[[50941,51894,52113,66339,70037,19288,66357,69076,68211,28135],556971129464806080659897500],[[50943,51895,64597,66398,69846,26313,67061,68094,69002,41466],556971127969029176000171412],[[50945,66065,66378,66625,75168,1521,71604,22143,59956,72827],556971129725080266377912180],[[64614,66064,69813,16212,5443,66396,67722,68576,64890,13961],556971129279901008698400897],[[64615,66062,66696,74438,75133,2634,64644,65020,64886,53858],556971129352809955992792253],[[66401,68447,69101,74992,3318,52114,72527,68577,65347,71942],556971129434124370925138189],[[68253,68463,68877,69099,74608,73488,57062,69191,1492,41933],556971129063712956215769914],[[68328,68840,69765,74954,74988,53367,68516,70216,20508,22454],556971129410366431358975969],[[68334,68841,68873,74427,67684,68356,68900,73561,49578,42865],556971129231169222681821538],[[68335,68843,68892,74991,20813,70043,54642,65817,67290,60085],556971129154327996836120715],[[68853,69049,74995,75163,3306,68351,51355,66313,64878,74675],556971129391796014698298735],[[68894,69100,74609,34211,3766,67537,68491,50314,38445,62059],556971129040985117642673818],[[69783,70030,74425,74540,1517,66033,66385,70042,68597,68987],556971129525584748412333749],[[69843,70031,74426,74619,26316,4479,66052,68989,69460,40577],556971129660832142694102209],[[74277,74562,74621,74975,4474,64544,68521,72577,66320,7056],556971129456154417756551958],[[74286,74424,74623,32916,64551,66032,31806,51356,53217,7053],556971129102562695849363259],[[74332,74706,75131,2643,64645,65114,66394,71581,18648,65387],556971129210062842211267642],[[74958,74993,75040,75100,68357,69055,41762,66095,69579,40364],556971129191376830243556553],[[74990,75047,75130,4483,38174,66006,68890,70005,57290,65199],556971129234628852855345384],[[75037,75050,34200,7395,68850,70221,65241,69459,69797,25721],547993852092540479017249485],[[75103,75136,16862,66342,71559,71576,72549,65245,66099,74610],556971128898799476415371077],[[75111,75137,7404,65034,70234,41768,49582,74505,67096,6095],556971128370719545312058319],[[75132,20766,7405,38424,39673,68888,71380,71582,48383,52906],556971128899723142785644516],[[75169,40493,66010,70279,14988,41963,67394,67072,25653,51335],556971128047344885941042073],[[32978,38431,40504,66395,41956,55281,64894,66117,48381,58485],556971127882766828548571863],[[40505,41556,42820,65111,66857,39006,44296,65360,73910,42937],556971127891228548521521895],[[40506,41553,59558,66018,66834,49591,53706,65025,68948,70395],556971127914497135984848025],[[40507,42826,64662,66012,47615,55299,66311,21141,42585,16622],556971127454846432064945881],[[40509,46190,52096,68244,68891,71025,55328,41981,39072,650],556971124594157673663086647],[[48681,51212,52360,69060,71018,70293,40343,67587,44301,52892],556971127821798217662006220],[[48700,49101,60887,65053,73485,66238,67740,70174,67298,65383],556971127678089102957611865],[[51213,66036,66344,66359,66856,41976,66310,67781,25628,70311],556971126186749881578315734],[[51217,66023,66346,66381,66867,41977,44418,66308,64941,16061],556971127588388567807952531],[[51220,59562,64663,66058,69851,15373,62894,68366,70377,42275],556971127940360569924932019],[[51221,66060,66690,68350,72494,31803,44297,15379,24776,20458],556971127497174788438988463],[[66041,66626,66775,68878,70266,71578,57291,67464,67679,74618],556971128027553246405302292],[[66059,66691,66866,44298,55296,60076,39097,72037,72843,53087],556971126889272564373747109],[[66348,66379,66835,71550,73475,41550,51916,65091,28935,64527],556971125882424760925521107],[[66604,66788,67693,68247,73479,15374,66121,50256,22120,649],556971125781729470753050323],[[66908,67547,69095,72262,43715,66118,41265,74543,69610,14609],556971126076667251834563431],[[68464,68874,68901,73412,73477,42869,66092,69005,70783,25656],556971127892713687528620490],[[68530,68857,69054,69814,71556,66259,68209,67601,42579,40973],556971126098168299172245337],[[68854,69064,69106,71269,50252,52904,53699,41532,70566,43846],556971125866788436611046888],[[68880,69091,69784,71144,52093,54643,66309,70155,14321,56542],556971127219951643048225339],[[68881,69090,69837,71273,71356,71610,55313,51924,45543,53776],556971125814917086060612768],[[68889,69096,69103,22164,50316,69477,38044,74341,41541,69666],556971126074744595590448266],[[69097,69102,71268,71350,44137,69462,69998,38179,50318,19610],556971125515635787649322790],[[69840,70049,71605,44122,54647,65206,70375,67272,44757,30428],547993853544220350222821611],[[70105,71140,71553,73487,39007,67089,70398,70403,38248,49803],529138163749441911648219855],[[70113,71145,72499,73413,51435,65024,66094,67479,65365,58497],556971127635760746597318301],[[70132,71058,71611,72498,42910,64921,66114,68461,70233,67343],556971127942896533734615049],[[71069,71141,71579,52118,55329,65242,66119,74624,19537,19862],556971127153057275918309595],[[71272,71577,72038,73570,44149,52907,63100,65813,67083,41505],545204593808248783014653630],[[71374,72253,73431,65022,67400,67720,69464,20494,21122,67972],556971125728337716808305387],[[71580,73430,44179,51438,65023,66120,69572,67248,53318,22949],556971126003933842313590602],[[72018,72522,73478,43021,52985,66098,67770,70393,74096,41876],556971125895187834465224519],[[72495,72523,73567,26097,66316,13954,20258,44226,73719,25143],545204594244113242975559434],[[72553,72573,44415,54615,69189,69483,67283,19898,44150,57294],556971125334037356758242937],[[73489,73564,44119,47613,55294,66097,66674,68645,70412,22548],556971127509050381130178848],[[43038,47614,52982,54614,66265,67082,67739,71917,73875,70565],556971127701370215233438885],[[44177,50315,53219,66268,40342,65388,66287,45695,22612,2805],547993857657542313043459979],[[50317,51340,55312,65015,66472,67535,70627,42680,44172,458],556971123966432081044990712],[[53365,54597,63267,66113,66244,68720,64564,72826,59508,1684],556971121100229560241968778],[[54610,62893,67058,67084,69000,69466,60091,72863,67257,44765],556971125695823693901317327],[[54613,63097,63270,67738,68583,70402,68598,67370,68503,55826],556971122633592593782757461],[[54645,64827,65236,67554,68753,69163,69467,64934,69600,14895],556971127633425023358046023],[[54646,62895,64853,65233,68070,69484,67572,40800,73066,53870],556971125414717517268037846],[[55298,65244,66632,66818,67065,67229,67573,40941,68955,5493],556971125648342988998693513],[[55327,65253,66464,67440,68365,67276,67577,44232,63258,69033],547993846242371784536183334],[[55331,66247,66321,67085,67771,69465,65386,70153,26633,73476],556971127372450979486379728],[[65238,66091,67059,67741,69010,74276,74625,21275,72831,24940],556971127021776400251519033],[[65785,66096,67731,68367,70401,70414,58343,1831,12708,22951],556971125020691860630221708],[[66116,66319,67736,69161,40347,67280,69602,44260,14888,16971],556971125229557038823870853],[[66465,67724,68369,70298,70376,67292,68106,72174,12532,12585],556971126694370408310169497],[[67088,68210,68652,69003,70415,64604,50243,70789,16709,12208],556971127235103561834929474],[[67715,67780,68607,68986,59953,67252,72860,73539,1868,68552],556971125574670369085272335],[[67723,68495,68580,68617,69446,40362,67291,67599,53183,52099],556971125599236379889694279],[[68574,69481,69578,70207,64759,44430,67284,50714,59352,31706],556971126951048646042455117],[[68984,69001,70405,58337,59170,68207,70344,63042,67259,63242],511911353344843306670415085],[[69449,69478,70413,40365,41530,49561,68196,69592,44265,48921],556971127467215788597071558],[[69482,69830,70186,70224,65326,50814,69594,52847,52888,40510],556971127255373766111361143],[[70164,70387,70404,72845,40940,41764,25639,44344,73170,42395],556971126881618315065739468],[[70299,70369,70399,58496,59169,72308,67477,18550,18909,27813],547993860573251362057098854],[[70400,70407,70420,65327,65384,74674,50818,69590,69613,73484],556971127297455524064135818],[[70410,70417,41539,71921,74340,52132,64862,52923,64806,21102],556971126901916624551774950],[[38438,59168,64842,67576,72303,67600,15010,51316,65339,19309],547993860853227320324959573],[[58484,59171,64758,67230,73154,41983,64824,67274,60500,57301],556971125405012276577240832],[[59176,65325,67338,72326,65349,67396,41385,60100,23719,20260],547993841390434137796470428],[[59177,65385,72112,73159,73995,68675,14540,16708,48706,1864],556971127045625739456436526],[[59178,64594,67228,67293,73039,44427,20471,48707,50644,7293],556971125413834668044490909],[[59179,64605,67458,72825,70349,70367,20510,38790,50586,21654],556971127022544867725228522],[[67231,72100,72824,74050,40915,67281,39474,44157,950,31469],547993857413551138024613974],[[67433,71930,72301,72338,74055,67677,40807,41138,65338,54150],547993846248171507119298516],[[71931,72136,72836,73870,49577,14524,16707,40810,44154,52900],556971127305086539275859556],[[71943,72156,72336,73998,40938,15027,17074,24224,51405,11114],554174311212141536193730168],[[72302,72328,73151,74065,74091,69993,39472,40770,44133,40647],556971124328169925759365305],[[72339,73057,73911,74146,16640,19625,24226,25641,50710,12583],556971126978977970742151998],[[72848,73018,73165,73975,74606,70568,16706,19604,26876,50648],556971127349950859473666290],[[72861,73060,73164,74620,66811,13780,15191,17071,33185,50642],556971127305086539275859556],[[73001,73973,74140,40939,43048,16641,25640,50608,73662,20211],547993850036968008073371011],[[73004,73912,73974,74611,70573,16504,16643,72150,73148,44762],556971124939887354206908374],[[73158,73901,73913,74137,14348,21192,39471,44229,16967,31397],556971121896683541764267511],[[73904,74090,74542,39004,67256,30580,44049,48875,65381,4328],556971126763055962577439380],[[73985,74060,74093,70136,19916,39468,39473,40772,73030,4327],556971126741272514076178345],[[73988,74095,74484,49557,64707,20511,24764,72874,73125,6090],556971126548431377571125748],[[74092,74317,74485,74565,52108,64867,16605,20509,21128,50604],556971127326869987755069513],[[74094,74312,74487,38440,65352,67444,72865,44230,53739,49884],545204584920088864595565979],[[74097,74494,64706,65362,66897,68082,39460,24953,14440,10831],536030299886636247845064775],[[74343,74495,40921,48703,65378,66579,14777,39220,22363,53279],556971125260937804969990713],[[74564,40920,48684,65376,66289,24789,42274,50257,67450,67589],556971126806594754380661555],[[74681,41974,50801,64529,68618,22735,25625,52044,72871,51348],556971126716894219090647530],[[38447,39002,50796,65371,67285,19647,43814,49161,65334,73019],556971126783513882639548112],[[41972,50238,53362,65379,70242,24227,39475,72197,1589,17719],556971123422359301110836531],[[43053,48358,50819,65262,67558,33188,53085,19514,2608,66278],547993844295759483634638752],[[53214,53373,64718,67445,1497,24761,44318,73415,2262,23771],556971126367704778454206721],[[53220,64536,65346,67069,70511,22721,50192,4432,26253,49464],556971123332658765275789346],[[64719,65259,65370,66580,67695,70713,16642,41563,18825,53587],556971124779480602214647672],[[65353,65392,67250,67295,68287,70494,70560,51872,67395,73171],556971126827080779637914053],[[65377,66288,67278,68286,70785,15378,25666,12593,22129,42593],556971126299787691612888915],[[65389,67462,69966,70787,19656,30582,42580,41560,16668,61196],556971126367704778454206721],[[65393,66578,67254,69598,70777,50649,50838,7157,46143,14611],556971124667996618015817691],[[66581,67435,67610,68592,24802,41639,65380,16606,18547,30635],556971126063379657900284581],[[67299,67559,68958,70277,70632,51297,51377,65355,62382,46053],545204586579895613142103059],[[67662,68241,68674,68942,70510,25668,67564,49463,18406,14735],547993849418196751264738658],[[67682,68309,68626,68946,68961,70162,49114,67240,73481,66217],556971125121116970423649840],[[68308,68604,68940,68960,69599,70721,51294,2282,26210,22716],556971124900781199338535083],[[68678,68949,69605,70564,19215,25669,64550,16669,61249,59563],556971124945164756421841042],[[68679,68944,69611,19212,22172,40773,44126,53715,67765,18940],545204592592519985512151790],[[68950,69604,70179,70243,42467,49656,50193,50284,50319,30813],556971123006550194416211233],[[68951,69606,70184,70228,70371,70558,26883,41648,42258,38405],556971125550366141453582644],[[68954,70121,70172,24793,30583,51840,64643,67253,31572,334],556971123164167822476794253],[[68959,70192,70572,14562,20256,25624,67244,67273,73545,31462],547993860233230328432821687],[[68963,70238,70345,70779,70870,41245,65336,67242,37983,69829],547993845740460152239299879],[[69608,70206,70249,15381,41447,40513,73432,30636,48439,50474],556971121688725855457880776],[[70215,70729,15178,22456,24765,53257,60207,64875,1712,56541],556971126109513296244460507],[[70248,70876,24225,24775,33329,50516,53714,43635,62384,22965],556971124602812449949673649],[[70268,70495,20259,21125,42259,44127,44147,52909,67453,53321],556971125217342797711236425],[[70348,70391,13764,24803,40555,40809,50158,72330,59075,3301],547993857280651669211072253],[[70781,14933,19908,25638,39161,53070,67536,72842,16972,6162],556971121488809837339530810],[[70791,70873,22170,30581,38831,42603,50712,41531,37952,27754],547993858893995183875197192],[[14342,22173,24760,40802,41045,42958,44227,50070,28941,31895],556971126495195569491732786],[[14553,22337,22906,24804,26632,40775,49633,28542,52893,48448],556971124770080507881181859],[[22338,22899,25629,40763,41686,50548,59364,72867,44187,50352],556971123348490580713049998],[[24788,38766,40765,41132,42539,58677,15115,16454,44181,14517],556971124251659800191052735],[[24805,33317,39037,40806,41421,52961,64443,26353,31278,464],556971119999353038090200220],[[25652,39218,40812,44247,44304,52844,64801,73716,2263,42413],545204593158162426585555477],[[25667,39042,39469,40553,44028,50845,14443,15771,52622,16630],545204584238586806620386926],[[39219,39470,40575,41223,50708,41388,2264,20479,60877,20225],547993848982059524222487328],[[39221,39457,41071,41718,42616,43821,50717,67546,73486,2284],556971126370271519742485334],[[39539,41129,42619,44228,48708,73661,16331,30436,30637,15060],556971124040295845262466813],[[40769,41135,42592,49138,50258,50267,64652,547,44653,64901],538867026720994867831129865],[[40804,44124,44140,48709,50292,64448,73666,4326,12209,56562],556971125761621278471164840],[[42464,42706,48147,49247,50718,64823,67277,20240,22844,53777],556971122930240130904522186],[[42581,42912,48423,48522,49113,67567,73474,5808,22131,7275],556971124129830203297395810],[[44082,44242,48231,48525,51332,67275,73722,14801,64175,26869],556971122750141134708946736],[[44125,48523,49127,49193,50651,65335,67495,17014,22681,70314],556971124643406376386889685],[[48412,49115,50066,51296,52846,41540,72348,22124,19631,14056],556971121374231404049005259],[[48878,49112,49657,50844,55914,15350,20505,22118,43826,70308],556971124202364964863279743],[[49128,49237,50518,52008,38439,40494,67588,1586,17139,20278],556971124135876486218878203],[[49136,50546,50652,51362,53724,40511,26884,39165,19234,1162],547993856497376370745162075],[[50259,50646,52845,52914,67255,5984,44403,68641,38563,59670],545204587979469610746187390],[[50654,52858,53113,60202,64868,72311,2285,2488,26227,28138],556971125242671572076604686],[[50715,51319,53725,58659,67598,72137,1225,51378,53726,32686],556971123611046673068745807],[[51962,53182,40512,64843,67245,73713,2265,60721,48676,42534],547993852719012761768225779],[[52862,54871,38446,72858,72868,4435,41719,69677,61339,25786],545204586922067302969672486],[[52875,40491,65337,67482,19701,22157,58639,67761,19486,546],556971117570012359909524376],[[53227,54886,64543,67243,72859,4437,16420,18565,41687,65089],556971123820131547170831942],[[53245,60077,67232,72873,3380,18549,42784,51252,27454,12901],538867049969412607386455997],[[59350,60092,67348,71914,23768,42597,69674,53771,33765,18279],541780129206667941530757764],[[59353,65382,72309,12206,14829,32677,42754,30745,16828,32842],526696212617161025295038803],[[59361,71902,72329,73544,4329,21075,44234,67763,26338,53748],547993843511293312606658721],[[59365,65330,72340,73134,18325,44785,13733,15580,61396,42224],536030296634531896533804198],[[65374,71974,72017,1835,16687,22156,22772,42866,52126,48283],545204590313524372750690478],[[67238,71989,73183,73538,24925,33330,61231,42051,62765,42790],545204585413746906731510307],[[67249,72113,72345,73093,73143,18566,18915,24923,56518,53344],556971123097977074857764901],[[67434,72349,73176,1707,16599,22438,26252,44113,46165,50271],556971124329696208071864138],[[72127,72353,72856,4425,14563,16686,21154,31734,41455,43746],556971121497786048654024485],[[72313,72341,72869,1223,2470,4411,16650,24319,32676,51422],556971124329696208071864138],[[72327,72352,73631,18842,20507,28277,70305,13476,13102,50298],547993840267857114813735884],[[72346,73660,2477,7160,19890,20497,22466,44083,62544,30347],556971121272866735072800788],[[72875,73668,2485,14290,18837,20504,22791,28280,67759,10857],547993841242174305664186727],[[73040,73198,4426,5986,14554,16480,43832,28267,47665,19502],547993841495203205053091967],[[73054,73177,2269,3387,21196,26893,66210,1253,386,52600],547993841483646941506717493],[[73490,2283,5819,11643,14952,16644,62550,63265,13763,7955],553619450372391592891961719],[[73669,11996,12207,12592,14310,15067,15349,56558,14737,11469],541780131746952422541503993],[[4408,5776,5985,12582,12591,15104,15348,16626,43827,69828],556971122942379695462387592],[[4413,7252,12584,15079,21119,23790,31900,690,12439,28466],536030294990909019498387901],[[5788,5987,12590,15365,16611,18912,30446,56539,3866,19526],538429912970987321718095391],[[7256,11982,12705,14280,15366,16064,28281,59602,767,22860],545204584170247874541775550],[[7258,15364,15881,15992,20459,24922,53736,64414,668,14649],556971117257794907987216397],[[12529,14409,15777,16660,17120,17133,22502,40969,21797,1858],544586931651338866971084524],[[14909,15351,16434,17020,20216,22154,28134,43744,39972,28266],556971116739056977039629231],[[14934,15367,15885,16627,31588,31710,42613,45955,60726,70315],556971122942379695462387592],[[15880,16325,16655,18557,22802,43692,50322,53561,21497,41960],538867039715551388086417611],[[15884,15975,17125,18563,18830,20217,53727,53760,24352,38838],545204586506623170831189640],[[16070,16426,16648,21254,24316,31704,33331,44183,53862,66224],556971122942379695462387592],[[16468,16646,16673,18552,19720,24318,25503,53768,19443,33774],553619448669401529080785513],[[16520,16610,17116,20255,22773,27816,31634,62383,13504,1699],544586928304844912694026605],[[16986,17135,20239,21674,28139,42378,52891,1082,30378,64826],547993838778616307608191854],[[16999,17137,20254,21235,21478,45944,51322,66216,38783,3668],547993842865686695079398604],[[17129,18546,19380,19830,20464,31901,52009,56538,41256,6586],533178445842873115180094416],[[18311,19377,21475,26211,26877,31732,52865,52668,53864,22010],556971118343459664054128199],[[18918,19657,21474,22357,22444,28940,62381,66679,13448,38824],556971120110998528622978165],[[20252,20465,20478,22762,24924,51306,52859,63095,25728,56982],538867030305037540088399161],[[20253,21658,22128,22787,23787,24952,62401,68467,22957,61050],553619450332561580632443897],[[21479,22122,22130,22798,24950,66804,22926,43751,31468,49209],538867050522912273339958992],[[21704,22342,22411,22662,33319,44032,52854,69678,21779,6258],544586937899972224751816310],[[22155,22599,24937,28012,31297,50296,53737,15108,14747,4060],544586936245731958058064300],[[22763,24951,26896,28574,41830,44116,45945,3968,13857,11984],523793558931105848736213363],[[24317,26214,30492,31735,42631,43701,66219,15171,22331,21076],544586921912347692734627135],[[26215,28276,31650,42979,44185,44295,43795,22958,26032,29247],553619447113700828398403764],[[26228,27757,30634,44038,44776,61240,62403,69778,31391,51147],553619449050049544469214893],[[26248,28548,28934,31638,42596,44050,51323,2615,41441,53761],545150970544302100634688882],[[26249,30501,31654,31700,42586,44173,53207,56557,50367,2157],556971119682345449493595195],[[28001,28614,41756,42612,44243,49538,13751,67555,68621,20021],526696196400319850112818159],[[31292,31702,33318,44131,50180,53633,45737,69669,1741,19696],545204586120163366924217475],[[31728,42630,42913,44266,44319,53847,56657,22824,19173,40674],556971118511757597731556891],[[31730,42634,44261,44781,45947,51328,2567,22328,55766,6206],535402038271370487620359722],[[41747,42996,44211,44236,52863,56663,16975,59248,30686,65235],538867037886293116582399206],[[41839,42635,43654,45531,53685,56554,5487,49483,4502,30496],538867047395893157820549623],[[42604,44138,44406,45694,50268,52895,56555,39671,22910,40962],556971120101857792276644275],[[44174,44292,44345,51392,51925,56524,62565,43745,22955,10640],536030281107300289072280940],[[44175,44215,44772,45697,52065,62376,67929,54219,52532,41914],526696214861612315302314040],[[44248,45686,46559,51449,61207,67762,13333,6163,26024,6195],538867035848690705994807024],[[44293,45958,49496,51342,52315,40014,37937,766,65064,62022],536030279876620224115363828],[[44294,45678,46560,51455,52850,67764,13352,51255,16509,459],556971115511715646947036199],[[45696,45946,49713,56521,67758,648,20375,53762,13093,23927],556971112765620368418365737],[[46558,50293,52848,62400,69967,53695,19570,33482,5806,33066],529582964529746489935716720],[[46561,50283,51343,52263,53102,49156,49328,13701,51930,60833],533123630875677742006875786],[[49736,50159,50308,51329,61202,22950,665,22250,20807,65234],538867022561192243887863281],[[50220,51978,52889,53579,61206,65051,19588,39775,1169,65290],538867033957579375176189792],[[50309,50323,51300,51349,53597,39666,48237,1286,59092,38207],545204581137972328767030801],[[51307,53647,62402,52673,57073,25512,31285,39991,40396,39151],544586929525683611482656610],[[52852,56271,61211,45250,69670,41483,51184,14882,3675,15545],526056814409926654563842910],[[53114,56297,60720,62574,59559,43709,33415,13670,26586,52062],533123631975402670173459639],[[53155,56527,60727,61235,62568,70310,53252,14469,55730,51436],529582946256712220246395000],[[56543,56656,60835,62553,43726,335,947,62733,39175,2570],536030287282558988627116790],[[56662,61210,61230,13713,20311,41453,3185,26056,19984,20207],538867016885157425968110246],[[61234,62404,43009,64136,67760,13978,14069,12821,57370,67135],529582947970967097415144023],[[62035,62547,43036,13449,40961,43862,21982,47755,30241,30502],529582945724832624544165356],[[62571,45735,64427,64119,56033,53322,42003,739,2336,2837],544586913857553257876180268],[[66211,66823,38421,55742,14533,39604,1274,38880,13491,28613],526696201380240649007849335],[[66647,68560,2562,41417,13781,51246,39940,12933,69081,16221],526696196008812472455209767],[[69996,48695,67939,19581,40109,23698,61843,38307,52857,40549],523150589742266457210697279],[[70304,65193,13682,53251,41415,39133,978,18878,25370,15980],526696203581184725705650736],[[53712,57066,40023,20043,14427,16155,14670,30789,68885,70408],538867014097095975413186348],[[63088,64158,49233,40958,1083,11736,19477,10971,42878,21370],538867028195297693389496718],[[64511,66218,20385,22745,41878,50326,664,21572,57020,63395],538867023828748852159986545],[[65210,68220,70309,22804,13979,38588,22463,62314,12982,45719],536030280493357069993920016],[[66225,68236,15583,19166,51261,16968,22505,22227,56375,70419],544586912493270286865359390],[[67962,69681,43804,49251,48614,13072,314,52382,51437,43369],526696181050243192381811950],[[68658,69673,50341,20030,26862,54144,14973,2829,4079,30493],520133173740254838075865126],[[22864,55733,43750,51254,49927,5942,54290,3555,1002,15999],536030280974554911684055699],[[56046,22895,41221,13032,14393,44225,882,24367,7374,62016],536030283666134310684257315],[[14605,40970,41247,38245,1287,52697,24261,33163,5821,14944],517193699145865011932558702],[[48153,53246,13015,33387,49525,3948,12069,13866,38282,41492],523150608572097940088432723],[[51253,53224,26838,1678,49352,39975,1906,52383,25516,48920],526696185923771297176086319],[[53763,26622,26859,51260,19272,21626,31491,48177,49491,25386],529582950445482058921499887],[[26629,40965,22964,41898,44766,979,50328,3313,44674,42288],526696202581275287505137108],[[33203,33385,53872,16976,43659,13302,54159,2503,28216,72315],524020481379660324603396693],[[33413,48549,1682,7162,41856,19434,39621,3709,62928,65279],538867022820910655404365352],[[37968,43749,32693,22956,44758,59532,6429,19620,28408,7622],523793530685405345960273851],[[38280,40966,16544,22959,27889,59585,52947,11640,57196,10792],520456685615327863425811601],[[43747,49203,44761,19593,53558,56188,31692,66305,45044,41884],507049123456733185422166141],[[43748,51247,11737,49505,6502,54265,25500,56983,13727,7615],514237381571508990895975886],[[48472,22536,16185,43630,59229,50354,62628,14570,22954,11051],529582927679384966375860292],[[48481,1251,2459,2614,40134,60047,52952,13215,19736,54724],517232697170876735743961240],[[53769,14607,387,879,40695,60004,19534,26257,44647,13134],514180546354447222132029931],[[53770,53871,44201,13278,14625,16726,17745,24982,43002,2818],529582956412146407250733168],[[2452,6089,39988,2609,21607,24340,3935,28181,2799,15997],536030275680083964146794632],[[6082,44769,50441,1275,14096,19681,18047,52934,66015,28573],529040432861663432151228536],[[7169,53865,669,39792,3591,20399,24549,2834,49758,38258],523793527364704755990201618],[[44754,53582,2197,3188,19680,18035,61023,44291,63160,454],522506855415773600663564341],[[53658,53878,49950,465,20299,42566,24118,22948,17766,61602],513582484057416530545983994],[[53879,1740,6503,13477,26696,38858,21515,66646,21108,1951],503832720908878158627562033],[[42026,651,2156,47675,6405,31463,1822,69031,48886,28043],504500275909213677546330709],[[39619,1907,2196,14113,315,28153,5437,25281,33522,42285],517193693663596565129596791],[[1685,11002,23905,47528,52726,31311,30438,16688,68666,58843],517193673534873340205737293],[[3593,5943,20398,24574,10970,14011,14450,28434,68868,32222],507513275469787728061307657],[[11003,17708,39992,56108,26702,31937,32851,48244,21253,40546],506947157815783968084761327],[[14377,24379,39976,47532,12081,2341,61881,69979,49726,17095],513023055224072305257449604],[[18428,20266,49506,54152,3858,14750,48616,21858,41984,22066],513582490021420463795556456],[[21560,39606,51049,738,58426,26021,43001,65288,13447,50442],497644617398387216970026209],[[31372,39921,492,22009,54223,38356,66366,13395,56701,3469],491479144714145329898654492],[[31520,41879,3722,31378,38312,62913,44695,2849,20187,42800],494571494214201621439094200],[[40729,52644,54167,62284,42528,1640,55745,25368,53361,48597],503832707595736311099811686],[[41857,412,22200,52976,13887,14461,19123,69030,14937,47978],493890511064375351419918724],[[42074,55796,62639,14764,6268,52585,4082,62385,15294,14451],490793863437659833086641123],[[50001,56115,6434,29194,4061,6590,66813,13079,48023,12865],490793854991572942184842701],[[50026,691,13081,201,22309,1166,20238,43649,42406,37878],497685164212807411086425322],[[56155,413,16719,13525,22292,6514,21248,31770,14645,49864],500125061102655414490947112],[[61351,493,6349,19971,24978,3838,2846,27372,21980,51947],487576252298915074898621942],[[3561,6103,32575,42537,7960,19107,1158,19933,18605,21222],500125068704912647012199974],[[6362,21981,40421,24981,19511,24091,25362,43037,43788,13493],486885489156367542742835558],[[6392,17742,11127,54220,16172,3975,21093,43799,32865,6578],481221090965632564667415192],[[6529,68,38290,48261,18876,1530,1850,32857,39632,14259],466221092022436566968598166],[[6546,261,47129,10620,10700,33141,33086,56577,53584,30391],480521180991586247578951167],[[22175,41398,31923,18882,30676,41917,38906,49585,42949,10797],477337801254801078055302661],[[32596,83,42565,47138,1633,47761,5782,3058,56534,66237],490048012820109601038979291],[[56389,24977,12446,17816,5343,26605,12965,68603,20326,42289],459477904487139641831843754],[[12960,10688,11652,18880,25275,21197,56013,22935,10809,21859],459370367136753042321998398],[[19061,10627,17819,51996,44068,53751,26238,40031,51854,22437],449303334957282319656069509],[[19937,12802,16202,4517,6515,23781,22127,19714,51975,55020],449303348130941255029018679],[[48551,14480,58555,3834,42855,21065,16700,12938,27353,51257],456039372290858151061248481],[[54224,14406,14990,30709,51991,27247,57391,2559,13341,16550],452683876933097581060911324],[[12912,19527,1635,6508,48545,20251,50279,69667,54154,56259],456039366618030307000767343],[[12944,27445,21265,13992,52074,68547,2199,6145,2600,10964],452683865846581880221321372],[[17815,1628,49172,23774,48613,24383,68097,56283,50504,14630],449303311939155821849824939],[[17820,24254,63082,23761,1692,28904,44121,25112,54410,67016],443743503177269869632293306],[[19294,27675,7361,14915,16441,1230,48572,52533,13383,44370],452683878940546878239018408],[[27646,38131,61392,5770,1228,44609,66376,72829,13262,26857],452683854933260623032618019],[[33469,38119,5817,44055,12987,44630,6581,12656,7306,13426],456039343475191591048262761],[[38337,58606,1815,50265,55759,19950,13822,12424,55176,48593],442733397508296634846287730],[[58456,61391,21151,57028,26288,41908,43403,66803,65293,1246],456039346445484609090146846],[[61395,1006,14748,16682,2859,38843,20293,14956,40576,3205],449303300060199277298883230],[[1522,5362,22303,48601,50307,56040,70409,45622,28514,23158],449303305290932971507828216],[[3206,3840,19932,19459,56016,20755,353,66367,3900,13454],452683852822292771168235076],[[3217,19966,42523,26285,25392,43398,22611,51338,25743,5693],452683837296588398514371446],[[3836,22286,23755,2989,33827,13919,5652,22927,50329,45797],456039321464353714222920269],[[6509,30487,12941,15581,8125,52534,14887,68073,11490,53674],452683830233583996828787268],[[38238,12909,16653,48548,25306,62416,65278,67756,49074,7446],452683813516238751713234300],[[38273,16456,44239,3031,44646,26337,28219,20400,13719,12842],449303275252191685881230923],[[48610,19924,17111,49533,25515,25312,48309,22068,22447,20268],441058010274526921341819350],[[52927,19958,17090,26347,27159,41534,69672,60866,54395,41751],449303278823486672267102307],[[52948,19641,6728,16863,7422,2261,66280,50170,14628,52214],449303267082548813814144098],[[38283,14566,21355,52469,24902,56980,1830,51938,39852,22526],452683814499374148821257234],[[48536,6741,12906,7431,28888,52111,69798,39022,22535,19955],459370274009468749315138223],[[51373,44270,19967,33822,33503,68863,5629,14842,20315,27683],449303269070411705575894157],[[51394,44279,15582,63394,66235,68862,16969,15354,52344,2123],452683810740373776281453103],[[2978,26344,2854,48160,63158,66664,68371,20231,6041,41945],452683795011824341891856695],[[22940,52508,8108,19077,44120,57197,22960,67534,40038,13322],452683804740815922449701645],[[27142,38329,56039,66026,24374,22961,11050,50543,19596,40156],449303254176645161088786433],[[38247,12651,18578,52535,68488,68545,44048,72305,42412,39690],452683801150775588621698606],[[43800,27286,63461,57198,63396,66375,2170,42599,42380,14403],444501241871319958119282272],[[48637,10805,63448,43022,63397,16974,13214,6428,54970,59719],447166014111495909663821552],[[25360,28407,13806,66374,70350,16471,70316,11988,23036,1898],449303253543528813080557700],[[27263,13912,4441,63159,43620,70168,981,16663,11978,3316],452683793225270186706068817],[[24919,2250,19093,52098,66279,53738,532,42260,46152,2671],445897075485899111356979312],[[27246,13841,44652,68466,39023,67767,68845,19921,18472,5726],452683791302620979744698745],[[38802,4430,66027,66236,24347,56048,646,23717,32854,15277],446163673927161851726278257],[[15552,19047,56981,69997,2198,48336,15049,51311,39333,25811],452683796779684920196430385],[[38913,57199,63161,69065,5810,66222,54165,28127,27781,19569],449303244730203393909995029],[[48318,65284,66234,69061,1834,5646,65341,6142,25024,54390],452683795067660563186803467],[[65090,66314,68884,70351,16433,21209,647,51886,20633,72013],443743423913561467650077241],[[65285,66045,68544,2496,16965,72294,40554,50365,55069,12272],445897061909699663302655195],[[66044,66281,68370,70418,16978,70220,735,62056,37875,28379],449303249333819637159049439],[[66304,66315,68546,70352,53655,5635,67399,19687,10999,48532],456039280325120941309081762],[[69032,70353,23767,30245,67766,69086,20378,40157,52735,27952],437587614347226557137294546],[[69077,2171,23770,69675,52623,19737,49759,48139,7644,23493],439276206081222263231764421],[[7313,21156,44755,69016,12942,52645,55039,17906,60025,13227],445897065605108300890979127],[[24356,42864,44090,41551,70302,19686,56252,49733,48515,56712],445897071754502354751543966],[[25499,30258,44768,66213,72854,39089,40552,54421,19419,25725],442464668341668002955084421],[[26354,30262,53869,41985,69051,20369,50355,14906,32085,13574],441057956528792832190255616],[[43811,44759,51383,41953,31416,21178,55021,20412,49427,51050],442464671867239929968644860],[[42919,53874,49564,66214,70236,2564,42261,40158,45725,219],442733308394375401479335399],[[44764,51416,67441,55746,14644,56276,12192,15007,19450,59656],442464678609805763232877742],[[52036,48337,70317,54169,13100,42589,13847,40172,11628,30915],445897065247100594466016214],[[53868,49572,70190,13490,22008,19079,28119,13054,52798,52053],442464671821277550557719063],[[53875,69680,65295,67130,734,634,11481,61668,2446,52073],442464660653537248255279663],[[49565,53376,954,66046,13311,632,58594,40175,52377,47703],442464660055763642853593780],[[64854,67757,980,13492,6433,2568,21234,49700,12603,2672],442464668810037519383115313],[[64918,66221,20442,65368,44256,38918,38644,55440,43741,21126],434089503276030093688586901],[[70303,957,20443,44251,25040,38632,49679,38109,24365,13325],435791690320869803503692394],[[15099,68660,10856,40003,50263,38261,40571,19843,40174,43694],442464670954413724883691638],[[15572,72288,15346,59524,18321,54838,11488,27654,14373,40964],435518722474052435489491313],[[15591,72322,17769,62050,11311,18302,54847,13252,12615,66048],432279046993383803608319759],[[26898,66322,16670,52886,15622,10936,49485,25797,43697,2408],439005442878813323674692139],[[26905,66327,12910,22152,19697,11979,13937,49621,44381,27390],439005446372269301439857296],[[33424,69019,67247,10998,45625,50538,24600,32655,63463,13462],435791669764354625114444006],[[33431,66351,67270,72593,14852,18326,40574,49620,59677,44167],439005441136857755622526182],[[55729,72589,455,44135,25747,13431,18308,42709,19411,63446],439005440286952471016397706],[[56031,13287,31419,19033,42985,18305,48140,42714,45186,24406],435518744683714396510954471],[[13446,38284,14980,58905,15275,49732,49647,38098,53352,2437],432003900273415885876969649],[[16603,48531,16010,45094,45714,13293,48082,12830,52882,49580],426218473962739374643832585],[[16612,38249,19718,21697,60562,38839,38655,27563,12628,1766],432003898605035157637954805],[[20379,50285,13812,25116,56268,11300,11479,45843,27371,45319],423421878930000854769419580],[[20469,39987,15965,25155,27545,38798,42925,15019,19877,26042],432003896652682242552759202],[[20492,3898,15984,46162,13427,39069,50539,1198,14547,52241],419805763052469124283717722],[[48596,15969,19126,20368,52291,39210,53335,24009,6588,7217],428460220978603825192944230],[[530,16008,18970,10945,18324,52043,28467,61598,12607,24684],424886989748482756234847995],[[15600,19715,49903,13317,31585,51961,20198,39853,52392,366],421565606959593508841559084],[[19719,21732,45720,31576,54984,49678,596,53152,2043,52198],424886988561585729002061035],[[38932,42974,13176,20184,54987,40568,52785,5768,30322,41942],424886986266151114096272149],[[42221,50371,56261,18318,21274,24614,58687,20660,55042,263],418217835344287722261688280],[[45072,60572,62028,20342,42371,49033,24601,61450,18810,24395],424886992218936712409793645],[[46140,56285,28182,31567,42924,49653,38204,59657,3208,42180],424886985840314447952474795],[[48199,56292,31558,42370,54755,20377,53631,24700,28260,28995],421565577129294801145089448],[[50345,62032,18310,27585,47941,54973,14316,21413,12619,14100],424886987721701865977006578],[[58859,59548,31563,42407,21293,54723,28489,27113,21632,40018],421565608484344071682397462],[[60830,62044,31580,48224,49701,17155,25813,45169,20763,63360],424886981664912878767922885],[[62060,31562,20018,20201,38621,54685,53286,2042,16229,51853],416158225695957121425160438],[[13178,49727,13430,39205,50339,55436,24615,20166,54716,56483],415634923351695190123146080],[[19144,39358,42252,42948,18959,56711,52793,15149,19252,20600],410149358184774624814473267],[[28154,42381,15328,19178,20367,55424,13743,932,20799,20541],424886979884535162594213222],[[31581,13055,49652,52042,28493,23039,17919,13241,867,22087],424886982009591305546309892],[[48060,13925,42284,47938,39380,24613,5769,42935,27003,47686],424886970005806336025387206],[[19195,42253,48510,54754,1733,28492,13265,52782,26846,33848],424886977613693332982712536],[[38226,47975,50508,598,10670,59183,42763,52870,33074,10604],421565594569919551240305360],[[38797,49646,1196,18275,18989,45826,13757,19580,13151,26069],424886967372217186893652893],[[48223,50513,1731,43978,55412,24603,12432,22637,57483,47871],419003300060033289323503948],[[50509,54692,10682,27523,53208,61455,28400,2008,43406,40137],424886972246267127471579904],[[50534,51960,11271,11458,41475,13456,59671,25010,41610,19048],419003297199578797419647178],[[55038,11286,17917,13463,19594,45842,13063,12456,25054,40142],416158221375041475706176736],[[2602,28016,55408,13255,20390,59836,59690,7284,6587,27158],424886979980399818476965452],[[11466,13692,17031,59877,41490,16239,7125,43500,61,14256],412766587556187071349146425],[[14287,22886,28515,20282,24602,4222,5688,22236,16211,23262],419003294389961720957031639],[[22872,28488,41905,19493,20392,24612,13773,59691,50742,15453],424886972425687295301464044],[[32081,32221,55396,15640,25795,38557,6577,59554,53025,48583],412766596480041088074434619],[[32217,39394,55402,17043,56678,59852,4097,42883,43380,45550],416158216104608625618295902],[[40007,49527,55430,21390,12854,59929,23738,40794,22054,57491],424886964434054652976851850],[[40016,43975,54416,22832,58543,40173,28378,4080,49503,72033],419003302475667945535273847],[[41460,50209,23048,45827,13461,32218,46038,2558,19954,59756],412239007238435862216485842],[[48045,14470,25789,13060,13380,39718,22658,32848,17961,33886],415634909693160944188090813],[[49433,15653,41744,38580,58592,59676,23043,11024,51884,16282],419003288997930905642922826],[[54396,25802,58889,59853,16529,1308,50676,16936,71,26292],412766584289373588956528964],[[54401,45017,45778,58353,59182,27357,30286,23917,27005,23379],421565569357085021791834491],[[54415,17158,37861,39725,14813,33392,1674,60262,52034,19622],416158205333147697404000677],[[45779,61580,11105,13392,59202,22688,21722,59588,53520,26290],424886958103375261789663851],[[45796,61661,41503,58694,12641,33076,28258,49017,23013,25977],415634882824274441010789855],[[53295,59837,11108,38223,22659,7199,14118,43778,41950,67407],413035800205496095148362149],[[56688,59861,59203,28583,24392,28430,7765,19637,41810,12112],419003305222554741770352741],[[59860,10741,40159,59950,14795,28401,19568,28326,43411,15221],424886949084011217817527746],[[59876,10641,10810,58725,18463,1524,13173,62775,21353,66034],419003281166256359861173006],[[10748,10812,11160,41259,17908,866,25180,19249,633,13787],407242407762767942062799125],[[10827,38050,58443,61596,12462,22687,6188,15543,58597,13804],413035815011326841472366256],[[11166,39700,58413,61578,1899,3219,6201,60974,49878,60265],424886958043164236882684574],[[37858,38075,15078,11611,28409,32647,60941,52663,24051,62803],407242425271850671455646766],[[39691,58706,39833,2126,24006,27393,30291,11019,49358,66365],421565569059655773819431571],[[39701,59181,60060,26842,27722,32859,33246,40732,71742,42662],410149333760374773942171044],[[39719,58347,58541,61752,26833,27352,32098,24552,59087,17040],416158200711734107648250022],[[39724,58375,61779,12631,15122,4076,52499,14075,26779,73022],413035818793239289207884366],[[58381,59180,61696,15111,930,1001,4096,16038,5783,38025],398127012520574196598372749],[[59200,61687,39847,27366,51327,523,15915,437,41595,40397],410149325493869889847253717],[[59201,60863,19302,27380,27634,1999,42595,42943,15269,3914],424886952731625435010730359],[[28621,7295,18811,32860,911,4098,13189,20156,10813,25075],412238990042187273459052710],[[33398,53689,26820,1532,4077,39937,20159,45718,46316,55630],421565554503426115394921275],[[33402,46170,30327,3304,20485,21227,57375,14372,13235,1300],415634887894103493174834714],[[42750,61582,27663,1769,1948,55077,23144,436,265,12839],415634866686156999639719642],[[52282,21683,19317,2004,25568,24571,55065,30825,50336,58599],415634891704060508258689426],[[52325,56702,33255,4081,21181,57181,25133,41808,61805,10986],410149320645249434779875114],[[12638,15084,30360,1005,2399,3671,43383,59253,28900,19083],416158205019874816850194158],[[22521,32853,914,3113,2449,14556,13185,9407,60408,19361],406707604262568056697453373],[[27383,5342,5704,6200,14916,23941,15554,14093,1079,1224],416158195933013840488882217],[[28431,32101,2014,3662,15133,15345,52215,27256,25995,13541],410149336944008575373952394],[[30937,4178,5361,40681,15259,27242,23937,56,19858,49799],403775880747791754005260464],[[31242,1311,1373,6576,52021,32938,13121,28253,12925,7807],415634873448490650480647027],[[31266,1376,3660,19579,3909,59236,6307,17987,5815,15016],397859424807509533276202729],[[32129,3216,3458,5409,7737,12267,13220,4223,51866,1776],397579960473345858276312519],[[32143,3499,3661,4099,2981,14589,33505,26062,21437,19996],410149327827379486105301834],[[32847,3123,7141,16633,14963,25058,5488,32355,13043,22913],407242373811731586561324523],[[3504,3670,4173,4232,14883,51533,14477,13344,41601,38738],406707617962707875179418278],[[3672,5345,6205,7734,21204,49959,28164,42153,1244,5494],424886936607025549800114351],[[3673,5364,6217,15358,25184,10981,26990,10224,18518,49960],406707583300268227127657840],[[6059,6189,6579,25548,22148,15286,49836,14353,183,7131],412766563225557205417144304],[[6204,7661,20500,7286,14596,522,60251,33854,35962,8591],415634851749677968249562091],[[6216,6589,33404,20990,49931,19551,47705,9202,52147,44144],409618309578121919384879279],[[7755,26855,14147,42010,54734,63374,14999,36000,43442,10399],409618301352782771029761116],[[22582,7280,16860,6731,55807,50477,57379,59084,39663,54186],409618310591642345383161293],[[40832,2442,6734,20520,21862,22043,17901,6288,12873,51341],400556983557560468319566294],[[42601,14184,43676,27146,52478,42035,60248,9646,7872,3454],406707585554589976243829143],[[20960,43667,39952,14076,19616,27081,41612,55833,22083,41586],419003244522353178386337306],[[22137,54526,2987,57386,63378,51567,38339,59746,140,50335],405898324575397978781624036],[[44168,24560,14063,43366,20876,13163,39661,21372,61795,48592],410149302869028261235412794],[[51344,14975,44627,52199,15893,14124,23912,374,8313,26973],413035769723242773974951997],[[53622,16831,21159,54276,21848,21615,40009,4824,49567,20473],403512082427732293347463658],[[54494,26048,44612,15288,43469,21869,21641,11798,67952,48919],406707561858937193375072731],[[55216,52712,22247,51970,15536,14590,54303,66555,65343,47658],404051082649374330925050723],[[42860,52725,3810,63456,33515,14597,594,61567,164,45750],405898313252197942547627578],[[54289,3817,3906,20134,33510,27251,22257,12893,72,16929],409346828696527195320341039],[[55818,15561,10958,43390,49545,13152,39835,67023,17948,16057],400556985791029914034054199],[[40660,20136,16931,42147,1667,517,43245,43740,18005,44136],413035761022867989744749117],[[21855,54771,13167,51094,10963,53537,44690,4898,29722,60464],406707573741765216827565382],[[45724,54775,63453,27237,19528,10957,63353,27887,26666,57354],410149318297933216377332044],[[54780,57172,59530,40710,21603,28166,23161,42166,50422,20450],403775905188401929440375345],[[55031,25065,52373,47681,63348,42833,43754,12913,19094,39623],406707575297833708837319901],[[20865,22096,42182,43395,39799,26988,1076,17910,8895,38809],409618304725733092246693386],[[25188,52388,57382,13162,39948,15438,72324,11754,51834,6106],397579906122150829177715879],[[28192,40738,40110,33857,54296,49334,40959,242,67302,15113],406707558626378196359396714],[[28355,14458,10985,39925,53523,51937,46668,10757,34018,50482],400556945566890018771183213],[[32947,33520,39779,10987,62738,51733,10824,59101,29871,13505],409346822437619211535469865],[[49834,62743,59607,28194,56018,2563,38991,61797,63316,49502],394310453686869536686529162],[[30796,41625,10983,22100,20613,48894,12963,11822,16186,49317],400279362916731338046014713],[[62777,22104,40696,25724,43277,15266,66031,65372,7527,20856],399735256698483646734357741],[[41627,28251,41791,515,11733,636,38321,60648,34440,26858],399735269103053523266552754],[[24579,30829,57494,63341,26283,51656,58459,69069,13958,20470],403236480305235780562889005],[[30801,41793,22232,15479,637,39,35458,32648,28250,42696],387389837183509977234675227],[[33851,55810,23147,43887,21263,19938,68859,8584,50361,33138],394028427352593306158785458],[[51066,3916,57486,43240,52582,5220,73,41100,21775,42034],391001625531121285036933345],[[51100,14054,19287,51605,51936,46320,62181,19190,72487,30439],403512042185114843550948142],[[52704,52641,52603,17106,53773,53793,48528,4912,3868,20223],400279342093550638392163776],[[53534,6151,14352,53766,52035,48554,55089,22577,26845,41036],388237702381020364794879079],[[59529,43194,15399,13159,51848,14869,65357,9669,10763,39107],403236444604229992977949190],[[59553,44679,20579,10993,49058,11872,19290,64146,43261,51360],391285811132361521312949617],[[6156,11729,10739,62514,55006,25159,29844,51330,13850,20011],393475674909905126480176781],[[39659,55761,10738,15023,18721,38256,55617,69803,39065,51400],394028383048390985560959695],[[27880,51703,28099,53772,56871,32364,13428,62178,72473,60689],403236470946719017640869729],[[43879,55764,22092,51249,53802,206,60610,19549,14695,22857],391001611014097548306328991],[[56011,10990,21282,48930,274,7884,64907,40420,2445,16946],381789644542579136427453781],[[13148,28096,53767,56864,40036,72841,182,70065,17955,18033],393475637209480218676067283],[[21303,42704,51250,28884,13432,29263,34013,50768,57315,30827],381789653882327559205929469],[[38058,39093,14922,64098,25221,4031,12862,27870,410,42007],378383770510251089262571661],[[38083,39061,43755,15242,10825,20275,69084,54191,47537,42885],394028394615831475425035157],[[40967,42903,59104,10790,20308,2392,38844,7649,14061,27238],384888872296495991588718149],[[40972,42658,42834,38272,58447,35927,30906,49152,15135,1137],380927451857138107255869759],[[51258,21163,28929,19920,49868,67266,2383,70056,73273,14185],387114900049301911100659589],[[375,14898,20366,11063,11894,26809,2707,43436,45177,47678],380647837280404310646786580],[[7449,21242,20127,55618,9225,33251,22013,22642,43700,48300],371166349053348920691356987],[[21213,28926,19972,55629,9390,66565,59560,30429,39117,61840],377513765132996840889507244],[[23176,38299,54737,20376,13313,58,60291,65047,49810,38489],376641826668140771770899762],[[23179,50362,25031,38237,67261,30006,35540,49830,43154,53428],379490228207758950739890998],[[42967,18734,12936,25137,11070,10629,1101,18523,25864,15304],380355706883063119585380055],[[42994,43757,367,58429,66372,24119,1303,33889,24508,52240],380647824605414629414839346],[[51984,12904,61754,10622,62193,35900,68099,48198,49544,11882],373474183550691291862547656],[[62517,14948,42156,10613,17973,70071,67614,14460,48144,42028],374353556321979446290719478],[[42904,12985,25011,592,60672,64418,64159,67264,19346,1905],373771712444541080096333992],[[48619,49828,61592,38221,60752,32182,66021,13844,42009,51361],366766684811177144145303431],[[38358,40029,39820,24092,33650,43431,38085,56503,67930,39046],367372356805875367095264239],[[61769,58417,287,14688,42491,2296,52176,463,24570,14742],363512968740522768975595828],[[10785,59725,71739,12115,2702,462,5723,16515,38295,19567],354200568381756872781642310],[[10811,64137,8714,264,25260,19258,42698,43103,42773,44383],357227929023160842412104630],[[12945,13289,68870,181,15162,64924,32481,60272,21428,42598],373486688081879104302310980],[[13455,71714,92,2303,62807,13839,6037,14220,38710,49116],357538960247546471282886601],[[37,11854,1102,52138,60279,19142,48852,39096,40676,42466],351147018403979684007494880],[[57,11913,22984,29206,2769,48357,27924,26843,21371,21863],360846523072347717157109073],[[4540,2763,7198,19207,4827,10390,22165,41994,13731,14844],351463455106358452400118057],[[4551,4233,25202,60284,9442,30662,20301,38253,61862,49248],348066765900163838498130329],[[8739,138,29518,26654,68904,52867,43173,24558,62543,51998],349854279411545076978123841],[[62190,180,35559,42470,33242,61765,11702,1784,48779,60478],360538311520876896935465128],[[72852,35486,220,54784,70062,67625,32053,5784,22429,25033],364124004042216460996136117],[[38,8160,22700,42148,5482,10671,1825,26052,21037,27053],357849723309090973388783075],[[55,8368,23466,22675,4032,52153,15834,50413,28577,52685],357538957017995669512084766],[[59,10188,60699,48380,8323,17995,65358,48591,11673,21127],360846486826028849587368249],[[60,29960,46235,55097,58681,3356,57513,47659,20637,48837],360846498398499009928532594],[[139,14711,46212,43425,61628,34030,41592,41979,11649,57015],364124020429433919614805499],[[165,8177,7545,42181,16272,7783,33160,38725,21733,21597],354514202215325686937114297],[[23344,161,29566,13951,16284,59722,39058,51655,22088,62776],357538930246915437019205489],[[160,46624,30711,38998,36409,23970,64167,13304,53677,60864],357849734536524926557670192],[[163,28762,25068,52144,35338,16270,60402,5546,30486,42108],364429169564235715030671801],[[218,28966,15145,68075,49880,7671,12851,49556,17801,18746],364429195427731021515584330],[[28790,52992,33622,27851,38060,47026,5772,16530,42098,24678],357849723504502051064064992],[[46566,60784,38180,61635,30946,33898,49368,64120,56138,21074],361154432595542760623674346],[[46595,30749,7216,67004,34460,8882,29731,33406,42621,38596],354827654591323491871170265],[[54791,38803,38185,34025,69057,59564,13860,14264,41862,52374],348385984244790050713670145],[[67011,48241,23267,35324,47041,5533,38850,68483,44567,61277],355140775967768053571204422],[[68918,58663,67312,33901,57514,48238,44316,19592,14130,40711],348385958197338385822844133],[[25210,64431,73283,30902,43894,38151,30672,41943,33394,16621],348385984623731748417178331],[[48157,67622,17997,41978,51315,67919,38938,33400,54564,50689],348385957135884229608622246],[[67633,32471,11759,49560,72844,48165,64142,52713,55206,56342],351779568467995918298214756],[[73268,32174,39843,45194,1818,49812,42695,28188,12013,25858],344958958103609884518633171],[[73278,36394,39822,23998,45918,23773,64121,14550,19338,21020],351779583007178112066841159],[[36400,58546,7791,8578,11587,19084,22464,23742,33512,62800],348385956310769953261300859],[[36403,3361,27905,30944,59556,14537,49341,1241,55105,10694],344958955173094291289636150],[[5469,32033,60411,28836,38799,19510,58865,1285,21044,25855],344958966117280798687278167],[[8597,26970,45908,1386,66370,30495,49535,56144,43210,22825],348385975594348729323213325],[[9456,47035,58548,11584,15356,18740,20122,22237,48893,21642],344958960189851992204928858],[[10384,32196,1029,28049,19533,27753,7278,42110,50476,43953],341497558243284867397422513],[[10393,32188,59758,1033,5804,23762,19826,24561,53200,56140],348385953640268232871060098],[[26964,11076,63335,64115,72307,19038,58441,42019,62792,53198],348385946491147509930787096],[[26979,11064,41957,72320,71726,42347,18049,42713,24698,39808],344958936205879149830725288],[[47032,11581,64154,22135,54182,61363,31451,1216,1738,41909],348385969673641398768787068],[[60417,29737,1391,23756,11314,39608,16369,13048,46141,20449],341497544213643193231110609],[[11590,28820,15343,13825,18749,20451,39082,3187,50414,42030],338000735126311493566979245],[[43898,63330,66363,48154,24517,14559,27940,46605,56378,21224],344958947840897144800918769],[[49376,57521,67922,1855,54195,19636,43841,42011,48799,10982],344958944098465500817176462],[[57506,67955,1847,24510,14479,1686,63472,31935,53006,62334],341497566782382875000809377],[[63321,10683,71748,17799,43574,48228,38219,30355,52190,52246],341497559609268387411960932],[[7815,49053,22146,16313,27314,20386,23728,31233,7288,27085],338000731889037520749883928],[[28022,67920,68453,38787,52163,22371,48915,13575,49857,39167],338000715949215894117790838],[[29728,47861,20486,24519,31456,21332,62793,14237,25902,54515],341497559384567315201537291],[[38146,67953,39683,38840,66651,50423,14078,40977,40659,24989],344958934925243086986657074],[[49094,69072,16613,64160,20112,41946,30386,14453,40837,53147],341497553903489842589863852],[[62826,68847,64107,73033,62336,38374,42480,40984,49603,22722],341497539284612589037046056],[[68866,39668,67963,11303,48648,15422,22994,19457,21854,14917],338000697673736117383505454],[[39682,23780,69787,64129,43857,38553,39953,2450,12874,42989],341497531171348805391835949],[[59573,13815,52880,71717,15596,11707,23707,26854,14960,38723],341497546028634455021121648],[[64128,48249,65072,17808,14437,45093,39997,26581,50443,13875],341497554182085218991808841],[[71718,66639,61359,19601,50416,38924,54581,55162,39120,24680],338000702036045202586124961],[[71723,16602,72109,14521,41104,13433,38217,15466,49804,14231],338000714992949066910401597],[[71743,17806,11637,19615,38828,39981,21354,42099,39458,49456],334467314871874800539761130],[[72835,64103,64837,18743,48282,20031,13017,52601,56386,40107],338000707208830004217330040],[[42590,61370,39326,57357,59510,38382,14858,61728,40899,50301],334467301036548701877865126],[[61366,16305,39351,41927,41231,63075,55237,52046,54475,24582],330896184489990364544819610],[[64102,19124,24042,15839,19220,49512,63035,5941,1683,57017],330896208698843102901717072],[[64141,27543,31450,15835,21319,14294,1739,21801,48942,37964],330896207796306396836821165],[[64168,27583,1691,3375,56139,13280,1284,28657,42359,3496],330896202840585783540900614],[[64815,27812,48025,1222,62644,31255,61847,16598,15555,51933],330896189602005353356895410],[[67416,33458,15618,13040,10654,44130,43407,40975,49957,42999],330896172655116780526566154],[[71751,41101,42340,41705,1051,39936,13524,39073,40648,54275],330896180794398641672772702],[[72129,27321,1219,47651,41664,15370,49958,39459,38488,40860],330896179886392088214899771],[[31457,43557,15866,41935,22402,30393,61877,40983,52185,59586],327286114433914416742819583],[[33445,1576,18943,63487,17009,19962,20646,44694,49532,21829],327286121118020740820512695],[[41105,1693,19037,62330,20044,59939,14706,43691,40655,59606],327286116733613531105823510],[[48062,3382,38218,42659,1904,491,15485,51509,22242,14902],327286098424303879277190813],[[49822,1568,20445,10658,856,15389,40981,49457,13896,25016],327286093981457297997604736],[[50417,13809,15873,53118,48526,490,17091,38868,40640,39782],327286105651940661622779214],[[1698,20444,16156,5509,43670,15377,16502,19108,60826,44565],327286086649372913637790493],[[15838,45071,45540,635,38252,58702,54277,48737,14254,52964],318873205328784629881675198],[[18973,62333,2574,13034,19928,51146,55760,41037,32790,55203],327286093542859502322844670],[[45528,56145,2572,881,6055,13101,39267,49933,48945,21007],327286092634607163182343292],[[49493,1054,13047,41209,52724,14472,48890,50459,3830,53145],327286079246682786835274873],[[58911,62339,544,39130,860,15147,25609,48762,54317,41729],327286087509433245913194438],[[60494,16982,5500,48881,21985,15542,50439,12877,42029,20104],327286081720132262383505746],[[53168,13429,545,38576,31925,26281,25591,25804,57313,41521],327286073044876745356086417],[[20388,49470,57023,4142,6120,2441,44156,21827,25167,18806],327286076791543789576153113],[[44342,3184,12993,22500,20610,22664,56020,14204,55481,61868],327286072013404538917875474],[[50150,58411,59534,51717,2438,25726,15033,50409,18046,2232],327286064850159923067512600],[[50187,878,411,13080,51704,44675,63457,51868,40905,54249],327286067653553414272995735],[[58721,12896,5701,10969,33396,60706,1679,1554,16907,30798],327286069153449711577108661],[[59914,12971,3121,5771,11681,42033,49807,56147,16415,712],324002922995249749655686498],[[12928,21494,26038,54288,53019,14258,42944,50480,49008,39898],327286055268871733183558548],[[13986,30362,7115,51639,56391,33513,52191,49934,52260,20069],327286058329903462508812085],[[14003,10968,43278,29003,40777,14144,38890,55363,48992,2664],327286050151067342622794652],[[21512,1862,43673,55802,55184,63452,43220,52075,17083,58562],327286049801258623333581852],[[47544,39154,4160,55823,25723,57374,21043,25169,42848,49122],327286057091327475760764923],[[62633,3465,43193,15076,14250,15003,33020,11975,12640,13515],327286047797302498437430805],[[5940,38254,3111,22246,17110,21054,42109,51689,14864,44280],327286056926960105778310985],[[26600,1866,42486,19500,41918,39112,39260,23938,54479,33204],318873126490006585401145115],[[48527,23749,53619,42614,50740,60476,52011,33008,53284,56165],327286048259839936069776468],[[49189,3860,11881,46606,3408,15530,40677,62741,39179,39959],327286048219889508451295795],[[28160,22683,53634,52584,27771,43394,3412,42005,42215,19902],327286043540011326317918070],[[32638,7294,19587,52874,24671,13949,20046,49941,25544,21057],327286041454559070556800933],[[28984,51185,52901,24725,43155,50406,54353,63312,39958,3014],327286034786968326517787172],[[7285,56373,14599,49490,27830,50638,19208,58563,43004,30665],327286038475959089977840080],[[23007,14592,20949,13956,14257,15024,38316,25861,42201,16311],327286030868691850147011635],[[53686,51312,1239,52391,20989,48907,44071,61874,62093,55177],327286034316079898653658847],[[22142,19329,1560,20696,40682,27052,49979,55820,21548,38344],327286026849227786041303926],[[55765,16375,27255,45538,21042,42032,21836,49969,50897,16003],327286027638667696448371631],[[56009,57387,15038,20693,40684,27172,12016,46163,49978,40272],327286026634312478704462004],[[60506,15535,20033,40985,43164,42006,43068,25564,41653,10909],327286023425819125305726863],[[13050,19191,38742,51616,54518,40658,21297,38475,20086,54287],327286023304230033308817934],[[21055,21278,42111,42847,27055,44060,41998,24683,57025,62590],327286022619412596619132400],[[21289,38294,39094,42008,51480,16919,44026,40638,49936,52754],327286023369011054813177642],[[21290,40680,43129,48181,49801,49454,51838,53310,25791,42353],327286023304230023426700314],[[21304,40683,40979,49930,51887,50465,15000,42660,24695,1218],327286022998148359502803083],[[40661,42104,42928,54511,55369,20866,50447,41439,20111,28506],327286023334935358901739427],[[40685,42105,42886,54368,54491,48876,50449,21621,25545,38952],327286023276589211766234679],[[40982,43165,54482,55127,15011,33016,45636,50457,21006,55816],327286022938005362835547412],[[42710,48265,48561,55202,27169,32822,40672,42983,23918,40178],327286022968710698344945007],[[48626,48917,50412,54809,27179,32823,42018,13578,49856,39784],327286022990275292358669698],[[49809,49956,50415,50481,27182,39506,48778,52401,42792,3021],327286022708464079405607190],[[49811,49932,50408,50458,51913,21837,45635,51870,25549,54198],318873105436825237870272653],[[50407,52184,54523,54803,43937,49935,61844,14104,42945,15864],327286022588707251194846698],[[51836,54806,55158,16910,32825,42906,13581,15878,25565,26051],327286022605104655077212841],[[51956,55166,16503,27054,44027,42031,51890,12983,19062,40886],327286022254009723252108410],[[54812,55194,16922,32824,50467,42719,45204,53421,30795,32931],327286022312355860687793465],[[55362,20857,39486,43935,48877,13579,39062,16589,19880,11993],327286021933620106892640571],[[55368,20867,39483,51999,40665,48924,61828,62337,40628,21257],327286021550831873026337825],[[15026,33012,41035,13166,21832,40689,55815,51093,50995,16402],327286021141556940597202192],[[21277,39503,42036,13172,13565,40669,43069,40861,21019,49135],327286021527549357711181882],[[21292,42681,43934,13580,38345,14087,56951,54476,44114,11928],327286020822797985060334404],[[40673,41034,43936,13790,39052,42004,14976,20246,14211,39807],327286021469203200371351962],[[42037,42705,42871,21281,40644,52247,52408,61835,21622,20822],327286021303918142953176127],[[48800,49455,49954,50437,50451,51976,14084,40904,54670,22915],327286021193826870407230200],[[48889,49955,13564,28652,50460,51857,41735,15305,39785,41255],327286021176395338044882250],[[49940,50436,13041,40642,41403,45314,14131,47650,38705,52957],327286021110851614798502285],[[50438,51865,20035,21830,43058,45751,49963,15877,40737,17086],327286021496844022066577344],[[51381,20048,21447,39090,49001,14332,48585,14209,39956,13568],327286021111614306224411722],[[51847,15020,22901,38364,42042,50456,15842,21150,16699,49129],327286021386227944832438888],[[21452,21831,45753,48988,49947,19847,23915,26037,21310,49126],327286021272905970788619975],[[21756,40649,41996,61878,14132,48216,55779,19879,27105,40140],327286021260394868786648803],[[21760,21834,28257,46083,49968,20124,22243,59887,28955,50653],327286020666304581903803467],[[22097,42044,42972,45752,50461,41464,11494,14331,54273,60011],327286021035073915132394004],[[38474,40651,41786,42718,42734,14880,40123,51041,15718,25527],324002877836060129976643377],[[40686,41771,43059,45634,60749,17028,19980,51073,40229,62739],327286021251341396425974663],[[40687,42043,43083,56365,59813,20103,55799,20013,40116,21121],327286021012493182693447124],[[40688,42000,48910,52063,3831,22260,47700,60870,20850,4131],327286020978583674108299762],[[42045,43098,56339,12961,14133,15844,49219,14242,55791,57171],327286020850131990075019763],[[42638,45221,48575,50468,14023,38945,50207,24568,40273,16319],327286020932582440996031021],[[42653,45637,48640,50450,56477,25152,50766,22393,26585,59673],327286021297176441921960581],[[46086,49961,50478,56470,13746,14850,18747,53084,3018,28736],327286020648065349257957083],[[48999,49946,50469,56367,14325,20117,22861,26041,48266,51039],327286021260394858904531122],[[49006,49962,50479,50985,24618,48650,17044,24994,52687,22269],327286021214559813403394096],[[49937,49975,50980,56476,21531,47656,63384,55213,40146,61711],327286020760460295993961827],[[49974,50981,60745,15827,19946,21696,18741,55168,50172,31489],327286020849965812385430275],[[50483,53259,60541,15879,22395,24677,24988,42798,55834,63532],327286020614155830752934316],[[50984,52222,60537,61869,21176,25543,40855,51990,49645,51858],327286021192995248919022093],[[52231,56336,2661,21509,22261,50174,19848,21250,27031,59589],327286020905870488369101600],[[52312,56345,60540,14121,20125,25090,62340,13745,14971,54512],327286021226319172655670005],[[56362,58969,59812,61729,21199,38378,40741,39031,50993,4254],327286020886913563256438349],[[56370,56471,58614,59808,21608,47652,50782,54422,14526,63278],327286021214559823285511779],[[56381,58978,59809,14028,24679,53337,20224,24993,44368,53415],327286021202048701517074853],[[56383,60536,60828,61713,20110,38386,20971,48816,52763,14862],327286021214559813403394096],[[61712,14085,15876,24697,41473,17024,52012,55167,42423,50003],318873104605395661576836867],[[62096,14086,15845,24696,25030,50277,51914,21041,50074,49246],327286021015250870032859828],[[62099,15843,16590,25087,41730,62770,21264,24048,48984,22359],327286020757710136434656356],[[62102,16697,21643,25096,25561,56141,31452,38582,55204,22467],327286020755004259422315450],[[15823,16591,21627,24699,44288,16943,26047,52013,51005,11178],327286020719072656715843462],[[16588,20455,24608,25563,47685,15317,52717,21053,42298,54295],327286020675093507779912690],[[16693,20454,25150,25567,42200,11483,38716,56151,52511,54294],327286020347447257092896871],[[20118,25013,25547,40903,45825,13903,20972,49445,49602,21819],327286020720762375666944637],[[20448,25093,42970,44364,50767,20170,21040,22896,49256,53414],327286020954198835591007042],[[22829,40854,46144,49889,55804,31459,51957,40117,40535,43087],327286020978469296865864247],[[40902,42214,46159,54313,62744,14218,38317,38869,40129,40539],327286021002739758138921633],[[45830,47696,50702,57179,12975,21031,50427,40295,45887,56994],327286020913775534186994449],[[47682,49890,50690,57176,63079,21018,25906,48627,50421,62985],327286021005445635149214356],[[47699,50706,51979,56146,63303,14992,27062,50302,39803,56179],327286020720928553356599728],[[50278,54284,54318,57312,39184,51103,54484,39030,39040,6436],324002886489319166865819798],[[50705,52059,55785,62801,14168,30822,54818,21594,38376,13576],327286020697508062552471185],[[50783,53280,56958,16691,19998,43954,55173,41459,43963,44310],327286020956904692837465701],[[54272,54314,57314,20847,28610,15031,52750,55196,50871,11237],327286020626386387729465339],[[55777,62331,62791,15316,25904,38891,48841,21596,48892,39930],327286020629092264742869609],[[55783,62737,63302,13882,30797,49453,14243,39801,43962,40145],327286020716366759938947719],[[59856,63039,13732,18744,24040,39528,53405,55160,21298,41051],327286020586445610922659027],[[62774,63313,63366,32958,55209,14591,40538,44380,40231,49118],327286020562175159500848330],[[63115,12997,18750,21030,24569,41736,51111,54345,48982,13577],327286020694802155893279455],[[63145,14949,19158,20145,24041,42350,39802,55493,50069,41211],327286020694802155893279455],[[14219,14326,20172,20245,40740,43955,22453,38293,33405,59672],327286020911069617647473063],[[14222,19140,23916,27069,43952,52740,51110,55112,14827,16801],327286020390410198599704180],[[14230,20143,21238,30823,39523,40743,21059,40122,55129,52510],327286020672387581356300244],[[21013,21249,22431,25900,40742,49181,52755,40570,50911,6711],327286020629258412786218142],[[23939,26604,30663,41461,42887,54715,39066,40317,42286,62312],327286020607693828499045784],[[23940,24559,27068,49818,19645,39783,42358,40180,16796,38365],327286020320138513965006196],[[24049,27063,33140,42351,48182,54742,40141,14686,16412,44635],327286020369011791986628100],[[27019,30671,30824,41476,54483,55051,40143,37933,6712,56214],327286020368845614296794326],[[28485,30673,39957,49824,54748,55159,39554,22339,42299,50900],327286020889505033378868995],[[31453,33490,42352,55401,14542,41643,54513,61827,2684,15709],327286020104203397318149810],[[31458,32811,33491,50171,51051,20050,38736,41701,38482,39796],327286020454264212920012251],[[33162,33497,41111,44379,13934,38768,48840,62313,11452,33589],327286020059891892919614610],[[33496,41108,44286,48791,54486,14344,51915,47662,50929,41947],327286020604987951485464600],[[41109,48562,50210,52741,21311,43961,48987,56181,5904,13360],315502423429451110957902237],[[41110,44282,54824,55026,39899,48418,55178,49163,21217,20004],310232136899527507886878675],[[42929,49452,49825,52716,55195,39895,39138,13668,45681,18029],327286020106743096645904436],[[49446,49817,52047,54522,54821,19578,14687,38024,42968,42806],327286020583257189506968175],[[50420,51102,55487,19214,39800,41782,53334,15004,1588,27414],327286020296034230331200160],[[50426,54492,54815,14255,14598,49141,13761,14091,3020,47687],327286020274469646022071958],[[51074,52345,55024,22459,38892,39806,41775,40330,57326,56034],318873115882334167800235454],[[52290,53333,55484,13762,14235,38601,50208,22254,44115,18028],327286020035787609266641675],[[54404,54524,13038,14246,39809,14089,40332,58783,14661,55832],327286020012533305985617143],[[54519,55435,20053,41252,48264,21755,61989,14803,32690,15200],327286019752120507005481530],[[54721,55207,55490,19907,21058,40534,50068,54671,14126,16405],327286020317764992328767286],[[55053,13775,14244,38562,50169,14135,13665,38471,53260,48573],318873101585842582420282316],[[55163,15012,19654,21056,39551,48628,22898,41260,2685,32805],327286020009661251277099249],[[13021,13946,38721,38764,54474,38715,6703,14676,57270,63376],327286019659766612889889226],[[14233,14340,22907,41634,48180,51120,40619,50896,10896,60103],327286020289782737718543770],[[19211,38315,49234,49415,55113,22267,13567,59270,59622,33550],327286019791537882399130003],[[21052,39894,40128,43094,44309,44369,42465,61291,44036,31359],327286019678253433558379355],[[38870,40138,41235,42360,39050,46160,50859,51017,11238,13561],327286020246653569098042683],[[40139,41213,43960,48563,22266,40230,39766,40102,14064,49184],327286019725994148993294726],[[41249,41474,48429,49598,21648,40260,58705,59605,1332,3807],327286019726160326683454905],[[41658,41670,49414,51114,52691,55174,48925,50927,18032,46333],327286020201492084345563206],[[41659,44308,51118,54676,21650,22336,40147,6612,20858,41072],327286019617637593819807491],[[42361,42846,51037,51123,55128,48436,50863,13772,44409,52058],327286019963992383290841605],[[48860,49243,49419,53433,14134,26624,50890,56153,40144,20881],327286020202508242408712236],[[48861,49418,51116,52759,13011,14684,52912,62772,22271,40726],327286020158529093403367979],[[49599,51112,52397,52761,54520,48985,50926,41578,62296,51208],327286019963826205600802185],[[51043,51122,52748,54510,39086,40164,49236,13769,60113,3384],327286019986406947994218389],[[51117,52412,52749,54477,14685,14779,38713,41572,61201,46260],327286019942261621269785092],[[51124,52689,52760,54361,22268,51980,3015,4128,20823,31514],327286019637869673158428155],[[51125,52751,53404,55214,55499,33393,38363,38579,61834,18804],327286019791537882399130003],[[52758,53111,53225,20027,21595,10901,13019,58506,63386,51076],327286019488162092212959577],[[52762,53247,53285,55210,50934,38133,39768,40103,41438,45957],327286019553872003356671800],[[53069,53180,53243,54481,20040,40235,41233,59621,16443,55811],327286019726160326683454905],[[53236,54351,14088,14136,26627,48586,49668,3813,11795,48772],318873100002360090500918812],[[53416,55496,14137,22723,40329,48980,12861,61484,44385,48166],324002885533335852115261686],[[54367,14345,38714,38763,40622,10907,59241,6614,21601,63132],327286019401219952070017303],[[54517,13028,15176,38561,40254,49139,51026,59915,14929,22445],327286019877567868268208584],[[54677,14090,14339,41251,41462,40104,60027,61983,14127,21576],327286019445199101177125184],[[55502,14033,15189,41250,45882,59930,60058,4184,11922,39465],327286019400887596689366889],[[13776,14036,21649,40233,40625,50547,10659,2682,63143,18391],327286019595756662517051999],[[14780,21280,21545,40236,48495,39797,40099,15775,3738,15638],318873101117246030416369849],[[14860,21651,22457,38384,42287,1709,2683,20082,42531,46906],327286019291697069464190198],[[21761,22905,39028,40333,45886,62265,13566,1347,3815,14277],327286019595922840207278305],[[22455,22737,38583,39029,40232,50517,53281,41294,2678,31589],327286019856003283931508006],[[26844,39048,40234,42717,13783,59252,44583,31184,1309,24199],318873098459807259570650212],[[26853,38717,38769,40291,40548,49669,54250,61469,1591,21598],327286019856169461621602173],[[33198,38711,40162,40290,55821,40136,59264,57249,22274,31488],327286019379323012321258272],[[33201,38708,40247,40551,51889,62266,11243,39780,22925,28838],327286019639735811598018956],[[38712,39039,40316,40573,55800,12872,59629,63153,42812,16990],324002885226885942853987568],[[39159,40248,47679,54251,54282,61468,3806,14014,11989,1636],318873102432674773368871070],[[40253,41471,42536,54285,11167,38611,41179,22233,32064,59743],327286019163055539672783456],[[40255,42720,44365,55790,58613,59254,15101,21624,57259,26035],327286019119242568218230793],[[40256,46084,47663,48979,51023,38604,41276,22252,22924,14807],327286019379489190011594470],[[40257,42527,46145,47660,47701,13036,14058,18370,52734,50186],324002885098286892048930269],[[40258,42987,44307,44384,13758,58428,59628,14903,24268,22933],324002876255191579358562177],[[40259,46085,47661,48462,56163,15715,20081,21580,13720,18042],327286019291364714083428564],[[40294,45883,47683,57018,1221,3019,3804,14080,16016,62108],327286019031118092219991325],[[40328,47697,48651,55792,3812,14071,46158,14317,23935,33023],327286019030951914529478243],[[40331,48976,48978,59700,62714,1335,15708,15789,62736,14541],318873114682674257851083393],[[48469,48983,48993,59701,62717,62735,6616,26868,42980,20833],327286019551777513430175332],[[48973,48981,49123,51003,39762,61861,4273,32689,18807,27189],327286019119076390527762456],[[49120,50519,50862,6704,15066,22276,21747,38150,42907,39325],318873098438080943218854609],[[49121,49137,50549,50858,56152,21152,22503,45689,28579,31933],327286019291364714083428564],[[49195,49644,50073,50865,56150,59237,16533,57177,15181,42012],318873104138612869698665133],[[50205,50860,55793,62303,41579,59265,21551,21653,62753,21120],327286019119242568218230793],[[50861,51020,52933,54270,39778,3377,20064,52467,19901,26369],327286019075097241376831746],[[50864,52951,55805,38558,39781,58762,22256,17969,31932,56164],327286018902642740016740930],[[50870,52911,63279,40106,59617,2681,22609,11095,14951,40706],327286018858663590836726888],[[50882,52060,57026,57325,2680,4278,16458,63514,23943,33159],327286019031118092219991325],[[50883,53235,53338,57327,38544,39798,61640,4262,13728,38355],318873101074049407568956149],[[50888,57324,60750,62264,40098,22914,46304,21812,22892,42973],327286019074931063686340994],[[50889,53248,56177,60868,40105,41573,21553,24545,51165,56213],327286019118910212837294034],[[50891,54248,62308,40111,41487,61646,21518,12918,4226,43560],318873094704918993250425043],[[50894,56167,60744,63288,10755,10908,57193,63383,30620,19362],318873098525883153394185680],[[50895,60824,62768,41506,58726,20065,51421,32061,56379,19050],324002884616944260919762739],[[50898,62292,62716,63289,59261,61982,1350,14761,23059,61870],327286019119242568218230793],[[50899,62267,62287,39773,61637,14108,22228,11985,39484,51921],318873109811202008301880429],[[50901,56995,39772,59240,4181,6618,6713,33399,21237,39971],327286018598583146319953249],[[50910,62980,41165,59624,60112,13996,21198,22283,51059,3459],327286018379570264843904766],[[50928,63037,59587,60118,3814,22313,11086,52298,47608,1175],318873101610229440312894838],[[50935,62715,38539,61489,61643,31284,52484,11453,27469,3736],327286018578184889226343277],[[63077,10655,58736,59267,61466,45956,56135,62592,42084,51382],327286018426294822399596418],[[10761,11173,39760,59949,15712,15858,11387,45648,46253,26355],324002875294135823813167821],[[10906,11159,59269,59616,14065,14677,6088,12627,61866,62307],318873102241955367635172742],[[38121,41402,59960,61420,2679,4129,60876,11087,32624,20101],318873109033038293446686645],[[39770,59255,59271,59604,60042,16424,14097,18397,1310,1050],318873101547051693904460500],[[39771,58517,1714,3017,21486,21599,11972,31265,59460,45623],318873094128201238277111970],[[58458,59940,60168,61486,61721,14660,22223,16928,18427,16528],327286017946869140391730015],[[58716,59263,15713,21605,46305,52493,56136,13536,21742,15784],327286018013712494864782732],[[59625,59988,6705,15714,15769,21103,14899,26583,42091,55155],324002875159064049663204580],[[60102,61837,61988,3493,21558,7279,7581,21787,32568,1237],318873101941155487346019763],[[61431,3016,4130,15717,21550,47553,56978,6083,33243,7126],327286017770952543122486219],[[61864,3805,14893,16404,46302,52466,18413,27044,40731,1620],318873101096769746380753891],[[6702,13606,15855,16518,21492,13537,16920,53445,52626,21004],310232130742531636209942944],[[6710,15719,15805,22224,11976,14941,19525,21618,26653,53580],327286017989466891932683391],[[13587,14081,15810,16403,21659,14663,16575,29338,49222,4383],327286017726641038408050400],[[14107,15861,16422,22225,2453,12973,14000,14762,40476,49194],327286017925255663186721216],[[14307,21562,21629,11439,12119,13675,14741,42085,48250,13801],320686139122389095302828470],[[15716,15794,22230,46303,11796,13546,21637,27415,49199,15707],327286017925255663186721216],[[21483,21552,42552,11094,12531,12950,16455,17054,44210,49489],318873113247628787511555814],[[21600,21709,44018,55836,7164,12637,27045,31513,45906,52699],327286017989466891932683391],[[21669,31279,41944,45548,57194,63059,13753,14836,20745,48142],324002883739275680087734260],[[22222,22344,44013,44634,62540,1136,21820,27768,42532,62111],327286017989633069623725282],[[22365,44640,52834,57286,60836,63389,7584,14678,18423,28004],327286017989799247314767088],[[22413,22540,23084,44585,62542,14529,26068,33651,41295,45222],327286017989633069623725282],[[26863,42995,47712,49543,57180,61290,20000,28618,31511,32023],327286017989799247314767088],[[33403,44412,51393,57174,62763,63375,26060,38145,731,13398],315502430340299598815128586],[[44641,45536,47711,50223,52931,56976,12122,13514,57019,55074],318873094037922309662734904],[[46148,47552,47713,52492,57242,16911,18417,28840,40480,42410],327286017989633069623725282],[[46895,47550,47710,55835,62589,11995,14679,23934,57027,2227],327286017726641038408050400],[[47551,52837,54297,56134,62594,62754,19730,24578,39951,12884],318873101718550731585796147],[[49501,51983,54302,61243,62297,12530,23942,28781,42066,50151],324002883739107818511466384],[[50183,56137,60508,63121,14545,16916,18409,30828,40477,19825],318873113346428158191199470],[[52485,54278,56979,57055,60155,62606,19548,49049,32562,17001],324002883758420194390071875],[[54279,56169,56977,63505,11983,14945,16817,23894,27135,62773],327286017989466891932683391],[[55837,56183,57248,62588,63243,20015,21426,44072,17765,18022],320686129967299264135401413],[[57058,57192,62591,62607,63508,17027,22529,30821,57097,61863],327286017989633069623725282],[[57195,57243,57283,60201,63369,13547,14910,16786,18395,18426],327286017989633069623725282],[[61197,61252,61276,62964,17979,19844,22812,26063,31515,41065],318873097636401468052718505],[[62541,62595,63074,63529,63546,45205,45649,59772,38851,44079],315502430253857462853350454],[[62593,62620,62966,63511,11794,16762,24539,41508,31420,1827],320686130278961155840474718],[[62621,62965,63379,11797,16574,18416,20832,28805,46161,50588],327286017925089485495646638],[[62764,62967,7167,14834,16416,21590,22741,31919,20995,56960],315502421877357232987370240],[[63239,63368,11232,11926,12995,24538,28612,32582,24990,21190],310232141383011918209326978],[[63249,63543,12838,13557,24266,32625,42984,28949,10859,38220],312964766571311016951571007],[[2458,11383,11679,13742,14019,20872,29416,51099,53392,40842],324002875115429482495599632],[[7289,11436,12714,14129,16908,17048,22760,4183,19425,18977],310232134372973077338823352],[[10706,11437,11450,16917,18393,21822,46254,7140,30511,19427],315502425564073760378344273],[[11438,11687,12630,14110,14462,18373,19991,30799,19333,19628],310232126845962811942381788],[[11451,11920,12850,13704,18034,18367,27083,41852,31435,22942],320686130363158014121162629],[[12711,13548,13691,16767,18030,23911,26360,62288,39168,2582],318873097569813891589700395],[[13556,13739,14114,16783,17967,18044,20784,30528,41847,12601],327286017725810149952172440],[[14109,14286,15197,16820,21748,22291,27089,28782,59820,60554],327286017988802181168514986],[[14128,14481,14809,15182,23902,26549,31930,3654,23763,24605],315502417123329660648795321],[[14662,15186,17037,18045,18307,26950,27047,28718,32055,19827],324002883822274908625034420],[[16411,16923,17977,19376,20744,21540,30820,20951,24737,57261],318873108718322316922841802],[[16479,18048,18320,20859,23936,28954,15710,23765,18737,22410],312095358991641654254595850],[[18376,18419,19379,19711,19876,29391,30314,32960,61845,16987],318873113345745910205985755],[[18805,19644,19893,21435,21593,24269,24544,31502,14155,1556],318873101994468811872377026],[[19653,20882,21591,21647,22841,28576,29335,22221,55252,62865],327286017796168494892443841],[[20785,21252,21535,21592,22755,28059,31573,41846,2473,39500],310232130284857063502187709],[[20873,21240,21815,22828,28425,32024,22531,55786,48004,55101],301343466388385654709242543],[[20880,21258,21817,26665,30279,32937,41518,62740,3494,1550],318873101994468811872377026],[[20883,21241,21644,22532,22718,27827,32933,40464,25600,49676],318873094103583717782934775],[[21645,21818,22305,23944,26777,28547,30849,42067,62114,1572],318873097635719223592950827],[[21646,21741,22273,22865,27186,28743,31486,32884,39969,21984],318873113247117101522487125],[[21824,22874,23913,27046,27188,28735,32955,25604,24308,38235],318873102486614393725250353],[[21825,22879,26034,27187,30312,30526,41853,63300,16757,958],318873098090892067020174293],[[22439,22884,23892,26061,26819,27416,49460,50014,20057,1077],310232118828703685789587222],[[23900,23945,24553,26366,31499,39968,56486,39477,22397,19970],315502430186386114412153808],[[23914,24581,26363,27128,27466,32018,38377,41038,49145,63196],327286017988802181168514986],[[24267,24580,26602,26957,27173,31920,41440,25605,4228,14194],318873093701062976394379168],[[24583,26620,26956,28617,30315,30800,33252,49090,31508,48797],310232123274488950558677539],[[26537,26617,26951,27109,30826,30857,44014,3495,30500,1342],315502432301026193260266677],[[26807,27125,27463,28543,31921,32038,33536,40478,51075,63086],327286017924590952422422398],[[26832,27170,28399,28756,28960,32888,42093,62269,24219,32573],327286017661598921154482654],[[27115,28032,28424,30276,32019,32882,33588,49158,51084,26351],318873113345745910205985755],[[27138,27417,30808,30848,38385,45650,46164,62608,19034,62286],315502434744581545743428169],[[27180,27472,28961,30313,33254,41743,44214,21514,15256,30648],310232110827252316034431548],[[27183,28749,30856,32058,32654,33118,42969,48780,31185,38338],318873099690038698881807516],[[28015,28398,28742,28757,31503,32928,52693,52705,58615,41674],324002883822274908625034420],[[28580,28699,28829,30277,32646,33124,45907,53110,38791,56030],320686130363158014121162629],[[28750,28806,28827,30529,30807,39928,44034,31318,24525,19922],310232120404650778538805024],[[30278,30527,31186,32791,39945,42092,47680,52309,62625,25497],324002875050567597060071421],[[30802,31931,32043,33009,33125,41827,42808,51046,24714,22298],315502437275699927309100080],[[31183,31487,31934,33623,40707,51044,53302,62049,21153,41900],310232133838702355664795583],[[31241,31918,32798,33142,40745,53402,61839,54316,41895,56123],301343480734743765737249195],[[31501,32036,32946,33164,40746,52064,52963,31711,14896,20209],310232134106359088302545881],[[31924,32812,33583,39950,41752,52838,56209,6522,25581,21559],315502425596946249068716869],[[32045,32942,33119,40442,45923,46259,47730,57056,13488,9607],315673751492020774040562261],[[32886,32951,33152,41040,45904,45927,50030,51201,17768,5899],320686129966451275561879135],[[33011,33245,39507,40481,41039,48806,53086,56178,62624,6431],324002883757413024932522827],[[33013,33582,39487,41836,46142,53154,56371,57285,733,40650],315502435514799382460007903],[[33015,39144,40465,40697,41041,48652,61762,22640,48145,16366],301343484037518301685400505],[[33017,38346,39970,40479,42090,43938,45926,46335,32658,13489],321532312243954717578425650],[[33019,39191,39931,40747,41463,42988,59742,50650,41910,48656],310232134271597133952657657],[[33021,40439,41277,42756,50022,52695,57338,63538,55778,50261],310232134316067142647080049],[[39196,39504,40725,45651,45905,48587,51067,56168,39466,65294],321532312243954717578425650],[[39464,40744,41704,42872,46146,46334,52061,22522,28948,50583],318873097095857969046866760],[[41404,42551,42814,43941,51450,56296,58999,31315,22663,41632],318873093697908280908267484],[[41472,43651,44366,46332,50046,56505,24740,12920,11500,45930],301343458776205549428578014],[[41489,43637,43940,47737,51104,52732,63290,22220,24736,14923],318873108718322316922841802],[[41673,44061,45407,49458,55850,56208,15198,31305,26182,19649],318873112944004640487741594],[[42782,47702,48641,51054,52694,56270,63181,53127,40006,32799],306766522289309449041131333],[[43939,44017,45922,48576,51160,56372,31307,65599,19982,15336],304155976037334908420126627],[[45412,47684,48805,51167,52692,55847,57405,63526,21468,24524],310232131931422549561842198],[[47698,47731,49148,49459,52352,62271,16754,31261,12599,14561],318873112944004640487741594],[[47704,47736,50023,51166,52729,53393,54255,60768,24056,48295],310232130425634577889832563],[[48781,49461,50047,51079,51977,53481,61783,63301,31306,43674],318873108785381180955902100],[[49725,50206,51045,52351,59826,22736,19857,43792,43003,19944],297774464453790877848092496],[[49748,50173,51105,51981,60547,62309,14187,15745,1882,48080],315502423412849341656468083],[[50015,51047,51205,52269,56384,14153,15727,33145,49330,38930],310232124333858076204940164],[[50031,51164,51401,52299,53358,56366,63539,28944,32643,15150],318873108344148732870377716],[[51204,51934,53101,53311,56390,62293,50719,56878,452,888],306766528141625748980437288],[[51209,51454,52702,54261,59467,26619,39479,23793,49465,56946],306766528335704883107849103],[[52000,52925,53653,55856,57402,59773,16576,10997,10727,38865],301343478886745355441626878],[[52833,53206,56182,57336,30567,63540,26336,50753,43671,14425],303261318860519975594925540],[[53179,53297,53562,56511,57337,32590,4314,62525,65532,55188],309529748865332855987673615],[[53282,53403,54254,58564,26829,30555,63527,17760,44259,39776],306766529600112560929265590],[[53339,54260,59461,60548,60792,62027,9863,19226,27647,25608],295084342469133641153499820],[[53350,56382,56488,59020,15722,32642,7005,20956,16583,55356],306766519341140826132837148],[[53593,56368,56493,59466,16573,6526,30489,43807,19546,15254],297774440257773831080774558],[[55853,56387,56508,62304,3964,4259,21459,32623,52721,27584],310232124241258474104670660],[[56363,56495,60555,60770,32593,50716,16551,21773,63232,2569],306766518837012325050990113],[[56514,57339,59819,60825,62730,62769,50587,63541,48229,11727],310232123488828303724790476],[[57104,61760,61836,62277,62771,26822,62876,63525,19929,13437],310232119075008813433652530],[[59827,60790,63038,22530,31332,49147,7483,31363,72592,11725],312964766458520963564973258],[[60829,61781,61879,16756,21456,21496,50609,30498,54467,48530],312095347650236451700105994],[[60865,61841,62105,62991,49119,18831,14455,58534,45106,13874],292184543252149584327871091],[[60869,61829,62275,3962,4182,15785,49117,53753,53177,19589],306766532422675227471899378],[[61875,62721,62742,63015,33236,57057,2032,38271,48633,32580],295084359216261945280215720],[[62719,14015,15786,16755,24741,33265,62622,24307,14428,15137],310232145386151828792523855],[[62728,15787,22218,24217,54569,6042,18838,42873,38350,5584],301343481343582166125272098],[[63078,1348,3737,14189,15740,39143,49146,24885,33237,43803],324002874194944274597710307],[[63291,3739,24216,33167,40771,47610,31640,26785,50286,19153],301343478405329409209448212],[[1349,20953,21484,26618,4176,7479,53794,13073,54202,14025],297774438447162206450012597],[[3963,4257,20907,31245,40808,22682,32348,51189,39613,45529],303261323355679548777758097],[[3965,20908,21485,25601,2400,4385,6527,14262,58446,20088],306766520245996217954024543],[[13995,20984,24218,39476,3658,4175,714,16677,58556,20178],297774435640202168161791366],[[20924,20986,39463,39478,3655,5955,40429,61824,26888,48529],303261319280754284395930903],[[20925,21457,32626,62626,63544,2407,12600,31943,57265,18964],306766518390035692462042562],[[21458,22219,30556,32565,55253,62866,7461,1824,33230,31310],306766525966395953467287149],[[30566,31329,32585,47609,54583,7215,18551,9603,1160,38862],304155973470094971618661289],[[31304,40811,41046,57284,6523,24888,23757,41700,19324,43884],297774448465946316336073911],[[32563,50610,62611,62619,7201,31362,31736,13816,30218,25764],306766525628182382660012099],[[32564,55267,62612,63530,7460,14145,18059,14768,19989,55814],294162111451307665582141250],[[40774,41067,62605,62627,31246,32569,10858,381,62840,63404],295084339768189119106870556],[[47611,54568,62610,63531,26823,6143,50188,42956,5491,19948],282729099699464318891522292],[[49162,54582,62613,6058,26173,48226,14186,18718,16182,54714],299715113316238408722602989],[[55266,62875,5967,7021,7482,38832,1817,21461,10712,14208],294162107039361153565528797],[[63044,63256,63545,12598,53158,1838,22929,44246,62634,2662],284772301730161098834182762],[[63235,1428,3525,31432,23796,43771,26340,33320,52005,48638],280992889918389646074725173],[[63524,1431,3659,4313,54542,5814,50149,14531,56953,48486],284772290846030310771619366],[[3468,3516,7465,6440,5050,17004,14390,38664,20071,54675],272147647090027776687980840],[[6960,7478,19096,44326,23759,453,1215,1072,47668,12856],271147417579464311635376881],[[6972,15123,13851,17752,53801,56045,26875,16654,58416,26291],271147412401599992492690968],[[7464,19080,38810,43796,5820,32371,28220,47631,20208,48819],273277245434763540102835601],[[15083,18564,32572,31417,23172,39628,43948,19490,25057,12829],272385821241454943994730742],[[22525,28945,14296,1842,72588,19859,54319,37903,39187,45286],268190365146526221362759628],[[26830,32659,41695,5809,31905,14474,1706,15245,13843,21089],271147415124494294458470084],[[30610,31262,22376,55227,30491,56349,14525,43946,12929,40302],277161904298185021486563500],[[31358,6445,5844,24659,55727,6146,20025,1703,54237,54969],267175287207485786437264578],[[31655,13836,53746,56049,30517,14552,55740,54268,30611,41665],267175296259011915631541863],[[33266,1886,55748,23822,19468,42894,15251,49546,37963,27557],260930697468492545147247628],[[44333,40784,13502,14775,15574,184,12900,47974,56949,33208],250297315816021179863789477],[[5839,15577,40394,23183,1710,30651,48598,19997,20350,33209],256800580841789146456546208],[[25518,50673,1820,14394,42554,42908,14932,5508,15617,28889],250297328561088626111232438],[[15586,30514,51142,9830,52648,14986,1341,37994,38096,55123],253676403274667387262627004],[[43764,13527,72650,19455,1208,51966,43000,10652,63415,18377],247090903089980090515519484],[[5825,15235,928,25505,14266,22575,21247,14665,19931,21671],247090912135656500941424689],[[15228,21803,929,14759,14991,7259,1235,11660,5347,11498],247090886358329401037402819],[[23819,56397,1212,28217,33324,51932,13964,50462,20037,54170],243620503434348322949337011],[[30520,65289,2033,19658,1204,49443,15209,45541,39262,48620],243842324549877081236354086],[[56857,61891,19651,15589,14969,24996,43856,11701,48449,40868],243620495540967108478648596],[[62506,19642,1711,44321,25899,16581,49342,12828,16312,21005],236755448596536742187373486],[[72681,19498,13094,24062,1073,54281,38222,27308,51420,40326],233362999256211183597975893],[[5000,22325,1715,21172,49949,21573,30792,27554,5490,11333],233363009869293170349747125],[[5002,25510,14292,21266,40668,10726,13024,19965,24531,40303],233363017436094251482412647],[[5067,14732,14972,7249,3410,30809,660,20195,52217,54697],233362987835586086022147823],[[41669,10996,22314,49450,38270,27884,39791,54232,44070,50904],229685287325675392144944487],[[42518,22012,44337,25905,53676,4260,19167,19447,58364,41207],229685308913719342940520786],[[42549,22946,49507,53618,13965,14587,26046,58573,58392,27541],229685294227570127929490669],[[52918,22280,41896,33259,42939,51989,14583,16227,54359,63063],229685302270593544881396344],[[53108,22362,42561,42839,20108,63252,50287,40015,3832,2573],229685297801760100692695750],[[53741,41874,15206,13013,42021,58389,38735,47960,3829,48818],229685257492083518871730072],[[53758,41919,22751,52040,1680,19243,19177,38719,889,2518],229685280147339342652978983],[[49531,30658,2482,5485,12880,40527,37995,58873,40005,38229],229685258868108661489666518],[[52940,22732,4258,19160,41873,38369,43876,21628,13936,13023],229685278673893583709920200],[[52975,26802,21144,37922,13007,55803,21604,55365,42768,21034],229685252645500571037366654],[[55735,49983,1676,14424,38078,12795,61382,37954,48220,21221],229685248747117663268811263],[[42131,14874,62832,38821,11724,38291,41901,47940,54212,50330],229685266277430870371915969],[[42137,21195,49928,16659,48595,14068,48433,1747,63377,13180],229685239603111188708456470],[[49990,47636,20038,43840,27938,58624,49031,47997,25157,61994],229685238098671573081758492],[[52076,37953,16152,40125,48568,45201,5586,2610,48940,50875],229685232570337865993914375],[[62839,252,14654,58585,3712,10650,58344,25676,62878,63134],229685218955842718504077731],[[58294,12932,10648,12814,37876,38336,15296,42226,54347,32768],229685201271265244109450082],[[58313,60463,59230,1202,37859,59131,12978,19956,12835,59667],229685214357257621948481065],[[13030,44241,42060,5499,20024,38674,48553,11670,20343,12195],229685218262435500059758306],[[38780,48594,16672,56161,59599,13006,63125,50905,63478,55257],229685209884264165488043171],[[50445,19221,19584,59244,38288,12956,658,13138,25162,26606],229685210826040568746358133],[[19259,20230,38236,22245,45184,38643,19057,41070,20192,48909],229685214907760544661112644],[[19470,20229,60493,38053,59590,49551,1177,58425,40004,3298],229685231264371896184880494],[[27877,44264,42069,40112,38056,40088,25766,15616,569,50512],229685218770076641437790450],[[49318,49508,48574,12897,24565,3941,38310,12852,40028,15335],229685225431931160112754967],[[49466,50262,18418,10713,1206,3944,21388,48513,40866,54825],229685210692262013468815892],[[3406,27814,1053,24554,5642,41912,18942,50849,25136,32804],229685203570509232278100853],[[19963,27755,38255,49016,39938,5648,3718,58605,61406,642],229685227902809862407580470],[[48639,11632,38313,14111,30201,13924,16179,49642,33454,55768],229685205397977117155072051],[[56174,11644,14487,26040,21401,50428,37928,54711,21473,40850],229685209110687173840295283],[[12952,49354,23907,48544,14098,14489,45202,621,20194,26284],229685214358203041957435091],[[16367,14057,28055,12957,62746,40093,2612,55036,14210,41090],229685205886122609790155045],[[18412,22234,14483,30205,12948,20074,15744,39265,48943,57215],229685199195877842905293533],[[31497,19607,11700,22180,37984,38107,58903,37856,25092,38706],229685210680356749287131397],[[50024,14515,12979,5581,48043,16457,20848,49671,53477,2879],226473265093905536703209665],[[23924,16209,47671,13027,40530,12863,38778,40002,55018,55244],229685206225093302389769884],[[28028,27950,1700,32589,3065,48466,50429,2178,12939,44693],229685217474901101700337265],[[38081,48609,5627,1616,38881,49072,56129,48850,13443,50902],229685210114698264228381496],[[40702,52708,21378,3079,38859,38014,58361,54243,63114,50633],229685218189941611176302511],[[40717,19281,41,61374,16304,25731,38115,49995,48047,49257],229685182849927875192660933],[[49057,38257,14391,6532,58607,37985,48831,3374,3512,55030],229685208906572219258634552],[[51052,39923,5633,1629,48617,54213,20416,50848,55263,57173],229685200826428253716859631],[[51082,5562,38289,39392,54206,2154,48136,40834,49061,33314],223215113173696417717113605],[[62755,16728,37932,38130,38311,45068,496,5359,45828,63402],229685197899635169446800281],[[26,10646,40089,58306,18987,1580,20912,24616,59141,14812],226473256494062711903467688],[[3060,10740,37959,40092,38466,15793,3310,40276,15689,321],220073520292470861823431248],[[3072,10747,37896,37923,59099,40239,38720,39302,2692,14362],223215099100883078659631850],[[14485,5567,40526,54229,18260,61722,13057,43163,47967,46175],229685189787526285872456721],[[16716,38620,58325,19103,468,1526,38002,14148,63309,48793],229685183721555269848808009],[[19438,3077,48259,54199,38118,61379,48452,20019,40280,49677],229685198445337088773942676],[[19481,1156,47959,50433,18957,48485,38481,50529,54738,27014],229685195756768475309317431],[[19523,5565,54203,61383,11298,18258,13423,51874,14026,20929],229685195977984484674723236],[[22195,6360,47977,38004,38882,55100,13059,38665,42291,26587],229685189563414331790814741],[[30222,6351,19194,50432,58554,656,498,38750,50374,57225],229685194251523934558009525],[[31323,48482,54233,10704,12916,15651,1074,2584,52193,27032],229685199812960425133665067],[[6541,47996,48175,61378,37956,58919,40590,12966,59555,54986],229685185907185736318169944],[[13010,58297,58374,31475,37925,380,469,20913,6949,40286],229685198937817312495777719],[[40531,58316,58455,61387,58857,54346,3513,37998,42127,14818],229685190717382046789014183],[[48552,61375,39378,1278,55122,40035,61414,2155,49180,55500],229685192757183207535470449],[[54228,61386,10692,38677,48851,540,38467,21115,25585,11703],229685187134492288061775514],[[58346,59127,19988,28056,58515,966,50381,55070,24063,25606],229685187095804078104459489],[[59126,11309,18266,12840,37897,27036,2576,43212,54574,27312],229685187026195030121797708],[[59130,18264,19143,49526,37873,58502,578,43156,48453,28755],226473259388283275199526810],[[13820,20003,31474,24530,23733,49345,51365,19067,20173,40282],229685185935973247233751657],[[13855,28029,25760,55106,13422,27883,42290,12017,40579,18776],229685178545646260961010597],[[19125,31480,25758,661,49484,30558,27876,27643,25679,27294],229685189374684807009690003],[[27544,31481,13894,54340,38017,61716,15739,3214,534,14252],229685189699989472970243922],[[38860,48618,45219,61407,38734,38480,39349,37992,54689,49866],229685188217986915868214311],[[48176,54207,61401,1745,1915,60471,21062,19264,42277,45624],229685189334227547629747397],[[48260,54242,48830,538,624,37988,40246,48520,20374,53306],226473243952804136730943428],[[54236,38357,48197,56122,63133,39350,59890,39071,49045,46770],226473251710418333824340693],[[13873,19978,47937,54362,62867,15533,50919,55354,54773,55181],229685172293346948558814926],[[21411,1279,38618,19135,27594,45504,47571,41044,13297,54861],229685189722051829633014620],[[38916,56128,38641,62645,20899,24201,1534,39106,40562,54548],229685181347338776755691398],[[45070,48281,48430,50337,24185,2532,24289,31635,58628,20930],229685185639422889466558624],[[45092,61400,48463,50363,54356,38752,43125,25774,58577,38301],229685173273687736669174686],[[38667,55116,37904,58307,61700,54155,54972,54499,62017,11734],229685173995600717928544747],[[38718,41903,39652,59082,24387,6953,20072,63041,38104,55348],229685172668171798593467476],[[38007,58514,61427,18972,58871,62857,49641,49785,54683,50598],229685172054428521337065502],[[39646,58372,38951,18947,20917,5366,20193,54804,42228,54779],229685170804474907493717706],[[58295,59545,61706,48659,50378,38753,40287,42669,50527,16489],229685166518827937156124827],[[58314,59521,15788,20056,15334,40300,48847,54805,20950,59696],229685162212593189366403195],[[58326,964,19081,27030,51396,2538,24271,54717,55064,42189],229685175900628099091661742],[[58503,3178,15809,13000,5340,5433,13361,15314,25179,40780],229685174776669052461428285],[[61417,19035,20073,58917,20306,11726,12452,54975,55114,39722],229685175444980511583294821],[[61424,38944,45084,47543,39501,47603,48649,58920,55403,61451],229685166946812588773221586],[[959,13808,11324,15594,45524,20371,38751,48273,27955,17929],226473238121544787472458049],[[3180,15595,32785,20903,11320,2578,14217,15310,16045,25056],229685170594772146693739771],[[15804,11331,30390,47567,13364,20697,15312,27060,40853,58513],229685165558062533791354282],[[47536,54175,63144,39480,38287,40594,43370,51512,63055,38887],229685166874153634496291118],[[48211,56939,5929,48022,45041,407,20284,2575,56264,44240],226473231681515669698694806],[[54179,5928,38286,38678,40243,42279,43379,52192,15302,25862],229685155802952078083093693],[[1914,38819,39324,620,3381,27743,39214,50903,21465,25063],229685170768953832636767606],[[2175,39481,12907,13309,12445,13967,25121,54769,10717,25607],229685164648734086030373758],[[13881,24394,47568,30540,41049,13365,16201,48189,50553,33211],229685174511878108129545084],[[13902,24360,30359,60501,62859,50356,20307,19164,50503,17093],229685175451761624945553290],[[23712,27012,32806,62869,48063,48533,50872,54811,42650,53406],229685170760194472979478729],[[24405,27018,11668,24183,20404,10940,50873,55366,38946,45109],229685169829070281835290485],[[32792,15725,13386,30539,580,15337,42292,55107,54558,59644],229685164262914529492520638],[[48059,48798,47572,30557,13285,43157,14181,15307,55351,40221],229685164957807145553370835],[[48773,11322,19936,20297,48736,51830,52182,14030,21168,39116],229685159703266628515110784],[[15720,38264,16440,39986,567,5950,42293,50874,20085,38953],229685168262755918475377507],[[13001,44054,406,13321,38302,50555,19113,20965,21350,48202],229685158265854744568263934],[[19347,20273,51371,3220,24273,31631,38884,15639,15760,47635],229685167765227656129320652],[[20401,50579,3203,3523,19310,31647,40563,14228,15761,42294],229685167447395245541528273],[[20413,50605,21097,3522,27672,48514,14027,28130,50559,27614],229685163062910299048498770],[[27581,5484,625,16171,50850,11000,18994,56965,63081,50757],229685158399611628026293641],[[27802,43852,5951,30593,49795,50921,54698,21273,49682,57208],229685158408920833755994898],[[48026,20264,51406,1012,4291,11662,43162,55357,20142,39181],229685167949303173635242891],[[50601,49321,3862,28183,20022,42129,15298,25748,38380,58737],229685158142694614466439846],[[43836,16149,5965,30612,13973,12847,25582,45593,47594,61966],229685157928359632257293559],[[44043,16431,13136,20381,38675,40595,54365,54744,56010,40277],229685154135273217693623541],[[16466,5966,20274,19171,39113,40289,14024,15822,44689,27615],229685153442919352151819136],[[21069,2524,4301,21993,20692,20387,55233,33457,51954,52233],229685157768326450685486303],[[1008,4295,24287,40244,42692,25091,28221,42229,48923,14601],229685152795270513319917756],[[3209,3870,31651,40591,48555,13329,14223,25097,38919,48084],229685152951761416236205171],[[4285,6118,6961,40278,43180,47963,15303,21472,25740,51410],229685153144596320766610321],[[5407,12454,18824,15532,51474,14796,15315,52604,39186,19606],229685152945391057704047417],[[6104,10949,18829,48521,12988,15654,20151,11499,19751,45889],229685152767685866946635593],[[6965,12438,48763,54343,12832,25806,20190,33161,39121,51363],229685148258203111455717540],[[18836,27803,49643,49786,15641,20923,24617,11501,33147,45879],229685148273332825692005962],[[18841,22021,38324,12844,14229,15758,42863,41661,58979,59158],229685147957337781508528988],[[19295,27676,43108,2571,16050,20089,21532,25777,27071,44663],229685148078507248547995499],[[20327,27744,40288,55009,2663,14966,16040,44089,48428,61990],229685148145793009972160706],[[28155,30594,50501,11001,13348,20179,25118,27111,39639,41089],229685148093636952914003486],[[38668,39215,40245,40598,52183,21466,25674,16033,50998,16306],229685139440433298178340444],[[39216,40279,48000,48450,50561,25746,42227,17104,24724,38754],229685139459942683538959620],[[39217,40599,42123,50851,15255,20389,21389,25111,50622,50999],229685139275867133318818849],[[40281,42125,49674,50563,51697,16482,42142,45890,48459,20936],229685139440433293237281619],[[40301,42276,48846,51609,54681,20963,21508,25145,54747,61998],229685139459942688480018444],[[42278,48867,50918,535,15748,19945,26282,40285,14240,21449],229685139061532153267977204],[[48483,49640,54349,13439,20171,20911,21315,17097,42195,50952],229685139081041538660780126],[[48866,49675,49794,55352,3901,15723,47629,48584,24065,56474],229685139275867133318818849],[[50920,54687,55353,13117,15257,15759,20983,30548,56465,61992],229685139087411897577468101],[[52196,54695,55045,13445,13895,20070,47628,54565,54393,54983],229685139096171253501582330],[[54694,54810,13130,14031,21506,25770,54733,24732,42281,62094],229685138903336342117712786],[[54696,54966,14216,21391,25857,44676,24747,28121,49076,16418],229685138757761636802482600],[[54699,55117,640,14989,20928,57227,12999,38101,48085,52398],229685138907716012671733389],[[54700,14156,15652,20144,52018,26578,48623,16035,38600,22428],226473209420220914646447783],[[54701,55360,14221,19979,25038,25771,56956,49179,50977,19003],229685138747011607319650290],[[55355,3899,15825,20317,21000,21997,30656,33155,53412,54335],229685138719260781569375764],[[55358,55371,15829,25775,40045,47596,10725,55017,50915,56919],229685138892586302759576184],[[55359,15821,20988,25021,25114,55028,20186,24055,52317,45880],229685138723640457067965187],[[15820,20896,20969,21414,21529,52583,21374,33449,55425,48839],229685138528814866882570629],[[15828,20939,21336,21507,38388,45111,6147,33207,52179,51910],229685138528814866882570629],[[16055,20970,21533,25732,457,30575,42742,55035,39276,48962],229685138513685147063336939],[[18961,20150,21083,24604,25022,25677,45844,12010,55008,39288],229685138539564906257732962],[[18991,21002,25086,25680,12196,12977,20191,11503,19903,40309],229685138407645389864143628],[[21314,21706,25140,25678,25773,13883,25593,11708,37890,21288],226473212509422285585128343],[[21337,21412,25742,25787,26289,44680,55230,42936,17082,41112],229685138524435196321325083],[[22025,25681,25790,45628,57228,59859,62885,27295,56019,40188],229685138539564906257732962],[[25039,25717,28218,45845,55185,57182,33205,50763,50922,45892],229685138524435191380266238],[[25675,25772,25803,55243,6144,13358,15306,24208,45878,38650],229685138524435181498148549],[[25718,25776,45087,49906,55234,22067,16376,55495,20935,41114],229685138504925800999126498],[[25856,44047,45231,45829,54552,57024,63406,32949,41091,59697],229685138539564906257732962],[[25863,40049,45213,45723,13339,24189,43061,50912,14035,39753],229685138392515679919046009],[[42918,45089,47578,54562,54768,57358,39180,44993,47972,17966],229685138374314637570704176],[[45214,45629,45717,47582,52581,63135,30572,30649,49895,40313],229685138539564901316674118],[[45230,47634,49865,54732,62882,63403,27079,39529,56230,19590],229685138524435191380266238],[[46155,51909,52602,54580,60564,12197,27037,49073,19750,40177],229685138524435186439207394],[[47584,48298,49907,55066,57231,41240,51009,40176,45215,41181],229685138377385974914010621],[[47600,48214,50348,54503,456,22069,25530,42194,42297,56467],229685138535185215932457022],[[51366,54505,54772,57032,57316,15318,54419,54658,56468,61707],229685138407645394805202475],[[54555,55076,56944,57311,27020,40012,62023,19350,56512,14018],229685138224360251471094303],[[54578,54778,56942,57310,62831,63471,55756,19627,45893,72342],226473212434426500078997675],[[55068,55260,57010,57226,21139,32809,48968,44045,45107,61688],229685138381765645478060123],[[55240,57009,57224,14890,17108,21375,38112,10736,19012,45891],229685138530805535489215258],[[55256,57016,58921,59891,62829,13181,24057,37893,59802,50404],226473214765247943919583808],[[56963,57229,57317,63065,63407,12194,52160,56921,63111,39432],229685138363564598187807573],[[57033,57230,57350,62847,63308,21194,52161,55349,38933,21712],229685138389610520266009923],[[57353,58630,60575,63126,20185,28131,33446,16032,40312,44658],229685138520055505995760646],[[57361,60884,63116,25181,27297,30547,32788,50762,52178,30530],229685138393990185888767479],[[58579,62838,62850,63409,63481,48792,55347,14593,57034,55452],229685138363564598187807573],[[58874,63146,10719,13436,24749,27599,49216,38100,40222,19365],229685138520055496113642957],[[58875,59531,60574,62851,63408,40840,54814,40324,13061,40204],229685138284485244173031932],[[59858,63127,12005,20384,25183,28190,40311,41660,39301,27342],229685138370101119991300518],[[60565,63488,10966,20012,20334,24730,40170,41785,54659,21296],229685138515675820611171541],[[60841,63307,13442,15319,24723,27038,33206,19015,50886,67854],226473214946780933363392628],[[63057,643,10723,11325,42959,43561,38680,54669,39297,27332],229685138370101115050241670],[[63306,10960,13904,14939,16436,50576,19906,15831,54572,12412],229685138359351080608206708],[[63373,11326,19156,21351,27070,33154,41650,45317,53240,39461],229685138515675815670112697],[[63405,16942,21061,24211,25185,26610,38755,21046,48829,40267],229685138381765630654883581],[[641,11332,24672,27291,33148,54836,48455,50525,50879,41272],229685138403265694595293369],[[16473,19138,24670,25052,39645,50639,28537,56479,39296,38980],226473214931436638483299526],[[16947,21101,24188,24722,40869,54720,55489,40310,54341,56463],229685138530805520666038725],[[20849,24187,24731,27013,28517,40847,38597,58968,62007,13153],226473212300604477565945504],[[24210,24669,25008,26612,27293,27943,40198,40584,42280,58890],226473208775159225962899402],[[24746,25053,26580,40021,54399,47998,48492,49610,45885,38018],229685138388135984649907253],[[25007,25531,27292,28038,54980,40327,40585,42296,41014,61593],229685138388135984649907253],[[25062,25584,27296,27327,39525,54858,14247,44659,25835,54498],229685138213610197258002775],[[25134,25592,27290,27597,54413,38010,50567,58906,15764,58627],229685138365555256913766722],[[25189,27061,27323,42140,52634,55345,48007,62101,13270,50599],229685138257690993904176680],[[25191,25529,27559,28065,44100,16034,45765,50925,44660,41837],229685138365721434603852051],[[25590,28066,30573,39521,49220,55757,52220,20096,55235,3902],226473208757796024622404471],[[28039,28120,28516,32802,38494,45881,50957,33541,28541,38591],226473210008420385332130503],[[28162,30657,32795,33210,42208,55483,40268,63283,61572,12410],229685138246940959456880548],[[28490,28588,39183,54854,38111,42332,50869,56940,63284,28104],229685138350425546965896562],[[28491,28624,33139,42141,48558,52656,53430,40160,37907,11491],229685138246774781766709281],[[30549,33493,39520,49994,51387,38686,45164,37863,47557,28480],229685138354805222471518998],[[32797,33492,40782,56017,10731,11342,38689,40603,58820,62004],229685138517666494158988890],[[32940,33494,40863,41088,43571,55769,49004,62883,50776,36395],226473212142062687736908827],[[33495,39526,41082,42192,54844,54857,47961,48869,58390,44312],226473201890490660839990794],[[38323,39182,39393,48188,55397,48398,39098,38124,59000,39676],226473212163899238641221180],[[39379,42205,48272,49075,50597,54856,39555,45769,21048,21124],229685138504925776293832273],[[39381,40852,42143,42211,52254,28534,42336,43095,50866,25612],229685138376471469045588859],[[39395,41056,44107,49988,54855,48392,48419,50907,45167,16006],229685138365721434603852051],[[39522,42210,49217,50678,19162,42333,50923,38722,50490,41854],229685138350591724655992837],[[43570,49854,50623,54859,16370,40190,40296,54357,54412,41238],229685138394506343585813089],[[48048,49855,50369,11502,38020,39323,15830,27885,40557,24194],229685138335462014707137007],[[48051,49849,49987,50760,56012,11504,38497,39321,11102,41826],229685138253311318396702453],[[48088,49032,54820,54845,38495,50853,55390,63417,26576,26648],229685138215767058380749641],[[48794,49852,54741,54989,19748,28535,40543,49636,54372,61757],229685138361341759098437767],[[48815,49034,54837,13975,39550,50854,58821,48832,14308,34017],226473212128568784240454935],[[49178,49897,50343,50683,13969,40271,42667,56288,41018,27984],229685138361341759098437767],[[49892,50681,55350,11505,40192,40223,59669,57211,38499,30571],229685138233801932933592379],[[49898,50684,55044,40168,40240,42282,42641,41019,48507,51974],229685138346212049150290057],[[50618,52052,55488,27629,28097,37996,56460,59699,49337,28616],229685138221971239631246948],[[50737,54819,55344,19169,40274,42295,11346,48834,11236,52069],229685138200637348423012704],[[50739,55431,11340,38496,40602,45298,49639,55494,44087,54375],229685138487407074282291551],[[54860,55346,12012,17087,37986,39322,21051,44661,58626,26608],229685138331082339201145731],[[55482,15700,28094,39291,49012,55378,16505,50507,55133,56455],229685138326702663695070942],[[15702,39320,40224,40607,42283,54363,19026,47556,24628,21718],226473211883511969927036055],[[19328,38756,40241,42690,50533,53072,55389,15686,21039,53395],229685138333073022632680643],[[19337,19749,38757,48488,50868,13931,41006,54550,11329,14953],229685138176582109756272323],[[27632,28654,40194,45301,45763,55119,59668,58807,58431,39192],229685138220662906409552598],[[28536,38670,40196,40275,45767,52238,15763,39299,48856,10816],229685138344737538239203018],[[28655,40269,40542,45075,55109,56462,59794,19020,47927,50994],229685138467897688839065499],[[39382,40270,41651,50523,55384,56334,14522,54501,11101,1081],229685138209912871960523427],[[39396,40242,43067,55388,61719,62005,41025,11103,59664,11497],229685138097336577986840234],[[40283,40606,42337,42741,59666,21444,38728,44662,52607,58763],229685138333987503795980955],[[40284,43060,44989,45888,15009,38707,38744,51828,60581,58393],229685138323237469352255755],[[40297,42767,45160,53407,55374,55387,13943,41020,56918,1562],229685138322322988188912642],[[40298,45299,48868,56255,11347,14253,41023,59635,12411,45478],229685138053588136690513808],[[40299,43066,47922,49637,55386,56221,19175,5390,12668,68827],226473214609507315177244382],[[40325,41645,45300,48848,49672,54678,61703,47598,41273,62999],229685138198082178656947511],[[41706,49013,49608,50531,50852,55372,58395,40624,40200,61694],229685138243077456469763795],[[41772,47970,49638,50855,51013,51876,16314,56961,41581,3256],229685138209746694270325370],[[43086,45316,48399,50913,14232,15832,20937,11239,25597,55236],229685138053421959000202649],[[45097,48393,48912,50884,56227,11730,48859,61723,27468,56263],229685138064338171146859501],[[47931,48286,48958,49005,49616,54654,48009,51025,41571,63129],229685138209746694270325370],[[48849,49670,50876,52239,54392,56340,20934,63061,5512,31990],229685138187165966516647092],[[49035,49618,49673,50557,50908,55432,50953,40184,40266,45233],229685138097336577986840234],[[49242,50867,50988,54652,54672,58826,20095,39352,40265,58909],229685138209912871960523427],[[50565,50878,52255,56224,56279,38954,48874,56947,24721,11433],226473211805881925589632349],[[50877,51008,52248,55125,56337,39282,41012,41021,50537,40264],229685138333987503795980955],[[50885,51012,52249,53419,55404,48826,52612,24596,26948,48201],229685138041923621069205466],[[50887,50989,53121,54653,61709,15028,41117,59662,27471,45046],226473211760822205567698235],[[50906,51832,54418,56464,14245,19585,39303,50542,19304,45833],229685138165998252995409852],[[50909,53228,54332,56466,13971,14034,14241,40320,41855,57334],229685138053421959000202649],[[50914,53171,55103,55426,62009,37880,39327,41116,11100,3409],229685138199162837510991118],[[50924,52318,56343,59698,62008,19198,50974,63282,11711,18784],229685138176582109756272323],[[50930,53081,54657,12867,20097,38947,50499,24720,32774,27700],229685138020257374463577637],[[50931,54326,54398,56473,38829,42310,51358,55245,24191,23150],229685138165832075305180022],[[50932,53413,55391,14600,40623,47554,60586,63136,3413,53098],229685138155248218543822191],[[50933,54329,58367,62000,62011,21129,40629,54374,41580,58715],229685138221577387573300467],[[52411,55398,15762,38739,40578,48506,55261,10820,48054,31099],226473211946895115036700549],[[54655,56461,59795,13977,21544,38745,58371,27343,32042,35641],226473211934896634495919850],[[54656,62010,15833,21038,38788,39300,5486,12489,45838,50697],229685137874848851220150318],[[55380,62045,40618,42707,50954,38359,59646,61756,51423,14908],229685137807101657289943091],[[55385,55501,62051,50956,54377,54546,57209,1681,11096,12413],229685138020423552153912790],[[58794,61725,16500,21032,38693,44995,24718,28456,50692,54549],229685137874682673529709842],[[58804,58860,14234,19174,44029,45163,45232,54355,12121,14374],229685138144332006401486009],[[58827,59803,62095,38692,41024,63117,38015,39531,50620,54502],229685137907847258087354605],[[62006,62100,21549,44656,48885,50975,39757,40323,59197,21149],229685137942092501495463796],[[14538,21050,42311,42679,45596,10642,19009,28455,42978,59019],229685137740938665831308620],[[15765,19181,41008,44657,51411,40322,61984,24213,25783,28842],229685137763353215938335223],[[20094,38729,39298,44024,47580,55241,10644,26551,33102,13150],226473211788353324960050855],[[27878,38737,40161,40556,50496,56920,57214,40218,59665,61987],229685138055417099019336305],[[38627,41113,42308,48879,50493,60587,59919,61645,11706,40891],229685137898177882479144341],[[39456,41115,42309,45597,48838,10734,61771,21872,24244,24727],229685137763353215938335223],[[41022,42916,45085,48827,51004,62845,10636,27334,18895,59107],229685137853016426908306140],[[41118,44991,45592,54376,62848,13272,26959,45532,14178,69034],226473214293182654821269920],[[41119,42861,47555,50959,63147,40307,14936,29417,33103,63297],229685137740772488140771260],[[45884,47576,50976,55231,58797,40154,16949,25587,33584,38955],229685137740772488140771260],[[47918,47981,48296,48854,51024,12669,16948,27349,33586,40896],229685137718524115722094623],[[47944,48066,48952,50958,1564,21877,40755,59845,68067,38647],223215077741613643947148461],[[48029,48212,48504,48828,54560,37905,40202,61425,1080,39195],229685137785767766043174431],[[48149,48505,49651,54354,59674,41609,61589,24212,45959,47562],229685137763187038247814079],[[48233,48977,50973,59675,13271,38501,39715,61969,45774,50695],229685137673357649552189928],[[48858,48972,50972,57212,63285,59637,61428,3262,56235,16437],226473208563582147375885975],[[49650,50978,50992,55134,58575,63110,16953,21660,45839,7585],229685137853182604598762292],[[49683,51002,51880,52606,38008,38500,61552,49497,56672,21431],229685137650776921745778351],[[50955,51019,54497,38136,39720,59143,61701,15662,16955,6231],229685137538366805188728030],[[50979,51367,55115,58922,62843,41298,24245,24726,32807,9630],226473211583206255486316203],[[51018,54373,54556,12886,38610,33117,41043,46139,14207,19242],226473211181926437384537749],[[52019,52608,55132,55186,62844,62852,1245,10638,25589,11981],229685137853182604598762292],[[52609,54576,62842,63109,13064,26669,41042,48820,56667,54444],229685137605947821507565524],[[52610,55136,56954,56996,11242,37900,38213,27346,53170,63137],229685137650776921745778351],[[52611,55135,57011,38214,38545,40206,24634,27034,56668,1135],229685137515952255059745418],[[52613,57210,63053,13465,39721,40308,27942,62136,52621,64025],226473211574624469154704068],[[55137,55182,57323,63411,10729,1247,11098,27467,39424,64046],226473211666064920133513713],[[56993,57328,62879,63416,13885,25822,28041,41094,14175,18366],229685137583367093694526775],[[57213,57329,63128,63414,3263,12324,16432,53120,55457,41732],226473208381211927959151737],[[57322,60580,63410,5388,5492,15649,27978,30569,3707,14206],229685137448542426968924421],[[58399,58876,59703,63413,41161,59212,21666,25613,11317,46091],226473207617057041538696868],[[59702,63108,63412,13458,58558,59937,24667,56456,62563,63118],229685137515952255059745418],[[62982,12882,13273,38498,61415,19746,21874,27715,1138,11432],226473210884973082756096335],[[62983,13664,39756,58512,59154,24598,26987,50666,19516,63169],229685137268551293914672390],[[13669,37898,38340,58327,58609,59191,27022,27336,27359,63172],229685137178721905025597208],[[38005,39716,40219,60105,11097,40821,14142,58468,13928,749],223215061613197042067541625],[[38212,39717,40217,58308,58525,61568,27016,27354,38137,58432],229685137178888082716541214],[[38215,38538,39714,41205,61556,61644,11336,12465,12343,51456],229685137178555727334653082],[[38605,39723,40306,58691,59217,60104,13906,16019,25588,421],226473210793869700430087347],[[39752,40152,58782,59145,59694,19894,21104,27464,56924,58653],226473211209878953398332241],[[40186,40220,41570,61555,61717,41077,58863,45925,46322,64916],226473213700259895228123672],[[40321,41628,58524,61447,10721,12459,24666,54436,24072,47862],223215069987136332809955383],[[58310,58461,59140,59663,61685,16951,25610,27344,33631,39533],229685137156473532552477733],[[58329,58362,58699,59142,61750,12666,27348,11489,12818,18253],223215054898374818726933993],[[58365,58692,59155,59216,60252,40816,41845,70057,19193,22375],219908667072518207576456059],[[58698,59139,60111,60261,61964,25611,25834,32793,32850,30861],226473211210047487882108978],[[59144,59190,59693,61554,21201,38125,45818,50669,23155,11429],226473210748236282823985886],[[59146,59213,61445,61965,10808,27712,18328,5710,7328,66828],219908649464209918905794486],[[59156,59196,59692,59985,61777,61968,11099,28005,30545,28596],226473207480468974602610878],[[59157,59695,59965,61418,12710,24192,59042,47577,54434,6340],226473207434667021842286696],[[59159,60110,61691,10715,16952,19742,24636,14441,28513,11576],226473210725335306775418376],[[59160,60123,61967,10804,24193,24632,47558,25079,27838,2084],219908662441788899165495407],[[59161,60164,61639,12488,16007,17036,25533,18789,19621,21157],223215070144589383141766768],[[61453,61559,61981,16018,16470,17055,25586,59073,62109,72870],226473211164582604843676194],[[61553,10817,12326,21878,24630,24665,30546,14154,32010,25321],226473207896083877265414302],[[61557,10821,12667,12715,25534,40760,11306,17976,25113,25229],223215064093445227691809613],[[61558,61638,12120,14831,16223,26958,59910,52252,24542,56717],223215069565698241744028420],[[61970,1677,19319,19743,33120,40819,56232,59882,14820,1027],223215071517192934673835471],[[61971,11233,14799,21876,25536,28925,32786,32844,45345,3324],226473210899522257108040669],[[14886,16241,21073,21873,24719,27330,27373,48339,26484,3145],219908668850174666889467762],[[16428,19900,21875,25823,33157,12369,15802,19313,73270,42520],223215071969805225230555654],[[16950,19136,24215,24638,27345,41299,45776,15738,21026,11664],226473211096048211301190841],[[16954,21652,21879,24248,24745,32771,53524,11653,822,6170],223215071493957686535155149],[[19154,24668,27040,27954,33100,50774,56513,18313,21305,39080],223215070136071686440910377],[[19747,24729,27347,33104,48795,6229,12528,31566,11176,11515],223215066350267141864562094],[[24214,24742,27595,27685,28667,45288,12825,22031,5419,52277],219908665933149827751915664],[[24249,24743,27509,28454,29334,33545,50600,23079,27879,60598],229685137043902248626225129],[[24728,26532,27368,33105,50671,3258,13607,15819,67006,22757],223215072471879878562696779],[[24744,27555,27656,28068,28843,30534,45287,62557,7580,48932],226473208893582154001802485],[[25535,25782,26949,30543,32862,33101,40878,53089,62020,1062],229685137044234604008308104],[[25594,25827,27519,27985,45544,3704,21541,42854,60289,50119],219908662700173402436418073],[[25595,25826,27979,28014,30568,3706,16453,18788,17776,9573],223215063933122571409944502],[[25596,28678,29339,30536,39530,50596,56669,62125,55453,40995],226473198670537423894621065],[[27006,28457,30532,32856,33107,45836,10624,11486,14549,11960],223215070852357282029371595],[[28830,28905,40761,41844,53447,59851,62138,20090,21534,28111],229685137043902248626225129],[[28831,29390,30544,32777,33123,41811,62115,12440,28698,3331],226473210876452746590746338],[[28928,30570,32800,40881,45340,49086,56278,15776,42149,1503],223215072149401726499484008],[[33106,33126,33587,41093,41709,45289,62054,14190,23064,48933],226473211149239011414429528],[[33150,39427,40894,41932,50624,62143,11496,12345,52614,62164],226473210723696996871062702],[[33585,33641,38936,40758,56241,12342,21422,48143,11741,52779],219908666255121303544583897],[[33850,38922,42997,45406,50621,50771,31543,49798,35640,38568],219908666696170318014374000],[[33855,39532,40822,45483,45775,51391,59066,19002,63175,18194],226473210754294166386206356],[[40875,41092,41790,41940,45004,62104,12533,19298,67816,58884],223215074468255449727481970],[[40880,41078,45074,48821,62137,19344,23721,62150,22638,14881],216551774320658448365624176],[[40897,41668,43902,45413,49539,62142,49339,25194,5258,17220],219908662712408594113370532],[[41095,44112,45009,48796,50748,59907,63054,70070,3891,44443],219908665140011446022819353],[[43905,45096,45954,50751,56485,61162,16173,823,56699,25701],219908650970588100723664154],[[44117,45821,48091,50777,53400,44408,45007,54561,8198,5719],223215067436111325144773563],[[45777,45815,49223,50672,53401,62556,51911,51869,38097,55149],219908653126282437054956000],[[45820,46169,53394,53533,62026,371,1063,15613,52020,27567],226473207343400185267157848],[[48285,50595,50750,56287,56494,56673,12447,19591,56955,63512],229685137043736070935183461],[[49183,50625,56238,56454,11731,45608,59745,22056,39386,39643],219908652643303055751905865],[[49361,50698,56457,56487,60469,11478,49835,60831,21568,62210],216551759027429619130090998],[[50745,56452,56507,59072,10631,11641,12366,27886,5524,36132],223215063932331825830551722],[[56254,56459,56492,11480,17965,31549,38784,16235,59720,17548],216551778588500415334847046],[[56453,56506,59850,11997,14001,15803,56928,41968,16255,60358],219908665448155438217367673],[[56458,59884,60878,62141,18894,27759,32009,55419,23700,59570],223215072316376657930359840],[[56666,59067,59879,61772,3705,14188,19342,31584,68837,5920],223215070266315743171620072],[[56670,59848,61195,62048,62560,32015,62849,19600,5889,21505],219908664578575860306578107],[[56671,59885,60834,62562,16373,42862,47601,52619,63492,23244],226473210944357413439365598],[[58462,59906,62124,62139,11735,20932,21024,32056,1874,11027],223215071941010897326050890],[[59052,61751,62131,12496,16203,28460,28549,1762,2688,44051],219908662896600197335391464],[[59911,62130,62140,5394,6228,12497,51368,55460,13142,23266],223215067585850178996605219],[[60499,62110,5397,5503,7445,19539,55187,62853,38825,28196],223215074505362538488514654],[[61172,62558,11487,12806,13828,44664,66411,48899,4633,26791],216551783261148170627626831],[[61203,62559,12344,15635,18371,44088,47581,35635,3154,34310],219908661638631567561012037],[[61778,62561,17975,18329,20957,21233,28482,23255,35318,59917],219908664161834314997495624],[[370,6230,14163,15737,15818,18890,20092,42752,38052,18617],223215058866059685786683804],[[7448,12318,12368,18892,19586,20933,30348,59627,7804,21667],216551776361952202377028484],[[11384,12321,12367,15726,18372,42786,47560,56962,34355,5256],223215071939499954091562337],[[11386,14139,15721,18794,44040,54408,56948,1870,27857,36408],219908666353150767818128798],[[13586,13863,14165,18893,20091,44670,25198,3878,32305,25750],216551778902840346291147399],[[14152,14276,15757,18790,41965,14518,42663,30866,28206,30904],209676851943259765361486341],[[14171,15746,15857,18795,69035,49808,50411,34434,28222,35852],209676851632399525576752968],[[14172,15741,15768,19147,28664,32008,22003,30850,56814,6439],216551777622653939578995143],[[14199,14351,15756,15854,16481,44668,45604,52616,18143,39825],223215069809751004004438114],[[14201,14407,15865,18782,18791,20926,28464,31579,11977,23973],223215069597379889238340010],[[14594,15862,18778,18888,20910,20962,32012,24066,51388,45708],219908659523413885942160498],[[16379,18792,19129,20927,20992,28510,44671,14534,15036,12853],219908668941571094231808696],[[18312,18793,20093,20931,19237,34454,60274,60418,32205,38570],209676841704941555476765736],[[18889,20909,20961,21123,22347,28487,44669,66072,26480,243],219908658325813197131704683],[[18891,20996,21256,22356,44046,64308,992,8205,59462,57030],213142036411544933998608135],[[19008,20955,22917,28105,31989,38624,30865,4820,26358,30940],213142036503402530938754259],[[20994,21118,22405,27702,31994,32062,49574,11005,58586,32255],216551785205732376700205219],[[20997,22916,27588,27650,28508,16244,11012,58535,34426,10580],213142018297958127224687910],[[21008,22923,28512,31993,38948,45216,63422,66066,4624,23033],219908666544923006948367886],[[21010,22374,27548,28465,32035,2691,53112,11272,14236,11482],213142003695326468246768843],[[21014,22922,27508,57035,63148,47939,34322,7472,52654,29060],213142034767561005919665215],[[21015,27518,28461,28572,32057,43441,13110,18505,40989,12801],213142009994939758804248079],[[21022,28486,28675,31540,52139,6130,15644,13782,10769,8138],209676820688013955567124018],[[21027,28110,32037,46894,55461,50405,26478,13123,19382,65060],213142011875281884017168614],[[27679,28719,31561,52323,57493,62901,8595,14765,28238,46150],216551781911494259637688856],[[27818,31992,43908,46318,55264,19635,26482,26364,6437,36166],213142030364602842026138775],[[31546,32013,42435,55238,61242,63421,66404,996,44367,21716],216551766642511788818844739],[[31988,42434,42917,45924,52618,55258,25084,28202,5445,28951],216551782484939992542891019],[[31991,32044,42436,55189,60593,66070,22327,12799,5152,506],206329205719049407918643935],[[31995,32063,51448,62904,49587,3343,5260,39842,531,11948],209676841019896701103078405],[[32011,43910,45108,45485,54442,69041,37860,14756,19834,52636],213142021944209033091854884],[[32014,42437,45012,45086,45480,55183,62900,24067,26978,17189],219908662501729727051212754],[[39430,44413,44665,45609,55190,62905,39079,17067,8894,3399],216551753071400034480267678],[[44030,44667,46907,47595,54500,57247,5884,40096,22055,3903],216551778889253031636107475],[[44666,45682,45931,47564,52617,42699,18149,28622,23997,38055],213142020259119052413594733],[[45343,45688,47579,52620,54547,22045,40100,62731,14853,41218],213142028108694736540860091],[[45348,45605,47599,54430,57221,19275,5262,52330,22890,2124],213142029828192977276635535],[[47583,48057,51412,52615,54559,57161,59574,59268,18195,18577],216551768943950550519475047],[[47597,48094,54575,57155,42877,72008,13161,35634,22308,28556],209676844665729644881234508],[[48213,49731,54504,57110,57341,41958,12864,17944,33270,46122],213142030998972477984399275],[[48297,49363,54406,56922,57250,59775,35308,3334,4019,8243],216551773286429624881025233],[[49730,50184,54432,54553,57223,62880,63418,63506,49080,55846],223215071425059193041326713],[[49762,54557,57157,57216,40978,39103,27746,17350,33222,17066],209676844603413239312694595],[[49763,50222,54551,57012,57222,57335,38967,39769,32247,29039],216551781439619276700869867],[[54563,56926,57217,63003,64281,8580,43877,63237,41740,34621],209676840394490251169104045],[[54573,57159,57218,60156,63294,63423,24543,26603,26796,47868],216551775502174162578468468],[[54577,56941,58576,59090,62855,59579,16217,41587,17064,17178],213142030453250344572830654],[[54579,57219,57241,62856,40976,24071,21394,52664,22070,29065],209676842904284192423220768],[[55232,57400,58877,62886,40974,52152,23903,32199,43858,25436],209676833637848131519933355],[[55239,57093,62884,41951,47976,51995,63317,19866,2044,50616],206153406112726286774849188],[[55242,57220,57244,59744,63349,63498,38163,37877,19776,38589],216551774983005323254409729],[[55246,55418,57340,63424,64899,64423,1754,14731,732,25228],209676843509361223616790953],[[55248,55456,57409,63425,68091,14746,55569,25745,2426,11650],209676826384806289733008333],[[55249,57484,62887,30860,17343,38077,12841,16214,57272,13179],206153416373242024405122919],[[55262,58438,60200,66068,64410,39761,24536,60331,55872,55723],206153403119332469385656613],[[55265,59045,59774,63062,65332,58376,44084,46052,12218,44271],209676803222546480386613864],[[58923,60592,61175,63166,63501,71790,72028,26965,19760,55542],213142028064215862881493841],[[59055,61165,48362,49566,15035,41600,46329,22293,11955,50189],202568711395975875371796898],[[60599,63186,63419,49579,50410,26367,55849,27901,17360,21585],206153408749754194531865735],[[61253,63295,67021,19614,11025,58713,46763,60813,43663,15891],202568699073849828566819998],[[63190,63420,42100,27805,10749,13740,19799,34645,35871,3030],202568684573018126977413186],[[63296,63495,69040,42107,34026,11008,22881,19257,56171,49495],202568695628205262649754442],[[63352,63507,38153,39678,10742,13133,21092,53199,60362,11537],202568706730929643678417765],[[63513,40980,30379,72872,18958,47040,18013,11521,49212,45992],198919407960413392959148280],[[13940,43426,51837,841,5459,8642,27526,25415,1028,3173],195201922822930458549901581],[[14558,19176,42176,11656,72351,33890,59463,46172,31413,41792],195201914601474581787968371],[[48227,49879,51929,59262,9385,28228,17572,8643,68465,41629],195201892244168740497167805],[[39662,65328,40097,42545,49039,41412,53304,50194,22071,52054],195201911256086003436776481],[[39667,65333,58348,58538,54253,13770,50228,25428,43678,32334],195201901139250238256277390],[[58671,59565,7467,22332,42564,62810,53672,8247,62458,21865],195201887814921500057730035],[[65329,40101,59618,10681,41671,55565,25239,14263,61412,40564],187739168859317968918164844],[[67233,72864,11986,32307,15657,32212,25425,42791,24475,62171],195201909211406311455468121],[[67241,31092,845,42776,52978,13752,19782,11522,38065,40988],195201899268816988652686940],[[67615,1511,52956,11015,14787,41414,17194,18177,17552,59854],195201897649092067359130638],[[67632,11020,2687,52930,58589,39640,60013,60850,50040,49021],195201896179535242334569355],[[71823,28212,3875,16232,18009,61586,1399,63040,17335,34446],195201908805583376983510233],[[72866,59260,3889,23893,28232,46324,55584,2736,19886,35855],195201910826146302496615714],[[73281,59266,4815,45188,8073,50236,11533,30089,41445,27039],195201891024698620287662406],[[5732,7468,9631,28582,6164,25453,28017,19860,5952,35062],195201877242042084951624443],[[7471,6133,11747,45171,47027,29723,10925,33302,5146,23489],187739189378605283048741978],[[5472,8619,22000,27566,28950,41429,25397,16983,32269,5139],195201909823419599249359864],[[6136,8879,22044,55855,17939,42686,8620,10436,19172,40523],195201884332422167783838649],[[6139,9637,26361,30859,52632,28122,41228,23261,9735,51203],195201894260211301719651290],[[8892,9375,33897,5523,47739,39102,19854,25948,22408,16865],195201899283288016202121819],[[9636,21417,45902,28745,55852,6343,44480,53162,21525,21033],195201895631059394049203977],[[10385,11022,27911,46325,422,49177,26404,30019,3568,4711],195201902744383600881093856],[[10398,27892,46328,423,41234,22758,21707,30024,89,50685],195201887584677221314362053],[[42737,13120,45019,52945,11175,53265,14267,50160,55873,27007],195201897976313881833572377],[[18988,45894,8071,57516,21504,53356,730,45055,54985,27817],195201895891839021411281318],[[19280,24537,42567,420,54259,51844,14293,18941,19783,72333],195201899009854751958047688],[[22028,59814,6167,41212,22394,6432,29061,41676,13985,5460],195201899370204021130347870],[[58838,59457,56822,6173,32230,33165,25443,27866,55098,40776],195201885855737575089871737],[[59456,60867,10669,11428,63247,51403,14008,14667,55172,61031],195201874282265573125372537],[[59823,21687,11440,22839,15128,19219,46754,41697,36150,4621],195201898434656520360150330],[[60401,11285,59942,13223,14329,15152,2127,55539,10114,8111],195201876770226918927510413],[[1031,11270,54252,25435,1331,14005,2887,26916,38785,61135],195201883714747739607810535],[[5536,28956,47732,42676,17934,7798,16472,30776,40994,21003],195201884404243437587949641],[[11447,28019,51862,19888,17217,31425,11517,35191,38724,13974],195201877657799066063253989],[[11595,28046,48900,52794,44105,46096,700,9718,48148,52385],195201877700528632512244226],[[28957,43885,49213,23044,17010,46778,53131,35495,54539,24773],195201877278568234821209321],[[29736,15184,39171,1398,44343,31422,46787,25947,35181,50366],195201885088415027507373398],[[38108,39634,60038,18508,49176,13702,21072,49020,50961,40516],195201881375125161449453315],[[39400,39658,39827,53181,16487,16161,49316,33917,19662,36543],195201876185438490941466661],[[39660,49329,57511,39147,44317,50101,57007,30785,25452,11777],195201878480530204740932776],[[48044,49353,41702,61614,26919,39342,18190,38743,24966,26995],195201866065917388362498078],[[48081,52642,39845,25338,24159,43842,38090,40836,50593,53270],195201862611239404590512141],[[54258,58732,62825,2893,533,48024,18179,55702,61698,73323],195201862207170425720529534],[[62720,15202,26584,2882,11752,17764,13722,55976,6936,51426],195201854837079393567876015],[[63334,33143,44396,21084,17205,39367,60814,41662,14535,69908],195201866441022111182358612],[[59753,13239,13677,14335,24499,59935,41681,22002,12815,44357],195201858319660973948542716],[[41431,1336,22418,13988,51376,11538,13681,13145,23156,11600],187739143845368550722242065],[[4274,57022,25316,53148,16191,31421,60844,14981,25690,6132],195201869849522779322884033],[[4277,44399,21526,11757,60346,2739,5142,18414,25819,70457],195201863287865406335696221],[[22370,22814,16484,44102,17784,46785,1032,39146,53125,55669],195201880353197766840516643],[[57255,41520,25342,21736,31418,32241,34653,7238,58631,55932],195201867453952827349587103],[[41519,55587,21701,45700,60327,11531,24502,22591,3328,54371],195201877521453355573041864],[[63080,21114,17173,45614,49340,17534,30756,33958,12085,19666],195201869955308507402831032],[[25450,14843,15607,60315,5537,18169,16166,25866,32003,70461],195201855343701174986360577],[[51419,17208,24156,45028,10673,18200,32301,21206,4825,58588],195201874365456503917306210],[[15629,19777,33348,11950,12185,42758,51939,16196,56626,33861],195201864390532221741831266],[[18971,25956,7316,44463,28552,17065,42951,10600,56060,5970],195201853335359690098798644],[[19761,22587,60559,13177,53626,2050,55637,65318,1052,16493],195201844396904443218826184],[[19798,33364,58844,10914,42745,2086,52029,2340,38842,61817],195201858267443639022314394],[[25117,46794,59516,29035,52264,31408,19661,2901,18298,47574],195201843757243774801209275],[[27920,698,54988,24423,59924,34364,6335,31505,38801,10903],195201857154180814179051980],[[30779,60321,28170,2035,24454,56812,6334,6423,52207,20435],195201864149159485911488183],[[45617,46761,11287,50077,58601,30759,13697,25473,13571,22030],195201847362433107822822653],[[59540,2421,6456,29030,24451,26591,9726,14619,6756,24706],195201853235786075536285581],[[60352,60568,27527,52304,8074,21226,24138,10219,14251,10448],195201863271675136419618581],[[6461,12181,21379,33172,14272,8975,13980,40010,18020,30214],195201842621184032162882349],[[17767,42801,24464,18187,19856,35354,14302,19216,22065,15940],195201852788433496215362473],[[28114,29034,28590,45187,25240,36159,2896,27758,35864,28042],195201842629970677828552783],[[28142,29056,55866,21402,33136,9723,50340,41928,25310,69029],195201843907062208028814382],[[44450,52295,24434,18159,56828,53175,33921,60495,20521,18907],195201852242338201546126387],[[44456,52348,28044,32309,17538,34644,8944,56966,70449,53535],195201851907756108907976436],[[44485,48061,14794,18210,17045,42890,55700,25703,15812,60250],195201843526776118236020799],[[44489,45170,14297,25955,8983,34343,44386,41425,3579,13498],195201854175072305519226616],[[44494,54840,46112,44398,63072,30372,9210,9519,24658,58578],195201861525655446832333702],[[50076,54849,58550,58731,818,35992,12065,2597,1263,16297],195201846749884974645946980],[[50094,2039,26597,17025,8982,17562,43368,2599,18379,30433],195201841506468628217638234],[[50095,55538,815,22383,30784,655,1594,24626,3059,23149],195201832660165390740869532],[[50100,55541,39172,50230,36148,19605,13968,54541,65322,64144],187739120541557467895316006],[[50118,10685,44397,17574,25962,53268,55636,43381,65148,429],195201836114480178232722916],[[58714,50234,19851,31410,33931,35838,9231,21403,60943,70448],195201850477144838042238647],[[8068,14957,33935,35102,55865,50019,50970,31951,41800,36541],195201832831526000164767448],[[57044,62156,5921,17326,17564,42064,51539,13156,16905,50084],195201833095489345682208816],[[63050,19883,27847,33948,9730,22877,54338,43377,66939,6401],195201834659127763566715674],[[21182,24139,6486,3321,5741,55701,55661,69024,6697,28892],195201826980844418388589738],[[41720,6438,25950,35151,26700,41499,28511,69025,54947,24687],195201826505299432508447511],[[42851,34620,36141,2744,4707,14519,55680,25305,35870,45386],187739116153655096555615232],[[6487,22648,35359,4636,29244,14298,25421,5559,33382,14576],195201821674302225322012234],[[17366,23388,30094,22406,5473,33777,21380,55703,28304,47163],195201832739777476159984403],[[23367,26405,30403,31389,9731,55646,55685,20075,44610,71154],195201830111523676272980485],[[33286,33956,35146,2745,9580,14656,21049,14620,16216,46110],195201832938970617149794602],[[33946,34331,35983,51969,8246,10325,2875,3896,33816,44830],195201838606024670343312443],[[34652,35468,36157,36350,18420,19824,48232,5588,17437,44159],195201824870199106156582984],[[34676,36139,50215,3571,8264,25643,56620,25395,855,37374],187739116088985593532030789],[[34677,35841,5144,6418,8889,48159,13328,30667,30991,39223],187739114528361808256660192],[[35107,36354,14918,4642,4822,25682,10718,3373,22062,18378],195201830190078770836424490],[[42927,4211,4915,8265,52216,14212,31405,24897,42349,5831],187739107180386987750329099],[[50178,4215,4907,6415,47132,62311,45530,12268,3876,10521],195201827064951114582930963],[[3172,3585,4870,5149,7952,16980,43372,5470,19733,24967],195201826294572318136745966],[[3584,4022,4867,10318,7963,28067,6135,38485,24972,631],195201822840047610183097711],[[4630,5136,6314,8457,8876,19165,1723,28199,41620,18061],195201829668995791371234263],[[5154,8262,8612,22840,118,24716,3428,16695,9930,25659],187739097265046630419194248],[[6317,7226,9294,10439,22360,48857,25692,25359,10581,24819],195201823602775783456619073],[[8242,8371,8462,8949,29197,22815,55131,9501,28209,19708],195201827078825976319976143],[[8263,8635,9526,9714,55647,1262,20540,10894,11041,38086],195201820431140956582286775],[[8376,8963,9295,22415,48833,50967,20964,10586,1468,8766],195201813382902238604880880],[[9310,33762,13981,14615,48243,25390,32796,11495,53526,17435],195201795388209834373176017],[[9311,9719,10502,135,52380,14167,9486,10115,61731,5800],195201812311633230817355941],[[9312,10206,22883,2337,107,55690,50738,25877,10471,16671],195201810679676175592833789],[[9313,31516,13706,14260,55691,21009,32006,36415,22583,14824],195201799837637933309671160],[[9328,10505,50964,55148,24756,15548,25366,6141,10716,11860],187739088906001901910385385],[[9329,17012,19217,50634,14227,8881,6166,5681,3078,8794],187739080875039021037187625],[[26698,53309,216,55224,60465,69028,62209,31914,15096,42269],187739071647275735860746242],[[42073,41512,228,19626,25661,3429,10724,28327,55658,2915],195201792748331901573649384],[[47135,62290,44347,13453,62452,12890,31386,34177,20481,20446],195201789514161018239948116],[[53300,61053,50148,40856,50699,28354,14616,55982,49026,62247],195201791291067621386885079],[[53349,61020,41710,52197,55223,50779,62208,11043,16234,57435],195201791071994504586337426],[[56184,53104,38826,54464,20280,25401,19384,66683,23245,18632],195201789288660573359078795],[[202,24662,55670,20313,1596,2871,69730,41617,43837,68411],179967164375305757889976548],[[53187,25577,55679,62453,2860,15917,5323,683,34258,9961],195201784245532189853547254],[[52206,25521,20437,25778,56627,25385,22032,19245,23744,45511],187739066928589362768541336],[[654,40873,13347,25472,59889,2874,69983,36050,13126,46703],195201782421452381475903030],[[25687,50765,55147,40901,20063,48809,11007,18095,3107,59967],187739065913804916585885148],[[25706,40019,55688,25482,25525,39516,46039,59369,7077,18849],195201782823851508726840957],[[25711,13452,24713,25867,2888,25434,43400,5329,6957,33535],187739065898878365381966495],[[54466,1719,45841,15792,38093,43476,685,51158,508,15333],179967157214771831892619601],[[55664,25483,45542,12271,60972,54465,70453,28069,32335,74509],187739067267455860895185122],[[24592,25876,41936,2891,27257,45217,62253,65310,38949,1557],179967164075582742192276064],[[25579,62459,15549,25358,55599,10510,40451,9927,35213,8994],195201777758358682231518290],[[40884,49537,21852,25419,39495,51780,42425,26162,72838,17439],195201780060541641876198512],[[45822,25367,27236,55575,16395,66827,10601,27844,449,30005],195201781086702021707455308],[[56621,27015,33511,63454,19538,52110,45178,15156,38391,72602],179967159131581601632476393],[[25458,43493,14404,18760,43332,52097,17479,58537,59374,51585],195201781833004012588311527],[[28040,32803,45234,63130,54386,65136,38468,306,18335,44707],195201781137555266217967173],[[33514,55574,56945,14205,18754,65323,70460,34462,71155,17253],195201780592518673461050600],[[38068,51561,18761,55225,43018,22004,27944,2224,51398,47094],195201779668690962031490318],[[43401,48787,16394,19515,55447,65076,18388,12237,56396,7062],187739066173710484384830861],[[49062,55600,11638,19667,55392,10120,11038,32982,56842,60088],195201781312539217361137891],[[55596,57373,14438,55712,43328,6684,31597,10882,31461,43704],195201779776291802432379796],[[55603,57388,21025,54428,55648,43023,43886,28337,29445,56244],195201781613566601248655653],[[55609,58580,18755,55649,3879,28203,6478,62012,14123,69711],187739064519196074815933755],[[55610,63138,28481,32000,55713,34871,36618,5557,50304,27783],187739066859590431729011407],[[63455,31997,55659,66749,66940,34919,35865,6184,57139,18512],195201780115607381044253616],[[54540,51771,68413,6138,36708,11776,58629,13473,47164,57794],195201779004769213597691282],[[65319,66684,70452,3372,3897,16302,62211,26375,24871,38062],195201780713276663842892416],[[66750,68487,4816,10768,3575,32346,21802,34182,18510,2359],195201778789106063072736653],[[68397,69802,3783,10591,16869,28021,5898,26880,41064,29910],195201778231667790837521935],[[69752,69894,3772,23256,59368,6654,30209,67566,47131,64104],187739064490542940544975391],[[69832,70456,4782,5322,27863,62220,307,3788,56302,61498],195201780515217225899506958],[[70000,4821,5328,9052,52655,26378,23159,30376,18751,9931],195201778566461367791484911],[[4795,10590,58519,20817,26376,12883,26986,65314,29776,34628],195201778117518926935857437],[[5483,10121,11014,16842,59375,32915,3799,16639,7939,29792],195201778246191291359485106],[[9069,9530,62221,6769,12304,51140,14367,1433,14791,9007],195201778141128325569176283],[[9539,13558,36717,42408,49043,26385,18075,16638,47508,20487],187739062914308247294970459],[[10587,34848,38080,32336,13551,24973,17826,20226,8799,27724],187739062834895106958004464],[[12891,13197,28213,34442,6481,58545,40039,67451,26723,55096],187739059537693835549618073],[[13200,17472,26498,58504,16898,61819,60259,3851,64841,67565],195201779277190996175754465],[[26493,34904,17739,2631,13128,28268,60263,72181,73375,7799],195201778618510931872078351],[[26495,35404,61433,61460,3054,12846,33034,41809,11560,23967],195201778807736235624896951],[[26496,33002,61497,17731,33833,3035,14363,34256,41538,50273],195201778960856041063664815],[[35430,36621,748,32977,2929,10722,2235,18745,62837,14412],195201774676305957119289006],[[36075,36615,27117,6679,22001,47193,60953,17876,72133,41085],195201779040760604831714691],[[36429,36710,40517,27289,18389,27211,33853,18256,60080,73206],195201779180831780301622050],[[36624,20770,33837,2969,12309,20529,45195,59325,33852,16636],195201779245805477583560164],[[36719,61887,62198,49757,52633,26391,32324,71089,29234,16608],195201777824443925998947679],[[40522,27260,1069,54953,20806,58553,72604,72235,30654,43645],195201777683126625196757223],[[62199,27278,2618,16832,22029,38117,4310,30646,2480,35013],187739064401893916289308873],[[27073,6414,448,54946,2958,56843,53522,33713,52329,53600],195201777849640342517244307],[[27271,8112,1068,54952,20754,58604,40417,61461,8139,16664],195201778693234047165431987],[[33812,8122,31942,32337,29451,33054,28270,5580,16658,63489],187739066844130862764688897],[[8121,6182,28048,16017,10730,11709,21407,71120,71147,16195],187739062516473323095100713],[[18057,31551,6172,29450,11040,40369,23146,5569,15874,9606],195201774898545017773346607],[[31904,428,10687,28229,27970,26155,40372,6975,7926,22304],187739063092878941322845162],[[32347,12298,39637,61889,21772,5680,30889,20121,47882,17541],195201776558341849308769490],[[39636,49355,55983,56055,19283,1775,2492,29179,52871,373],195201773784019151056224990],[[39642,40436,10675,25486,60254,27956,61066,50663,52577,14378],195201773888128012857022977],[[43878,12303,47187,19291,57480,21384,30226,61073,36195,43386],187739058355612465870478347],[[49331,55977,43526,44631,26998,51187,12088,44452,35556,59098],195201770712094362087794020],[[49722,11035,25492,27968,12887,53531,65311,36524,37857,65764],179967150485494517016144001],[[11032,15951,25487,38106,62263,19253,12103,44063,20210,44822],195201776844220659422494898],[[12834,20559,49084,17885,1844,34176,60095,60668,15074,8964],187739060028949448247318321],[[13115,25493,55722,13538,58596,16280,30231,12002,16492,2471],195201777348658601858162447],[[21395,26373,29444,62262,11704,5506,57140,71152,33716,47316],195201776864501310480408285],[[21418,27194,47190,56832,31846,5903,3100,6942,41688,42139],195201777676240483954066130],[[28239,43537,56058,59282,16268,41361,72605,11999,12099,2364],195201776857494395101306608],[[46018,52658,56057,16002,56360,34259,14289,30985,50289,47118],195201776717241455675800407],[[47196,60912,13113,40419,7064,12067,15870,62959,20648,30440],179967154409086298446337871],[[51547,52507,61136,10735,33844,55901,31683,71121,28569,9246],195201777227539483154044949],[[52468,55717,21786,26384,41608,61851,1783,28608,30988,22407],195201777304329580925245405],[[55716,61130,61901,1475,18822,851,3852,73374,72140,44716],195201777223435400476808154],[[61141,21813,56833,49067,63345,57495,13475,6937,9750,54183],187739062027415799394846474],[[26390,62067,31865,1055,379,72608,47165,5890,41106,8773],195201776257430473664338726],[[56348,62252,18081,38087,13523,18238,63029,53944,19674,67921],187739058951033081175388115],[[38061,26188,43897,18906,59102,67452,73378,71118,12097,24421],195201773305849983724105994],[[41801,5515,45218,5640,3151,46702,47019,71151,71156,24060],195201775817097879533828349],[[14358,54897,629,24304,67381,73379,63031,63208,20213,21347],195201775688842700346606328],[[43893,63351,1845,18535,62234,61888,57141,71337,7803,7934],195201775950663085389694002],[[49369,56407,5641,24880,62240,6943,73084,71466,45525,68331],187739057426708075685448915],[[49377,57497,18897,10848,41364,73136,20250,33332,36525,30430],187739060345040004271347397],[[63356,57482,30407,31626,5599,47018,16336,30897,15250,33339],195201775415627774006013127],[[12796,54911,18017,23751,34257,5740,71110,1873,44160,9954],195201775870299106674352261],[[45235,24311,32325,62239,67382,67505,73043,73132,30451,372],195201772469643834033597530],[[63350,378,26193,62233,8137,73194,24039,30793,30927,9926],195201775659982173454600766],[[17844,18896,40032,62226,63028,72957,42136,47096,36528,41865],187739059003539801668480444],[[18055,59085,10787,73367,72279,2493,24090,48328,65313,68152],163317544893125351900475904],[[18229,30629,10794,41533,60669,11669,41712,26945,61029,67353],187739058571400547574105418],[[18232,31761,40475,13292,71111,12096,2358,21463,10347,46994],195201774587888461159951195],[[30603,13316,4377,73052,72839,41107,44097,44828,60678,38656],187739055537860270914164518],[[31664,59341,64769,67506,57433,23829,44276,47097,61358,55145],179967147711800601417132968],[[34183,59303,10891,8136,60215,71150,24186,44252,62805,36031],195201775057852665589340349],[[40460,10849,72167,73370,44328,47674,47850,62332,41859,61354],187739054889872980175364266],[[13508,3857,6999,16704,22632,26699,30668,5834,1034,27785],179967150258700376815406826],[[13533,3066,3160,11551,16694,20221,27747,34764,19139,38506],179967155042847474929364923],[[18237,3527,5718,8092,12095,16705,24200,9602,8168,2188],179967147469173812702587166],[[18247,4391,8093,12104,23784,24052,30560,32200,47515,28141],187739059225485216561599286],[[18248,1426,8098,1877,12105,24239,31460,44074,22138,22817],195201772775100471737649545],[[61818,3514,64825,61067,72284,5885,23961,3394,26011,65309],179967156610874418585810836],[[62223,3846,4317,73146,63209,11661,23988,26697,58640,2150],179967154171510663871292816],[[62250,65315,72116,73371,72234,44335,47669,47858,38804,74357],179967155651400033758387564],[[7027,47162,71149,71262,71335,27806,30653,22556,22822,5756],187739058212795090085476447],[[8099,57432,71088,71153,26717,31455,42738,22150,43689,61030],195201773448380224308586047],[[60222,72609,61072,72332,72851,23925,64915,11908,42126,24768],163317536628356827856197239],[[64780,57138,71148,71263,72316,73028,30443,40798,52576,48688],187739061043017530854387252],[[73032,73104,63030,71336,71467,72517,73332,41102,44274,38960],187739059415381938103225364],[[73366,57434,73141,23777,40736,41754,47627,48320,54190,43119],171844108988887629917934569],[[60083,63210,73322,18511,44710,50272,47879,60372,35065,42172],187739054668788213061953301],[[63211,71253,71334,71412,16341,33764,42607,44162,62335,66371],187739060545162976898464504],[[71119,71157,7346,12107,14322,24038,44284,53142,5471,9619],179967150838100539285250901],[[71146,71252,71413,33701,42134,43622,21470,23423,28169,35888],179967151069143610423617978],[[72119,72285,72518,19841,42587,15252,20235,21346,72016,62343],179967149856799704814914311],[[72278,72317,15131,18742,40715,50264,14103,52625,24425,55141],171844103930799723974859051],[[72516,72850,18748,33776,49823,52276,53624,24498,1694,20608],179967149545161043690624075],[[72519,72958,19375,20480,25557,20902,43567,68068,38633,39622],163317544827067766239041851],[[72956,16637,16702,17059,29054,15837,9756,23482,10609,58648],187739051674573789308459166],[[72959,15120,17058,20499,25542,15357,17498,47350,60755,3026],179967148464912207283746597],[[73333,18513,24059,24242,26703,14270,54108,68092,64315,61890],171844105874107597955223016],[[7343,19360,22440,24046,29232,32202,9880,9391,48242,18944],179967151212313143797494541],[[16703,19872,23982,29181,44458,19784,21464,9908,34782,29572],195201771183155414219127586],[[20220,20498,21081,26701,30919,42777,17181,20945,46646,45490],187739057730897477092910295],[[20243,24053,24233,26718,26881,40843,21067,54112,45175,43111],179967150376589470110840342],[[20244,21110,22665,23910,26719,1575,21685,50312,8292,30184],195201771228134021344003516],[[22442,24236,29178,33313,44253,5779,7950,16665,21341,13056],187739053832469769920454151],[[22678,26720,26882,31454,53135,1402,22160,23370,42484,58477],179967152924258592276668652],[[24045,26721,30812,33333,52885,20236,56149,30179,68867,28788],179967153741979419864769589],[[26879,29195,42132,50290,50418,7953,20447,60880,34785,29653],195201771228134021344003516],[[29078,29235,42343,42594,7266,7958,62341,17621,36573,19446],195201769579368414898375027],[[29176,30541,32207,49816,52869,16464,20123,23826,51351,64424],187739059443912204881778498],[[29237,30647,30660,1403,1583,16676,9905,35069,2034,49534],187739051108916821313968739],[[29242,30994,49820,7261,7801,15736,20113,34362,15676,37999],171844101243109193054091746],[[30661,33761,44713,49814,50161,15341,17007,28200,58895,42162],171844106886151389437079097],[[32204,33702,49985,50425,51072,52570,43665,44356,47095,51352],195201772842243454894332406],[[33704,42600,50102,51379,47646,62811,10250,29782,29931,35628],195201769534389807393588707],[[33717,44258,49993,1404,7961,21471,23428,8176,3335,16253],179967146574832711202633836],[[33773,41103,44257,1860,7797,20920,47116,27322,9622,45053],171844110375752862841877217],[[42344,50190,50419,21095,30480,44275,50282,51350,36529,64273],187739056953190788584508527],[[42348,50424,2344,14195,15840,33379,47855,44911,11906,11029],187739055783868647329477201],[[49986,50297,50730,52883,47119,47853,56148,60504,59081,1545],187739055964227562220163313],[[49992,53640,1852,7928,15246,17256,9900,33984,57844,54360],187739053490855754519292169],[[51097,52571,1405,15050,22151,53205,53275,14689,39615,32571],179967148547186563027850132],[[53166,2345,7247,16994,17192,21340,8820,16290,46234,8618],171844110088722718154271637],[[2338,2475,7254,15752,15875,9243,16476,54099,65127,65408],179967147735216859061339771],[[2339,5791,14162,15344,21635,29798,34768,35079,57958,25292],187739060668138221126943052],[[2357,2476,16683,45505,17624,30448,57789,46214,5744,59987],171844106852992041181380744],[[2360,15841,17262,19765,20978,16625,16684,4574,36771,38035],171844105299614472097415307],[[2365,15836,20212,5795,9752,22421,47051,29845,38845,8749],179967152562977545164729994],[[7929,19831,20452,44277,8294,9883,57840,64898,68229,53106],171844110470937588614000728],[[7937,15869,20453,22382,7269,9889,35197,2816,45699,13503],171844108626176978964532033],[[14303,15360,17259,41749,8295,17627,47323,21327,9405,17374],171844111978718158429563771],[[15248,20237,46134,47569,56142,9754,17537,44091,22991,28986],179967153758867250088506955],[[16449,22602,44163,44285,53636,61061,10251,19489,22147,67851],179967148389849040177637645],[[19861,22139,26944,47649,47876,23307,29928,44273,23633,69073],187739058224439830882507804],[[20115,43680,47873,53682,62338,62747,44940,30505,64519,58480],179967153568215322646296399],[[21619,30483,46815,47117,62795,22388,36545,30746,35889,30204],171844109774644723924921527],[[44096,46813,50310,61054,62962,33342,46232,39009,74237,68473],171844101113956941550324448],[[44161,47134,47624,53670,8827,16624,34780,28967,13905,47762],179967154519160488751548534],[[47625,50226,50313,62790,62817,34734,34767,52896,45328,46570],187739055556125972831641647],[[47626,50231,55200,60343,61059,34738,34781,44255,57356,3432],179967155806788860139634933],[[47647,51353,62758,9011,29929,34770,66039,3893,4545,73092],163317542812390848026891344],[[47648,51429,61062,9928,22140,34758,34992,24452,38401,37308],179967148149115258885132983],[[50311,54495,61021,62953,8293,9929,10346,34784,8998,66016],187739058177673303654402210],[[53157,60838,62833,9933,29925,29935,44836,66362,8971,45367],171844109786005374737537261],[[54532,56143,60474,61032,9932,34654,34771,2129,28765,5498],179967150443232944042810924],[[61060,62821,9955,16452,17499,34986,10782,1056,22811,52505],171844101160193958605637598],[[62797,62828,9957,23332,29932,11867,62931,65342,3923,58849],163317543189690848358225228],[[62799,62835,62858,9956,29673,29968,30079,36189,38956,65359],179967155934252306774164395],[[62870,7272,9891,17016,17436,34786,23477,5826,41883,23807],171844106223261217990521419],[[62956,9885,16667,17551,29934,19677,38417,3892,51314,68221],163317542978228150451045891],[[9882,16997,22161,22567,8789,14510,2038,46594,68213,41861],179967143172383999681783225],[[9886,17433,22619,34787,44913,1626,35631,3877,55891,33549],171844100064583987390373642],[[9888,16609,16666,17630,33983,57740,52171,5789,65414,69811],163317537782448689057928771],[[9902,16685,17432,23330,35048,44158,30419,45512,6729,21799],163317539100915830561823979],[[9903,17422,23309,23357,29570,5001,35926,28147,5225,47936],171844102355838124537940037],[[9906,17423,23306,29539,54103,5003,14710,3362,14418,1802],171844101069260050210567003],[[9909,17434,30060,33982,35052,29816,2128,35917,27564,20199],171844095845374889467218751],[[9911,22141,29913,44254,46678,45334,19042,68846,35907,14384],163317544423364940555373267],[[9958,17438,29655,52897,53612,7447,28658,8744,48351,64598],171844094528549424241988990],[[9959,22850,29922,47348,57796,53954,28994,30455,33529,68011],171844097421945206593598884],[[9960,17555,22296,57804,57851,9647,49522,64507,74275,13685],171844100540044724215445486],[[22319,23320,35210,36540,10822,33444,14705,39630,49319,54833],154320575598810386467821125],[[23308,29933,34629,36538,8782,2133,28924,48669,3433,46554],171844102140515969354938826],[[23323,34655,35508,36380,36542,44067,44921,74356,19572,14269],171844102129080983830279573],[[23433,34754,34993,36191,36526,46215,46310,24123,11712,70836],171844100775048990578781439],[[29930,34769,36030,53913,57959,9611,8801,6165,15627,25842],163317534432968490399146093],[[33985,34783,36523,44833,57786,2030,30409,42556,4828,8972],163317537203455918629187836],[[34765,34796,36193,36570,1271,46567,19157,35892,22361,48003],163317529477662255281989579],[[34766,34793,35075,36539,47446,57847,14577,9786,30366,17616],171844092467838295480000755],[[34803,36544,44142,44351,53660,30178,22015,16151,8821,39259],163317536313683694943869995],[[34806,36381,36522,53910,53979,23626,28927,5746,39365,9628],171844102351916005012010765],[[34987,36554,44831,44943,22855,29870,46313,24511,68088,66134],171844092488141637337090957],[[35505,36527,44143,44946,23622,24501,64503,68081,43102,73072],163317535592604802824725389],[[36555,44272,44826,53975,8806,9406,28876,45192,48338,17517],171844100153596464329767669],[[36556,44823,44829,44937,53000,52168,58492,1551,44184,48107],154320579158336669280604871],[[36557,44332,46675,29675,22995,33459,8786,27725,19504,53289],154320572789101691678414693],[[36558,44837,47421,57834,30508,41881,23806,35031,19367,66958],163317530731522178797605476],[[36559,44827,46723,52872,57738,5829,19487,28047,70680,75085],171844094540505161821567484],[[36560,44832,46981,1192,28763,16046,60451,34344,43794,6006],154320570677293902962839577],[[36561,47055,47315,47351,24455,27313,3416,16618,14733,16189],154320580346179599567245249],[[36571,44919,46719,47320,53912,23002,4053,19480,28970,42237],163317538621811972031143525],[[36572,47349,47439,57837,9668,60673,23799,28936,21665,66243],154320566465346163782985216],[[36574,47459,52968,46997,35543,2808,12798,1687,35592,1846],154320578223802119251922754],[[36575,46649,2132,69056,29852,13075,1821,19261,7069,22837],134533584132366584677855488],[[36576,47321,57741,35058,19444,4048,21324,29864,1482,48017],154320576592447619086844875],[[36577,53192,53917,9274,60693,25284,27786,17516,28937,41680],154320572459351140197104698],[[47322,52873,57806,23637,46978,64523,28971,74284,5757,24427],154320572461026348002026492],[[47343,53325,23438,9610,30704,67258,23485,74508,5535,19186],144765544254286375060840300],[[47344,53911,30185,1193,28789,48158,6131,27939,24829,8747],154320574913396021230026440],[[52939,53918,9280,57355,58632,22018,10927,64222,19583,70058],134533579261309025681401840],[[53931,53949,57952,10823,72007,35541,14692,51482,64778,53332],144765539503120123592608276],[[53933,57776,53939,58423,72027,22058,14704,38089,31852,40050],144765543108489303680119444],[[57728,57780,29537,944,21990,4715,5822,12474,55273,66479],144765529554686392172190929],[[57732,57739,29821,48217,8992,23009,19632,20472,35010,20457],134533587002458257765460701],[[57787,57836,47514,48301,35009,9661,9008,34777,70262,46076],134533574143940077721934415],[[57788,57835,57953,1270,27737,5758,3420,28703,28374,15753],144765531834439303129271637],[[57841,57850,2031,28669,16049,19437,49520,27635,25161,55734],144765536938430230805210564],[[57845,35200,8149,13813,8172,6137,45510,45168,37982,38635],134533570940453606911304828],[[57846,47509,53330,47752,72847,14564,53024,64549,23271,13209],134533584543274263813876617],[[945,5221,13884,3874,21987,65305,5711,24474,49474,69925],123456475531305024873333977],[[1627,8161,43564,5427,4548,21383,38390,64143,48352,54600],123456485764792187013517156],[[5234,14511,10618,63470,3363,10916,52941,8845,51143,55307],134533566440956714352927560],[[8144,24418,13848,23469,8779,8169,14758,1966,6110,12551],123456487711903244405825718],[[34577,35901,19088,16291,28210,13190,42605,59511,15267,54968],123456487333651393544752347],[[34583,7444,42471,35558,16349,19325,23800,51305,1523,25043],134533568215368631565995867],[[1656,58453,62912,38188,60692,11871,67359,49492,49694,54385],123456479272799516200772166],[[1659,11901,39008,38189,60698,63995,64045,752,44363,42236],123456483022957951517511142],[[10775,60775,71893,13096,19392,44129,10684,12870,20805,38988],123456484326865181273075051],[[11859,26006,38393,72321,11617,64145,65316,71745,48354,54602],111282194933404994770000200],[[42490,38409,72306,60481,10672,65306,14770,11373,48375,54588],111282188145885392587010086],[[49480,60761,34438,35188,35542,5344,27652,15278,42319,68341],123456474289221977360877935],[[53017,72832,35030,28226,1059,64542,15386,44180,1971,48603],111282192545261095571924567],[[64411,71905,11028,11896,11866,71764,64070,71696,58746,688],97600978377647587083853035],[[67265,8996,23239,23473,9392,65304,68237,64105,64914,6494],97600983430775746185454797],[[23250,29853,28175,22986,16381,35597,46551,14638,40062,65836],97600966127652501479223413],[[27796,29865,4814,5228,21406,38392,42546,34773,1280,2153],97600981295426699480351864],[[34458,35178,22059,46585,30465,15359,64558,70450,65426,74274],97600986019036005091671102],[[35916,35034,5222,8959,9404,9466,14639,24509,2174,69719],97600971765386719300287011],[[35557,4712,8893,4568,22072,46213,15465,39414,52194,39110],97600968835040168979303221],[[35906,3134,4559,28236,46584,1541,19223,65320,43805,3240],97600983426023927953208591],[[3141,6114,15340,15486,4579,4648,470,49695,64599,39207],97600951601428654041535695],[[4819,6128,23004,5507,38026,4651,4523,54380,67785,68684],97600957603423590973507907],[[5231,4562,5811,38034,5014,3130,24456,28685,1743,69690],97600958428845177062808178],[[5453,9652,8173,46233,16348,49025,22324,53596,51827,44651],97600967487435476384778845],[[8880,8718,58600,65317,71818,4831,12198,9024,11057,39109],97600967601782384623504199],[[8724,22073,22134,5852,49478,64563,68105,73376,68746,68802],97600970836709358399323702],[[8743,1814,46571,44151,64337,70458,37170,38993,38642,774],97600976334998503556349170],[[9393,45492,12817,3922,1227,38973,3392,55272,66707,69805],97600960921160845920426297],[[9653,28764,11601,49344,52928,4629,8722,72025,27149,41907],97600970630823573041626251],[[9660,58549,11899,19611,6171,16181,51705,30408,5522,55078],97600977105535360757782133],[[14693,13193,59518,52647,27951,22290,5794,43838,38886,48738],97600966535973748723061796],[[60679,60454,49320,424,1799,71785,1038,71906,72615,58934],97600972132828743838004483],[[60484,19387,14565,425,64326,40055,65432,54788,48934,74940],97600955697113164411899837],[[60781,45707,51331,30497,35033,27918,12470,17798,12539,54606],97600964812802384575317112],[[11618,43853,19334,23754,65307,67940,38619,6740,48901,54344],97600962511484882945639324],[[11911,42476,38064,38406,64106,64301,48374,69721,24783,25203],97600956971128879081159939],[[28787,16380,5864,53016,74225,74511,48668,64176,3344,7352],97600980620150698777451544],[[59542,11855,1791,58332,71695,24849,18475,19885,72268,72507],97600957988317346915645117],[[60758,52993,49066,18638,20599,16334,5745,3230,6520,11610],97600972352971859988133287],[[60778,30488,1226,64231,67877,17376,17132,24467,24771,43159],97600961936862795271515695],[[27727,28987,16597,64006,64187,64528,43259,7351,75091,68688],97600962225176703317529572],[[42485,23760,58488,72601,38407,19352,51299,773,40349,24779],97600958594147834662537641],[[28020,52881,38408,67815,69022,43280,49925,68160,39077,68261],97600947602332540718779306],[[42477,42583,73839,71731,18641,11764,5363,6525,30202,5607],97600969038705426447721480],[[53001,52866,74238,64209,8641,9618,5593,497,706,5360],97600963952202312625426747],[[11713,71771,71916,38152,42521,73846,73868,25504,41469,58526],97600957763026078067027869],[[58338,58476,73847,71803,72036,59119,67131,41177,5996,12534],97600961276664488516866842],[[71687,71744,71920,64024,64198,9627,7477,38507,66608,69702],97600954174127991921329752],[[71719,72599,58489,72603,11274,11622,12431,471,58929,63154],97600952475609154606502226],[[72598,74029,38162,65312,1577,11289,73945,12859,58406,71704],97600952253058253457911305],[[72600,74028,71756,15425,18974,73944,11283,11370,72793,74223],97600949792865067774052909],[[73869,74030,64445,71899,43178,19222,1772,37866,13748,74268],97600957633972977762696765],[[73874,64440,65308,73364,43225,5566,38520,686,74100,74273],97600949583735318947803294],[[74031,64078,73368,1569,853,38181,1675,3073,73854,970],97600945222647909966083726],[[74510,48687,64274,72606,54870,8723,5851,19693,1746,38777],97600966748972965805409194],[[48361,64535,70446,3320,16165,15605,7476,58765,48678,50399],97600952341654476829472138],[[64930,67853,70451,73373,9470,34776,54187,68667,66139,66439],97600954493488052895118478],[[64937,65321,71911,73377,54885,19849,66670,66702,65748,40754],97600938602591649302336856],[[67839,67973,70454,73369,64300,64023,67345,775,1668,10732],97600953964783906257809583],[[67954,69023,58666,71836,73372,1744,48743,72179,26936,65095],97600956828246722591393547],[[69026,70455,14773,52974,12200,1810,64897,52472,55084,74319],97600949936720181419297693],[[69027,70447,71720,72607,31857,67813,58747,19461,64182,15032],97600950394770011569153832],[[70459,73365,1477,51721,38176,18058,38697,66535,54450,54621],97600934615210426554197056],[[22299,42559,3131,4556,5799,17518,37376,38464,54638,74544],97600949525494761729438330],[[26099,51651,4620,5018,8772,5606,27664,1920,55741,64732],97600952075544811326049216],[[26125,55915,17325,30418,34447,17136,69731,58676,70646,74687],97600948472766851496446837],[[51638,20638,27845,5850,45491,12472,51504,41916,32733,43414],97600950320819729108461348],[[52954,3327,5019,17519,34329,30464,5662,31403,22831,54543],97600951694911081634702300],[[3138,5015,5458,8613,34311,39240,21286,52203,48941,54830],97600934773398593566373243],[[4718,8765,8890,9004,9471,35596,43371,40848,64244,15694],97600935526600822870597183],[[4720,8814,9463,1794,12204,47973,18023,48898,38001,40355],97600938815157541872889747],[[8636,8719,9458,34427,35189,2162,49699,54604,64617,68135],97600928763747654633523677],[[8877,9459,17334,23274,34772,37206,66848,69926,20373,42193],97600935342541844404311111],[[8960,9467,27864,35179,17134,37375,22416,38995,66727,42204],97600939515040878906941586],[[9462,9623,28931,3137,5013,64498,49509,58345,2979,25630],97600949257720820663369349],[[35012,5862,39340,8748,7480,32567,539,50392,64538,70767],97600939099713363257191329],[[35593,1854,11762,48031,49343,32570,24518,41887,68922,64261],97600947097638592725600557],[[35893,5777,44182,3237,67866,17047,42238,66426,68708,39549],97600931308398163959663528],[[3397,27525,27899,5574,58373,3194,45318,56475,467,8664],97600930030832544960813386],[[11605,12202,20463,23779,66324,66725,37883,38072,66873,69781],97600944248741135334702078],[[16159,27565,46550,8838,39241,30983,5582,12430,66875,66959],97600939438320621359560394],[[16332,30454,9626,5668,74378,17800,64408,70054,11732,18517],97600936825752804865594720],[[17138,45026,9020,5863,7481,27726,38818,27636,55304,64317],97600943435993902808913932],[[19260,20462,3084,5011,1780,750,320,38177,58734,25095],97600936309630897250505617],[[20456,23772,60452,6524,71688,72625,64762,62643,24012,31200],97600951979815579574914559],[[27784,44186,8687,5370,31361,45016,6124,7496,24755,40339],97600940053002933333005963],[[28930,3089,4728,38027,2462,36800,42703,39104,65863,65718],97600927925389607156229981],[[43854,5600,5444,7462,12423,28947,47538,56119,6419,37309],97600951410892189776410766],[[46555,8695,9629,16264,23740,71783,1252,54608,13435,40778],97600936106980378981310473],[[48068,51298,60482,1531,31356,17754,53759,2988,64932,40864],97600940895149292106657482],[[51304,60716,23747,68064,13955,47986,58354,49887,66101,65849],97600941565612007052417840],[[60718,37157,37377,1806,12595,58583,8688,24753,49625,18649],97600935176334015753798138],[[60722,37197,5585,11627,39222,771,27152,49919,64712,64980],97600935338025269407229703],[[60724,6521,12597,30219,58339,59114,43624,41426,52538,13506],97600939957090632823692583],[[4529,4544,36901,849,7459,36778,977,14161,1954,7387],97600928860884034686086165],[[4555,4730,5012,3153,3204,1250,5025,25066,43113,38694],97600934450095211035168163],[[4590,36779,1000,3652,58532,14447,36860,3202,37912,65399],97600936963871168447820684],[[4595,36902,1004,3144,14466,15088,36849,65464,17751,26773],97600931430549509461757543],[[5010,3094,3657,71894,17732,13526,5341,19734,1581,40621],97600931426982847415115806],[[36801,3064,3215,1281,20139,22605,51879,20023,40597,48511],97600927352300864629386457],[[36806,3076,13948,11363,2465,26346,3605,28585,40334,64253],97600929889853437884432033],[[36900,3101,5351,63996,3598,26345,16839,37989,49628,54974],97600932647487726785235642],[[36903,3656,24436,874,18451,25511,64291,66475,58908,59849],97600925790758316383131630],[[3653,5613,28943,61362,59002,3233,12546,20383,49850,59880],97600931295333209910509809],[[5418,5619,5733,30357,6495,25025,37287,28171,38613,25850],97600936505882710331530799],[[7458,28942,2177,3195,32113,20757,42901,13441,50680,30992],97600925692413027535831420],[[7463,12594,31360,17779,872,22856,24772,42693,40354,53080],97600927094006802174389569],[[12596,19300,65147,11056,41163,44621,38434,67009,67932,66653],97600927404487441100894550],[[19315,28946,30388,24516,17809,16852,66917,68910,69450,50500],97600928818990392544307495],[[27681,32566,19691,65126,51497,13710,68223,69219,51903,70047],97600929078403426310707209],[[30221,65146,68386,71816,10754,15668,30978,22947,74336,74966],97600936704834360888602688],[[31357,38465,40086,43128,64763,59535,43359,54618,66642,69937],97600928793975766291296865],[[38986,66715,74224,74283,49467,38147,62994,65171,70842,25614],97600934577575704647449185],[[54194,66329,19203,47949,41167,54731,64165,67008,40609,40926],97600927180805140105996825],[[64288,66705,74379,13207,64044,62632,58584,61825,67947,68302],97600937296435184708309763],[[66735,68661,69718,40087,64514,53307,64290,68478,70841,66967],97600928919545514475367550],[[67828,68412,71828,39607,41173,25139,5612,65109,59166,72382],97600929798962407745567699],[[68387,69738,64007,48719,61371,33082,66435,70835,49627,51698],97600927586174865677828632],[[58333,58501,59124,67136,41724,31188,65796,66108,67170,18286],97600924721622536903228263],[[58500,59125,17807,64779,38521,58533,41480,49778,66779,41630],97600930400519906019691813],[[72612,73933,64037,72290,58382,10931,54623,67428,40545,63987],97600925064863755879812592],[[72622,73932,58658,64058,55050,5563,66902,68743,74200,40544],97600924284776448443730274],[[73838,73873,61367,73065,17746,6007,58646,67199,74311,66889],97600924923797187790638393],[[48135,51475,10760,27524,28704,14608,41867,43378,37870,43586],97600924763329261485700691],[[48219,71795,72005,72296,59959,13736,56041,64289,43382,20020],97600929418704094402150266],[[48718,72158,73085,17771,44390,48377,48667,68479,74789,50530],97600919548962395196069630],[[48744,72159,37874,38047,5935,49846,37169,48664,68511,24438],97600928705529409616550091],[[64421,67367,38142,63006,24017,8696,5596,55268,65172,25615],97600927156965870741206401],[[72180,541,58766,10680,31907,15053,13139,39212,49626,49787],97600926947187047129922667],[[59979,3599,11268,36805,3061,15039,66601,66851,48740,49665],97600917076713614019749142],[[10668,11360,40395,55014,50217,30216,25201,40862,54832,16028],97600920340820248432224571],[[28018,30398,31941,33437,3885,42316,43387,68330,39111,48862],97600916150483541274153115],[[28045,30367,33555,53646,22928,55269,66600,64271,64684,40348],97600916884233673366918911],[[28684,21434,31384,21777,36861,3268,2165,54584,68706,48271],97600921086413808735330924],[[39406,47545,45387,7695,6424,37286,7832,64939,66567,69501],97600925448717675274868231],[[48098,49089,57086,14604,33070,8976,28143,66137,74431,65490],97600925472292795823014581],[[49048,57113,40428,20169,6493,5669,55300,68482,70665,65773],97600920520720335282898108],[[56112,57096,45043,5927,54586,64184,65173,65833,66136,66570],97600912906119991546702982],[[57103,61342,43642,53740,56784,9794,54783,68809,69734,75166],97600920680387748436651047],[[62988,1921,58836,50176,56804,13137,65104,68435,70485,49663],97600921197119806115112209],[[63012,58882,44618,53266,14306,65167,55144,66444,66701,66962],97600916274944730729488312],[[5934,58981,51188,9798,27665,55319,67015,69823,70669,65181],97600916094876282454573288],[[12836,18995,41446,10920,38457,54789,55284,67885,68409,40601],97600911857099188723178610],[[12848,17724,32163,5033,3095,7489,64993,66961,48906,55364],97600920146325844658120102],[[18965,23727,15576,3090,309,38634,48519,40611,65746,71709],97600915763613294070677768],[[21425,26535,3569,4705,24463,55289,66455,67783,42249,38807],97600911271335357597964176],[[23706,26539,7694,5022,52210,55139,48487,48019,50573,37947],97600911603636328241314124],[[26543,17023,54757,56351,49920,55094,66474,68408,64014,51900],97600911212292549419224563],[[26547,53189,5618,12422,32719,38427,65108,66956,67833,39115],97600915118100281560050103],[[45185,22555,5926,7822,12475,43358,68512,41889,68340,74335],97600915102625545392562193],[[45366,56038,26939,30225,55316,66102,70066,70848,75029,65899],97600910878675294219170121],[[58980,33434,6492,3881,40065,66569,67012,69499,70662,48015],97600910997393568645301617],[[59001,15587,37196,499,6399,21853,38011,38690,24182,30995],97600913984488221437449160],[[56395,5601,9790,6412,27674,31380,65170,68524,15534,52143],97600918373328159685704515],[[62361,37156,22040,32712,40076,55080,64193,64976,67871,70702],97600910137676142903866613],[[3085,3201,3604,5577,7486,21307,64988,66960,70034,68339],97600914163660920501891832],[[3200,3566,404,5352,58340,59165,3025,12263,1089,7793],97600908528317413991058369],[[4524,4709,3576,7818,1288,52195,66703,69766,48442,48908],97600909960478342858709253],[[4530,308,405,5997,20032,25072,51842,65719,21117,8909],97600909125228213173439953],[[5030,36848,3269,3572,40208,64580,13952,24640,43115,21082],97600908894573008028091962],[[36770,3102,3277,38503,64247,64576,52224,16246,5555,24184],97600904272248484185546008],[[37205,707,5371,7499,52219,25076,43429,55108,65758,65000],97600909729405105911522474],[[3213,3276,6457,30199,43362,24757,25195,42670,25619,61520],97600909364050798651054635],[[5663,6462,49924,54782,55271,64328,67005,70534,39258,66968],97600901529304633927894655],[[7828,17740,30208,50386,65166,68239,68913,69517,53388,53429],97600905445381344728408188],[[17743,22051,38455,51759,64339,66453,69167,1289,67997,71535],97600901520268337316233312],[[27645,29104,54590,64522,66571,68712,68800,52016,68525,74435],97600901664756757918185436],[[29108,31201,50389,54622,66141,66716,69714,70853,48538,51831],97600901664678086411412829],[[29122,31399,42239,55088,66629,66957,69491,69736,75254,66209],97600901398914403259256906],[[29126,31189,54634,64124,64333,65790,69940,70710,20695,48557],97600901664678086411412829],[[32726,40078,54593,55086,66955,67847,69475,66443,74323,74709],97600897540622695170157126],[[48697,51758,55288,64975,66572,67931,42318,66963,69693,25642],97600893389222223038758064],[[54624,54792,64195,64713,66135,66573,70644,70686,69923,68299],97600893260419453765114759],[[54641,54793,64163,65105,69941,70069,70655,70764,68680,70151],97600893290151291607126382],[[54798,55320,65832,66481,66638,68159,68793,70023,20418,42700],97600893416409786643071645],[[54799,55291,64316,65066,66432,66568,64992,66157,74555,75247],97600893380936181021077565],[[55090,64344,64506,64981,65103,68921,69197,69472,43434,51545],97600892960640748428479050],[[64126,64531,65102,66952,67022,68911,66850,75030,40849,47547],97600893217467550533281769],[[64733,66129,66654,67018,67942,70507,48021,74969,45832,56322],97600892920412198814228118],[[65825,66140,66450,66644,66953,67975,68288,64003,68711,61528],97600892976579748897351039],[[65837,66430,66454,66566,67964,42317,43363,25211,48761,51801],97600893190201315359947641],[[66126,66437,66478,67831,68513,68923,42657,74925,39108,75240],97600893371821212141549293],[[66138,66424,66663,68434,70020,38989,64362,69515,55043,74626],97600893353669945893410786],[[66441,66717,67883,68166,68289,70055,65848,69767,47952,41955],97600893215001952329852671],[[66656,66737,67019,67980,68792,54383,68140,69513,74712,64227],97600893084765649554464897],[[66726,66874,66954,68799,68920,69205,69776,64265,65119,68440],97600893416488458156492795],[[66872,66923,68431,68749,68803,52218,66154,60979,56448,70158],97600892797350186593705798],[[67845,68108,68505,68808,69474,70667,69215,74612,75229,59804],97600893191780497571712015],[[67869,68084,68232,68410,69453,54616,74411,42685,55016,75241],97600893344554977011336114],[[67965,68167,69936,70021,70491,66700,68685,74972,25645,64270],97600893353669945893410786],[[68216,68912,69498,69942,70540,54378,64318,65853,68441,75255],97600893362784914774634209],[[68310,68742,69500,70538,70663,55321,13408,48622,52395,66133],97600893072979121912658649],[[68311,68714,69939,70726,70770,70834,54379,74331,74949],92592337453291015660582693],[[69135,69473,69788,69943,70847,54636,65180,24798,50759,66675],97600893187735717155829742],[[69169,69723,69897,70501,70839,65852,69514,42113,74262,75258],97600893336268934989863491],[[69203,69492,69789,69938,70638,54384,64161,74429,74810,50619],97600893096192282153239801],[[69741,69804,69888,70532,70661,70664,55138,67993,68681,40614],97600893380936181021077565],[[70022,70061,70640,70666,38700,66718,74428,24784,39078,66819],97600893169584450873456048],[[70072,70656,70689,70761,64616,74337,74968,20045,48824,70514],97600893004479148687176885],[[70073,70683,70718,55142,64359,68124,74259,51843,24401,73455],97600893045791558212679518],[[70650,70837,38701,39105,55301,64958,68134,42122,40341,69720],97600893154727714142437796],[[70668,70838,42831,64228,66708,66964,74433,40352,73571,70518],97600892989622411931026424],[[70840,1742,52211,54381,66849,67790,74244,50948,68123,48200],97600893101024166129847968],[[2191,49698,55285,64122,65118,66451,68443,42677,50562,39127],97600893253798645711532769],[[38996,51907,55143,55317,67829,74696,42128,43419,67683,68361],97600892982222790360324537],[[43367,49516,55305,66156,67867,69790,38749,50637,48353,69933],97600892982222790360324537],[[52202,54382,54620,66442,67916,74539,75028,43415,50526,64276],97600893253798645711532769],[[54632,64237,66152,66640,67901,68141,48739,50936,71842,56447],97600892946670508580021898],[[55140,64989,66652,66966,69511,20205,25193,38997,71323,63462],97600892810468117138624729],[[64955,65182,66153,66965,74434,74702,74713,42121,65828,42271],97600892964071519553029689],[[65183,66150,66445,69217,69920,74967,43205,65760,55290,40587],97600892946670508580021898],[[66151,66728,67933,68710,74691,74708,39114,43120,49891,75135],97600893244683676820131094],[[66155,66738,67966,69691,69922,74330,50735,51899,55477,56223],97600892954956550634570334],[[67905,67911,69732,69924,70032,39263,42266,52151,54831,71544],97600893108481285794612356],[[68128,68442,68744,69512,69739,20694,51502,40353,69392,74928],97600893218996623865724206],[[68740,69221,69510,69712,74693,40833,47991,50571,68324,67674],97600893091909201710879659],[[69516,69921,70033,74561,75024,38322,49894,54826,66542,71332],97600892973107821443560333],[[69692,74255,74430,74589,75001,19206,55118,67788,67908,58932],97600893091909201710879659],[[69806,69927,74231,75152,13950,38243,39264,49893,74779,31224],97600892770684699933139465],[[70035,74334,74414,74432,74715,42124,66536,69386,75022,21148],97600893056356919970531595],[[74410,74581,74707,74710,13417,38669,48931,49662,74566,42270],97600893063814035152007739],[[74415,74587,74701,74944,75125,25616,37980,54828,24362,65829],97600892973107821443560333],[[74533,74583,74685,20200,25199,37949,40779,51875,52148,976],97600893062985108288240475],[[74711,74973,75003,75027,75157,48187,48872,69382,68030,73579],97600892956535737336841982],[[74714,74935,75026,75110,75156,43130,50575,64962,65857,65402],97600893076972193145802909],[[74930,74999,75031,75094,75154,25082,47954,69385,69141,24794],97600892937555539659937459],[[74997,75025,75102,75119,25077,39208,40865,50937,74545,884],97600893055527993106700998],[[75088,75099,75116,13058,15331,25205,51500,68146,69454,27862],97600892655236133902020613],[[75107,75122,75155,25644,42206,55340,64685,68015,51845,68275],97600892881307721802142252],[[75153,75160,13052,20204,24799,38666,50560,75192,28098,64357],97600892880478794936824957],[[75158,75165,13045,15330,24782,43417,47964,68782,55286,28095],97600892910210632894576648],[[75159,13957,15332,25073,38679,43112,48474,68325,69111,48376],97600893055449326079689904],[[75171,19189,20406,25083,25633,37991,40596,54690,65763,74627],97600893190822790316533394],[[15531,24754,37951,38658,39266,54719,65799,60889,68352,30958],97600892622191582163384370],[[24770,25067,38300,43416,43443,48451,48863,68267,68781,14993],97600893046334357169764343],[[24801,38733,40867,42190,51478,51680,54682,50946,12011,66142],97600892919246934790093961],[[25209,25632,38278,39261,42245,42664,65405,19755,16490,6482],97600892339082752129091728],[[25658,38657,38748,40600,40838,42119,42268,55339,68327,71541],97600893054620399215851599],[[25660,38864,42209,43188,47989,48871,21267,64665,67026,64578],97600892641849038823478958],[[38676,38732,39213,42188,51507,65805,68326,11710,12276,23725],97600892598950748181644828],[[40593,42115,42191,42244,42687,43439,50758,68265,27239,1737],97600892757565047001160905],[[40846,42207,42675,43421,49780,50528,51625,52154,24646,24778],97600892873000497357288151],[[40851,43104,43161,48512,51487,23714,60514,64950,69199,71287],97600892521412582477589637],[[42246,43121,43418,43428,49788,50756,42442,45252,67989,65877],97600892627054209420196118],[[43158,43424,48518,48905,51860,39122,69379,50254,64947,62103],97600892748321188324018175],[[43160,43420,48001,48454,50554,55370,48366,75227,55270,67046],97600892910960892732513878],[[43433,48475,48938,49797,50677,69384,74777,75097,39285,19712],97600892711140325878987419],[[43438,48764,48843,51902,55336,48496,75216,75256,48911,51505],97600892848142371170658939],[[47966,48441,48765,50679,51867,54807,69224,74784,75128,58638],97600893038048315122973626],[[48484,48842,48939,49790,54350,54971,69182,67707,16257,15630],97600892477712128308282400],[[49781,49848,50632,52137,55343,65411,74567,75059,40874,43462],97600892848142371170658939],[[49791,49853,51904,52140,52189,38758,40340,68741,71333,52245],97600892748321188324018175],[[49796,49896,50736,55007,40338,48948,64610,65840,67985,66523],97600892737569548036436958],[[49851,50761,51835,54746,48870,64368,64613,68780,2163,24752],97600892867122568864951414],[[50682,51861,52188,54802,38760,64268,69117,68153,45161,73116],97600892617930945924396965],[[51485,52136,52187,55341,48873,50569,69391,43412,71330,43446],97600892740035146251926975],[[51898,52155,52186,54740,64681,68014,68112,69457,40336,66631],97600892603831158700322624],[[51901,54688,54813,48343,63999,64591,75236,65845,38156,65433],97600892745713410878238651],[[51905,54366,54965,55342,38962,74326,75113,55464,71562,69131],97600892737569548036436958],[[54684,54713,55361,64593,65429,65754,74572,74792,75231,74008],97600893006539222451425873],[[54808,54827,38038,40610,50947,66537,38502,43459,52229,70732],97600892532726594851099733],[[54829,55034,55102,38761,40615,50949,65862,55274,66762,44561],97600892636911143663458072],[[55124,55337,64258,64269,64367,65759,75096,55473,65844,67889],97600892750729301896059492],[[55338,38030,64303,68009,74613,23735,33509,43922,65721,17759],97600892330685603126546193],[[55367,38759,38975,64010,66534,75062,55318,66973,74860,74893],97600892602053903940218351],[[48500,50938,64680,65761,67899,68783,27243,42832,70253,64586],97600892600418828410792409],[[48949,50939,64366,64963,68263,74938,74961,52322,68203,3186],97600892706890977956527560],[[64262,64590,65417,69381,75129,27254,43413,45568,54637,63984],97600892473331405450489476],[[64373,64592,65762,74401,74634,2166,42443,60977,67934,72453],97600892473331405450489476],[[64611,65435,65752,75112,75141,55324,67868,64582,68043,69428],97600892413867729259758825],[[64612,67858,67913,69235,74776,74816,66768,73560,10737,14925],97600892552537315296687518],[[65765,65767,69232,75197,38990,52017,65112,65725,19021,50747],97600892291711502510238684],[[65856,67820,68122,69120,69383,75142,30397,49775,64647,71647],97600892577337956915325637],[[67898,68010,69145,75013,75253,2193,14970,65001,69853,42273],97600892452716132147717076],[[68008,68337,69173,74785,74811,27250,45134,54446,21200,42683],97600892425449892274037429],[[68336,69114,74786,75104,75226,2192,21246,24769,43063,40929],97600892395718054168614672],[[68338,69397,74448,33517,54448,54591,64354,66483,67041,71613],97600892225807525614047575],[[69154,69227,69378,74451,74787,74957,54633,66975,73429,62123],97600892579803555134863432],[[69380,74263,75023,5944,12004,39444,54639,25635,43005,44069],97600892009593156704296016],[[74250,74293,74573,74986,42444,44425,54452,64089,67109,74269],97600892165580299521154513],[[74251,74292,74574,74633,49779,66613,73566,73878,74101,48035],97600892312326775847018503],[[74327,74400,74450,74632,75228,75238,46192,66709,66860,45834],97600892579803555134863432],[[74402,74449,74575,74799,75245,54589,72052,73855,73956,74070],97600892453378505757900040],[[74403,74635,74948,75063,75244,75249,55468,70987,48742,53119],97600892552537315296687518],[[74778,74802,74817,75105,75134,75246,66110,70202,72506,22079],97600892442801509466525616],[[74933,74980,75058,75243,60978,59167,67198,71941,74376,74571],97600892319640116032370698],[[74943,74981,75054,75114,75217,44420,60888,74236,74291,43509],97600892344576238217234116],[[74953,75012,75066,75232,75239,45249,64393,74902,59878,41062],97600892323960964887266034],[[74987,75055,75207,43388,55469,65179,66641,74182,50626,67107],97600892159692882687849384],[[75067,75140,75202,75235,55306,55472,66131,66729,39268,50668],97600892298362469085905111],[[75115,75230,75242,1910,48128,54635,66863,74850,74881,1075],97600892048237306289400800],[[75143,75234,46067,49395,64215,69807,71601,74898,40876,41814],97600892037536655620206739],[[75233,1911,24389,33508,45571,46066,70045,74897,62097,68373],97600891907983633690520367],[[75237,24412,39442,55277,66765,67040,70264,71602,40214,40351],97600891958330745356070960],[[75248,75252,5945,42729,46065,55325,68518,71594,62092,58935],97600892041722023980125241],[[75250,75259,43920,52370,54585,65221,66476,71857,74249,52407],97600892058151929010673402],[[75251,33516,42445,54601,64204,66538,69494,69962,59846,74220],97600891793434593294817482],[[75257,42779,45131,54454,64034,64856,69934,74894,52578,1909],97600891681195621085284757],[[28627,42902,49390,55276,64416,12274,15692,41208,62116,44717],97600891613376092969020653],[[43389,46064,48123,52394,55309,65215,69791,64609,38067,73768],97600891780896209828588331],[[46193,54458,54587,64162,66109,66543,73449,17076,71847,43485],97600891665442974919918038],[[49774,50248,54460,54607,64055,64123,71060,65396,25663,70989],97600891780896209828588331],[[51908,54456,54617,66539,66969,67466,69959,24750,65776,33462],97600891625865286775400623],[[52251,52371,54619,64646,65797,69932,72733,3189,3023,44568],97600891566419644988001984],[[54603,64292,64664,66111,68698,68747,71608,64246,62098,50141],97600891688523846631031722],[[54605,60976,64387,65004,66146,67406,71856,39201,23968,59898],97600891524376358557192315],[[55292,55476,64319,65177,66149,66456,72504,45768,66251,73214],97600891636615330947063892],[[55293,55465,64429,65841,66861,69713,71875,64748,52457,34327],97600891528440927968095327],[[55302,65005,66130,67700,72462,72053,74631,56449,69375,68549],97600891652141041681871958],[[55308,65113,66144,66971,67701,68437,40350,43062,43089,51803],97600891756095568007572284],[[55322,60511,64351,66480,67035,68562,69696,27628,47969,71660],97600891760280936379559678],[[64831,65257,66458,66972,69211,72513,12014,38921,24992,32117],97600891466648995091559567],[[65176,65249,66143,66862,66974,68690,68713,72515,25649,52242],97600891790012774678553550],[[65178,66132,66970,68696,69928,72514,74901,12275,38021,68548],97600891661257606543863756],[[66145,66452,66719,67474,67666,68360,73574,74016,74875,69644],97600891669561431968418525],[[66147,66739,67967,68519,69869,71000,38028,74019,74629,63156],97600891702488153479398144],[[66148,67047,67694,68353,69733,43477,45835,57376,41631,43559],97600891450132799134610603],[[66459,66771,67032,67706,70126,72254,64606,74548,39118,72231],97600891774245243217659411],[[66482,67029,69201,69953,71289,73447,25646,28376,38637,49010],97600891735480294553305235],[[66784,67830,68048,68438,71044,71558,48477,49063,49614,49661],97600891735480294553305235],[[66899,68057,68709,69694,69930,70263,46153,41099,69682,53408],97600891481283897403019611],[[67795,68439,68745,69506,70166,71324,58745,72792,27941,69402],97600891774245243217659411],[[67804,67893,68021,68436,68707,71568,71597,65720,37887,50240],97600891648946158495873725],[[68116,68554,69495,71331,71552,71885,65724,65738,48493,71421],97600891681872880013808131],[[68147,68624,69929,71281,72275,40337,65744,53383,60517,70794],97600891744513404913862327],[[68194,69139,69496,69740,72229,73578,58668,40815,39439,69831],97600891751164371526817310],[[68609,69209,69497,70217,37915,40210,11341,58805,59797,66525],97600891719712763083601314],[[69207,69455,71607,72274,73572,73867,74009,49606,56220,50250],97600891654606639924782120],[[69213,69502,71067,71571,38036,38166,63997,64028,40605,51466],97600891763408908234603484],[[69456,70044,70188,71010,71325,65427,65484,74614,74899,886],97600891790675148293233985],[[69503,70170,71549,71600,72269,64608,41667,42998,62019,67875],97600891633991366449078567],[[69504,70252,71279,71596,71809,38492,45816,40796,59581,39494],97600891384122481429546310],[[69505,69931,70046,70131,70967,38616,73866,74880,56229,71132],97600891675221913396131313],[[69507,70281,72219,73453,73557,64245,48006,49559,65187,64132],97600891382438209689175241],[[69508,70977,71051,16030,17081,45073,50775,70577,71003,52539],97600891553912416254359294],[[69509,69935,71045,71565,65722,19187,19356,41708,70516,67582],97600891575431884111630965],[[69700,69875,70957,71555,40335,11705,56472,45129,65252,68103],97600891509421566491310082],[[69857,69956,71050,71595,64587,45837,48965,62120,23704,68029],97600891511887164737825630],[[69867,70107,71322,73405,64588,48460,48766,59796,44123,67792],97600891696631891379863252],[[69873,71598,73551,72755,74616,24644,24780,39534,49563,16940],97600891555565275062216164],[[70111,71538,72463,73555,40212,74549,25648,25846,47928,56450],97600891722178361324804476],[[71599,72471,72505,59174,65415,50670,59036,64751,67108,58683],97600891595142963235240613],[[72261,73549,73575,58334,58529,59224,72455,65485,61952,48316],97600891473009417431669303],[[72470,72512,73411,73577,58402,58527,65409,12277,59883,72539],97600891740328036541198782],[[73423,38504,59173,59220,65741,71927,40759,45274,64699,32816],97600891565344213549438429],[[73565,73576,58528,58650,73957,39270,51815,48822,72538,20382],97600891546327906278294293],[[73573,38505,58740,59164,59225,71863,71938,73791,73804,25908],97600891583493888794997314],[[59172,59221,64049,65458,71926,71957,74045,72919,74554,1495],97600891331856509963878220],[[59175,64008,64088,65735,71929,38594,64406,49515,72391,26906],97600891266660276198398788],[[63988,64452,64607,65723,71858,72626,65459,72560,61936,43405],97600891337603277297045979],[[64256,64453,64589,71779,72723,38092,41646,65963,72465,62073],97600891279875918662002562],[[67200,71778,71928,71952,72638,73958,74615,61726,49393,65949],97600891579308520415428852],[[67201,71780,71939,72640,72716,73959,74098,19918,51821,17737],97600891581774118660178913],[[71689,71781,71787,71940,71956,74102,64356,64953,70441,70737],97600891685712101894489596],[[71697,71820,71953,72786,74177,74547,59030,60516,69582,27449],97600891419078557552810188],[[72452,72623,72646,72751,74067,40879,39024,72561,73006,66637],97600891319574405918100270],[[72454,72613,72717,74546,14788,39271,41987,70416,50640,72917],97600891430909184177505444],[[72616,72644,74044,74476,12015,38687,38935,63991,37882,49411],97600891225968907698445259],[[72718,72729,73879,74068,74089,74482,71887,73766,67409,74664],97600891443312087180399605],[[72719,72787,74069,74088,74846,39119,40604,69796,69999,50140],97600891575190063363119970],[[72720,74066,74099,74218,43092,50627,68006,69122,69376,72533],97600891642015956708702386],[[72721,74071,74477,24781,39269,40895,59847,61710,67857,69144],97600891628797477961212748],[[72722,74172,74187,74838,74908,41770,59037,62648,70440,63459],97600891535491576210992162],[[73898,73923,74018,74201,74628,74905,49623,39200,49388,50808],97600891688177700136551684],[[73899,73924,74017,74210,24797,38572,50785,71650,71679,49386],97600891552109191625204865],[[73922,74010,74398,74568,74895,14872,15539,52243,56338,68268],97600891672493623152917901],[[73925,74211,74617,74903,58970,48365,51434,71500,1918,44648],97600891457271229963284500],[[74011,74377,74630,74906,24766,40818,64952,71883,72528,47934],97600891294495039058887528],[[74103,74483,74839,74916,40608,40890,54176,60244,74314,61076],97600891239305349138937929],[[74282,74569,74842,74851,74874,74904,68004,69370,23990,68179],97600891500967375231782352],[[74399,74847,74857,74915,40586,48425,51824,58368,69159,48333],97600891425090336480663818],[[74570,74867,74900,38478,41241,62025,48335,71316,66785,67471],97600891359966178205620581],[[74843,74870,74907,11343,41787,41824,69172,72410,1892,13737],97600891359966178205620581],[[74892,953,15559,19204,19371,25637,25843,38479,45766,67895],97600891590032529239089887],[[74896,956,16029,21864,48072,49002,51498,48342,71013,1919],97600891492728969367082071],[[74909,74912,41825,58862,59805,61999,70439,63392,61900,18350],97600891221914956116960825],[[74910,74913,19912,51538,58795,58977,38157,50628,25733,52459],97600891418506281173035149],[[74911,74914,42760,51532,61704,61995,38167,50629,63390,11510],97600891356451405248673137],[[74917,24751,40756,51560,41986,69153,70801,62897,74670,18064],97600891229595713033090380],[[74918,24767,40817,51818,62637,66524,70798,43708,50741,19986],97600891260888955379019137],[[74919,24795,40757,62118,52089,71814,52490,58947,64325,67691],97600891168637395601837663],[[74920,40820,41815,49659,60885,68095,69586,70520,27329,61088],97600891313683635651252051],[[74921,40877,54180,39025,64702,68457,70444,58941,73007,73216],97600891240466561160836364],[[74922,40892,41633,51566,61993,70739,72023,73765,52531,19820],97600891353261323922360810],[[74923,40893,59031,59844,63451,64724,70800,71853,460,48325],97600891195070025133433560],[[13959,16031,21847,24654,45819,47919,70579,71499,44516,50578],97600891377275734117535382],[[14825,15538,16328,25620,43463,45276,56226,70796,73770,41663],97600891432536007634273214],[[15558,16322,25636,28377,38660,42644,48767,56286,70734,20759],97600891435001605882731048],[[19027,19754,24652,28375,45277,51802,67891,71631,44706,13507],97600891335111648633988317],[[19758,21870,25664,39315,39361,49604,24381,38985,62899,69178],97600891192531006871001579],[[19759,24642,27953,39314,49658,50773,70979,30887,66467,73348],97600891284903370537980446],[[21711,24650,37978,43580,50524,58396,41962,71302,32185,53320],97600891337698045856164596],[[24648,24796,43106,43454,43470,44988,52244,41097,48120,71131],97600891564486059259560255],[[25618,25839,38493,42272,42328,45165,63447,48327,71633,73786],97600891564486059259560255],[[25621,25847,42325,43452,45762,64306,21109,63393,32784,44196],97600891110910031925798307],[[25634,25851,39318,39336,43464,38978,40913,52122,69589,32093],97600891427604811137170687],[[25647,25838,39319,43458,49003,50556,50805,39021,51402,70871],97600891166170305593348713],[[25662,39279,43501,49622,53071,59881,28313,66484,61734,72354],97600891134875718637417753],[[25665,39541,43132,47540,48944,50558,53389,11728,53713,41203],97600891258541324705644751],[[27631,28653,43123,43448,43494,51460,51799,70445,65043,68381],97600891379741332367389204],[[28656,42329,43461,45764,48955,50564,60840,67111,65897,43562],97600891340163644107018231],[[42248,43460,45817,50667,64405,64903,68270,30993,25286,21530],97600891198230400189910543],[[42250,42324,47950,48391,49011,54173,57384,69584,69977,51369],97600891472113695857186695],[[42251,43581,45275,51805,52077,43039,73767,44417,25859,39505],97600891198109601218480621],[[42647,42673,42747,46177,48741,49104,64404,65904,66312,70297],97600891467182499362083794],[[43064,43465,43587,51463,51800,68368,68771,69587,71378,64810],97600891345982491808923084],[[43065,45095,50691,56335,41096,45567,66257,17062,39517,20852],97600891158652711855935907],[[44992,45315,45814,49022,56341,18516,43553,44697,11562,32922],97600891018537668094147010],[[47987,48396,48444,49624,50566,50696,51804,69588,60268,56429],97600891311336000038088767],[[48284,49254,49612,49660,50694,51988,68119,71646,41399,61948],97600891319620445993084888],[[48390,48416,50665,51476,53241,38965,48825,68770,71662,5932],97600891467182499362083794],[[48397,49239,50532,56277,39436,49583,71659,73815,48371,51527],97600891372344537617640880],[[50522,50693,56253,62001,39535,65901,24203,68379,69562,64601],97600891158772166247781916],[[50744,51483,53229,41098,65092,6750,32186,69133,52166,47177],97600891011020074345362975],[[50746,51798,52402,39536,66253,68774,72442,66263,72534,16491],97600891237928887479217000],[[50749,51863,53169,44118,65902,70738,71636,24238,63277,59903],97600891237928887479217000],[[50770,53382,56262,62117,43020,64920,67110,71317,71418,61912],97600891332766849354270467],[[50772,53420,62119,51439,66255,69372,70515,43919,69447,70955],97600891277506575781044719],[[51469,52306,54158,40928,64029,27888,30350,65787,18289,24442],97600891013606471576127592],[[52266,56446,56478,65770,68071,71498,3024,65277,66274,24111],97600891145556523767780096],[[56344,56444,62122,45566,64750,66250,69563,13767,74672,16837],97600891087901235506447268],[[56445,56469,49098,68115,70411,70438,70795,52529,63164,19914],97600891232876892000895234],[[56451,61720,62047,65237,65905,70736,72411,73793,65033,72529],97600891369878939367600199],[[57377,63458,39537,50791,64384,67819,24717,39627,16938,49382],97600891074685593016849174],[[57385,40907,48823,49570,65898,69374,24237,67825,69187,16879],97600891140625327256178191],[[62053,40910,45128,64407,65866,28343,43916,44517,66271,44708],97600891048252963452650326],[[62121,40912,43917,49226,65808,6749,30381,63163,69124,69441],97600891087830651831392656],[[40923,43914,65887,66307,68269,71027,65281,67475,64131,65964],97600891120082129100245691],[[48125,50788,64376,65491,67112,69585,51595,57205,58660,39145],97600891109332084871689962],[[49231,50790,65893,66302,68271,44416,44586,45144,65209,68383],97600891085365053574164573],[[50810,64279,64390,68280,73823,30561,30917,66246,68551,70213],97600891085365053574164573],[[50811,65802,65900,68281,30895,48127,52361,62896,30990,49380],97600890913837312867888516],[[64050,64726,64749,68007,69371,18644,30987,44649,74560,27009],97600891016959721038545249],[[64377,64727,68775,69583,70421,18515,57200,69683,71830,67606],97600891016959721038545249],[[64704,65218,65903,68038,69414,12264,65190,66276,68531,69130],97600891085365053574164573],[[64705,65062,65892,66256,2195,23962,51597,61542,64454,20862],97600890895759712926301485],[[64721,65212,65871,69128,70735,73825,3027,6748,65280,18496],97600891138159729000283809],[[65232,65465,66522,71130,6777,27881,42819,72217,72914,21339],97600890922000959884853004],[[65872,66317,68005,71678,12265,43548,66275,25560,30542,33849],97600890874259624418590948],[[65886,66252,68304,70443,71630,23984,44077,52458,67775,67583],97600891056537409429977157],[[66254,68305,69377,69434,70578,71303,3022,44058,23290,27091],97600891093409241243797279],[[66796,67801,68018,71501,18514,24234,31807,44650,69569,645],97600890950828604068777443],[[67106,68278,69181,69373,70406,6751,65890,71474,61738,2141],97600891016959721038545249],[[67113,68499,69125,70582,71645,72043,43552,43725,73163,38910],97600891106745687643462047],[[68027,68046,70517,70576,24241,25716,44518,69127,763,73217],97600890935337401366880651],[[68055,69404,70442,70519,3028,28312,62898,66206,41615,16494],97600890924587357117976604],[[69412,70521,70580,72532,2173,24816,39670,43549,72416,56676],97600890902212103376646161],[[69429,70581,70969,71495,12262,47622,65786,66203,41606,24105],97600890924587357117976604],[[69435,70583,71136,71497,52369,57202,67777,73094,56326,21352],97600890882423271438865839],[[70733,70959,71137,73764,73769,32184,47623,67837,11564,30370],97600891006209676798631320],[[70797,71020,71494,71663,52530,57203,66466,67142,67152,72092],97600890895759712926301485],[[70799,71637,71664,44709,47620,51599,64015,64811,67168,58939],97600890774559704663552518],[[71496,71658,73805,6779,32187,52536,56990,65896,73902,41804],97600890832214993109984028],[[71632,72443,73790,73821,40845,44644,65819,72782,74525,27132],97600890781087803484778959],[[71644,71661,73771,38161,44578,51408,51601,66485,69565,65962],97600890871792681576330922],[[71651,71665,71680,73822,5933,38972,37919,39737,13755,27119],97600890856182024469673352],[[71681,72221,73792,52579,57302,64313,69687,64618,65069,66593],97600890792637304627588168],[[71877,73787,73807,73827,6778,49100,50246,69685,73361,24235],97600890953415001301137118],[[73800,73806,73813,73820,30925,44560,65192,67675,61735,45862],97600890924587357117976604],[[73801,73814,73826,24350,44519,48348,66207,69576,71126,1908],97600890861042637320427875],[[73812,73824,3029,19240,50144,64033,68543,71342,39736,41812],97600890739842629014567520],[[2172,19278,25575,38171,50145,69570,61522,67521,73161,11033],97600890494856214706888374],[[2194,24866,30986,39665,43514,64426,67863,74351,1266,27143],97600890512933814722730599],[[6776,16495,24377,44714,65891,66264,41623,30723,20783,47170],97600890470769728865783390],[[24354,25524,44569,52568,66249,17782,72918,73978,74592,25219],97600890468614967633493530],[[24664,39438,44587,44672,64929,65282,59514,72913,74134,16939],97600890497442611951331195],[[26082,43480,44655,52537,65818,66277,5947,27177,70271,70884],97600890465192479056373936],[[26137,28342,30538,45262,52569,65248,5946,16891,18483,34388],97600890462606081811076496],[[26278,31802,44579,45743,53696,65287,66269,74600,24143,27001],97600890515520211966694368],[[26295,39441,44645,56984,69150,65525,73008,5554,18287,40956],97600890444528481785912587],[[41087,42829,48122,51529,52580,64298,68751,60048,53517,31599],97600890512933809781671771],[[44654,45265,49106,52669,65265,66240,70975,65531,65965,74665],97600890537020300553430097],[[45147,45582,52489,65191,65286,68079,68178,73292,58405,67360],97600890565847944851063391],[[45585,47621,51573,57206,66208,68540,68719,73122,20795,72087],97600890544347856270677982],[[45745,51571,57074,64054,65276,68185,61540,74594,39341,52526],97600890464317313812477206],[[49391,52488,57207,67470,68750,71477,73123,65527,21087,22878],97600890515520211966694368],[[52456,52605,56985,66202,69581,70999,61508,67581,73221,30762],97600890497442611951331195],[[52491,56988,57201,68020,68053,69689,71394,61736,72358,32083],97600890526270256260654253],[[52528,52674,56989,63162,67774,69688,73362,72420,18488,49322],97600890515520211966694368],[[56986,57079,64386,65220,68184,68192,72556,59711,24024,19821],97600890512933814722730599],[[56987,57204,63155,63400,66258,70295,71483,74243,70877,46016],97600890512933814722730599],[[56991,58665,68718,69444,71391,71471,59710,1084,11323,45864],97600890475942523355877063],[[57307,60523,63391,64912,66270,68539,70210,65958,74669,26014],97600890526270256260654253],[[59572,60529,64392,64413,68199,17774,60249,74538,16496,30401],97600890457864923333183325],[[63102,63157,64286,65268,68561,72552,59714,72201,73976,64735],97600890497442611951331195],[[63107,63272,66272,70296,71339,71366,65529,71727,71933,11565],97600890497442611951331195],[[63165,63398,67670,69438,69684,71478,73299,13785,64808,16874],97600890526270256260654253],[[63399,65264,67776,69568,72544,72585,60260,64457,30984,14032],97600890453400829981969519],[[63401,68385,71017,71479,72535,73002,745,73089,13553,15391],97600890431192040236819523],[[65186,65269,68542,70985,71370,73356,73160,74519,63436,45247],97600890429347182450658390],[[65214,65283,66204,71024,61441,74417,74666,24147,69401,20869],97600890415700837452446072],[[66205,67794,68541,71009,73298,38592,60269,14336,26993,68825],97600890447114879031689079],[[66273,68659,70294,71424,59913,73981,74049,40844,41084,46081],97600890415700837452446072],[[67803,68044,71127,71338,71388,59715,64619,72916,41061,41797],97600890457864923333183325],[[68550,68553,69686,72015,60253,72154,74141,20860,32967,43944],97600890418287234698986489],[[68642,69564,69575,71133,71484,466,65961,44429,44527,53536],97600890447114879031689079],[[69566,70161,71427,71480,39735,61436,67518,73034,27000,39518],97600890429037279003655895],[[69567,71346,71363,73357,61924,64881,73220,74308,23775,62085],97600890429037279003655895],[[70965,71362,73350,761,61442,72061,72200,66662,60908,60954],97600890384286795863092072],[[71343,71397,71472,72557,41442,61437,64600,67368,65914,33093],97600890426450881757400352],[[71354,71475,72581,58409,61904,64038,64170,64465,25288,52506],97600890377834380804068483],[[71367,71473,72584,73117,41607,61440,61530,65960,11334,44526],97600890429037279003655895],[[71470,71835,72568,38182,60005,71768,72060,25290,48117,57344],97600890367084336493759441],[[71476,73293,549,61739,67520,71945,73003,74230,64181,25032],97600890368795593071273826],[[71481,71873,72227,37918,38567,39734,74349,74418,69628,73288],97600890400209634665613860],[[71482,72580,41243,64004,64059,64468,74353,74683,39015,61906],97600890371381990319057219],[[71485,39612,64091,64236,65959,16497,16937,24997,33799,64927],97600890310304213017849190],[[71802,72035,41622,67143,73906,74064,74310,27010,27100,64796],97600890360631946008037493],[[72576,73349,59538,61932,71775,72067,73895,74125,16499,27174],97600890371381990319057219],[[73351,782,61737,61920,64880,71797,60903,62084,14029,21790],97600890315881462836109492],[[73352,548,59944,72066,73023,74532,52173,70500,40025,2221],97600890181775054234137506],[[73353,11179,58678,72783,73967,74421,74517,39173,65947,20569],97600890329217904400958895],[[73354,780,61510,67354,73215,74131,74151,64172,64865,13528],97600890329217904400958895],[[73355,58711,60264,61438,67341,72203,73977,70484,33092,59934],97600890192068811551083275],[[73358,11172,41614,71700,71849,74152,74264,64434,73076,13542],97600890329217904400958895],[[73359,60245,61741,64809,67334,72912,461,15170,61665,62684],97600890262800868467769784],[[73360,61443,64094,67150,74667,17729,27074,27300,44428,39728],97600890277012475285456358],[[73363,61439,67335,67418,72359,74142,24077,27028,55550,5683],97600890184007093311683742],[[61740,61908,67144,71712,73982,74086,39366,41893,62077,73233],97600890292226612964475987],[[64464,67145,67336,71692,73979,74147,39368,43969,13868,39560],97600890287053818464645470],[[64469,67340,67346,67514,67580,74419,39343,43966,44194,70616],97600890292226612964475987],[[67337,67515,71932,72155,73218,61938,73234,2566,39164,58384],97600890139154681220106864],[[67516,71752,71944,72779,73067,74215,39498,41871,43844,24229],97600890289640215714594998],[[67517,72915,73843,74128,15183,20513,20782,48711,48803,62861],97600890238005681428000049],[[67519,72202,72355,73009,74423,16930,24462,26012,33060,2815],97600890256514917505213821],[[71707,72045,73162,73907,73983,27301,41443,52575,1494,2817],97600890256514917505213821],[[72049,72778,73219,74523,1088,16498,20746,41400,44457,70467],97600890270726524323815688],[[72386,73087,73859,74148,6504,17753,30564,45263,64910,67970],97600890270726524323815688],[[73074,73863,73909,74054,16941,26013,33797,15963,17313,31023],97600890262967322690140183],[[73851,73966,74077,74150,764,24018,33176,45584,68102,50489],97600890268140127073364953],[[73891,73908,73970,73980,17069,33856,17407,25147,25793,26502],97600890260380935321601513],[[73903,73971,74136,74153,74309,74422,2138,27772,64795,65932],97600890292226612964475987],[[74059,74080,74154,24705,25974,26813,44085,16360,13371,34040],97600890252217278367179352],[[74083,74149,74355,74677,5908,20794,65501,891,15996,16116],97600890262967332572257865],[[74155,74315,6186,11563,17761,24023,27303,65913,68695,15902],97600890246640038427398744],[[74416,74668,1736,5561,21116,24431,31387,44192,50136,65912],97600890249226435678419226],[[74420,747,14328,21088,24148,31406,51440,56423,65946,71293],97600890238476391353944933],[[74598,74671,11327,23711,24204,33440,39519,65515,70711,15321],97600890246640033486339902],[[74678,765,6479,18491,24083,25997,33801,50139,64797,68198],97600890238476391353944933],[[1085,1267,2116,22754,24202,25909,65275,70719,893,51266],97600890222553552525037604],[[1895,11675,19889,24195,26992,27043,44444,49324,60527,40957],97600890225139949776696371],[[2119,5560,6505,21111,24197,30731,44195,2561,28264,41143],97600890219967155273310297],[[5912,11321,18288,20861,30959,33845,44525,69635,70624,49666],97600890225139949776696371],[[6187,16335,16850,23732,27302,30989,50138,65915,68817,21765],97600890225139949776696371],[[11683,15203,19853,24206,27093,27304,43947,10766,20853,39510],97600890187583426017654323],[[16333,16886,20808,21080,27298,27328,33215,51374,70749,21446],97600890225139949776696371],[[19353,20747,23782,29046,30964,39451,40797,41083,43927,17406],97600890225139949776696371],[[19368,20874,24240,24473,31433,39449,41711,68614,27195,40561],97600890222553552525037604],[[20875,24142,24987,25981,27008,27042,33025,64397,65228,73302],97600890227726347028286600],[[20879,24019,25234,26015,26614,32781,33005,64400,65225,25890],97600890225139949776696371],[[22396,22893,25911,27306,27582,32973,50083,65509,68701,71008],97600890227726347028286600],[[22427,22761,25910,27011,27299,44524,51375,68632,20733,50841],97600890222553552525037604],[[24232,24999,25293,25990,26985,27166,33007,43929,67686,73309],97600890227726347028286600],[[24243,25262,27025,27175,30698,32911,51444,16797,21349,46722],97600890219967155273310297],[[24688,25251,26984,27075,32136,32913,25809,25895,45990,17664],97600890217380753080455609],[[25539,26573,27118,30441,30767,44199,45581,68078,70103,35826],97600890225139949776696371],[[27176,27305,27307,31436,33278,45865,66883,68313,16906,49911],97600890222553552525037604],[[27184,29047,30554,48032,49346,49447,50664,1078,27843,47254],97600890219967155273310297],[[27542,27831,29077,32780,33024,33798,50137,52174,64794,40447],97600890205249159083457794],[[27560,29076,30690,32815,33441,33840,65475,68182,68816,19735],97600890225139949776696371],[[27600,30553,30763,33027,33794,49215,70490,7052,48997,38653],97600890200076364579017519],[[30431,30963,32090,32975,44711,50589,68693,963,7688,38534],97600890180287507924438423],[[30559,30768,32167,33865,41789,49473,69627,26503,41016,45964],97600890219967155273310297],[[30565,33006,33795,41086,43839],69014251329869138647361566],[[32076,33463,33796,43860,65499,68822,73096,21780,27191,31946],97600890219967150332251454],[[32153,32817,33130,39614,43964,44464,61928,72424,17243,38057],97600890222553552525037604],[[33800,33860,41063,43855,44056,56318,66591,66607,69647,12968],97600890225139949776696371],[[33841,41788,43950,44052,48076,61922,68703,69645,72418,47199],97600890225139949776696371],[[33864,41796,43942,44044,46206,59902,64734,68509,26507,40952],97600890222553552525037604],[[39499,39629,43569,44198,44451,61940,38082,49093,52320,5778],97600890197591896429385026],[[41060,41813,43972,48039,49348,60521,72225,28240,39561,40560],97600890219967155273310297],[[41805,44080,45863,48782,53540,66594,973,19817,27050,57657],97600890217380758021514452],[[43572,44193,44715,46203,53250,66549,66882,70506,47204,57683],97600890222553552525037604],[[44197,44327,44712,48807,50103,52627,65473,13552,33062,41134],97600890219967155273310297],[[44334,45142,48115,48783,56428,65931,67948,1407,13147,57565],97600890219967155273310297],[[45145,45260,49420,50191,56441,67937,73230,48400,60359,63049],97600890219967155273310297],[[48069,49174,49441,50729,56421,65945,69824,30584,51268,54153],97600890219967155273310297],[[48784,49428,49440,51442,56320,56433,71306,42219,48307,53301],97600890200076364579017519],[[48808,50105,50241,50594,56328,58680,67607,15959,16912,48657],97600890219967155273310297],[[48812,49421,49448,51445,56422,66592,68290,71292,31945,45729],97600890222553542642919918],[[49429,50085,50590,52649,53532,5489,16012,16309,33195,47253],97600890214794360769650068],[[50162,50611,51395,53105,56330,65930,21373,49018,58112,13377],97600890217380753080455609],[[50612,51397,53188,56316,60895,65943,70758,73303,20545,38629],97600890222553552525037604],[[50615,51372,51443,65944,66553,70149,71420,47812,47845,61850],97600890219967155273310297],[[51441,52574,56420,64714,65933,70138,1406,25164,54323,42399],97600890177701110671591078],[[51446,52165,52572,56435,65099,65513,70703,23291,60856,27027],97600890219967150332251454],[[51447,56324,56434,59899,64334,64715,69642,70181,70630,15546],97600890225139949776696371],[[52573,53525,56430,65272,69421,70120,70872,70881,33064,62960],97600890222553552525037604],[[53516,56431,64296,66552,66590,66895,71309,16803,17263,61896],97600890219967155273310297],[[53521,56432,58945,64323,66596,66906,71037,15898,16759,17241],97600890219967155273310297],[[53541,56440,62081,64345,66548,66597,66888,69400,54089,56250],97600890222553552525037604],[[56442,62076,65273,66595,69634,71438,71456,16806,17112,57455],97600890219967155273310297],[[56443,58662,62089,64133,67667,70247,71437,72260,73296,43286],97600890225139949776696371],[[61910,62080,64065,64437,65511,68312,16763,17089,17255,39485],97600890217380758021514452],[[61913,64068,64864,67835,13889,15998,16117,20571,33032,39524],97600890212207958576658302],[[61926,62088,64192,65948,67844,70244,70621,2660,11781,38437],97600890088092785619289021],[[61929,65942,69864,70156,70623,12858,19713,27190,53076,56352],97600890214794360769650068],[[61934,65260,66776,67411,67873,71031,15926,58225,18346,15755],97600890197591896429385026],[[61941,65261,67420,67671,69411,70617,20575,20871,45994,46792],97600890217380758021514452],[[61950,66616,67467,68188,68814,69629,11768,40582,42303,35957],97600890154291688243401337],[[61954,67604,69420,70475,72464,73236,10767,25094,56405,15817],97600890197591901370443870],[[61956,65274,67605,68633,69410,70618,70629,44004,47801,33559],97600890219967150332251454],[[61957,68183,68625,68639,68815,69649,20870,38848,50835,54496],97600890197591901370443870],[[67799,67882,68059,70552,70998,71417,73069,30585,45589,47256],97600890219967155273310297],[[67808,68025,68189,68291,69626,70175,70864,20898,42256,38325],97600890219967150332251454],[[67981,68050,68566,69643,70473,70622,70635,16448,17252,46714],97600890219967155273310297],[[68034,68558,69424,69637,8667,8906,34553,3442,49097,52666],97600890147440490167334889],[[68205,68476,70118,70544,71423,15194,24231,58205,61086,15322],97600890214794355828591225],[[68638,69425,69648,70137,72390,11030,14022,15958,41144,47880],97600890214794360769650068],[[68823,69636,69777,70148,71307,12990,15656,21757,41146,47200],97600890214794360769650068],[[68824,69849,70139,70861,70882,19115,20780,21416,21808,25865],97600890214794360769650068],[[69646,70245,70550,70620,72457,17260,20868,39055,49290,52667],97600890182410626571218945],[[70159,70209,70469,71426,71799,16355,27048,60939,38885,57624],97600890214794350887532382],[[70212,70619,71056,11359,15735,21784,41069,48777,2675,38486],97600890159127369092994234],[[70246,70546,71453,71871,72422,20854,45965,46628,63122,58071],97600890214794355828591225],[[70274,70752,70879,71282,71386,13945,16317,27058,53719,56304],97600890214794360769650068],[[70727,70755,70858,70973,72215,17240,19973,25879,35832,45242],97600890214794360769650068],[[70855,70878,71276,73294,16918,23246,25885,48964,56310,32444],97600890212207958576658302],[[70866,70883,71398,72425,13933,27212,34476,42257,51267,58188],97600890212207963517717145],[[70880,71030,71389,14196,16001,16465,27193,45850,48171,53720],97600890209621566265715684],[[70885,71395,962,3183,5184,15691,17033,21846,25089,27962],97600890207035169013645683],[[70953,70983,71407,3182,5495,12869,15688,45120,45245,55221],97600890209621566265715684],[[70963,71290,71401,72086,28230,43873,48401,51430,31961,33523],97600890212207953635599458],[[71036,71284,71404,71436,14867,21338,41133,45586,53163,48274],97600890212207958576658302],[[71065,71274,71291,71441,14857,26636,40954,45966,58185,15734],97600890192419106865597765],[[71308,71392,71442,71462,16924,32827,40953,47171,49634,36104],97600890212207958576658302],[[71439,71459,11772,16925,20573,21958,47203,58125,29772,32921],97600890207035159131527996],[[71440,71832,72388,72456,73114,19019,20855,48713,58224,19266],97600890195005504118055087],[[71443,71881,72384,17072,19025,28093,39556,45853,58227,31087],97600890209621561324656840],[[72093,72249,73120,13158,20732,42218,56248,49314,51198,62871],97600890189832699730954215],[[73112,73237,7792,17073,25808,54151,60332,61087,2666,28273],97600890167457455703297078],[[73118,73290,16913,21959,23257,25148,42217,57371,42421,19030],97600890176329823557921079],[[73231,644,1408,3414,11358,16013,21795,25860,63305,58918],97600890184659915107814565],[[73232,73308,15962,16000,22746,27925,38332,42216,40435,45868],97600890187144373375658558],[[73235,1409,4672,13529,16011,25896,48774,50584,21429,23263],97600890204448761879389456],[[2665,3415,5186,16009,16909,22093,38662,3926,28633,39603],97600890201862359686123534],[[3828,5185,7057,15643,16237,19939,37865,41128,33911,2082],97600890182073512914024243],[[3833,4673,5187,16130,20543,21891,22834,39508,51177,16475],97600890182073512914024243],[[7794,9331,16119,16219,25015,27150,60948,29780,15606,21442],97600890151368172391505521],[[7795,9330,13543,16128,16793,19180,28722,34763,14261,34482],97600890149587854543054775],[[9332,15418,16118,16129,20734,20981,22869,45060,18078,51282],97600890201862364627182378],[[9333,15824,16131,16769,22005,27621,22385,27098,29809,45419],97600890201862354745064690],[[15551,15826,16080,19348,21932,27202,29587,60803,4679,38537],97600890181971578870258739],[[15922,16772,17242,19197,20068,21766,21942,29568,39178,49750],97600890181971573929199894],[[16083,16921,17345,19816,19910,21793,21968,41074,51265,51180],97600890201862369568241222],[[17052,17502,21768,21871,21937,21979,27049,39489,19076,42420],97600890201862364627182378],[[17352,19363,20087,20922,21510,21791,21953,43869,47533,51133],97600890201862369568241222],[[17507,20515,20735,21782,22720,23429,25892,48776,34383,45117],97600890201862364627182378],[[19069,20781,21785,21915,32826,38652,41647,60298,22816,51275],97600890201862364627182378],[[20590,21348,21676,21807,21943,25894,28723,35821,58854,46411],97600890201862369568241222],[[20636,20942,21936,22033,27610,35662,35824,44987,22426,1337],97600890182073512914024243],[[21063,21805,21939,25029,25884,29687,50580,4847,16086,63343],97600890181971573929199894],[[21098,21393,21767,21941,21971,25897,27153,32830,60919,31026],97600890201862369568241222],[[21451,21714,21952,25792,28725,29482,41640,60305,28079,14370],97600890182073512914024243],[[21770,24230,25893,27205,29582,60748,36321,55208,38671,46959],97600890142291931505939760],[[21809,21884,25165,27225,39488,47198,47995,55754,23268,34043],97600890201862364627182378],[[21924,21934,22084,25878,26641,28072,35733,46004,31051,20906],97600890182073512914024243],[[21976,22076,25012,25891,27056,34422,35730,35831,31555,38684],97600890171157029051948095],[[23441,25088,26505,29501,29616,46023,60576,13444,46444,57713],97600890201862359686123534],[[24228,26506,27051,28087,28724,34552,42264,47881,35294,36212],97600890201862364627182378],[[25854,27057,27160,28078,28198,30171,35825,41017,61090,4846],97600890201862369568241222],[[26504,26925,27222,34735,41139,49909,56023,33539,33923,48456],97600890181971573929199894],[[26508,27059,27192,34436,40950,45562,50511,56402,47398,1859],97600890182073512914024243],[[26509,27223,28208,33052,39310,39502,41011,61091,29815,57717],97600890201862364627182378],[[27224,29682,32829,35828,40027,46731,49059,57459,15323,17363],97600890201862364627182378],[[27604,27906,29505,29622,33036,44890,47575,57456,45190,56726],97600890140451693467053883],[[27627,27964,28262,32831,33063,33345,51425,51155,41657,51001],97600890162080788168222567],[[29481,29604,33094,34286,34727,35736,38639,42265,6160,713],97600890182073512914024243],[[29500,29617,30586,32833,34386,34731,47857,15320,46465,49218],97600890201862359686123534],[[29504,29621,29950,30043,35665,43817,47566,54168,27067,46458],97600890201862364627182378],[[29506,29623,33061,34746,39540,47201,55921,8659,55046,17190],97600890182073507972965398],[[29507,29603,30165,34747,35819,39482,13438,23222,55037,7687],97600890182073503031906553],[[29620,29941,30052,34559,34751,35739,3443,23327,36135,22847],97600890181971568988141049],[[30164,33068,34360,34474,43816,58551,21438,32783,34288,34529],97600890201862354745064690],[[30170,30587,33048,35656,39410,43818,47798,50847,41781,39294],97600890151266243288766795],[[32828,33084,35818,41145,44816,45588,48802,53195,42454,47248],97600890171157029051948095],[[32832,33369,34456,34726,39418,46012,23618,32378,27904,5534],97600890149587839719878251],[[33080,34412,34750,39306,41714,44981,45159,16372,33908,3010],97600890182073507972965398],[[33095,33190,34558,39284,50541,17618,27869,31083,47413,51151],97600890201862349804005846],[[34296,34730,35820,39355,41053,44094,60304,17617,34690,49309],97600890201862359686123534],[[34743,34755,35659,43819,45196,61143,5517,33907,33933,1330],97600890182073503031906553],[[35822,39278,39544,41140,45967,21896,45418,57992,2755,21132],97600890162284646373677325],[[35823,39330,39557,41142,44814,47852,50506,53269,47877,46627],97600890151368177332564368],[[35827,39045,39311,40955,53902,56775,33533,36110,17168,38731],97600890162182717270950000],[[35829,39132,39307,46728,47176,48804,55886,1975,57366,63799],97600890027721965369293390],[[35830,38334,38903,39509,45123,46185,48414,60328,29808,11513],97600890181971578870258739],[[35833,40951,44007,47046,47844,48406,50836,32445,53945,41654],97600890181971573929199894],[[39582,40583,41141,44895,45851,56355,58108,62806,13926,43995],97600890140451693467053883],[[39584,41010,41690,45153,45852,48717,57144,62822,28525,31909],97600890201862364627182378],[[41048,41147,44099,45559,46783,47255,55771,58226,51610,57603],97600890201862364627182378],[[43283,44006,46674,46734,46968,50492,54166,56084,57712,18084],97600890181971573929199894],[[44005,46005,46188,47849,50495,50830,58116,17314,17669,35229],97600890201862359686123534],[[45033,45587,46737,47794,47917,48064,33594,58001,18097,28528],97600890162080783227163721],[[45179,46022,47172,47800,47840,47874,53721,57585,58250,56690],97600890182073517855083088],[[46093,46768,47173,48775,49667,57457,31609,34468,56080,51432],97600890182073503031906553],[[46127,47174,47529,47816,48715,57541,58244,35227,3398,46948],97600890162182722212008846],[[46759,47202,47819,49367,50498,53953,54472,61856,63310,17169],97600890182073517855083088],[[46993,47175,47854,47980,49908,50606,53718,54088,58211,49720],97600890201862369568241222],[[47054,47257,47926,47943,48027,57626,60971,33598,34039,45539],97600890182073507972965398],[[47205,47958,48255,48660,50834,51750,58176,58191,57634,56806],97600890182073512914024243],[[47252,47841,48407,48421,48801,49281,56409,33592,11046,57461],97600890162284656255795017],[[47258,49204,49635,50602,50832,52820,56734,60938,48817,55524],97600890201862364627182378],[[47259,47818,49160,50536,56356,57526,17315,17411,57592,40390],97600890181971568988141049],[[47875,48989,49052,54866,56731,57319,57452,57540,43181,57582],97600890201862364627182378],[[48954,49375,50828,53936,57184,58214,63450,18079,55428,31623],97600890181971573929199894],[[49910,50379,53137,54083,56398,58122,61085,20152,11511,12664],97600890069886065845874926],[[50382,52821,53926,54018,54086,56410,57146,47743,63338,63468],97600890142495804534612392],[[50829,50842,51755,53079,56312,56418,62954,47406,58010,20904],97600890182073507972965398],[[50831,52826,54029,54889,56417,57575,58114,34688,45113,56786],97600890162284656255795017],[[50833,53329,53894,55154,56359,58247,33133,16438,17164,34692],97600890129900926981000135],[[51262,52827,56006,56314,56416,35297,36144,58014,21547,17336],97600890138773284956920519],[[51263,53132,53938,56419,60583,62038,31605,55400,55373,59468],97600890151266233406649102],[[51264,56306,56411,58110,58124,61857,63071,34689,62366,57843],97600890149689778704736424],[[51269,56308,56401,56967,57002,58179,58182,62631,23224,4056],97600890182073512914024243],[[54082,56408,57039,57530,58208,31944,32966,36162,55485,8012],97600890067755945986427195],[[54084,56733,56778,57100,57142,60970,28524,31601,40392,41675],97600890181971568988141049],[[54085,56746,56936,57454,23650,34522,35305,45727,15800,23421],97600890149689768822618714],[[54087,56753,57107,57148,62818,62846,28520,36215,39576,16579],97600890182073503031906553],[[56727,56779,57169,57318,58170,58230,15495,46699,6330,17631],97600890149689778704736407],[[56750,56774,57308,57390,15494,17410,42398,23145,38730,49244],97600890142291921623822066],[[56752,57090,57453,58231,58241,28637,31960,32814,51132,20767],97600890089776841743523577],[[57117,57309,57458,58123,62039,23655,32392,33488,15801,24496],97600890162284646373677325],[[57528,58106,58115,58229,61903,33489,57716,16587,13572,61151],97600889995240872780772865],[[57532,61854,17312,22854,23225,33502,57649,6326,34370,8014],97600890015583355051235743],[[57546,58173,16945,20372,31955,42404,42457,30107,36701,32663],97600890025009378194014300],[[57547,6158,8902,32396,39600,46405,55518,57709,11780,52415],97600890162182692565655769],[[57595,57636,58117,58602,13911,31910,56086,57704,16051,62963],97600890162284641432618479],[[57656,60363,61142,62072,62642,27066,36221,46459,63435,31979],97600890162182712329891154],[[57662,60740,61084,63304,18077,20322,31954,36153,57477,37987],97600890162182707388832308],[[57663,57692,58900,60577,4678,36218,42401,54816,57989,51424],97600890182073493149788863],[[58228,60904,61144,18339,20663,31607,33909,36107,55486,55519],97600890201862339921888158],[[58360,58803,61089,15673,29811,34691,35295,20077,21135,46519],97600890131579300903874158],[[58388,58793,60905,61147,29810,52393,57608,17797,56793,63363],97600890142495789711435851],[[60299,60913,61148,62812,3927,13005,18076,20180,15813,45451],97600890151368157568328982],[[60582,60909,61149,62955,13918,20181,26592,17195,43078,58885],97600890131477371801114766],[[61145,61902,62877,63140,31911,36101,20900,21131,44617,42691],97600890122605003942413471],[[61146,63371,5519,19952,23616,29524,46404,57708,14009,42668],97600890162182697506714616],[[62961,63311,18338,29671,33912,44845,21320,21343,24505,52516],97600890122706928104123282],[[63381,8661,8900,18066,19122,27024,28521,46382,57705,58872],97600890182073478326612328],[[13003,15681,16378,18065,27065,45417,51174,13984,62957,61345],97600890142393835903393624],[[16088,17619,21894,23337,31052,31557,57609,42651,51128,52808],97600890131375417993061029],[[16944,20153,23619,27850,33919,49308,49721,48489,18859,30732],97600889957800523046418225],[[17369,18067,23437,23615,33913,51274,15628,19432,21071,47247],97600890111790434353289391],[[18347,20851,27064,27249,29796,34523,34545,54718,14160,28529],97600890162182687624596923],[[20289,20846,32395,32448,33169,36327,40448,51284,62868,60316],97600890162182687624596923],[[20617,23422,29646,32397,46466,49182,54739,21133,44098,56970],97600890142495769947200463],[[23223,23617,27244,31048,34334,34528,54822,19788,17387,3820],97600890117306019779409503],[[23614,27612,28073,39185,39602,52426,3825,41734,62908,44986],97600890122604984178178079],[[23620,26598,29813,31028,46381,27936,51428,62863,17248,22806],97600890102714198405102010],[[23621,27606,29788,31053,33906,34036,46412,14355,40433,8297],97600890129798963290827056],[[29812,31027,31082,31603,34538,36312,57986,14365,57186,62952],97600890142495769947200463],[[29814,31086,31908,36311,44393,6708,19475,13562,56333,24338],97600889966311259512183423],[[31947,33499,34471,35303,36315,44374,2668,2748,18950,44607],97600890122706918222005586],[[31952,33553,33910,36310,40434,43890,3005,4055,38598,25268],97600890030308327774617320],[[31953,33498,34423,35225,47412,52257,3819,57462,45867,27618],97600890111688500309450483],[[31962,33596,34380,35296,53290,58068,1573,2076,3002,11783],97600890122706918222005586],[[31963,34298,34413,36316,38863,45239,57602,6701,11848,23296],97600890118984413466735488],[[32375,32449,36308,40449,54712,3004,18109,60302,46967,61848],97600890080881230661976332],[[32379,36309,39527,47389,51129,2059,11782,44095,63280,35378],97600889977227743397171202],[[32380,36314,39601,42456,43882,46464,54817,56934,13573,36428],97600890118984413466735488],[[33937,35231,35302,45114,45557,715,44110,53149,48420,36707],97600890090221259831276432],[[34367,35304,42414,44808,47380,56087,3011,47883,36108,31661],97600890017815389191523772],[[36313,36322,42405,44811,45416,57642,1980,62958,31965,51131],97600890122503050134350466],[[38303,39384,39579,51283,55513,2057,48169,60388,33178,7726],97600889975801773575290796],[[39398,40393,46410,51154,52445,58016,2809,19767,22016,62984],97600890111790434353289391],[[40426,42417,42455,44840,47371,55491,17795,42642,24002,67522],97600889938011671283775873],[[40427,45554,48556,49037,49754,55010,15816,40191,49617,15698],97600890111586566265611469],[[43213,46467,47010,52372,55531,57998,17258,20914,23833,55555],97600890122706918222005586],[[43396,46694,47015,49078,51192,57995,6325,7684,17257,34390],97600890110112045606898527],[[45236,46413,48790,49278,51126,54823,19228,15701,46844,49686],97600890111586566265611469],[[46443,47407,48621,55406,57729,58011,14423,15733,18948,40620],97600890111790434353289391],[[48190,49287,51195,52444,55528,57737,23148,31625,29806,37884],97600889995236267418478451],[[49315,49755,51285,55019,55525,58067,23831,38472,42300,47246],97600890089957466612194034],[[51148,51278,52455,55527,14635,16582,21070,21130,31986,41636],97600890082925346671841309],[[51181,52637,56081,58004,3012,6448,19417,15703,11742,17609],97600890059515924220919748],[[51199,52437,55526,58072,3808,15751,21136,21344,49716,47245],97600890072110796842555966],[[51279,52659,55530,1981,2677,17174,54322,41229,56120,40572],97600890052220011059189323],[[52454,53891,55434,56083,6709,14389,44108,47872,62353,16774],97600890070534342139364748],[[53347,55529,58007,4054,4279,23157,46776,31973,52414,37745],97600889948362655675926721],[[53899,55512,56082,4057,16039,31448,57253,19904,11853,45173],97600890041405461226501712],[[53957,56085,58015,15608,16056,19418,20107,21094,8299,35346],97600890038150617775186195],[[54745,55480,58012,13095,19766,30522,63388,49255,46518,35428],97600890039727072478900477],[[57562,57785,58017,1851,1976,14360,46804,63469,19327,45024],97600890052321945103090340],[[57572,57777,58070,2667,2754,17165,39383,54664,21833,48998],97600890041303527182589295],[[58013,2749,3824,6331,20106,63491,19013,46954,41153,21524],97600889998369041249498410],[[58066,2674,2811,6443,17254,19673,332,38487,3910,36178],97600889987554486469785068],[[58069,5790,6719,16162,17144,17171,46423,4271,32867,11240],97600889793180802125328910],[[58073,6716,11047,16439,41738,56683,880,9747,4806,17420],97600889985876097721257787],[[3393,3826,14197,17179,62917,16377,18087,18351,4664,16126],97600889978478250510044567],[[3827,4272,7683,16044,16447,17167,21331,43079,16568,27130],97600889819278560623664624],[[6718,13074,15754,16463,16991,18355,40169,50227,21826,44093],97600889980156649140816743],[[14634,15791,16585,21134,883,3594,17250,52319,51027,7176],97600889878332035402442480],[[15732,16190,17166,24494,44596,47748,11753,41523,59991,59474],97600889992751521772693850],[[16160,17146,17261,20916,24507,52527,39074,42402,57331,38444],97600889900556799290396184],[[16192,17152,20058,20099,44601,57345,18354,55110,36674,61512],97600889898878410540372852],[[16474,17150,18978,19227,20975,333,18086,58845,59963,15750],97600889990971194039232117],[[17002,19407,19789,20060,21328,31975,48844,19183,28728,44861],97600889969342094359085398],[[17170,19672,21090,44602,63113,41696,51152,46517,46673,39491],97600889969342099300144237],[[18980,19408,19835,20918,21988,17085,10744,21381,12566,60108],97600889773290016285117123],[[19265,20059,20948,23160,57166,18358,53425,29688,28225,8728],97600889865484743828691038],[[19865,20098,21066,45042,47751,39553,45157,45296,54673,27890],97600889990971194039232117],[[20078,21137,27937,44620,47570,14368,18121,28234,46960,60280],97600889867163132579288623],[[20080,21091,21323,27973,46805,55782,57466,31621,42339,8383],97600889991175062127161979],[[21342,27972,30524,47573,55881,38747,42334,57321,61733,60204],97600889889640315396832899],[[21345,28272,47588,55883,13976,38099,45031,48479,46618,1188],97600889877875748387199846],[[21502,45069,51427,60505,13970,16371,18099,51000,51149,9746],97600889990869264936325864],[[21528,31446,47740,52517,27620,39564,40445,49009,59472,44572],97600889969240160315097717],[[44109,46777,47589,53197,55781,11748,47983,58839,56972,24852],97600889866332822002588641],[[44111,47592,54531,60475,18085,38746,60308,4850,27852,57588],97600889965883387758443249],[[45091,45551,51433,57185,60344,18096,46953,49719,34299,57567],97600889978478255451103406],[[47593,47878,54324,57467,62920,63254,63490,18098,52396,36102],97600889991175067068220817],[[51431,52473,57275,60345,31984,37997,49752,12888,35452,33804],97600889887859992602549168],[[54325,55164,55869,56802,57000,51153,19200,29588,46534,58146],97600889956849155768188157],[[55552,55789,55867,57367,19812,44394,55498,55509,58269,33464],97600889898674537511191358],[[55557,55788,56693,56938,57501,11758,43096,59925,16887,26001],97600889808260142676854706],[[56935,57047,57463,63123,63380,27923,59654,44936,58156,73222],97600889886283528014264235],[[56969,57170,62927,63033,63434,10764,45877,5496,58157,58212],97600889965985311920316756],[[56971,57167,63141,63370,40388,52413,52424,61894,45191,64214],97600889887859992602549168],[[57187,57465,60377,62860,63152,63365,55104,55399,57099,61435],97600889981936971933416904],[[57460,60376,63084,63228,41776,55120,55381,55427,58953,58262],97600889980054710155781518],[[57464,61675,12024,18108,27626,38681,40431,59475,39490,58264],97600889967357903478276309],[[57476,58924,62352,62873,18122,23163,11016,38645,58270,17943],97600889854568254990146161],[[57500,61664,17251,22420,37943,49273,54364,46516,58590,58276],97600889969036292227122038],[[58878,62365,63339,18110,19170,38536,42301,36598,24283,32707],97600889795563335977000905],[[61674,63151,63364,3191,3596,53075,14037,22078,58281,27461],97600889876943503766506923],[[63112,63387,3193,31615,43085,45875,55405,57446,35389,18494],97600889887656124514403502],[[63362,10758,13705,14375,17249,40425,27897,32996,35402,46537],97600889954763035784181131],[[63437,11356,11512,31964,46847,47999,54668,45051,45461,2719],97600889865533294667608273],[[63438,11354,18359,19163,38535,41655,54391,59655,45436,4682],97600889979748912964910561],[[63439,12029,17084,23162,38630,38833,16354,47244,34443,588],97600889854262457798882038],[[63440,18123,19813,31617,40189,46946,49266,49753,60395,61080],97600889992241851552876628],[[63441,19016,19815,22368,23142,28532,31978,58708,61083,18613],97600889889232579220548578],[[13674,14299,18120,23143,28533,48253,60389,48011,56997,24003],97600889889130645176477231],[[14350,18111,28085,38792,42415,42740,59380,33283,3210,7732],97600889751215742192431907],[[14357,18362,19814,28091,31966,11391,40627,59393,17445,6256],97600889843802260915544875],[[18363,19905,28645,31987,45874,47962,59791,22094,6978,36118],97600889761117718025698814],[[19336,31611,31977,37974,38599,55497,58965,45441,15799,24294],97600889887452251485198566],[[28649,31619,31974,40422,42338,45866,46841,30577,35388,36676],97600889965475651582477440],[[31613,31967,39101,39565,44980,45876,47250,33000,36146,42429],97600889830917536140583551],[[31972,39566,40171,40391,42400,52234,53231,60347,44942,31799],97600889875789623460446000],[[31976,39567,40389,42335,45293,48865,55126,39417,8442,11241],97600889762796106778091141],[[31985,40193,40432,42419,47957,53237,59469,15603,28891,33308],97600889737810219806484368],[[37891,38110,40195,40444,47994,48446,50545,18696,39878,26981],97600889583264226781293037],[[37894,39289,40197,40423,45311,55505,27916,46522,30037,34833],97600889956339490489242293],[[39292,39552,41219,42418,46766,55507,46511,16914,17399,32818],97600889954661101740178225],[[39397,40430,42416,42766,54327,54348,29593,46520,8298,46538],97600889956339490489242293],[[40199,41516,45869,48410,48845,54666,45446,63281,34478,57823],97600889956339490489242293],[[40424,43073,44401,45307,46838,54342,59686,61714,30299,26191],97600889785273289619670820],[[40446,42403,43072,48864,55506,11162,39729,22490,25926,17866],97600889682264017068905407],[[41641,41656,45151,49267,52256,57492,60353,40626,31195,39748],97600889785273289619670820],[[45058,45292,46730,46941,49717,15699,21835,48305,17628,35959],97600889945524940645930756],[[45297,45755,46940,49751,51010,60322,45321,63069,16318,58165],97600889956339485548183453],[[45757,46733,46942,51127,29510,44984,48314,56720,16926,4807],97600889934710385860362084],[[45759,46727,46945,51833,12889,50515,8656,21880,4026,5423],97600889727908248765131292],[[45761,46736,46781,47541,45434,47781,57450,33030,53904,57152],97600889933031992169867231],[[46757,46943,48427,50991,55433,29625,51016,36628,5978,27485],97600889739944905310504414],[[46790,46944,51014,54679,59687,29626,38904,32980,34406,34801],97600889943846542014563034],[[46947,47548,51176,58891,13938,19388,38685,41158,11685,27484],97600889751151251276713256],[[47923,48083,49611,54358,58819,60300,16359,46523,61732,34697],97600889958017879238277499],[[47932,48046,49718,58818,59983,11348,58798,62978,12657,30306],97600889786121372735324248],[[48404,48904,51178,53410,57485,62636,11009,46521,23718,31259],97600889796935922596298307],[[48405,48935,48969,51196,54336,54411,52814,56722,62981,27435],97600889878316095325718699],[[48411,48959,51130,54330,54661,21546,56721,16094,22483,30699],97600889784442979042274184],[[49036,49272,51011,55510,40569,60613,43849,21964,25922,40471],97600889749472857583061828],[[49077,49609,50990,51193,58976,49684,62977,39591,16566,24292],97600889784442983983333033],[[49619,51150,52221,54660,38704,28204,51292,58273,24081,27364],97600889770271651675474897],[[50237,51175,52425,53409,54667,59684,21443,50514,49283,8599],97600889854160523754774169],[[51015,51194,54333,54417,13194,21828,49408,56347,2642,39742],97600889730808744196157930],[[51179,51877,53424,59652,13563,37911,61423,49207,51287,32835],97600889853330218119022416],[[51197,54665,54674,29693,39409,43993,4851,36336,36414,33994],97600889920539058515381129],[[53078,53130,53411,54397,54663,13191,61477,27658,29117,11092],97600889660699418167926834],[[53161,53359,55503,55508,28726,29624,49092,36627,39511,58100],97600889933031997110926072],[[54662,56113,19393,38473,38709,47251,16927,44800,38231,2972],97600889683801981039776434],[[55375,55492,60394,61357,48010,61504,39568,45731,26104,8010],97600889749929144598904749],[[55379,57496,62647,19031,37910,47946,61079,17610,25913,36472],97600889727843757996177628],[[55504,11171,38911,42302,58539,61078,32821,36105,45244,58151],97600889898909953878567271],[[55511,22075,28729,29627,46355,46513,61715,35965,57276,9696],97600889798409380776814568],[[57481,27624,28224,49685,56399,57080,16451,39597,4943,27438],97600889819208174858799242],[[58358,58801,59653,59798,38143,48108,12471,18858,7642,9702],97600889568048398423476975],[[58386,58791,60294,11392,16477,28081,17425,2121,30207,5962],97600889656056033133035756],[[58824,59685,59790,60296,56992,57330,41055,6723,17539,6066],97600889829630923675246667],[[58825,59799,59971,60307,56332,62653,63216,41149,58265,409],97600889830853030352057191],[[60306,10899,11351,38622,61422,5849,30389,30899,64061,7371],97600889476245471641222526],[[60309,10751,11393,29508,58809,16808,36633,27077,31248,2931],97600889636105327074299105],[[60310,10898,11425,40550,63007,2139,18489,18864,27131,27433],97600889498722654548793930],[[60311,10904,11390,49410,59205,62979,63218,64805,65940,63120],97600889617275040967081384],[[60312,10905,11426,40547,49687,17424,36632,24325,61533,71762],97600889658126222928785309],[[60313,11424,28090,46426,49000,58811,58814,4266,5181,18612],97600889820886558669133773],[[63347,11427,48974,56346,58813,63214,24008,3990,6596,7012],97600889514040139895691074],[[63354,38148,48099,48975,63047,39592,12650,30296,30319,3478],97600889543454312444025538],[[63358,39726,51021,58815,58948,59473,25919,3098,7618,19007],97600889492019253940497458],[[28084,28727,45323,46349,63286,8296,22727,34696,39593,16846],97600889806715241189743669],[[29509,43992,45435,45442,47780,56353,39588,6175,29800,4560],97600889785916437222979048],[[29511,44978,45433,45444,50544,57040,57082,33601,36703,33995],97600889889773797720159928],[[39295,39727,57106,57448,61852,49299,43901,56974,58661,64130],97600889727013447271512040],[[43994,45320,46420,46508,56357,63287,22749,33029,44912,4840],97600889888095408969951166],[[45150,45322,45443,46509,47811,15685,33028,35089,44941,57598],97600889886417025160772385],[[45156,45432,46346,47249,56403,16296,33600,9543,16134,8753],97600889784238048470984308],[[45445,46352,46429,4683,17492,33603,34394,41150,45122,18484],97600889803358458745381810],[[46510,47778,47797,61898,9748,21440,21899,35139,43900,30619],97600889805036847497047747],[[46512,46623,48961,49007,56745,27613,27917,36629,5678,7386],97600889704992561314686006],[[46514,47779,47793,57116,16779,3388,3821,6962,4732,8531],97600889578658012795833962],[[46515,48971,51022,5497,32984,35961,57605,57797,58194,33486],97600889803358458745381810],[[46965,52809,57444,16090,17421,28235,34789,58258,8781,63670],97600889678702304048751837],[[46992,49051,56730,57445,8657,34797,35952,9075,34548,3767],97600889783015946734648945],[[47815,52815,57089,57451,9749,30032,34912,57604,3912,27430],97600889805036847497047747],[[47935,57083,57449,62652,39331,44577,57651,12482,12665,30297],97600889645633274415934646],[[49409,56723,57003,57320,62650,23416,39572,58267,33809,61909],97600889727013452212570891],[[56749,57081,62651,62655,39356,44595,58286,61509,67361,40371],97600889623156091542196304],[[57447,61434,16915,44910,49019,5679,16555,27121,67528,11527],97600889438831156522110657],[[58350,58509,59386,59390,59947,16570,20845,32095,67222,72726],97600889487908104654776706],[[58378,58520,58788,33183,36630,21404,5682,16560,27460,31007],97600889564253106433560865],[[58508,58730,59185,59396,61502,5913,16875,18499,24334,30290],97600889487908104654776706],[[58521,58808,58812,59204,62657,65953,72491,73625,6641,7654],97600889443866312864026040],[[58810,59184,59378,27607,30579,36601,27133,27456,67227,72771],97600889564253111374619725],[[59384,59394,60054,28214,35091,21499,21966,27377,32970,5315],97600889621477702787402664],[[59391,60016,16813,17459,27871,16478,20797,30282,67621,20549],97600889518532935852498038],[[59392,60605,62682,1896,16873,20826,22514,30724,32154,31666],97600889302670575529486736],[[59395,60600,62989,2142,5909,16892,27832,29137,32634,33487],97600889325147758477031901],[[59397,61475,62976,63013,12473,23739,27443,73266,6572,4305],97600889362029852754704738],[[59470,60652,17466,17623,34289,36155,36605,32168,2938,4335],97600889598234715068116383],[[59471,17495,17620,27898,41152,9077,15625,20827,3486,7363],97600889596100029414216524],[[61077,16091,16310,21898,41076,44065,1897,11677,24112,65916],97600889560896333862977739],[[61081,62995,17398,17493,41159,56975,20812,25266,31642,5374],97600889540553821801709589],[[61082,15684,17494,21441,35138,35344,45563,1901,32925,73530],97600889640598113093685579],[[63212,17608,22085,35432,41148,41155,25991,64876,67211,67593],97600889560896333862977739],[[63213,17611,23294,35433,39589,57974,58252,67594,72385,52462],97600889596556326362578017],[[63215,33031,39596,41151,51286,23743,27122,30691,12401,27999],97600889393110985882295159],[[63217,35434,41054,34378,44066,1900,27690,32705,2655,3666],97600889437152747950227983],[[63219,35435,41156,44092,57281,5848,25982,30923,67362,6752],97600889437152757882029550],[[16301,17382,33947,35347,36700,57853,57950,24366,25222,27432],97600889638919719398133024],[[17452,23280,30578,33945,35465,36705,57821,17625,6976,37189],97600889673667142728208778],[[22061,30102,30576,32820,36602,3390,5180,28856,1446,2793],97600889674579706878483566],[[22064,23277,34877,34994,35137,5177,22512,61923,4689,8598],97600889514263574373599114],[[28075,33307,33602,35088,44820,57957,15814,16138,32656,12781],97600889696144320649255727],[[32819,33955,34807,34897,35501,36702,27537,27431,31001,32525],97600889616442541463907428],[[33957,34832,34925,34995,57578,10531,29804,20753,4527,18004],97600889593965353642387692],[[34337,34425,34792,36626,39590,44918,8914,44854,3487,3784],97600889674579711819542420],[[34415,34463,34693,34802,21967,34989,57048,32914,6047,17998],97600889594421635717898757],[[34862,34913,35136,36334,51290,8672,9339,58138,58292,24303],97600889775846094828459976],[[34863,34896,35390,35406,34656,34804,44869,57053,6012,8441],97600889674123414921229529],[[34876,34927,35090,35345,36604,46535,4666,34791,1654,10125],97600889673667137787149923],[[34878,34985,36631,45467,16093,16135,34416,2787,6650,23343],97600889572400739849039405],[[34879,34924,35391,36111,36673,57640,57805,16897,18861,17996],97600889616442546404966286],[[34926,34984,36603,15730,16133,34290,2645,2775,6675,8148],97600889470678059729771888],[[35424,35457,36335,36422,51289,28051,32834,9153,10381,41577],97600889491786391469606737],[[35958,36006,36092,36137,36420,44920,4805,34280,10022,5538],97600889639609595458489445],[[35960,36049,36443,4838,16092,16132,23303,5660,12463,20752],97600889638919709516015312],[[36060,36328,36337,36444,36675,57807,16139,31646,13141,32524],97600889593965358583446551],[[36063,36333,36339,51288,34569,1655,4977,5155,5384,6225],97600889367130241316094835],[[36074,36164,36672,46533,10484,16098,18860,33480,4969,10645],97600889514263569432540252],[[36093,36362,36442,41157,8378,10485,21965,30325,32640,9729],97600889616442531581789714],[[36094,36445,36599,44945,57828,9504,17416,34795,5610,18012],97600889673667132846091069],[[36095,36677,46532,57615,6169,34350,39423,24087,1735,17264],97600889550836150855588453],[[36600,44804,45025,57819,57824,5176,34809,4351,6068,27849],97600889572400744790098264],[[36678,41154,43865,49167,5547,6721,34790,3747,5730,33285],97600889572400739849039405],[[36679,41075,51291,57795,9338,16096,5833,20356,36307,36411],97600889469309203619379069],[[36704,44825,45462,57621,57647,15749,16137,34572,9030,36152],97600889673667132846091069],[[36706,45456,57631,57829,15731,15798,57838,16563,25921,27434],97600889638919714457074168],[[44938,45052,51293,57818,57825,8469,16095,16136,870,18080],97600889674123419862288384],[[45174,46536,57842,3822,4804,17535,16838,23750,34192,26094],97600889536740747390297343],[[46539,49060,49294,57616,3823,17417,12662,19301,25987,37727],97600889536740752331356205],[[49274,57612,57617,4938,34805,34810,2633,4336,6248,8025],97600889471134346746918183],[[57558,57611,57826,15815,16072,16124,21960,20796,3542,30031],97600889594421630776839899],[[57568,57614,57822,10486,29802,19316,24411,27452,27495,37728],97600889434561785157607601],[[57599,57610,57833,9505,9542,16097,16120,3541,8034,23607],97600889572400734907980545],[[57613,57820,57831,8668,9334,16099,17549,5689,5316],92592333887218615456434866],[[57827,57839,57954,10487,29801,34379,18816,30308,35714,37759],97600889514263564491481389],[[57830,57849,57955,10532,27891,29803,34799,24281,63797,9279],97600889558995217438531552],[[57832,57852,57956,16122,28861,34430,34568,2556,8685,37730],97600889571488160874632669],[[6720,8464,16076,44944,57886,24328,27102,27661,13268,20340],97600889434561770334431001],[[6722,9074,21900,29807,44824,44947,16571,24007,25237,27439],97600889559217915460760291],[[8910,9335,10530,17622,34813,2002,2722,2951,6285,9143],97600889368955369622368093],[[9076,9502,17327,27577,34798,921,1535,4159,4601,9172],97600889368499082604744108],[[9503,9540,17626,34317,34657,1785,3994,5571,10105,17355],97600889368499082604744108],[[9541,16167,17553,28024,34630,34794,3484,3794,26153,36384],97600889470221757889446866],[[10533,17629,33996,45733,57644,5657,16896,31002,10403,17395],97600889434561770334431001],[[16197,21905,34549,57900,8646,9142,10178,10402,17348,63611],97600889252458315666265392],[[16450,21887,21963,34573,57901,8623,9278,10108,31150,34021],97600889367130221551859355],[[21961,28866,33997,34990,20828,25270,28433,32651,7442,37941],97600889354859990935471998],[[21962,28871,34450,34570,1527,2635,4034,4493,7614,408],97600889267232694232122363],[[23302,29805,36179,44821,5661,12567,13264,17858,32513,35242],97600889309905625048890514],[[34554,34571,34800,34808,44590,3461,3537,4510,6653,7359],97600889369411656639989944],[[34555,34574,34814,36176,935,5350,6303,7763,23613,4778],97600889254283463738918507],[[34575,34811,44818,57535,57887,57902,8936,9145,9353,10293],97600889469309183855143610],[[34631,34812,44819,44862,57912,8843,10128,31780,35778,40457],97600889367130221551859355],[[34788,34988,39587,57537,57903,58086,8930,9022,9717,10104],97600889469309183855143610],[[34815,34991,36177,49292,53905,57913,9201,10355,41575,37402],97600889456816240405963553],[[39422,44939,57189,58101,58271,59789,64667,71798,72195,17869],97600889457038953251602032],[[39586,47606,49293,57534,58280,34302,34510,36300,63803,37742],97600889354637278089600360],[[45125,45560,57963,58140,40083,61796,65951,72362,41206,41591],97600889354859990935471998],[[47604,49096,57153,57964,58181,58282,8699,9026,36115,63868],97600889469309183855143610],[[47605,56973,57190,58145,38183,41387,59783,65954,61419,69827],92592333658392758150667784],[[47607,57150,57960,57975,58289,58486,58679,59123,60205,27370],97600889457038953251602032],[[57151,57191,57962,38461,61798,72364,12461,12753,24282,47814],97600889208639246547276365],[[57188,57536,57951,57976,58291,59784,64171,64649,64870,58738],97600889457038953251602032],[[57577,57587,57848,58144,5656,12455,31198,32106,16243,37746],97600889342367047471642410],[[57597,57627,57961,12568,16884,24132,31364,33479,73274,32896],97600889276070795439347955],[[57637,57977,58084,58143,58158,58201,61521,67410,73095,73410],97600889559217915460760291],[[57965,58085,58142,58159,58202,38178,61511,73226,34403,34702],97600889434561770334431001],[[58078,58087,58172,58209,58498,59118,64524,64798,67210,59297],97600889377337173870998102],[[58083,58092,58175,58206,24331,27350,31366,64487,6003,27868],97600889355316277953159746],[[58097,58098,58178,58215,64040,64486,64799,64873,71754,38907],97600889355772574902646936],[[58099,58139,58200,58268,39887,61808,67490,72368,38123,40456],97600889354859990935471998],[[58141,58259,58277,39886,41386,61616,65950,72383,73422,48654],97600889276070795439347955],[[58160,58260,58263,38463,40069,61802,65955,73534,57043,57442],97600889232029013484808613],[[58199,58266,12453,16254,18865,25263,27351,30227,7753,20740],97600889174348119952295039],[[58203,58274,39888,61523,61812,65957,67393,38135,40468,61974],97600889172979248964885709],[[58257,58275,16851,20841,24131,24288,67628,31668,34022,37971],97600889172979248964885709],[[58261,58284,39889,61525,61623,65523,67347,72488,38590,40207],97600889195456431942298385],[[58272,12477,16265,24127,25916,30695,31254,37621,16824,13865],97600889059219926821130284],[[58278,2120,12457,16569,25273,30224,30596,32923,73020,22479],97600889138231835338675098],[[58279,12569,20840,22519,25980,28404,30298,6065,35727,12767],97600889081240812873972852],[[58283,18814,24126,24285,27140,61531,64859,67153,30630,12229],97600889081697109824741380],[[58285,18815,22488,27437,30210,32639,67523,3232,3694,34580],97600889094190043390135199],[[58287,40066,59788,61905,64039,64203,67419,73386,57021,57438],97600889072625454291025198],[[58288,40085,58472,61544,64446,72073,73073,17859,38210,46300],97600889071712870321202790],[[58290,58475,59109,61911,64080,64169,65519,73529,47774,57004],97600889072625454291025198],[[58293,59112,61541,61633,65939,71831,71900,72489,10129,28441],97600889115754652348083774],[[12663,16880,24106,27436,30220,30307,32702,3764,13376,19707],97600888992467377645322131],[[16885,24274,25252,27120,27673,28432,30213,32735,30426,6100],97600889014488273645027137],[[18817,22489,24400,25928,27653,31365,31658,5975,7748,8500],97600889014488263713225528],[[22518,24393,27362,27682,27773,1950,5367,6208,27494,38019],97600888969990184689360089],[[24835,25924,27076,27376,29116,30289,30735,30931,18835,36608],97600889011066985677910866],[[25975,27447,30230,30326,30358,61804,64877,73729,7620,23338],97600889036509159707962141],[[25994,27687,30203,30365,32839,64803,67369,73532,2644,4156],97600889036965446727138188],[[25998,26118,29136,30396,31234,31369,71912,73459,2932,4513],97600889036509159707962141],[[27095,27644,28403,30283,30996,31371,2712,22035,12451,19271],97600888957497251108068663],[[28402,30305,30318,30608,34247,2007,2783,6584,4960,5655],97600888969990184689360089],[[28437,30607,30703,31368,33808,64835,5369,11112,3087,12169],97600888957331073417567663],[[30613,30727,31236,31641,32701,64648,1380,1434,3326,12778],97600888991554793674750232],[[30618,30891,31206,32870,61921,64872,72877,23286,27361,33470],97600889013575689674661137],[[31203,31250,31367,32703,33803,73269,5654,60236,16825,16062],97600888957040964088521100],[[31256,31657,32637,67618,73528,1378,2632,4154,12779,16780],97600888957497241176267048],[[31264,31370,32700,32717,33472,73282,7657,5828,38546,30247],97600888969990194621161703],[[31726,32099,32976,34193,34241,2785,4492,4505,8015,5380],97600888970446471708847114],[[31753,32103,32137,32649,67154,3239,3338,2521,39692,10610],97600888947969298611416956],[[32118,32704,33802,34191,64084,67314,3235,5572,35232,59732],97600888992011080694136442],[[32706,32731,32871,32912,33465,67631,73075,10967,13340,17446],97600889001082746167147054],[[32721,32917,33807,61806,71728,72147,73618,5348,6191,30601],97600889014488263713225528],[[32926,34244,61617,64802,65952,71977,72490,73227,73717,5690],97600889058986342716803457],[[32968,33471,33806,34190,64804,65477,67319,72891,73533,3347],97600889058986342716803457],[[32971,61622,64207,64481,67321,72370,59638,61770,16790,16066],97600888957040964088521100],[[32974,61626,64218,64871,67318,67525,73175,2930,4084,30416],97600889014488263713225528],[[32979,61627,64060,65956,67616,72128,7385,24895,33481,11773],97600888969990194621161703],[[33805,61529,65517,67355,72377,72417,73195,2713,3283,30631],97600889001995320205828255],[[34250,61632,61935,64441,65507,67320,67526,17942,27444,58610],97600889013575689674661137],[[61543,64072,64666,67217,67405,72774,10815,20335,28191,59904],97600888969367729911192038],[[61814,61933,64076,67432,67529,12752,24337,33478,46308,12460],97600888925325947818254884],[[61925,64554,65521,67151,67317,67595,71737,13667,33467,16548],97600889001082746167147054],[[61937,64482,67216,67408,72480,72911,13388,41576,11388],92592333252222151153451903],[[61949,67169,67226,67417,67629,72748,73267,73394,859,3083],97600889036965446727138188],[[61953,64508,65919,67316,73068,73649,73700,1379,1443,2940],97600889014944550732504523],[[61955,64547,67171,67487,71733,71992,72479,38211,61985],92592333298646265667438915],[[67173,67356,67427,67592,72481,10660,14495,17394,17867,31151],97600888968621323630886214],[[67223,67315,71729,72081,72149,2942,3506,4072,4500,14504],97600888970446471708847114],[[67524,67626,71758,72124,72421,73535,2781,3793,6283,4966],97600888992467367713520519],[[67527,67619,71976,72125,2640,3081,6954,39749,11093,22783],97600888904383803528619766],[[71753,71796,71910,72021,72176,72893,73547,73709,2018,2220],97600889036965446727138188],[[71808,71993,72148,73015,73088,73225,16225,17568,61289,61899],97600888947969308543218572],[[71812,72041,72145,73174,73630,2941,3502,4519,61317,61766],97600888926860986567889142],[[71829,71898,72178,72372,72878,73229,73461,12467,24302,60106],97600889013575689674661137],[[71841,72121,72199,72374,72892,1010,3690,4293,4950,18116],97600888969990184689360089],[[71845,72177,72379,72478,72908,73025,73173,2950,4494,4516],97600889014488263713225528],[[72074,72775,72910,73024,73531,27356,27498,40205,61636,27017],97600888946890546881711833],[[72080,72198,73035,73613,24336,58303,18705,60995,61275,51451],97600888859719566627491689],[[72387,73036,73186,73284,73652,39758,61649,61975,61479,65085],92592333228530371973509667],[[72423,73041,73224,73404,73731,1014,3242,3679,5591,31669],97600888970446471708847114],[[72749,72909,73228,73541,13666,27482,27499,38541,62564,62578],97600888903014942469225755],[[72890,73048,73392,73467,10643,13018,26455,31153,33964,34020],97600888946144140601234113],[[72904,73086,73223,73285,73465,2944,4074,4503,41574,17011],97600888947969298611416956],[[72907,73172,73536,73726,2791,3785,4073,61977,6693,22789],97600888913455459077973411],[[73277,73428,73724,863,918,2646,3691,4148,4297,5355],97600888926860966704285905],[[73388,73542,73706,1381,3544,4025,6013,4957,28444,36161],97600888925492105645207139],[[73646,73703,2012,3490,3981,4024,5714,5332,26447,9811],97600888890978266103815160],[[73655,73712,73725,1768,2777,3071,4145,4303,7384,61507],97600888904840080616611882],[[73718,73727,3119,3211,3539,3787,8028,4605,4632,18929],97600888865992379055802878],[[73723,73728,1771,3507,3536,4152,4090,7149,3228,31273],97600888878029035560691623],[[73730,868,938,3097,4035,6669,3229,4856,11110,3534],97600888868501083056282104],[[1777,2641,2718,3129,3485,6211,6676,6998,9144,20241],92592333136643803433031228],[[1949,2652,2723,3104,4087,4150,4490,8581,23347,1148],92592333136249290071134806],[[1955,2728,3069,4514,6651,7713,4218,7372,19146,14482],92592333113074065216814069],[[2653,3149,3996,4027,4086,4337,5964,8577,8857,63772],97600888859429417570948484],[[2729,2945,3158,3795,3989,4495,6964,5319,4920,6694],97600888834443530514859677],[[2952,3105,3222,3695,6282,7132,7612,5313,19492,4792],87296888862487340726545000],[[3221,3275,3987,4037,4497,7120,7834,4499,6220,2974],97600888837864818488167282],[[3274,3474,4036,4496,7824,2239,9352,10110,37347],92592333135199890625024984],[[3282,3501,3992,5595,7370,8031,6971,10179,23609,29346],97600888837408531468060434],[[3491,3748,4296,4504,5696,7830,3873,5121,10405,31885],97600888824915587937996901],[[3786,4163,4491,6002,6190,6241,6305,7362,7719,3225],97600888847849048083826108],[[3792,4334,4354,5576,6250,7182,10130,23384,27698,32876],97600888833987243494736834],[[3983,4509,5590,6284,7114,4363,13359,19561,3682,4702],97600888833530956474611858],[[4287,4515,6240,6582,7129,1441,5143,8470,9284,25944],92592333135324179777089982],[[4292,5354,5449,5598,6061,7501,7724,5338,27483,29820],97600888859429417570948484],[[5373,5579,5708,5979,6048,5145,5463,31691,37073,9065],97600888846023900003572621],[[5697,6049,6247,7177,7498,8011,4368,4733,1066,16508],97600888815677754689671607],[[5736,6051,6302,6956,7116,4549,4953,9722,17579,26160],97600888858516843530934284],[[5963,6251,6598,7121,7735,2542,8475,8550,10535,33615],97600888811800179695359692],[[6192,6257,6304,7137,7722,4970,7038,10254,5382,37139],97600888833530956474611858],[[6209,6594,6638,7128,3135,4375,13459,24299,35768,4789],97600888845567612983503917],[[6652,6950,7181,7358,7725,2536,10292,3778,12226],92592333099300088569204333],[[6670,7178,7376,7738,3093,5127,24339,26423,28440,37055],97600888858060556510923984],[[6674,6966,7377,2228,4951,9705,30234,35003,37199,10537],97600888845111325963433079],[[6677,7180,7639,7723,6977,10291,35082,35218,37574,37744],97600888858060556510923984],[[7179,7365,7488,501,586,4306,8706,3535,37386,27035],97600888810887605654900156],[[7183,7373,7720,577,2554,3333,5334,26422,37051,37237],97600888845111325963433079],[[7491,7721,8008,2547,4533,4688,5336,37487,2414,21536],97600888814475071319778000],[[7708,7727,3531,4089,4857,6979,26446,9703,10033,18984],97600888810431318634667188],[[7714,3088,3518,4309,4600,7379,27450,12316,18845,24300],97600888791831720495645343],[[7729,7768,3142,4091,4392,5317,23611,5138,16794,4967],92592333097863661796020602],[[7820,500,575,2549,3226,4088,5335,26448,14512,29023],97600888822634152837138637],[[8009,3865,4171,4308,6221,7426,10279,1649,12766,28333],97600888810141209305183979],[[8013,4166,4882,5120,8923,10109,27500,8682,37256,7457],97600888810141209305183979],[[1189,4206,4520,4883,5339,8530,27375,31113,9351,41450],92592333119627554467060154],[[2527,4307,4372,4902,7046,10106,29825,34707,63801,16782],97600888834670809347374547],[[4284,4498,4606,4635,8443,8585,18002,22629,59640,37136],97600888843742464903207767],[[4343,4609,4626,8440,8590,8931,32673,36743,37045,37906],97600888856235408430861454],[[4365,4506,4880,4952,6122,8300,10259,37493,8690,10413],97600888831249521373954980],[[4399,4881,5312,5974,8927,10756,18092,36944,38607,61652],97600888856235408430861454],[[4521,5126,5337,5762,7378,7435,18104,36824,58761,61655],97600888856235408430861454],[[4892,4918,5153,7357,8533,8856,28914,38603,41602,61653],97600888856235408430861454],[[4897,5314,7034,8419,8788,13370,20362,59645,17559,47792],97600888822177865816960585],[[5318,5956,7032,7438,8302,10180,37077,37422,28474],92592333109888796897666944],[[5333,5604,7020,7241,8303,28907,37044,37350,37569,6071],97600888843742464903207767],[[5476,5750,6946,7356,10961,13062,13466,19560,35215,37642],97600888856235408430861454],[[6108,6224,8576,8603,8681,9157,13065,37067,41175,58391],97600888856235408430861454],[[6989,7225,8384,10131,10762,17953,59981,4236,8566,36871],97600888818756577843103092],[[7044,7364,8513,18082,23608,37581,38540,61641,7439,17430],97600888831249521373954980],[[7051,7144,10127,12860,13263,18006,28445,36305,58355,63639],97600888856235408430861454],[[8153,8301,8691,9170,10126,18094,36740,8339,32698,58870],97600888800613266725948774],[[8389,8394,9031,9349,18008,28910,37070,38360,59326,10018],97600888843742464903207767],[[8532,8594,9209,10290,11111,18083,37211,37756,38477,37305],97600888843742464903207767],[[8608,8937,9348,10111,10656,12780,23606,36039,37162,37868],97600888856235408430861454],[[8707,8850,9177,9196,13140,27693,36034,36992,1648,12493],97600888822177865816960585],[[9151,9234,9699,10167,10380,36998,37194,37202,4788,10020],97600888831249521373954980],[[9734,10107,10836,17937,27496,33473,34517,61972,63727,61174],97600888822177865816960585],[[10124,10136,10840,12871,18118,33965,36306,39704,58322,36078],97600888843742464903207767],[[10181,10260,10350,18093,34706,37024,37572,38490,63634,41922],97600888834670809347374547],[[10387,17578,17882,18014,22510,22560,31793,33466,38009,10796],97600888834670809347374547],[[10388,11113,13035,17874,17947,26088,36776,37071,39759,59733],97600888856235408430861454],[[10395,17875,17936,23287,27440,34333,41239,41392,59941,8555],97600888843742464903207767],[[10396,13269,17569,18106,22007,23612,26095,36803,37419,39755],97600888856235408430861454],[[10819,17877,18584,23610,31139,37166,37355,37600,37752,41227],97600888856235408430861454],[[13400,17860,17946,24275,27497,32495,37638,37737,37811,13534],97600888822177865816960585],[[17883,17952,26149,27455,31796,36134,58323,58356,8574,29503],97600888822177865816960585],[[17884,18609,18850,27501,35247,37668,41217,59734,9813,28911],97600888831249521373954980],[[18105,18857,24878,27448,31152,38491,38606,63787,29594,19345],97600888812940032568376168],[[18119,20292,26152,27451,31775,33309,37734,38476,38547,38609],97600888856235408430861454],[[20325,30026,30101,30238,35726,35779,38266,38608,58689,58717],97600888856235408430861454],[[20351,28163,31670,31778,35467,38205,41596,61708,62582,13846],97600888812940032568376168],[[20364,27697,32668,34399,34491,36304,37042,37725,39868,58690],97600888856235408430861454],[[27459,30096,30627,36143,36303,37758,40454,58781,22697,37601],97600888831249521373954980],[[31628,31769,33962,34487,34998,37620,38569,58697,37816,53629],97600888822177865816960585],[[31671,33484,33963,35086,35269,36741,37901,58330,63781,17558],97600888843742464903207767],[[32526,33485,34012,35234,36407,37578,40368,59630,61980,32874],97600888843742464903207767],[[32527,34023,34703,35024,35672,36744,37029,40470,61695,34874],97600888843742464903207767],[[34016,34307,35724,36399,37669,41280,61755,16524,12735,15767],97600888800613266725948774],[[34027,34366,34511,34586,36112,37674,59648,60237,60287,33968],97600888843742464903207767],[[34031,35233,35275,36302,63585,63674,63711,2546,34402],92592333106457609388110223],[[34516,35045,35245,36410,36746,37028,37072,40153,41169,37588],97600888843742464903207767],[[35235,35781,36396,37025,37079,38542,39858,59334,59632,8869],97600888843742464903207767],[[35272,35725,35742,36393,36796,63671,8444,12775,17635,63628],97600888806263634310652103],[[35383,36389,36392,36792,36951,59916,59969,61692,61724,61776],97600888856235408430861454],[[35503,36404,36950,37074,37175,37885,39754,58304,59218,61718],97600888856235408430861454],[[35780,36745,36945,37675,37704,37739,37755,40187,59682,15624],97600888834670809347374547],[[36121,36301,36993,37043,37052,38543,39856,58696,4691,35403],97600888831249521373954980],[[36742,36999,37076,37738,40469,60240,63672,1195,2555,16791],97600888818756577843103092],[[36747,37054,37078,37360,37596,40415,58739,63612,34875,2996],97600888822177865816960585],[[36784,37046,37053,37245,37566,63607,3686,9285,37785,2975],97600888797191978751335359],[[36808,37036,37244,37490,37573,3479,3533,37186,6116,4006],87296888816913429351191650],[[36828,37068,37484,37626,37726,59680,63595,63673,37403,43486],97600888822177865816960585],[[37041,37064,37179,38006,39867,40455,58420,63778,8369,28720],97600888822177865816960585],[[37065,37147,37358,37731,37972,58394,59215,61702,3770,8551],97600888831249521373954980],[[37066,37152,37238,37348,37357,4697,4703,8861,9066,32079],97600888784699035216124095],[[37069,37346,37359,38016,38602,39743,41226,41393,7425,21798],97600888822177865816960585],[[37075,37208,37710,37753,40416,58719,59642,59683,59766,7231],97600888843742464903207767],[[37239,37416,37567,37732,37867,39693,58450,59765,63871,4243],97600888843742464903207767],[[37349,37356,37724,58363,59649,61454,63590,7161,7848,21776],97600888791541611166106849],[[37365,37570,38341,39859,58764,59283,63600,63784,34929,37200],97600888831249521373954980],[[37425,37568,37627,37729,41290,63668,5603,12645,37771,20821],97600888797191978751335359],[[37571,37740,38206,41178,60109,63870,9067,17544,17214],92592333083551359404261595],[[37575,37709,37736,59920,59961,61686,63669,5982,6606,6695],97600888818756577843103092],[[37576,37757,37908,39694,61689,63613,9732,10420,10492,37297],97600888806263634310652103],[[37577,37715,39869,41588,58718,59647,4690,4859,10536,37787],97600888806263634310652103],[[37579,37741,39707,58311,59284,59989,63875,8305,9215,29544],97600888809684922284947522],[[37580,37733,40201,41585,60241,61749,63706,63796,8306,32546],97600888831249521373954980],[[37735,37754,37940,39705,41174,58366,4927,9507,10016,37114],97600888806263634310652103],[[37899,39857,41390,58328,58733,59192,61594,11295,38836],92592333086982546914667151],[[39866,41168,41210,58522,59298,60290,27853,36147,46793,33371],97600888787954145500386051],[[40203,41164,41391,59938,60239,60283,61416,38149,32772,54876],97600888791209255784539445],[[41216,41394,58383,58511,60243,60286,61650,2548,8920,9546],97600888818756577843103092],[[41232,41397,41584,58309,58460,60273,11583,12381,26540,19458],92592333064375752744568843],[[41395,41599,58430,58735,61647,11281,12402,49436,23841,8],95126168681249494218176492],[[41396,41603,58523,58780,59198,59933,16177,13830,19808,58469],97600888778882489939367505],[[58510,58760,59219,59636,59922,13295,18280,62490,25952],87296888786579593214804151],[[58559,58712,59299,59767,63675,63790,16809,28902,63743,18322],97600888797191978751335359],[[58779,59300,60127,61590,61986,63793,2557,4790,9038,10540],97600888806263634310652103],[[59199,59333,59968,60107,60159,61452,12751,12776,12450,18292],97600888788120323191175436],[[59323,59764,60276,63606,63802,3532,5202,6682,9715,34490],97600888793770690776602014],[[59332,59650,59735,60242,60277,4858,10327,10539,32983,35427],97600888793770690776602014],[[59335,59980,61448,3769,16814,17460,27872,36156,12537,13999],97600888750641492577260819],[[59923,60238,61426,61654,3330,5148,12634,11149,12420,16961],97600888753896602862658636],[[61429,61446,61573,63798,3092,3683,7245,10017,7058,31847],97600888762802080735167322],[[61569,61648,61978,4696,5207,9050,16775,17453,34338,36165],97600888768784803703704533],[[61642,61651,3323,3776,5119,6602,9044,18846,13856,17272],97600888738148549036091079],[[61973,63643,63685,5378,6681,18931,23289,36448,27667,63292],97600888750641492577260819],[[61976,61991,63647,6074,6692,9792,20331,36449,63767,18306],97600888759713148140904265],[[61979,63680,63775,5983,8860,10036,12644,20347,34303,36432],97600888768784803703704533],[[63800,1194,3687,4766,12768,18938,30015,12239,13998,19599],97600888716417772235602079],[[63869,5474,5609,8621,9064,9812,18928,32551,19729,19870],97600888725655605493322238],[[63872,5638,6604,7434,9051,10491,36652,20010,20820,27547],97600888716583949926513264],[[63873,7443,8152,10412,29983,36660,5393,11312,13522,18982],97600888707512294358861112],[[63874,5461,5639,8147,9796,37097,37104,6031,43541,29455],97600888716417772235602079],[[3768,4608,5024,8570,17470,18937,36829,15903,28292,14309],97600888703924828690051692],[[3771,4526,4623,4771,5125,10428,37406,11395,12418,20787],97600888704091006380984148],[[3777,4532,4700,5151,5208,12769,18933,34704,37326,63617],97600888731305973082365059],[[3779,4767,4779,5141,8863,10489,37142,2425,22355,19004],97600888703924828690051692],[[4701,4780,5032,5215,8924,9545,12635,34705,37770,3551],97600888722068139825179702],[[4770,4781,5980,8304,9238,31276,34701,36735,63749,2976],97600888722234317516081267],[[4791,5035,5123,5209,10310,32999,34882,35405,12165,18927],97600888713162661948954296],[[5027,5117,5213,9509,17456,18847,63605,12733,28331,41246],87296888736902863251751091],[[5196,5211,8644,8704,17332,36870,7321,15971,16760,22766],97600888695019350812170821],[[5201,5210,6680,9506,16207,37776,6093,23051,28302,32376],97600888694853173121222920],[[5212,6600,9042,9049,10429,30233,33003,16188,45469,46019],97600888704091006380984148],[[5214,5981,8307,8862,12444,30237,36469,37141,15911,18710],97600888713162661948954296],[[6683,8455,8601,8705,9346,36804,37261,2606,12626,28301],97600888704091006380984148],[[8559,8606,9040,9048,12774,20365,6726,10626,18369,27161],97600888695019350812170821],[[8575,8678,9511,9550,9694,22670,37587,7156,17019,31586],97600888704091006380984148],[[8698,9350,9508,9549,9800,18834,37408,63640,63644,19544],97600888722234317516081267],[[8872,9347,9510,9547,9697,9788,28886,37100,63635,63729],97600888731305973082365059],[[9512,9551,9727,10023,10189,34921,63625,63742,5993,11594],97600888713162661948954296],[[9513,9544,9700,34700,37101,37407,63599,2604,5224],87296888736901798204780203],[[9548,9720,10019,17397,17457,37120,63880,14282,27480,28661],97600888703758650999118953],[[9810,10021,10039,10225,17396,32880,35394,37027,37794,63883],97600888731305973082365059],[[10042,10488,17341,17545,27694,36116,37392,1139,46748,10607],97600888703924828690051692],[[10404,10490,12750,17471,35002,36463,7153,12400,12443,13319],97600888695019350812170821],[[10421,10494,10541,23288,30633,33001,33969,36611,36793,37130],97600888731305973082365059],[[10493,10534,17640,18935,30632,32981,33966,37121,18913,19676],97600888713162661948954296],[[10495,10538,12777,34581,37123,37128,2991,6030,6620,11723],97600888695019350812170821],[[14513,17632,18939,33967,37094,2993,13469,44796,62581,30880],93232248002392017948317905],[[17427,17643,18930,18932,36777,36809,37236,2990,28666],92592332995151848965246128],[[17467,19522,28915,34873,36606,37296,37797,17186,20836,7070],97600888703924828690051692],[[18934,23399,33284,34486,35396,2995,7335,12403,47272,57333],97600888685947695242514316],[[18936,23392,34922,35094,36613,37798,37801,18303,44508,18873],97600888703924828690051692],[[19545,32542,34371,35093,35409,36113,37031,12164,14312,31903],97600888704091006380984148],[[20363,29819,32997,36122,37096,37818,63745,6737,22404,29978],92592332995152973056692549],[[29824,32878,32985,35429,35466,36077,37095,18316,48315,19807],97600888703924828690051692],[[30066,32555,34308,34997,35407,36729,12703,15069,29466,31897],97600888695019350812170821],[[30085,32987,34881,35431,37122,37143,63882,6028,6092,6738],97600888704091006380984148],[[32541,34883,34920,36609,37777,63610,12554,13499,16521,53176],97600888695019350812170821],[[32544,34587,34928,37823,63757,4121,12633,15935,22979,13605],97600888685781517551550969],[[32553,34398,34923,35964,37203,37821,2994,12643,16807,20523],97600888695019350812170821],[[32556,34872,34931,35502,36610,37802,63741,15923,17131,27677],97600888704091006380984148],[[34880,35167,35392,36668,37809,63721,63739,18695,32892,33039],97600888704091006380984148],[[34930,35095,35170,35425,36612,36738,37105,37209,44638,61113],97600888713162661948954296],[[35092,35398,36097,36649,37030,20525,22381,22768,27996],92592332975851953134967197],[[36005,36076,36119,36431,36797,37026,37784,63736,1734,14839],97600888713162661948954296],[[36079,36138,36430,36825,37792,63760,14265,18828,18923,28396],97600888695019350812170821],[[36096,36433,36466,37586,37639,10844,15934,16816,32904,10637],97600888685781517551550969],[[36098,36338,37137,37176,37589,63616,10845,27706,46299,10639],97600888694853173121222920],[[36099,36446,36647,37312,37808,63584,63604,13823,19097,27164],97600888704091006380984148],[[36361,36447,37131,63594,63747,13535,14295,18368,20397,26926],97600888685947695242514316],[[36607,37106,37129,37597,37747,37810,13849,15986,18709,18840],97600888695019350812170821],[[36657,37140,37180,37327,1067,3260,12504,15615,29344,47639],97600888676709861981035841],[[36665,37167,37304,37643,37799,7583,12492,16798,16984,29128],97600888685947695242514316],[[36670,37107,37743,37800,3261,6097,11085,1486,12674,24818],97600888676377506599077406],[[36732,37163,37313,63589,7582,10864,12323,32900,45974,52483],97600888676876039672014633],[[36785,36858,37144,37243,63620,63629,63737,364,6626,26784],93232248021385481355518923],[[36859,37149,37253,37397,63624,63738,7850,17203,21821,24250],97600888694853173121222920],[[37090,37112,37212,37252,37413,37803,4122,6628,22348,1471],97600888694853173121222920],[[37091,37115,37138,37257,63621,597,6634,13512,40],89979967823229814461556768],[[37113,37242,37260,37412,5616,12435,12636,16158,16788,51920],93232249211104189580185669],[[37191,37264,37387,37396,63740,63744,5995,11964,28717,29345],97600888695019350812170821],[[37265,37388,37399,63746,2973,5502,12153,29062,12694,17474],92592332966296151804325732],[[37389,37393,63648,63723,6624,15637,15780,29454,29644,32801],97600888676377506599077406],[[37398,37409,4318,6739,11308,12415,12719,29360,1455,3560],92592332947167298673118592],[[37410,63750,1197,2970,7152,12397,28063,20267],84062697082063958518385489],[[37411,63751,1199,4112,6622,6767,12549,1043,3252,13989],97600888658234195455455832],[[37786,37793,37822,1134,4123,5637,11319,19805,47229,5391],97600888667638206409677534],[[37795,37796,63748,63881,13858,15118,18952,20742,44998,45976],97600888676876039672014633],[[37817,63770,5396,5644,6725,12949,14021,16538,19806,22477],92592332947165865939973594],[[37819,2992,4120,5511,5650,6029,16819,17275,18295,18871],97600888649494895264431386],[[37820,2997,5398,5671,6727,7849,10789,30270,31569,43863],97600888649661072955456516],[[365,1046,4320,11310,11382,14017,16512,16764,38849,47221],97600888640589417381584120],[[599,1047,4319,5665,11299,12355,12417,19233,29718,39860],97600888640423239690543545],[[2971,3250,4114,5622,6765,12706,12734,18926,22496,51060],92592332928216523209571133],[[2977,3253,4321,6755,14578,16785,26907,48207,56293,61247],97600888640589417381584120],[[4113,5992,6724,7851,10892,13232,17000,19706,28300,28603],97600888640589417381584120],[[4115,6630,6736,11412,12421,12542,16545,19521,32417,26657],97600888640423239690543545],[[5402,5525,6632,6754,12240,12320,23050,28010,29618,1563],97600888640423239690543545],[[5631,6753,10619,11577,12227,12405,12707,22471,12739,24821],97600888640257061999502687],[[5994,10633,10886,11423,12312,12387,14044,19728,1465,2764],92592332928127592154648566],[[6764,7453,11084,11830,12419,17267,20786,14832,15671,56700],97600888640090884308461546],[[6766,10693,10887,12347,12505,14579,17114,17905,18274,43830],97600888640589417381584120],[[10705,11138,11296,11588,12629,14278,18278,12348,12737,6365],92592332927870915516859218],[[10878,11380,11420,11526,12416,14020,42817,45983,3548,44041],97600888640257061999502687],[[10893,11385,11722,12349,12390,18780,22346,62570,2430,7101],97600888640257061999502687],[[11301,11543,12241,12353,12391,14050,16770,28662,31542,1565],97600888640423239690543545],[[11381,11422,11837,12396,12427,18833,28673,44633,47237,27099],92592332928239409252689785],[[11389,11421,11941,12632,13997,16065,3699,12123,15107,693],92592332927692236166171788],[[11542,12176,12404,13248,13513,18700,20561,27502,49438,63220],97600888640589417381584120],[[11769,12238,12724,14435,15982,17202,18296,33055,43831,12352],97600888640423239690543545],[[12228,12386,12639,14806,16789,18293,20837,31887,26548,39918],97600888640257061999502687],[[12414,12698,13233,14043,15899,20818,27981,28284,31295,32414],97600888640589417381584120],[[12642,12718,12732,15782,16804,20330,22409,38914,57029,27335],97600888640423239690543545],[[12725,12917,13471,14051,15773,19311,28003,32413,31674,24084],92592332928164419360677733],[[13249,13814,14401,15910,18290,22776,38144,49552,12522,59868],97600888640257061999502687],[[13821,15602,18294,18333,19296,20834,27638,12693,29742,41699],97600888640090884308461546],[[14314,15967,16822,17127,17914,19051,24322,29750,31673,15037],93232249172943298867790774],[[15927,16069,17118,18317,21743,21816,23055,29014,44563,11525],97600888640423239690543545],[[16176,16773,17904,18272,18375,20395,27154,29758,45680,30874],93232247954908359413386791],[[16206,17187,18332,18781,18922,22373,32412,43828,12692,55420],97600888640257061999502687],[[16823,17915,18374,19149,24323,27165,32747,60955,62134,14814],94719183536682710670385737],[[18291,18908,19679,20563,20789,28923,31539,53860,61897,40418],97600888640423239690543545],[[18297,18319,19804,20567,27404,29751,31226,50218,12160,16391],97600888640257061999502687],[[18698,18786,18914,19809,19896,22351,29340,32435,11120,12849],97600888640257061999502687],[[18707,18787,18919,18921,19892,27512,28295,53843,16958,17846],97600888640257061999502687],[[18920,19837,20741,21538,27974,29124,53564,1472,16419,53399],97600888640090884308461546],[[18924,20565,20788,21537,22493,22777,29110,29679,41715,33892],97600888640423239690543545],[[18925,20346,20835,22767,27980,28702,30641,47770,56718,6102],92592332928245555308580588],[[19001,19152,21543,21753,22782,28397,33053,56260,7060,44746],97600888640257061999502687],[[19128,19995,20547,22978,24321,29342,42385,22379,24247,28538],97600888640090884308461546],[[19131,21823,22660,24320,27424,39426,45668,5621,16386],92592332927864963541668987],[[19134,20743,27528,28332,28395,28919,45102,51577,5634,33113],97600888640257061999502687],[[20819,21539,22377,22976,28282,29363,31648,58454,16962,2238],92592332928042009881650642],[[21542,22398,27162,27550,28839,29357,43684,24597,27462,14445],92592332927989252694012295],[[21814,22476,22800,27593,27988,28008,32410,16429,26189,46934],97600888640090884308461546],[[22693,22769,22796,27949,27989,28289,28426,63184,18062,39188],97600888640257061999502687],[[22793,22977,27216,28290,29347,31545,51575,60957,18622,51055],92592332928041356542905794],[[23054,27163,27587,28303,28561,29057,29579,45338,60956,7175],97600888640423239690543545],[[27144,27405,27568,27714,27961,28901,48291,50229,50377,38931],97600888640423239690543545],[[27151,27425,27717,27975,29341,31884,52790,1808,35760,4195],87296888665721153614613772],[[27196,27553,28701,29020,30640,32226,46745,56659,31049,1152],92592332928127592154648566],[[27203,28036,28826,31632,33033,44581,46784,52512,56519,44224],97600888640423239690543545],[[27206,27402,28885,29366,30253,31583,31652,52802,60988,24301],97600888640423239690543545],[[27213,27403,29719,31548,31890,44510,52300,60996,61214,5628],97600888640423239690543545],[[27214,27422,27507,27590,29759,38808,39416,45600,46309,62129],97600888640589417381584120],[[27215,27423,27517,27648,38905,45011,45080,61105,19739,19887],97600888640257061999502687],[[27217,27710,27907,28394,29017,31636,42375,53568,60329,17857],97600888640423239690543545],[[27926,28428,29106,29605,30243,32086,43904,15059,32808,60445],97600888640090884308461546],[[27994,28297,28334,28429,29606,41691,46317,47185,60364,62546],97600888640589417381584120],[[27995,28287,28335,28700,31891,53575,61096,26952,30535,32268],92592332927889075919358863],[[28427,28721,29343,29615,31294,32059,6233,11471,19099,22542],97600888639924706617420122],[[28677,28841,29031,32060,32894,53093,56406,1661,7065,12695],97600888640090884308461546],[[28828,29483,29619,31565,32223,45985,46128,56652,13588,20396],97600888640257061999502687],[[29036,29499,30266,30638,31287,32411,45347,47275,61288,5400],97600888640423239690543545],[[29484,29657,29740,31560,32219,43515,61003,5615,33347,45408],97600888640090884308461546],[[29502,30249,31888,33051,38943,43847,47179,50164,56234,63499],97600888640423239690543545],[[29741,30256,31225,32082,32428,32746,46017,56885,14004,29766],97600888640257061999502687],[[30260,30639,31290,31886,32438,41727,48041,56284,22353,26770],97600888640257061999502687],[[31227,31587,32416,32674,32902,33085,44405,1829,6987,19053],97600888640090884308461546],[[31568,32089,32415,32679,32890,33037,44404,57396,20083,28503],97600888640257061999502687],[[31578,32216,32423,42427,42805,43907,62583,17854,17994,44513],97600888640090884308461546],[[31889,31892,32424,33035,44509,45972,48589,53126,31950,54899],97600888640257061999502687],[[31898,32437,32695,38375,43829,43983,50097,19811,23525],87296888665713390818269417],[[32054,32433,33049,41925,44787,45978,57443,16543,32213,40458],97600888640090884308461546],[[32065,32744,32898,33069,38912,42426,43705,61257,10837,57037],97600888640257061999502687],[[32426,32745,33071,33346,38929,41838,56900,60432,25825,3798],92592332928064061791592237],[[33065,33370,39407,41843,42384,44783,45342,48256,50182,62970],97600888640423239690543545],[[33067,38383,39408,43981,44219,45476,59103,61170,63322,27990],97600888640423239690543545],[[33081,39415,39876,42428,47817,56243,61584,63298,41937,46430],97600888640257061999502687],[[33083,39429,40046,44395,45598,45673,46966,58424,39512],92592332928040130208334659],[[33087,39877,42374,43545,46301,53091,53731,63036,18651,47643],97600888640257061999502687],[[39339,40042,41692,44208,47810,53096,56237,56647,20339,45671],97600888640257061999502687],[[39364,39879,43510,44589,46742,48109,53849,11540,12383,45687],97600888640090884308461546],[[41831,43481,43980,44511,45481,52480,57098,57439,62128,24297],97600888640423239690543545],[[41832,43982,44570,45665,51589,56728,57343,28922,56772],92592332927864963541668987],[[43540,44204,44562,46769,47070,47178,47776,57440,62135,5404],97600888640423239690543545],[[43544,44222,44571,44770,44791,45664,45987,1485,3553,46691],97600888640090884308461546],[[44320,44632,45332,45473,45599,52482,56240,17988,41281,55930],97600888640090884308461546],[[44346,44580,44799,45601,47061,47184,60804,60920,61792,6803],92592332928217736166168792],[[44400,44636,45002,45034,46015,49715,62036,28448,28462,28498],97600888640090884308461546],[[44588,44788,45061,46298,47269,48172,11756,18996,33173,56925],97600888639924706617420122],[[44637,45669,45684,45981,46626,52465,56650,33880,59089,13305],94719183536340243818113184],[[44639,45676,45997,47183,49764,61613,6076,18656,45081,60485],94719183536169010391976443],[[44642,44774,45991,47278,47768,56400,13915,27023,59444],92592332927689796875002983],[[44643,45993,46306,47067,48100,52496,53164,56269,62990,18073],97600888640423239690543545],[[45006,45995,47232,48101,49714,52481,53572,57436,18620,44200],97600888640257061999502687],[[46013,46307,47181,48306,52495,53732,56748,18870,22617,2378],92592332927879830443699582],[[46094,47064,48056,49359,50202,61157,61263,18629,18954,20066],97600888640090884308461546],[[46321,47180,48304,49747,50120,57505,58916,18967,35410,40700],87296888665720460644228432],[[46672,46739,47242,50096,52513,53730,53853,57087,16020,30873],97600888640257061999502687],[[46760,47182,48093,49547,57512,62065,10807,13253,14503,58560],97600888639924706617420122],[[46991,47240,49746,50121,51557,56751,56896,12713,39170,41434],93232248056733983988708832],[[47219,47795,51587,52464,53133,60614,61256,12712,26158,60443],97600888640090884308461546],[[47224,47796,50351,57441,61002,20355,23062,24637,24891,60861],97600888639758528926378415],[[48078,49050,49767,52494,53837,61278,11800,17053,49214,2917],92592332927713728458260651],[[48110,49327,51543,52357,52789,56729,63221,27655,47028],92592332927864963541668987],[[48313,49437,53733,56525,59044,61248,61293,12527,24276,19335],94719183590711697825854921],[[49091,49335,56404,56665,56696,57006,27684,31050,31676,26805],92592332927691690605990438],[[49351,49765,52803,56500,56522,61222,63226,30622,60419,30842],92592332927866189876240124],[[49439,53100,53842,56358,57041,57411,1272,19716,45057,55463],97600888639924706617420122],[[49766,53693,53836,56482,57515,60055,61150,12738,24277,46408],97600888640090884308461546],[[50235,52463,56361,56698,57105,61217,20002,26092,46738,61307],97600888639924706617420122],[[51555,52514,56354,56501,60333,11235,12696,27997,49792,53262],87975331425564197960978270],[[52497,56516,56649,56716,60360,60595,21724,24298,45076,22891],93232247954386466269964656],[[52515,53856,56481,57115,57342,61154,62711,7315,30531,60410],97600888640090884308461546],[[56646,56725,57088,61225,5666,28453,30269,56894,11657],87296888665286650172648813],[[56648,56744,57437,59050,61316,62037,27355,27476,33537,54910],97600888639924706617420122],[[56651,56654,57332,58855,60588,62659,62701,29458,70],89979968030022068675193219],[[56653,56660,58436,58901,63193,19074,19810,51206,57160,59017],97600888639758528926378415],[[56889,60017,60589,60994,61236,61274,63223,17847,17986,24251],97600888640090884308461546],[[57114,58466,59086,60914,61109,61855,62687,39917,48814,68619],92592332927866215611484669],[[57522,59054,60438,60653,60949,60989,18669,30503,45103,28553],94719183590540464399816473],[[59040,60439,60924,61104,61262,61292,63008,19343,27369,30250],97600888640090884308461546],[[60433,60594,61116,61505,62576,63225,1812,25784,60414,7184],92592332927704663777033606],[[60857,61155,61160,61322,61583,63009,13907,26545,26768,55902],97600888639924706617420122],[[60925,60997,61100,61241,61895,1833,10803,29337,41929,55936],97600888639758528926378415],[[61093,61279,61476,61794,62552,1273,13335,44031,43536],87296888665347250772071773],[[61152,61164,62489,62685,63046,11761,18063,19412,59328,19246],92592332927638919360680426],[[61153,61764,62492,62549,63222,12434,30472,53092,49249,7300],87296888665343106928994358],[[61156,61323,62555,62579,63068,1484,3552,16956,26544,42765],94719183590369230973777715],[[61478,61612,62064,62577,13886,16224,23136,23816,61311,42830],92592332927357327555999973],[[61503,62569,62580,62996,2435,12676,18634,26661,47031,61265],97600888639592351235336425],[[61849,62683,62702,63293,603,16960,17226,26147,58439,27200],92592332927345803980738100],[[61853,62491,63070,11280,12359,12499,18072,24870,31864,58997],97600888639426173544294153],[[62575,62710,63333,6081,12466,12690,13811,26764,46780,59021],97600888639426173544294153],[[62656,62997,63227,10841,11133,15860,24874,29519,1290,3716],87296888664991111066105871],[[62658,63014,63224,11330,24280,27465,39190,53588,57240,42849],92592332927165523209574129],[[63048,63299,1467,2607,3547,11585,13354,28918,31679,47286],97600888639259995853251597],[[63076,63318,1448,3546,7331,12379,15806,47565,53884,22022],92592332927019444048497181],[[63329,361,1045,5647,11586,17162,23052,30259,41291,20768],92592332926819915516858291],[[360,1464,2605,3549,3703,5672,12498,17063,13831,15001],89979972674581578492452450],[[601,1487,3249,5540,6981,7170,7456,26589,56509],92592332926638796875000000],[[1466,1658,6237,10616,11477,12173,18874,20084,1552,15185],90211098679093013299854945],[[3264,3422,3550,6232,11969,13913,39189,45284,997,32920],87296888664506428399980538],[[3265,3418,3702,5856,11464,26185,45409,56677,11615,13366],89979968028791496966079095],[[3698,5389,5813,7088,11337,17855,28906,40472,60356,39973],92592332926642875457064722],[[5527,5653,6982,7076,11824,12384,24633,26766,13768],87975330241917677117001230],[[5824,6983,7094,11524,12736,13460,23057,29459,39493,46935],97600888638927640471165637],[[5868,6236,7082,7452,12338,26577,27374,33590,41222],87296888664412953116180053],[[6980,7072,11234,11613,12361,14800,19422,19256,39750,13676],85916384915594184371978742],[[6984,7084,11541,12156,13467,19717,28668,31833,39194,49175],97600888638927640471165637],[[6985,11454,12311,12363,15620,17227,46402,48252,52777,56766],97600888638927640471165637],[[6986,7096,11952,13254,16242,28449,33556,33894,44512,63518],97600888638927640471165637],[[11465,11575,12315,12502,18668,18997,26765,27804,1613],81658762078634655548958372],[[11476,11596,12354,12385,12503,19899,30494,45470,46129,51207],97600888638927640471165637],[[11630,12327,12339,12382,14494,15859,28452,32390,2766,13349],87296888664536572477859177],[[12118,12325,12380,12426,15790,22918,25785,32032],87296888664411652391943154],[[12340,12346,12691,12972,15677,15811,19598,47025,47642,16867],92592332926645360127712770],[[12341,12365,12677,12697,22921,23840,59286,61677],87296888664411652391943154],[[12378,12675,14629,16963,18623,22919,25824,45226,45331,56707],97600888638927640471165637],[[12837,12994,14275,16957,17932,20394,30624,33116,39193,10952],92592332926669110715161643],[[13258,14631,15598,15795,17848,21527,26966,27991,22974,211],87975330102369320389104084],[[13259,15650,17160,18875,23135,24279,28555,5406,39989,27365],84521010725417981003947858],[[13920,15663,16023,20067,27481,28679,40033,53583,59018,61310],97600888638927640471165637],[[13922,15669,16021,17163,17215,23137,29733,30875,19032,16226],89979972674708214154317022],[[15679,15856,17038,22468,23139,26953,28672,2603,25957,666],84062697120950020908549075],[[15766,16959,17927,19073,23886,24890,26977,486,4366,60677],81658762078443398629333891],[[15779,17068,18868,22400,26536,31046,45953,13738,573],82383647441816405812244626],[[15863,17161,17992,26595,26771,33110,42753,45098,4276,9250],87975330102351701944127133],[[16022,17926,18666,21655,24631,27570,33877,53397,55934,31331],92592332926644748850190310],[[17933,18060,19120,19303,22350,23138,60400,24082,15942,2647],81658762078438245766916742],[[18074,18872,19506,21503,22920,27731,39919,45209,56703,10515],92592332926645276352395189],[[18635,19463,20017,21663,23134,28459,33874,41666,23881,11875],87975330133645384554735074],[[18657,19738,21427,24875,26582,33111,59870,60199,33275],87296888664427588987761699],[[18869,19895,23132,23766,23878,26980,27360],81658762078394552371715918],[[18966,19119,19318,24869,28006,29336,29457,32778,49338,57154],97600888638927640471165637],[[19010,19137,19855,27701,27903,28106,29670,41835,45415],92592332926638796875000000],[[19155,19423,22507,23081,29456,30597,33114,53396,19284,3867],87296888664575574860979582],[[19413,21436,23056,23813,24892,26954,27470,27639,2760,62779],87296888664445074327888872],[[21679,23769,23839,23879,26963,27479,32775,32849,46896,59049],97600888638927640471165637],[[23053,23133,23856,24877,26928,32787,32843,44411,45920,3999],92592332926669055308581103],[[23857,24635,24893,26769,27478,30254,33151,39431,53129,57014],97600888638927640471165637],[[23859,23887,24639,26590,27333,27477,30625,31913,32031,3521],92592332926640676548316011],[[24246,24876,27530,28496,29033,31949,32231,43629,115,52316],92167125948380218741754380],[[25828,26089,27337,29734,30881,32373,40459,60461],87296888664411652391943154],[[25837,26090,27041,27475,29725,32211,39357,60444,62052,800],92592332926662728458257940],[[26093,26609,26962,29025,29435,30598,33551,56890,30697,35912],87296888664550442326369460],[[26148,26933,27473,28470,30244,32769,32861,47043,34906],87296888664418613772692914],[[26150,27331,28458,31677,33108,38342,53880,59768,13114,49164],87296888664445021300112771],[[26151,28463,29434,31024,31812,45809,60491,4275,3789],82383647408397363704115190],[[26156,26541,26596,27520,27556,38950,41707,45337,63056,2639],92592332926644748850190310],[[26601,26767,26955,27510,27596,30600,38957,45344,49185,62704],93232247923818595502141183],[[26969,27474,27703,28468,33109,39870,59451,20305,16870,22593],81658762078433219613788875],[[26974,27514,28013,31830,32050,33893,44515,48077,63521,1174],92592332926726258821315231],[[27504,27668,28107,29441,39332,59829,20391,15044,40263,22904],78191711137658863295497593],[[27705,27790,29016,29038,33530,44752,46319,61169],87296888664411652391943154],[[27709,28100,28890,29567,33112,33659,49187,55933,62975],92592332926638796875000000],[[27922,28101,29059,29415,32393,52770,56895,33212,27096],81658762078413736598381308],[[28546,29019,29392,29439,38361,42787,52776,58451,61591,15034],93232249171551583836840682],[[28599,29022,29440,29743,30533,32051,53451,16178],84521010998129280762242780],[[29064,29437,30599,33144,38920,40473,984,582,96],78684229091620804737590023],[[29436,30462,31303,31862,33166,33878,46936,16902,9417,47721],81658762078430659988597262],[[29438,30240,30623,31675,31809,33879,41678,45410,11665],87296888664543480945619711],[[29460,30263,31298,31678,45030,47281,54909,56770,11463],87296888664418289238285051],[[29461,29767,30537,31912,44997,45280,46932,49186,46113,47427],89549597337191941950271878],[[29726,30883,31021,33115,33137,38934,58421,28495,2394],81658762078403778808101734],[[30265,31022,31827,33171,38917,45683,50098,57245,7399,16748],87296888664426187526947833],[[31672,31814,31915,41828,43909,45667,57237,62974,55892],87296888664418289238285051],[[31841,32374,32685,33591,33899,53559,63509,116,43656],84521010998130383441381645],[[31844,31948,33135,41849,45281,46360,47563,51459],87296888664411652391943154],[[31859,32394,39148,40373,47559,54877,60442,11602,41407,25227],84767027834842822169099692],[[32233,33158,33881,45519,46461,47283,57518,27782,53230],84062697120913489539282777],[[32680,33531,33581,38795,41848,44751,48058,54892,22759,23946],87975330133640089583331249],[[32794,33580,33884,40040,44750,45479,54896,13754,30845],82383647441783776159873530],[[32855,33557,39197,41850,45474,47561,52339,55458,56891,39091],92592332926640023209571154],[[33121,33875,33888,39492,44753,45110,46756,59737,50299],87296888664412720007949284],[[33122,33903,39513,44748,45088,46933,48168,56515,20272,30844],87296888664445105799093205],[[33127,33876,33895,44410,45013,47645,49500,54878],87296888664411652391943154],[[39433,39861,39916,43658,45411,46323,60430,63520,24101],87296888664543480945619711],[[39871,41851,45008,45349,45772,47039,53885,39745,6281,68469],82383647557418660553532783],[[43911,44514,45484,45670,47640,53172,54893,57234,48218,70222],89979972674581604974860257],[[44747,45001,45499,47284,47644,55462,56768,18161,66649],81658762078423312951820122],[[44749,45414,45786,45929,46460,47036,48215,60851,69624],84062697059649486263754237],[[45285,45770,45806,46407,46998,53122,56957,25939,13779],81658762078430315568280416],[[45666,45773,45781,45928,46765,54435,16368,30719,46980],78191711203507291899081971],[[45771,45803,46406,47007,52800,58848,63167,21300],81658762078395942904415675],[[45784,45921,45948,46409,55940,56710,59056,26772,32521,20800],81658762078426220720468762],[[46095,46463,46905,56280,56964,11598,41517,26812,21,917],73195126502124775761321878],[[46456,46682,47285,48095,49542,58861,1333,31147,15062],76383715633617040319605987],[[46462,46789,46939,48287,49225,52769,53881,56289,32935,23426],87296888664419173976999028],[[46741,46937,48292,48580,52788,57246,58530,32924,7043,3667],78684229384553729708306307],[[46744,46938,48040,48203,51186,56769,58581,8426,9656],78684229384530768122151381],[[46747,47024,47641,48208,51141,54431,53255,69779,35578],76383715669647197668527492],[[47042,47280,47638,48299,50347,54409,63515,6242,35577],81658762078404634186302493],[[47282,48813,49221,51162,52801,61313,16208,32587,30602,22819],75601323254885513248755173],[[47287,49224,50373,53886,56510,59065,59769,60409,57262,26091],87975330102352511974853463],[[48645,50099,50221,53475,54407,59106,59633,27092,42500],76383715794391857373060250],[[48788,50122,52787,54433,57156,11619,2704,34207,26788],71842538614935870740619856],[[48789,50123,53160,56773,59046,62968,30311,25954,2456],75601323254740499806681419],[[49362,51163,52272,53883,56684,61309,21306,23888,42501,20218],77158176418906966064501037],[[50185,53398,54895,56265,60157,61679,3308,52773,3749,44268],79436262810953447202938214],[[53095,54894,57158,59302,60319,63325,602,42838,16844,52030],78948438044850380206747436],[[53659,53882,54875,56680,56767,60806,33046,32866],71842538543136297284724779],[[53887,54445,56256,57251,58998,48134,16374,46586,33240,53239],75079951163102211053021506],[[55455,55903,56923,57233,57519,59336,59736,59834,222,21285],89979972674581578492452450],[[55459,55935,56927,56950,60067,60404,61682,63324,50452],87296888664412868617199618],[[55937,56687,56771,58880,60817,63523,22880,25223],76383715669681045110849889],[[55938,57235,57509,58858,59430,63519,188,2013,2948,6407],78684234697298409933795379],[[55939,57236,59835,60415,60660,61574,52015,23480,18672,23000],75601323254767734241718073],[[55941,56504,57508,58894,61659,126,67414,42694],69014250206446091519052459],[[56929,56943,57238,59871,60031,63493,26801,6296,6394],76383715669654470568955270],[[57232,58611,59905,62046,11961,1605,24404,23497],64874933590167018899214850],[[57239,58904,59450,62024,62972,45509,20771,53969],71842538543158210242827665],[[58907,59070,59337,61259,62018,62902,6292,30696,14722],75601323254874296941915639],[[58926,59064,60405,60437,60449,61683,22610,20844,62781],75601323254744541030394678],[[58996,59420,59908,60431,1506,11942,2505,237],68442712089658474896060999],[[59039,60350,60448,61200,63504,600,47775,50,16857],72665413304785682274520036],[[59071,59301,59909,60325,61176,61666,62973,31791],81658762078401994400774343],[[59429,60446,61264,62487,63517,38774,20393,18172,22897],75079951094528083358718019],[[60436,61159,61258,62906,63516,254,3407,11174,9054,2229],75867715010931241292456180],[[60447,61244,61678,62112,158,797,15094,16835,1438,32687],65467711592984792226465271],[[60629,61166,61306,62494,62971,63173,63522,48897,38585,40670],81658762078398543303395578],[[61192,61308,61680,62113,62907,42739,39907,53316],73479073469203744027037857],[[61251,61312,62107,50334,19501,2112,62780,33409],57062804540469215718773990],[[61570,61667,62106,988,41409,2511,2396,15021,40723],58756615035621567770859084],[[61595,61658,63131,185,19218,42118,41436,14720,6356],63615248968306970998641975],[[61676,62903,62969,38815,38046,53011,20829,64852],61717717285523669251135275],[[61681,63150,63326,1558,62712,32994,53267],58095400745937833295403734],[[62485,63139,63170,19078,13468,21994,2109,9252,9678],61088561644041566752421624],[[62496,63176,63327,100,22756,24296,51080],58756615427874826097457031],[[63064,63496,16148,52004,33232,16840,51849],51172831453984720099881709],[[63502,27779,20300,42114,11177,8046,6253,35565,25232,46248],45436207638095707976621228],[[63510,38071,47771,63251,20309,6665,3765],40817460657782932041517121],[[84,12790,39999,52253,13281,13127,30626],46329768474562763472727547],[[13796,76,13470,49783,41522,14486,1504],39843497659301127254673504],[[63,5432,13784,1334,1617,7017],34483613538527304565166005],[[10664,42893,59641,1176,6655,11858,3528,66079,13765],26710896755241858839181742],[[10676,60044,2701,24104,572,24415,22652,4203],24383597697784709313055637],[[12809,14,46090,21287,14046,20816,26131,25812,15167],39843486588556193493702107],[[27720,28,15201,52765,30721,16901,7212,2397,39063],34483613342061755602980961],[[1498,27723,3411,60007,4004,13362,10464],37300496329308445956799419],[[3296,2601,14039,28150,6273,35922,9416,31665],31511004253759824569864823],[[19326,50360,14792,22845,14868,35549,27363,32965,46228],36250004069452691710976761],[[28589,45489,33261,53303,2506,2619,31786,24133,66677],32165060447824090871881433],[[39983,21670,39912,22968,400,22534,17477],32165060447777714300332458],[[21705,53357,27745,3315,13330,920,47718,9426],22744132187091358553251145],[[60455,57266,19449,2770,32969,2927,178,4467,41536,23472],22744132186991828784452546],[[13703,63231,25238,3303,21138,3988,24130],15421539232734660800336273],[[22808,14464,4009,25242,26324,23481,26440,7093,44221],10904674969063760448591873],[[30720,993,28178,401,35,30300,29884,5230,2636,35940],241613529700414763032],[[1512,20276,4012,6678,95,9662,47719,40652,53326],192376422951950131206],[[1621,5410,583,2630,137,1297,35267,31825,13766],224868509859359333668],[[5436,10955,2697,14921,26108,25794,28974,15169,22900],186636444259071087171],[[6275,488,156,2389,3980,29886,24894,66806,49192,28801],176038544760021315252],[[2512,3859,8037,42900,25912,5227,6991,9427,23434,53983],150309798487076924687],[[2708,51906,4204,23496,34850,35704,23018,35943,53950],130027189127301887383],[[6294,32240,4186,25920,29887,9063,29656,28802],130849438254453116776],[[21193,26301,31144,35421,53035,43013,41418,36015,44250],96002991516752067548],[[11,34214,32988,34869,9402,45998,6784,16849,22724,29867],101237794066720962023],[[2019,26425,32518,8520,6763,2726,15168,9428,22627,26865],91013650263370698798],[[4486,29885,35749,9403,6647,31314,40216,33229,6193,50471],94536230473335232523],[[7410,34917,8186,55415,692,22592,23373,46995,20242],80127513798603110012],[[35255,35552,8421,53010,18608,18851,32838,47435,35519],79124719139017747660],[[35568,35908,36067,45792,6544,41549,10244,47358,35520],82368995121312328600],[[35685,3780,10276,22193,12653,22653,26626,29538,29999],77802108397437167710],[[35918,4373,46010,2779,32962,65055,22734,40666],80314691273080093718],[[36058,36425,23019,27208,51551,22210,15166,47453],87171972272056927874],[[36419,9155,9488,23001,43527,16743,22853,35579],86442738224783715147],[[3775,9499,2778,667,4190,30076],69400282354022365489],[[4785,5233,8184,3752,4011,18585,4085],80640593113116544937],[[4958,8187,3725,3760,6574,42888,41424],73428599200609353082],[[6686,8515,15949,28472,44616,69615,49245],79596893404735870685],[[6691,7036,14723,16854,26811,69621,23488,54045],75370652308891134152],[[8185,10269,26126,28306,28990,55916,6210,7192],88013529470708884119],[[9169,14721,20555,2727,31766,69618,40719],73892293250920225962],[[9532,1462,2965,1324,5957,51883,53233,29540,7163],71066360475506931849],[[9537,1457,2963,25946,12654,24278,4300,13778],76690484772841243307],[[9654,10459,26100,44625,7208,66085,47356,47448],75727600647801674922],[[9664,18675,60696,28436,7189,53242,22566,47360],69972093214581435208],[[10151,6758,28988,2947,18856,15173],71990651057083540715],[[10164,11870,20811,25246,6668],70079723723931353924],[[10517,20533,3942,3554,4075,23947,10243,30073],70159409523796547044],[[20760,24848,46572,12236,54884,3678,42671],80094603114646585161],[[24607,33040,46590,54403,2395,38565,42017,50453,31281],76599498759290624301],[[24621,24828,11472,12221,31629,52101,23492,35518],75301907113876467476],[[31820,45801,7086,28972,32592,33249,29973,15106],80722483379495137022],[[46576,11863,52501,64828,26625,41244],64406607492011814252],[[59843,60702,42499,51581,4358,66821,9679],73869929877950317509],[[59872,60917,42498,54425,385,4198,6086],77172436583052801086],[[60683,60952,52474,59153,28405,38566],69464972549749250599],[[53034,6537,26146,1323,52124,42025,23519,16542],61632104674325061466],[[54869,27127,2939,53374,48927,49964,26866],58879200446256291764],[[55439,30741,24879,67549,41444,23356,7303],58949452499761948303],[[3947,59074,3606,1322,5973,38586,15193,41224],60474681846974782262],[[27134,384,26781,33258,23949],52782417826793814164],[[59091,312,1437,2654],43625491707340435248],[[59134,3619,1325,6640,40704],46154976811721996714],[[313,4290,22908,49235],35411900690652251341],[[27103,31694,6969,7205,29654,46996,53663,46249],47315324769578944507],[[2933,4349,43032,66088,53608,44203,44263],41723666333505353069],[[6592,6947,62778,69995,9429,47456,28777],42309348010299965796],[[47720,67430,30843,53313,33197],33619493423692770492],[[53363,51085,49238,50470,10340,29854,35942],38944517461480325296],[[66082,26847,42016,53308,36366,47450],35889721703296727797],[[67541,68605,26850,36016,46677,33411],35839748227169959647],[[68501,39135,40656,23436,33421,53272,23351],38700666422843580696],[[69968,70235,23948,42024,9681,29672,10337,30064],41731472507202259319],[[70171,51940,39163,23425,53952],33065430120871472415],[[70189,33202,33389,9680,35941,47431],35871077094948430312],[[49942,7301,22851,23476,53942,10241],35560364159254333313],[[49943,7302,9251,22820,10246],32458159059292033637],[[49965,10339,30062,46979,23382],32458159059292033637],[[22622,29674,53273,23521,36020,53603],35153240792343558207],[[29569,36019,46648,53987],29003219268030723598],[[29571,29855,46647,54047,9253],32437542100626971766],[[29866,35521,47362,28776,20219,22597],34842286813632658687],[[33418,47424,53610,46229],29003219268030723598],[[35576,36369,53328,53972,22564],32437542100626971766],[[46676,54053,23527,36365,6085],32011606154393573668],[[53941,10342,33419],25046684565358028154],[[54055,29993,33420,7168],28526049831049687214],[[36370,2455,16674,50300],27701296590394287160],[[53666,54001,16656,31282],28091408305566260225],[[54003,7277,22554],24103168288463745995],[[54007,7291,33391],24103168288463745995],[[54009,16661,32692],24103168288463745995],[[16511,44245],19307983387551679409],[[16679,50275,53643],23647353630817919459],[[22494,43632],19307983387551679409],[[50274,53569],19307983387551679409],[[53573],13652805984375000000]],"schema_version":1,"sqrt_denominator":1000000000000000000000000000000,"terms":[[0,3,805075455481864396,805075602909683064],[0,5,48827761105992212,48827916996922500],[0,6,-170752475975253932,-170752345002034480],[0,9,-170752475975253932,-170752345002034480],[0,10,48827761105992212,48827916996922500],[0,12,805075455481864396,805075602909683064],[0,65,-42841841848850176,-42841784433309880],[0,66,312371664287460240,312371823387059092],[0,68,-1395798520970888,-1395780249387636],[0,71,-49039814791924922,-49039810723020980],[0,72,-88475277713191220,-88475132391845872],[0,75,-3358093042,3358093038],[0,77,33237389706261878,33237395651043384],[0,78,75535017338508762,75535025953615174],[0,129,-1395798520970888,-1395780249387636],[0,130,-88475277713191220,-88475132391845872],[0,132,-42841841848850176,-42841784433309880],[0,135,33237389706261878,33237395651043384],[0,136,312371664287460240,312371823387059092],[0,139,75535017338508762,75535025953615174],[0,141,-49039814791924922,-49039810723020980],[0,142,-3358093042,3358093038],[0,195,-18594001027636998,-18593996670720716],[0,198,-18594001959353888,-18593995739003822],[0,201,-18594001959353888,-18593995739003822],[0,204,-18594001027636998,-18593996670720716],[0,257,-4648502458569680,-4648496966019744],[0,258,-42841841848850176,-42841784433309880],[0,264,-1395798520970888,-1395780249387636],[0,267,-22544604716605376,-22544603021162496],[0,329,22544603021162496,22544604716605376],[0,330,-18594001027636998,-18593996670720716],[0,387,22544603021162496,22544604716605376],[0,394,-18594001959353888,-18593995739003822],[0,449,-22544604716605376,-22544603021162496],[0,450,-3358093042,3358093038],[0,456,75535017338508762,75535025953615174],[0,514,7901206905988008,7901213172832336],[0,706,7901209096355172,7901210982465140],[0,898,-7901210982465140,-7901209096355172],[0,1026,-1395798520970888,-1395780249387636],[0,1028,-4648502458569680,-4648496966019744],[0,1032,-42841841848850176,-42841784433309880],[0,1038,-22544604716605376,-22544603021162496],[0,1098,-18594001959353888,-18593995739003822],[0,1100,22544603021162496,22544604716605376],[0,1158,22544603021162496,22544604716605376],[0,1162,-18594001027636998,-18593996670720716],[0,1218,75535017338508762,75535025953615174],[0,1220,-22544604716605376,-22544603021162496],[0,1224,-3358093042,3358093038],[0,1346,-49039814791924922,-49039810723020980],[0,1352,33237389706261878,33237395651043384],[0,1410,33237389706261878,33237395651043384],[0,1416,-49039814791924922,-49039810723020980],[0,1602,-7901210982465140,-7901209096355172],[0,1794,7901209096355172,7901210982465140],[0,2056,7901206905988008,7901213172832336],[0,2248,7901209096355172,7901210982465140],[0,2440,-7901210982465140,-7901209096355172],[0,3144,-7901210982465140,-7901209096355172],[0,3336,7901209096355172,7901210982465140],[0,32769,-53534633662818236,-53534570238879156],[0,32770,-1395798588612732,-1395780181745792],[0,32772,-264466246035572172,-264466089763059996],[0,32775,11851812927156194,11851817191074274],[0,32776,-263722470861251000,-263722338607825936],[0,32779,33237389706387162,33237395650918114],[0,32781,-10692792130513058,-10692785489024336],[0,32782,-98079629592578584,-98079621437313222],[0,32896,-1395798588612732,-1395780181745792],[0,32901,7901209108823124,7901210969997192],[0,32902,-7901210969997192,-7901209108823124],[0,32905,-7901210969997192,-7901209108823124],[0,32906,-14643395680256318,-14643391978691234],[0,32908,-49039814800838354,-49039810714107552],[0,131073,-1395798588612732,-1395780181745792],[0,131074,-53534633662818236,-53534570238879156],[0,131076,-263722470861251000,-263722338607825936],[0,131079,33237389706387162,33237395650918114],[0,131080,-264466246035572172,-264466089763059996],[0,131083,11851812927156194,11851817191074274],[0,131085,-98079629592578584,-98079621437313222],[0,131086,-10692792130513058,-10692785489024336],[0,131136,-1395799815332118,-1395778955026394],[0,131139,-22544604789079444,-22544602948688428],[0,131142,22544602948688428,22544604789079444],[0,131145,22544602948688428,22544604789079444],[0,131146,11851812660075666,11851817458154814],[0,131148,-3950606863625140,-3950603175785020],[0,131200,-181445272717252872,-181445125879572760],[0,131203,22544602948688428,22544604789079444],[0,131205,-7901210969997192,-7901209108823124],[0,131206,-18594002543881458,-18593995154476254],[0,131209,-14643395680256320,-14643391978691236],[0,131210,-3681052522,3681052524],[0,131212,-3375919900,3375919900],[0,131266,33237389263734506,33237396093570758],[0,131268,-18593999772903408,-18593997925454304],[0,131272,-98079630297168496,-98079620732723310],[0,132096,-1395798588612732,-1395780181745792],[0,132106,18593997925454304,18593999772903408],[0,132108,-22544604716605376,-22544603021162496],[0,132168,-18593999772903408,-18593997925454304],[0,132226,-18593999772903408,-18593997925454304],[0,132228,22544603021162496,22544604716605376],[0,132232,-18594001036550426,-18593996661807284],[0,132288,-3950606863625138,-3950603175785018],[0,163845,11851812910563952,11851817207666526],[0,163846,33237389689794910,33237395667510356],[0,163849,33237389689794910,33237395667510356],[0,163850,11851812910563952,11851817207666526],[0,163970,22544602948688426,22544604789079442],[0,163972,33237389689794910,33237395667510356],[0,163976,75535017304359926,75535025987764002],[0,524290,-1395799815332118,-1395778955026394],[0,524292,-1395798588612732,-1395780181745792],[0,524296,-181445272717252872,-181445125879572760],[0,524302,-3950606863625138,-3950603175785018],[0,524362,33237389263734506,33237396093570758],[0,524364,-18593999772903408,-18593997925454304],[0,524422,-18593999772903408,-18593997925454304],[0,524426,-98079630297168496,-98079620732723310],[0,524428,-18594001036550426,-18593996661807284],[0,524482,11851812660075666,11851817458154814],[0,524484,18593997925454304,18593999772903408],[0,524488,-3681052522,3681052524],[0,524610,-22544604789079444,-22544602948688428],[0,524616,22544602948688428,22544604789079444],[0,524674,22544602948688428,22544604789079444],[0,524680,-14643395680256320,-14643391978691236],[0,525322,-18593999772903408,-18593997925454304],[0,525324,22544603021162496,22544604716605376],[0,525378,22544602948688428,22544604789079444],[0,525384,-18594002543881458,-18593995154476254],[0,525442,-3950606863625140,-3950603175785020],[0,525444,-22544604716605376,-22544603021162496],[0,525448,-3375919900,3375919900],[0,525576,-7901210969997192,-7901209108823124],[0,526472,7901209096355172,7901210982465140],[0,527368,-7901210982465140,-7901209096355172],[0,557066,22544602948688426,22544604789079442],[0,557068,33237389689794910,33237395667510356],[0,557192,-18594001977035748,-18593995721321958],[0,655366,22544602948688426,22544604789079442],[0,655370,11851812639372616,11851817478857866],[0,655372,75535017304359926,75535025987764002],[0,655432,33237389243031454,33237396114273808],[0,655490,33237389243031454,33237396114273808],[0,655492,-18594001977035748,-18593995721321958],[0,655552,11851812639372616,11851817478857866],[0,656392,-18594001977035748,-18593995721321958],[0,656448,22544602948688426,22544604789079442],[0,656512,75535017304359926,75535025987764002],[0,688130,-22544604789079442,-22544602948688426],[0,688132,-49039814800838354,-49039810714107552],[0,688136,-3375919900,3375919900],[0,688256,-18594001036550426,-18593996661807284],[0,1048584,-1395798588612732,-1395780181745792],[0,1048776,-14643395680256318,-14643391978691234],[0,1048968,-7901210969997192,-7901209108823124],[0,1049672,-7901210969997192,-7901209108823124],[0,1049736,-49039814800838354,-49039810714107552],[0,1049864,7901209108823124,7901210969997192],[0,1050760,-7901210982465140,-7901209096355172],[0,1051656,7901209096355172,7901210982465140],[0,1179784,-18594001977035748,-18593995721321958],[0,1179840,22544602948688426,22544604789079442],[0,1180800,33237389689794910,33237395667510356],[0,1212424,-22544604716605376,-22544603021162496],[0,1212544,22544603021162496,22544604716605376],[0,1572936,22544602948688426,22544604789079442],[0,1573000,75535017304359926,75535025987764002],[0,1573896,33237389689794910,33237395667510356],[0,1605640,22544603021162496,22544604716605376],[0,1605760,-22544604716605376,-22544603021162496],[0,1703944,-18594001036550426,-18593996661807284],[0,1704000,-22544604789079442,-22544602948688426],[0,1704064,-3375919900,3375919900],[0,1704960,-49039814800838354,-49039810714107552],[0,2752640,7901209096355172,7901210982465140],[0,2753536,-7901210982465140,-7901209096355172],[0,3276928,-7901210982465140,-7901209096355172],[0,3277824,7901209096355172,7901210982465140],[0,67108866,-4648503294878728,-4648496129710712],[0,67108868,-1395798588612732,-1395780181745792],[0,67108872,-53534633662818236,-53534570238879156],[0,67108878,-22544604802429304,-22544602935338568],[0,67108992,-1395799815332118,-1395778955026394],[0,67109002,-22544604890140016,-22544602847627856],[0,67109004,-22544604789079442,-22544602948688426],[0,67141642,22544602935338568,22544604802429304],[0,67141644,33237389689794910,33237395667510356],[0,67141768,22544602948688426,22544604789079442],[0,67239942,22544602935338568,22544604802429304],[0,67239948,11851812910563952,11851817207666526],[0,67240066,22544602847627856,22544604890140016],[0,67240068,22544602948688426,22544604789079442],[0,67240072,11851812639372616,11851817478857866],[0,67272706,-22544604802429304,-22544602935338568],[0,67272708,-98079629592578584,-98079621437313222],[0,67272712,-10692792130513058,-10692785489024336],[0,67272832,-3950606863625138,-3950603175785018],[0,67633162,22544602847627856,22544604890140016],[0,67633164,22544602948688426,22544604789079442],[0,67633288,33237389243031454,33237396114273808],[0,67665924,-7901210969997192,-7901209108823124],[0,67665928,-18594002543881458,-18593995154476254],[0,67666048,-18593999772903408,-18593997925454304],[0,67764226,-22544604890140016,-22544602847627856],[0,67764228,-14643395680256318,-14643391978691234],[0,67764232,-3681052522,3681052524],[0,67764352,-98079630297168496,-98079620732723310],[0,68288520,18593997925454304,18593999772903408],[0,68288640,-18593999772903408,-18593997925454304],[0,68681736,-18593999772903408,-18593997925454304],[0,68681856,-3950606863625140,-3950603175785020],[0,134873216,-14643395680256320,-14643391978691236],[0,134874112,-7901210969997192,-7901209108823124],[0,135397504,-7901210969997192,-7901209108823124],[0,135398400,7901209108823124,7901210969997192],[0,201851008,22544602948688428,22544604789079444],[0,268435464,-1395799815332118,-1395778955026394],[0,268435656,-22544604890140016,-22544602847627856],[0,268436616,-22544604789079442,-22544602948688426],[0,268566664,33237389243031454,33237396114273808],[0,268566720,22544602847627856,22544604890140016],[0,268567680,22544602948688426,22544604789079442],[0,268599304,-3950606863625140,-3950603175785020],[0,268599424,-18593999772903408,-18593997925454304],[0,268959816,22544602847627856,22544604890140016],[0,268959880,11851812639372616,11851817478857866],[0,268960776,22544602948688426,22544604789079442],[0,268992520,-18593999772903408,-18593997925454304],[0,268992640,18593997925454304,18593999772903408],[0,269090824,-98079630297168496,-98079620732723310],[0,269090880,-22544604890140016,-22544602847627856],[0,269090944,-3681052522,3681052524],[0,269091840,-14643395680256318,-14643391978691234],[0,269484168,22544602948688426,22544604789079442],[0,269615112,-18593999772903408,-18593997925454304],[0,269615232,-18594002543881458,-18593995154476254],[0,269616128,-7901210969997192,-7901209108823124],[0,270008328,-3950606863625138,-3950603175785018],[0,335577096,22544602948688428,22544604789079444],[0,335675400,11851812660075666,11851817458154814],[0,335675520,33237389263734506,33237396093570758],[0,336068616,33237389263734506,33237396093570758],[0,336068736,11851812660075666,11851817458154814],[0,336593024,22544602948688428,22544604789079444],[0,402784384,22544602948688428,22544604789079444],[0,469762176,-22544604789079444,-22544602948688428],[0,1073741825,-4648503294878728,-4648496129710712],[0,1073741828,-53534633662818236,-53534570238879156],[0,1073741832,-1395798588612732,-1395780181745792],[0,1073741837,-22544604802429304,-22544602935338568],[0,1073774601,22544602935338568,22544604802429304],[0,1073774604,11851812910563952,11851817207666526],[0,1073872901,22544602935338568,22544604802429304],[0,1073872908,33237389689794910,33237395667510356],[0,1073905665,-22544604802429304,-22544602935338568],[0,1073905668,-10692792130513058,-10692785489024336],[0,1073905672,-98079629592578584,-98079621437313222],[0,1074298884,7901209108823124,7901210969997192],[0,1074298888,-7901210969997192,-7901209108823124],[0,1074397188,-7901210969997192,-7901209108823124],[0,1074397192,-14643395680256320,-14643391978691236],[0,1140883460,11851812927156194,11851817191074274],[0,1140883464,33237389706387162,33237395650918114],[0,1140981764,33237389706387162,33237395650918114],[0,1140981768,11851812927156194,11851817191074274],[0,1141374984,22544602948688428,22544604789079444],[0,1342308360,22544602948688428,22544604789079444],[0,1409286152,-22544604789079444,-22544602948688428],[0,17592186044424,7901206260429784,7901213818390536],[0,17592186208264,18593997898859016,18593999799498692],[0,17592186699784,18593997808144912,18593999890212800],[0,17592253186056,-18593999799498692,-18593997898859016],[0,17592253677576,-18593999890212800,-18593997808144912],[0,17592454610952,-18593999890212800,-18593997808144912],[0,17592521588744,18593997808144912,18593999890212800],[0,17593259917320,-18593999799498692,-18593997898859016],[0,17593326895112,18593997898859016,18593999799498692],[0,35184372744320,18593997808144912,18593999890212800],[0,35184439722112,-18593999890212800,-18593997808144912],[0,35184640655488,-18593999890212800,-18593997808144912],[0,35184707633280,18593997808144912,18593999890212800],[0,140737488355332,7901206260429784,7901213818390536],[0,140737488519172,18593997898859016,18593999799498692],[0,140737555496964,-18593999799498692,-18593997898859016],[0,140738562228228,-18593999799498692,-18593997898859016],[0,140738629206020,18593997898859016,18593999799498692],[3,0,805075455481864396,805075602909683064],[3,3,805075455481864396,805075602909683064],[3,12,-520914637505574432,-520914561264483256],[3,15,-520914637505574432,-520914561264483256],[3,68,-270333833954743796,-270333790528810368],[3,71,-270333833954743796,-270333790528810368],[3,72,266383184103143623,266383230341000381],[3,75,266383184103143623,266383230341000381],[3,132,22544599251748898,22544608486018976],[3,135,22544599251748898,22544608486018976],[3,136,49039809086990954,49039816427954942],[3,139,49039809086990954,49039816427954942],[3,192,-11272305024301474,-11272298844582466],[3,195,-11272305024301474,-11272298844582466],[3,204,-3950606264617852,-3950603774792306],[3,207,-3950606264617852,-3950603774792306],[3,260,1975300984811094,1975304034893986],[3,263,1975300984811094,1975304034893986],[3,264,-13247605973043456,-13247602915545560],[3,267,-13247605973043456,-13247602915545560],[3,320,-1360236128,1360236132],[3,323,-1360236128,1360236132],[3,384,11272301510581248,11272302358302688],[3,387,11272301510581248,11272302358302688],[3,32772,19173508878057052,19173515069647194],[3,32775,19173508878057052,19173515069647194],[3,32776,20569296515201551,20569306202861252],[3,32779,20569296515201551,20569306202861252],[3,32832,1975300784114970,1975304235590111],[3,32835,1975300784114970,1975304235590111],[3,32844,13247603827010127,13247605061578886],[3,32847,13247603827010127,13247605061578886],[3,32908,13247603821617226,13247605066971786],[3,32911,13247603821617226,13247605066971786],[3,131076,20569296515201551,20569306202861252],[3,131079,20569296515201551,20569306202861252],[3,131080,19173508878057052,19173515069647194],[3,131083,19173508878057052,19173515069647194],[3,131136,-13247606172936084,-13247602715652933],[3,131139,-13247606172936084,-13247602715652933],[3,131148,-1975303130040923,-1975301889664154],[3,131151,-1975303130040923,-1975301889664154],[3,131200,11272301474344214,11272302394539722],[3,131203,11272301474344214,11272302394539722],[3,131212,-24519907159915920,-24519905597557028],[3,131215,-24519907159915920,-24519905597557028],[3,163852,26495207628724032,26495210148454004],[3,163855,26495207628724032,26495210148454004],[5,0,48827761105992212,48827916996922500],[5,5,48827761105992212,48827916996922500],[5,10,424538147300469636,424538221285730480],[5,15,424538147300469636,424538221285730480],[5,66,-34514803436440870,-34514797555390214],[5,71,-34514803436440870,-34514797555390214],[5,72,-12549714284822493,-12549705218587237],[5,77,-12549714284822493,-12549705218587237],[5,130,-12549714284822493,-12549705218587237],[5,135,-12549714284822493,-12549705218587237],[5,136,-34514803436440870,-34514797555390214],[5,141,-34514803436440870,-34514797555390214],[5,202,-9297000684250004,-9296998164928852],[5,207,-9297000684250004,-9296998164928852],[5,32770,126278022677218062,126278066975886174],[5,32775,126278022677218062,126278066975886174],[5,32776,-120352160799604924,-120352113794384070],[5,32781,-120352160799604924,-120352113794384070],[5,32832,-13247606122970514,-13247602765618499],[5,32837,-13247606122970514,-13247602765618499],[5,32842,-1975303102434961,-1975301917270118],[5,32847,-1975303102434961,-1975301917270118],[5,32896,17198207785357210,17198211142641961],[5,32901,17198207785357210,17198211142641961],[5,32906,-1975303102468593,-1975301917236486],[5,32911,-1975303102468593,-1975301917236486],[5,131074,-7901214462754538,-7901205616065770],[5,131079,-7901214462754538,-7901205616065770],[5,131080,-63683210088709754,-63683203085183716],[5,131085,-63683210088709754,-63683203085183716],[5,131146,-4648500337554984,-4648499087034444],[5,131151,-4648500337554984,-4648499087034444],[5,131200,-3950605484998596,-3950604554411562],[5,131205,-3950605484998596,-3950604554411562],[5,131210,8599103952831266,8599105511168320],[5,131215,8599103952831266,8599105511168320],[5,163840,19173508834098980,19173515113605268],[5,163845,19173508834098980,19173515113605268],[5,163850,-3950606212356198,-3950603827053960],[5,163855,-3950606212356198,-3950603827053960],[5,1073741826,4648497893199929,4648501531389499],[5,1073741831,4648497893199929,4648501531389499],[5,1073741832,-15920803465251079,-15920799828222285],[5,1073741837,-15920803465251079,-15920799828222285],[5,1073774592,-1758883548,1758883552],[5,1073774597,-1758883548,1758883552],[5,1073872896,11272301467669284,11272302401214652],[5,1073872901,11272301467669284,11272302401214652],[6,0,-170752475975253932,-170752345002034480],[6,6,-170752475975253932,-170752345002034480],[6,9,96376339978752776,96376490205104796],[6,15,96376339978752776,96376490205104796],[6,65,255808774717255568,255808825243183778],[6,71,255808774717255568,255808825243183778],[6,72,-209714307449075898,-209714245574972548],[6,78,-209714307449075898,-209714245574972548],[6,129,23242490579994047,23242506542953071],[6,135,23242490579994047,23242506542953071],[6,136,-43421350142958786,-43421302388547748],[6,142,-43421350142958786,-43421302388547748],[6,192,-4790774237,4790774243],[6,198,-4790774237,4790774243],[6,201,15222904008319537,15222909899974555],[6,207,15222904008319537,15222909899974555],[6,257,-1975304034893986,-1975300984811094],[6,263,-1975304034893986,-1975300984811094],[6,264,-4648501315670959,-4648498108918473],[6,270,-4648501315670959,-4648498108918473],[6,456,1975301912872117,1975303106832961],[6,462,1975301912872117,1975303106832961],[6,1032,6623799524173159,6623804920121353],[6,1038,6623799524173159,6623804920121353],[6,1152,11272301510581248,11272302358302688],[6,1158,11272301510581248,11272302358302688],[6,1224,-13247605037567427,-13247603851021587],[6,1230,-13247605037567427,-13247603851021587],[6,32769,-133599767595705506,-133599715886872508],[6,32775,-133599767595705506,-133599715886872508],[6,32776,320189871195698486,320189931323813606],[6,32782,320189871195698486,320189931323813606],[6,32832,3950600828296569,3950609211113582],[6,32838,3950600828296569,3950609211113582],[6,32841,-3950609211113582,-3950600828296569],[6,32847,-3950609211113582,-3950600828296569],[6,32896,-1975305281057239,-1975299738647843],[6,32902,-1975305281057239,-1975299738647843],[6,32905,-24519908060537022,-24519904696935925],[6,32911,-24519908060537022,-24519904696935925],[6,32968,3950603783705734,3950606255704424],[6,32974,3950603783705734,3950606255704424],[6,131073,20569293260874416,20569309457188365],[6,131079,20569293260874416,20569309457188365],[6,131080,-222382391306796628,-222382344356494327],[6,131086,-222382391306796628,-222382344356494327],[6,131136,15920798865897844,15920804427575524],[6,131142,15920798865897844,15920804427575524],[6,131145,8599103049661346,8599106414338238],[6,131151,8599103049661346,8599106414338238],[6,131200,-13945502254348697,-13945496019419587],[6,131206,-13945502254348697,-13945496019419587],[6,131209,15920800086388708,15920803207084654],[6,131215,15920800086388708,15920803207084654],[6,131272,-21846710653152227,-21846707699436376],[6,131278,-21846710653152227,-21846707699436376],[6,163840,20569296483878353,20569306234184452],[6,163846,20569296483878353,20569306234184452],[6,163849,-35792211241229472,-35792205385127423],[6,163855,-35792211241229472,-35792205385127423],[6,163912,3950603780638034,3950606258772122],[6,163918,3950603780638034,3950606258772122],[6,163976,47064508847957192,47064511647283630],[6,163982,47064508847957192,47064511647283630],[6,524296,-4648505793203474,-4648493631385954],[6,524302,-4648505793203474,-4648493631385954],[6,524416,-9296999886451704,-9296998962727152],[6,524422,-9296999886451704,-9296998962727152],[6,524488,4648499056652179,4648500367937248],[6,524494,4648499056652179,4648500367937248],[6,655360,11272301474344213,11272302394539721],[6,655366,11272301474344213,11272302394539721],[6,688136,1975301885115096,1975303134589986],[6,688142,1975301885115096,1975303134589986],[6,67108872,6623799135992659,6623805308301850],[6,67108878,6623799135992659,6623805308301850],[6,67239936,11272301467669284,11272302401214652],[6,67239942,11272301467669284,11272302401214652],[6,67272712,1975301882939439,1975303136765642],[6,67272718,1975301882939439,1975303136765642],[6,1073741825,-4648501531389499,-4648497893199929],[6,1073741831,-4648501531389499,-4648497893199929],[6,1073741832,-1975304247543921,-1975300772161160],[6,1073741838,-1975304247543921,-1975300772161160],[6,1073905672,-13247605070627222,-13247603817961795],[6,1073905678,-13247605070627222,-13247603817961795],[9,0,-170752475975253932,-170752345002034480],[9,6,96376339978752776,96376490205104796],[9,9,-170752475975253932,-170752345002034480],[9,15,96376339978752776,96376490205104796],[9,66,-43421350142958786,-43421302388547748],[9,68,23242490579994047,23242506542953071],[9,75,-43421350142958786,-43421302388547748],[9,77,23242490579994047,23242506542953071],[9,130,-209714307449075898,-209714245574972548],[9,132,255808774717255568,255808825243183778],[9,139,-209714307449075898,-209714245574972548],[9,141,255808774717255568,255808825243183778],[9,192,-4790774237,4790774243],[9,198,15222904008319537,15222909899974555],[9,201,-4790774237,4790774243],[9,207,15222904008319537,15222909899974555],[9,258,6623799524173159,6623804920121353],[9,267,6623799524173159,6623804920121353],[9,320,11272301510581248,11272302358302688],[9,329,11272301510581248,11272302358302688],[9,450,-13247605037567427,-13247603851021587],[9,459,-13247605037567427,-13247603851021587],[9,1026,-4648501315670959,-4648498108918473],[9,1028,-1975304034893986,-1975300984811094],[9,1035,-4648501315670959,-4648498108918473],[9,1037,-1975304034893986,-1975300984811094],[9,1218,1975301912872117,1975303106832961],[9,1227,1975301912872117,1975303106832961],[9,32770,20569293260874416,20569309457188365],[9,32772,-222382391306796628,-222382344356494327],[9,32779,20569293260874416,20569309457188365],[9,32781,-222382391306796628,-222382344356494327],[9,32896,-1975305295212454,-1975299724492630],[9,32902,-24519908060482760,-24519904696990186],[9,32905,-1975305295212454,-1975299724492630],[9,32911,-24519908060482760,-24519904696990186],[9,131074,-133599767595705506,-133599715886872508],[9,131076,320189871195698486,320189931323813606],[9,131083,-133599767595705506,-133599715886872508],[9,131085,320189871195698486,320189931323813606],[9,131136,15920798878436957,15920804415036409],[9,131142,8599103049607085,8599106414392500],[9,131145,15920798878436957,15920804415036409],[9,131151,8599103049607085,8599106414392500],[9,131200,-19871412418198236,-19871400914685277],[9,131206,19871400914685277,19871412418198236],[9,131209,-19871412418198236,-19871400914685277],[9,131215,19871400914685277,19871412418198236],[9,131266,8599102944480312,8599106519519277],[9,131275,8599102944480312,8599106519519277],[9,163840,20569296483878353,20569306234184452],[9,163846,-35792211241229472,-35792205385127423],[9,163849,20569296483878353,20569306234184452],[9,163855,-35792211241229472,-35792205385127423],[9,163972,-39742815043973846,-39742811621793198],[9,163981,-39742815043973846,-39742811621793198],[9,524290,8599101131740910,8599108332258679],[9,524292,-3950608451914177,-3950601587495984],[9,524299,8599101131740910,8599108332258679],[9,524301,-3950608451914177,-3950601587495984],[9,524482,4648499056652180,4648500367937249],[9,524491,4648499056652180,4648500367937249],[9,688132,-13247605066127948,-13247603822461068],[9,688141,-13247605066127948,-13247603822461068],[9,67108866,-4648501531389499,-4648497893199929],[9,67108868,-1975304247543921,-1975300772161160],[9,67108875,-4648501531389499,-4648497893199929],[9,67108877,-1975304247543921,-1975300772161160],[9,67272708,-13247605070627222,-13247603817961795],[9,67272717,-13247605070627222,-13247603817961795],[9,1073741828,6623799135992659,6623805308301850],[9,1073741837,6623799135992659,6623805308301850],[9,1073774592,11272301467669284,11272302401214652],[9,1073774601,11272301467669284,11272302401214652],[9,1073905668,1975301882939439,1975303136765642],[9,1073905677,1975301882939439,1975303136765642],[10,0,48827761105992212,48827916996922500],[10,5,424538147300469636,424538221285730480],[10,10,48827761105992212,48827916996922500],[10,15,424538147300469636,424538221285730480],[10,65,-222961907731674894,-222961854180962580],[10,68,236209459374475712,236209511426750774],[10,75,-222961907731674894,-222961854180962580],[10,78,236209459374475712,236209511426750774],[10,129,236209459374475712,236209511426750774],[10,132,-222961907731674894,-222961854180962580],[10,139,236209459374475712,236209511426750774],[10,142,-222961907731674894,-222961854180962580],[10,192,231170470341529204,231170553725604488],[10,197,-58336815178304206,-58336809185820542],[10,202,231170470341529204,231170553725604488],[10,207,-58336815178304206,-58336809185820542],[10,257,-15920803246405425,-15920800047067943],[10,260,4648498108918473,4648501315670959],[10,267,-15920803246405425,-15920800047067943],[10,270,4648498108918473,4648501315670959],[10,320,-11272305024301474,-11272298844582466],[10,330,-11272305024301474,-11272298844582466],[10,384,-4790774237,4790774243],[10,394,-4790774237,4790774243],[10,449,13247603851021587,13247605037567427],[10,452,-1975303106832961,-1975301912872117],[10,459,13247603851021587,13247605037567427],[10,462,-1975303106832961,-1975301912872117],[10,1025,4648498108918473,4648501315670959],[10,1028,-15920803246405425,-15920800047067943],[10,1035,4648498108918473,4648501315670959],[10,1038,-15920803246405425,-15920800047067943],[10,1088,-4790774237,4790774243],[10,1098,-4790774237,4790774243],[10,1152,-11272305024301474,-11272298844582466],[10,1162,-11272305024301474,-11272298844582466],[10,1217,-1975303106832961,-1975301912872117],[10,1220,13247603851021587,13247605037567427],[10,1227,-1975303106832961,-1975301912872117],[10,1230,13247603851021587,13247605037567427],[10,1472,-45089208874918688,-45089206600617048],[10,1482,-45089208874918688,-45089206600617048],[10,32769,-7901214462754538,-7901205616065770],[10,32772,-63683210088709754,-63683203085183716],[10,32779,-7901214462754538,-7901205616065770],[10,32782,-63683210088709754,-63683203085183716],[10,32832,-8599108093729955,-8599101370269630],[10,32837,-1975303102468593,-1975301917236486],[10,32842,-8599108093729955,-8599101370269630],[10,32847,-1975303102468593,-1975301917236486],[10,32896,1277404455586225,1277411178939584],[10,32901,-1975303102434961,-1975301917270118],[10,32906,1277404455586225,1277411178939584],[10,32911,-1975303102434961,-1975301917270118],[10,131073,126278022677218062,126278066975886174],[10,131076,-120352160799604924,-120352113794384070],[10,131083,126278022677218062,126278066975886174],[10,131086,-120352160799604924,-120352113794384070],[10,131136,77936102841789496,77936150681548118],[10,131141,-53688314809147586,-53688310130387744],[10,131146,77936102841789496,77936150681548118],[10,131151,-53688314809147586,-53688310130387744],[10,131200,-66663850285081034,-66663799369372644],[10,131205,57638914684799306,57638920294146182],[10,131210,-66663850285081034,-66663799369372644],[10,131215,57638914684799306,57638920294146182],[10,131265,-33119013675915179,-33119008545557361],[10,131268,42416007508284513,42416013562366883],[10,131275,-33119013675915179,-33119008545557361],[10,131278,42416007508284513,42416013562366883],[10,131328,4648498045480103,4648501379109328],[10,131338,4648498045480103,4648501379109328],[10,131520,-22544604485915178,-22544603251852693],[10,131530,-22544604485915178,-22544603251852693],[10,132096,4648498045480100,4648501379109325],[10,132106,4648498045480100,4648501379109325],[10,132288,13247603826875223,13247605061713792],[10,132298,13247603826875223,13247605061713792],[10,163840,19173508834098980,19173515113605268],[10,163845,-3950606212356198,-3950603827053960],[10,163850,19173508834098980,19173515113605268],[10,163855,-3950606212356198,-3950603827053960],[10,524289,-8599108332258679,-8599101131740910],[10,524292,6623798624404334,6623805819890177],[10,524299,-8599108332258679,-8599101131740910],[10,524302,6623798624404334,6623805819890177],[10,524352,-7901216811716128,-7901203267104184],[10,524362,-7901216811716128,-7901203267104184],[10,524416,-63683211765177830,-63683201408715624],[10,524426,-63683211765177830,-63683201408715624],[10,524481,-4648500367937249,-4648499056652180],[10,524484,-4648500367937248,-4648499056652179],[10,524491,-4648500367937249,-4648499056652180],[10,524494,-4648500367937248,-4648499056652179],[10,524736,-1975303134066536,-1975301885638544],[10,524746,-1975303134066536,-1975301885638544],[10,525312,-9296999886451704,-9296998962727152],[10,525322,-9296999886451704,-9296998962727152],[10,525504,11272301159430178,11272302709453758],[10,525514,11272301159430178,11272302709453758],[10,557056,11272301474344213,11272302394539721],[10,557066,11272301474344213,11272302394539721],[10,655360,19173508473961242,19173515473743010],[10,655370,19173508473961242,19173515473743010],[10,655552,-3950606388421522,-3950603650988640],[10,655562,-3950606388421522,-3950603650988640],[10,67108865,4648497893199929,4648501531389499],[10,67108868,-15920803465251079,-15920799828222285],[10,67108875,4648497893199929,4648501531389499],[10,67108878,-15920803465251079,-15920799828222285],[10,67108928,4648497809818828,4648501614770600],[10,67108938,4648497809818828,4648501614770600],[10,67108992,-15920803552528152,-15920799740945212],[10,67109002,-15920803552528152,-15920799740945212],[10,67141632,11272301467669284,11272302401214652],[10,67141642,11272301467669284,11272302401214652],[10,67239936,-1758883548,1758883552],[10,67239946,-1758883548,1758883552],[10,67633152,11272301423813928,11272302445070008],[10,67633162,11272301423813928,11272302445070008],[12,0,805075455481864396,805075602909683064],[12,3,-520914637505574432,-520914561264483256],[12,12,805075455481864396,805075602909683064],[12,15,-520914637505574432,-520914561264483256],[12,65,22544599251748898,22544608486018976],[12,66,49039809086990954,49039816427954942],[12,77,22544599251748898,22544608486018976],[12,78,49039809086990954,49039816427954942],[12,129,-270333833954743796,-270333790528810368],[12,130,266383184103143623,266383230341000381],[12,141,-270333833954743796,-270333790528810368],[12,142,266383184103143623,266383230341000381],[12,192,-11272305024301474,-11272298844582466],[12,195,-3950606264617852,-3950603774792306],[12,204,-11272305024301474,-11272298844582466],[12,207,-3950606264617852,-3950603774792306],[12,1025,1975300984811094,1975304034893986],[12,1026,-13247605973043456,-13247602915545560],[12,1037,1975300984811094,1975304034893986],[12,1038,-13247605973043456,-13247602915545560],[12,1088,11272301510581248,11272302358302688],[12,1100,11272301510581248,11272302358302688],[12,1152,-1360236128,1360236132],[12,1164,-1360236128,1360236132],[12,32769,332041690197650200,332041742440092355],[12,32770,-354586345522376890,-354586294853133538],[12,32781,332041690197650200,332041742440092355],[12,32782,-354586345522376890,-354586294853133538],[12,32832,3950601606309328,3950608433100829],[12,32835,13247603826989498,13247605061599516],[12,32844,3950601606309328,3950608433100829],[12,32847,13247603826989498,13247605061599516],[12,32896,-311472436788867910,-311472393130811843],[12,32899,66238019734487245,66238024708457820],[12,32908,-311472436788867910,-311472393130811843],[12,32911,66238019734487245,66238024708457820],[12,33792,1975300984811094,1975304034893986],[12,33804,1975300984811094,1975304034893986],[12,131073,-354586345522376890,-354586294853133538],[12,131074,332041690197650200,332041742440092355],[12,131085,-354586345522376890,-354586294853133538],[12,131086,332041690197650200,332041742440092355],[12,131136,-5925910945469332,-5925904113645905],[12,131139,-1975303130061553,-1975301889643525],[12,131148,-5925910945469332,-5925904113645905],[12,131151,-1975303130061553,-1975301889643525],[12,131200,307521786696231667,307521833184037924],[12,131203,-77510327102997542,-77510321208831459],[12,131212,307521786696231667,307521833184037924],[12,131215,-77510327102997542,-77510321208831459],[12,132096,-13247605973043456,-13247602915545560],[12,132108,-13247605973043456,-13247602915545560],[12,163840,-685469048873943824,-685468971640616152],[12,163843,79485623483927954,79485629847606148],[12,163852,-685469048873943824,-685468971640616152],[12,163855,79485623483927954,79485629847606148],[12,163969,66238019708364176,66238024734580898],[12,163970,-77510327129120619,-77510321182708389],[12,163981,66238019708364176,66238024734580898],[12,163982,-77510327129120619,-77510321182708389],[12,524289,3950601587495984,3950608451914177],[12,524290,-5925910964282679,-5925904094832560],[12,524301,3950601587495984,3950608451914177],[12,524302,-5925910964282679,-5925904094832560],[12,524352,-9296999886451704,-9296998962727152],[12,524364,-9296999886451704,-9296998962727152],[12,524416,-11272305028685690,-11272298840198250],[12,524428,-11272305028685690,-11272298840198250],[12,525312,11272301510581248,11272302358302688],[12,525324,11272301510581248,11272302358302688],[12,557056,22544597683462214,22544610054305668],[12,557068,22544597683462214,22544610054305668],[12,655360,49039808003270598,49039817511675298],[12,655372,49039808003270598,49039817511675298],[12,688129,13247603822461068,13247605066127948],[12,688130,-1975303134589986,-1975301885115096],[12,688141,13247603822461068,13247605066127948],[12,688142,-1975303134589986,-1975301885115096],[12,688256,-3950606273531284,-3950603765878878],[12,688268,-3950606273531284,-3950603765878878],[12,67108865,1975300772161160,1975304247543921],[12,67108866,-13247606182566277,-13247602706022740],[12,67108877,1975300772161160,1975304247543921],[12,67108878,-13247606182566277,-13247602706022740],[12,67108992,-13247606153429752,-13247602735159258],[12,67109004,-13247606153429752,-13247602735159258],[12,67141632,20569296483878353,20569306234184452],[12,67141644,20569296483878353,20569306234184452],[12,67239936,19173508834098980,19173515113605268],[12,67239948,19173508834098980,19173515113605268],[12,67272705,13247603817961795,13247605070627222],[12,67272706,-1975303136765642,-1975301882939439],[12,67272717,13247603817961795,13247605070627222],[12,67272718,-1975303136765642,-1975301882939439],[12,67272832,-1975303134589986,-1975301885115096],[12,67272844,-1975303134589986,-1975301885115096],[12,67633152,11272301474344213,11272302394539721],[12,67633164,11272301474344213,11272302394539721],[12,67796992,-24519907169816619,-24519905587656329],[12,67797004,-24519907169816619,-24519905587656329],[12,1073741825,-13247606182566277,-13247602706022740],[12,1073741826,1975300772161160,1975304247543921],[12,1073741837,-13247606182566277,-13247602706022740],[12,1073741838,1975300772161160,1975304247543921],[12,1073741952,1975300803621296,1975304216083780],[12,1073741964,1975300803621296,1975304216083780],[12,1073774592,19173508834098980,19173515113605268],[12,1073774604,19173508834098980,19173515113605268],[12,1073872896,20569296483878353,20569306234184452],[12,1073872908,20569296483878353,20569306234184452],[12,1073905665,-1975303136765642,-1975301882939439],[12,1073905666,13247603817961795,13247605070627222],[12,1073905677,-1975303136765642,-1975301882939439],[12,1073905678,13247603817961795,13247605070627222],[12,1073905792,13247603822461068,13247605066127948],[12,1073905804,13247603822461068,13247605066127948],[12,1074429952,13247603811716528,13247605076872486],[12,1074429964,13247603811716528,13247605076872486],[12,1141014528,26495207616089156,26495210161088876],[12,1141014540,26495207616089156,26495210161088876],[15,3,-520914637505574432,-520914561264483256],[15,5,424538147300469636,424538221285730480],[15,6,96376339978752776,96376490205104796],[15,9,96376339978752776,96376490205104796],[15,10,424538147300469636,424538221285730480],[15,12,-520914637505574432,-520914561264483256],[15,192,-45089208874918688,-45089206600617048],[15,195,-4260574858,4260574864],[15,198,-45089210861191912,-45089204614343830],[15,201,-45089210861191912,-45089204614343830],[15,204,-4260574858,4260574864],[15,207,-45089208874918688,-45089206600617048],[15,32832,18593996492884744,18594001205472974],[15,32835,45089206614383552,45089208861152192],[15,32837,-26495210121498808,-26495207655679218],[15,32842,-26495210121498808,-26495207655679218],[15,32844,45089206614383552,45089208861152192],[15,32847,18593996492884744,18594001205472974],[15,32896,26495207655679218,26495210121498808],[15,32901,-26495212175470166,-26495205601707868],[15,32902,52990415723206676,52990419831149384],[15,32905,52990415723206676,52990419831149384],[15,32906,-26495212175470166,-26495205601707868],[15,32911,26495207655679218,26495210121498808],[15,131136,-45089208861152192,-45089206614383552],[15,131139,3950601743215454,3950608296194700],[15,131142,-49039814910578252,-49039810604367646],[15,131145,-49039814910578252,-49039810604367646],[15,131148,3950601743215454,3950608296194700],[15,131151,-45089208861152192,-45089206614383552],[15,131203,-49039814910578252,-49039810604367646],[15,131205,52990415723206676,52990419831149384],[15,131206,-3950609226781738,-3950600812628424],[15,131209,-3950609226781738,-3950600812628424],[15,131210,52990415723206676,52990419831149384],[15,131212,-49039814910578252,-49039810604367646],[15,163840,26495207616089156,26495210161088876],[15,163845,-30445818197184670,-30445809619403520],[15,163846,56941019780492396,56941025813273826],[15,163849,56941019780492396,56941025813273826],[15,163850,-30445818197184670,-30445809619403520],[15,163855,26495207616089156,26495210161088876],[65,0,-42841841848850176,-42841784433309880],[65,6,255808774717255568,255808825243183778],[65,10,-222961907731674894,-222961854180962580],[65,12,22544599251748898,22544608486018976],[65,65,-42841841848850176,-42841784433309880],[65,71,255808774717255568,255808825243183778],[65,75,-222961907731674894,-222961854180962580],[65,77,22544599251748898,22544608486018976],[65,130,-62015351366925919,-62015298862938325],[65,132,3950600776488312,3950609262921848],[65,136,-18594003438885652,-18593994259472046],[65,142,67633806676178144,67633816537125456],[65,195,-62015351366925919,-62015298862938325],[65,197,3950600776488312,3950609262921848],[65,201,-18594003438885652,-18593994259472046],[65,207,67633806676178144,67633816537125456],[65,258,-240160109310537124,-240160071530099528],[65,260,1975300513283600,1975304506421476],[65,264,15920799016722807,15920804276750552],[65,270,3950603830830732,3950606208579430],[65,323,-240160109310537124,-240160071530099528],[65,325,1975300513283600,1975304506421476],[65,329,15920799016722807,15920804276750552],[65,335,3950603830830732,3950606208579430],[65,384,6623799524173159,6623804920121353],[65,390,24519905354627238,24519907402845709],[65,394,-24519908074897335,-24519904682575622],[65,396,1975301912779772,1975303106925307],[65,449,6623799524173159,6623804920121353],[65,455,24519905354627238,24519907402845709],[65,459,-24519908074897335,-24519904682575622],[65,461,1975301912779772,1975303106925307],[65,514,13247602816580098,13247606072008906],[65,579,13247602816580098,13247606072008906],[65,1026,8599101730286822,8599107733712757],[65,1091,8599101730286822,8599107733712757],[65,1162,1975301912779772,1975303106925307],[65,1164,22544603300308524,22544604437459344],[65,1227,1975301912779772,1975303106925307],[65,1229,22544603300308524,22544604437459344],[65,32770,-1975304235590111,-1975300784114970],[65,32782,-13247605061578886,-13247603827010127],[65,32835,-1975304235590111,-1975300784114970],[65,32847,-13247605061578886,-13247603827010127],[65,32908,-13247605066971786,-13247603821617226],[65,32973,-13247605066971786,-13247603821617226],[65,131074,6623799170377024,6623805273917482],[65,131080,11272301474344214,11272302394539722],[65,131086,1975301889664154,1975303130040923],[65,131139,6623799170377024,6623805273917482],[65,131145,11272301474344214,11272302394539722],[65,131151,1975301889664154,1975303130040923],[65,131210,1975301857911278,1975303161793801],[65,131212,22544603248067364,22544604489700504],[65,131275,1975301857911278,1975303161793801],[65,131277,22544603248067364,22544604489700504],[65,524290,-4648501525518317,-4648497899071108],[65,524355,-4648501525518317,-4648497899071108],[65,524426,-13247605096148654,-13247603792440361],[65,524428,1975301885638544,1975303134066536],[65,524491,-13247605096148654,-13247603792440361],[65,524493,1975301885638544,1975303134066536],[66,0,312371664287460240,312371823387059092],[66,5,-34514803436440870,-34514797555390214],[66,9,-43421350142958786,-43421302388547748],[66,12,49039809086990954,49039816427954942],[66,66,312371664287460240,312371823387059092],[66,71,-34514803436440870,-34514797555390214],[66,75,-43421350142958786,-43421302388547748],[66,78,49039809086990954,49039816427954942],[66,129,54693605669021029,54693650731369441],[66,132,-18594003438885652,-18593994259472046],[66,136,-316854179884817992,-316854096746635744],[66,141,26495207701858484,26495210075319546],[66,195,54693605669021029,54693650731369441],[66,198,-18594003438885652,-18593994259472046],[66,202,-316854179884817992,-316854096746635744],[66,207,26495207701858484,26495210075319546],[66,257,240160072890335656,240160107950300992],[66,260,-8599107733712757,-8599101730286822],[66,264,54693605669021029,54693650731369441],[66,323,240160072890335656,240160107950300992],[66,326,-8599107733712757,-8599101730286822],[66,330,54693605669021029,54693650731369441],[66,384,-43421350142958786,-43421302388547748],[66,393,-2424856520,2424856530],[66,396,-1975303106925307,-1975301912779772],[66,450,-43421350142958786,-43421302388547748],[66,459,-2424856520,2424856530],[66,462,-1975303106925307,-1975301912779772],[66,513,-13247606072008906,-13247602816580098],[66,520,-13247606143034927,-13247602745554085],[66,579,-13247606072008906,-13247602816580098],[66,586,-13247606143034927,-13247602745554085],[66,640,17198207762730769,17198211165268399],[66,706,17198207762730769,17198211165268399],[66,768,-5346395945272860,-5346392864495852],[66,834,-5346395945272860,-5346392864495852],[66,1025,-8599107733712757,-8599101730286822],[66,1032,-18594003438885652,-18593994259472046],[66,1091,-8599107733712757,-8599101730286822],[66,1098,-18594003438885652,-18593994259472046],[66,1152,49039809086990954,49039816427954942],[66,1161,-1975303106925307,-1975301912779772],[66,1164,-22544604437459344,-22544603300308524],[66,1218,49039809086990954,49039816427954942],[66,1227,-1975303106925307,-1975301912779772],[66,1230,-22544604437459344,-22544603300308524],[66,1280,-34514803436440870,-34514797555390214],[66,1346,-34514803436440870,-34514797555390214],[66,1416,26495207701858484,26495210075319546],[66,1482,26495207701858484,26495210075319546],[66,1536,-3950605491232570,-3950604548177586],[66,1602,-3950605491232570,-3950604548177586],[66,131073,-15920803457056280,-15920799836417081],[66,131076,11272301474344214,11272302394539722],[66,131080,19173508522816278,19173515424887978],[66,131139,-15920803457056280,-15920799836417081],[66,131142,11272301474344214,11272302394539722],[66,131146,19173508522816278,19173515424887978],[66,131200,20569295987453940,20569306730608851],[66,131209,-1975303161793801,-1975301857911278],[66,131212,-9297000198160808,-9296998651018048],[66,131266,20569295987453940,20569306730608851],[66,131275,-1975303161793801,-1975301857911278],[66,131278,-9297000198160808,-9296998651018048],[66,131328,4648497899071108,4648501525518317],[66,131394,4648497899071108,4648501525518317],[66,131464,13247603792440361,13247605096148654],[66,131530,13247603792440361,13247605096148654],[66,132232,-1975303134066536,-1975301885638544],[66,132298,-1975303134066536,-1975301885638544],[66,524289,4648497899071108,4648501525518317],[66,524296,20569295987453940,20569306730608851],[66,524355,4648497899071108,4648501525518317],[66,524362,20569295987453940,20569306730608851],[66,524416,19173508522816278,19173515424887978],[66,524425,13247603792440361,13247605096148654],[66,524428,-1975303134066536,-1975301885638544],[66,524482,19173508522816278,19173515424887978],[66,524491,13247603792440361,13247605096148654],[66,524494,-1975303134066536,-1975301885638544],[66,524544,-15920803457056280,-15920799836417081],[66,524610,-15920803457056280,-15920799836417081],[66,524680,-1975303161793801,-1975301857911278],[66,524746,-1975303161793801,-1975301857911278],[66,525312,11272301474344214,11272302394539722],[66,525378,11272301474344214,11272302394539722],[66,525448,-9297000198160808,-9296998651018048],[66,525514,-9297000198160808,-9296998651018048],[66,655496,26495207501815288,26495210275362748],[66,655562,26495207501815288,26495210275362748],[68,0,-1395798520970888,-1395780249387636],[68,3,-270333833954743796,-270333790528810368],[68,9,23242490579994047,23242506542953071],[68,10,236209459374475712,236209511426750774],[68,68,-1395798520970888,-1395780249387636],[68,71,-270333833954743796,-270333790528810368],[68,77,23242490579994047,23242506542953071],[68,78,236209459374475712,236209511426750774],[68,129,-3950609262921848,-3950600776488312],[68,130,-8145018103,8145018085],[68,136,54693605669021029,54693650731369441],[68,139,-69609119643958417,-69609108589050261],[68,197,-3950609262921848,-3950600776488312],[68,198,-8145018103,8145018085],[68,204,54693605669021029,54693650731369441],[68,207,-69609119643958417,-69609108589050261],[68,257,-1975304506421476,-1975300513283600],[68,258,8599101730286822,8599107733712757],[68,264,-9297003706117328,-9296995143061538],[68,267,22544601544971738,22544606192796140],[68,325,-1975304506421476,-1975300513283600],[68,326,8599101730286822,8599107733712757],[68,332,-9297003706117328,-9296995143061538],[68,335,22544601544971738,22544606192796140],[68,384,-4648501315670959,-4648498108918473],[68,387,-24519907402845709,-24519905354627238],[68,393,-1975303106925307,-1975301912779772],[68,394,13247601047218919,13247607841370104],[68,452,-4648501315670959,-4648498108918473],[68,455,-24519907402845709,-24519905354627238],[68,461,-1975303106925307,-1975301912779772],[68,462,13247601047218919,13247607841370104],[68,1032,15920799016722807,15920804276750552],[68,1100,15920799016722807,15920804276750552],[68,1152,-13247605973043456,-13247602915545560],[68,1161,-22544604437459344,-22544603300308524],[68,1162,11272300744096280,11272303124787655],[68,1220,-13247605973043456,-13247602915545560],[68,1229,-22544604437459344,-22544603300308524],[68,1230,11272300744096280,11272303124787655],[68,1416,26495207753551168,26495210023626872],[68,1484,26495207753551168,26495210023626872],[68,32769,13247602765618499,13247606122970514],[68,32770,-3950609211113582,-3950600828296569],[68,32776,-3950608433100829,-3950601606309328],[68,32779,-7321700188594704,-7321693640879080],[68,32837,13247602765618499,13247606122970514],[68,32838,-3950609211113582,-3950600828296569],[68,32844,-3950608433100829,-3950601606309328],[68,32847,-7321700188594704,-7321693640879080],[68,32896,-1975304605835260,-1975300413869816],[68,32899,13247603826989498,13247605061599516],[68,32905,26495207799404518,26495209977773508],[68,32906,-49039815222920444,-49039810292025454],[68,32964,-1975304605835260,-1975300413869816],[68,32967,13247603826989498,13247605061599516],[68,32973,26495207799404518,26495209977773508],[68,32974,-49039815222920444,-49039810292025454],[68,33027,13247603855385956,13247605033203059],[68,33034,-1975303102434961,-1975301917270118],[68,33095,13247603855385956,13247605033203059],[68,33102,-1975303102434961,-1975301917270118],[68,33160,-1975303102468593,-1975301917236486],[68,33228,-1975303102468593,-1975301917236486],[68,33928,-22544604430576096,-22544603307191776],[68,33996,-22544604430576096,-22544603307191776],[68,131074,-4648502490229551,-4648496934359881],[68,131080,6623798642954895,6623805801339609],[68,131083,-3950606232509516,-3950603806900640],[68,131142,-4648502490229551,-4648496934359881],[68,131148,6623798642954895,6623805801339609],[68,131151,-3950606232509516,-3950603806900640],[68,131200,-1975305288493376,-1975299731211704],[68,131209,-22544604489700504,-22544603248067364],[68,131210,15920798695415380,15920804598057982],[68,131268,-1975305288493376,-1975299731211704],[68,131277,-22544604489700504,-22544603248067364],[68,131278,15920798695415380,15920804598057982],[68,131338,-4648500337554984,-4648499087034444],[68,131406,-4648500337554984,-4648499087034444],[68,131464,13247603822433492,13247605066155522],[68,131532,13247603822433492,13247605066155522],[68,132232,-1975303102468593,-1975301917236486],[68,132300,-1975303102468593,-1975301917236486],[68,163850,-3950606258772122,-3950603780638034],[68,163918,-3950606258772122,-3950603780638034],[68,163976,-45089208969627452,-45089206505908288],[68,164044,-45089208969627452,-45089206505908288],[68,524296,-4648502626375994,-4648496798213434],[68,524364,-4648502626375994,-4648496798213434],[68,524416,4648498045480101,4648501379109326],[68,524425,-1975303134066536,-1975301885638544],[68,524426,8599103424503113,8599106039496475],[68,524484,4648498045480101,4648501379109326],[68,524493,-1975303134066536,-1975301885638544],[68,524494,8599103424503113,8599106039496475],[68,524680,-4648500337588616,-4648499087000812],[68,524748,-4648500337588616,-4648499087000812],[68,525448,11272301204057192,11272302664826744],[68,525516,11272301204057192,11272302664826744],[68,557192,-1975303134589986,-1975301885115096],[68,557260,-1975303134589986,-1975301885115096],[68,655496,26495207577110300,26495210200067732],[68,655564,26495207577110300,26495210200067732],[68,688256,-1975303134589986,-1975301885115096],[68,688324,-1975303134589986,-1975301885115096],[71,0,-49039814791924922,-49039810723020980],[71,3,-270333833954743796,-270333790528810368],[71,5,-34514803436440870,-34514797555390214],[71,6,255808774717255568,255808825243183778],[71,65,255808774717255568,255808825243183778],[71,66,-34514803436440870,-34514797555390214],[71,68,-270333833954743796,-270333790528810368],[71,71,-49039814791924922,-49039810723020980],[71,136,26495207701858484,26495210075319546],[71,139,-47064512094016005,-47064508401224809],[71,141,66238017825195074,66238026617750008],[71,142,7321691863722815,7321701965750947],[71,201,7321691863722815,7321701965750947],[71,202,66238017825195074,66238026617750008],[71,204,-47064512094016005,-47064508401224809],[71,207,26495207701858484,26495210075319546],[71,264,26495207753551168,26495210023626872],[71,267,24519905354627238,24519907402845709],[71,269,19871405230482798,19871408102400732],[71,270,-17896106189622669,-17896102123555768],[71,329,-17896106189622669,-17896102123555768],[71,330,19871405230482798,19871408102400732],[71,332,24519905354627238,24519907402845709],[71,335,26495207753551168,26495210023626872],[71,387,-24519907402845709,-24519905354627238],[71,390,24519905354627238,24519907402845709],[71,449,24519905354627238,24519907402845709],[71,452,-24519907402845709,-24519905354627238],[71,32776,-13247605061599516,-13247603826989498],[71,32779,-47064511822081843,-47064508673158980],[71,32781,-15222908164034477,-15222905744259616],[71,32782,49039810731968040,49039814782977862],[71,32841,49039810731968040,49039814782977862],[71,32842,-15222908164034477,-15222905744259616],[71,32844,-47064511822081843,-47064508673158980],[71,32847,-13247605061599516,-13247603826989498],[71,32896,13247603826989498,13247605061599516],[71,32901,13247603826989498,13247605061599516],[71,32962,13247603826989498,13247605061599516],[71,32967,13247603826989498,13247605061599516],[71,33024,13247603855385956,13247605033203059],[71,33029,13247603855385956,13247605033203059],[71,33090,13247603855385956,13247605033203059],[71,33095,13247603855385956,13247605033203059],[71,131083,-1975303102468593,-1975301917236486],[71,131085,-4648500337554984,-4648499087034444],[71,131086,6623801159997192,6623803284297315],[71,131145,6623801159997192,6623803284297315],[71,131146,-4648500337554984,-4648499087034444],[71,131148,-1975303102468593,-1975301917236486],[72,0,-88475277713191220,-88475132391845872],[72,3,266383184103143623,266383230341000381],[72,5,-12549714284822493,-12549705218587237],[72,6,-209714307449075898,-209714245574972548],[72,72,-88475277713191220,-88475132391845872],[72,75,266383184103143623,266383230341000381],[72,77,-12549714284822493,-12549705218587237],[72,78,-209714307449075898,-209714245574972548],[72,129,-8145018103,8145018085],[72,130,85683543021031256,85683709543288788],[72,132,-62015351366925919,-62015298862938325],[72,135,20569298579708561,20569304138354223],[72,201,-8145018103,8145018085],[72,202,85683543021031256,85683709543288788],[72,204,-62015351366925919,-62015298862938325],[72,207,20569298579708561,20569304138354223],[72,257,-4648502338601082,-4648497085988341],[72,258,-62015351366925919,-62015298862938325],[72,260,9296995143061538,9297003706117328],[72,263,-26495210023626872,-26495207753551168],[72,329,-4648502338601082,-4648497085988341],[72,330,-62015351366925919,-62015298862938325],[72,332,9296995143061538,9297003706117328],[72,335,-26495210023626872,-26495207753551168],[72,384,-209714307449075898,-209714245574972548],[72,387,11272300317059811,11272303551824122],[72,390,-9297003706117328,-9296995143061538],[72,456,-209714307449075898,-209714245574972548],[72,459,11272300317059811,11272303551824122],[72,462,-9297003706117328,-9296995143061538],[72,514,13247602745554085,13247606143034927],[72,586,13247602745554085,13247606143034927],[72,640,13247602731588215,13247606157000801],[72,712,13247602731588215,13247606157000801],[72,1026,-8145018103,8145018085],[72,1028,-4648502338601082,-4648497085988341],[72,1098,-8145018103,8145018085],[72,1100,-4648502338601082,-4648497085988341],[72,1152,266383184103143623,266383230341000381],[72,1158,11272300317059811,11272303551824122],[72,1224,266383184103143623,266383230341000381],[72,1230,11272300317059811,11272303551824122],[72,1280,-12549714284822493,-12549705218587237],[72,1352,-12549714284822493,-12549705218587237],[72,1410,20569298579708561,20569304138354223],[72,1412,-26495210023626872,-26495207753551168],[72,1482,20569298579708561,20569304138354223],[72,1484,-26495210023626872,-26495207753551168],[72,1920,1975301912872117,1975303106832961],[72,1992,1975301912872117,1975303106832961],[72,2176,-26495211840725034,-26495205936452994],[72,2248,-26495211840725034,-26495205936452994],[72,3072,-3950605491232570,-3950604548177586],[72,3144,-3950605491232570,-3950604548177586],[72,3456,1975301915400511,1975303104304567],[72,3528,1975301915400511,1975303104304567],[72,32770,8599101370269630,8599108093729955],[72,32775,1975301917236486,1975303102468593],[72,32842,8599101370269630,8599108093729955],[72,32847,1975301917236486,1975303102468593],[72,32896,11272298579605019,11272305289278916],[72,32968,11272298579605019,11272305289278916],[72,131073,-4648502477690436,-4648496946898994],[72,131074,-85257851747913146,-85257795604898244],[72,131076,-4648505765491449,-4648493659097978],[72,131079,47064508673158980,47064511822081843],[72,131145,-4648502477690436,-4648496946898994],[72,131146,-85257851747913146,-85257795604898244],[72,131148,-4648505765491449,-4648493659097978],[72,131151,47064508673158980,47064511822081843],[72,131200,218159636069763092,218159705380447032],[72,131203,11272300231229941,11272303637653996],[72,131206,4648493659097978,4648505765491449],[72,131272,218159636069763092,218159705380447032],[72,131275,11272300231229941,11272303637653996],[72,131278,4648493659097978,4648505765491449],[72,131328,6623797717533688,6623806726760819],[72,131331,-13247605033203059,-13247603855385956],[72,131334,6623801159963560,6623803284330947],[72,131400,6623797717533688,6623806726760819],[72,131403,-13247605033203059,-13247603855385956],[72,131406,6623801159963560,6623803284330947],[72,131458,-6623806726760819,-6623797717533688],[72,131460,-11272302995044411,-11272300873839524],[72,131530,-6623806726760819,-6623797717533688],[72,131532,-11272302995044411,-11272300873839524],[72,132096,-1975305275431532,-1975299744273546],[72,132168,-1975305275431532,-1975299744273546],[72,132226,-9297001129565978,-9296997719612879],[72,132228,24519905365967204,24519907391505747],[72,132298,-9297001129565978,-9296997719612879],[72,132300,24519905365967204,24519907391505747],[72,132480,-26495210066406118,-26495207710771912],[72,132552,-26495210066406118,-26495207710771912],[72,524290,20569290559759355,20569312158303430],[72,524292,-4648502626375994,-4648496798213434],[72,524362,20569290559759355,20569312158303430],[72,524364,-4648502626375994,-4648496798213434],[72,524416,-168694080794423276,-168694029929332347],[72,524422,-6623803999983306,-6623800444311202],[72,524488,-168694080794423276,-168694029929332347],[72,524494,-6623803999983306,-6623800444311202],[72,524544,15920798736625752,15920804556847610],[72,524616,15920798736625752,15920804556847610],[72,524674,8599102955928264,8599106508071324],[72,524676,4648499087000812,4648500337588616],[72,524746,8599102955928264,8599106508071324],[72,524748,4648499087000812,4648500337588616],[72,525312,-13945502255682351,-13945496018085931],[72,525384,-13945502255682351,-13945496018085931],[72,525442,-1975304058435710,-1975300961269370],[72,525444,-11272302664826744,-11272301204057192],[72,525514,-1975304058435710,-1975300961269370],[72,525516,-11272302664826744,-11272301204057192],[72,525696,-24519907697996171,-24519905059476780],[72,525768,-24519907697996171,-24519905059476780],[72,655360,20569295950214876,20569306767847923],[72,655432,20569295950214876,20569306767847923],[72,655490,-35792211590820525,-35792205035536364],[72,655492,-24519908161078011,-24519904596394939],[72,655562,-35792211590820525,-35792205035536364],[72,655564,-24519908161078011,-24519904596394939],[72,655744,3950603716820562,3950606322589598],[72,655816,3950603716820562,3950606322589598],[72,656512,31841601898078136,31841604688868588],[72,656584,31841601898078136,31841604688868588],[72,688256,1975301885115096,1975303134589986],[72,688328,1975301885115096,1975303134589986],[72,1048704,-19871412444254049,-19871400888629471],[72,1048776,-19871412444254049,-19871400888629471],[72,1049600,-3950605484998596,-3950604554411562],[72,1049672,-3950605484998596,-3950604554411562],[72,1049984,1975301917270118,1975303102434961],[72,1050056,1975301917270118,1975303102434961],[72,1572864,11272301474344213,11272302394539721],[72,1572936,11272301474344213,11272302394539721],[72,1704064,-13247605066127948,-13247603822461068],[72,1704136,-13247605066127948,-13247603822461068],[72,67108866,-4648501614770600,-4648497809818828],[72,67108938,-4648501614770600,-4648497809818828],[72,67108992,-1975304416511920,-1975300603193161],[72,67109064,-1975304416511920,-1975300603193161],[72,67764352,-13247605134312055,-13247603754276960],[72,67764424,-13247605134312055,-13247603754276960],[72,268435584,6623798927600937,6623805516693572],[72,268435656,6623798927600937,6623805516693572],[72,268959744,11272301423813928,11272302445070008],[72,268959816,11272301423813928,11272302445070008],[72,269090944,1975301823150576,1975303196554503],[72,269091016,1975301823150576,1975303196554503],[75,0,-3358093042,3358093038],[75,3,266383184103143623,266383230341000381],[75,9,-43421350142958786,-43421302388547748],[75,10,-222961907731674894,-222961854180962580],[75,65,-222961907731674894,-222961854180962580],[75,66,-43421350142958786,-43421302388547748],[75,72,266383184103143623,266383230341000381],[75,75,-3358093042,3358093038],[75,132,67633806676178144,67633816537125456],[75,135,43113900199647331,43113910256183319],[75,141,7321691863722815,7321701965750947],[75,142,17198202133527204,17198216794471984],[75,197,17198202133527204,17198216794471984],[75,198,7321691863722815,7321701965750947],[75,204,43113900199647331,43113910256183319],[75,207,67633806676178144,67633816537125456],[75,260,-22544606192796140,-22544601544971738],[75,263,-24519907402845709,-24519905354627238],[75,269,8599101730286822,8599107733712757],[75,270,-6623803231071470,-6623801213223040],[75,325,-6623803231071470,-6623801213223040],[75,326,8599101730286822,8599107733712757],[75,332,-24519907402845709,-24519905354627238],[75,335,-22544606192796140,-22544601544971738],[75,384,-13247605037567427,-13247603851021587],[75,387,24519905354627238,24519907402845709],[75,393,-13247609011319922,-13247599877269080],[75,394,-24519910199672792,-24519902557800167],[75,449,-24519910199672792,-24519902557800167],[75,450,-13247609011319922,-13247599877269080],[75,456,24519905354627238,24519907402845709],[75,459,-13247605037567427,-13247603851021587],[75,1161,-1194053190,1194053189],[75,1162,-1194053189,1194053190],[75,1217,-1194053189,1194053190],[75,1218,-1194053190,1194053189],[75,32775,15222905744246613,15222908164047479],[75,32782,-15222908164047479,-15222905744246613],[75,32837,-15222908164047479,-15222905744246613],[75,32844,15222905744246613,15222908164047479],[75,131076,1975301889643525,1975303130061553],[75,131079,-3950608753660642,-3950601285749510],[75,131085,6623801159963560,6623803284330947],[75,131086,-697899197873155,-697890187306122],[75,131141,-697899197873155,-697890187306122],[75,131142,6623801159963560,6623803284330947],[75,131148,-3950608753660642,-3950601285749510],[75,131151,1975301889643525,1975303130061553],[75,131200,-13247605061599516,-13247603826989498],[75,131203,24519905292829457,24519907464643494],[75,131209,-42416014569192714,-42416006501458678],[75,131210,4648494894531634,4648504530057793],[75,131265,4648494894531634,4648504530057793],[75,131266,-42416014569192714,-42416006501458678],[75,131272,24519905292829457,24519907464643494],[75,131275,-13247605061599516,-13247603826989498],[75,131328,-13247605033203059,-13247603855385956],[75,131337,-6623803284330947,-6623801159963560],[75,131338,-6623803271301876,-6623801172992632],[75,131393,-6623803271301876,-6623801172992632],[75,131394,-6623803284330947,-6623801159963560],[75,131403,-13247605033203059,-13247603855385956],[75,524425,17896102849092541,17896105464085903],[75,524426,-17896105464085903,-17896102849092541],[75,524481,-17896105464085903,-17896102849092541],[75,524482,17896102849092541,17896105464085903],[77,0,33237389706261878,33237395651043384],[77,5,-12549714284822493,-12549705218587237],[77,9,23242490579994047,23242506542953071],[77,12,22544599251748898,22544608486018976],[77,65,22544599251748898,22544608486018976],[77,68,23242490579994047,23242506542953071],[77,72,-12549714284822493,-12549705218587237],[77,77,33237389706261878,33237395651043384],[77,130,20569298579708561,20569304138354223],[77,135,-75535024782678860,-75535018509445078],[77,139,52990412240818188,52990423313537884],[77,142,43113900199647331,43113910256183319],[77,195,43113900199647331,43113910256183319],[77,198,52990412240818188,52990423313537884],[77,202,-75535024782678860,-75535018509445078],[77,207,20569298579708561,20569304138354223],[77,263,-19871408102400732,-19871405230482798],[77,267,-8599107733712757,-8599101730286822],[77,270,28470509832687554,28470512964195555],[77,323,28470509832687554,28470512964195555],[77,326,-8599107733712757,-8599101730286822],[77,330,-19871408102400732,-19871405230482798],[77,393,-1975303106925307,-1975301912779772],[77,396,1975301912779772,1975303106925307],[77,449,1975301912779772,1975303106925307],[77,452,-1975303106925307,-1975301912779772],[77,1161,-22544604437459344,-22544603300308524],[77,1164,22544603300308524,22544604437459344],[77,1217,22544603300308524,22544604437459344],[77,1220,-22544604437459344,-22544603300308524],[77,32770,-7321700188581701,-7321693640892082],[77,32775,39742811633466510,39742815032300530],[77,32782,-47064511822048211,-47064508673192612],[77,32835,-47064511822048211,-47064508673192612],[77,32842,39742811633466510,39742815032300530],[77,32847,-7321700188581701,-7321693640892082],[77,32896,13247603826989498,13247605061599516],[77,32901,13247603826989498,13247605061599516],[77,32968,13247603826989498,13247605061599516],[77,32973,13247603826989498,13247605061599516],[77,131074,47064508673192612,47064511822048211],[77,131083,51015113107810724,51015117426840252],[77,131086,-3950608753647640,-3950601285762513],[77,131139,-3950608753647640,-3950601285762513],[77,131142,51015113107810724,51015117426840252],[77,131151,47064508673192612,47064511822048211],[77,131209,3950603932147814,3950606107262344],[77,131212,-3950606107262344,-3950603932147814],[77,131265,-3950606107262344,-3950603932147814],[77,131268,3950603932147814,3950606107262344],[77,524425,-1975303134066536,-1975301885638544],[77,524428,1975301885638544,1975303134066536],[77,524481,1975301885638544,1975303134066536],[77,524484,-1975303134066536,-1975301885638544],[78,0,75535017338508762,75535025953615174],[78,6,-209714307449075898,-209714245574972548],[78,10,236209459374475712,236209511426750774],[78,12,49039809086990954,49039816427954942],[78,66,49039809086990954,49039816427954942],[78,68,236209459374475712,236209511426750774],[78,72,-209714307449075898,-209714245574972548],[78,78,75535017338508762,75535025953615174],[78,129,-69609119643958417,-69609108589050261],[78,135,52990412240818188,52990423313537884],[78,139,-75535025980292526,-75535017311831410],[78,141,-47064512094016005,-47064508401224809],[78,195,-47064512094016005,-47064508401224809],[78,197,-75535025980292526,-75535017311831410],[78,201,52990412240818188,52990423313537884],[78,207,-69609119643958417,-69609108589050261],[78,257,-3950606208579430,-3950603830830732],[78,263,17896102123555768,17896106189622669],[78,267,6623801213223040,6623803231071470],[78,269,-28470512964195555,-28470509832687554],[78,323,-28470512964195555,-28470509832687554],[78,325,6623801213223040,6623803231071470],[78,329,17896102123555768,17896106189622669],[78,335,-3950606208579430,-3950603830830732],[78,384,1975301912872117,1975303106832961],[78,390,-22544606008242938,-22544601729524940],[78,394,24519904682575622,24519908074897335],[78,396,-1194053190,1194053189],[78,450,-1194053190,1194053189],[78,452,24519904682575622,24519908074897335],[78,456,-22544606008242938,-22544601729524940],[78,462,1975301912872117,1975303106832961],[78,1158,24519905354627238,24519907402845709],[78,1162,-1975303106925307,-1975301912779772],[78,1164,-22544604437459344,-22544603300308524],[78,1218,-22544604437459344,-22544603300308524],[78,1220,-1975303106925307,-1975301912779772],[78,1224,24519905354627238,24519907402845709],[78,32769,1975301917270118,1975303102434961],[78,32775,-52990419943081622,-52990415611274431],[78,32779,39742811633487139,39742815032279900],[78,32781,15222905744259616,15222908164034477],[78,32835,15222905744259616,15222908164034477],[78,32837,39742811633487139,39742815032279900],[78,32841,-52990419943081622,-52990415611274431],[78,32847,1975301917270118,1975303102434961],[78,32896,-45089208967216020,-45089206508319720],[78,32902,-2178588643,2178588646],[78,32906,-26495209977993164,-26495207799184865],[78,32908,-18594000555019592,-18593997143338122],[78,32962,-18594000555019592,-18593997143338122],[78,32964,-26495209977993164,-26495207799184865],[78,32968,-2178588643,2178588646],[78,32974,-45089208967216020,-45089206508319720],[78,33024,-1975303102434961,-1975301917270118],[78,33036,-1975303102434961,-1975301917270118],[78,33090,-1975303102434961,-1975301917270118],[78,33102,-1975303102434961,-1975301917270118],[78,131073,-3950606232496514,-3950603806913643],[78,131079,51015113107831353,51015117426819622],[78,131083,-52990419943081622,-52990415611274431],[78,131085,-1975303102434961,-1975301917270118],[78,131139,-1975303102434961,-1975301917270118],[78,131141,-52990419943081622,-52990415611274431],[78,131145,51015113107831353,51015117426819622],[78,131151,-3950606232496514,-3950603806913643],[78,131200,31841601906990784,31841604679955942],[78,131206,-1975304719493192,-1975300300211890],[78,131210,11272299879110672,11272303989773264],[78,131212,22544602323661876,22544605414105996],[78,131266,22544602323661876,22544605414105996],[78,131268,11272299879110672,11272303989773264],[78,131272,-1975304719493192,-1975300300211890],[78,131278,31841601906990784,31841604679955942],[78,131328,1975301917270118,1975303102434961],[78,131340,1975301917270118,1975303102434961],[78,131394,1975301917270118,1975303102434961],[78,131406,1975301917270118,1975303102434961],[78,163846,28470509674673669,28470513122209439],[78,163850,-28470513122209439,-28470509674673669],[78,163908,-28470513122209439,-28470509674673669],[78,163912,28470509674673669,28470513122209439],[78,524422,-11272303056635485,-11272300812248450],[78,524426,13247603792440361,13247605096148654],[78,524428,-1975303134066536,-1975301885638544],[78,524482,-1975303134066536,-1975301885638544],[78,524484,13247603792440361,13247605096148654],[78,524488,-11272303056635485,-11272300812248450],[129,0,-1395798520970888,-1395780249387636],[129,6,23242490579994047,23242506542953071],[129,10,236209459374475712,236209511426750774],[129,12,-270333833954743796,-270333790528810368],[129,66,54693605669021029,54693650731369441],[129,68,-3950609262921848,-3950600776488312],[129,72,-8145018103,8145018085],[129,78,-69609119643958417,-69609108589050261],[129,129,-1395798520970888,-1395780249387636],[129,135,23242490579994047,23242506542953071],[129,139,236209459374475712,236209511426750774],[129,141,-270333833954743796,-270333790528810368],[129,195,54693605669021029,54693650731369441],[129,197,-3950609262921848,-3950600776488312],[129,201,-8145018103,8145018085],[129,207,-69609119643958417,-69609108589050261],[129,258,15920799016722807,15920804276750552],[129,320,-13247605973043456,-13247602915545560],[129,326,-22544604437459344,-22544603300308524],[129,330,11272300744096280,11272303124787655],[129,387,15920799016722807,15920804276750552],[129,449,-13247605973043456,-13247602915545560],[129,455,-22544604437459344,-22544603300308524],[129,459,11272300744096280,11272303124787655],[129,1026,-9297003706117328,-9296995143061538],[129,1028,-1975304506421476,-1975300513283600],[129,1032,8599101730286822,8599107733712757],[129,1038,22544601544971738,22544606192796140],[129,1088,-4648501315670959,-4648498108918473],[129,1094,-1975303106925307,-1975301912779772],[129,1098,13247601047218919,13247607841370104],[129,1100,-24519907402845709,-24519905354627238],[129,1155,-9297003706117328,-9296995143061538],[129,1157,-1975304506421476,-1975300513283600],[129,1161,8599101730286822,8599107733712757],[129,1167,22544601544971738,22544606192796140],[129,1217,-4648501315670959,-4648498108918473],[129,1223,-1975303106925307,-1975301912779772],[129,1227,13247601047218919,13247607841370104],[129,1229,-24519907402845709,-24519905354627238],[129,1346,26495207753551168,26495210023626872],[129,1475,26495207753551168,26495210023626872],[129,32772,17198207785323578,17198211142675593],[129,32776,-1975305295246081,-1975299724458993],[129,32782,11272300724575166,11272303144308768],[129,32844,13247603821617226,13247605066971786],[129,32901,17198207785323578,17198211142675593],[129,32905,-1975305295246081,-1975299724458993],[129,32911,11272300724575166,11272303144308768],[129,32973,13247603821617226,13247605066971786],[129,33804,13247603855419588,13247605033169427],[129,33933,13247603855419588,13247605033169427],[129,131074,-4648502622318527,-4648496802270899],[129,131076,-1975305295486367,-1975299724218711],[129,131080,1277404472099680,1277411162426122],[129,131086,18593996132872130,18594001565485586],[129,131146,-6623803529731050,-6623800914563458],[129,131148,-22544604489700504,-22544603248067364],[129,131203,-4648502622318527,-4648496802270899],[129,131205,-1975305295486367,-1975299724218711],[129,131209,1277404472099680,1277411162426122],[129,131215,18593996132872130,18594001565485586],[129,131275,-6623803529731050,-6623800914563458],[129,131277,-22544604489700504,-22544603248067364],[129,132106,-4648500337588616,-4648499087000812],[129,132108,-1975303102434961,-1975301917270118],[129,132235,-4648500337588616,-4648499087000812],[129,132237,-1975303102434961,-1975301917270118],[129,163852,26495207648534336,26495210128643692],[129,163981,26495207648534336,26495210128643692],[129,524290,-6623806726760819,-6623797717533688],[129,524292,-1975304605835260,-1975300413869816],[129,524296,11272298596064681,11272305272819252],[129,524302,-18594001255457720,-18593996442899990],[129,524352,-4648501379109328,-4648498045480103],[129,524358,-1975303130061553,-1975301889643525],[129,524362,31143705027114464,31143712174652992],[129,524364,-3950606107262344,-3950603932147814],[129,524419,-6623806726760819,-6623797717533688],[129,524421,-1975304605835260,-1975300413869816],[129,524425,11272298596064681,11272305272819252],[129,524431,-18594001255457720,-18593996442899990],[129,524481,-4648501379109328,-4648498045480103],[129,524487,-1975303130061553,-1975301889643525],[129,524491,31143705027114464,31143712174652992],[129,524493,-3950606107262344,-3950603932147814],[129,524610,13247603855385956,13247605033203059],[129,524739,13247603855385956,13247605033203059],[129,525322,11272300873839524,11272302995044411],[129,525324,-24519907391505747,-24519905365967204],[129,525378,-6623803284330947,-6623801159963560],[129,525451,11272300873839524,11272302995044411],[129,525453,-24519907391505747,-24519905365967204],[129,525507,-6623803284330947,-6623801159963560],[129,557068,13247603822461068,13247605066127948],[129,557197,13247603822461068,13247605066127948],[129,655370,-3950606322589598,-3950603716820562],[129,655372,-45089208971600236,-45089206503935504],[129,655499,-3950606322589598,-3950603716820562],[129,655501,-45089208971600236,-45089206503935504],[129,688132,13247603822461068,13247605066127948],[129,688261,13247603822461068,13247605066127948],[130,0,-88475277713191220,-88475132391845872],[130,5,-12549714284822493,-12549705218587237],[130,9,-209714307449075898,-209714245574972548],[130,12,266383184103143623,266383230341000381],[130,65,-62015351366925919,-62015298862938325],[130,68,-8145018103,8145018085],[130,72,85683543021031256,85683709543288788],[130,77,20569298579708561,20569304138354223],[130,130,-88475277713191220,-88475132391845872],[130,135,-12549714284822493,-12549705218587237],[130,139,-209714307449075898,-209714245574972548],[130,142,266383184103143623,266383230341000381],[130,195,-62015351366925919,-62015298862938325],[130,198,-8145018103,8145018085],[130,202,85683543021031256,85683709543288788],[130,207,20569298579708561,20569304138354223],[130,257,-4648502338601082,-4648497085988341],[130,264,-8145018103,8145018085],[130,320,266383184103143623,266383230341000381],[130,329,11272300317059811,11272303551824122],[130,387,-4648502338601082,-4648497085988341],[130,394,-8145018103,8145018085],[130,450,266383184103143623,266383230341000381],[130,459,11272300317059811,11272303551824122],[130,576,-26495211840725034,-26495205936452994],[130,706,-26495211840725034,-26495205936452994],[130,768,-3950605491232570,-3950604548177586],[130,898,-3950605491232570,-3950604548177586],[130,1025,9296995143061538,9297003706117328],[130,1028,-4648502338601082,-4648497085988341],[130,1032,-62015351366925919,-62015298862938325],[130,1037,-26495210023626872,-26495207753551168],[130,1088,-209714307449075898,-209714245574972548],[130,1097,-9297003706117328,-9296995143061538],[130,1100,11272300317059811,11272303551824122],[130,1155,9296995143061538,9297003706117328],[130,1158,-4648502338601082,-4648497085988341],[130,1162,-62015351366925919,-62015298862938325],[130,1167,-26495210023626872,-26495207753551168],[130,1218,-209714307449075898,-209714245574972548],[130,1227,-9297003706117328,-9296995143061538],[130,1230,11272300317059811,11272303551824122],[130,1280,-12549714284822493,-12549705218587237],[130,1345,-26495210023626872,-26495207753551168],[130,1352,20569298579708561,20569304138354223],[130,1410,-12549714284822493,-12549705218587237],[130,1475,-26495210023626872,-26495207753551168],[130,1482,20569298579708561,20569304138354223],[130,1856,1975301915400511,1975303104304567],[130,1986,1975301915400511,1975303104304567],[130,2056,13247602745554085,13247606143034927],[130,2112,13247602731588215,13247606157000801],[130,2186,13247602745554085,13247606143034927],[130,2242,13247602731588215,13247606157000801],[130,3392,1975301912872117,1975303106832961],[130,3522,1975301912872117,1975303106832961],[130,32772,-3950605484998596,-3950604554411562],[130,32776,-19871412444254049,-19871400888629471],[130,32781,1975301917270118,1975303102434961],[130,32902,-3950605484998596,-3950604554411562],[130,32906,-19871412444254049,-19871400888629471],[130,32911,1975301917270118,1975303102434961],[130,131073,15920798736625752,15920804556847610],[130,131076,-13945502255682351,-13945496018085931],[130,131080,-168694080794423276,-168694029929332347],[130,131085,-24519907697996171,-24519905059476780],[130,131136,20569290559759355,20569312158303430],[130,131145,8599102955928264,8599106508071324],[130,131148,-1975304058435710,-1975300961269370],[130,131203,15920798736625752,15920804556847610],[130,131206,-13945502255682351,-13945496018085931],[130,131210,-168694080794423276,-168694029929332347],[130,131215,-24519907697996171,-24519905059476780],[130,131266,20569290559759355,20569312158303430],[130,131275,8599102955928264,8599106508071324],[130,131278,-1975304058435710,-1975300961269370],[130,132096,-4648502626375994,-4648496798213434],[130,132105,4648499087000812,4648500337588616],[130,132108,-11272302664826744,-11272301204057192],[130,132168,-6623803999983306,-6623800444311202],[130,132226,-4648502626375994,-4648496798213434],[130,132235,4648499087000812,4648500337588616],[130,132238,-11272302664826744,-11272301204057192],[130,132298,-6623803999983306,-6623800444311202],[130,163840,11272301474344213,11272302394539721],[130,163970,11272301474344213,11272302394539721],[130,524289,6623797717533688,6623806726760819],[130,524292,-1975305275431532,-1975299744273546],[130,524296,218159636069763092,218159705380447032],[130,524301,-26495210066406118,-26495207710771912],[130,524352,-85257851747913146,-85257795604898244],[130,524361,-6623806726760819,-6623797717533688],[130,524364,-9297001129565978,-9296997719612879],[130,524419,6623797717533688,6623806726760819],[130,524422,-1975305275431532,-1975299744273546],[130,524426,218159636069763092,218159705380447032],[130,524431,-26495210066406118,-26495207710771912],[130,524482,-85257851747913146,-85257795604898244],[130,524491,-6623806726760819,-6623797717533688],[130,524494,-9297001129565978,-9296997719612879],[130,524544,-4648502477690436,-4648496946898994],[130,524609,-13247605033203059,-13247603855385956],[130,524616,11272300231229941,11272303637653996],[130,524674,-4648502477690436,-4648496946898994],[130,524739,-13247605033203059,-13247603855385956],[130,524746,11272300231229941,11272303637653996],[130,525312,-4648505765491449,-4648493659097978],[130,525321,-11272302995044411,-11272300873839524],[130,525324,24519905365967204,24519907391505747],[130,525377,6623801159963560,6623803284330947],[130,525384,4648493659097978,4648505765491449],[130,525442,-4648505765491449,-4648493659097978],[130,525451,-11272302995044411,-11272300873839524],[130,525454,24519905365967204,24519907391505747],[130,525507,6623801159963560,6623803284330947],[130,525514,4648493659097978,4648505765491449],[130,525632,47064508673158980,47064511822081843],[130,525762,47064508673158980,47064511822081843],[130,655360,20569295950214876,20569306767847923],[130,655369,3950603716820562,3950606322589598],[130,655372,31841601898078136,31841604688868588],[130,655432,-35792211590820525,-35792205035536364],[130,655490,20569295950214876,20569306767847923],[130,655499,3950603716820562,3950606322589598],[130,655502,31841601898078136,31841604688868588],[130,655562,-35792211590820525,-35792205035536364],[130,656392,-24519908161078011,-24519904596394939],[130,656522,-24519908161078011,-24519904596394939],[130,688136,-13247605066127948,-13247603822461068],[130,688266,-13247605066127948,-13247603822461068],[130,1048584,11272298579605019,11272305289278916],[130,1048640,8599101370269630,8599108093729955],[130,1048714,11272298579605019,11272305289278916],[130,1048770,8599101370269630,8599108093729955],[130,1049920,1975301917236486,1975303102468593],[130,1050050,1975301917236486,1975303102468593],[130,1703944,1975301885115096,1975303134589986],[130,1704074,1975301885115096,1975303134589986],[130,67108872,6623798927600937,6623805516693572],[130,67109002,6623798927600937,6623805516693572],[130,67239936,11272301423813928,11272302445070008],[130,67240066,11272301423813928,11272302445070008],[130,67764232,1975301823150576,1975303196554503],[130,67764362,1975301823150576,1975303196554503],[130,268435464,-1975304416511920,-1975300603193161],[130,268435520,-4648501614770600,-4648497809818828],[130,268435594,-1975304416511920,-1975300603193161],[130,268435650,-4648501614770600,-4648497809818828],[130,269090824,-13247605134312055,-13247603754276960],[130,269090954,-13247605134312055,-13247603754276960],[132,0,-42841841848850176,-42841784433309880],[132,3,22544599251748898,22544608486018976],[132,9,255808774717255568,255808825243183778],[132,10,-222961907731674894,-222961854180962580],[132,65,3950600776488312,3950609262921848],[132,66,-18594003438885652,-18593994259472046],[132,72,-62015351366925919,-62015298862938325],[132,75,67633806676178144,67633816537125456],[132,132,-42841841848850176,-42841784433309880],[132,135,22544599251748898,22544608486018976],[132,141,255808774717255568,255808825243183778],[132,142,-222961907731674894,-222961854180962580],[132,197,3950600776488312,3950609262921848],[132,198,-18594003438885652,-18593994259472046],[132,204,-62015351366925919,-62015298862938325],[132,207,67633806676178144,67633816537125456],[132,264,8599101730286822,8599107733712757],[132,323,22544603300308524,22544604437459344],[132,330,1975301912779772,1975303106925307],[132,396,8599101730286822,8599107733712757],[132,455,22544603300308524,22544604437459344],[132,462,1975301912779772,1975303106925307],[132,1025,1975300513283600,1975304506421476],[132,1026,15920799016722807,15920804276750552],[132,1032,-240160109310537124,-240160071530099528],[132,1035,3950603830830732,3950606208579430],[132,1088,6623799524173159,6623804920121353],[132,1091,1975301912779772,1975303106925307],[132,1097,24519905354627238,24519907402845709],[132,1098,-24519908074897335,-24519904682575622],[132,1157,1975300513283600,1975304506421476],[132,1158,15920799016722807,15920804276750552],[132,1164,-240160109310537124,-240160071530099528],[132,1167,3950603830830732,3950606208579430],[132,1220,6623799524173159,6623804920121353],[132,1223,1975301912779772,1975303106925307],[132,1229,24519905354627238,24519907402845709],[132,1230,-24519908074897335,-24519904682575622],[132,2056,13247602816580098,13247606072008906],[132,2188,13247602816580098,13247606072008906],[132,32769,-26495211786596702,-26495205990581324],[132,32770,-1975305281023604,-1975299738681472],[132,32776,296947377306566843,296947428089998092],[132,32779,-39742815032279900,-39742811633487139],[132,32832,1975300413869816,1975304605835260],[132,32835,-13247605061599516,-13247603826989498],[132,32841,-26495209977773508,-26495207799404518],[132,32842,45089206508319720,45089208967216020],[132,32901,-26495211786596702,-26495205990581324],[132,32902,-1975305281023604,-1975299738681472],[132,32908,296947377306566843,296947428089998092],[132,32911,-39742815032279900,-39742811633487139],[132,32964,1975300413869816,1975304605835260],[132,32967,-13247605061599516,-13247603826989498],[132,32973,-26495209977773508,-26495207799404518],[132,32974,45089206508319720,45089208967216020],[132,33792,1975300513283600,1975304506421476],[132,33801,-26495209915574692,-26495207861603338],[132,33802,1975301917270118,1975303102434961],[132,33864,24519905365967204,24519907391505747],[132,33924,1975300513283600,1975304506421476],[132,33933,-26495209915574692,-26495207861603338],[132,33934,1975301917270118,1975303102434961],[132,33996,24519905365967204,24519907391505747],[132,131073,-1975305295452736,-1975299724252344],[132,131074,9296996307740651,9297002541438203],[132,131080,-258754116160104515,-258754062378889847],[132,131083,5925906132510585,5925908926604650],[132,131136,-7321699692989682,-7321694136484094],[132,131145,22544603248067364,22544604489700504],[132,131146,5925906055094245,5925909004020996],[132,131205,-1975305295452736,-1975299724252344],[132,131206,9296996307740651,9297002541438203],[132,131212,-258754116160104515,-258754062378889847],[132,131215,5925906132510585,5925908926604650],[132,131268,-7321699692989682,-7321694136484094],[132,131277,22544603248067364,22544604489700504],[132,131278,5925906055094245,5925909004020996],[132,132096,15920799005382849,15920804288090516],[132,132105,1975301917270118,1975303102434961],[132,132106,9296998645184146,9297000203994710],[132,132168,-11272302995044411,-11272300873839524],[132,132228,15920799005382849,15920804288090516],[132,132237,1975301917270118,1975303102434961],[132,132238,9296998645184146,9297000203994710],[132,132300,-11272302995044411,-11272300873839524],[132,163840,22544597683462214,22544610054305668],[132,163849,-39742815043973846,-39742811621793198],[132,163850,5925906124214463,5925908934900775],[132,163912,45089206505908288,45089208969627452],[132,163972,22544597683462214,22544610054305668],[132,163981,-39742815043973846,-39742811621793198],[132,163982,5925906124214463,5925908934900775],[132,164044,45089206505908288,45089208969627452],[132,164872,3950603827053960,3950606212356198],[132,165004,3950603827053960,3950606212356198],[132,524289,1975300413869816,1975304605835260],[132,524290,-7321699679927840,-7321694149545938],[132,524296,-67361745915243333,-67361693124389608],[132,524299,45089206509306108,45089208966229632],[132,524352,9296996568177046,9297002281001814],[132,524355,1975301889643525,1975303130061553],[132,524361,3950603932147814,3950606107262344],[132,524362,-39742815119133304,-39742811546633741],[132,524421,1975300413869816,1975304605835260],[132,524422,-7321699679927840,-7321694149545938],[132,524428,-67361745915243333,-67361693124389608],[132,524431,45089206509306108,45089208966229632],[132,524484,9296996568177046,9297002281001814],[132,524487,1975301889643525,1975303130061553],[132,524493,3950603932147814,3950606107262344],[132,524494,-39742815119133304,-39742811546633741],[132,525312,6623799524173159,6623804920121353],[132,525321,24519905365967204,24519907391505747],[132,525322,-11272302995044411,-11272300873839524],[132,525384,-13247606222252656,-13247602666336360],[132,525444,6623799524173159,6623804920121353],[132,525453,24519905365967204,24519907391505747],[132,525454,-11272302995044411,-11272300873839524],[132,525516,-13247606222252656,-13247602666336360],[132,557056,3950600725236988,3950609314173172],[132,557065,-26495209992202640,-26495207784975390],[132,557066,22544603239782766,22544604497985104],[132,557128,3950603919085972,3950606120324188],[132,557188,3950600725236988,3950609314173172],[132,557197,-26495209992202640,-26495207784975390],[132,557198,22544603239782766,22544604497985104],[132,557260,3950603919085972,3950606120324188],[132,558088,24519905343287280,24519907414185673],[132,558220,24519905343287280,24519907414185673],[132,655360,-18594004998888252,-18593992699469458],[132,655369,45089206503935504,45089208971600236],[132,655370,5925906044742719,5925909014372521],[132,655432,-39742815133869046,-39742811531898000],[132,655492,-18594004998888252,-18593992699469458],[132,655501,45089206503935504,45089208971600236],[132,655502,5925906044742719,5925909014372521],[132,655564,-39742815133869046,-39742811531898000],[132,656392,-24519908088594729,-24519904668878218],[132,656524,-24519908088594729,-24519904668878218],[132,688129,-13247605066127948,-13247603822461068],[132,688136,67633806609648820,67633816603654788],[132,688192,1975301885115096,1975303134589986],[132,688261,-13247605066127948,-13247603822461068],[132,688268,67633806609648820,67633816603654788],[132,688324,1975301885115096,1975303134589986],[132,689152,1975301908323058,1975303111382023],[132,689284,1975301908323058,1975303111382023],[132,1048584,8599101715170092,8599107748829489],[132,1048716,8599101715170092,8599107748829489],[132,1703944,1975301908323058,1975303111382023],[132,1704076,1975301908323058,1975303111382023],[132,1736704,22544603293425280,22544604444342592],[132,1736836,22544603293425280,22544604444342592],[132,67108872,6623799192952293,6623805251342207],[132,67109004,6623799192952293,6623805251342207],[132,67239936,11272301474344213,11272302394539721],[132,67240068,11272301474344213,11272302394539721],[132,67272712,1975301885115096,1975303134589986],[132,67272844,1975301885115096,1975303134589986],[132,67764232,1975301852392980,1975303167312100],[132,67764364,1975301852392980,1975303167312100],[132,67796992,22544603239782766,22544604497985104],[132,67797124,22544603239782766,22544604497985104],[132,268435464,-4648501505889997,-4648497918699427],[132,268435596,-4648501505889997,-4648497918699427],[132,269090824,-13247605101666952,-13247603786922062],[132,269090956,-13247605101666952,-13247603786922062],[132,269123584,1975301877105131,1975303142599947],[132,269123716,1975301877105131,1975303142599947],[132,1073741832,-1975304216083780,-1975300803621296],[132,1073741964,-1975304216083780,-1975300803621296],[132,1073905672,-13247605066127948,-13247603822461068],[132,1073905804,-13247605066127948,-13247603822461068],[132,1074429952,-13247605076872486,-13247603811716528],[132,1074430084,-13247605076872486,-13247603811716528],[135,0,33237389706261878,33237395651043384],[135,3,22544599251748898,22544608486018976],[135,5,-12549714284822493,-12549705218587237],[135,6,23242490579994047,23242506542953071],[135,72,20569298579708561,20569304138354223],[135,75,43113900199647331,43113910256183319],[135,77,-75535024782678860,-75535018509445078],[135,78,52990412240818188,52990423313537884],[135,129,23242490579994047,23242506542953071],[135,130,-12549714284822493,-12549705218587237],[135,132,22544599251748898,22544608486018976],[135,135,33237389706261878,33237395651043384],[135,201,52990412240818188,52990423313537884],[135,202,-75535024782678860,-75535018509445078],[135,204,43113900199647331,43113910256183319],[135,207,20569298579708561,20569304138354223],[135,323,22544603300308524,22544604437459344],[135,326,-22544604437459344,-22544603300308524],[135,449,-22544604437459344,-22544603300308524],[135,452,22544603300308524,22544604437459344],[135,1035,28470509832687554,28470512964195555],[135,1037,-19871408102400732,-19871405230482798],[135,1038,-8599107733712757,-8599101730286822],[135,1091,1975301912779772,1975303106925307],[135,1094,-1975303106925307,-1975301912779772],[135,1161,-8599107733712757,-8599101730286822],[135,1162,-19871408102400732,-19871405230482798],[135,1164,28470509832687554,28470512964195555],[135,1217,-1975303106925307,-1975301912779772],[135,1220,1975301912779772,1975303106925307],[135,32776,-39742815032300530,-39742811633466510],[135,32781,11272298195303644,11272305673580297],[135,32782,-51015117307046807,-51015113227604174],[135,32832,-13247605061599516,-13247603826989498],[135,32837,-13247605061599516,-13247603826989498],[135,32905,-51015117307046807,-51015113227604174],[135,32906,11272298195303644,11272305673580297],[135,32911,-39742815032300530,-39742811633466510],[135,32962,-13247605061599516,-13247603826989498],[135,32967,-13247605061599516,-13247603826989498],[135,131083,1975300962522527,1975304057182551],[135,131085,-13247605939232943,-13247602949356073],[135,131086,11272298892173522,11272304976710416],[135,131209,11272298892173522,11272304976710416],[135,131210,-13247605939232943,-13247602949356073],[135,131212,1975300962522527,1975304057182551],[135,524299,49039811053725950,49039814461219948],[135,524301,-37767512457661269,-37767509188400696],[135,524302,-11272305272819252,-11272298596064681],[135,524355,1975301889643525,1975303130061553],[135,524358,-1975303130061553,-1975301889643525],[135,524425,-11272305272819252,-11272298596064681],[135,524426,-37767512457661269,-37767509188400696],[135,524428,49039811053725950,49039814461219948],[135,524481,-1975303130061553,-1975301889643525],[135,524484,1975301889643525,1975303130061553],[136,0,312371664287460240,312371823387059092],[136,3,49039809086990954,49039816427954942],[136,5,-34514803436440870,-34514797555390214],[136,6,-43421350142958786,-43421302388547748],[136,65,-18594003438885652,-18593994259472046],[136,66,-316854179884817992,-316854096746635744],[136,68,54693605669021029,54693650731369441],[136,71,26495207701858484,26495210075319546],[136,136,312371664287460240,312371823387059092],[136,139,49039809086990954,49039816427954942],[136,141,-34514803436440870,-34514797555390214],[136,142,-43421350142958786,-43421302388547748],[136,201,-18594003438885652,-18593994259472046],[136,202,-316854179884817992,-316854096746635744],[136,204,54693605669021029,54693650731369441],[136,207,26495207701858484,26495210075319546],[136,258,-18594003438885652,-18593994259472046],[136,260,-8599107733712757,-8599101730286822],[136,320,49039809086990954,49039816427954942],[136,323,-22544604437459344,-22544603300308524],[136,326,-1975303106925307,-1975301912779772],[136,394,-18594003438885652,-18593994259472046],[136,396,-8599107733712757,-8599101730286822],[136,456,49039809086990954,49039816427954942],[136,459,-22544604437459344,-22544603300308524],[136,462,-1975303106925307,-1975301912779772],[136,1025,-8599107733712757,-8599101730286822],[136,1026,54693605669021029,54693650731369441],[136,1028,240160072890335656,240160107950300992],[136,1088,-43421350142958786,-43421302388547748],[136,1091,-1975303106925307,-1975301912779772],[136,1094,-2424856520,2424856530],[136,1161,-8599107733712757,-8599101730286822],[136,1162,54693605669021029,54693650731369441],[136,1164,240160072890335656,240160107950300992],[136,1224,-43421350142958786,-43421302388547748],[136,1227,-1975303106925307,-1975301912779772],[136,1230,-2424856520,2424856530],[136,1280,-34514803436440870,-34514797555390214],[136,1346,26495207701858484,26495210075319546],[136,1416,-34514803436440870,-34514797555390214],[136,1482,26495207701858484,26495210075319546],[136,2050,-13247606143034927,-13247602745554085],[136,2052,-13247606072008906,-13247602816580098],[136,2112,17198207762730769,17198211165268399],[136,2186,-13247606143034927,-13247602745554085],[136,2188,-13247606072008906,-13247602816580098],[136,2248,17198207762730769,17198211165268399],[136,2304,-3950605491232570,-3950604548177586],[136,2440,-3950605491232570,-3950604548177586],[136,3072,-5346395945272860,-5346392864495852],[136,3208,-5346395945272860,-5346392864495852],[136,32769,-3950605484998596,-3950604554411562],[136,32770,3950601664814648,3950608374595511],[136,32772,-34514803440217642,-34514797551613446],[136,32832,-11272305289278916,-11272298579605019],[136,32905,-3950605484998596,-3950604554411562],[136,32906,3950601664814648,3950608374595511],[136,32908,-34514803440217642,-34514797551613446],[136,32968,-11272305289278916,-11272298579605019],[136,33792,-8599107748829489,-8599101715170092],[136,33928,-8599107748829489,-8599101715170092],[136,131073,3950601681274309,3950608358135846],[136,131074,235357851276653147,235357909101556156],[136,131076,-48767744686891983,-48767696654383246],[136,131136,-252556117717993928,-252556061588214548],[136,131139,13247603826989498,13247605061599516],[136,131142,-47064513273775962,-47064507221464861],[136,131209,3950601681274309,3950608358135846],[136,131210,235357851276653147,235357909101556156],[136,131212,-48767744686891983,-48767696654383246],[136,131272,-252556117717993928,-252556061588214548],[136,131275,13247603826989498,13247605061599516],[136,131278,-47064513273775962,-47064507221464861],[136,131328,-11272305272819252,-11272298596064681],[136,131394,-1975303130061553,-1975301889643525],[136,131464,-11272305272819252,-11272298596064681],[136,131530,-1975303130061553,-1975301889643525],[136,132096,60039999943769960,60040045266389211],[136,132102,13247602666336360,13247606222252656],[136,132162,35792205747120647,35792210879236240],[136,132164,-13247606222252656,-13247602666336360],[136,132232,60039999943769960,60040045266389211],[136,132238,13247602666336360,13247606222252656],[136,132298,35792205747120647,35792210879236240],[136,132300,-13247606222252656,-13247602666336360],[136,133120,-13247606143034927,-13247602745554085],[136,133256,-13247606143034927,-13247602745554085],[136,163840,49039808003270598,49039817511675298],[136,163976,49039808003270598,49039817511675298],[136,524289,-11272305272819252,-11272298596064681],[136,524290,-252556117717993928,-252556061588214548],[136,524292,60039999943769960,60040045266389211],[136,524352,235357851276653147,235357909101556156],[136,524355,-1975303130061553,-1975301889643525],[136,524358,35792205747120647,35792210879236240],[136,524425,-11272305272819252,-11272298596064681],[136,524426,-252556117717993928,-252556061588214548],[136,524428,60039999943769960,60040045266389211],[136,524488,235357851276653147,235357909101556156],[136,524491,-1975303130061553,-1975301889643525],[136,524494,35792205747120647,35792210879236240],[136,524544,3950601681274309,3950608358135846],[136,524610,13247603826989498,13247605061599516],[136,524680,3950601681274309,3950608358135846],[136,524746,13247603826989498,13247605061599516],[136,525312,-48767744686891983,-48767696654383246],[136,525318,-13247606222252656,-13247602666336360],[136,525378,-47064513273775962,-47064507221464861],[136,525380,13247602666336360,13247606222252656],[136,525448,-48767744686891983,-48767696654383246],[136,525454,-13247606222252656,-13247602666336360],[136,525514,-47064513273775962,-47064507221464861],[136,525516,13247602666336360,13247606222252656],[136,526336,17198207762730769,17198211165268399],[136,526472,17198207762730769,17198211165268399],[136,557056,-18594004998888252,-18593992699469458],[136,557192,-18594004998888252,-18593992699469458],[136,655360,-481408591344725096,-481408507031230928],[136,655366,-47064513301573545,-47064507193667275],[136,655426,79485623172031080,79485630159503018],[136,655428,35792205719323062,35792210907033824],[136,655496,-481408591344725096,-481408507031230928],[136,655502,-47064513301573545,-47064507193667275],[136,655562,79485623172031080,79485630159503018],[136,655564,35792205719323062,35792210907033824],[136,656386,35792205719323062,35792210907033824],[136,656388,-2449893888,2449893882],[136,656448,-47064513301573545,-47064507193667275],[136,656522,35792205719323062,35792210907033824],[136,656524,-2449893888,2449893882],[136,656584,-47064513301573545,-47064507193667275],[136,688130,13247603822461068,13247605066127948],[136,688132,26495207692945056,26495210084232978],[136,688192,-1975303134589986,-1975301885115096],[136,688266,13247603822461068,13247605066127948],[136,688268,26495207692945056,26495210084232978],[136,688328,-1975303134589986,-1975301885115096],[136,689152,-1975303111382023,-1975301908323058],[136,689288,-1975303111382023,-1975301908323058],[136,1048578,-11272305289278916,-11272298579605019],[136,1048580,-8599107748829489,-8599101715170092],[136,1048640,3950601664814648,3950608374595511],[136,1048714,-11272305289278916,-11272298579605019],[136,1048716,-8599107748829489,-8599101715170092],[136,1048776,3950601664814648,3950608374595511],[136,1048832,-3950605484998596,-3950604554411562],[136,1048968,-3950605484998596,-3950604554411562],[136,1049600,-34514803440217642,-34514797551613446],[136,1049736,-34514803440217642,-34514797551613446],[136,1050624,-3950605491232570,-3950604548177586],[136,1050760,-3950605491232570,-3950604548177586],[136,1179648,-18594004998888252,-18593992699469458],[136,1179784,-18594004998888252,-18593992699469458],[136,1572864,49039808003270598,49039817511675298],[136,1573000,49039808003270598,49039817511675298],[136,1703938,-1975303134589986,-1975301885115096],[136,1703940,-1975303111382023,-1975301908323058],[136,1704000,13247603822461068,13247605066127948],[136,1704074,-1975303134589986,-1975301885115096],[136,1704076,-1975303111382023,-1975301908323058],[136,1704136,13247603822461068,13247605066127948],[136,1704960,26495207692945056,26495210084232978],[136,1705096,26495207692945056,26495210084232978],[136,1736704,-22544604444342592,-22544603293425280],[136,1736840,-22544604444342592,-22544603293425280],[136,67108866,-13247606347638304,-13247602540950713],[136,67108868,-15920803437427959,-15920799856045399],[136,67108928,1975300603193161,1975304416511920],[136,67109002,-13247606347638304,-13247602540950713],[136,67109004,-15920803437427959,-15920799856045399],[136,67109064,1975300603193161,1975304416511920],[136,67109888,4648497918699427,4648501505889997],[136,67110024,4648497918699427,4648501505889997],[136,67141632,11272301474344213,11272302394539721],[136,67141768,11272301474344213,11272302394539721],[136,67239936,19173508473961242,19173515473743010],[136,67240072,19173508473961242,19173515473743010],[136,67633152,20569295950214876,20569306767847923],[136,67633288,20569295950214876,20569306767847923],[136,67764226,-1975303196554503,-1975301823150576],[136,67764228,-1975303167312100,-1975301852392980],[136,67764288,13247603754276960,13247605134312055],[136,67764362,-1975303196554503,-1975301823150576],[136,67764364,-1975303167312100,-1975301852392980],[136,67764424,13247603754276960,13247605134312055],[136,67765248,13247603786922062,13247605101666952],[136,67765384,13247603786922062,13247605101666952],[136,67796992,-9297000206694220,-9296998642484636],[136,67797128,-9297000206694220,-9296998642484636],[136,68812800,-1975303142599947,-1975301877105131],[136,68812936,-1975303142599947,-1975301877105131],[136,268435458,1975300603193161,1975304416511920],[136,268435460,4648497918699427,4648501505889997],[136,268435520,-13247606347638304,-13247602540950713],[136,268435594,1975300603193161,1975304416511920],[136,268435596,4648497918699427,4648501505889997],[136,268435656,-13247606347638304,-13247602540950713],[136,268436480,-15920803437427959,-15920799856045399],[136,268436616,-15920803437427959,-15920799856045399],[136,268566528,20569295950214876,20569306767847923],[136,268566664,20569295950214876,20569306767847923],[136,268959744,19173508473961242,19173515473743010],[136,268959880,19173508473961242,19173515473743010],[136,269090818,13247603754276960,13247605134312055],[136,269090820,13247603786922062,13247605101666952],[136,269090880,-1975303196554503,-1975301823150576],[136,269090954,13247603754276960,13247605134312055],[136,269090956,13247603786922062,13247605101666952],[136,269091016,-1975303196554503,-1975301823150576],[136,269091840,-1975303167312100,-1975301852392980],[136,269091976,-1975303167312100,-1975301852392980],[136,269123584,-1975303142599947,-1975301877105131],[136,269123720,-1975303142599947,-1975301877105131],[136,269484032,11272301474344213,11272302394539721],[136,269484168,11272301474344213,11272302394539721],[136,270139392,-9297000206694220,-9296998642484636],[136,270139528,-9297000206694220,-9296998642484636],[136,336199680,26495207490199320,26495210286978712],[136,336199816,26495207490199320,26495210286978712],[139,0,75535017338508762,75535025953615174],[139,3,49039809086990954,49039816427954942],[139,9,-209714307449075898,-209714245574972548],[139,10,236209459374475712,236209511426750774],[139,68,-69609119643958417,-69609108589050261],[139,71,-47064512094016005,-47064508401224809],[139,77,52990412240818188,52990423313537884],[139,78,-75535025980292526,-75535017311831410],[139,129,236209459374475712,236209511426750774],[139,130,-209714307449075898,-209714245574972548],[139,136,49039809086990954,49039816427954942],[139,139,75535017338508762,75535025953615174],[139,197,-75535025980292526,-75535017311831410],[139,198,52990412240818188,52990423313537884],[139,204,-47064512094016005,-47064508401224809],[139,207,-69609119643958417,-69609108589050261],[139,323,-22544604437459344,-22544603300308524],[139,329,24519905354627238,24519907402845709],[139,330,-1975303106925307,-1975301912779772],[139,449,-1975303106925307,-1975301912779772],[139,450,24519905354627238,24519907402845709],[139,456,-22544604437459344,-22544603300308524],[139,1028,-3950606208579430,-3950603830830732],[139,1031,-28470512964195555,-28470509832687554],[139,1037,17896102123555768,17896106189622669],[139,1038,6623801213223040,6623803231071470],[139,1088,1975301912872117,1975303106832961],[139,1091,-1194053190,1194053189],[139,1097,-22544606008242938,-22544601729524940],[139,1098,24519904682575622,24519908074897335],[139,1157,6623801213223040,6623803231071470],[139,1158,17896102123555768,17896106189622669],[139,1164,-28470512964195555,-28470509832687554],[139,1167,-3950606208579430,-3950603830830732],[139,1217,24519904682575622,24519908074897335],[139,1218,-22544606008242938,-22544601729524940],[139,1224,-1194053190,1194053189],[139,1227,1975301912872117,1975303106832961],[139,32775,13247603821617226,13247605066971786],[139,32781,-26495209977752878,-26495207799425147],[139,32782,13247603827010127,13247605061578886],[139,32901,13247603827010127,13247605061578886],[139,32902,-26495209977752878,-26495207799425147],[139,32908,13247603821617226,13247605066971786],[139,131076,47064508855883441,47064511639357377],[139,131079,22544602330282044,22544605407485828],[139,131085,13247602298025327,13247606590563683],[139,131086,11272299945646091,11272303923237845],[139,131136,-9297000658925680,-9296998190253177],[139,131139,-22544604485915178,-22544603251852693],[139,131145,51015113020977955,51015117513673026],[139,131146,-37767513075615154,-37767508570446813],[139,131205,11272299945646091,11272303923237845],[139,131206,13247602298025327,13247606590563683],[139,131212,22544602330282044,22544605407485828],[139,131215,47064508855883441,47064511639357377],[139,131265,-37767513075615154,-37767508570446813],[139,131266,51015113020977955,51015117513673026],[139,131272,-22544604485915178,-22544603251852693],[139,131275,-9297000658925680,-9296998190253177],[139,132105,11272300873839524,11272302995044411],[139,132106,-11272302995044411,-11272300873839524],[139,132225,-11272302995044411,-11272300873839524],[139,132226,11272300873839524,11272302995044411],[139,524292,-45089208966229632,-45089206509306108],[139,524295,-49039814461219948,-49039811053725950],[139,524301,15222904805987338,15222909102306755],[139,524302,-11272302995044411,-11272300873839524],[139,524352,22544603251852693,22544604485915178],[139,524355,20569300121791140,20569302596271653],[139,524361,-37767513075615154,-37767508570446813],[139,524362,39742811546633741,39742815119133304],[139,524421,-11272302995044411,-11272300873839524],[139,524422,15222904805987338,15222909102306755],[139,524428,-49039814461219948,-49039811053725950],[139,524431,-45089208966229632,-45089206509306108],[139,524481,39742811546633741,39742815119133304],[139,524482,-37767513075615154,-37767508570446813],[139,524488,20569300121791140,20569302596271653],[139,524491,22544603251852693,22544604485915178],[139,525321,-11272302995044411,-11272300873839524],[139,525322,11272300873839524,11272302995044411],[139,525441,11272300873839524,11272302995044411],[139,525442,-11272302995044411,-11272300873839524],[139,655369,28470509589568145,28470513207314965],[139,655370,-28470513207314965,-28470509589568145],[139,655489,-28470513207314965,-28470509589568145],[139,655490,28470509589568145,28470513207314965],[141,0,-49039814791924922,-49039810723020980],[141,5,-34514803436440870,-34514797555390214],[141,9,255808774717255568,255808825243183778],[141,12,-270333833954743796,-270333790528810368],[141,66,26495207701858484,26495210075319546],[141,71,66238017825195074,66238026617750008],[141,75,7321691863722815,7321701965750947],[141,78,-47064512094016005,-47064508401224809],[141,129,-270333833954743796,-270333790528810368],[141,132,255808774717255568,255808825243183778],[141,136,-34514803436440870,-34514797555390214],[141,141,-49039814791924922,-49039810723020980],[141,195,-47064512094016005,-47064508401224809],[141,198,7321691863722815,7321701965750947],[141,202,66238017825195074,66238026617750008],[141,207,26495207701858484,26495210075319546],[141,1026,26495207753551168,26495210023626872],[141,1031,19871405230482798,19871408102400732],[141,1035,-17896106189622669,-17896102123555768],[141,1038,24519905354627238,24519907402845709],[141,1097,24519905354627238,24519907402845709],[141,1100,-24519907402845709,-24519905354627238],[141,1155,24519905354627238,24519907402845709],[141,1158,-17896106189622669,-17896102123555768],[141,1162,19871405230482798,19871408102400732],[141,1167,26495207753551168,26495210023626872],[141,1217,-24519907402845709,-24519905354627238],[141,1220,24519905354627238,24519907402845709],[141,32770,11272300724520905,11272303144363030],[141,32775,13247603826989498,13247605061599516],[141,32779,-51015117307080439,-51015113227570542],[141,32782,49039810731968040,49039814782977862],[141,32832,-13247605061599516,-13247603826989498],[141,32837,-13247605061599516,-13247603826989498],[141,32899,49039810731968040,49039814782977862],[141,32902,-51015117307080439,-51015113227570542],[141,32906,13247603826989498,13247605061599516],[141,32911,11272300724520905,11272303144363030],[141,32968,-13247605061599516,-13247603826989498],[141,32973,-13247605061599516,-13247603826989498],[141,33792,-13247605033203059,-13247603855385956],[141,33797,-13247605033203059,-13247603855385956],[141,33928,-13247605033203059,-13247603855385956],[141,33933,-13247605033203059,-13247603855385956],[141,131074,-24519907696178166,-24519905061294785],[141,131079,-31143710097470678,-31143707104296780],[141,131083,10574405092145006,10574409391559659],[141,131086,-3950606982859932,-3950603056550226],[141,131145,-3950606107262344,-3950603932147814],[141,131148,3950603932147814,3950606107262344],[141,131203,-3950606982859932,-3950603056550226],[141,131206,10574405092145006,10574409391559659],[141,131210,-31143710097470678,-31143707104296780],[141,131215,-24519907696178166,-24519905061294785],[141,131265,3950603932147814,3950606107262344],[141,131268,-3950606107262344,-3950603932147814],[141,132105,-24519907391505747,-24519905365967204],[141,132108,24519905365967204,24519907391505747],[141,132225,24519905365967204,24519907391505747],[141,132228,-24519907391505747,-24519905365967204],[141,163840,13247603811716528,13247605076872486],[141,163845,13247603811716528,13247605076872486],[141,163976,13247603811716528,13247605076872486],[141,163981,13247603811716528,13247605076872486],[141,524290,26495207710771912,26495210066406118],[141,524295,37767509188400696,37767512457661269],[141,524299,-15222909102306755,-15222904805987338],[141,524302,3950603932147814,3950606107262344],[141,524361,3950603932147814,3950606107262344],[141,524364,-3950606107262344,-3950603932147814],[141,524419,3950603932147814,3950606107262344],[141,524422,-15222909102306755,-15222904805987338],[141,524426,37767509188400696,37767512457661269],[141,524431,26495207710771912,26495210066406118],[141,524481,-3950606107262344,-3950603932147814],[141,524484,3950603932147814,3950606107262344],[141,525321,24519905365967204,24519907391505747],[141,525324,-24519907391505747,-24519905365967204],[141,525441,-24519907391505747,-24519905365967204],[141,525444,24519905365967204,24519907391505747],[141,557056,-13247605076872486,-13247603811716528],[141,557061,-13247605076872486,-13247603811716528],[141,557192,-13247605076872486,-13247603811716528],[141,557197,-13247605076872486,-13247603811716528],[141,655369,18593997124524774,18594000573832936],[141,655372,-18594000573832936,-18593997124524774],[141,655489,-18594000573832936,-18593997124524774],[141,655492,18593997124524774,18594000573832936],[142,0,-3358093042,3358093038],[142,6,-43421350142958786,-43421302388547748],[142,10,-222961907731674894,-222961854180962580],[142,12,266383184103143623,266383230341000381],[142,65,67633806676178144,67633816537125456],[142,71,7321691863722815,7321701965750947],[142,75,17198202133527204,17198216794471984],[142,77,43113900199647331,43113910256183319],[142,130,266383184103143623,266383230341000381],[142,132,-222961907731674894,-222961854180962580],[142,136,-43421350142958786,-43421302388547748],[142,142,-3358093042,3358093038],[142,195,43113900199647331,43113910256183319],[142,197,17198202133527204,17198216794471984],[142,201,7321691863722815,7321701965750947],[142,207,67633806676178144,67633816537125456],[142,326,-1194053190,1194053189],[142,330,-1194053189,1194053190],[142,452,-1194053189,1194053190],[142,456,-1194053190,1194053189],[142,1025,-22544606192796140,-22544601544971738],[142,1031,8599101730286822,8599107733712757],[142,1035,-6623803231071470,-6623801213223040],[142,1037,-24519907402845709,-24519905354627238],[142,1088,-13247605037567427,-13247603851021587],[142,1094,-13247609011319922,-13247599877269080],[142,1098,-24519910199672792,-24519902557800167],[142,1100,24519905354627238,24519907402845709],[142,1155,-24519907402845709,-24519905354627238],[142,1157,-6623803231071470,-6623801213223040],[142,1161,8599101730286822,8599107733712757],[142,1167,-22544606192796140,-22544601544971738],[142,1218,24519905354627238,24519907402845709],[142,1220,-24519910199672792,-24519902557800167],[142,1224,-13247609011319922,-13247599877269080],[142,1230,-13247605037567427,-13247603851021587],[142,32769,1975301917236486,1975303102468593],[142,32775,-26495209977773508,-26495207799404518],[142,32779,11272298195290642,11272305673593300],[142,32781,17198204951509383,17198213976489780],[142,32832,49039810292025454,49039815222920444],[142,32838,26495207799404518,26495209977773508],[142,32842,26495207799184865,26495209977993164],[142,32844,-3950608433100829,-3950601606309328],[142,32899,17198204951509383,17198213976489780],[142,32901,11272298195290642,11272305673593300],[142,32905,-26495209977773508,-26495207799404518],[142,32911,1975301917236486,1975303102468593],[142,32962,-3950608433100829,-3950601606309328],[142,32964,26495207799184865,26495209977993164],[142,32968,26495207799404518,26495209977773508],[142,32974,49039810292025454,49039815222920444],[142,33792,1975301917270118,1975303102434961],[142,33798,26495207861603338,26495209915574692],[142,33804,-24519907391505747,-24519905365967204],[142,33922,-24519907391505747,-24519905365967204],[142,33928,26495207861603338,26495209915574692],[142,33934,1975301917270118,1975303102434961],[142,131073,-22544606578062592,-22544601159705275],[142,131079,8599101696810952,8599107767188634],[142,131083,-6623804212490749,-6623800231803759],[142,131085,-24519908340000795,-24519904417472150],[142,131136,-22544606644811289,-22544601092956580],[142,131142,-6623804308921517,-6623800135372988],[142,131146,8599102641942379,8599106822057209],[142,131148,-24519909474570990,-24519903282901962],[142,131203,-24519908340000795,-24519904417472150],[142,131205,-6623804212490749,-6623800231803759],[142,131209,8599101696810952,8599107767188634],[142,131215,-22544606578062592,-22544601159705275],[142,131266,-24519909474570990,-24519903282901962],[142,131268,8599102641942379,8599106822057209],[142,131272,-6623804308921517,-6623800135372988],[142,131278,-22544606644811289,-22544601092956580],[142,132096,11272301204090824,11272302664793112],[142,132102,-6623803284297315,-6623801159997192],[142,132106,17896103248910824,17896105064267619],[142,132108,-873779583,873779583],[142,132226,-873779583,873779583],[142,132228,17896103248910824,17896105064267619],[142,132232,-6623803284297315,-6623801159997192],[142,132238,11272301204090824,11272302664793112],[142,163840,-24519907169816619,-24519905587656329],[142,163846,22544602318599624,22544605419168246],[142,163850,1975300950242052,1975304069463026],[142,163852,-49039814917723134,-49039810597222762],[142,163970,-49039814917723134,-49039810597222762],[142,163972,1975300950242052,1975304069463026],[142,163976,22544602318599624,22544605419168246],[142,163982,-24519907169816619,-24519905587656329],[142,524289,18593996442899990,18594001255457720],[142,524295,11272298596064681,11272305272819252],[142,524299,11272300873839524,11272302995044411],[142,524301,-3950606107262344,-3950603932147814],[142,524352,-13247605061713792,-13247603826875223],[142,524358,4648494894207522,4648504530381905],[142,524362,-21846713211925840,-21846705140662760],[142,524364,3950603932147814,3950606107262344],[142,524419,-3950606107262344,-3950603932147814],[142,524421,11272300873839524,11272302995044411],[142,524425,11272298596064681,11272305272819252],[142,524431,18593996442899990,18594001255457720],[142,524482,3950603932147814,3950606107262344],[142,524484,-21846713211925840,-21846705140662760],[142,524488,4648494894207522,4648504530381905],[142,524494,-13247605061713792,-13247603826875223],[142,525318,-13247606222252656,-13247602666336360],[142,525322,-11272302995044411,-11272300873839524],[142,525324,24519905365967204,24519907391505747],[142,525442,24519905365967204,24519907391505747],[142,525444,-11272302995044411,-11272300873839524],[142,525448,-13247606222252656,-13247602666336360],[142,557056,22544603239782766,22544604497985104],[142,557062,26495207784975390,26495209992202640],[142,557068,-3950606120324188,-3950603919085972],[142,557186,-3950606120324188,-3950603919085972],[142,557192,26495207784975390,26495209992202640],[142,557198,22544603239782766,22544604497985104],[142,655360,-9297000206694220,-9296998642484636],[142,655366,-49039814989147174,-49039810525798726],[142,655370,17198207831856214,17198211096142960],[142,655372,22544602310993060,22544605426774810],[142,655490,22544602310993060,22544605426774810],[142,655492,17198207831856214,17198211096142960],[142,655496,-49039814989147174,-49039810525798726],[142,655502,-9297000206694220,-9296998642484636],[192,3,-11272305024301474,-11272298844582466],[192,6,-4790774237,4790774243],[192,9,-4790774237,4790774243],[192,10,231170470341529204,231170553725604488],[192,12,-11272305024301474,-11272298844582466],[192,15,-45089208874918688,-45089206600617048],[192,195,-11272305024301474,-11272298844582466],[192,198,-4790774237,4790774243],[192,201,-4790774237,4790774243],[192,202,231170470341529204,231170553725604488],[192,204,-11272305024301474,-11272298844582466],[192,207,-45089208874918688,-45089206600617048],[192,257,-15920803246405425,-15920800047067943],[192,258,-222961907731674894,-222961854180962580],[192,260,4648498108918473,4648501315670959],[192,264,236209459374475712,236209511426750774],[192,267,13247603851021587,13247605037567427],[192,270,-1975303106832961,-1975301912872117],[192,449,-15920803246405425,-15920800047067943],[192,450,-222961907731674894,-222961854180962580],[192,452,4648498108918473,4648501315670959],[192,456,236209459374475712,236209511426750774],[192,459,13247603851021587,13247605037567427],[192,462,-1975303106832961,-1975301912872117],[192,514,17198207753821687,17198211174177485],[192,520,-13247606157000801,-13247602731588215],[192,706,17198207753821687,17198211174177485],[192,712,-13247606157000801,-13247602731588215],[192,1025,4648498108918473,4648501315670959],[192,1026,236209459374475712,236209511426750774],[192,1028,-15920803246405425,-15920800047067943],[192,1032,-222961907731674894,-222961854180962580],[192,1035,-1975303106832961,-1975301912872117],[192,1038,13247603851021587,13247605037567427],[192,1217,4648498108918473,4648501315670959],[192,1218,236209459374475712,236209511426750774],[192,1220,-15920803246405425,-15920800047067943],[192,1224,-222961907731674894,-222961854180962580],[192,1227,-1975303106832961,-1975301912872117],[192,1230,13247603851021587,13247605037567427],[192,1290,-58336815178304206,-58336809185820542],[192,1482,-58336815178304206,-58336809185820542],[192,1794,-1975303104304567,-1975301915400511],[192,1800,-1975303106832961,-1975301912872117],[192,1986,-1975303104304567,-1975301915400511],[192,1992,-1975303106832961,-1975301912872117],[192,2050,-13247606157000801,-13247602731588215],[192,2056,17198207753821687,17198211174177485],[192,2242,-13247606157000801,-13247602731588215],[192,2248,17198207753821687,17198211174177485],[192,3330,-1975303106832961,-1975301912872117],[192,3336,-1975303104304567,-1975301915400511],[192,3522,-1975303106832961,-1975301912872117],[192,3528,-1975303104304567,-1975301915400511],[192,131074,-7901216811716128,-7901203267104184],[192,131076,-9296999886451704,-9296998962727152],[192,131080,-63683211765177830,-63683201408715624],[192,131083,-1975303134066536,-1975301885638544],[192,131086,11272301159430178,11272302709453758],[192,131266,-7901216811716128,-7901203267104184],[192,131268,-9296999886451704,-9296998962727152],[192,131272,-63683211765177830,-63683201408715624],[192,131275,-1975303134066536,-1975301885638544],[192,131278,11272301159430178,11272302709453758],[192,131328,-8599108332258679,-8599101131740910],[192,131338,-4648500367937249,-4648499056652180],[192,131520,-8599108332258679,-8599101131740910],[192,131530,-4648500367937249,-4648499056652180],[192,132096,6623798624404334,6623805819890177],[192,132106,-4648500367937248,-4648499056652179],[192,132288,6623798624404334,6623805819890177],[192,132298,-4648500367937248,-4648499056652179],[192,524289,4648498045480103,4648501379109328],[192,524290,77936102841789496,77936150681548118],[192,524292,4648498045480100,4648501379109325],[192,524296,-66663850285081034,-66663799369372644],[192,524299,-22544604485915178,-22544603251852693],[192,524302,13247603826875223,13247605061713792],[192,524481,4648498045480103,4648501379109328],[192,524482,77936102841789496,77936150681548118],[192,524484,4648498045480100,4648501379109325],[192,524488,-66663850285081034,-66663799369372644],[192,524491,-22544604485915178,-22544603251852693],[192,524494,13247603826875223,13247605061713792],[192,524554,-33119013675915179,-33119008545557361],[192,524746,-33119013675915179,-33119008545557361],[192,525322,42416007508284513,42416013562366883],[192,525514,42416007508284513,42416013562366883],[192,525570,-53688314809147586,-53688310130387744],[192,525576,57638914684799306,57638920294146182],[192,525762,-53688314809147586,-53688310130387744],[192,525768,57638914684799306,57638920294146182],[192,655360,19173508473961242,19173515473743010],[192,655370,-3950606388421522,-3950603650988640],[192,655552,19173508473961242,19173515473743010],[192,655562,-3950606388421522,-3950603650988640],[192,1048578,-8599108093729955,-8599101370269630],[192,1048584,1277404455586225,1277411178939584],[192,1048770,-8599108093729955,-8599101370269630],[192,1048776,1277404455586225,1277411178939584],[192,1049858,-1975303102468593,-1975301917236486],[192,1049864,-1975303102434961,-1975301917270118],[192,1050050,-1975303102468593,-1975301917236486],[192,1050056,-1975303102434961,-1975301917270118],[192,1179648,11272301474344213,11272302394539721],[192,1179840,11272301474344213,11272302394539721],[192,268435458,4648497809818828,4648501614770600],[192,268435464,-15920803552528152,-15920799740945212],[192,268435650,4648497809818828,4648501614770600],[192,268435656,-15920803552528152,-15920799740945212],[192,268566528,11272301423813928,11272302445070008],[192,268566720,11272301423813928,11272302445070008],[195,0,-18594001027636998,-18593996670720716],[195,3,-11272305024301474,-11272298844582466],[195,12,-3950606264617852,-3950603774792306],[195,15,-4260574858,4260574864],[195,65,-62015351366925919,-62015298862938325],[195,66,54693605669021029,54693650731369441],[195,77,43113900199647331,43113910256183319],[195,78,-47064512094016005,-47064508401224809],[195,129,54693605669021029,54693650731369441],[195,130,-62015351366925919,-62015298862938325],[195,141,-47064512094016005,-47064508401224809],[195,142,43113900199647331,43113910256183319],[195,192,-11272305024301474,-11272298844582466],[195,195,-18594001027636998,-18593996670720716],[195,204,-4260574858,4260574864],[195,207,-3950606264617852,-3950603774792306],[195,260,1975301912779772,1975303106925307],[195,263,1975301912779772,1975303106925307],[195,264,11272300744096280,11272303124787655],[195,267,-1975303106925307,-1975301912779772],[195,329,-2124775455,2124775457],[195,330,13247602302125610,13247606586463402],[195,393,13247602302125610,13247606586463402],[195,394,-2124775455,2124775457],[195,452,1975301912779772,1975303106925307],[195,455,1975301912779772,1975303106925307],[195,456,-1975303106925307,-1975301912779772],[195,459,11272300744096280,11272303124787655],[195,1028,-1975303106925307,-1975301912779772],[195,1031,-1975303106925307,-1975301912779772],[195,1032,1975301912779772,1975303106925307],[195,1035,-1194053189,1194053190],[195,1097,13247602302125610,13247606586463402],[195,1098,-11272303635356703,-11272300233527231],[195,1161,-11272303635356703,-11272300233527231],[195,1162,13247602302125610,13247606586463402],[195,1220,-1975303106925307,-1975301912779772],[195,1223,-1975303106925307,-1975301912779772],[195,1224,-1194053189,1194053190],[195,1227,1975301912779772,1975303106925307],[195,1345,-19871408102400732,-19871405230482798],[195,1346,19871405230482798,19871408102400732],[195,1409,19871405230482798,19871408102400732],[195,1410,-19871408102400732,-19871405230482798],[195,131083,-1975303134066536,-1975301885638544],[195,131145,6623801098016986,6623803346277523],[195,131146,-4648500367937249,-4648499056652180],[195,131209,-4648500367937249,-4648499056652180],[195,131210,6623801098016986,6623803346277523],[195,131272,-1975303134066536,-1975301885638544],[195,524292,-1975303130061553,-1975301889643525],[195,524295,-1975303130061553,-1975301889643525],[195,524296,1975301889643525,1975303130061553],[195,524299,-20569302596271653,-20569300121791140],[195,524361,31143706348854335,31143710852913125],[195,524362,-8599106519519277,-8599102944480312],[195,524425,-8599106519519277,-8599102944480312],[195,524426,31143706348854335,31143710852913125],[195,524484,-1975303130061553,-1975301889643525],[195,524487,-1975303130061553,-1975301889643525],[195,524488,-20569302596271653,-20569300121791140],[195,524491,1975301889643525,1975303130061553],[195,524609,-6623803284330947,-6623801159963560],[195,524610,6623801159963560,6623803284330947],[195,524673,6623801159963560,6623803284330947],[195,524674,-6623803284330947,-6623801159963560],[195,525377,6623801159963560,6623803284330947],[195,525378,-6623803284330947,-6623801159963560],[195,525441,-6623803284330947,-6623801159963560],[195,525442,6623801159963560,6623803284330947],[197,10,-58336815178304206,-58336809185820542],[197,65,3950600776488312,3950609262921848],[197,68,-3950609262921848,-3950600776488312],[197,75,17198202133527204,17198216794471984],[197,78,-75535025980292526,-75535017311831410],[197,129,-3950609262921848,-3950600776488312],[197,132,3950600776488312,3950609262921848],[197,139,-75535025980292526,-75535017311831410],[197,142,17198202133527204,17198216794471984],[197,207,-58336815178304206,-58336809185820542],[198,0,-18594001959353888,-18593995739003822],[198,6,-4790774237,4790774243],[198,9,15222904008319537,15222909899974555],[198,15,-45089210861191912,-45089204614343830],[198,66,-18594003438885652,-18593994259472046],[198,68,-8145018103,8145018085],[198,75,7321691863722815,7321701965750947],[198,77,52990412240818188,52990423313537884],[198,130,-8145018103,8145018085],[198,132,-18594003438885652,-18593994259472046],[198,139,52990412240818188,52990423313537884],[198,141,7321691863722815,7321701965750947],[198,192,-4790774237,4790774243],[198,198,-18594001959353888,-18593995739003822],[198,201,-45089210861191912,-45089204614343830],[198,207,15222904008319537,15222909899974555],[198,257,-1975303106925307,-1975301912779772],[198,263,-1975303106925307,-1975301912779772],[198,264,13247601047218919,13247607841370104],[198,270,24519904682575622,24519908074897335],[198,330,-11272303635356703,-11272300233527231],[198,396,-11272303635356703,-11272300233527231],[198,449,-1975303106925307,-1975301912779772],[198,455,-1975303106925307,-1975301912779772],[198,456,24519904682575622,24519908074897335],[198,462,13247601047218919,13247607841370104],[198,1025,1975301912779772,1975303106925307],[198,1031,1975301912779772,1975303106925307],[198,1032,-24519908074897335,-24519904682575622],[198,1038,-24519910199672792,-24519902557800167],[198,1100,-2124775455,2124775457],[198,1162,-2124775455,2124775457],[198,1217,1975301912779772,1975303106925307],[198,1223,1975301912779772,1975303106925307],[198,1224,-24519910199672792,-24519902557800167],[198,1230,-24519908074897335,-24519904682575622],[198,32782,-22544605576438951,-22544602161328920],[198,32835,-13247605061599516,-13247603826989498],[198,32837,13247603826989498,13247605061599516],[198,32842,18593997143338122,18594000555019592],[198,32844,3950601606309328,3950608433100829],[198,32899,13247603826989498,13247605061599516],[198,32901,-13247605061599516,-13247603826989498],[198,32906,3950601606309328,3950608433100829],[198,32908,18593997143338122,18594000555019592],[198,32968,-22544605576438951,-22544602161328920],[198,131086,-13247606060429303,-13247602828159713],[198,131146,17198207846590140,17198211081409034],[198,131148,-3950608253249321,-3950601786160837],[198,131210,-3950608253249321,-3950601786160837],[198,131212,17198207846590140,17198211081409034],[198,131272,-13247606060429303,-13247602828159713],[198,524289,1975301889643525,1975303130061553],[198,524295,1975301889643525,1975303130061553],[198,524296,-24519908147332138,-24519904610140814],[198,524302,11272297936924019,11272305931959916],[198,524364,-35792210542100730,-35792206084256157],[198,524426,-35792210542100730,-35792206084256157],[198,524481,1975301889643525,1975303130061553],[198,524487,1975301889643525,1975303130061553],[198,524488,11272297936924019,11272305931959916],[198,524494,-24519908147332138,-24519904610140814],[201,0,-18594001959353888,-18593995739003822],[201,6,15222904008319537,15222909899974555],[201,9,-4790774237,4790774243],[201,15,-45089210861191912,-45089204614343830],[201,65,-18594003438885652,-18593994259472046],[201,71,7321691863722815,7321701965750947],[201,72,-8145018103,8145018085],[201,78,52990412240818188,52990423313537884],[201,129,-8145018103,8145018085],[201,135,52990412240818188,52990423313537884],[201,136,-18594003438885652,-18593994259472046],[201,142,7321691863722815,7321701965750947],[201,192,-4790774237,4790774243],[201,198,-45089210861191912,-45089204614343830],[201,201,-18594001959353888,-18593995739003822],[201,207,15222904008319537,15222909899974555],[201,258,-24519908074897335,-24519904682575622],[201,260,1975301912779772,1975303106925307],[201,267,-24519910199672792,-24519902557800167],[201,269,1975301912779772,1975303106925307],[201,330,-2124775455,2124775457],[201,387,-2124775455,2124775457],[201,450,-24519910199672792,-24519902557800167],[201,452,1975301912779772,1975303106925307],[201,459,-24519908074897335,-24519904682575622],[201,461,1975301912779772,1975303106925307],[201,1026,13247601047218919,13247607841370104],[201,1028,-1975303106925307,-1975301912779772],[201,1035,24519904682575622,24519908074897335],[201,1037,-1975303106925307,-1975301912779772],[201,1091,-11272303635356703,-11272300233527231],[201,1162,-11272303635356703,-11272300233527231],[201,1218,24519904682575622,24519908074897335],[201,1220,-1975303106925307,-1975301912779772],[201,1227,13247601047218919,13247607841370104],[201,1229,-1975303106925307,-1975301912779772],[201,32837,-13247605066971786,-13247603821617226],[201,32844,13247603821617226,13247605066971786],[201,32901,13247603821617226,13247605066971786],[201,32908,-13247605066971786,-13247603821617226],[201,131074,26495207121529005,26495210655649026],[201,131139,-9297003420342855,-9296995428836002],[201,131141,26495207799404518,26495209977773508],[201,131146,35792206084485028,35792210541871860],[201,131148,-26495209977773508,-26495207799404518],[201,131203,35792206084485028,35792210541871860],[201,131205,-26495209977773508,-26495207799404518],[201,131210,-9297003420342855,-9296995428836002],[201,131212,26495207799404518,26495209977773508],[201,131275,26495207121529005,26495210655649026],[201,524290,-1975306045508212,-1975298974196867],[201,524292,-1975303130061553,-1975301889643525],[201,524299,24519904610140814,24519908147332138],[201,524301,-1975303130061553,-1975301889643525],[201,524355,-26495210655649026,-26495207121529005],[201,524426,-26495210655649026,-26495207121529005],[201,524482,24519904610140814,24519908147332138],[201,524484,-1975303130061553,-1975301889643525],[201,524491,-1975306045508212,-1975298974196867],[201,524493,-1975303130061553,-1975301889643525],[202,5,-9297000684250004,-9296998164928852],[202,10,231170470341529204,231170553725604488],[202,66,-316854179884817992,-316854096746635744],[202,71,66238017825195074,66238026617750008],[202,72,85683543021031256,85683709543288788],[202,77,-75535024782678860,-75535018509445078],[202,130,85683543021031256,85683709543288788],[202,135,-75535024782678860,-75535018509445078],[202,136,-316854179884817992,-316854096746635744],[202,141,66238017825195074,66238026617750008],[202,192,231170470341529204,231170553725604488],[202,207,-9297000684250004,-9296998164928852],[202,257,26495207635626304,26495210141551732],[202,260,-17198211976622880,-17198206951376300],[202,267,39742809972538796,39742816693228256],[202,270,-26495210141551732,-26495207635626304],[202,326,9296998164928852,9297000684250004],[202,329,-13247606551676524,-13247602336912492],[202,387,-13247606551676524,-13247602336912492],[202,396,9296998164928852,9297000684250004],[202,449,39742809972538796,39742816693228256],[202,452,-26495210141551732,-26495207635626304],[202,459,26495207635626304,26495210141551732],[202,462,-17198211976622880,-17198206951376300],[202,1025,-17198211976622880,-17198206951376300],[202,1028,26495207635626304,26495210141551732],[202,1035,-26495210141551732,-26495207635626304],[202,1038,39742809972538796,39742816693228256],[202,1091,9296998164928852,9297000684250004],[202,1100,-13247606551676524,-13247602336912492],[202,1158,-13247606551676524,-13247602336912492],[202,1161,9296998164928852,9297000684250004],[202,1217,-26495210141551732,-26495207635626304],[202,1220,39742809972538796,39742816693228256],[202,1227,-17198211976622880,-17198206951376300],[202,1230,26495207635626304,26495210141551732],[202,1280,-9297000684250004,-9296998164928852],[202,1346,66238017825195074,66238026617750008],[202,1352,-75535024782678860,-75535018509445078],[202,1410,-75535024782678860,-75535018509445078],[202,1416,66238017825195074,66238026617750008],[202,1482,-9297000684250004,-9296998164928852],[202,131073,-3950606322255178,-3950603717154982],[202,131086,22544601642609286,22544606095158586],[202,131139,45089204212760992,45089211262774750],[202,131142,-49039814979929732,-49039810535016170],[202,131145,-49039814979929732,-49039810535016170],[202,131148,26495204439857584,26495213337320446],[202,131203,-49039814979929732,-49039810535016170],[202,131206,26495204439857584,26495213337320446],[202,131209,45089204212760992,45089211262774750],[202,131212,-49039814979929732,-49039810535016170],[202,131268,22544601642609286,22544606095158586],[202,131275,-3950606322255178,-3950603717154982],[202,131328,-22544606473695306,-22544601264072564],[202,131338,-26495210190850288,-26495207586327742],[202,131394,3950603717154982,3950606322255178],[202,131464,3950603717154982,3950606322255178],[202,131520,-26495210190850288,-26495207586327742],[202,131530,-22544606473695306,-22544601264072564],[202,132096,26495207586327742,26495210190850288],[202,132106,3950601491169156,3950608548241002],[202,132168,22544601642609286,22544606095158586],[202,132226,22544601642609286,22544606095158586],[202,132288,3950601491169156,3950608548241002],[202,132298,26495207586327742,26495210190850288],[202,524289,-22544606473695306,-22544601264072564],[202,524292,26495207586327742,26495210190850288],[202,524299,-26495210190850288,-26495207586327742],[202,524302,3950601491169156,3950608548241002],[202,524355,3950603717154982,3950606322255178],[202,524364,22544601642609286,22544606095158586],[202,524422,22544601642609286,22544606095158586],[202,524425,3950603717154982,3950606322255178],[202,524481,-26495210190850288,-26495207586327742],[202,524484,3950601491169156,3950608548241002],[202,524491,-22544606473695306,-22544601264072564],[202,524494,26495207586327742,26495210190850288],[202,524544,-3950606322255178,-3950603717154982],[202,524610,45089204212760992,45089211262774750],[202,524616,-49039814979929732,-49039810535016170],[202,524674,-49039814979929732,-49039810535016170],[202,524680,45089204212760992,45089211262774750],[202,524746,-3950606322255178,-3950603717154982],[202,525322,22544601642609286,22544606095158586],[202,525378,-49039814979929732,-49039810535016170],[202,525384,26495204439857584,26495213337320446],[202,525442,26495204439857584,26495213337320446],[202,525448,-49039814979929732,-49039810535016170],[202,525504,22544601642609286,22544606095158586],[202,655360,26495207490199320,26495210286978712],[202,655370,-30445818782250594,-30445809034337592],[202,655432,56941019321316304,56941026272449914],[202,655490,56941019321316304,56941026272449914],[202,655552,-30445818782250594,-30445809034337592],[202,655562,26495207490199320,26495210286978712],[204,0,-18594001027636998,-18593996670720716],[204,3,-3950606264617852,-3950603774792306],[204,12,-11272305024301474,-11272298844582466],[204,15,-4260574858,4260574864],[204,68,54693605669021029,54693650731369441],[204,71,-47064512094016005,-47064508401224809],[204,72,-62015351366925919,-62015298862938325],[204,75,43113900199647331,43113910256183319],[204,132,-62015351366925919,-62015298862938325],[204,135,43113900199647331,43113910256183319],[204,136,54693605669021029,54693650731369441],[204,139,-47064512094016005,-47064508401224809],[204,192,-11272305024301474,-11272298844582466],[204,195,-4260574858,4260574864],[204,204,-18594001027636998,-18593996670720716],[204,207,-3950606264617852,-3950603774792306],[204,257,-1975303106925307,-1975301912779772],[204,258,1975301912779772,1975303106925307],[204,269,-1975303106925307,-1975301912779772],[204,270,-1194053189,1194053190],[204,326,-11272303635356703,-11272300233527231],[204,330,13247602302125610,13247606586463402],[204,390,13247602302125610,13247606586463402],[204,394,-11272303635356703,-11272300233527231],[204,449,-1975303106925307,-1975301912779772],[204,450,-1194053189,1194053190],[204,461,-1975303106925307,-1975301912779772],[204,462,1975301912779772,1975303106925307],[204,1025,1975301912779772,1975303106925307],[204,1026,11272300744096280,11272303124787655],[204,1037,1975301912779772,1975303106925307],[204,1038,-1975303106925307,-1975301912779772],[204,1094,13247602302125610,13247606586463402],[204,1098,-2124775455,2124775457],[204,1158,-2124775455,2124775457],[204,1162,13247602302125610,13247606586463402],[204,1217,1975301912779772,1975303106925307],[204,1218,-1975303106925307,-1975301912779772],[204,1229,1975301912779772,1975303106925307],[204,1230,11272300744096280,11272303124787655],[204,1348,19871405230482798,19871408102400732],[204,1352,-19871408102400732,-19871405230482798],[204,1412,-19871408102400732,-19871405230482798],[204,1416,19871405230482798,19871408102400732],[204,32770,-3950606255704424,-3950603783705734],[204,32782,22544602161328920,22544605576438951],[204,32837,26495207799404518,26495209977773508],[204,32838,-26495209977773508,-26495207799404518],[204,32841,-26495209977773508,-26495207799404518],[204,32842,-2178588646,2178588643],[204,32901,-26495209977773508,-26495207799404518],[204,32902,-2178588646,2178588643],[204,32905,26495207799404518,26495209977773508],[204,32906,-26495209977773508,-26495207799404518],[204,32962,22544602161328920,22544605576438951],[204,32974,-3950606255704424,-3950603783705734],[204,33024,-1975303102468593,-1975301917236486],[204,33036,-1975303102468593,-1975301917236486],[204,33216,-1975303102468593,-1975301917236486],[204,33228,-1975303102468593,-1975301917236486],[204,33792,1975301917236486,1975303102468593],[204,33804,1975301917236486,1975303102468593],[204,33984,1975301917236486,1975303102468593],[204,33996,1975301917236486,1975303102468593],[204,131074,-9297000814034204,-9296998035144653],[204,131086,1975300959240086,1975304060464994],[204,131141,-26495209977773508,-26495207799404518],[204,131142,8599102676277534,8599106787722050],[204,131145,26495207799404518,26495209977773508],[204,131146,-19871408879756524,-19871404453126997],[204,131205,26495207799404518,26495209977773508],[204,131206,-19871408879756524,-19871404453126997],[204,131209,-26495209977773508,-26495207799404518],[204,131210,8599102676277534,8599106787722050],[204,131266,1975300959240086,1975304060464994],[204,131278,-9297000814034204,-9296998035144653],[204,131328,1975301917236486,1975303102468593],[204,131340,1975301917236486,1975303102468593],[204,131520,1975301917236486,1975303102468593],[204,131532,1975301917236486,1975303102468593],[204,132096,-1975303102468593,-1975301917236486],[204,132108,-1975303102468593,-1975301917236486],[204,132288,-1975303102468593,-1975301917236486],[204,132300,-1975303102468593,-1975301917236486],[204,163908,-49039814477679612,-49039811037266288],[204,163912,49039811037266288,49039814477679612],[204,163972,49039811037266288,49039814477679612],[204,163976,-49039814477679612,-49039811037266288],[204,524289,1975301889643525,1975303130061553],[204,524290,11272300696813670,11272303172070267],[204,524301,1975301889643525,1975303130061553],[204,524302,-1975303130061553,-1975301889643525],[204,524358,31143706348854335,31143710852913125],[204,524362,-17896106405970981,-17896101907207464],[204,524422,-17896106405970981,-17896101907207464],[204,524426,31143706348854335,31143710852913125],[204,524481,1975301889643525,1975303130061553],[204,524482,-1975303130061553,-1975301889643525],[204,524493,1975301889643525,1975303130061553],[204,524494,11272300696813670,11272303172070267],[204,524612,6623801159963560,6623803284330947],[204,524616,-6623803284330947,-6623801159963560],[204,524676,-6623803284330947,-6623801159963560],[204,524680,6623801159963560,6623803284330947],[204,525380,-6623803284330947,-6623801159963560],[204,525384,6623801159963560,6623803284330947],[204,525444,6623801159963560,6623803284330947],[204,525448,-6623803284330947,-6623801159963560],[204,557056,1975301877105131,1975303142599947],[204,557068,1975301877105131,1975303142599947],[204,557248,1975301877105131,1975303142599947],[204,557260,1975301877105131,1975303142599947],[204,655360,-1975303142599947,-1975301877105131],[204,655372,-1975303142599947,-1975301877105131],[204,655552,-1975303142599947,-1975301877105131],[204,655564,-1975303142599947,-1975301877105131],[207,3,-3950606264617852,-3950603774792306],[207,5,-9297000684250004,-9296998164928852],[207,6,15222904008319537,15222909899974555],[207,9,15222904008319537,15222909899974555],[207,10,-58336815178304206,-58336809185820542],[207,12,-3950606264617852,-3950603774792306],[207,15,-45089208874918688,-45089206600617048],[207,65,67633806676178144,67633816537125456],[207,66,26495207701858484,26495210075319546],[207,68,-69609119643958417,-69609108589050261],[207,71,26495207701858484,26495210075319546],[207,72,20569298579708561,20569304138354223],[207,75,67633806676178144,67633816537125456],[207,77,20569298579708561,20569304138354223],[207,78,-69609119643958417,-69609108589050261],[207,129,-69609119643958417,-69609108589050261],[207,130,20569298579708561,20569304138354223],[207,132,67633806676178144,67633816537125456],[207,135,20569298579708561,20569304138354223],[207,136,26495207701858484,26495210075319546],[207,139,-69609119643958417,-69609108589050261],[207,141,26495207701858484,26495210075319546],[207,142,67633806676178144,67633816537125456],[207,192,-45089208874918688,-45089206600617048],[207,195,-3950606264617852,-3950603774792306],[207,197,-58336815178304206,-58336809185820542],[207,198,15222904008319537,15222909899974555],[207,201,15222904008319537,15222909899974555],[207,202,-9297000684250004,-9296998164928852],[207,204,-3950606264617852,-3950603774792306],[257,0,-4648502458569680,-4648496966019744],[257,6,-1975304034893986,-1975300984811094],[257,10,-15920803246405425,-15920800047067943],[257,66,240160072890335656,240160107950300992],[257,68,-1975304506421476,-1975300513283600],[257,72,-4648502338601082,-4648497085988341],[257,78,-3950606208579430,-3950603830830732],[257,130,-4648502338601082,-4648497085988341],[257,192,-15920803246405425,-15920800047067943],[257,198,-1975303106925307,-1975301912779772],[257,202,26495207635626304,26495210141551732],[257,204,-1975303106925307,-1975301912779772],[257,257,-4648502458569680,-4648496966019744],[257,263,-1975304034893986,-1975300984811094],[257,267,-15920803246405425,-15920800047067943],[257,323,240160072890335656,240160107950300992],[257,325,-1975304506421476,-1975300513283600],[257,329,-4648502338601082,-4648497085988341],[257,335,-3950606208579430,-3950603830830732],[257,387,-4648502338601082,-4648497085988341],[257,449,-15920803246405425,-15920800047067943],[257,455,-1975303106925307,-1975301912779772],[257,459,26495207635626304,26495210141551732],[257,461,-1975303106925307,-1975301912779772],[257,514,-1975304531698390,-1975300488006682],[257,576,-1975304047051064,-1975300972654016],[257,582,-22544604432275006,-22544603305492866],[257,586,-1975303104304567,-1975301915400511],[257,706,-1975303106832961,-1975301912872117],[257,771,-1975304531698390,-1975300488006682],[257,833,-1975304047051064,-1975300972654016],[257,839,-22544604432275006,-22544603305492866],[257,843,-1975303104304567,-1975301915400511],[257,963,-1975303106832961,-1975301912872117],[257,1026,-1975304506421476,-1975300513283600],[257,1088,-1975304034893986,-1975300984811094],[257,1094,-22544604437459344,-22544603300308524],[257,1098,-1975303106925307,-1975301912779772],[257,1162,-1975303106925307,-1975301912779772],[257,1164,-22544604437459344,-22544603300308524],[257,1218,-3950606208579430,-3950603830830732],[257,1283,-1975304506421476,-1975300513283600],[257,1345,-1975304034893986,-1975300984811094],[257,1351,-22544604437459344,-22544603300308524],[257,1355,-1975303106925307,-1975301912779772],[257,1419,-1975303106925307,-1975301912779772],[257,1421,-22544604437459344,-22544603300308524],[257,1475,-3950606208579430,-3950603830830732],[257,1602,26495207853670452,26495209923507576],[257,1859,26495207853670452,26495209923507576],[258,0,-42841841848850176,-42841784433309880],[258,9,6623799524173159,6623804920121353],[258,65,-240160109310537124,-240160071530099528],[258,68,8599101730286822,8599107733712757],[258,72,-62015351366925919,-62015298862938325],[258,129,15920799016722807,15920804276750552],[258,136,-18594003438885652,-18593994259472046],[258,192,-222961907731674894,-222961854180962580],[258,201,-24519908074897335,-24519904682575622],[258,204,1975301912779772,1975303106925307],[258,258,-42841841848850176,-42841784433309880],[258,267,6623799524173159,6623804920121353],[258,323,-240160109310537124,-240160071530099528],[258,326,8599101730286822,8599107733712757],[258,330,-62015351366925919,-62015298862938325],[258,387,15920799016722807,15920804276750552],[258,394,-18594003438885652,-18593994259472046],[258,450,-222961907731674894,-222961854180962580],[258,459,-24519908074897335,-24519904682575622],[258,462,1975301912779772,1975303106925307],[258,513,1975300488006682,1975304531698390],[258,520,1975300387251397,1975304632453679],[258,576,232566281601026132,232566321236466156],[258,585,24519905362432319,24519907395040631],[258,640,-1975305323765481,-1975299695939594],[258,705,1975301912872117,1975303106832961],[258,712,45089206499321174,45089208976214568],[258,771,1975300488006682,1975304531698390],[258,778,1975300387251397,1975304632453679],[258,834,232566281601026132,232566321236466156],[258,843,24519905362432319,24519907395040631],[258,898,-1975305323765481,-1975299695939594],[258,963,1975301912872117,1975303106832961],[258,970,45089206499321174,45089208976214568],[258,1025,1975300513283600,1975304506421476],[258,1032,3950600776488312,3950609262921848],[258,1088,255808774717255568,255808825243183778],[258,1097,24519905354627238,24519907402845709],[258,1152,22544599251748898,22544608486018976],[258,1161,1975301912779772,1975303106925307],[258,1164,22544603300308524,22544604437459344],[258,1217,3950603830830732,3950606208579430],[258,1224,67633806676178144,67633816537125456],[258,1283,1975300513283600,1975304506421476],[258,1290,3950600776488312,3950609262921848],[258,1346,255808774717255568,255808825243183778],[258,1355,24519905354627238,24519907402845709],[258,1410,22544599251748898,22544608486018976],[258,1419,1975301912779772,1975303106925307],[258,1422,22544603300308524,22544604437459344],[258,1475,3950603830830732,3950606208579430],[258,1482,67633806676178144,67633816537125456],[258,1536,-26495211840725034,-26495205936452994],[258,1601,-26495209923507576,-26495207853670452],[258,1608,-26495209986088162,-26495207791089865],[258,1672,-13247605066170506,-13247603822418509],[258,1728,-39742815056676876,-39742811609090167],[258,1794,-26495211840725034,-26495205936452994],[258,1859,-26495209923507576,-26495207853670452],[258,1866,-26495209986088162,-26495207791089865],[258,1930,-13247605066170506,-13247603822418509],[258,1986,-39742815056676876,-39742811609090167],[258,2112,-3950608236257121,-3950601803153038],[258,2370,-3950608236257121,-3950601803153038],[258,3208,-13247605070715450,-13247603817873562],[258,3264,-13247605066170506,-13247603822418509],[258,3466,-13247605070715450,-13247603817873562],[258,3522,-13247605066170506,-13247603822418509],[258,131136,-4648501525518317,-4648497899071108],[258,131272,-13247605096148654,-13247603792440361],[258,131394,-4648501525518317,-4648497899071108],[258,131530,-13247605096148654,-13247603792440361],[258,132232,1975301885638544,1975303134066536],[258,132490,1975301885638544,1975303134066536],[258,524352,6623799170377024,6623805273917482],[258,524416,11272301474344214,11272302394539722],[258,524488,1975301857911278,1975303161793801],[258,524610,6623799170377024,6623805273917482],[258,524674,11272301474344214,11272302394539722],[258,524746,1975301857911278,1975303161793801],[258,525448,22544603248067364,22544604489700504],[258,525504,1975301889664154,1975303130040923],[258,525706,22544603248067364,22544604489700504],[258,525762,1975301889664154,1975303130040923],[258,1048640,-1975304235590111,-1975300784114970],[258,1048898,-1975304235590111,-1975300784114970],[258,1049736,-13247605066971786,-13247603821617226],[258,1049792,-13247605061578886,-13247603827010127],[258,1049994,-13247605066971786,-13247603821617226],[258,1050050,-13247605061578886,-13247603827010127],[258,16777280,-1975304047051064,-1975300972654016],[258,16777538,-1975304047051064,-1975300972654016],[260,3,1975300984811094,1975304034893986],[260,10,4648498108918473,4648501315670959],[260,65,1975300513283600,1975304506421476],[260,66,-8599107733712757,-8599101730286822],[260,72,9296995143061538,9297003706117328],[260,75,-22544606192796140,-22544601544971738],[260,136,-8599107733712757,-8599101730286822],[260,192,4648498108918473,4648501315670959],[260,195,1975301912779772,1975303106925307],[260,201,1975301912779772,1975303106925307],[260,202,-17198211976622880,-17198206951376300],[260,263,1975300984811094,1975304034893986],[260,270,4648498108918473,4648501315670959],[260,325,1975300513283600,1975304506421476],[260,326,-8599107733712757,-8599101730286822],[260,332,9296995143061538,9297003706117328],[260,335,-22544606192796140,-22544601544971738],[260,396,-8599107733712757,-8599101730286822],[260,452,4648498108918473,4648501315670959],[260,455,1975301912779772,1975303106925307],[260,461,1975301912779772,1975303106925307],[260,462,-17198211976622880,-17198206951376300],[260,579,22544603305492866,22544604432275006],[260,586,1975301915400511,1975303104304567],[260,712,1975301912872117,1975303106832961],[260,839,22544603305492866,22544604432275006],[260,846,1975301915400511,1975303104304567],[260,972,1975301912872117,1975303106832961],[260,1032,1975300513283600,1975304506421476],[260,1091,22544603300308524,22544604437459344],[260,1098,1975301912779772,1975303106925307],[260,1152,1975300984811094,1975304034893986],[260,1161,22544603300308524,22544604437459344],[260,1162,1975301912779772,1975303106925307],[260,1224,-22544606192796140,-22544601544971738],[260,1292,1975300513283600,1975304506421476],[260,1351,22544603300308524,22544604437459344],[260,1358,1975301912779772,1975303106925307],[260,1412,1975300984811094,1975304034893986],[260,1421,22544603300308524,22544604437459344],[260,1422,1975301912779772,1975303106925307],[260,1484,-22544606192796140,-22544601544971738],[260,1672,-13247605037567427,-13247603851021587],[260,1932,-13247605037567427,-13247603851021587],[260,3208,-13247605036737943,-13247603851851071],[260,3468,-13247605036737943,-13247603851851071],[260,32835,-13247605033203059,-13247603855385956],[260,32842,1975301917270118,1975303102434961],[260,32968,1975301917236486,1975303102468593],[260,33095,-13247605033203059,-13247603855385956],[260,33102,1975301917270118,1975303102434961],[260,33228,1975301917236486,1975303102468593],[260,33928,22544603307191776,22544604430576096],[260,34188,22544603307191776,22544604430576096],[260,131146,4648499087034444,4648500337554984],[260,131272,-13247605066155522,-13247603822433492],[260,131406,4648499087034444,4648500337554984],[260,131532,-13247605066155522,-13247603822433492],[260,132232,1975301917236486,1975303102468593],[260,132492,1975301917236486,1975303102468593],[260,524488,4648499087000812,4648500337588616],[260,524748,4648499087000812,4648500337588616],[260,525448,1975301917270118,1975303102434961],[260,525708,1975301917270118,1975303102434961],[260,1049736,-13247605033169427,-13247603855419588],[260,1049996,-13247605033169427,-13247603855419588],[263,3,1975300984811094,1975304034893986],[263,6,-1975304034893986,-1975300984811094],[263,72,-26495210023626872,-26495207753551168],[263,75,-24519907402845709,-24519905354627238],[263,77,-19871408102400732,-19871405230482798],[263,78,17896102123555768,17896106189622669],[263,195,1975301912779772,1975303106925307],[263,198,-1975303106925307,-1975301912779772],[263,257,-1975304034893986,-1975300984811094],[263,260,1975300984811094,1975304034893986],[263,329,17896102123555768,17896106189622669],[263,330,-19871408102400732,-19871405230482798],[263,332,-24519907402845709,-24519905354627238],[263,335,-26495210023626872,-26495207753551168],[263,449,-1975303106925307,-1975301912779772],[263,452,1975301912779772,1975303106925307],[263,579,22544603305492866,22544604432275006],[263,582,-22544604432275006,-22544603305492866],[263,833,-22544604432275006,-22544603305492866],[263,836,22544603305492866,22544604432275006],[263,1091,22544603300308524,22544604437459344],[263,1094,-22544604437459344,-22544603300308524],[263,1345,-22544604437459344,-22544603300308524],[263,1348,22544603300308524,22544604437459344],[263,32832,-13247605033203059,-13247603855385956],[263,32837,-13247605033203059,-13247603855385956],[263,33090,-13247605033203059,-13247603855385956],[263,33095,-13247605033203059,-13247603855385956],[264,0,-1395798520970888,-1395780249387636],[264,3,-13247605973043456,-13247602915545560],[264,6,-4648501315670959,-4648498108918473],[264,65,15920799016722807,15920804276750552],[264,66,54693605669021029,54693650731369441],[264,68,-9297003706117328,-9296995143061538],[264,71,26495207753551168,26495210023626872],[264,130,-8145018103,8145018085],[264,132,8599101730286822,8599107733712757],[264,192,236209459374475712,236209511426750774],[264,195,11272300744096280,11272303124787655],[264,198,13247601047218919,13247607841370104],[264,264,-1395798520970888,-1395780249387636],[264,267,-13247605973043456,-13247602915545560],[264,270,-4648501315670959,-4648498108918473],[264,329,15920799016722807,15920804276750552],[264,330,54693605669021029,54693650731369441],[264,332,-9297003706117328,-9296995143061538],[264,335,26495207753551168,26495210023626872],[264,394,-8145018103,8145018085],[264,396,8599101730286822,8599107733712757],[264,456,236209459374475712,236209511426750774],[264,459,11272300744096280,11272303124787655],[264,462,13247601047218919,13247607841370104],[264,514,-1975304632453679,-1975300387251397],[264,576,-3950608236257121,-3950601803153038],[264,579,-22544604432275006,-22544603305492866],[264,582,-1975303104304567,-1975301915400511],[264,640,-3950609262610422,-3950600776799744],[264,706,-49039815252370900,-49039810262574998],[264,708,-1975303106832961,-1975301912872117],[264,778,-1975304632453679,-1975300387251397],[264,840,-3950608236257121,-3950601803153038],[264,843,-22544604432275006,-22544603305492866],[264,846,-1975303104304567,-1975301915400511],[264,904,-3950609262610422,-3950600776799744],[264,970,-49039815252370900,-49039810262574998],[264,972,-1975303106832961,-1975301912872117],[264,1026,-3950609262921848,-3950600776488312],[264,1028,-1975304506421476,-1975300513283600],[264,1088,23242490579994047,23242506542953071],[264,1091,-22544604437459344,-22544603300308524],[264,1094,-1975303106925307,-1975301912779772],[264,1152,-270333833954743796,-270333790528810368],[264,1158,-24519907402845709,-24519905354627238],[264,1218,-69609119643958417,-69609108589050261],[264,1220,22544601544971738,22544606192796140],[264,1290,-3950609262921848,-3950600776488312],[264,1292,-1975304506421476,-1975300513283600],[264,1352,23242490579994047,23242506542953071],[264,1355,-22544604437459344,-22544603300308524],[264,1358,-1975303106925307,-1975301912779772],[264,1416,-270333833954743796,-270333790528810368],[264,1422,-24519907402845709,-24519905354627238],[264,1482,-69609119643958417,-69609108589050261],[264,1484,22544601544971738,22544606192796140],[264,1536,13247602731588215,13247606157000801],[264,1602,26495207791089865,26495209986088162],[264,1666,13247603822418509,13247605066170506],[264,1668,13247603851021587,13247605037567427],[264,1728,-7321700231122540,-7321693598351231],[264,1800,13247602731588215,13247606157000801],[264,1866,26495207791089865,26495209986088162],[264,1930,13247603822418509,13247605066170506],[264,1932,13247603851021587,13247605037567427],[264,1992,-7321700231122540,-7321693598351231],[264,2176,-1975305323765481,-1975299695939594],[264,2440,-1975305323765481,-1975299695939594],[264,3072,17198207762730769,17198211165268399],[264,3202,13247603817873562,13247605070715450],[264,3204,13247603851851071,13247605036737943],[264,3264,11272300718113942,11272303150769995],[264,3336,17198207762730769,17198211165268399],[264,3466,13247603817873562,13247605070715450],[264,3468,13247603851851071,13247605036737943],[264,3528,11272300718113942,11272303150769995],[264,3712,-3950606276156332,-3950603763253824],[264,3976,-3950606276156332,-3950603763253824],[264,131074,-4648501379109328,-4648498045480103],[264,131136,-6623806726760819,-6623797717533688],[264,131139,13247603855385956,13247605033203059],[264,131142,-6623803284330947,-6623801159963560],[264,131200,11272298596064681,11272305272819252],[264,131266,31143705027114464,31143712174652992],[264,131268,11272300873839524,11272302995044411],[264,131338,-4648501379109328,-4648498045480103],[264,131400,-6623806726760819,-6623797717533688],[264,131403,13247603855385956,13247605033203059],[264,131406,-6623803284330947,-6623801159963560],[264,131464,11272298596064681,11272305272819252],[264,131530,31143705027114464,31143712174652992],[264,131532,11272300873839524,11272302995044411],[264,131650,-1975303127512529,-1975301892192548],[264,131776,-22544604485915178,-22544603251852693],[264,131914,-1975303127512529,-1975301892192548],[264,132040,-22544604485915178,-22544603251852693],[264,132096,-1975304605835260,-1975300413869816],[264,132162,-1975303130061553,-1975301889643525],[264,132226,-3950606107262344,-3950603932147814],[264,132228,-24519907391505747,-24519905365967204],[264,132288,-18594001255457720,-18593996442899990],[264,132360,-1975304605835260,-1975300413869816],[264,132426,-1975303130061553,-1975301889643525],[264,132490,-3950606107262344,-3950603932147814],[264,132492,-24519907391505747,-24519905365967204],[264,132552,-18594001255457720,-18593996442899990],[264,132736,13247603826875223,13247605061713792],[264,133000,13247603826875223,13247605061713792],[264,134272,13247603827702546,13247605060886466],[264,134536,13247603827702546,13247605060886466],[264,524352,-4648502622318527,-4648496802270899],[264,524416,1277404472099680,1277411162426122],[264,524482,-6623803529731050,-6623800914563458],[264,524484,-4648500337588616,-4648499087000812],[264,524616,-4648502622318527,-4648496802270899],[264,524680,1277404472099680,1277411162426122],[264,524746,-6623803529731050,-6623800914563458],[264,524748,-4648500337588616,-4648499087000812],[264,524992,-1975303134066536,-1975301885638544],[264,525256,-1975303134066536,-1975301885638544],[264,525312,-1975305295486367,-1975299724218711],[264,525442,-22544604489700504,-22544603248067364],[264,525444,-1975303102434961,-1975301917270118],[264,525504,18593996132872130,18594001565485586],[264,525576,-1975305295486367,-1975299724218711],[264,525706,-22544604489700504,-22544603248067364],[264,525708,-1975303102434961,-1975301917270118],[264,525768,18593996132872130,18594001565485586],[264,525952,13247603821511848,13247605067077166],[264,526216,13247603821511848,13247605067077166],[264,527488,13247603826875223,13247605061713792],[264,527752,13247603826875223,13247605061713792],[264,655552,-3950606322589598,-3950603716820562],[264,655816,-3950606322589598,-3950603716820562],[264,656512,-45089208971600236,-45089206503935504],[264,656776,-45089208971600236,-45089206503935504],[264,1048704,-1975305295246081,-1975299724458993],[264,1048968,-1975305295246081,-1975299724458993],[264,1049600,17198207785323578,17198211142675593],[264,1049730,13247603821617226,13247605066971786],[264,1049732,13247603855419588,13247605033169427],[264,1049792,11272300724575166,11272303144308768],[264,1049864,17198207785323578,17198211142675593],[264,1049994,13247603821617226,13247605066971786],[264,1049996,13247603855419588,13247605033169427],[264,1050056,11272300724575166,11272303144308768],[264,1050240,-1975303134066535,-1975301885638543],[264,1050504,-1975303134066535,-1975301885638543],[264,1051776,-24519907156493900,-24519905600979050],[264,1052040,-24519907156493900,-24519905600979050],[264,1180800,13247603822461068,13247605066127948],[264,1181064,13247603822461068,13247605066127948],[264,1574016,26495207648534336,26495210128643692],[264,1574280,26495207648534336,26495210128643692],[264,1704960,13247603822461068,13247605066127948],[264,1705224,13247603822461068,13247605066127948],[267,0,-22544604716605376,-22544603021162496],[267,3,-13247605973043456,-13247602915545560],[267,9,6623799524173159,6623804920121353],[267,10,-15920803246405425,-15920800047067943],[267,68,22544601544971738,22544606192796140],[267,71,24519905354627238,24519907402845709],[267,77,-8599107733712757,-8599101730286822],[267,78,6623801213223040,6623803231071470],[267,192,13247603851021587,13247605037567427],[267,195,-1975303106925307,-1975301912779772],[267,201,-24519910199672792,-24519902557800167],[267,202,39742809972538796,39742816693228256],[267,257,-15920803246405425,-15920800047067943],[267,258,6623799524173159,6623804920121353],[267,264,-13247605973043456,-13247602915545560],[267,267,-22544604716605376,-22544603021162496],[267,325,6623801213223040,6623803231071470],[267,326,-8599107733712757,-8599101730286822],[267,332,24519905354627238,24519907402845709],[267,335,22544601544971738,22544606192796140],[267,449,39742809972538796,39742816693228256],[267,450,-24519910199672792,-24519902557800167],[267,456,-1975303106925307,-1975301912779772],[267,459,13247603851021587,13247605037567427],[267,579,-22544604432275006,-22544603305492866],[267,585,24519905362432319,24519907395040631],[267,586,-1975303104304567,-1975301915400511],[267,833,-1975303104304567,-1975301915400511],[267,834,24519905362432319,24519907395040631],[267,840,-22544604432275006,-22544603305492866],[267,1091,-22544604437459344,-22544603300308524],[267,1097,24519905354627238,24519907402845709],[267,1098,-1975303106925307,-1975301912779772],[267,1161,1975301912779772,1975303106925307],[267,1162,-1975303106925307,-1975301912779772],[267,1345,-1975303106925307,-1975301912779772],[267,1346,24519905354627238,24519907402845709],[267,1352,-22544604437459344,-22544603300308524],[267,1409,-1975303106925307,-1975301912779772],[267,1410,1975301912779772,1975303106925307],[267,131136,13247603855385956,13247605033203059],[267,131145,6623801159963560,6623803284330947],[267,131146,6623801172992632,6623803271301876],[267,131393,6623801172992632,6623803271301876],[267,131394,6623801159963560,6623803284330947],[267,131403,13247603855385956,13247605033203059],[269,71,19871405230482798,19871408102400732],[269,75,8599101730286822,8599107733712757],[269,78,-28470512964195555,-28470509832687554],[269,201,1975301912779772,1975303106925307],[269,204,-1975303106925307,-1975301912779772],[269,323,-28470512964195555,-28470509832687554],[269,326,8599101730286822,8599107733712757],[269,330,19871405230482798,19871408102400732],[269,449,-1975303106925307,-1975301912779772],[269,452,1975301912779772,1975303106925307],[269,1161,22544603300308524,22544604437459344],[269,1164,-22544604437459344,-22544603300308524],[269,1409,-22544604437459344,-22544603300308524],[269,1412,22544603300308524,22544604437459344],[270,6,-4648501315670959,-4648498108918473],[270,10,4648498108918473,4648501315670959],[270,65,3950603830830732,3950606208579430],[270,71,-17896106189622669,-17896102123555768],[270,75,-6623803231071470,-6623801213223040],[270,77,28470509832687554,28470512964195555],[270,192,-1975303106832961,-1975301912872117],[270,198,24519904682575622,24519908074897335],[270,202,-26495210141551732,-26495207635626304],[270,204,-1194053189,1194053190],[270,260,4648498108918473,4648501315670959],[270,264,-4648501315670959,-4648498108918473],[270,323,28470509832687554,28470512964195555],[270,325,-6623803231071470,-6623801213223040],[270,329,-17896106189622669,-17896102123555768],[270,335,3950603830830732,3950606208579430],[270,450,-1194053189,1194053190],[270,452,-26495210141551732,-26495207635626304],[270,456,24519904682575622,24519908074897335],[270,462,-1975303106832961,-1975301912872117],[270,582,-1975303104304567,-1975301915400511],[270,586,1975301915400511,1975303104304567],[270,836,1975301915400511,1975303104304567],[270,840,-1975303104304567,-1975301915400511],[270,1094,-1975303106925307,-1975301912779772],[270,1098,1975301912779772,1975303106925307],[270,1158,-24519907402845709,-24519905354627238],[270,1162,1975301912779772,1975303106925307],[270,1164,22544603300308524,22544604437459344],[270,1348,1975301912779772,1975303106925307],[270,1352,-1975303106925307,-1975301912779772],[270,1410,22544603300308524,22544604437459344],[270,1412,1975301912779772,1975303106925307],[270,1416,-24519907402845709,-24519905354627238],[270,32832,1975301917270118,1975303102434961],[270,32844,1975301917270118,1975303102434961],[270,33090,1975301917270118,1975303102434961],[270,33102,1975301917270118,1975303102434961],[270,131136,-1975303102434961,-1975301917270118],[270,131148,-1975303102434961,-1975301917270118],[270,131394,-1975303102434961,-1975301917270118],[270,131406,-1975303102434961,-1975301917270118],[320,3,-1360236128,1360236132],[320,9,11272301510581248,11272302358302688],[320,10,-11272305024301474,-11272298844582466],[320,129,-13247605973043456,-13247602915545560],[320,130,266383184103143623,266383230341000381],[320,136,49039809086990954,49039816427954942],[320,323,-1360236128,1360236132],[320,329,11272301510581248,11272302358302688],[320,330,-11272305024301474,-11272298844582466],[320,449,-13247605973043456,-13247602915545560],[320,450,266383184103143623,266383230341000381],[320,456,49039809086990954,49039816427954942],[320,513,1975300972654016,1975304047051064],[320,514,-227219925291193296,-227219888736530280],[320,520,3950601803153038,3950608236257121],[320,833,1975300972654016,1975304047051064],[320,834,-227219925291193296,-227219888736530280],[320,840,3950601803153038,3950608236257121],[320,1025,1975300984811094,1975304034893986],[320,1026,-270333833954743796,-270333790528810368],[320,1032,22544599251748898,22544608486018976],[320,1162,-3950606264617852,-3950603774792306],[320,1345,1975300984811094,1975304034893986],[320,1346,-270333833954743796,-270333790528810368],[320,1352,22544599251748898,22544608486018976],[320,1482,-3950606264617852,-3950603774792306],[320,1666,66238019701775620,66238024741169450],[320,1672,13247603822418509,13247605066170506],[320,1986,66238019701775620,66238024741169450],[320,1992,13247603822418509,13247605066170506],[320,2050,3950601803153038,3950608236257121],[320,2370,3950601803153038,3950608236257121],[320,3202,13247603822418509,13247605066170506],[320,3208,13247603817873562,13247605070715450],[320,3522,13247603822418509,13247605066170506],[320,3528,13247603817873562,13247605070715450],[320,524290,-13247606172936084,-13247602715652933],[320,524296,11272301474344214,11272302394539722],[320,524610,-13247606172936084,-13247602715652933],[320,524616,11272301474344214,11272302394539722],[320,525442,-1975303130040923,-1975301889664154],[320,525448,-24519907159915920,-24519905597557028],[320,525762,-1975303130040923,-1975301889664154],[320,525768,-24519907159915920,-24519905597557028],[320,1048578,1975300784114970,1975304235590111],[320,1048898,1975300784114970,1975304235590111],[320,1049730,13247603827010127,13247605061578886],[320,1049736,13247603821617226,13247605066971786],[320,1050050,13247603827010127,13247605061578886],[320,1050056,13247603821617226,13247605066971786],[320,16777218,1975300972654016,1975304047051064],[320,16777538,1975300972654016,1975304047051064],[323,3,-1360236128,1360236132],[323,65,-240160109310537124,-240160071530099528],[323,66,240160072890335656,240160107950300992],[323,77,28470509832687554,28470512964195555],[323,78,-28470512964195555,-28470509832687554],[323,132,22544603300308524,22544604437459344],[323,135,22544603300308524,22544604437459344],[323,136,-22544604437459344,-22544603300308524],[323,139,-22544604437459344,-22544603300308524],[323,257,240160072890335656,240160107950300992],[323,258,-240160109310537124,-240160071530099528],[323,269,-28470512964195555,-28470509832687554],[323,270,28470509832687554,28470512964195555],[323,320,-1360236128,1360236132],[323,452,22544603300308524,22544604437459344],[323,455,22544603300308524,22544604437459344],[323,456,-22544604437459344,-22544603300308524],[323,459,-22544604437459344,-22544603300308524],[323,516,-22544604432275006,-22544603305492866],[323,519,-22544604432275006,-22544603305492866],[323,520,22544603305492866,22544604432275006],[323,523,22544603305492866,22544604432275006],[323,705,26495207853670452,26495209923507576],[323,706,-26495209923507576,-26495207853670452],[323,836,-22544604432275006,-22544603305492866],[323,839,-22544604432275006,-22544603305492866],[323,840,22544603305492866,22544604432275006],[323,843,22544603305492866,22544604432275006],[323,897,-26495209923507576,-26495207853670452],[323,898,26495207853670452,26495209923507576],[323,1028,-22544604437459344,-22544603300308524],[323,1031,-22544604437459344,-22544603300308524],[323,1032,22544603300308524,22544604437459344],[323,1035,22544603300308524,22544604437459344],[323,1217,28470509832687554,28470512964195555],[323,1218,-28470512964195555,-28470509832687554],[323,1348,-22544604437459344,-22544603300308524],[323,1351,-22544604437459344,-22544603300308524],[323,1352,22544603300308524,22544604437459344],[323,1355,22544603300308524,22544604437459344],[323,1409,-28470512964195555,-28470509832687554],[323,1410,28470509832687554,28470512964195555],[323,1601,-26495209923507576,-26495207853670452],[323,1602,26495207853670452,26495209923507576],[323,1793,26495207853670452,26495209923507576],[323,1794,-26495209923507576,-26495207853670452],[325,65,1975300513283600,1975304506421476],[325,68,-1975304506421476,-1975300513283600],[325,75,-6623803231071470,-6623801213223040],[325,78,6623801213223040,6623803231071470],[325,257,-1975304506421476,-1975300513283600],[325,260,1975300513283600,1975304506421476],[325,267,6623801213223040,6623803231071470],[325,270,-6623803231071470,-6623801213223040],[326,66,-8599107733712757,-8599101730286822],[326,68,8599101730286822,8599107733712757],[326,75,8599101730286822,8599107733712757],[326,77,-8599107733712757,-8599101730286822],[326,129,-22544604437459344,-22544603300308524],[326,135,-22544604437459344,-22544603300308524],[326,136,-1975303106925307,-1975301912779772],[326,142,-1194053190,1194053189],[326,202,9296998164928852,9297000684250004],[326,204,-11272303635356703,-11272300233527231],[326,258,8599101730286822,8599107733712757],[326,260,-8599107733712757,-8599101730286822],[326,267,-8599107733712757,-8599101730286822],[326,269,8599101730286822,8599107733712757],[326,394,-11272303635356703,-11272300233527231],[326,396,9296998164928852,9297000684250004],[326,449,-22544604437459344,-22544603300308524],[326,455,-22544604437459344,-22544603300308524],[326,456,-1194053190,1194053189],[326,462,-1975303106925307,-1975301912779772],[326,513,22544603305492866,22544604432275006],[326,519,22544603305492866,22544604432275006],[326,520,1975301915400511,1975303104304567],[326,526,1975301915400511,1975303104304567],[326,833,22544603305492866,22544604432275006],[326,839,22544603305492866,22544604432275006],[326,840,1975301915400511,1975303104304567],[326,846,1975301915400511,1975303104304567],[326,1025,22544603300308524,22544604437459344],[326,1031,22544603300308524,22544604437459344],[326,1032,1975301912779772,1975303106925307],[326,1038,1975301912779772,1975303106925307],[326,1345,22544603300308524,22544604437459344],[326,1351,22544603300308524,22544604437459344],[326,1352,1975301912779772,1975303106925307],[326,1358,1975301912779772,1975303106925307],[326,32835,-13247605033203059,-13247603855385956],[326,32837,13247603855385956,13247605033203059],[326,32842,1975301917270118,1975303102434961],[326,32844,-1975303102434961,-1975301917270118],[326,33027,13247603855385956,13247605033203059],[326,33029,-13247605033203059,-13247603855385956],[326,33034,-1975303102434961,-1975301917270118],[326,33036,1975301917270118,1975303102434961],[326,131146,4648499087034444,4648500337554984],[326,131148,-4648500337554984,-4648499087034444],[326,131338,-4648500337554984,-4648499087034444],[326,131340,4648499087034444,4648500337554984],[329,0,22544603021162496,22544604716605376],[329,9,11272301510581248,11272302358302688],[329,65,15920799016722807,15920804276750552],[329,71,-17896106189622669,-17896102123555768],[329,72,-4648502338601082,-4648497085988341],[329,78,17896102123555768,17896106189622669],[329,130,11272300317059811,11272303551824122],[329,139,24519905354627238,24519907402845709],[329,195,-2124775455,2124775457],[329,202,-13247606551676524,-13247602336912492],[329,257,-4648502338601082,-4648497085988341],[329,263,17896102123555768,17896106189622669],[329,264,15920799016722807,15920804276750552],[329,270,-17896106189622669,-17896102123555768],[329,320,11272301510581248,11272302358302688],[329,329,22544603021162496,22544604716605376],[329,387,-13247606551676524,-13247602336912492],[329,394,-2124775455,2124775457],[329,450,24519905354627238,24519907402845709],[329,459,11272300317059811,11272303551824122],[329,514,-24519907395040631,-24519905362432319],[329,523,-24519907395040631,-24519905362432319],[329,834,-24519907395040631,-24519905362432319],[329,843,-24519907395040631,-24519905362432319],[329,1026,-24519907402845709,-24519905354627238],[329,1035,-24519907402845709,-24519905354627238],[329,1346,-24519907402845709,-24519905354627238],[329,1355,-24519907402845709,-24519905354627238],[329,131139,6623801172992632,6623803271301876],[329,131146,-6623803271301876,-6623801172992632],[329,131331,-6623803271301876,-6623801172992632],[329,131338,6623801172992632,6623803271301876],[330,0,-18594001027636998,-18593996670720716],[330,10,-11272305024301474,-11272298844582466],[330,66,54693605669021029,54693650731369441],[330,71,19871405230482798,19871408102400732],[330,72,-62015351366925919,-62015298862938325],[330,77,-19871408102400732,-19871405230482798],[330,129,11272300744096280,11272303124787655],[330,132,1975301912779772,1975303106925307],[330,139,-1975303106925307,-1975301912779772],[330,142,-1194053189,1194053190],[330,195,13247602302125610,13247606586463402],[330,198,-11272303635356703,-11272300233527231],[330,201,-2124775455,2124775457],[330,204,13247602302125610,13247606586463402],[330,258,-62015351366925919,-62015298862938325],[330,263,-19871408102400732,-19871405230482798],[330,264,54693605669021029,54693650731369441],[330,269,19871405230482798,19871408102400732],[330,320,-11272305024301474,-11272298844582466],[330,330,-18594001027636998,-18593996670720716],[330,387,-2124775455,2124775457],[330,390,13247602302125610,13247606586463402],[330,393,13247602302125610,13247606586463402],[330,396,-11272303635356703,-11272300233527231],[330,449,-1975303106925307,-1975301912779772],[330,452,-1194053189,1194053190],[330,459,11272300744096280,11272303124787655],[330,462,1975301912779772,1975303106925307],[330,513,1975301915400511,1975303104304567],[330,516,-1975303104304567,-1975301915400511],[330,523,1975301915400511,1975303104304567],[330,526,-1975303104304567,-1975301915400511],[330,640,-3950606276156332,-3950603763253824],[330,650,22544602288119128,22544605449648746],[330,706,-26495209986088162,-26495207791089865],[330,712,-2216932523,2216932520],[330,833,1975301915400511,1975303104304567],[330,836,-1975303104304567,-1975301915400511],[330,843,1975301915400511,1975303104304567],[330,846,-1975303104304567,-1975301915400511],[330,898,-2216932523,2216932520],[330,904,-26495209986088162,-26495207791089865],[330,960,22544602288119128,22544605449648746],[330,970,-3950606276156332,-3950603763253824],[330,1025,1975301912779772,1975303106925307],[330,1028,-1975303106925307,-1975301912779772],[330,1035,1975301912779772,1975303106925307],[330,1038,-1975303106925307,-1975301912779772],[330,1152,-3950606264617852,-3950603774792306],[330,1162,-4260574858,4260574864],[330,1218,-47064512094016005,-47064508401224809],[330,1224,43113900199647331,43113910256183319],[330,1345,1975301912779772,1975303106925307],[330,1348,-1975303106925307,-1975301912779772],[330,1355,1975301912779772,1975303106925307],[330,1358,-1975303106925307,-1975301912779772],[330,1410,43113900199647331,43113910256183319],[330,1416,-47064512094016005,-47064508401224809],[330,1472,-4260574858,4260574864],[330,1482,-3950606264617852,-3950603774792306],[330,1602,26495207791089865,26495209986088162],[330,1608,-26495209986088162,-26495207791089865],[330,1794,-26495209986088162,-26495207791089865],[330,1800,26495207791089865,26495209986088162],[330,131139,6623801159963560,6623803284330947],[330,131142,-6623803284330947,-6623801159963560],[330,131145,-6623803284330947,-6623801159963560],[330,131148,6623801159963560,6623803284330947],[330,131200,1975301889643525,1975303130061553],[330,131210,-20569302596271653,-20569300121791140],[330,131266,-8599106519519277,-8599102944480312],[330,131272,31143706348854335,31143710852913125],[330,131331,-6623803284330947,-6623801159963560],[330,131334,6623801159963560,6623803284330947],[330,131337,6623801159963560,6623803284330947],[330,131340,-6623803284330947,-6623801159963560],[330,131458,31143706348854335,31143710852913125],[330,131464,-8599106519519277,-8599102944480312],[330,131520,-20569302596271653,-20569300121791140],[330,131530,1975301889643525,1975303130061553],[330,131584,-1975303127512529,-1975301892192548],[330,131594,-1975303127512529,-1975301892192548],[330,131904,-1975303127512529,-1975301892192548],[330,131914,-1975303127512529,-1975301892192548],[330,132096,-1975303130061553,-1975301889643525],[330,132106,-1975303130061553,-1975301889643525],[330,132416,-1975303130061553,-1975301889643525],[330,132426,-1975303130061553,-1975301889643525],[330,524426,-1975303134066536,-1975301885638544],[330,524482,-4648500367937249,-4648499056652180],[330,524488,6623801098016986,6623803346277523],[330,524674,6623801098016986,6623803346277523],[330,524680,-4648500367937249,-4648499056652180],[330,524736,-1975303134066536,-1975301885638544],[332,68,-9297003706117328,-9296995143061538],[332,71,24519905354627238,24519907402845709],[332,72,9296995143061538,9297003706117328],[332,75,-24519907402845709,-24519905354627238],[332,260,9296995143061538,9297003706117328],[332,263,-24519907402845709,-24519905354627238],[332,264,-9297003706117328,-9296995143061538],[332,267,24519905354627238,24519907402845709],[332,1220,24519905354627238,24519907402845709],[332,1224,-24519907402845709,-24519905354627238],[332,1412,-24519907402845709,-24519905354627238],[332,1416,24519905354627238,24519907402845709],[335,65,3950603830830732,3950606208579430],[335,68,22544601544971738,22544606192796140],[335,71,26495207753551168,26495210023626872],[335,72,-26495210023626872,-26495207753551168],[335,75,-22544606192796140,-22544601544971738],[335,78,-3950606208579430,-3950603830830732],[335,257,-3950606208579430,-3950603830830732],[335,260,-22544606192796140,-22544601544971738],[335,263,-26495210023626872,-26495207753551168],[335,264,26495207753551168,26495210023626872],[335,267,22544601544971738,22544606192796140],[335,270,3950603830830732,3950606208579430],[384,3,11272301510581248,11272302358302688],[384,10,-4790774237,4790774243],[384,65,6623799524173159,6623804920121353],[384,66,-43421350142958786,-43421302388547748],[384,68,-4648501315670959,-4648498108918473],[384,72,-209714307449075898,-209714245574972548],[384,75,-13247605037567427,-13247603851021587],[384,78,1975301912872117,1975303106832961],[384,387,11272301510581248,11272302358302688],[384,394,-4790774237,4790774243],[384,449,6623799524173159,6623804920121353],[384,450,-43421350142958786,-43421302388547748],[384,452,-4648501315670959,-4648498108918473],[384,456,-209714307449075898,-209714245574972548],[384,459,-13247605037567427,-13247603851021587],[384,462,1975301912872117,1975303106832961],[384,514,-1975305321237090,-1975299698467991],[384,520,3950600776799744,3950609262610422],[384,586,3950603763253824,3950606276156332],[384,898,-1975305321237090,-1975299698467991],[384,904,3950600776799744,3950609262610422],[384,970,3950603763253824,3950606276156332],[384,1026,23242490579994047,23242506542953071],[384,1028,-1975304034893986,-1975300984811094],[384,1032,255808774717255568,255808825243183778],[384,1098,15222904008319537,15222909899974555],[384,1410,23242490579994047,23242506542953071],[384,1412,-1975304034893986,-1975300984811094],[384,1416,255808774717255568,255808825243183778],[384,1482,15222904008319537,15222909899974555],[384,1602,-24519908070687651,-24519904686785298],[384,1608,-3950609262610422,-3950600776799744],[384,1986,-24519908070687651,-24519904686785298],[384,1992,-3950609262610422,-3950600776799744],[384,2056,-1975305321237090,-1975299698467991],[384,2440,-1975305321237090,-1975299698467991],[384,3144,-24519908070687651,-24519904686785298],[384,3528,-24519908070687651,-24519904686785298],[384,3592,3950603763253824,3950606276156332],[384,3976,3950603763253824,3950606276156332],[384,131136,8599101131740910,8599108332258679],[384,131146,4648499056652180,4648500367937249],[384,131520,8599101131740910,8599108332258679],[384,131530,4648499056652180,4648500367937249],[384,132096,-3950608451914177,-3950601587495984],[384,132480,-3950608451914177,-3950601587495984],[384,524290,15920798878436957,15920804415036409],[384,524296,-19871412418198236,-19871400914685277],[384,524362,8599102944480312,8599106519519277],[384,524674,15920798878436957,15920804415036409],[384,524680,-19871412418198236,-19871400914685277],[384,524746,8599102944480312,8599106519519277],[384,524866,1975301892192548,1975303127512529],[384,524872,24519905292829457,24519907464643494],[384,525250,1975301892192548,1975303127512529],[384,525256,24519905292829457,24519907464643494],[384,525378,8599103049607085,8599106414392500],[384,525384,19871400914685277,19871412418198236],[384,525762,8599103049607085,8599106414392500],[384,525768,19871400914685277,19871412418198236],[384,525832,-26495209977993164,-26495207799184865],[384,526216,-26495209977993164,-26495207799184865],[384,527368,-26495209971802464,-26495207805375563],[384,527752,-26495209971802464,-26495207805375563],[384,1048584,-1975305295212454,-1975299724492630],[384,1048968,-1975305295212454,-1975299724492630],[384,1049672,-24519908060482760,-24519904696990186],[384,1050056,-24519908060482760,-24519904696990186],[384,1050120,1975301885638543,1975303134066535],[384,1050504,1975301885638543,1975303134066535],[384,1051656,24519905600979050,24519907156493900],[384,1052040,24519905600979050,24519907156493900],[384,1573896,-39742815043973846,-39742811621793198],[384,1574280,-39742815043973846,-39742811621793198],[384,1704960,-13247605066127948,-13247603822461068],[384,1705344,-13247605066127948,-13247603822461068],[387,0,22544603021162496,22544604716605376],[387,3,11272301510581248,11272302358302688],[387,68,-24519907402845709,-24519905354627238],[387,71,-24519907402845709,-24519905354627238],[387,72,11272300317059811,11272303551824122],[387,75,24519905354627238,24519907402845709],[387,129,15920799016722807,15920804276750552],[387,130,-4648502338601082,-4648497085988341],[387,201,-2124775455,2124775457],[387,202,-13247606551676524,-13247602336912492],[387,257,-4648502338601082,-4648497085988341],[387,258,15920799016722807,15920804276750552],[387,329,-13247606551676524,-13247602336912492],[387,330,-2124775455,2124775457],[387,384,11272301510581248,11272302358302688],[387,387,22544603021162496,22544604716605376],[387,452,-24519907402845709,-24519905354627238],[387,455,-24519907402845709,-24519905354627238],[387,456,24519905354627238,24519907402845709],[387,459,11272300317059811,11272303551824122],[387,705,-24519907395040631,-24519905362432319],[387,706,24519905362432319,24519907395040631],[387,833,24519905362432319,24519907395040631],[387,834,-24519907395040631,-24519905362432319],[387,1217,-17896106189622669,-17896102123555768],[387,1218,17896102123555768,17896106189622669],[387,1345,17896102123555768,17896106189622669],[387,1346,-17896106189622669,-17896102123555768],[387,524481,6623801172992632,6623803271301876],[387,524482,-6623803271301876,-6623801172992632],[387,524609,-6623803271301876,-6623801172992632],[387,524610,6623801172992632,6623803271301876],[390,65,24519905354627238,24519907402845709],[390,71,24519905354627238,24519907402845709],[390,72,-9297003706117328,-9296995143061538],[390,78,-22544606008242938,-22544601729524940],[390,204,13247602302125610,13247606586463402],[390,330,13247602302125610,13247606586463402],[390,449,24519905354627238,24519907402845709],[390,455,24519905354627238,24519907402845709],[390,456,-22544606008242938,-22544601729524940],[390,462,-9297003706117328,-9296995143061538],[390,1032,24519905354627238,24519907402845709],[390,1038,24519905354627238,24519907402845709],[390,1416,24519905354627238,24519907402845709],[390,1422,24519905354627238,24519907402845709],[393,66,-2424856520,2424856530],[393,68,-1975303106925307,-1975301912779772],[393,75,-13247609011319922,-13247599877269080],[393,77,-1975303106925307,-1975301912779772],[393,195,13247602302125610,13247606586463402],[393,330,13247602302125610,13247606586463402],[393,450,-13247609011319922,-13247599877269080],[393,452,-1975303106925307,-1975301912779772],[393,459,-2424856520,2424856530],[393,461,-1975303106925307,-1975301912779772],[393,1026,-1975303106925307,-1975301912779772],[393,1028,-22544604437459344,-22544603300308524],[393,1035,-1975303106925307,-1975301912779772],[393,1037,-22544604437459344,-22544603300308524],[393,1410,-1975303106925307,-1975301912779772],[393,1412,-22544604437459344,-22544603300308524],[393,1419,-1975303106925307,-1975301912779772],[393,1421,-22544604437459344,-22544603300308524],[394,0,-18594001959353888,-18593995739003822],[394,10,-4790774237,4790774243],[394,65,-24519908074897335,-24519904682575622],[394,68,13247601047218919,13247607841370104],[394,75,-24519910199672792,-24519902557800167],[394,78,24519904682575622,24519908074897335],[394,130,-8145018103,8145018085],[394,136,-18594003438885652,-18593994259472046],[394,195,-2124775455,2124775457],[394,204,-11272303635356703,-11272300233527231],[394,258,-18594003438885652,-18593994259472046],[394,264,-8145018103,8145018085],[394,326,-11272303635356703,-11272300233527231],[394,329,-2124775455,2124775457],[394,384,-4790774237,4790774243],[394,394,-18594001959353888,-18593995739003822],[394,449,-24519910199672792,-24519902557800167],[394,452,24519904682575622,24519908074897335],[394,459,-24519908074897335,-24519904682575622],[394,462,13247601047218919,13247607841370104],[394,586,-22544605449648746,-22544602288119128],[394,706,3950601803153038,3950608236257121],[394,712,18593997213391625,18594000484966090],[394,834,18593997213391625,18594000484966090],[394,840,3950601803153038,3950608236257121],[394,960,-22544605449648746,-22544602288119128],[394,1025,1975301912779772,1975303106925307],[394,1028,-1975303106925307,-1975301912779772],[394,1035,1975301912779772,1975303106925307],[394,1038,-1975303106925307,-1975301912779772],[394,1088,15222904008319537,15222909899974555],[394,1098,-45089210861191912,-45089204614343830],[394,1218,52990412240818188,52990423313537884],[394,1224,7321691863722815,7321701965750947],[394,1346,7321691863722815,7321701965750947],[394,1352,52990412240818188,52990423313537884],[394,1409,1975301912779772,1975303106925307],[394,1412,-1975303106925307,-1975301912779772],[394,1419,1975301912779772,1975303106925307],[394,1422,-1975303106925307,-1975301912779772],[394,1472,-45089210861191912,-45089204614343830],[394,1482,15222904008319537,15222909899974555],[394,1666,13247603822418509,13247605066170506],[394,1672,-13247605066170506,-13247603822418509],[394,1794,-13247605066170506,-13247603822418509],[394,1800,13247603822418509,13247605066170506],[394,3202,13247603817873562,13247605070715450],[394,3208,-13247605070715450,-13247603817873562],[394,3330,-13247605070715450,-13247603817873562],[394,3336,13247603817873562,13247605070715450],[394,131136,-1975306045508212,-1975298974196867],[394,131146,24519904610140814,24519908147332138],[394,131272,-26495210655649026,-26495207121529005],[394,131394,-26495210655649026,-26495207121529005],[394,131520,24519904610140814,24519908147332138],[394,131530,-1975306045508212,-1975298974196867],[394,132096,-1975303130061553,-1975301889643525],[394,132106,-1975303130061553,-1975301889643525],[394,132480,-1975303130061553,-1975301889643525],[394,132490,-1975303130061553,-1975301889643525],[394,524352,26495207121529005,26495210655649026],[394,524482,35792206084485028,35792210541871860],[394,524488,-9297003420342855,-9296995428836002],[394,524610,-9297003420342855,-9296995428836002],[394,524616,35792206084485028,35792210541871860],[394,524746,26495207121529005,26495210655649026],[394,525442,-26495209977773508,-26495207799404518],[394,525448,26495207799404518,26495209977773508],[394,525570,26495207799404518,26495209977773508],[394,525576,-26495209977773508,-26495207799404518],[394,1049730,13247603821617226,13247605066971786],[394,1049736,-13247605066971786,-13247603821617226],[394,1049858,-13247605066971786,-13247603821617226],[394,1049864,13247603821617226,13247605066971786],[396,65,1975301912779772,1975303106925307],[396,66,-1975303106925307,-1975301912779772],[396,77,1975301912779772,1975303106925307],[396,78,-1194053190,1194053189],[396,132,8599101730286822,8599107733712757],[396,136,-8599107733712757,-8599101730286822],[396,198,-11272303635356703,-11272300233527231],[396,202,9296998164928852,9297000684250004],[396,260,-8599107733712757,-8599101730286822],[396,264,8599101730286822,8599107733712757],[396,326,9296998164928852,9297000684250004],[396,330,-11272303635356703,-11272300233527231],[396,449,1975301912779772,1975303106925307],[396,450,-1194053190,1194053189],[396,461,1975301912779772,1975303106925307],[396,462,-1975303106925307,-1975301912779772],[396,708,-1975303106832961,-1975301912872117],[396,712,1975301912872117,1975303106832961],[396,836,1975301912872117,1975303106832961],[396,840,-1975303106832961,-1975301912872117],[396,1025,22544603300308524,22544604437459344],[396,1026,-22544604437459344,-22544603300308524],[396,1037,22544603300308524,22544604437459344],[396,1038,-22544604437459344,-22544603300308524],[396,1220,-8599107733712757,-8599101730286822],[396,1224,8599101730286822,8599107733712757],[396,1348,8599101730286822,8599107733712757],[396,1352,-8599107733712757,-8599101730286822],[396,1409,22544603300308524,22544604437459344],[396,1410,-22544604437459344,-22544603300308524],[396,1421,22544603300308524,22544604437459344],[396,1422,-22544604437459344,-22544603300308524],[396,1668,13247603851021587,13247605037567427],[396,1672,-13247605037567427,-13247603851021587],[396,1796,-13247605037567427,-13247603851021587],[396,1800,13247603851021587,13247605037567427],[396,3204,13247603851851071,13247605036737943],[396,3208,-13247605036737943,-13247603851851071],[396,3332,-13247605036737943,-13247603851851071],[396,3336,13247603851851071,13247605036737943],[396,32832,1975301917236486,1975303102468593],[396,32844,1975301917236486,1975303102468593],[396,33216,1975301917236486,1975303102468593],[396,33228,1975301917236486,1975303102468593],[396,33792,22544603307191776,22544604430576096],[396,33804,22544603307191776,22544604430576096],[396,34176,22544603307191776,22544604430576096],[396,34188,22544603307191776,22544604430576096],[396,131136,-1975303102468593,-1975301917236486],[396,131148,-1975303102468593,-1975301917236486],[396,131520,-1975303102468593,-1975301917236486],[396,131532,-1975303102468593,-1975301917236486],[396,132096,-22544604430576096,-22544603307191776],[396,132108,-22544604430576096,-22544603307191776],[396,132480,-22544604430576096,-22544603307191776],[396,132492,-22544604430576096,-22544603307191776],[396,524484,6623801159963560,6623803284330947],[396,524488,-6623803284330947,-6623801159963560],[396,524612,-6623803284330947,-6623801159963560],[396,524616,6623801159963560,6623803284330947],[396,525444,-26495209915574692,-26495207861603338],[396,525448,26495207861603338,26495209915574692],[396,525572,26495207861603338,26495209915574692],[396,525576,-26495209915574692,-26495207861603338],[396,1049732,13247603855419588,13247605033169427],[396,1049736,-13247605033169427,-13247603855419588],[396,1049860,-13247605033169427,-13247603855419588],[396,1049864,13247603855419588,13247605033169427],[449,0,-22544604716605376,-22544603021162496],[449,10,13247603851021587,13247605037567427],[449,65,6623799524173159,6623804920121353],[449,71,24519905354627238,24519907402845709],[449,75,-24519910199672792,-24519902557800167],[449,77,1975301912779772,1975303106925307],[449,129,-13247605973043456,-13247602915545560],[449,135,-22544604437459344,-22544603300308524],[449,139,-1975303106925307,-1975301912779772],[449,192,-15920803246405425,-15920800047067943],[449,198,-1975303106925307,-1975301912779772],[449,202,39742809972538796,39742816693228256],[449,204,-1975303106925307,-1975301912779772],[449,257,-15920803246405425,-15920800047067943],[449,263,-1975303106925307,-1975301912779772],[449,267,39742809972538796,39742816693228256],[449,269,-1975303106925307,-1975301912779772],[449,320,-13247605973043456,-13247602915545560],[449,326,-22544604437459344,-22544603300308524],[449,330,-1975303106925307,-1975301912779772],[449,384,6623799524173159,6623804920121353],[449,390,24519905354627238,24519907402845709],[449,394,-24519910199672792,-24519902557800167],[449,396,1975301912779772,1975303106925307],[449,449,-22544604716605376,-22544603021162496],[449,459,13247603851021587,13247605037567427],[449,514,-1975303106832961,-1975301912872117],[449,579,-26495209923507576,-26495207853670452],[449,643,24519905362432319,24519907395040631],[449,834,24519905362432319,24519907395040631],[449,898,-26495209923507576,-26495207853670452],[449,963,-1975303106832961,-1975301912872117],[449,1026,22544601544971738,22544606192796140],[449,1091,-8599107733712757,-8599101730286822],[449,1155,24519905354627238,24519907402845709],[449,1218,6623801213223040,6623803231071470],[449,1283,6623801213223040,6623803231071470],[449,1346,24519905354627238,24519907402845709],[449,1410,-8599107733712757,-8599101730286822],[449,1475,22544601544971738,22544606192796140],[449,524290,13247603855385956,13247605033203059],[449,524355,6623801159963560,6623803284330947],[449,524482,6623801172992632,6623803271301876],[449,524547,6623801172992632,6623803271301876],[449,524674,6623801159963560,6623803284330947],[449,524739,13247603855385956,13247605033203059],[450,0,-3358093042,3358093038],[450,9,-13247605037567427,-13247603851021587],[450,66,-43421350142958786,-43421302388547748],[450,75,-13247609011319922,-13247599877269080],[450,78,-1194053190,1194053189],[450,130,266383184103143623,266383230341000381],[450,139,24519905354627238,24519907402845709],[450,192,-222961907731674894,-222961854180962580],[450,201,-24519910199672792,-24519902557800167],[450,204,-1194053189,1194053190],[450,258,-222961907731674894,-222961854180962580],[450,267,-24519910199672792,-24519902557800167],[450,270,-1194053189,1194053190],[450,320,266383184103143623,266383230341000381],[450,329,24519905354627238,24519907402845709],[450,384,-43421350142958786,-43421302388547748],[450,393,-13247609011319922,-13247599877269080],[450,396,-1194053190,1194053189],[450,450,-3358093042,3358093038],[450,459,-13247605037567427,-13247603851021587],[450,513,1975301912872117,1975303106832961],[450,520,49039810262574998,49039815252370900],[450,579,26495207853670452,26495209923507576],[450,586,26495207791089865,26495209986088162],[450,643,-24519907395040631,-24519905362432319],[450,650,-3950608236257121,-3950601803153038],[450,712,26495207769155642,26495210008022388],[450,778,26495207769155642,26495210008022388],[450,833,-24519907395040631,-24519905362432319],[450,840,-3950608236257121,-3950601803153038],[450,897,26495207853670452,26495209923507576],[450,904,26495207791089865,26495209986088162],[450,963,1975301912872117,1975303106832961],[450,970,49039810262574998,49039815252370900],[450,1025,-22544606192796140,-22544601544971738],[450,1032,67633806676178144,67633816537125456],[450,1091,8599101730286822,8599107733712757],[450,1098,7321691863722815,7321701965750947],[450,1155,-24519907402845709,-24519905354627238],[450,1162,43113900199647331,43113910256183319],[450,1217,-6623803231071470,-6623801213223040],[450,1224,17198202133527204,17198216794471984],[450,1283,-6623803231071470,-6623801213223040],[450,1290,17198202133527204,17198216794471984],[450,1345,-24519907402845709,-24519905354627238],[450,1352,43113900199647331,43113910256183319],[450,1409,8599101730286822,8599107733712757],[450,1416,7321691863722815,7321701965750947],[450,1475,-22544606192796140,-22544601544971738],[450,1482,67633806676178144,67633816537125456],[450,1536,1975301915400511,1975303104304567],[450,1602,-26495209986088162,-26495207791089865],[450,1666,17198204896268894,17198214031730284],[450,1728,11272298146528817,11272305722355110],[450,1794,11272298146528817,11272305722355110],[450,1856,17198204896268894,17198214031730284],[450,1920,-26495209986088162,-26495207791089865],[450,1986,1975301915400511,1975303104304567],[450,3202,15222905735290626,15222908173003467],[450,3264,-15222908173003467,-15222905735290626],[450,3330,-15222908173003467,-15222905735290626],[450,3392,15222905735290626,15222908173003467],[450,131146,17896102849092541,17896105464085903],[450,131272,-17896105464085903,-17896102849092541],[450,131338,-17896105464085903,-17896102849092541],[450,131464,17896102849092541,17896105464085903],[450,524289,-13247605033203059,-13247603855385956],[450,524296,-13247605061599516,-13247603826989498],[450,524355,-6623803284330947,-6623801159963560],[450,524362,-42416014569192714,-42416006501458678],[450,524426,24519905292829457,24519907464643494],[450,524481,-6623803271301876,-6623801172992632],[450,524488,4648494894531634,4648504530057793],[450,524547,-6623803271301876,-6623801172992632],[450,524554,4648494894531634,4648504530057793],[450,524616,24519905292829457,24519907464643494],[450,524673,-6623803284330947,-6623801159963560],[450,524680,-42416014569192714,-42416006501458678],[450,524739,-13247605033203059,-13247603855385956],[450,524746,-13247605061599516,-13247603826989498],[450,524800,1975301892192548,1975303127512529],[450,524930,-24519907464643494,-24519905292829457],[450,524992,26495207798821558,26495209978356470],[450,525058,26495207798821558,26495209978356470],[450,525120,-24519907464643494,-24519905292829457],[450,525250,1975301892192548,1975303127512529],[450,525312,1975301889643525,1975303130061553],[450,525378,6623801159963560,6623803284330947],[450,525442,-3950608753660642,-3950601285749510],[450,525504,-697899197873155,-697890187306122],[450,525570,-697899197873155,-697890187306122],[450,525632,-3950608753660642,-3950601285749510],[450,525696,6623801159963560,6623803284330947],[450,525762,1975301889643525,1975303130061553],[450,1049730,15222905744246613,15222908164047479],[450,1049792,-15222908164047479,-15222905744246613],[450,1049858,-15222908164047479,-15222905744246613],[450,1049920,15222905744246613,15222908164047479],[452,10,-1975303106832961,-1975301912872117],[452,68,-4648501315670959,-4648498108918473],[452,71,-24519907402845709,-24519905354627238],[452,77,-1975303106925307,-1975301912779772],[452,78,24519904682575622,24519908074897335],[452,135,22544603300308524,22544604437459344],[452,142,-1194053189,1194053190],[452,192,4648498108918473,4648501315670959],[452,195,1975301912779772,1975303106925307],[452,201,1975301912779772,1975303106925307],[452,202,-26495210141551732,-26495207635626304],[452,260,4648498108918473,4648501315670959],[452,263,1975301912779772,1975303106925307],[452,269,1975301912779772,1975303106925307],[452,270,-26495210141551732,-26495207635626304],[452,323,22544603300308524,22544604437459344],[452,330,-1194053189,1194053190],[452,384,-4648501315670959,-4648498108918473],[452,387,-24519907402845709,-24519905354627238],[452,393,-1975303106925307,-1975301912779772],[452,394,24519904682575622,24519908074897335],[452,462,-1975303106832961,-1975301912872117],[452,520,1975301912872117,1975303106832961],[452,652,1975301912872117,1975303106832961],[452,840,1975301912872117,1975303106832961],[452,972,1975301912872117,1975303106832961],[452,1032,3950603830830732,3950606208579430],[452,1100,-17896106189622669,-17896102123555768],[452,1164,28470509832687554,28470512964195555],[452,1224,-6623803231071470,-6623801213223040],[452,1292,-6623803231071470,-6623801213223040],[452,1352,28470509832687554,28470512964195555],[452,1416,-17896106189622669,-17896102123555768],[452,1484,3950603830830732,3950606208579430],[452,32844,-1975303102468593,-1975301917236486],[452,32968,1975301917236486,1975303102468593],[452,33036,1975301917236486,1975303102468593],[452,33160,-1975303102468593,-1975301917236486],[452,131148,13247603822433492,13247605066155522],[452,131272,-13247605066155522,-13247603822433492],[452,131340,-13247605066155522,-13247603822433492],[452,131464,13247603822433492,13247605066155522],[452,524364,-11272302995044411,-11272300873839524],[452,524488,11272300873839524,11272302995044411],[452,524556,11272300873839524,11272302995044411],[452,524680,-11272302995044411,-11272300873839524],[455,65,24519905354627238,24519907402845709],[455,68,-24519907402845709,-24519905354627238],[455,129,-22544604437459344,-22544603300308524],[455,132,22544603300308524,22544604437459344],[455,195,1975301912779772,1975303106925307],[455,198,-1975303106925307,-1975301912779772],[455,257,-1975303106925307,-1975301912779772],[455,260,1975301912779772,1975303106925307],[455,323,22544603300308524,22544604437459344],[455,326,-22544604437459344,-22544603300308524],[455,387,-24519907402845709,-24519905354627238],[455,390,24519905354627238,24519907402845709],[456,0,75535017338508762,75535025953615174],[456,6,1975301912872117,1975303106832961],[456,72,-209714307449075898,-209714245574972548],[456,75,24519905354627238,24519907402845709],[456,78,-22544606008242938,-22544601729524940],[456,136,49039809086990954,49039816427954942],[456,139,-22544604437459344,-22544603300308524],[456,142,-1194053190,1194053189],[456,192,236209459374475712,236209511426750774],[456,195,-1975303106925307,-1975301912779772],[456,198,24519904682575622,24519908074897335],[456,264,236209459374475712,236209511426750774],[456,267,-1975303106925307,-1975301912779772],[456,270,24519904682575622,24519908074897335],[456,320,49039809086990954,49039816427954942],[456,323,-22544604437459344,-22544603300308524],[456,326,-1194053190,1194053189],[456,384,-209714307449075898,-209714245574972548],[456,387,24519905354627238,24519907402845709],[456,390,-22544606008242938,-22544601729524940],[456,456,75535017338508762,75535025953615174],[456,462,1975301912872117,1975303106832961],[456,514,-45089208976214568,-45089206499321174],[456,516,-1975303106832961,-1975301912872117],[456,586,-2216932520,2216932523],[456,650,-18594000484966090,-18593997213391625],[456,652,-1975303106832961,-1975301912872117],[456,706,-26495210008022388,-26495207769155642],[456,778,-26495210008022388,-26495207769155642],[456,834,-18594000484966090,-18593997213391625],[456,836,-1975303106832961,-1975301912872117],[456,898,-2216932520,2216932523],[456,970,-45089208976214568,-45089206499321174],[456,972,-1975303106832961,-1975301912872117],[456,1026,-69609119643958417,-69609108589050261],[456,1028,-3950606208579430,-3950603830830732],[456,1098,52990412240818188,52990423313537884],[456,1100,17896102123555768,17896106189622669],[456,1162,-47064512094016005,-47064508401224809],[456,1164,-28470512964195555,-28470509832687554],[456,1218,-75535025980292526,-75535017311831410],[456,1220,6623801213223040,6623803231071470],[456,1290,-75535025980292526,-75535017311831410],[456,1292,6623801213223040,6623803231071470],[456,1346,-47064512094016005,-47064508401224809],[456,1348,-28470512964195555,-28470509832687554],[456,1410,52990412240818188,52990423313537884],[456,1412,17896102123555768,17896106189622669],[456,1482,-69609119643958417,-69609108589050261],[456,1484,-3950606208579430,-3950603830830732],[456,1536,1975301912872117,1975303106832961],[456,1608,-52990419972049588,-52990415582306470],[456,1672,15222905735290626,15222908173003467],[456,1728,39742811609090167,39742815056676876],[456,1800,39742811609090167,39742815056676876],[456,1856,15222905735290626,15222908173003467],[456,1920,-52990419972049588,-52990415582306470],[456,1992,1975301912872117,1975303106832961],[456,3144,-26495209986088162,-26495207791089865],[456,3208,13247603817873562,13247605070715450],[456,3264,13247603822418509,13247605066170506],[456,3336,13247603822418509,13247605066170506],[456,3392,13247603817873562,13247605070715450],[456,3456,-26495209986088162,-26495207791089865],[456,131074,22544603251852693,22544604485915178],[456,131146,-37767513075615154,-37767508570446813],[456,131148,-11272302995044411,-11272300873839524],[456,131210,20569300121791140,20569302596271653],[456,131266,39742811546633741,39742815119133304],[456,131268,11272300873839524,11272302995044411],[456,131338,39742811546633741,39742815119133304],[456,131340,11272300873839524,11272302995044411],[456,131394,20569300121791140,20569302596271653],[456,131458,-37767513075615154,-37767508570446813],[456,131460,-11272302995044411,-11272300873839524],[456,131530,22544603251852693,22544604485915178],[456,131584,-22544604485915178,-22544603251852693],[456,131720,-22544604485915178,-22544603251852693],[456,131904,-22544604485915178,-22544603251852693],[456,132040,-22544604485915178,-22544603251852693],[456,132096,-45089208966229632,-45089206509306108],[456,132168,15222904805987338,15222909102306755],[456,132232,-49039814461219948,-49039811053725950],[456,132288,-11272302995044411,-11272300873839524],[456,132360,-11272302995044411,-11272300873839524],[456,132416,-49039814461219948,-49039811053725950],[456,132480,15222904805987338,15222909102306755],[456,132552,-45089208966229632,-45089206509306108],[456,524290,-9297000658925680,-9296998190253177],[456,524362,51015113020977955,51015117513673026],[456,524364,11272300873839524,11272302995044411],[456,524426,-22544604485915178,-22544603251852693],[456,524482,-37767513075615154,-37767508570446813],[456,524484,-11272302995044411,-11272300873839524],[456,524554,-37767513075615154,-37767508570446813],[456,524556,-11272302995044411,-11272300873839524],[456,524610,-22544604485915178,-22544603251852693],[456,524674,51015113020977955,51015117513673026],[456,524676,11272300873839524,11272302995044411],[456,524746,-9297000658925680,-9296998190253177],[456,524800,22544603251852693,22544604485915178],[456,524936,22544603251852693,22544604485915178],[456,525120,22544603251852693,22544604485915178],[456,525256,22544603251852693,22544604485915178],[456,525312,47064508855883441,47064511639357377],[456,525384,13247602298025327,13247606590563683],[456,525448,22544602330282044,22544605407485828],[456,525504,11272299945646091,11272303923237845],[456,525576,11272299945646091,11272303923237845],[456,525632,22544602330282044,22544605407485828],[456,525696,13247602298025327,13247606590563683],[456,525768,47064508855883441,47064511639357377],[456,655432,28470509589568145,28470513207314965],[456,655552,-28470513207314965,-28470509589568145],[456,655624,-28470513207314965,-28470509589568145],[456,655744,28470509589568145,28470513207314965],[456,1049672,-26495209977752878,-26495207799425147],[456,1049736,13247603821617226,13247605066971786],[456,1049792,13247603827010127,13247605061578886],[456,1049864,13247603827010127,13247605061578886],[456,1049920,13247603821617226,13247605066971786],[456,1049984,-26495209977752878,-26495207799425147],[459,9,-13247605037567427,-13247603851021587],[459,10,13247603851021587,13247605037567427],[459,65,-24519908074897335,-24519904682575622],[459,66,-2424856520,2424856530],[459,72,11272300317059811,11272303551824122],[459,75,-13247605037567427,-13247603851021587],[459,129,11272300744096280,11272303124787655],[459,130,11272300317059811,11272303551824122],[459,136,-22544604437459344,-22544603300308524],[459,192,13247603851021587,13247605037567427],[459,195,11272300744096280,11272303124787655],[459,201,-24519908074897335,-24519904682575622],[459,202,26495207635626304,26495210141551732],[459,257,26495207635626304,26495210141551732],[459,258,-24519908074897335,-24519904682575622],[459,264,11272300744096280,11272303124787655],[459,267,13247603851021587,13247605037567427],[459,323,-22544604437459344,-22544603300308524],[459,329,11272300317059811,11272303551824122],[459,330,11272300744096280,11272303124787655],[459,384,-13247605037567427,-13247603851021587],[459,387,11272300317059811,11272303551824122],[459,393,-2424856520,2424856530],[459,394,-24519908074897335,-24519904682575622],[459,449,13247603851021587,13247605037567427],[459,450,-13247605037567427,-13247603851021587],[461,65,1975301912779772,1975303106925307],[461,68,-1975303106925307,-1975301912779772],[461,201,1975301912779772,1975303106925307],[461,204,-1975303106925307,-1975301912779772],[461,257,-1975303106925307,-1975301912779772],[461,260,1975301912779772,1975303106925307],[461,393,-1975303106925307,-1975301912779772],[461,396,1975301912779772,1975303106925307],[462,6,1975301912872117,1975303106832961],[462,10,-1975303106832961,-1975301912872117],[462,66,-1975303106925307,-1975301912779772],[462,68,13247601047218919,13247607841370104],[462,72,-9297003706117328,-9296995143061538],[462,78,1975301912872117,1975303106832961],[462,132,1975301912779772,1975303106925307],[462,136,-1975303106925307,-1975301912779772],[462,192,-1975303106832961,-1975301912872117],[462,198,13247601047218919,13247607841370104],[462,202,-17198211976622880,-17198206951376300],[462,204,1975301912779772,1975303106925307],[462,258,1975301912779772,1975303106925307],[462,260,-17198211976622880,-17198206951376300],[462,264,13247601047218919,13247607841370104],[462,270,-1975303106832961,-1975301912872117],[462,326,-1975303106925307,-1975301912779772],[462,330,1975301912779772,1975303106925307],[462,384,1975301912872117,1975303106832961],[462,390,-9297003706117328,-9296995143061538],[462,394,13247601047218919,13247607841370104],[462,396,-1975303106925307,-1975301912779772],[462,452,-1975303106832961,-1975301912872117],[462,456,1975301912872117,1975303106832961],[513,66,-13247606072008906,-13247602816580098],[513,258,1975300488006682,1975304531698390],[513,320,1975300972654016,1975304047051064],[513,326,22544603305492866,22544604432275006],[513,330,1975301915400511,1975303104304567],[513,450,1975301912872117,1975303106832961],[513,579,-13247606072008906,-13247602816580098],[513,771,1975300488006682,1975304531698390],[513,833,1975300972654016,1975304047051064],[513,839,22544603305492866,22544604432275006],[513,843,1975301915400511,1975303104304567],[513,963,1975301912872117,1975303106832961],[513,1346,-13247605037567427,-13247603851021587],[513,1859,-13247605037567427,-13247603851021587],[513,2370,-13247605036737943,-13247603851851071],[513,2883,-13247605036737943,-13247603851851071],[513,16777538,-13247605015388352,-13247603873200664],[513,16778051,-13247605015388352,-13247603873200664],[514,0,7901206905988008,7901213172832336],[514,65,13247602816580098,13247606072008906],[514,72,13247602745554085,13247606143034927],[514,192,17198207753821687,17198211174177485],[514,257,-1975304531698390,-1975300488006682],[514,264,-1975304632453679,-1975300387251397],[514,320,-227219925291193296,-227219888736530280],[514,329,-24519907395040631,-24519905362432319],[514,384,-1975305321237090,-1975299698467991],[514,449,-1975303106832961,-1975301912872117],[514,456,-45089208976214568,-45089206499321174],[514,514,7901206905988008,7901213172832336],[514,579,13247602816580098,13247606072008906],[514,586,13247602745554085,13247606143034927],[514,706,17198207753821687,17198211174177485],[514,771,-1975304531698390,-1975300488006682],[514,778,-1975304632453679,-1975300387251397],[514,834,-227219925291193296,-227219888736530280],[514,843,-24519907395040631,-24519905362432319],[514,898,-1975305321237090,-1975299698467991],[514,963,-1975303106832961,-1975301912872117],[514,970,-45089208976214568,-45089206499321174],[514,1088,-1975305321237090,-1975299698467991],[514,1280,17198207753821687,17198211174177485],[514,1345,13247603851021587,13247605037567427],[514,1352,13247603822418509,13247605066170506],[514,1416,13247603822418509,13247605066170506],[514,1472,26495207635873864,26495210141304164],[514,1602,-1975305321237090,-1975299698467991],[514,1794,17198207753821687,17198211174177485],[514,1859,13247603851021587,13247605037567427],[514,1866,13247603822418509,13247605066170506],[514,1930,13247603822418509,13247605066170506],[514,1986,26495207635873864,26495210141304164],[514,2112,-1975304632453679,-1975300387251397],[514,2304,13247602745554085,13247606143034927],[514,2369,13247603851851071,13247605036737943],[514,2376,13247603817873562,13247605070715450],[514,2496,13247603822418509,13247605066170506],[514,2626,-1975304632453679,-1975300387251397],[514,2818,13247602745554085,13247606143034927],[514,2883,13247603851851071,13247605036737943],[514,2890,13247603817873562,13247605070715450],[514,3010,13247603822418509,13247605066170506],[514,3208,13247603817873562,13247605070715450],[514,3264,13247603822418509,13247605066170506],[514,3392,-45089208976214568,-45089206499321174],[514,3722,13247603817873562,13247605070715450],[514,3778,13247603822418509,13247605066170506],[514,3906,-45089208976214568,-45089206499321174],[514,16777280,-1975304531698390,-1975300488006682],[514,16777472,13247602816580098,13247606072008906],[514,16777537,13247603873200664,13247605015388352],[514,16777544,13247603851851071,13247605036737943],[514,16777664,13247603851021587,13247605037567427],[514,16777794,-1975304531698390,-1975300488006682],[514,16777986,13247602816580098,13247606072008906],[514,16778051,13247603873200664,13247605015388352],[514,16778058,13247603851851071,13247605036737943],[514,16778178,13247603851021587,13247605037567427],[514,16778560,-1975303106832961,-1975301912872117],[514,16779074,-1975303106832961,-1975301912872117],[514,16779584,-24519907395040631,-24519905362432319],[514,16780098,-24519907395040631,-24519905362432319],[516,323,-22544604432275006,-22544603305492866],[516,330,-1975303104304567,-1975301915400511],[516,456,-1975303106832961,-1975301912872117],[516,839,-22544604432275006,-22544603305492866],[516,846,-1975303104304567,-1975301915400511],[516,972,-1975303106832961,-1975301912872117],[516,1416,13247603851021587,13247605037567427],[516,1932,13247603851021587,13247605037567427],[516,3208,13247603851851071,13247605036737943],[516,3724,13247603851851071,13247605036737943],[519,323,-22544604432275006,-22544603305492866],[519,326,22544603305492866,22544604432275006],[519,833,22544603305492866,22544604432275006],[519,836,-22544604432275006,-22544603305492866],[520,66,-13247606143034927,-13247602745554085],[520,192,-13247606157000801,-13247602731588215],[520,258,1975300387251397,1975304632453679],[520,320,3950601803153038,3950608236257121],[520,323,22544603305492866,22544604432275006],[520,326,1975301915400511,1975303104304567],[520,384,3950600776799744,3950609262610422],[520,450,49039810262574998,49039815252370900],[520,452,1975301912872117,1975303106832961],[520,586,-13247606143034927,-13247602745554085],[520,712,-13247606157000801,-13247602731588215],[520,778,1975300387251397,1975304632453679],[520,840,3950601803153038,3950608236257121],[520,843,22544603305492866,22544604432275006],[520,846,1975301915400511,1975303104304567],[520,904,3950600776799744,3950609262610422],[520,970,49039810262574998,49039815252370900],[520,972,1975301912872117,1975303106832961],[520,1152,3950601803153038,3950608236257121],[520,1280,-13247606157000801,-13247602731588215],[520,1346,-13247605066170506,-13247603822418509],[520,1410,-13247605066170506,-13247603822418509],[520,1412,-13247605037567427,-13247603851021587],[520,1472,18593996459312884,18594001239044824],[520,1672,3950601803153038,3950608236257121],[520,1800,-13247606157000801,-13247602731588215],[520,1866,-13247605066170506,-13247603822418509],[520,1930,-13247605066170506,-13247603822418509],[520,1932,-13247605037567427,-13247603851021587],[520,1992,18593996459312884,18594001239044824],[520,2176,1975300387251397,1975304632453679],[520,2370,-13247605070715450,-13247603817873562],[520,2496,-13247605066170506,-13247603822418509],[520,2696,1975300387251397,1975304632453679],[520,2890,-13247605070715450,-13247603817873562],[520,3016,-13247605066170506,-13247603822418509],[520,3072,-13247606143034927,-13247602745554085],[520,3202,-13247605070715450,-13247603817873562],[520,3204,-13247605036737943,-13247603851851071],[520,3264,-13247605066170506,-13247603822418509],[520,3456,49039810262574998,49039815252370900],[520,3592,-13247606143034927,-13247602745554085],[520,3722,-13247605070715450,-13247603817873562],[520,3724,-13247605036737943,-13247603851851071],[520,3784,-13247605066170506,-13247603822418509],[520,3976,49039810262574998,49039815252370900],[520,131394,1975301892192548,1975303127512529],[520,131520,22544603251852693,22544604485915178],[520,131914,1975301892192548,1975303127512529],[520,132040,22544603251852693,22544604485915178],[520,132480,-13247605061713792,-13247603826875223],[520,133000,-13247605061713792,-13247603826875223],[520,134272,-13247605060886466,-13247603827702546],[520,134792,-13247605060886466,-13247603827702546],[520,524736,1975301885638544,1975303134066536],[520,525256,1975301885638544,1975303134066536],[520,525696,-13247605067077166,-13247603821511848],[520,526216,-13247605067077166,-13247603821511848],[520,527488,-13247605061713792,-13247603826875223],[520,528008,-13247605061713792,-13247603826875223],[520,1049984,1975301885638543,1975303134066535],[520,1050504,1975301885638543,1975303134066535],[520,1051776,22544603251852693,22544604485915178],[520,1052296,22544603251852693,22544604485915178],[520,2100352,1975301892192549,1975303127512530],[520,2100872,1975301892192549,1975303127512530],[520,16777538,-13247605036737943,-13247603851851071],[520,16777664,-13247605037567427,-13247603851021587],[520,16778058,-13247605036737943,-13247603851851071],[520,16778184,-13247605037567427,-13247603851021587],[520,16778624,1975301912872117,1975303106832961],[520,16779144,1975301912872117,1975303106832961],[520,16780416,1975301915400511,1975303104304567],[520,16780936,1975301915400511,1975303104304567],[520,33557632,22544603305492866,22544604432275006],[520,33558152,22544603305492866,22544604432275006],[523,323,22544603305492866,22544604432275006],[523,329,-24519907395040631,-24519905362432319],[523,330,1975301915400511,1975303104304567],[523,833,1975301915400511,1975303104304567],[523,834,-24519907395040631,-24519905362432319],[523,840,22544603305492866,22544604432275006],[526,326,1975301915400511,1975303104304567],[526,330,-1975303104304567,-1975301915400511],[526,836,-1975303104304567,-1975301915400511],[526,840,1975301915400511,1975303104304567],[576,130,-26495211840725034,-26495205936452994],[576,257,-1975304047051064,-1975300972654016],[576,258,232566281601026132,232566321236466156],[576,264,-3950608236257121,-3950601803153038],[576,706,-26495211840725034,-26495205936452994],[576,833,-1975304047051064,-1975300972654016],[576,834,232566281601026132,232566321236466156],[576,840,-3950608236257121,-3950601803153038],[576,1026,-1975305323765481,-1975299695939594],[576,1410,-39742815056676876,-39742811609090167],[576,1416,-13247605066170506,-13247603822418509],[576,1602,-1975305323765481,-1975299695939594],[576,1986,-39742815056676876,-39742811609090167],[576,1992,-13247605066170506,-13247603822418509],[576,2050,1975300387251397,1975304632453679],[576,2434,-26495209986088162,-26495207791089865],[576,2626,1975300387251397,1975304632453679],[576,3010,-26495209986088162,-26495207791089865],[576,3202,-13247605066170506,-13247603822418509],[576,3208,-13247605070715450,-13247603817873562],[576,3330,45089206499321174,45089208976214568],[576,3778,-13247605066170506,-13247603822418509],[576,3784,-13247605070715450,-13247603817873562],[576,3906,45089206499321174,45089208976214568],[576,16777218,1975300488006682,1975304531698390],[576,16777602,-26495209923507576,-26495207853670452],[576,16777794,1975300488006682,1975304531698390],[576,16778178,-26495209923507576,-26495207853670452],[576,16778498,1975301912872117,1975303106832961],[576,16779074,1975301912872117,1975303106832961],[576,16779522,24519905362432319,24519907395040631],[576,16780098,24519905362432319,24519907395040631],[579,65,13247602816580098,13247606072008906],[579,66,-13247606072008906,-13247602816580098],[579,260,22544603305492866,22544604432275006],[579,263,22544603305492866,22544604432275006],[579,264,-22544604432275006,-22544603305492866],[579,267,-22544604432275006,-22544603305492866],[579,449,-26495209923507576,-26495207853670452],[579,450,26495207853670452,26495209923507576],[579,513,-13247606072008906,-13247602816580098],[579,514,13247602816580098,13247606072008906],[579,836,22544603305492866,22544604432275006],[579,839,22544603305492866,22544604432275006],[579,840,-22544604432275006,-22544603305492866],[579,843,-22544604432275006,-22544603305492866],[579,897,26495207853670452,26495209923507576],[579,898,-26495209923507576,-26495207853670452],[579,1345,13247603851021587,13247605037567427],[579,1346,-13247605037567427,-13247603851021587],[579,1793,-13247605037567427,-13247603851021587],[579,1794,13247603851021587,13247605037567427],[579,2369,13247603851851071,13247605036737943],[579,2370,-13247605036737943,-13247603851851071],[579,2817,-13247605036737943,-13247603851851071],[579,2818,13247603851851071,13247605036737943],[579,16777537,13247603873200664,13247605015388352],[579,16777538,-13247605015388352,-13247603873200664],[579,16777985,-13247605015388352,-13247603873200664],[579,16777986,13247603873200664,13247605015388352],[582,257,-22544604432275006,-22544603305492866],[582,263,-22544604432275006,-22544603305492866],[582,264,-1975303104304567,-1975301915400511],[582,270,-1975303104304567,-1975301915400511],[582,833,-22544604432275006,-22544603305492866],[582,839,-22544604432275006,-22544603305492866],[582,840,-1975303104304567,-1975301915400511],[582,846,-1975303104304567,-1975301915400511],[585,258,24519905362432319,24519907395040631],[585,267,24519905362432319,24519907395040631],[585,834,24519905362432319,24519907395040631],[585,843,24519905362432319,24519907395040631],[586,66,-13247606143034927,-13247602745554085],[586,72,13247602745554085,13247606143034927],[586,257,-1975303104304567,-1975301915400511],[586,260,1975301915400511,1975303104304567],[586,267,-1975303104304567,-1975301915400511],[586,270,1975301915400511,1975303104304567],[586,384,3950603763253824,3950606276156332],[586,394,-22544605449648746,-22544602288119128],[586,450,26495207791089865,26495209986088162],[586,456,-2216932520,2216932523],[586,514,13247602745554085,13247606143034927],[586,520,-13247606143034927,-13247602745554085],[586,833,-1975303104304567,-1975301915400511],[586,836,1975301915400511,1975303104304567],[586,843,-1975303104304567,-1975301915400511],[586,846,1975301915400511,1975303104304567],[586,898,-2216932520,2216932523],[586,904,26495207791089865,26495209986088162],[586,960,-22544605449648746,-22544602288119128],[586,970,3950603763253824,3950606276156332],[586,1346,-13247605066170506,-13247603822418509],[586,1352,13247603822418509,13247605066170506],[586,1794,13247603822418509,13247605066170506],[586,1800,-13247605066170506,-13247603822418509],[586,2370,-13247605070715450,-13247603817873562],[586,2376,13247603817873562,13247605070715450],[586,2818,13247603817873562,13247605070715450],[586,2824,-13247605070715450,-13247603817873562],[586,131328,1975301892192548,1975303127512529],[586,131338,1975301892192548,1975303127512529],[586,131904,1975301892192548,1975303127512529],[586,131914,1975301892192548,1975303127512529],[586,16777538,-13247605036737943,-13247603851851071],[586,16777544,13247603851851071,13247605036737943],[586,16777986,13247603851851071,13247605036737943],[586,16777992,-13247605036737943,-13247603851851071],[640,66,17198207762730769,17198211165268399],[640,72,13247602731588215,13247606157000801],[640,258,-1975305323765481,-1975299695939594],[640,264,-3950609262610422,-3950600776799744],[640,330,-3950606276156332,-3950603763253824],[640,706,17198207762730769,17198211165268399],[640,712,13247602731588215,13247606157000801],[640,898,-1975305323765481,-1975299695939594],[640,904,-3950609262610422,-3950600776799744],[640,970,-3950606276156332,-3950603763253824],[640,1032,-3950608236257121,-3950601803153038],[640,1346,11272300718113942,11272303150769995],[640,1352,-7321700231122540,-7321693598351231],[640,1672,-3950608236257121,-3950601803153038],[640,1986,11272300718113942,11272303150769995],[640,1992,-7321700231122540,-7321693598351231],[640,2056,-1975304632453679,-1975300387251397],[640,2370,13247603817873562,13247605070715450],[640,2376,13247603822418509,13247605066170506],[640,2696,-1975304632453679,-1975300387251397],[640,3010,13247603817873562,13247605070715450],[640,3016,13247603822418509,13247605066170506],[640,3144,26495207791089865,26495209986088162],[640,3336,-49039815252370900,-49039810262574998],[640,3784,26495207791089865,26495209986088162],[640,3976,-49039815252370900,-49039810262574998],[640,524610,-1975303127512529,-1975301892192548],[640,524616,-24519907464643494,-24519905292829457],[640,525250,-1975303127512529,-1975301892192548],[640,525256,-24519907464643494,-24519905292829457],[640,525576,26495207799184865,26495209977993164],[640,526216,26495207799184865,26495209977993164],[640,527368,26495207805375563,26495209971802464],[640,528008,26495207805375563,26495209971802464],[640,1049864,-1975303134066535,-1975301885638543],[640,1050504,-1975303134066535,-1975301885638543],[640,1051656,-22544604485915178,-22544603251852693],[640,1052296,-22544604485915178,-22544603251852693],[640,2100232,-1975303127512530,-1975301892192549],[640,2100872,-1975303127512530,-1975301892192549],[640,16777538,13247603851851071,13247605036737943],[640,16777544,13247603851021587,13247605037567427],[640,16778178,13247603851851071,13247605036737943],[640,16778184,13247603851021587,13247605037567427],[640,16778504,-1975303106832961,-1975301912872117],[640,16779144,-1975303106832961,-1975301912872117],[640,16780296,-1975303104304567,-1975301915400511],[640,16780936,-1975303104304567,-1975301915400511],[640,33557512,-22544604432275006,-22544603305492866],[640,33558152,-22544604432275006,-22544603305492866],[643,449,24519905362432319,24519907395040631],[643,450,-24519907395040631,-24519905362432319],[643,833,-24519907395040631,-24519905362432319],[643,834,24519905362432319,24519907395040631],[650,330,22544602288119128,22544605449648746],[650,450,-3950608236257121,-3950601803153038],[650,456,-18594000484966090,-18593997213391625],[650,834,-18594000484966090,-18593997213391625],[650,840,-3950608236257121,-3950601803153038],[650,960,22544602288119128,22544605449648746],[650,1410,-13247605066170506,-13247603822418509],[650,1416,13247603822418509,13247605066170506],[650,1794,13247603822418509,13247605066170506],[650,1800,-13247605066170506,-13247603822418509],[650,3202,-13247605070715450,-13247603817873562],[650,3208,13247603817873562,13247605070715450],[650,3586,13247603817873562,13247605070715450],[650,3592,-13247605070715450,-13247603817873562],[652,452,1975301912872117,1975303106832961],[652,456,-1975303106832961,-1975301912872117],[652,836,-1975303106832961,-1975301912872117],[652,840,1975301912872117,1975303106832961],[652,1412,-13247605037567427,-13247603851021587],[652,1416,13247603851021587,13247605037567427],[652,1796,13247603851021587,13247605037567427],[652,1800,-13247605037567427,-13247603851021587],[652,3204,-13247605036737943,-13247603851851071],[652,3208,13247603851851071,13247605036737943],[652,3588,13247603851851071,13247605036737943],[652,3592,-13247605036737943,-13247603851851071],[705,258,1975301912872117,1975303106832961],[705,323,26495207853670452,26495209923507576],[705,387,-24519907395040631,-24519905362432319],[705,834,-24519907395040631,-24519905362432319],[705,898,26495207853670452,26495209923507576],[705,963,1975301912872117,1975303106832961],[706,0,7901209096355172,7901210982465140],[706,66,17198207762730769,17198211165268399],[706,130,-26495211840725034,-26495205936452994],[706,192,17198207753821687,17198211174177485],[706,257,-1975303106832961,-1975301912872117],[706,264,-49039815252370900,-49039810262574998],[706,323,-26495209923507576,-26495207853670452],[706,330,-26495209986088162,-26495207791089865],[706,387,24519905362432319,24519907395040631],[706,394,3950601803153038,3950608236257121],[706,456,-26495210008022388,-26495207769155642],[706,514,17198207753821687,17198211174177485],[706,576,-26495211840725034,-26495205936452994],[706,640,17198207762730769,17198211165268399],[706,706,7901209096355172,7901210982465140],[706,778,-26495210008022388,-26495207769155642],[706,833,24519905362432319,24519907395040631],[706,840,3950601803153038,3950608236257121],[706,897,-26495209923507576,-26495207853670452],[706,904,-26495209986088162,-26495207791089865],[706,963,-1975303106832961,-1975301912872117],[706,970,-49039815252370900,-49039810262574998],[706,1280,-1975303104304567,-1975301915400511],[706,1346,13247603822418509,13247605066170506],[706,1410,11272298146528817,11272305722355110],[706,1472,-26495212221509964,-26495205555668056],[706,1794,-26495212221509964,-26495205555668056],[706,1856,11272298146528817,11272305722355110],[706,1920,13247603822418509,13247605066170506],[706,1986,-1975303104304567,-1975301915400511],[706,2370,13247603817873562,13247605070715450],[706,2434,-26495209986088162,-26495207791089865],[706,2496,13247603822418509,13247605066170506],[706,2818,13247603822418509,13247605066170506],[706,2880,-26495209986088162,-26495207791089865],[706,2944,13247603817873562,13247605070715450],[706,3202,-13247605066170506,-13247603822418509],[706,3264,13247603822418509,13247605066170506],[706,3586,13247603822418509,13247605066170506],[706,3648,-13247605066170506,-13247603822418509],[706,524544,-1975303127512529,-1975301892192548],[706,524674,24519905292829457,24519907464643494],[706,524736,-26495209978356470,-26495207798821558],[706,525058,-26495209978356470,-26495207798821558],[706,525120,24519905292829457,24519907464643494],[706,525250,-1975303127512529,-1975301892192548],[706,16777538,13247603851851071,13247605036737943],[706,16777602,-26495209923507576,-26495207853670452],[706,16777664,13247603851021587,13247605037567427],[706,16777986,13247603851021587,13247605037567427],[706,16778048,-26495209923507576,-26495207853670452],[706,16778112,13247603851851071,13247605036737943],[708,264,-1975303106832961,-1975301912872117],[708,396,-1975303106832961,-1975301912872117],[708,840,-1975303106832961,-1975301912872117],[708,972,-1975303106832961,-1975301912872117],[712,72,13247602731588215,13247606157000801],[712,192,-13247606157000801,-13247602731588215],[712,258,45089206499321174,45089208976214568],[712,260,1975301912872117,1975303106832961],[712,330,-2216932523,2216932520],[712,394,18593997213391625,18594000484966090],[712,396,1975301912872117,1975303106832961],[712,450,26495207769155642,26495210008022388],[712,520,-13247606157000801,-13247602731588215],[712,640,13247602731588215,13247606157000801],[712,778,26495207769155642,26495210008022388],[712,834,18593997213391625,18594000484966090],[712,836,1975301912872117,1975303106832961],[712,898,-2216932523,2216932520],[712,970,45089206499321174,45089208976214568],[712,972,1975301912872117,1975303106832961],[712,1280,-1975303106832961,-1975301912872117],[712,1352,39742811609090167,39742815056676876],[712,1416,-15222908173003467,-15222905735290626],[712,1472,-26495210141304164,-26495207635873864],[712,1800,-26495210141304164,-26495207635873864],[712,1856,-15222908173003467,-15222905735290626],[712,1920,39742811609090167,39742815056676876],[712,1992,-1975303106832961,-1975301912872117],[712,2376,13247603822418509,13247605066170506],[712,2496,-13247605066170506,-13247603822418509],[712,2824,-13247605066170506,-13247603822418509],[712,2944,13247603822418509,13247605066170506],[712,3144,26495207791089865,26495209986088162],[712,3208,-13247605070715450,-13247603817873562],[712,3264,-13247605066170506,-13247603822418509],[712,3592,-13247605066170506,-13247603822418509],[712,3648,-13247605070715450,-13247603817873562],[712,3712,26495207791089865,26495209986088162],[712,131328,22544603251852693,22544604485915178],[712,131464,22544603251852693,22544604485915178],[712,131904,22544603251852693,22544604485915178],[712,132040,22544603251852693,22544604485915178],[712,524544,-22544604485915178,-22544603251852693],[712,524680,-22544604485915178,-22544603251852693],[712,525120,-22544604485915178,-22544603251852693],[712,525256,-22544604485915178,-22544603251852693],[712,16777544,13247603851021587,13247605037567427],[712,16777664,-13247605037567427,-13247603851021587],[712,16777992,-13247605037567427,-13247603851021587],[712,16778112,13247603851021587,13247605037567427],[768,66,-5346395945272860,-5346392864495852],[768,130,-3950605491232570,-3950604548177586],[768,834,-5346395945272860,-5346392864495852],[768,898,-3950605491232570,-3950604548177586],[768,1026,17198207762730769,17198211165268399],[768,1794,17198207762730769,17198211165268399],[768,2050,-13247606143034927,-13247602745554085],[768,2818,-13247606143034927,-13247602745554085],[768,16777218,-13247606072008906,-13247602816580098],[768,16777986,-13247606072008906,-13247602816580098],[771,257,-1975304531698390,-1975300488006682],[771,258,1975300488006682,1975304531698390],[771,513,1975300488006682,1975304531698390],[771,514,-1975304531698390,-1975300488006682],[778,258,1975300387251397,1975304632453679],[778,264,-1975304632453679,-1975300387251397],[778,450,26495207769155642,26495210008022388],[778,456,-26495210008022388,-26495207769155642],[778,514,-1975304632453679,-1975300387251397],[778,520,1975300387251397,1975304632453679],[778,706,-26495210008022388,-26495207769155642],[778,712,26495207769155642,26495210008022388],[833,257,-1975304047051064,-1975300972654016],[833,263,-22544604432275006,-22544603305492866],[833,267,-1975303104304567,-1975301915400511],[833,320,1975300972654016,1975304047051064],[833,326,22544603305492866,22544604432275006],[833,330,1975301915400511,1975303104304567],[833,387,24519905362432319,24519907395040631],[833,450,-24519907395040631,-24519905362432319],[833,513,1975300972654016,1975304047051064],[833,519,22544603305492866,22544604432275006],[833,523,1975301915400511,1975303104304567],[833,576,-1975304047051064,-1975300972654016],[833,582,-22544604432275006,-22544603305492866],[833,586,-1975303104304567,-1975301915400511],[833,643,-24519907395040631,-24519905362432319],[833,706,24519905362432319,24519907395040631],[833,1026,13247603851851071,13247605036737943],[833,1091,13247603851851071,13247605036737943],[833,1794,13247603851851071,13247605036737943],[833,1859,13247603851851071,13247605036737943],[833,2050,-13247605036737943,-13247603851851071],[833,2115,-13247605036737943,-13247603851851071],[833,2818,-13247605036737943,-13247603851851071],[833,2883,-13247605036737943,-13247603851851071],[833,16777218,-13247605015388352,-13247603873200664],[833,16777283,-13247605015388352,-13247603873200664],[833,16777986,-13247605015388352,-13247603873200664],[833,16778051,-13247605015388352,-13247603873200664],[834,66,-5346395945272860,-5346392864495852],[834,258,232566281601026132,232566321236466156],[834,267,24519905362432319,24519907395040631],[834,320,-227219925291193296,-227219888736530280],[834,329,-24519907395040631,-24519905362432319],[834,387,-24519907395040631,-24519905362432319],[834,394,18593997213391625,18594000484966090],[834,449,24519905362432319,24519907395040631],[834,456,-18594000484966090,-18593997213391625],[834,514,-227219925291193296,-227219888736530280],[834,523,-24519907395040631,-24519905362432319],[834,576,232566281601026132,232566321236466156],[834,585,24519905362432319,24519907395040631],[834,643,24519905362432319,24519907395040631],[834,650,-18594000484966090,-18593997213391625],[834,705,-24519907395040631,-24519905362432319],[834,712,18593997213391625,18594000484966090],[834,768,-5346395945272860,-5346392864495852],[834,1025,-13247605036737943,-13247603851851071],[834,1032,-13247605070715450,-13247603817873562],[834,1091,-13247605036737943,-13247603851851071],[834,1098,-13247605070715450,-13247603817873562],[834,1152,13247603817873562,13247605070715450],[834,1218,13247603817873562,13247605070715450],[834,1793,-13247605036737943,-13247603851851071],[834,1800,-13247605070715450,-13247603817873562],[834,1859,-13247605036737943,-13247603851851071],[834,1866,-13247605070715450,-13247603817873562],[834,1920,13247603817873562,13247605070715450],[834,1986,13247603817873562,13247605070715450],[834,2049,13247603851851071,13247605036737943],[834,2056,13247603817873562,13247605070715450],[834,2115,13247603851851071,13247605036737943],[834,2122,13247603817873562,13247605070715450],[834,2176,-13247605070715450,-13247603817873562],[834,2242,-13247605070715450,-13247603817873562],[834,2817,13247603851851071,13247605036737943],[834,2824,13247603817873562,13247605070715450],[834,2883,13247603851851071,13247605036737943],[834,2890,13247603817873562,13247605070715450],[834,2944,-13247605070715450,-13247603817873562],[834,3010,-13247605070715450,-13247603817873562],[834,3330,18593997213391625,18594000484966090],[834,3392,-18594000484966090,-18593997213391625],[834,3586,-18594000484966090,-18593997213391625],[834,3648,18593997213391625,18594000484966090],[834,16777217,13247603873200664,13247605015388352],[834,16777224,13247603851851071,13247605036737943],[834,16777283,13247603873200664,13247605015388352],[834,16777290,13247603851851071,13247605036737943],[834,16777344,-13247605036737943,-13247603851851071],[834,16777410,-13247605036737943,-13247603851851071],[834,16777985,13247603873200664,13247605015388352],[834,16777992,13247603851851071,13247605036737943],[834,16778051,13247603873200664,13247605015388352],[834,16778058,13247603851851071,13247605036737943],[834,16778112,-13247605036737943,-13247603851851071],[834,16778178,-13247605036737943,-13247603851851071],[834,16778498,-24519907395040631,-24519905362432319],[834,16778560,24519905362432319,24519907395040631],[834,16778754,24519905362432319,24519907395040631],[834,16778816,-24519907395040631,-24519905362432319],[834,16779522,24519905362432319,24519907395040631],[834,16779584,-24519907395040631,-24519905362432319],[834,16779778,-24519907395040631,-24519905362432319],[834,16779840,24519905362432319,24519907395040631],[836,263,22544603305492866,22544604432275006],[836,270,1975301915400511,1975303104304567],[836,323,-22544604432275006,-22544603305492866],[836,330,-1975303104304567,-1975301915400511],[836,396,1975301912872117,1975303106832961],[836,456,-1975303106832961,-1975301912872117],[836,519,-22544604432275006,-22544603305492866],[836,526,-1975303104304567,-1975301915400511],[836,579,22544603305492866,22544604432275006],[836,586,1975301915400511,1975303104304567],[836,652,-1975303106832961,-1975301912872117],[836,712,1975301912872117,1975303106832961],[839,257,-22544604432275006,-22544603305492866],[839,260,22544603305492866,22544604432275006],[839,323,-22544604432275006,-22544603305492866],[839,326,22544603305492866,22544604432275006],[839,513,22544603305492866,22544604432275006],[839,516,-22544604432275006,-22544603305492866],[839,579,22544603305492866,22544604432275006],[839,582,-22544604432275006,-22544603305492866],[840,264,-3950608236257121,-3950601803153038],[840,267,-22544604432275006,-22544603305492866],[840,270,-1975303104304567,-1975301915400511],[840,320,3950601803153038,3950608236257121],[840,323,22544603305492866,22544604432275006],[840,326,1975301915400511,1975303104304567],[840,394,3950601803153038,3950608236257121],[840,396,-1975303106832961,-1975301912872117],[840,450,-3950608236257121,-3950601803153038],[840,452,1975301912872117,1975303106832961],[840,520,3950601803153038,3950608236257121],[840,523,22544603305492866,22544604432275006],[840,526,1975301915400511,1975303104304567],[840,576,-3950608236257121,-3950601803153038],[840,579,-22544604432275006,-22544603305492866],[840,582,-1975303104304567,-1975301915400511],[840,650,-3950608236257121,-3950601803153038],[840,652,1975301912872117,1975303106832961],[840,706,3950601803153038,3950608236257121],[840,708,-1975303106832961,-1975301912872117],[840,1026,13247603817873562,13247605070715450],[840,1098,13247603817873562,13247605070715450],[840,1152,13247603822418509,13247605066170506],[840,1224,15222905735290626,15222908173003467],[840,1416,-47064511840212707,-47064508655028107],[840,1472,45089206600617048,45089208874918688],[840,1672,45089206600617048,45089208874918688],[840,1728,-47064511840212707,-47064508655028107],[840,1794,13247603817873562,13247605070715450],[840,1866,13247603817873562,13247605070715450],[840,1920,15222905735290626,15222908173003467],[840,1992,13247603822418509,13247605066170506],[840,2050,-13247605070715450,-13247603817873562],[840,2122,-13247605070715450,-13247603817873562],[840,2176,-13247605066170506,-13247603822418509],[840,2248,-13247605066170506,-13247603822418509],[840,2818,-13247605070715450,-13247603817873562],[840,2890,-13247605070715450,-13247603817873562],[840,2944,-13247605066170506,-13247603822418509],[840,3016,-13247605066170506,-13247603822418509],[840,131338,-1975303127512529,-1975301892192548],[840,131394,1975301892192548,1975303127512529],[840,131464,-22544604485915178,-22544603251852693],[840,131520,22544603251852693,22544604485915178],[840,131594,1975301892192548,1975303127512529],[840,131650,-1975303127512529,-1975301892192548],[840,131720,22544603251852693,22544604485915178],[840,131776,-22544604485915178,-22544603251852693],[840,524680,-1975303134066536,-1975301885638544],[840,524736,1975301885638544,1975303134066536],[840,524936,1975301885638544,1975303134066536],[840,524992,-1975303134066536,-1975301885638544],[840,16777218,-13247605036737943,-13247603851851071],[840,16777290,-13247605036737943,-13247603851851071],[840,16777344,-13247605037567427,-13247603851021587],[840,16777416,-13247605037567427,-13247603851021587],[840,16777986,-13247605036737943,-13247603851851071],[840,16778058,-13247605036737943,-13247603851851071],[840,16778112,-13247605037567427,-13247603851021587],[840,16778184,-13247605037567427,-13247603851021587],[843,257,-1975303104304567,-1975301915400511],[843,258,24519905362432319,24519907395040631],[843,264,-22544604432275006,-22544603305492866],[843,323,22544603305492866,22544604432275006],[843,329,-24519907395040631,-24519905362432319],[843,330,1975301915400511,1975303104304567],[843,513,1975301915400511,1975303104304567],[843,514,-24519907395040631,-24519905362432319],[843,520,22544603305492866,22544604432275006],[843,579,-22544604432275006,-22544603305492866],[843,585,24519905362432319,24519907395040631],[843,586,-1975303104304567,-1975301915400511],[846,260,1975301915400511,1975303104304567],[846,264,-1975303104304567,-1975301915400511],[846,326,1975301915400511,1975303104304567],[846,330,-1975303104304567,-1975301915400511],[846,516,-1975303104304567,-1975301915400511],[846,520,1975301915400511,1975303104304567],[846,582,-1975303104304567,-1975301915400511],[846,586,1975301915400511,1975303104304567],[897,323,-26495209923507576,-26495207853670452],[897,450,26495207853670452,26495209923507576],[897,579,26495207853670452,26495209923507576],[897,706,-26495209923507576,-26495207853670452],[898,0,-7901210982465140,-7901209096355172],[898,130,-3950605491232570,-3950604548177586],[898,258,-1975305323765481,-1975299695939594],[898,323,26495207853670452,26495209923507576],[898,330,-2216932523,2216932520],[898,384,-1975305321237090,-1975299698467991],[898,449,-26495209923507576,-26495207853670452],[898,456,-2216932520,2216932523],[898,514,-1975305321237090,-1975299698467991],[898,579,-26495209923507576,-26495207853670452],[898,586,-2216932520,2216932523],[898,640,-1975305323765481,-1975299695939594],[898,705,26495207853670452,26495209923507576],[898,712,-2216932523,2216932520],[898,768,-3950605491232570,-3950604548177586],[898,898,-7901210982465140,-7901209096355172],[898,1088,-24519908070687651,-24519904686785298],[898,1218,-26495209986088162,-26495207791089865],[898,1346,-51015117331445277,-51015113203205693],[898,1472,52990415696972220,52990419857383828],[898,1602,52990415696972220,52990419857383828],[898,1728,-51015117331445277,-51015113203205693],[898,1856,-26495209986088162,-26495207791089865],[898,1986,-24519908070687651,-24519904686785298],[898,2112,26495207791089865,26495209986088162],[898,2242,26495207791089865,26495209986088162],[898,2880,26495207791089865,26495209986088162],[898,3010,26495207791089865,26495209986088162],[898,524610,-26495209978356470,-26495207798821558],[898,524736,26495207798821558,26495209978356470],[898,524866,26495207798821558,26495209978356470],[898,524992,-26495209978356470,-26495207798821558],[898,16777280,26495207853670452,26495209923507576],[898,16777410,26495207853670452,26495209923507576],[898,16778048,26495207853670452,26495209923507576],[898,16778178,26495207853670452,26495209923507576],[904,264,-3950609262610422,-3950600776799744],[904,330,-26495209986088162,-26495207791089865],[904,384,3950600776799744,3950609262610422],[904,450,26495207791089865,26495209986088162],[904,520,3950600776799744,3950609262610422],[904,586,26495207791089865,26495209986088162],[904,640,-3950609262610422,-3950600776799744],[904,706,-26495209986088162,-26495207791089865],[904,3336,-26495209986088162,-26495207791089865],[904,3456,26495207791089865,26495209986088162],[904,3592,26495207791089865,26495209986088162],[904,3712,-26495209986088162,-26495207791089865],[960,330,22544602288119128,22544605449648746],[960,394,-22544605449648746,-22544602288119128],[960,586,-22544605449648746,-22544602288119128],[960,650,22544602288119128,22544605449648746],[960,1026,11272300718113942,11272303150769995],[960,1032,-13247605066170506,-13247603822418509],[960,1218,13247603822418509,13247605066170506],[960,1224,-15222908173003467,-15222905735290626],[960,1346,49039810709439166,49039814805506726],[960,1352,-47064511840212707,-47064508655028107],[960,1410,-51015117331445277,-51015113203205693],[960,1416,49039810709439166,49039814805506726],[960,1602,-51015117331445277,-51015113203205693],[960,1608,49039810709439166,49039814805506726],[960,1666,49039810709439166,49039814805506726],[960,1672,-47064511840212707,-47064508655028107],[960,1794,13247603822418509,13247605066170506],[960,1800,-15222908173003467,-15222905735290626],[960,1986,11272300718113942,11272303150769995],[960,1992,-13247605066170506,-13247603822418509],[960,2050,-13247605066170506,-13247603822418509],[960,2056,13247603822418509,13247605066170506],[960,2242,-13247605066170506,-13247603822418509],[960,2248,13247603822418509,13247605066170506],[960,2818,-13247605066170506,-13247603822418509],[960,2824,13247603822418509,13247605066170506],[960,3010,-13247605066170506,-13247603822418509],[960,3016,13247603822418509,13247605066170506],[960,524610,24519905292829457,24519907464643494],[960,524616,-24519907464643494,-24519905292829457],[960,524674,-24519907464643494,-24519905292829457],[960,524680,24519905292829457,24519907464643494],[960,524866,-24519907464643494,-24519905292829457],[960,524872,24519905292829457,24519907464643494],[960,524930,24519905292829457,24519907464643494],[960,524936,-24519907464643494,-24519905292829457],[960,16777218,-13247605037567427,-13247603851021587],[960,16777224,13247603851021587,13247605037567427],[960,16777410,-13247605037567427,-13247603851021587],[960,16777416,13247603851021587,13247605037567427],[960,16777986,-13247605037567427,-13247603851021587],[960,16777992,13247603851021587,13247605037567427],[960,16778178,-13247605037567427,-13247603851021587],[960,16778184,13247603851021587,13247605037567427],[963,257,-1975303106832961,-1975301912872117],[963,258,1975301912872117,1975303106832961],[963,449,-1975303106832961,-1975301912872117],[963,450,1975301912872117,1975303106832961],[963,513,1975301912872117,1975303106832961],[963,514,-1975303106832961,-1975301912872117],[963,705,1975301912872117,1975303106832961],[963,706,-1975303106832961,-1975301912872117],[970,258,45089206499321174,45089208976214568],[970,264,-49039815252370900,-49039810262574998],[970,330,-3950606276156332,-3950603763253824],[970,384,3950603763253824,3950606276156332],[970,450,49039810262574998,49039815252370900],[970,456,-45089208976214568,-45089206499321174],[970,514,-45089208976214568,-45089206499321174],[970,520,49039810262574998,49039815252370900],[970,586,3950603763253824,3950606276156332],[970,640,-3950606276156332,-3950603763253824],[970,706,-49039815252370900,-49039810262574998],[970,712,45089206499321174,45089208976214568],[972,260,1975301912872117,1975303106832961],[972,264,-1975303106832961,-1975301912872117],[972,452,1975301912872117,1975303106832961],[972,456,-1975303106832961,-1975301912872117],[972,516,-1975303106832961,-1975301912872117],[972,520,1975301912872117,1975303106832961],[972,708,-1975303106832961,-1975301912872117],[972,712,1975301912872117,1975303106832961],[1025,10,4648498108918473,4648501315670959],[1025,12,1975300984811094,1975304034893986],[1025,66,-8599107733712757,-8599101730286822],[1025,130,9296995143061538,9297003706117328],[1025,132,1975300513283600,1975304506421476],[1025,136,-8599107733712757,-8599101730286822],[1025,142,-22544606192796140,-22544601544971738],[1025,192,4648498108918473,4648501315670959],[1025,198,1975301912779772,1975303106925307],[1025,202,-17198211976622880,-17198206951376300],[1025,204,1975301912779772,1975303106925307],[1025,258,1975300513283600,1975304506421476],[1025,320,1975300984811094,1975304034893986],[1025,326,22544603300308524,22544604437459344],[1025,330,1975301912779772,1975303106925307],[1025,394,1975301912779772,1975303106925307],[1025,396,22544603300308524,22544604437459344],[1025,450,-22544606192796140,-22544601544971738],[1025,834,-13247605036737943,-13247603851851071],[1025,1035,4648498108918473,4648501315670959],[1025,1037,1975300984811094,1975304034893986],[1025,1091,-8599107733712757,-8599101730286822],[1025,1155,9296995143061538,9297003706117328],[1025,1157,1975300513283600,1975304506421476],[1025,1161,-8599107733712757,-8599101730286822],[1025,1167,-22544606192796140,-22544601544971738],[1025,1217,4648498108918473,4648501315670959],[1025,1223,1975301912779772,1975303106925307],[1025,1227,-17198211976622880,-17198206951376300],[1025,1229,1975301912779772,1975303106925307],[1025,1283,1975300513283600,1975304506421476],[1025,1345,1975300984811094,1975304034893986],[1025,1351,22544603300308524,22544604437459344],[1025,1355,1975301912779772,1975303106925307],[1025,1419,1975301912779772,1975303106925307],[1025,1421,22544603300308524,22544604437459344],[1025,1475,-22544606192796140,-22544601544971738],[1025,1859,-13247605036737943,-13247603851851071],[1025,2186,1975301915400511,1975303104304567],[1025,2188,22544603305492866,22544604432275006],[1025,2242,1975301912872117,1975303106832961],[1025,2370,-13247605037567427,-13247603851021587],[1025,3211,1975301915400511,1975303104304567],[1025,3213,22544603305492866,22544604432275006],[1025,3267,1975301912872117,1975303106832961],[1025,3395,-13247605037567427,-13247603851021587],[1025,32908,-13247605033169427,-13247603855419588],[1025,33933,-13247605033169427,-13247603855419588],[1025,131210,4648499087000812,4648500337588616],[1025,131212,1975301917270118,1975303102434961],[1025,132235,4648499087000812,4648500337588616],[1025,132237,1975301917270118,1975303102434961],[1025,524426,-13247605066155522,-13247603822433492],[1025,524428,1975301917236486,1975303102468593],[1025,524482,4648499087034444,4648500337554984],[1025,525451,-13247605066155522,-13247603822433492],[1025,525453,1975301917236486,1975303102468593],[1025,525507,4648499087034444,4648500337554984],[1025,1048714,1975301917236486,1975303102468593],[1025,1048716,22544603307191776,22544604430576096],[1025,1048770,1975301917270118,1975303102434961],[1025,1048898,-13247605033203059,-13247603855385956],[1025,1049739,1975301917236486,1975303102468593],[1025,1049741,22544603307191776,22544604430576096],[1025,1049795,1975301917270118,1975303102434961],[1025,1049923,-13247605033203059,-13247603855385956],[1026,0,-1395798520970888,-1395780249387636],[1026,9,-4648501315670959,-4648498108918473],[1026,12,-13247605973043456,-13247602915545560],[1026,65,8599101730286822,8599107733712757],[1026,72,-8145018103,8145018085],[1026,129,-9297003706117328,-9296995143061538],[1026,132,15920799016722807,15920804276750552],[1026,136,54693605669021029,54693650731369441],[1026,141,26495207753551168,26495210023626872],[1026,192,236209459374475712,236209511426750774],[1026,201,13247601047218919,13247607841370104],[1026,204,11272300744096280,11272303124787655],[1026,257,-1975304506421476,-1975300513283600],[1026,264,-3950609262921848,-3950600776488312],[1026,320,-270333833954743796,-270333790528810368],[1026,329,-24519907402845709,-24519905354627238],[1026,384,23242490579994047,23242506542953071],[1026,393,-1975303106925307,-1975301912779772],[1026,396,-22544604437459344,-22544603300308524],[1026,449,22544601544971738,22544606192796140],[1026,456,-69609119643958417,-69609108589050261],[1026,576,-1975305323765481,-1975299695939594],[1026,768,17198207762730769,17198211165268399],[1026,833,13247603851851071,13247605036737943],[1026,840,13247603817873562,13247605070715450],[1026,960,11272300718113942,11272303150769995],[1026,1026,-1395798520970888,-1395780249387636],[1026,1035,-4648501315670959,-4648498108918473],[1026,1038,-13247605973043456,-13247602915545560],[1026,1091,8599101730286822,8599107733712757],[1026,1098,-8145018103,8145018085],[1026,1155,-9297003706117328,-9296995143061538],[1026,1158,15920799016722807,15920804276750552],[1026,1162,54693605669021029,54693650731369441],[1026,1167,26495207753551168,26495210023626872],[1026,1218,236209459374475712,236209511426750774],[1026,1227,13247601047218919,13247607841370104],[1026,1230,11272300744096280,11272303124787655],[1026,1283,-1975304506421476,-1975300513283600],[1026,1290,-3950609262921848,-3950600776488312],[1026,1346,-270333833954743796,-270333790528810368],[1026,1355,-24519907402845709,-24519905354627238],[1026,1410,23242490579994047,23242506542953071],[1026,1419,-1975303106925307,-1975301912779772],[1026,1422,-22544604437459344,-22544603300308524],[1026,1475,22544601544971738,22544606192796140],[1026,1482,-69609119643958417,-69609108589050261],[1026,1602,-1975305323765481,-1975299695939594],[1026,1794,17198207762730769,17198211165268399],[1026,1859,13247603851851071,13247605036737943],[1026,1866,13247603817873562,13247605070715450],[1026,1986,11272300718113942,11272303150769995],[1026,2056,-1975304632453679,-1975300387251397],[1026,2112,-3950609262610422,-3950600776799744],[1026,2176,-3950608236257121,-3950601803153038],[1026,2185,-1975303104304567,-1975301915400511],[1026,2188,-22544604432275006,-22544603305492866],[1026,2241,-1975303106832961,-1975301912872117],[1026,2248,-49039815252370900,-49039810262574998],[1026,2304,13247602731588215,13247606157000801],[1026,2369,13247603851021587,13247605037567427],[1026,2376,13247603822418509,13247605066170506],[1026,2440,26495207791089865,26495209986088162],[1026,2496,-7321700231122540,-7321693598351231],[1026,2880,-3950606276156332,-3950603763253824],[1026,3082,-1975304632453679,-1975300387251397],[1026,3138,-3950609262610422,-3950600776799744],[1026,3202,-3950608236257121,-3950601803153038],[1026,3211,-1975303104304567,-1975301915400511],[1026,3214,-22544604432275006,-22544603305492866],[1026,3267,-1975303106832961,-1975301912872117],[1026,3274,-49039815252370900,-49039810262574998],[1026,3330,13247602731588215,13247606157000801],[1026,3395,13247603851021587,13247605037567427],[1026,3402,13247603822418509,13247605066170506],[1026,3466,26495207791089865,26495209986088162],[1026,3522,-7321700231122540,-7321693598351231],[1026,3906,-3950606276156332,-3950603763253824],[1026,131080,4648498045480101,4648501379109326],[1026,131200,-4648502626375994,-4648496798213434],[1026,131209,-4648500337588616,-4648499087000812],[1026,131212,11272301204057192,11272302664826744],[1026,131272,8599103424503113,8599106039496475],[1026,131464,-1975303134066536,-1975301885638544],[1026,132106,4648498045480101,4648501379109326],[1026,132226,-4648502626375994,-4648496798213434],[1026,132235,-4648500337588616,-4648499087000812],[1026,132238,11272301204057192,11272302664826744],[1026,132298,8599103424503113,8599106039496475],[1026,132490,-1975303134066536,-1975301885638544],[1026,133256,-1975303127512530,-1975301892192549],[1026,134282,-1975303127512530,-1975301892192549],[1026,524296,-1975305288493376,-1975299731211704],[1026,524352,-4648502490229551,-4648496934359881],[1026,524416,6623798642954895,6623805801339609],[1026,524425,13247603822433492,13247605066155522],[1026,524428,-1975303102468593,-1975301917236486],[1026,524481,-4648500337554984,-4648499087034444],[1026,524488,15920798695415380,15920804598057982],[1026,524680,-22544604489700504,-22544603248067364],[1026,524736,-3950606232509516,-3950603806900640],[1026,525322,-1975305288493376,-1975299731211704],[1026,525378,-4648502490229551,-4648496934359881],[1026,525442,6623798642954895,6623805801339609],[1026,525451,13247603822433492,13247605066155522],[1026,525454,-1975303102468593,-1975301917236486],[1026,525507,-4648500337554984,-4648499087034444],[1026,525514,15920798695415380,15920804598057982],[1026,525706,-22544604489700504,-22544603248067364],[1026,525762,-3950606232509516,-3950603806900640],[1026,526472,-22544604485915178,-22544603251852693],[1026,526528,-1975303134066535,-1975301885638543],[1026,527498,-22544604485915178,-22544603251852693],[1026,527554,-1975303134066535,-1975301885638543],[1026,655496,26495207577110300,26495210200067732],[1026,656522,26495207577110300,26495210200067732],[1026,1048584,-1975304605835260,-1975300413869816],[1026,1048640,-3950609211113582,-3950600828296569],[1026,1048704,-3950608433100829,-3950601606309328],[1026,1048713,-1975303102468593,-1975301917236486],[1026,1048716,-22544604430576096,-22544603307191776],[1026,1048769,-1975303102434961,-1975301917270118],[1026,1048776,-49039815222920444,-49039810292025454],[1026,1048832,13247602765618499,13247606122970514],[1026,1048897,13247603855385956,13247605033203059],[1026,1048904,13247603826989498,13247605061599516],[1026,1048968,26495207799404518,26495209977773508],[1026,1049024,-7321700188594704,-7321693640879080],[1026,1049408,-1975303127512529,-1975301892192548],[1026,1049610,-1975304605835260,-1975300413869816],[1026,1049666,-3950609211113582,-3950600828296569],[1026,1049730,-3950608433100829,-3950601606309328],[1026,1049739,-1975303102468593,-1975301917236486],[1026,1049742,-22544604430576096,-22544603307191776],[1026,1049795,-1975303102434961,-1975301917270118],[1026,1049802,-49039815222920444,-49039810292025454],[1026,1049858,13247602765618499,13247606122970514],[1026,1049923,13247603855385956,13247605033203059],[1026,1049930,13247603826989498,13247605061599516],[1026,1049994,26495207799404518,26495209977773508],[1026,1050050,-7321700188594704,-7321693640879080],[1026,1050434,-1975303127512529,-1975301892192548],[1026,1050760,26495207805375563,26495209971802464],[1026,1050816,26495207799184865,26495209977993164],[1026,1050944,-24519907464643494,-24519905292829457],[1026,1051786,26495207805375563,26495209971802464],[1026,1051842,26495207799184865,26495209977993164],[1026,1051970,-24519907464643494,-24519905292829457],[1026,1179784,-1975303134589986,-1975301885115096],[1026,1180810,-1975303134589986,-1975301885115096],[1026,1573000,-45089208969627452,-45089206505908288],[1026,1573056,-3950606258772122,-3950603780638034],[1026,1574026,-45089208969627452,-45089206505908288],[1026,1574082,-3950606258772122,-3950603780638034],[1026,1703944,-1975303134589986,-1975301885115096],[1026,1704970,-1975303134589986,-1975301885115096],[1028,0,-4648502458569680,-4648496966019744],[1028,9,-1975304034893986,-1975300984811094],[1028,10,-15920803246405425,-15920800047067943],[1028,72,-4648502338601082,-4648497085988341],[1028,129,-1975304506421476,-1975300513283600],[1028,130,-4648502338601082,-4648497085988341],[1028,136,240160072890335656,240160107950300992],[1028,139,-3950606208579430,-3950603830830732],[1028,192,-15920803246405425,-15920800047067943],[1028,195,-1975303106925307,-1975301912779772],[1028,201,-1975303106925307,-1975301912779772],[1028,202,26495207635626304,26495210141551732],[1028,264,-1975304506421476,-1975300513283600],[1028,323,-22544604437459344,-22544603300308524],[1028,330,-1975303106925307,-1975301912779772],[1028,384,-1975304034893986,-1975300984811094],[1028,393,-22544604437459344,-22544603300308524],[1028,394,-1975303106925307,-1975301912779772],[1028,456,-3950606208579430,-3950603830830732],[1028,1028,-4648502458569680,-4648496966019744],[1028,1037,-1975304034893986,-1975300984811094],[1028,1038,-15920803246405425,-15920800047067943],[1028,1100,-4648502338601082,-4648497085988341],[1028,1157,-1975304506421476,-1975300513283600],[1028,1158,-4648502338601082,-4648497085988341],[1028,1164,240160072890335656,240160107950300992],[1028,1167,-3950606208579430,-3950603830830732],[1028,1220,-15920803246405425,-15920800047067943],[1028,1223,-1975303106925307,-1975301912779772],[1028,1229,-1975303106925307,-1975301912779772],[1028,1230,26495207635626304,26495210141551732],[1028,1292,-1975304506421476,-1975300513283600],[1028,1351,-22544604437459344,-22544603300308524],[1028,1358,-1975303106925307,-1975301912779772],[1028,1412,-1975304034893986,-1975300984811094],[1028,1421,-22544604437459344,-22544603300308524],[1028,1422,-1975303106925307,-1975301912779772],[1028,1484,-3950606208579430,-3950603830830732],[1028,2056,-1975304531698390,-1975300488006682],[1028,2176,-1975304047051064,-1975300972654016],[1028,2185,-22544604432275006,-22544603305492866],[1028,2186,-1975303104304567,-1975301915400511],[1028,2248,-1975303106832961,-1975301912872117],[1028,2440,26495207853670452,26495209923507576],[1028,3084,-1975304531698390,-1975300488006682],[1028,3204,-1975304047051064,-1975300972654016],[1028,3213,-22544604432275006,-22544603305492866],[1028,3214,-1975303104304567,-1975301915400511],[1028,3276,-1975303106832961,-1975301912872117],[1028,3468,26495207853670452,26495209923507576],[1028,32776,-1975304034893986,-1975300984811094],[1028,32896,-1975304506421476,-1975300513283600],[1028,32905,26495207861603338,26495209915574692],[1028,32906,-1975303102434961,-1975301917270118],[1028,32968,-1975303102468593,-1975301917236486],[1028,33160,-22544604430576096,-22544603307191776],[1028,33804,-1975304034893986,-1975300984811094],[1028,33924,-1975304506421476,-1975300513283600],[1028,33933,26495207861603338,26495209915574692],[1028,33934,-1975303102434961,-1975301917270118],[1028,33996,-1975303102468593,-1975301917236486],[1028,34188,-22544604430576096,-22544603307191776],[1028,34952,-22544604432275006,-22544603305492866],[1028,35980,-22544604432275006,-22544603305492866],[1028,131080,-15920803246405425,-15920800047067943],[1028,131200,-4648502349941046,-4648497074648383],[1028,131209,-1975303102434961,-1975301917270118],[1028,131210,-9297000203994710,-9296998645184146],[1028,131272,13247603822433492,13247605066155522],[1028,131464,-1975303102468593,-1975301917236486],[1028,132108,-15920803246405425,-15920800047067943],[1028,132228,-4648502349941046,-4648497074648383],[1028,132237,-1975303102434961,-1975301917270118],[1028,132238,-9297000203994710,-9296998645184146],[1028,132300,13247603822433492,13247605066155522],[1028,132492,-1975303102468593,-1975301917236486],[1028,133256,-1975303104304567,-1975301915400511],[1028,134284,-1975303104304567,-1975301915400511],[1028,163976,-3950606212356198,-3950603827053960],[1028,165004,-3950606212356198,-3950603827053960],[1028,524296,-4648502349941046,-4648497074648383],[1028,524416,-15920803246405425,-15920800047067943],[1028,524425,-1975303102468593,-1975301917236486],[1028,524426,13247603822433492,13247605066155522],[1028,524488,-9297000203994710,-9296998645184146],[1028,524680,-1975303102434961,-1975301917270118],[1028,525324,-4648502349941046,-4648497074648383],[1028,525444,-15920803246405425,-15920800047067943],[1028,525453,-1975303102468593,-1975301917236486],[1028,525454,13247603822433492,13247605066155522],[1028,525516,-9297000203994710,-9296998645184146],[1028,525708,-1975303102434961,-1975301917270118],[1028,526472,-1975303106832961,-1975301912872117],[1028,527500,-1975303106832961,-1975301912872117],[1028,557192,-1975303111382023,-1975301908323058],[1028,558220,-1975303111382023,-1975301908323058],[1028,655496,26495207626385616,26495210150792412],[1028,656524,26495207626385616,26495210150792412],[1028,688256,-1975303111382023,-1975301908323058],[1028,689284,-1975303111382023,-1975301908323058],[1028,1048584,-1975304506421476,-1975300513283600],[1028,1048704,-1975304034893986,-1975300984811094],[1028,1048713,-22544604430576096,-22544603307191776],[1028,1048714,-1975303102468593,-1975301917236486],[1028,1048776,-1975303102434961,-1975301917270118],[1028,1048968,26495207861603338,26495209915574692],[1028,1049612,-1975304506421476,-1975300513283600],[1028,1049732,-1975304034893986,-1975300984811094],[1028,1049741,-22544604430576096,-22544603307191776],[1028,1049742,-1975303102468593,-1975301917236486],[1028,1049804,-1975303102434961,-1975301917270118],[1028,1049996,26495207861603338,26495209915574692],[1028,1050760,26495207853670452,26495209923507576],[1028,1051788,26495207853670452,26495209923507576],[1028,1081480,-22544604444342592,-22544603293425280],[1028,1082508,-22544604444342592,-22544603293425280],[1028,1179784,-1975303111382023,-1975301908323058],[1028,1180812,-1975303111382023,-1975301908323058],[1028,1573000,-3950606212356198,-3950603827053960],[1028,1574028,-3950606212356198,-3950603827053960],[1028,1703944,-1975303111382023,-1975301908323058],[1028,1704972,-1975303111382023,-1975301908323058],[1028,1736704,-22544604444342592,-22544603293425280],[1028,1737732,-22544604444342592,-22544603293425280],[1031,139,-28470512964195555,-28470509832687554],[1031,141,19871405230482798,19871408102400732],[1031,142,8599101730286822,8599107733712757],[1031,195,-1975303106925307,-1975301912779772],[1031,198,1975301912779772,1975303106925307],[1031,323,-22544604437459344,-22544603300308524],[1031,326,22544603300308524,22544604437459344],[1031,1161,8599101730286822,8599107733712757],[1031,1162,19871405230482798,19871408102400732],[1031,1164,-28470512964195555,-28470509832687554],[1031,1217,1975301912779772,1975303106925307],[1031,1220,-1975303106925307,-1975301912779772],[1031,1345,22544603300308524,22544604437459344],[1031,1348,-22544604437459344,-22544603300308524],[1032,0,-42841841848850176,-42841784433309880],[1032,6,6623799524173159,6623804920121353],[1032,66,-18594003438885652,-18593994259472046],[1032,68,15920799016722807,15920804276750552],[1032,129,8599101730286822,8599107733712757],[1032,130,-62015351366925919,-62015298862938325],[1032,132,-240160109310537124,-240160071530099528],[1032,192,-222961907731674894,-222961854180962580],[1032,195,1975301912779772,1975303106925307],[1032,198,-24519908074897335,-24519904682575622],[1032,258,3950600776488312,3950609262921848],[1032,260,1975300513283600,1975304506421476],[1032,320,22544599251748898,22544608486018976],[1032,323,22544603300308524,22544604437459344],[1032,326,1975301912779772,1975303106925307],[1032,384,255808774717255568,255808825243183778],[1032,390,24519905354627238,24519907402845709],[1032,450,67633806676178144,67633816537125456],[1032,452,3950603830830732,3950606208579430],[1032,640,-3950608236257121,-3950601803153038],[1032,834,-13247605070715450,-13247603817873562],[1032,960,-13247605066170506,-13247603822418509],[1032,1032,-42841841848850176,-42841784433309880],[1032,1038,6623799524173159,6623804920121353],[1032,1098,-18594003438885652,-18593994259472046],[1032,1100,15920799016722807,15920804276750552],[1032,1161,8599101730286822,8599107733712757],[1032,1162,-62015351366925919,-62015298862938325],[1032,1164,-240160109310537124,-240160071530099528],[1032,1224,-222961907731674894,-222961854180962580],[1032,1227,1975301912779772,1975303106925307],[1032,1230,-24519908074897335,-24519904682575622],[1032,1290,3950600776488312,3950609262921848],[1032,1292,1975300513283600,1975304506421476],[1032,1352,22544599251748898,22544608486018976],[1032,1355,22544603300308524,22544604437459344],[1032,1358,1975301912779772,1975303106925307],[1032,1416,255808774717255568,255808825243183778],[1032,1422,24519905354627238,24519907402845709],[1032,1482,67633806676178144,67633816537125456],[1032,1484,3950603830830732,3950606208579430],[1032,1672,-3950608236257121,-3950601803153038],[1032,1866,-13247605070715450,-13247603817873562],[1032,1992,-13247605066170506,-13247603822418509],[1032,2050,1975300387251397,1975304632453679],[1032,2052,1975300488006682,1975304531698390],[1032,2112,-1975305323765481,-1975299695939594],[1032,2176,232566281601026132,232566321236466156],[1032,2182,24519905362432319,24519907395040631],[1032,2242,45089206499321174,45089208976214568],[1032,2244,1975301912872117,1975303106832961],[1032,2304,-26495211840725034,-26495205936452994],[1032,2370,-13247605066170506,-13247603822418509],[1032,2434,-26495209986088162,-26495207791089865],[1032,2436,-26495209923507576,-26495207853670452],[1032,2496,-39742815056676876,-39742811609090167],[1032,3082,1975300387251397,1975304632453679],[1032,3084,1975300488006682,1975304531698390],[1032,3144,-1975305323765481,-1975299695939594],[1032,3208,232566281601026132,232566321236466156],[1032,3214,24519905362432319,24519907395040631],[1032,3274,45089206499321174,45089208976214568],[1032,3276,1975301912872117,1975303106832961],[1032,3336,-26495211840725034,-26495205936452994],[1032,3402,-13247605066170506,-13247603822418509],[1032,3466,-26495209986088162,-26495207791089865],[1032,3468,-26495209923507576,-26495207853670452],[1032,3528,-39742815056676876,-39742811609090167],[1032,32896,8599101715170092,8599107748829489],[1032,33928,8599101715170092,8599107748829489],[1032,131074,9296996568177046,9297002281001814],[1032,131076,6623799524173159,6623804920121353],[1032,131136,-7321699679927840,-7321694149545938],[1032,131200,-67361745915243333,-67361693124389608],[1032,131206,-13247606222252656,-13247602666336360],[1032,131266,-39742815119133304,-39742811546633741],[1032,131268,-11272302995044411,-11272300873839524],[1032,131328,1975300413869816,1975304605835260],[1032,131394,1975301889643525,1975303130061553],[1032,131458,3950603932147814,3950606107262344],[1032,131460,24519905365967204,24519907391505747],[1032,131520,45089206509306108,45089208966229632],[1032,132106,9296996568177046,9297002281001814],[1032,132108,6623799524173159,6623804920121353],[1032,132168,-7321699679927840,-7321694149545938],[1032,132232,-67361745915243333,-67361693124389608],[1032,132238,-13247606222252656,-13247602666336360],[1032,132298,-39742815119133304,-39742811546633741],[1032,132300,-11272302995044411,-11272300873839524],[1032,132360,1975300413869816,1975304605835260],[1032,132426,1975301889643525,1975303130061553],[1032,132490,3950603932147814,3950606107262344],[1032,132492,24519905365967204,24519907391505747],[1032,132552,45089206509306108,45089208966229632],[1032,133120,1975300387251397,1975304632453679],[1032,133250,3950603941250842,3950606098159314],[1032,133252,24519905362432319,24519907395040631],[1032,133312,22544603251852693,22544604485915178],[1032,133504,-26495209971802464,-26495207805375563],[1032,134152,1975300387251397,1975304632453679],[1032,134282,3950603941250842,3950606098159314],[1032,134284,24519905362432319,24519907395040631],[1032,134344,22544603251852693,22544604485915178],[1032,134536,-26495209971802464,-26495207805375563],[1032,524290,-7321699692989682,-7321694136484094],[1032,524292,15920799005382849,15920804288090516],[1032,524352,9296996307740651,9297002541438203],[1032,524416,-258754116160104515,-258754062378889847],[1032,524422,-11272302995044411,-11272300873839524],[1032,524482,5925906055094245,5925909004020996],[1032,524484,9296998645184146,9297000203994710],[1032,524544,-1975305295452736,-1975299724252344],[1032,524674,22544603248067364,22544604489700504],[1032,524676,1975301917270118,1975303102434961],[1032,524736,5925906132510585,5925908926604650],[1032,525322,-7321699692989682,-7321694136484094],[1032,525324,15920799005382849,15920804288090516],[1032,525384,9296996307740651,9297002541438203],[1032,525448,-258754116160104515,-258754062378889847],[1032,525454,-11272302995044411,-11272300873839524],[1032,525514,5925906055094245,5925909004020996],[1032,525516,9296998645184146,9297000203994710],[1032,525576,-1975305295452736,-1975299724252344],[1032,525706,22544603248067364,22544604489700504],[1032,525708,1975301917270118,1975303102434961],[1032,525768,5925906132510585,5925908926604650],[1032,526336,-1975305338051185,-1975299681653896],[1032,526466,22544603251852693,22544604485915178],[1032,526468,1975301912872117,1975303106832961],[1032,526528,3950604236655732,3950605802754426],[1032,526720,-26495209977993164,-26495207799184865],[1032,527368,-1975305338051185,-1975299681653896],[1032,527498,22544603251852693,22544604485915178],[1032,527500,1975301912872117,1975303106832961],[1032,527560,3950604236655732,3950605802754426],[1032,527752,-26495209977993164,-26495207799184865],[1032,655360,-18594004998888252,-18593992699469458],[1032,655490,-39742815133869046,-39742811531898000],[1032,655492,-24519908088594729,-24519904668878218],[1032,655552,5925906044742719,5925909014372521],[1032,655744,45089206503935504,45089208971600236],[1032,656392,-18594004998888252,-18593992699469458],[1032,656522,-39742815133869046,-39742811531898000],[1032,656524,-24519908088594729,-24519904668878218],[1032,656584,5925906044742719,5925909014372521],[1032,656776,45089206503935504,45089208971600236],[1032,657536,45089206494936958,45089208980598784],[1032,658568,45089206494936958,45089208980598784],[1032,688256,1975301908323058,1975303111382023],[1032,689288,1975301908323058,1975303111382023],[1032,1048578,1975300413869816,1975304605835260],[1032,1048580,1975300513283600,1975304506421476],[1032,1048640,-1975305281023604,-1975299738681472],[1032,1048704,296947377306566843,296947428089998092],[1032,1048710,24519905365967204,24519907391505747],[1032,1048770,45089206508319720,45089208967216020],[1032,1048772,1975301917270118,1975303102434961],[1032,1048832,-26495211786596702,-26495205990581324],[1032,1048898,-13247605061599516,-13247603826989498],[1032,1048962,-26495209977773508,-26495207799404518],[1032,1048964,-26495209915574692,-26495207861603338],[1032,1049024,-39742815032279900,-39742811633487139],[1032,1049610,1975300413869816,1975304605835260],[1032,1049612,1975300513283600,1975304506421476],[1032,1049672,-1975305281023604,-1975299738681472],[1032,1049736,296947377306566843,296947428089998092],[1032,1049742,24519905365967204,24519907391505747],[1032,1049802,45089206508319720,45089208967216020],[1032,1049804,1975301917270118,1975303102434961],[1032,1049864,-26495211786596702,-26495205990581324],[1032,1049930,-13247605061599516,-13247603826989498],[1032,1049994,-26495209977773508,-26495207799404518],[1032,1049996,-26495209915574692,-26495207861603338],[1032,1050056,-39742815032279900,-39742811633487139],[1032,1050624,-26495211840725034,-26495205936452994],[1032,1050754,-26495209971802464,-26495207805375563],[1032,1050756,-26495209923507576,-26495207853670452],[1032,1050816,-26495209977993164,-26495207799184865],[1032,1051008,52990415906156016,52990419648200040],[1032,1051656,-26495211840725034,-26495205936452994],[1032,1051786,-26495209971802464,-26495207805375563],[1032,1051788,-26495209923507576,-26495207853670452],[1032,1051848,-26495209977993164,-26495207799184865],[1032,1052040,52990415906156016,52990419648200040],[1032,1179648,3950600725236988,3950609314173172],[1032,1179778,3950603919085972,3950606120324188],[1032,1179780,24519905343287280,24519907414185673],[1032,1179840,22544603239782766,22544604497985104],[1032,1180032,-26495209992202640,-26495207784975390],[1032,1180680,3950600725236988,3950609314173172],[1032,1180810,3950603919085972,3950606120324188],[1032,1180812,24519905343287280,24519907414185673],[1032,1180872,22544603239782766,22544604497985104],[1032,1181064,-26495209992202640,-26495207784975390],[1032,1181824,-26495210000373866,-26495207776804167],[1032,1182856,-26495210000373866,-26495207776804167],[1032,1572864,22544597683462214,22544610054305668],[1032,1572994,45089206505908288,45089208969627452],[1032,1572996,3950603827053960,3950606212356198],[1032,1573056,5925906124214463,5925908934900775],[1032,1573248,-39742815043973846,-39742811621793198],[1032,1573896,22544597683462214,22544610054305668],[1032,1574026,45089206505908288,45089208969627452],[1032,1574028,3950603827053960,3950606212356198],[1032,1574088,5925906124214463,5925908934900775],[1032,1574280,-39742815043973846,-39742811621793198],[1032,1575040,-39742815068283432,-39742811597483621],[1032,1576072,-39742815068283432,-39742811597483621],[1032,1703938,1975301885115096,1975303134589986],[1032,1703940,1975301908323058,1975303111382023],[1032,1704064,67633806609648820,67633816603654788],[1032,1704192,-13247605066127948,-13247603822461068],[1032,1704970,1975301885115096,1975303134589986],[1032,1704972,1975301908323058,1975303111382023],[1032,1705096,67633806609648820,67633816603654788],[1032,1705224,-13247605066127948,-13247603822461068],[1032,1705984,-13247605070627222,-13247603817961795],[1032,1707016,-13247605070627222,-13247603817961795],[1032,1736704,22544603293425280,22544604444342592],[1032,1737736,22544603293425280,22544604444342592],[1032,2097280,-3950608254927041,-3950601784483124],[1032,2098312,-3950608254927041,-3950601784483124],[1032,3670144,-13247605070627222,-13247603817961795],[1032,3671176,-13247605070627222,-13247603817961795],[1032,3801088,-13247605080544438,-13247603808044578],[1032,3802120,-13247605080544438,-13247603808044578],[1032,33554560,-1975304047051064,-1975300972654016],[1032,33555592,-1975304047051064,-1975300972654016],[1032,67108992,-4648501505889997,-4648497918699427],[1032,67110024,-4648501505889997,-4648497918699427],[1032,67764352,-13247605101666952,-13247603786922062],[1032,67765384,-13247605101666952,-13247603786922062],[1032,68812800,1975301877105131,1975303142599947],[1032,68813832,1975301877105131,1975303142599947],[1032,134217856,-1975304216083780,-1975300803621296],[1032,134218888,-1975304216083780,-1975300803621296],[1032,135790720,-13247605066127948,-13247603822461068],[1032,135791752,-13247605066127948,-13247603822461068],[1032,135921664,-13247605076872486,-13247603811716528],[1032,135922696,-13247605076872486,-13247603811716528],[1032,268435584,6623799192952293,6623805251342207],[1032,268436616,6623799192952293,6623805251342207],[1032,268959744,11272301474344213,11272302394539721],[1032,268960776,11272301474344213,11272302394539721],[1032,269090944,1975301852392980,1975303167312100],[1032,269091976,1975301852392980,1975303167312100],[1032,270008448,1975301885115096,1975303134589986],[1032,270009480,1975301885115096,1975303134589986],[1032,270139392,22544603239782766,22544604497985104],[1032,270140424,22544603239782766,22544604497985104],[1035,9,-4648501315670959,-4648498108918473],[1035,10,4648498108918473,4648501315670959],[1035,132,3950603830830732,3950606208579430],[1035,135,28470509832687554,28470512964195555],[1035,141,-17896106189622669,-17896102123555768],[1035,142,-6623803231071470,-6623801213223040],[1035,192,-1975303106832961,-1975301912872117],[1035,195,-1194053189,1194053190],[1035,201,24519904682575622,24519908074897335],[1035,202,-26495210141551732,-26495207635626304],[1035,323,22544603300308524,22544604437459344],[1035,329,-24519907402845709,-24519905354627238],[1035,330,1975301912779772,1975303106925307],[1035,393,-1975303106925307,-1975301912779772],[1035,394,1975301912779772,1975303106925307],[1035,1025,4648498108918473,4648501315670959],[1035,1026,-4648501315670959,-4648498108918473],[1035,1157,-6623803231071470,-6623801213223040],[1035,1158,-17896106189622669,-17896102123555768],[1035,1164,28470509832687554,28470512964195555],[1035,1167,3950603830830732,3950606208579430],[1035,1217,-26495210141551732,-26495207635626304],[1035,1218,24519904682575622,24519908074897335],[1035,1224,-1194053189,1194053190],[1035,1227,-1975303106832961,-1975301912872117],[1035,1345,1975301912779772,1975303106925307],[1035,1346,-24519907402845709,-24519905354627238],[1035,1352,22544603300308524,22544604437459344],[1035,1409,1975301912779772,1975303106925307],[1035,1410,-1975303106925307,-1975301912779772],[1035,2185,-1975303104304567,-1975301915400511],[1035,2186,1975301915400511,1975303104304567],[1035,3201,1975301915400511,1975303104304567],[1035,3202,-1975303104304567,-1975301915400511],[1035,131209,-11272302995044411,-11272300873839524],[1035,131210,11272300873839524,11272302995044411],[1035,132225,11272300873839524,11272302995044411],[1035,132226,-11272302995044411,-11272300873839524],[1035,524425,13247603822433492,13247605066155522],[1035,524426,-13247605066155522,-13247603822433492],[1035,525441,-13247605066155522,-13247603822433492],[1035,525442,13247603822433492,13247605066155522],[1035,1048713,-1975303102468593,-1975301917236486],[1035,1048714,1975301917236486,1975303102468593],[1035,1049729,1975301917236486,1975303102468593],[1035,1049730,-1975303102468593,-1975301917236486],[1037,9,-1975304034893986,-1975300984811094],[1037,12,1975300984811094,1975304034893986],[1037,130,-26495210023626872,-26495207753551168],[1037,135,-19871408102400732,-19871405230482798],[1037,139,17896102123555768,17896106189622669],[1037,142,-24519907402845709,-24519905354627238],[1037,201,-1975303106925307,-1975301912779772],[1037,204,1975301912779772,1975303106925307],[1037,393,-22544604437459344,-22544603300308524],[1037,396,22544603300308524,22544604437459344],[1037,1025,1975300984811094,1975304034893986],[1037,1028,-1975304034893986,-1975300984811094],[1037,1155,-24519907402845709,-24519905354627238],[1037,1158,17896102123555768,17896106189622669],[1037,1162,-19871408102400732,-19871405230482798],[1037,1167,-26495210023626872,-26495207753551168],[1037,1217,1975301912779772,1975303106925307],[1037,1220,-1975303106925307,-1975301912779772],[1037,1409,22544603300308524,22544604437459344],[1037,1412,-22544604437459344,-22544603300308524],[1037,2185,-22544604432275006,-22544603305492866],[1037,2188,22544603305492866,22544604432275006],[1037,3201,22544603305492866,22544604432275006],[1037,3204,-22544604432275006,-22544603305492866],[1037,32896,13247603855385956,13247605033203059],[1037,32901,13247603855385956,13247605033203059],[1037,33928,13247603855385956,13247605033203059],[1037,33933,13247603855385956,13247605033203059],[1037,131209,24519905365967204,24519907391505747],[1037,131212,-24519907391505747,-24519905365967204],[1037,132225,-24519907391505747,-24519905365967204],[1037,132228,24519905365967204,24519907391505747],[1037,524425,-1975303102468593,-1975301917236486],[1037,524428,1975301917236486,1975303102468593],[1037,525441,1975301917236486,1975303102468593],[1037,525444,-1975303102468593,-1975301917236486],[1037,1048713,-22544604430576096,-22544603307191776],[1037,1048716,22544603307191776,22544604430576096],[1037,1049729,22544603307191776,22544604430576096],[1037,1049732,-22544604430576096,-22544603307191776],[1038,0,-22544604716605376,-22544603021162496],[1038,6,6623799524173159,6623804920121353],[1038,10,-15920803246405425,-15920800047067943],[1038,12,-13247605973043456,-13247602915545560],[1038,129,22544601544971738,22544606192796140],[1038,135,-8599107733712757,-8599101730286822],[1038,139,6623801213223040,6623803231071470],[1038,141,24519905354627238,24519907402845709],[1038,192,13247603851021587,13247605037567427],[1038,198,-24519910199672792,-24519902557800167],[1038,202,39742809972538796,39742816693228256],[1038,204,-1975303106925307,-1975301912779772],[1038,326,1975301912779772,1975303106925307],[1038,330,-1975303106925307,-1975301912779772],[1038,390,24519905354627238,24519907402845709],[1038,394,-1975303106925307,-1975301912779772],[1038,396,-22544604437459344,-22544603300308524],[1038,1026,-13247605973043456,-13247602915545560],[1038,1028,-15920803246405425,-15920800047067943],[1038,1032,6623799524173159,6623804920121353],[1038,1038,-22544604716605376,-22544603021162496],[1038,1155,24519905354627238,24519907402845709],[1038,1157,6623801213223040,6623803231071470],[1038,1161,-8599107733712757,-8599101730286822],[1038,1167,22544601544971738,22544606192796140],[1038,1218,-1975303106925307,-1975301912779772],[1038,1220,39742809972538796,39742816693228256],[1038,1224,-24519910199672792,-24519902557800167],[1038,1230,13247603851021587,13247605037567427],[1038,1348,-1975303106925307,-1975301912779772],[1038,1352,1975301912779772,1975303106925307],[1038,1410,-22544604437459344,-22544603300308524],[1038,1412,-1975303106925307,-1975301912779772],[1038,1416,24519905354627238,24519907402845709],[1038,2182,24519905362432319,24519907395040631],[1038,2186,-1975303104304567,-1975301915400511],[1038,2188,-22544604432275006,-22544603305492866],[1038,3202,-22544604432275006,-22544603305492866],[1038,3204,-1975303104304567,-1975301915400511],[1038,3208,24519905362432319,24519907395040631],[1038,32896,-1975303102434961,-1975301917270118],[1038,32902,-26495209915574692,-26495207861603338],[1038,32908,24519905365967204,24519907391505747],[1038,33922,24519905365967204,24519907391505747],[1038,33928,-26495209915574692,-26495207861603338],[1038,33934,-1975303102434961,-1975301917270118],[1038,131200,-11272302664793112,-11272301204090824],[1038,131206,6623801159997192,6623803284297315],[1038,131210,-17896105064267619,-17896103248910824],[1038,131212,-873779583,873779583],[1038,132226,-873779583,873779583],[1038,132228,-17896105064267619,-17896103248910824],[1038,132232,6623801159997192,6623803284297315],[1038,132238,-11272302664793112,-11272301204090824],[1038,524422,-11272302995044411,-11272300873839524],[1038,524426,13247603822433492,13247605066155522],[1038,524428,-1975303102468593,-1975301917236486],[1038,525442,-1975303102468593,-1975301917236486],[1038,525444,13247603822433492,13247605066155522],[1038,525448,-11272302995044411,-11272300873839524],[1038,1048710,24519905365967204,24519907391505747],[1038,1048714,-1975303102468593,-1975301917236486],[1038,1048716,-22544604430576096,-22544603307191776],[1038,1049730,-22544604430576096,-22544603307191776],[1038,1049732,-1975303102468593,-1975301917236486],[1038,1049736,24519905365967204,24519907391505747],[1088,10,-4790774237,4790774243],[1088,12,11272301510581248,11272302358302688],[1088,129,-4648501315670959,-4648498108918473],[1088,130,-209714307449075898,-209714245574972548],[1088,132,6623799524173159,6623804920121353],[1088,136,-43421350142958786,-43421302388547748],[1088,139,1975301912872117,1975303106832961],[1088,142,-13247605037567427,-13247603851021587],[1088,257,-1975304034893986,-1975300984811094],[1088,258,255808774717255568,255808825243183778],[1088,264,23242490579994047,23242506542953071],[1088,394,15222904008319537,15222909899974555],[1088,514,-1975305321237090,-1975299698467991],[1088,898,-24519908070687651,-24519904686785298],[1088,1098,-4790774237,4790774243],[1088,1100,11272301510581248,11272302358302688],[1088,1217,-4648501315670959,-4648498108918473],[1088,1218,-209714307449075898,-209714245574972548],[1088,1220,6623799524173159,6623804920121353],[1088,1224,-43421350142958786,-43421302388547748],[1088,1227,1975301912872117,1975303106832961],[1088,1230,-13247605037567427,-13247603851021587],[1088,1345,-1975304034893986,-1975300984811094],[1088,1346,255808774717255568,255808825243183778],[1088,1352,23242490579994047,23242506542953071],[1088,1482,15222904008319537,15222909899974555],[1088,1602,-1975305321237090,-1975299698467991],[1088,1986,-24519908070687651,-24519904686785298],[1088,2050,3950600776799744,3950609262610422],[1088,2056,-1975305321237090,-1975299698467991],[1088,2186,3950603763253824,3950606276156332],[1088,2434,-3950609262610422,-3950600776799744],[1088,2440,-24519908070687651,-24519904686785298],[1088,2818,3950603763253824,3950606276156332],[1088,3138,3950600776799744,3950609262610422],[1088,3144,-1975305321237090,-1975299698467991],[1088,3274,3950603763253824,3950606276156332],[1088,3522,-3950609262610422,-3950600776799744],[1088,3528,-24519908070687651,-24519904686785298],[1088,3906,3950603763253824,3950606276156332],[1088,131080,-9296999886451704,-9296998962727152],[1088,131200,-4648505793203474,-4648493631385954],[1088,131210,4648499056652179,4648500367937248],[1088,132168,-9296999886451704,-9296998962727152],[1088,132288,-4648505793203474,-4648493631385954],[1088,132298,4648499056652179,4648500367937248],[1088,524290,15920798865897844,15920804427575524],[1088,524296,-13945502254348697,-13945496019419587],[1088,524426,-21846710653152227,-21846707699436376],[1088,524674,8599103049661346,8599106414338238],[1088,524680,15920800086388708,15920803207084654],[1088,525378,15920798865897844,15920804427575524],[1088,525384,-13945502254348697,-13945496019419587],[1088,525514,-21846710653152227,-21846707699436376],[1088,525762,8599103049661346,8599106414338238],[1088,525768,15920800086388708,15920803207084654],[1088,526466,1975301885638543,1975303134066535],[1088,526472,24519905600979050,24519907156493900],[1088,527554,1975301885638543,1975303134066535],[1088,527560,24519905600979050,24519907156493900],[1088,655360,11272301474344213,11272302394539721],[1088,656448,11272301474344213,11272302394539721],[1088,1048578,3950600828296569,3950609211113582],[1088,1048584,-1975305281057239,-1975299738647843],[1088,1048714,3950603783705734,3950606255704424],[1088,1048962,-3950609211113582,-3950600828296569],[1088,1048968,-24519908060537022,-24519904696935925],[1088,1049346,1975301892192548,1975303127512529],[1088,1049666,3950600828296569,3950609211113582],[1088,1049672,-1975305281057239,-1975299738647843],[1088,1049802,3950603783705734,3950606255704424],[1088,1050050,-3950609211113582,-3950600828296569],[1088,1050056,-24519908060537022,-24519904696935925],[1088,1050434,1975301892192548,1975303127512529],[1088,1050754,-26495209977993164,-26495207799184865],[1088,1050760,-26495209971802464,-26495207805375563],[1088,1050882,24519905292829457,24519907464643494],[1088,1051842,-26495209977993164,-26495207799184865],[1088,1051848,-26495209971802464,-26495207805375563],[1088,1051970,24519905292829457,24519907464643494],[1088,1572994,3950603780638034,3950606258772122],[1088,1573000,47064508847957192,47064511647283630],[1088,1574082,3950603780638034,3950606258772122],[1088,1574088,47064508847957192,47064511647283630],[1088,1704064,1975301885115096,1975303134589986],[1088,1705152,1975301885115096,1975303134589986],[1091,65,8599101730286822,8599107733712757],[1091,66,-8599107733712757,-8599101730286822],[1091,132,1975301912779772,1975303106925307],[1091,135,1975301912779772,1975303106925307],[1091,136,-1975303106925307,-1975301912779772],[1091,139,-1194053190,1194053189],[1091,201,-11272303635356703,-11272300233527231],[1091,202,9296998164928852,9297000684250004],[1091,260,22544603300308524,22544604437459344],[1091,263,22544603300308524,22544604437459344],[1091,264,-22544604437459344,-22544603300308524],[1091,267,-22544604437459344,-22544603300308524],[1091,449,-8599107733712757,-8599101730286822],[1091,450,8599101730286822,8599107733712757],[1091,833,13247603851851071,13247605036737943],[1091,834,-13247605036737943,-13247603851851071],[1091,1025,-8599107733712757,-8599101730286822],[1091,1026,8599101730286822,8599107733712757],[1091,1161,9296998164928852,9297000684250004],[1091,1162,-11272303635356703,-11272300233527231],[1091,1220,1975301912779772,1975303106925307],[1091,1223,1975301912779772,1975303106925307],[1091,1224,-1194053190,1194053189],[1091,1227,-1975303106925307,-1975301912779772],[1091,1348,22544603300308524,22544604437459344],[1091,1351,22544603300308524,22544604437459344],[1091,1352,-22544604437459344,-22544603300308524],[1091,1355,-22544604437459344,-22544603300308524],[1091,1409,8599101730286822,8599107733712757],[1091,1410,-8599107733712757,-8599101730286822],[1091,1793,-13247605036737943,-13247603851851071],[1091,1794,13247603851851071,13247605036737943],[1091,2241,-1975303106832961,-1975301912872117],[1091,2242,1975301912872117,1975303106832961],[1091,2369,13247603851021587,13247605037567427],[1091,2370,-13247605037567427,-13247603851021587],[1091,3201,1975301912872117,1975303106832961],[1091,3202,-1975303106832961,-1975301912872117],[1091,3329,-13247605037567427,-13247603851021587],[1091,3330,13247603851021587,13247605037567427],[1091,524481,-4648500337554984,-4648499087034444],[1091,524482,4648499087034444,4648500337554984],[1091,525441,4648499087034444,4648500337554984],[1091,525442,-4648500337554984,-4648499087034444],[1091,1048769,-1975303102434961,-1975301917270118],[1091,1048770,1975301917270118,1975303102434961],[1091,1048897,13247603855385956,13247605033203059],[1091,1048898,-13247605033203059,-13247603855385956],[1091,1049729,1975301917270118,1975303102434961],[1091,1049730,-1975303102434961,-1975301917270118],[1091,1049857,-13247605033203059,-13247603855385956],[1091,1049858,13247603855385956,13247605033203059],[1094,129,-1975303106925307,-1975301912779772],[1094,135,-1975303106925307,-1975301912779772],[1094,136,-2424856520,2424856530],[1094,142,-13247609011319922,-13247599877269080],[1094,204,13247602302125610,13247606586463402],[1094,257,-22544604437459344,-22544603300308524],[1094,263,-22544604437459344,-22544603300308524],[1094,264,-1975303106925307,-1975301912779772],[1094,270,-1975303106925307,-1975301912779772],[1094,1162,13247602302125610,13247606586463402],[1094,1217,-1975303106925307,-1975301912779772],[1094,1223,-1975303106925307,-1975301912779772],[1094,1224,-13247609011319922,-13247599877269080],[1094,1230,-2424856520,2424856530],[1094,1345,-22544604437459344,-22544603300308524],[1094,1351,-22544604437459344,-22544603300308524],[1094,1352,-1975303106925307,-1975301912779772],[1094,1358,-1975303106925307,-1975301912779772],[1097,130,-9297003706117328,-9296995143061538],[1097,132,24519905354627238,24519907402845709],[1097,139,-22544606008242938,-22544601729524940],[1097,141,24519905354627238,24519907402845709],[1097,195,13247602302125610,13247606586463402],[1097,258,24519905354627238,24519907402845709],[1097,267,24519905354627238,24519907402845709],[1097,1162,13247602302125610,13247606586463402],[1097,1218,-22544606008242938,-22544601729524940],[1097,1220,24519905354627238,24519907402845709],[1097,1227,-9297003706117328,-9296995143061538],[1097,1229,24519905354627238,24519907402845709],[1097,1346,24519905354627238,24519907402845709],[1097,1355,24519905354627238,24519907402845709],[1098,0,-18594001959353888,-18593995739003822],[1098,10,-4790774237,4790774243],[1098,66,-18594003438885652,-18593994259472046],[1098,72,-8145018103,8145018085],[1098,129,13247601047218919,13247607841370104],[1098,132,-24519908074897335,-24519904682575622],[1098,139,24519904682575622,24519908074897335],[1098,142,-24519910199672792,-24519902557800167],[1098,195,-11272303635356703,-11272300233527231],[1098,204,-2124775455,2124775457],[1098,257,-1975303106925307,-1975301912779772],[1098,260,1975301912779772,1975303106925307],[1098,267,-1975303106925307,-1975301912779772],[1098,270,1975301912779772,1975303106925307],[1098,384,15222904008319537,15222909899974555],[1098,394,-45089210861191912,-45089204614343830],[1098,450,7321691863722815,7321701965750947],[1098,456,52990412240818188,52990423313537884],[1098,834,-13247605070715450,-13247603817873562],[1098,840,13247603817873562,13247605070715450],[1098,1026,-8145018103,8145018085],[1098,1032,-18594003438885652,-18593994259472046],[1098,1088,-4790774237,4790774243],[1098,1098,-18594001959353888,-18593995739003822],[1098,1158,-2124775455,2124775457],[1098,1161,-11272303635356703,-11272300233527231],[1098,1217,24519904682575622,24519908074897335],[1098,1220,-24519910199672792,-24519902557800167],[1098,1227,13247601047218919,13247607841370104],[1098,1230,-24519908074897335,-24519904682575622],[1098,1345,-1975303106925307,-1975301912779772],[1098,1348,1975301912779772,1975303106925307],[1098,1355,-1975303106925307,-1975301912779772],[1098,1358,1975301912779772,1975303106925307],[1098,1410,52990412240818188,52990423313537884],[1098,1416,7321691863722815,7321701965750947],[1098,1472,-45089210861191912,-45089204614343830],[1098,1482,15222904008319537,15222909899974555],[1098,1794,13247603817873562,13247605070715450],[1098,1800,-13247605070715450,-13247603817873562],[1098,2186,-22544605449648746,-22544602288119128],[1098,2242,18593997213391625,18594000484966090],[1098,2248,3950601803153038,3950608236257121],[1098,2370,-13247605066170506,-13247603822418509],[1098,2376,13247603822418509,13247605066170506],[1098,3202,3950601803153038,3950608236257121],[1098,3208,18593997213391625,18594000484966090],[1098,3264,-22544605449648746,-22544602288119128],[1098,3330,13247603822418509,13247605066170506],[1098,3336,-13247605066170506,-13247603822418509],[1098,131200,-24519908147332138,-24519904610140814],[1098,131210,11272297936924019,11272305931959916],[1098,131272,-35792210542100730,-35792206084256157],[1098,131328,1975301889643525,1975303130061553],[1098,131338,1975301889643525,1975303130061553],[1098,132226,-35792210542100730,-35792206084256157],[1098,132288,11272297936924019,11272305931959916],[1098,132298,-24519908147332138,-24519904610140814],[1098,132416,1975301889643525,1975303130061553],[1098,132426,1975301889643525,1975303130061553],[1098,524426,-13247606060429303,-13247602828159713],[1098,524482,17198207846590140,17198211081409034],[1098,524488,-3950608253249321,-3950601786160837],[1098,525442,-3950608253249321,-3950601786160837],[1098,525448,17198207846590140,17198211081409034],[1098,525504,-13247606060429303,-13247602828159713],[1098,1048714,-22544605576438951,-22544602161328920],[1098,1048770,18593997143338122,18594000555019592],[1098,1048776,3950601606309328,3950608433100829],[1098,1048898,-13247605061599516,-13247603826989498],[1098,1048904,13247603826989498,13247605061599516],[1098,1049730,3950601606309328,3950608433100829],[1098,1049736,18593997143338122,18594000555019592],[1098,1049792,-22544605576438951,-22544602161328920],[1098,1049858,13247603826989498,13247605061599516],[1098,1049864,-13247605061599516,-13247603826989498],[1100,0,22544603021162496,22544604716605376],[1100,12,11272301510581248,11272302358302688],[1100,68,15920799016722807,15920804276750552],[1100,72,-4648502338601082,-4648497085988341],[1100,129,-24519907402845709,-24519905354627238],[1100,130,11272300317059811,11272303551824122],[1100,141,-24519907402845709,-24519905354627238],[1100,142,24519905354627238,24519907402845709],[1100,198,-2124775455,2124775457],[1100,202,-13247606551676524,-13247602336912492],[1100,452,-17896106189622669,-17896102123555768],[1100,456,17896102123555768,17896106189622669],[1100,1028,-4648502338601082,-4648497085988341],[1100,1032,15920799016722807,15920804276750552],[1100,1088,11272301510581248,11272302358302688],[1100,1100,22544603021162496,22544604716605376],[1100,1158,-13247606551676524,-13247602336912492],[1100,1162,-2124775455,2124775457],[1100,1217,-24519907402845709,-24519905354627238],[1100,1218,24519905354627238,24519907402845709],[1100,1229,-24519907402845709,-24519905354627238],[1100,1230,11272300317059811,11272303551824122],[1100,1412,17896102123555768,17896106189622669],[1100,1416,-17896106189622669,-17896102123555768],[1100,2244,-24519907395040631,-24519905362432319],[1100,2248,24519905362432319,24519907395040631],[1100,3204,24519905362432319,24519907395040631],[1100,3208,-24519907395040631,-24519905362432319],[1100,32896,-24519907391505747,-24519905365967204],[1100,32908,-24519907391505747,-24519905365967204],[1100,33984,-24519907391505747,-24519905365967204],[1100,33996,-24519907391505747,-24519905365967204],[1100,131200,24519905365967204,24519907391505747],[1100,131212,24519905365967204,24519907391505747],[1100,132288,24519905365967204,24519907391505747],[1100,132300,24519905365967204,24519907391505747],[1100,524484,17896103248910824,17896105064267619],[1100,524488,-17896105064267619,-17896103248910824],[1100,525444,-17896105064267619,-17896103248910824],[1100,525448,17896103248910824,17896105064267619],[1100,1048772,-24519907391505747,-24519905365967204],[1100,1048776,24519905365967204,24519907391505747],[1100,1049732,24519905365967204,24519907391505747],[1100,1049736,-24519907391505747,-24519905365967204],[1152,6,11272301510581248,11272302358302688],[1152,10,-11272305024301474,-11272298844582466],[1152,12,-1360236128,1360236132],[1152,66,49039809086990954,49039816427954942],[1152,68,-13247605973043456,-13247602915545560],[1152,72,266383184103143623,266383230341000381],[1152,258,22544599251748898,22544608486018976],[1152,260,1975300984811094,1975304034893986],[1152,264,-270333833954743796,-270333790528810368],[1152,330,-3950606264617852,-3950603774792306],[1152,520,3950601803153038,3950608236257121],[1152,834,13247603817873562,13247605070715450],[1152,840,13247603822418509,13247605066170506],[1152,1158,11272301510581248,11272302358302688],[1152,1162,-11272305024301474,-11272298844582466],[1152,1164,-1360236128,1360236132],[1152,1218,49039809086990954,49039816427954942],[1152,1220,-13247605973043456,-13247602915545560],[1152,1224,266383184103143623,266383230341000381],[1152,1410,22544599251748898,22544608486018976],[1152,1412,1975300984811094,1975304034893986],[1152,1416,-270333833954743796,-270333790528810368],[1152,1482,-3950606264617852,-3950603774792306],[1152,1672,3950601803153038,3950608236257121],[1152,1986,13247603817873562,13247605070715450],[1152,1992,13247603822418509,13247605066170506],[1152,2050,3950601803153038,3950608236257121],[1152,2052,1975300972654016,1975304047051064],[1152,2056,-227219925291193296,-227219888736530280],[1152,2370,13247603822418509,13247605066170506],[1152,2376,66238019701775620,66238024741169450],[1152,3202,3950601803153038,3950608236257121],[1152,3204,1975300972654016,1975304047051064],[1152,3208,-227219925291193296,-227219888736530280],[1152,3522,13247603822418509,13247605066170506],[1152,3528,66238019701775620,66238024741169450],[1152,131074,-9296999886451704,-9296998962727152],[1152,131076,11272301510581248,11272302358302688],[1152,131080,-11272305028685690,-11272298840198250],[1152,131136,-5925910964282679,-5925904094832560],[1152,131328,3950601587495984,3950608451914177],[1152,132226,-9296999886451704,-9296998962727152],[1152,132228,11272301510581248,11272302358302688],[1152,132232,-11272305028685690,-11272298840198250],[1152,132288,-5925910964282679,-5925904094832560],[1152,132480,3950601587495984,3950608451914177],[1152,133120,3950601784483124,3950608254927041],[1152,134272,3950601784483124,3950608254927041],[1152,524290,-5925910945469332,-5925904113645905],[1152,524292,-13247605973043456,-13247602915545560],[1152,524296,307521786696231667,307521833184037924],[1152,524610,-1975303130061553,-1975301889643525],[1152,524616,-77510327102997542,-77510321208831459],[1152,525442,-5925910945469332,-5925904113645905],[1152,525444,-13247605973043456,-13247602915545560],[1152,525448,307521786696231667,307521833184037924],[1152,525762,-1975303130061553,-1975301889643525],[1152,525768,-77510327102997542,-77510321208831459],[1152,526408,-52990419648200040,-52990415906156016],[1152,526600,52990415906156016,52990419648200040],[1152,527560,-52990419648200040,-52990415906156016],[1152,527752,52990415906156016,52990419648200040],[1152,655360,49039808003270598,49039817511675298],[1152,656512,49039808003270598,49039817511675298],[1152,1048578,3950601606309328,3950608433100829],[1152,1048580,1975300984811094,1975304034893986],[1152,1048584,-311472436788867910,-311472393130811843],[1152,1048898,13247603826989498,13247605061599516],[1152,1048904,66238019734487245,66238024708457820],[1152,1049730,3950601606309328,3950608433100829],[1152,1049732,1975300984811094,1975304034893986],[1152,1049736,-311472436788867910,-311472393130811843],[1152,1050050,13247603826989498,13247605061599516],[1152,1050056,66238019734487245,66238024708457820],[1152,1050696,52990415906156016,52990419648200040],[1152,1050888,-52990419648200040,-52990415906156016],[1152,1051848,52990415906156016,52990419648200040],[1152,1052040,-52990419648200040,-52990415906156016],[1152,1179648,22544597683462214,22544610054305668],[1152,1180800,22544597683462214,22544610054305668],[1152,1572936,-77510327129120619,-77510321182708389],[1152,1573128,66238019708364176,66238024734580898],[1152,1574088,-77510327129120619,-77510321182708389],[1152,1574280,66238019708364176,66238024734580898],[1152,1574920,66238019675883376,66238024767061710],[1152,1576072,66238019675883376,66238024767061710],[1152,1703944,-3950606273531284,-3950603765878878],[1152,1704000,-1975303134589986,-1975301885115096],[1152,1704192,13247603822461068,13247605066127948],[1152,1705096,-3950606273531284,-3950603765878878],[1152,1705152,-1975303134589986,-1975301885115096],[1152,1705344,13247603822461068,13247605066127948],[1152,1705984,13247603817961795,13247605070627222],[1152,1707136,13247603817961795,13247605070627222],[1152,2097160,3950601784483124,3950608254927041],[1152,2098312,3950601784483124,3950608254927041],[1152,3670024,13247603817961795,13247605070627222],[1152,3671176,13247603817961795,13247605070627222],[1152,3801088,13247603808044578,13247605080544438],[1152,3802240,13247603808044578,13247605080544438],[1152,33554440,1975300972654016,1975304047051064],[1152,33555592,1975300972654016,1975304047051064],[1152,134217736,1975300803621296,1975304216083780],[1152,134218888,1975300803621296,1975304216083780],[1152,135790600,13247603822461068,13247605066127948],[1152,135791752,13247603822461068,13247605066127948],[1152,135921664,13247603811716528,13247605076872486],[1152,135922816,13247603811716528,13247605076872486],[1152,268435464,-13247606153429752,-13247602735159258],[1152,268436616,-13247606153429752,-13247602735159258],[1152,268566528,11272301474344213,11272302394539721],[1152,268567680,11272301474344213,11272302394539721],[1152,270008328,-1975303134589986,-1975301885115096],[1152,270009480,-1975303134589986,-1975301885115096],[1152,270139392,-24519907169816619,-24519905587656329],[1152,270140544,-24519907169816619,-24519905587656329],[1155,129,-9297003706117328,-9296995143061538],[1155,130,9296995143061538,9297003706117328],[1155,141,24519905354627238,24519907402845709],[1155,142,-24519907402845709,-24519905354627238],[1155,449,24519905354627238,24519907402845709],[1155,450,-24519907402845709,-24519905354627238],[1155,1025,9296995143061538,9297003706117328],[1155,1026,-9297003706117328,-9296995143061538],[1155,1037,-24519907402845709,-24519905354627238],[1155,1038,24519905354627238,24519907402845709],[1155,1345,-24519907402845709,-24519905354627238],[1155,1346,24519905354627238,24519907402845709],[1157,129,-1975304506421476,-1975300513283600],[1157,132,1975300513283600,1975304506421476],[1157,139,6623801213223040,6623803231071470],[1157,142,-6623803231071470,-6623801213223040],[1157,1025,1975300513283600,1975304506421476],[1157,1028,-1975304506421476,-1975300513283600],[1157,1035,-6623803231071470,-6623801213223040],[1157,1038,6623801213223040,6623803231071470],[1158,0,22544603021162496,22544604716605376],[1158,6,11272301510581248,11272302358302688],[1158,72,11272300317059811,11272303551824122],[1158,78,24519905354627238,24519907402845709],[1158,130,-4648502338601082,-4648497085988341],[1158,132,15920799016722807,15920804276750552],[1158,139,17896102123555768,17896106189622669],[1158,141,-17896106189622669,-17896102123555768],[1158,202,-13247606551676524,-13247602336912492],[1158,204,-2124775455,2124775457],[1158,264,-24519907402845709,-24519905354627238],[1158,270,-24519907402845709,-24519905354627238],[1158,1026,15920799016722807,15920804276750552],[1158,1028,-4648502338601082,-4648497085988341],[1158,1035,-17896106189622669,-17896102123555768],[1158,1037,17896102123555768,17896106189622669],[1158,1098,-2124775455,2124775457],[1158,1100,-13247606551676524,-13247602336912492],[1158,1152,11272301510581248,11272302358302688],[1158,1158,22544603021162496,22544604716605376],[1158,1224,24519905354627238,24519907402845709],[1158,1230,11272300317059811,11272303551824122],[1158,1416,-24519907402845709,-24519905354627238],[1158,1422,-24519907402845709,-24519905354627238],[1158,2056,-24519907395040631,-24519905362432319],[1158,2062,-24519907395040631,-24519905362432319],[1158,3208,-24519907395040631,-24519905362432319],[1158,3214,-24519907395040631,-24519905362432319],[1158,32906,24519905365967204,24519907391505747],[1158,32908,-24519907391505747,-24519905365967204],[1158,33802,-24519907391505747,-24519905365967204],[1158,33804,24519905365967204,24519907391505747],[1158,131210,-17896105064267619,-17896103248910824],[1158,131212,17896103248910824,17896105064267619],[1158,132106,17896103248910824,17896105064267619],[1158,132108,-17896105064267619,-17896103248910824],[1158,524296,24519905365967204,24519907391505747],[1158,524302,24519905365967204,24519907391505747],[1158,525448,24519905365967204,24519907391505747],[1158,525454,24519905365967204,24519907391505747],[1158,1048584,-24519907391505747,-24519905365967204],[1158,1048590,-24519907391505747,-24519905365967204],[1158,1049736,-24519907391505747,-24519905365967204],[1158,1049742,-24519907391505747,-24519905365967204],[1161,66,-1975303106925307,-1975301912779772],[1161,68,-22544604437459344,-22544603300308524],[1161,75,-1194053190,1194053189],[1161,77,-22544604437459344,-22544603300308524],[1161,129,8599101730286822,8599107733712757],[1161,135,-8599107733712757,-8599101730286822],[1161,136,-8599107733712757,-8599101730286822],[1161,142,8599101730286822,8599107733712757],[1161,195,-11272303635356703,-11272300233527231],[1161,202,9296998164928852,9297000684250004],[1161,258,1975301912779772,1975303106925307],[1161,260,22544603300308524,22544604437459344],[1161,267,1975301912779772,1975303106925307],[1161,269,22544603300308524,22544604437459344],[1161,1025,-8599107733712757,-8599101730286822],[1161,1031,8599101730286822,8599107733712757],[1161,1032,8599101730286822,8599107733712757],[1161,1038,-8599107733712757,-8599101730286822],[1161,1091,9296998164928852,9297000684250004],[1161,1098,-11272303635356703,-11272300233527231],[1161,1218,-1194053190,1194053189],[1161,1220,-22544604437459344,-22544603300308524],[1161,1227,-1975303106925307,-1975301912779772],[1161,1229,-22544604437459344,-22544603300308524],[1161,1410,1975301912779772,1975303106925307],[1161,1412,22544603300308524,22544604437459344],[1161,1419,1975301912779772,1975303106925307],[1161,1421,22544603300308524,22544604437459344],[1161,2050,1975301915400511,1975303104304567],[1161,2052,22544603305492866,22544604432275006],[1161,2059,1975301915400511,1975303104304567],[1161,2061,22544603305492866,22544604432275006],[1161,3202,1975301915400511,1975303104304567],[1161,3204,22544603305492866,22544604432275006],[1161,3211,1975301915400511,1975303104304567],[1161,3213,22544603305492866,22544604432275006],[1161,32901,13247603855419588,13247605033169427],[1161,32908,-13247605033169427,-13247603855419588],[1161,33797,-13247605033169427,-13247603855419588],[1161,33804,13247603855419588,13247605033169427],[1161,131203,6623801159963560,6623803284330947],[1161,131205,-26495209915574692,-26495207861603338],[1161,131210,-6623803284330947,-6623801159963560],[1161,131212,26495207861603338,26495209915574692],[1161,132099,-6623803284330947,-6623801159963560],[1161,132101,26495207861603338,26495209915574692],[1161,132106,6623801159963560,6623803284330947],[1161,132108,-26495209915574692,-26495207861603338],[1161,524290,-1975303102468593,-1975301917236486],[1161,524292,-22544604430576096,-22544603307191776],[1161,524299,-1975303102468593,-1975301917236486],[1161,524301,-22544604430576096,-22544603307191776],[1161,525442,-1975303102468593,-1975301917236486],[1161,525444,-22544604430576096,-22544603307191776],[1161,525451,-1975303102468593,-1975301917236486],[1161,525453,-22544604430576096,-22544603307191776],[1161,1048578,1975301917236486,1975303102468593],[1161,1048580,22544603307191776,22544604430576096],[1161,1048587,1975301917236486,1975303102468593],[1161,1048589,22544603307191776,22544604430576096],[1161,1049730,1975301917236486,1975303102468593],[1161,1049732,22544603307191776,22544604430576096],[1161,1049739,1975301917236486,1975303102468593],[1161,1049741,22544603307191776,22544604430576096],[1162,0,-18594001027636998,-18593996670720716],[1162,10,-11272305024301474,-11272298844582466],[1162,65,1975301912779772,1975303106925307],[1162,68,11272300744096280,11272303124787655],[1162,75,-1194053189,1194053190],[1162,78,-1975303106925307,-1975301912779772],[1162,130,-62015351366925919,-62015298862938325],[1162,135,-19871408102400732,-19871405230482798],[1162,136,54693605669021029,54693650731369441],[1162,141,19871405230482798,19871408102400732],[1162,195,13247602302125610,13247606586463402],[1162,198,-2124775455,2124775457],[1162,201,-11272303635356703,-11272300233527231],[1162,204,13247602302125610,13247606586463402],[1162,257,-1975303106925307,-1975301912779772],[1162,260,1975301912779772,1975303106925307],[1162,267,-1975303106925307,-1975301912779772],[1162,270,1975301912779772,1975303106925307],[1162,320,-3950606264617852,-3950603774792306],[1162,330,-4260574858,4260574864],[1162,450,43113900199647331,43113910256183319],[1162,456,-47064512094016005,-47064508401224809],[1162,1026,54693605669021029,54693650731369441],[1162,1031,19871405230482798,19871408102400732],[1162,1032,-62015351366925919,-62015298862938325],[1162,1037,-19871408102400732,-19871405230482798],[1162,1091,-11272303635356703,-11272300233527231],[1162,1094,13247602302125610,13247606586463402],[1162,1097,13247602302125610,13247606586463402],[1162,1100,-2124775455,2124775457],[1162,1152,-11272305024301474,-11272298844582466],[1162,1162,-18594001027636998,-18593996670720716],[1162,1217,-1194053189,1194053190],[1162,1220,-1975303106925307,-1975301912779772],[1162,1227,1975301912779772,1975303106925307],[1162,1230,11272300744096280,11272303124787655],[1162,1346,-47064512094016005,-47064508401224809],[1162,1352,43113900199647331,43113910256183319],[1162,1409,-1975303106925307,-1975301912779772],[1162,1412,1975301912779772,1975303106925307],[1162,1419,-1975303106925307,-1975301912779772],[1162,1422,1975301912779772,1975303106925307],[1162,1472,-4260574858,4260574864],[1162,1482,-3950606264617852,-3950603774792306],[1162,2049,-1975303104304567,-1975301915400511],[1162,2052,1975301915400511,1975303104304567],[1162,2059,-1975303104304567,-1975301915400511],[1162,2062,1975301915400511,1975303104304567],[1162,2112,-3950606276156332,-3950603763253824],[1162,2122,22544602288119128,22544605449648746],[1162,2242,-2216932523,2216932520],[1162,2248,-26495209986088162,-26495207791089865],[1162,2434,-26495209986088162,-26495207791089865],[1162,2440,26495207791089865,26495209986088162],[1162,3138,-26495209986088162,-26495207791089865],[1162,3144,-2216932523,2216932520],[1162,3201,-1975303104304567,-1975301915400511],[1162,3204,1975301915400511,1975303104304567],[1162,3211,-1975303104304567,-1975301915400511],[1162,3214,1975301915400511,1975303104304567],[1162,3264,22544602288119128,22544605449648746],[1162,3274,-3950606276156332,-3950603763253824],[1162,3330,26495207791089865,26495209986088162],[1162,3336,-26495209986088162,-26495207791089865],[1162,131136,11272300696813670,11272303172070267],[1162,131146,-1975303130061553,-1975301889643525],[1162,131203,-6623803284330947,-6623801159963560],[1162,131206,6623801159963560,6623803284330947],[1162,131209,6623801159963560,6623803284330947],[1162,131212,-6623803284330947,-6623801159963560],[1162,131266,-17896106405970981,-17896101907207464],[1162,131272,31143706348854335,31143710852913125],[1162,131328,1975301889643525,1975303130061553],[1162,131338,1975301889643525,1975303130061553],[1162,132099,6623801159963560,6623803284330947],[1162,132102,-6623803284330947,-6623801159963560],[1162,132105,-6623803284330947,-6623801159963560],[1162,132108,6623801159963560,6623803284330947],[1162,132162,31143706348854335,31143710852913125],[1162,132168,-17896106405970981,-17896101907207464],[1162,132288,-1975303130061553,-1975301889643525],[1162,132298,11272300696813670,11272303172070267],[1162,132480,1975301889643525,1975303130061553],[1162,132490,1975301889643525,1975303130061553],[1162,133120,1975301892192548,1975303127512529],[1162,133130,1975301892192548,1975303127512529],[1162,134272,1975301892192548,1975303127512529],[1162,134282,1975301892192548,1975303127512529],[1162,524289,1975301917236486,1975303102468593],[1162,524292,-1975303102468593,-1975301917236486],[1162,524299,1975301917236486,1975303102468593],[1162,524302,-1975303102468593,-1975301917236486],[1162,524352,-9297000814034204,-9296998035144653],[1162,524362,1975300959240086,1975304060464994],[1162,524482,-19871408879756524,-19871404453126997],[1162,524488,8599102676277534,8599106787722050],[1162,524674,26495207799404518,26495209977773508],[1162,524680,-26495209977773508,-26495207799404518],[1162,525378,8599102676277534,8599106787722050],[1162,525384,-19871408879756524,-19871404453126997],[1162,525441,1975301917236486,1975303102468593],[1162,525444,-1975303102468593,-1975301917236486],[1162,525451,1975301917236486,1975303102468593],[1162,525454,-1975303102468593,-1975301917236486],[1162,525504,1975300959240086,1975304060464994],[1162,525514,-9297000814034204,-9296998035144653],[1162,525570,-26495209977773508,-26495207799404518],[1162,525576,26495207799404518,26495209977773508],[1162,526466,26495207805375563,26495209971802464],[1162,526472,-26495209971802464,-26495207805375563],[1162,527362,-26495209971802464,-26495207805375563],[1162,527368,26495207805375563,26495209971802464],[1162,655360,-1975303142599947,-1975301877105131],[1162,655370,-1975303142599947,-1975301877105131],[1162,656512,-1975303142599947,-1975301877105131],[1162,656522,-1975303142599947,-1975301877105131],[1162,1048577,-1975303102468593,-1975301917236486],[1162,1048580,1975301917236486,1975303102468593],[1162,1048587,-1975303102468593,-1975301917236486],[1162,1048590,1975301917236486,1975303102468593],[1162,1048640,-3950606255704424,-3950603783705734],[1162,1048650,22544602161328920,22544605576438951],[1162,1048770,-2178588646,2178588643],[1162,1048776,-26495209977773508,-26495207799404518],[1162,1048962,-26495209977773508,-26495207799404518],[1162,1048968,26495207799404518,26495209977773508],[1162,1049666,-26495209977773508,-26495207799404518],[1162,1049672,-2178588646,2178588643],[1162,1049729,-1975303102468593,-1975301917236486],[1162,1049732,1975301917236486,1975303102468593],[1162,1049739,-1975303102468593,-1975301917236486],[1162,1049742,1975301917236486,1975303102468593],[1162,1049792,22544602161328920,22544605576438951],[1162,1049802,-3950606255704424,-3950603783705734],[1162,1049858,26495207799404518,26495209977773508],[1162,1049864,-26495209977773508,-26495207799404518],[1162,1050754,-26495209971802464,-26495207805375563],[1162,1050760,26495207805375563,26495209971802464],[1162,1051650,26495207805375563,26495209971802464],[1162,1051656,-26495209971802464,-26495207805375563],[1162,1179648,1975301877105131,1975303142599947],[1162,1179658,1975301877105131,1975303142599947],[1162,1180800,1975301877105131,1975303142599947],[1162,1180810,1975301877105131,1975303142599947],[1162,1572994,49039811037266288,49039814477679612],[1162,1573000,-49039814477679612,-49039811037266288],[1162,1573890,-49039814477679612,-49039811037266288],[1162,1573896,49039811037266288,49039814477679612],[1164,12,-1360236128,1360236132],[1164,65,22544603300308524,22544604437459344],[1164,66,-22544604437459344,-22544603300308524],[1164,77,22544603300308524,22544604437459344],[1164,78,-22544604437459344,-22544603300308524],[1164,132,-240160109310537124,-240160071530099528],[1164,135,28470509832687554,28470512964195555],[1164,136,240160072890335656,240160107950300992],[1164,139,-28470512964195555,-28470509832687554],[1164,257,-22544604437459344,-22544603300308524],[1164,258,22544603300308524,22544604437459344],[1164,269,-22544604437459344,-22544603300308524],[1164,270,22544603300308524,22544604437459344],[1164,452,28470509832687554,28470512964195555],[1164,456,-28470512964195555,-28470509832687554],[1164,1028,240160072890335656,240160107950300992],[1164,1031,-28470512964195555,-28470509832687554],[1164,1032,-240160109310537124,-240160071530099528],[1164,1035,28470509832687554,28470512964195555],[1164,1152,-1360236128,1360236132],[1164,1217,22544603300308524,22544604437459344],[1164,1218,-22544604437459344,-22544603300308524],[1164,1229,22544603300308524,22544604437459344],[1164,1230,-22544604437459344,-22544603300308524],[1164,1348,-28470512964195555,-28470509832687554],[1164,1352,28470509832687554,28470512964195555],[1164,1409,-22544604437459344,-22544603300308524],[1164,1410,22544603300308524,22544604437459344],[1164,1421,-22544604437459344,-22544603300308524],[1164,1422,22544603300308524,22544604437459344],[1164,2049,-22544604432275006,-22544603305492866],[1164,2050,22544603305492866,22544604432275006],[1164,2061,-22544604432275006,-22544603305492866],[1164,2062,22544603305492866,22544604432275006],[1164,2244,26495207853670452,26495209923507576],[1164,2248,-26495209923507576,-26495207853670452],[1164,2436,-26495209923507576,-26495207853670452],[1164,2440,26495207853670452,26495209923507576],[1164,3140,-26495209923507576,-26495207853670452],[1164,3144,26495207853670452,26495209923507576],[1164,3201,-22544604432275006,-22544603305492866],[1164,3202,22544603305492866,22544604432275006],[1164,3213,-22544604432275006,-22544603305492866],[1164,3214,22544603305492866,22544604432275006],[1164,3332,26495207853670452,26495209923507576],[1164,3336,-26495209923507576,-26495207853670452],[1164,32832,22544603307191776,22544604430576096],[1164,32844,22544603307191776,22544604430576096],[1164,32901,-26495209915574692,-26495207861603338],[1164,32902,26495207861603338,26495209915574692],[1164,32905,26495207861603338,26495209915574692],[1164,32906,-26495209915574692,-26495207861603338],[1164,33024,-22544604430576096,-22544603307191776],[1164,33036,-22544604430576096,-22544603307191776],[1164,33797,26495207861603338,26495209915574692],[1164,33798,-26495209915574692,-26495207861603338],[1164,33801,-26495209915574692,-26495207861603338],[1164,33802,26495207861603338,26495209915574692],[1164,33984,22544603307191776,22544604430576096],[1164,33996,22544603307191776,22544604430576096],[1164,34176,-22544604430576096,-22544603307191776],[1164,34188,-22544604430576096,-22544603307191776],[1164,34816,-22544604432275006,-22544603305492866],[1164,34828,-22544604432275006,-22544603305492866],[1164,35968,-22544604432275006,-22544603305492866],[1164,35980,-22544604432275006,-22544603305492866],[1164,131136,-22544604430576096,-22544603307191776],[1164,131148,-22544604430576096,-22544603307191776],[1164,131205,26495207861603338,26495209915574692],[1164,131206,-26495209915574692,-26495207861603338],[1164,131209,-26495209915574692,-26495207861603338],[1164,131210,26495207861603338,26495209915574692],[1164,131328,22544603307191776,22544604430576096],[1164,131340,22544603307191776,22544604430576096],[1164,132101,-26495209915574692,-26495207861603338],[1164,132102,26495207861603338,26495209915574692],[1164,132105,26495207861603338,26495209915574692],[1164,132106,-26495209915574692,-26495207861603338],[1164,132288,-22544604430576096,-22544603307191776],[1164,132300,-22544604430576096,-22544603307191776],[1164,132480,22544603307191776,22544604430576096],[1164,132492,22544603307191776,22544604430576096],[1164,133120,22544603305492866,22544604432275006],[1164,133132,22544603305492866,22544604432275006],[1164,134272,22544603305492866,22544604432275006],[1164,134284,22544603305492866,22544604432275006],[1164,163972,28470509817570824,28470512979312287],[1164,163976,-28470512979312287,-28470509817570824],[1164,164868,-28470512979312287,-28470509817570824],[1164,164872,28470509817570824,28470512979312287],[1164,524289,22544603307191776,22544604430576096],[1164,524290,-22544604430576096,-22544603307191776],[1164,524301,22544603307191776,22544604430576096],[1164,524302,-22544604430576096,-22544603307191776],[1164,524484,-26495209915574692,-26495207861603338],[1164,524488,26495207861603338,26495209915574692],[1164,524676,26495207861603338,26495209915574692],[1164,524680,-26495209915574692,-26495207861603338],[1164,525380,26495207861603338,26495209915574692],[1164,525384,-26495209915574692,-26495207861603338],[1164,525441,22544603307191776,22544604430576096],[1164,525442,-22544604430576096,-22544603307191776],[1164,525453,22544603307191776,22544604430576096],[1164,525454,-22544604430576096,-22544603307191776],[1164,525572,-26495209915574692,-26495207861603338],[1164,525576,26495207861603338,26495209915574692],[1164,526468,26495207853670452,26495209923507576],[1164,526472,-26495209923507576,-26495207853670452],[1164,527364,-26495209923507576,-26495207853670452],[1164,527368,26495207853670452,26495209923507576],[1164,557056,22544603293425280,22544604444342592],[1164,557068,22544603293425280,22544604444342592],[1164,558208,22544603293425280,22544604444342592],[1164,558220,22544603293425280,22544604444342592],[1164,655360,-22544604444342592,-22544603293425280],[1164,655372,-22544604444342592,-22544603293425280],[1164,656512,-22544604444342592,-22544603293425280],[1164,656524,-22544604444342592,-22544603293425280],[1164,1048577,-22544604430576096,-22544603307191776],[1164,1048578,22544603307191776,22544604430576096],[1164,1048589,-22544604430576096,-22544603307191776],[1164,1048590,22544603307191776,22544604430576096],[1164,1048772,26495207861603338,26495209915574692],[1164,1048776,-26495209915574692,-26495207861603338],[1164,1048964,-26495209915574692,-26495207861603338],[1164,1048968,26495207861603338,26495209915574692],[1164,1049668,-26495209915574692,-26495207861603338],[1164,1049672,26495207861603338,26495209915574692],[1164,1049729,-22544604430576096,-22544603307191776],[1164,1049730,22544603307191776,22544604430576096],[1164,1049741,-22544604430576096,-22544603307191776],[1164,1049742,22544603307191776,22544604430576096],[1164,1049860,26495207861603338,26495209915574692],[1164,1049864,-26495209915574692,-26495207861603338],[1164,1050756,-26495209923507576,-26495207853670452],[1164,1050760,26495207853670452,26495209923507576],[1164,1051652,26495207853670452,26495209923507576],[1164,1051656,-26495209923507576,-26495207853670452],[1164,1081344,-22544604444342592,-22544603293425280],[1164,1081356,-22544604444342592,-22544603293425280],[1164,1082496,-22544604444342592,-22544603293425280],[1164,1082508,-22544604444342592,-22544603293425280],[1164,1179648,22544603293425280,22544604444342592],[1164,1179660,22544603293425280,22544604444342592],[1164,1180800,22544603293425280,22544604444342592],[1164,1180812,22544603293425280,22544604444342592],[1164,1572996,28470509817570824,28470512979312287],[1164,1573000,-28470512979312287,-28470509817570824],[1164,1573892,-28470512979312287,-28470509817570824],[1164,1573896,28470509817570824,28470512979312287],[1167,129,22544601544971738,22544606192796140],[1167,130,-26495210023626872,-26495207753551168],[1167,132,3950603830830732,3950606208579430],[1167,139,-3950606208579430,-3950603830830732],[1167,141,26495207753551168,26495210023626872],[1167,142,-22544606192796140,-22544601544971738],[1167,1025,-22544606192796140,-22544601544971738],[1167,1026,26495207753551168,26495210023626872],[1167,1028,-3950606208579430,-3950603830830732],[1167,1035,3950603830830732,3950606208579430],[1167,1037,-26495210023626872,-26495207753551168],[1167,1038,22544601544971738,22544606192796140],[1217,10,-1975303106832961,-1975301912872117],[1217,75,-1194053189,1194053190],[1217,77,22544603300308524,22544604437459344],[1217,129,-4648501315670959,-4648498108918473],[1217,135,-1975303106925307,-1975301912779772],[1217,139,24519904682575622,24519908074897335],[1217,141,-24519907402845709,-24519905354627238],[1217,192,4648498108918473,4648501315670959],[1217,198,1975301912779772,1975303106925307],[1217,202,-26495210141551732,-26495207635626304],[1217,204,1975301912779772,1975303106925307],[1217,258,3950603830830732,3950606208579430],[1217,323,28470509832687554,28470512964195555],[1217,387,-17896106189622669,-17896102123555768],[1217,450,-6623803231071470,-6623801213223040],[1217,1025,4648498108918473,4648501315670959],[1217,1031,1975301912779772,1975303106925307],[1217,1035,-26495210141551732,-26495207635626304],[1217,1037,1975301912779772,1975303106925307],[1217,1088,-4648501315670959,-4648498108918473],[1217,1094,-1975303106925307,-1975301912779772],[1217,1098,24519904682575622,24519908074897335],[1217,1100,-24519907402845709,-24519905354627238],[1217,1162,-1194053189,1194053190],[1217,1164,22544603300308524,22544604437459344],[1217,1227,-1975303106832961,-1975301912872117],[1217,1283,-6623803231071470,-6623801213223040],[1217,1346,-17896106189622669,-17896102123555768],[1217,1410,28470509832687554,28470512964195555],[1217,1475,3950603830830732,3950606208579430],[1217,2050,1975301912872117,1975303106832961],[1217,2115,1975301912872117,1975303106832961],[1217,3202,1975301912872117,1975303106832961],[1217,3267,1975301912872117,1975303106832961],[1217,524290,-1975303102434961,-1975301917270118],[1217,524355,-1975303102434961,-1975301917270118],[1217,525442,-1975303102434961,-1975301917270118],[1217,525507,-1975303102434961,-1975301917270118],[1217,1048578,1975301917270118,1975303102434961],[1217,1048643,1975301917270118,1975303102434961],[1217,1049730,1975301917270118,1975303102434961],[1217,1049795,1975301917270118,1975303102434961],[1218,0,75535017338508762,75535025953615174],[1218,9,1975301912872117,1975303106832961],[1218,66,49039809086990954,49039816427954942],[1218,75,-1194053190,1194053189],[1218,78,-22544604437459344,-22544603300308524],[1218,130,-209714307449075898,-209714245574972548],[1218,139,-22544606008242938,-22544601729524940],[1218,142,24519905354627238,24519907402845709],[1218,192,236209459374475712,236209511426750774],[1218,201,24519904682575622,24519908074897335],[1218,204,-1975303106925307,-1975301912779772],[1218,257,-3950606208579430,-3950603830830732],[1218,264,-69609119643958417,-69609108589050261],[1218,323,-28470512964195555,-28470509832687554],[1218,330,-47064512094016005,-47064508401224809],[1218,387,17896102123555768,17896106189622669],[1218,394,52990412240818188,52990423313537884],[1218,449,6623801213223040,6623803231071470],[1218,456,-75535025980292526,-75535017311831410],[1218,834,13247603817873562,13247605070715450],[1218,898,-26495209986088162,-26495207791089865],[1218,960,13247603822418509,13247605066170506],[1218,1026,236209459374475712,236209511426750774],[1218,1035,24519904682575622,24519908074897335],[1218,1038,-1975303106925307,-1975301912779772],[1218,1088,-209714307449075898,-209714245574972548],[1218,1097,-22544606008242938,-22544601729524940],[1218,1100,24519905354627238,24519907402845709],[1218,1152,49039809086990954,49039816427954942],[1218,1161,-1194053190,1194053189],[1218,1164,-22544604437459344,-22544603300308524],[1218,1218,75535017338508762,75535025953615174],[1218,1227,1975301912872117,1975303106832961],[1218,1283,6623801213223040,6623803231071470],[1218,1290,-75535025980292526,-75535017311831410],[1218,1345,17896102123555768,17896106189622669],[1218,1352,52990412240818188,52990423313537884],[1218,1409,-28470512964195555,-28470509832687554],[1218,1416,-47064512094016005,-47064508401224809],[1218,1475,-3950606208579430,-3950603830830732],[1218,1482,-69609119643958417,-69609108589050261],[1218,1794,13247603822418509,13247605066170506],[1218,1856,-26495209986088162,-26495207791089865],[1218,1920,13247603817873562,13247605070715450],[1218,2049,-1975303106832961,-1975301912872117],[1218,2056,-45089208976214568,-45089206499321174],[1218,2115,-1975303106832961,-1975301912872117],[1218,2122,-18594000484966090,-18593997213391625],[1218,2186,-2216932520,2216932523],[1218,2248,-26495210008022388,-26495207769155642],[1218,2304,1975301912872117,1975303106832961],[1218,2370,15222905735290626,15222908173003467],[1218,2434,-52990419972049588,-52990415582306470],[1218,2496,39742811609090167,39742815056676876],[1218,3082,-26495210008022388,-26495207769155642],[1218,3144,-2216932520,2216932523],[1218,3201,-1975303106832961,-1975301912872117],[1218,3208,-18594000484966090,-18593997213391625],[1218,3267,-1975303106832961,-1975301912872117],[1218,3274,-45089208976214568,-45089206499321174],[1218,3330,39742811609090167,39742815056676876],[1218,3392,-52990419972049588,-52990415582306470],[1218,3456,15222905735290626,15222908173003467],[1218,3522,1975301912872117,1975303106832961],[1218,131146,-1975303134066536,-1975301885638544],[1218,131210,-11272303056635485,-11272300812248450],[1218,131272,13247603792440361,13247605096148654],[1218,132106,13247603792440361,13247605096148654],[1218,132168,-11272303056635485,-11272300812248450],[1218,132232,-1975303134066536,-1975301885638544],[1218,524289,1975301917270118,1975303102434961],[1218,524296,31841601906990784,31841604679955942],[1218,524355,1975301917270118,1975303102434961],[1218,524362,22544602323661876,22544605414105996],[1218,524426,-1975304719493192,-1975300300211890],[1218,524488,11272299879110672,11272303989773264],[1218,524544,-3950606232496514,-3950603806913643],[1218,524610,-1975303102434961,-1975301917270118],[1218,524674,51015113107831353,51015117426819622],[1218,524736,-52990419943081622,-52990415611274431],[1218,525322,11272299879110672,11272303989773264],[1218,525384,-1975304719493192,-1975300300211890],[1218,525441,1975301917270118,1975303102434961],[1218,525448,22544602323661876,22544605414105996],[1218,525507,1975301917270118,1975303102434961],[1218,525514,31841601906990784,31841604679955942],[1218,525570,-52990419943081622,-52990415611274431],[1218,525632,51015113107831353,51015117426819622],[1218,525696,-1975303102434961,-1975301917270118],[1218,525762,-3950606232496514,-3950603806913643],[1218,526466,26495207799184865,26495209977993164],[1218,526528,-26495209977993164,-26495207799184865],[1218,527362,-26495209977993164,-26495207799184865],[1218,527424,26495207799184865,26495209977993164],[1218,1048577,-1975303102434961,-1975301917270118],[1218,1048584,-45089208967216020,-45089206508319720],[1218,1048643,-1975303102434961,-1975301917270118],[1218,1048650,-18594000555019592,-18593997143338122],[1218,1048714,-2178588643,2178588646],[1218,1048776,-26495209977993164,-26495207799184865],[1218,1048832,1975301917270118,1975303102434961],[1218,1048898,15222905744259616,15222908164034477],[1218,1048962,-52990419943081622,-52990415611274431],[1218,1049024,39742811633487139,39742815032279900],[1218,1049610,-26495209977993164,-26495207799184865],[1218,1049672,-2178588643,2178588646],[1218,1049729,-1975303102434961,-1975301917270118],[1218,1049736,-18594000555019592,-18593997143338122],[1218,1049795,-1975303102434961,-1975301917270118],[1218,1049802,-45089208967216020,-45089206508319720],[1218,1049858,39742811633487139,39742815032279900],[1218,1049920,-52990419943081622,-52990415611274431],[1218,1049984,15222905744259616,15222908164034477],[1218,1050050,1975301917270118,1975303102434961],[1218,1050754,-26495209977993164,-26495207799184865],[1218,1050816,26495207799184865,26495209977993164],[1218,1051650,26495207799184865,26495209977993164],[1218,1051712,-26495209977993164,-26495207799184865],[1218,1572994,28470509674673669,28470513122209439],[1218,1573056,-28470513122209439,-28470509674673669],[1218,1573890,-28470513122209439,-28470509674673669],[1218,1573952,28470509674673669,28470513122209439],[1220,0,-22544604716605376,-22544603021162496],[1220,10,13247603851021587,13247605037567427],[1220,68,-13247605973043456,-13247602915545560],[1220,77,-22544604437459344,-22544603300308524],[1220,78,-1975303106925307,-1975301912779772],[1220,132,6623799524173159,6623804920121353],[1220,135,1975301912779772,1975303106925307],[1220,141,24519905354627238,24519907402845709],[1220,142,-24519910199672792,-24519902557800167],[1220,192,-15920803246405425,-15920800047067943],[1220,195,-1975303106925307,-1975301912779772],[1220,201,-1975303106925307,-1975301912779772],[1220,202,39742809972538796,39742816693228256],[1220,264,22544601544971738,22544606192796140],[1220,332,24519905354627238,24519907402845709],[1220,396,-8599107733712757,-8599101730286822],[1220,456,6623801213223040,6623803231071470],[1220,1028,-15920803246405425,-15920800047067943],[1220,1031,-1975303106925307,-1975301912779772],[1220,1037,-1975303106925307,-1975301912779772],[1220,1038,39742809972538796,39742816693228256],[1220,1088,6623799524173159,6623804920121353],[1220,1091,1975301912779772,1975303106925307],[1220,1097,24519905354627238,24519907402845709],[1220,1098,-24519910199672792,-24519902557800167],[1220,1152,-13247605973043456,-13247602915545560],[1220,1161,-22544604437459344,-22544603300308524],[1220,1162,-1975303106925307,-1975301912779772],[1220,1220,-22544604716605376,-22544603021162496],[1220,1230,13247603851021587,13247605037567427],[1220,1292,6623801213223040,6623803231071470],[1220,1352,-8599107733712757,-8599101730286822],[1220,1416,24519905354627238,24519907402845709],[1220,1484,22544601544971738,22544606192796140],[1220,2056,-1975303106832961,-1975301912872117],[1220,2124,24519905362432319,24519907395040631],[1220,2188,-26495209923507576,-26495207853670452],[1220,3144,-26495209923507576,-26495207853670452],[1220,3208,24519905362432319,24519907395040631],[1220,3276,-1975303106832961,-1975301912872117],[1220,32844,-22544604430576096,-22544603307191776],[1220,32908,24519905365967204,24519907391505747],[1220,32968,-1975303102468593,-1975301917236486],[1220,33804,-1975303102468593,-1975301917236486],[1220,33864,24519905365967204,24519907391505747],[1220,33928,-22544604430576096,-22544603307191776],[1220,131148,-1975303102468593,-1975301917236486],[1220,131212,-11272302995044411,-11272300873839524],[1220,131272,13247603822433492,13247605066155522],[1220,132108,13247603822433492,13247605066155522],[1220,132168,-11272302995044411,-11272300873839524],[1220,132232,-1975303102468593,-1975301917236486],[1220,524296,-11272302664793112,-11272301204090824],[1220,524364,-873779583,873779583],[1220,524428,6623801159997192,6623803284297315],[1220,524488,-17896105064267619,-17896103248910824],[1220,525324,-17896105064267619,-17896103248910824],[1220,525384,6623801159997192,6623803284297315],[1220,525448,-873779583,873779583],[1220,525516,-11272302664793112,-11272301204090824],[1220,1048584,-1975303102434961,-1975301917270118],[1220,1048652,24519905365967204,24519907391505747],[1220,1048716,-26495209915574692,-26495207861603338],[1220,1049672,-26495209915574692,-26495207861603338],[1220,1049736,24519905365967204,24519907391505747],[1220,1049804,-1975303102434961,-1975301917270118],[1223,129,-1975303106925307,-1975301912779772],[1223,132,1975301912779772,1975303106925307],[1223,195,-1975303106925307,-1975301912779772],[1223,198,1975301912779772,1975303106925307],[1223,1025,1975301912779772,1975303106925307],[1223,1028,-1975303106925307,-1975301912779772],[1223,1091,1975301912779772,1975303106925307],[1223,1094,-1975303106925307,-1975301912779772],[1224,0,-3358093042,3358093038],[1224,6,-13247605037567427,-13247603851021587],[1224,72,266383184103143623,266383230341000381],[1224,78,24519905354627238,24519907402845709],[1224,136,-43421350142958786,-43421302388547748],[1224,139,-1194053190,1194053189],[1224,142,-13247609011319922,-13247599877269080],[1224,192,-222961907731674894,-222961854180962580],[1224,195,-1194053189,1194053190],[1224,198,-24519910199672792,-24519902557800167],[1224,258,67633806676178144,67633816537125456],[1224,260,-22544606192796140,-22544601544971738],[1224,330,43113900199647331,43113910256183319],[1224,332,-24519907402845709,-24519905354627238],[1224,394,7321691863722815,7321701965750947],[1224,396,8599101730286822,8599107733712757],[1224,450,17198202133527204,17198216794471984],[1224,452,-6623803231071470,-6623801213223040],[1224,840,15222905735290626,15222908173003467],[1224,960,-15222908173003467,-15222905735290626],[1224,1032,-222961907731674894,-222961854180962580],[1224,1035,-1194053189,1194053190],[1224,1038,-24519910199672792,-24519902557800167],[1224,1088,-43421350142958786,-43421302388547748],[1224,1091,-1194053190,1194053189],[1224,1094,-13247609011319922,-13247599877269080],[1224,1152,266383184103143623,266383230341000381],[1224,1158,24519905354627238,24519907402845709],[1224,1224,-3358093042,3358093038],[1224,1230,-13247605037567427,-13247603851021587],[1224,1290,17198202133527204,17198216794471984],[1224,1292,-6623803231071470,-6623801213223040],[1224,1346,7321691863722815,7321701965750947],[1224,1348,8599101730286822,8599107733712757],[1224,1410,43113900199647331,43113910256183319],[1224,1412,-24519907402845709,-24519905354627238],[1224,1482,67633806676178144,67633816537125456],[1224,1484,-22544606192796140,-22544601544971738],[1224,1800,-15222908173003467,-15222905735290626],[1224,1920,15222905735290626,15222908173003467],[1224,2050,49039810262574998,49039815252370900],[1224,2052,1975301912872117,1975303106832961],[1224,2122,-3950608236257121,-3950601803153038],[1224,2124,-24519907395040631,-24519905362432319],[1224,2186,26495207791089865,26495209986088162],[1224,2188,26495207853670452,26495209923507576],[1224,2242,26495207769155642,26495210008022388],[1224,2304,1975301915400511,1975303104304567],[1224,2376,17198204896268894,17198214031730284],[1224,2440,-26495209986088162,-26495207791089865],[1224,2496,11272298146528817,11272305722355110],[1224,3082,26495207769155642,26495210008022388],[1224,3138,26495207791089865,26495209986088162],[1224,3140,26495207853670452,26495209923507576],[1224,3202,-3950608236257121,-3950601803153038],[1224,3204,-24519907395040631,-24519905362432319],[1224,3274,49039810262574998,49039815252370900],[1224,3276,1975301912872117,1975303106832961],[1224,3336,11272298146528817,11272305722355110],[1224,3392,-26495209986088162,-26495207791089865],[1224,3456,17198204896268894,17198214031730284],[1224,3528,1975301915400511,1975303104304567],[1224,131074,-13247605061713792,-13247603826875223],[1224,131146,3950603932147814,3950606107262344],[1224,131148,24519905365967204,24519907391505747],[1224,131210,4648494894207522,4648504530381905],[1224,131212,-13247606222252656,-13247602666336360],[1224,131266,-21846713211925840,-21846705140662760],[1224,131268,-11272302995044411,-11272300873839524],[1224,131328,18593996442899990,18594001255457720],[1224,131400,-3950606107262344,-3950603932147814],[1224,131464,11272298596064681,11272305272819252],[1224,131520,11272300873839524,11272302995044411],[1224,132106,-21846713211925840,-21846705140662760],[1224,132108,-11272302995044411,-11272300873839524],[1224,132162,4648494894207522,4648504530381905],[1224,132164,-13247606222252656,-13247602666336360],[1224,132226,3950603932147814,3950606107262344],[1224,132228,24519905365967204,24519907391505747],[1224,132298,-13247605061713792,-13247603826875223],[1224,132360,11272300873839524,11272302995044411],[1224,132416,11272298596064681,11272305272819252],[1224,132480,-3950606107262344,-3950603932147814],[1224,132552,18593996442899990,18594001255457720],[1224,133120,22544603251852693,22544604485915178],[1224,133192,-3950606098159314,-3950603941250842],[1224,133256,26495207805375563,26495209971802464],[1224,134208,26495207805375563,26495209971802464],[1224,134272,-3950606098159314,-3950603941250842],[1224,134344,22544603251852693,22544604485915178],[1224,524290,-22544606644811289,-22544601092956580],[1224,524292,11272301204090824,11272302664793112],[1224,524362,-24519909474570990,-24519903282901962],[1224,524364,-873779583,873779583],[1224,524426,-6623804308921517,-6623800135372988],[1224,524428,-6623803284297315,-6623801159997192],[1224,524482,8599102641942379,8599106822057209],[1224,524484,17896103248910824,17896105064267619],[1224,524544,-22544606578062592,-22544601159705275],[1224,524616,-24519908340000795,-24519904417472150],[1224,524680,8599101696810952,8599107767188634],[1224,524736,-6623804212490749,-6623800231803759],[1224,525322,8599102641942379,8599106822057209],[1224,525324,17896103248910824,17896105064267619],[1224,525378,-6623804308921517,-6623800135372988],[1224,525380,-6623803284297315,-6623801159997192],[1224,525442,-24519909474570990,-24519903282901962],[1224,525444,-873779583,873779583],[1224,525514,-22544606644811289,-22544601092956580],[1224,525516,11272301204090824,11272302664793112],[1224,525576,-6623804212490749,-6623800231803759],[1224,525632,8599101696810952,8599107767188634],[1224,525696,-24519908340000795,-24519904417472150],[1224,525768,-22544606578062592,-22544601159705275],[1224,526336,-24519907156493899,-24519905600979049],[1224,526408,-24519907464643493,-24519905292829456],[1224,526472,-923386045,923386045],[1224,526528,-929670021,929670022],[1224,527368,-929670021,929670022],[1224,527424,-923386045,923386045],[1224,527488,-24519907464643493,-24519905292829456],[1224,527560,-24519907156493899,-24519905600979049],[1224,655360,-9297000206694220,-9296998642484636],[1224,655432,22544602310993060,22544605426774810],[1224,655496,-49039814989147174,-49039810525798726],[1224,655552,17198207831856214,17198211096142960],[1224,656392,17198207831856214,17198211096142960],[1224,656448,-49039814989147174,-49039810525798726],[1224,656512,22544602310993060,22544605426774810],[1224,656584,-9297000206694220,-9296998642484636],[1224,1048578,49039810292025454,49039815222920444],[1224,1048580,1975301917270118,1975303102434961],[1224,1048650,-3950608433100829,-3950601606309328],[1224,1048652,-24519907391505747,-24519905365967204],[1224,1048714,26495207799404518,26495209977773508],[1224,1048716,26495207861603338,26495209915574692],[1224,1048770,26495207799184865,26495209977993164],[1224,1048832,1975301917236486,1975303102468593],[1224,1048904,17198204951509383,17198213976489780],[1224,1048968,-26495209977773508,-26495207799404518],[1224,1049024,11272298195290642,11272305673593300],[1224,1049610,26495207799184865,26495209977993164],[1224,1049666,26495207799404518,26495209977773508],[1224,1049668,26495207861603338,26495209915574692],[1224,1049730,-3950608433100829,-3950601606309328],[1224,1049732,-24519907391505747,-24519905365967204],[1224,1049802,49039810292025454,49039815222920444],[1224,1049804,1975301917270118,1975303102434961],[1224,1049864,11272298195290642,11272305673593300],[1224,1049920,-26495209977773508,-26495207799404518],[1224,1049984,17198204951509383,17198213976489780],[1224,1050056,1975301917236486,1975303102468593],[1224,1050696,52990415906156016,52990419648200040],[1224,1050760,-26495209971802464,-26495207805375563],[1224,1050816,-26495209977993164,-26495207799184865],[1224,1051656,-26495209977993164,-26495207799184865],[1224,1051712,-26495209971802464,-26495207805375563],[1224,1051776,52990415906156016,52990419648200040],[1224,1179648,22544603239782766,22544604497985104],[1224,1179720,-3950606120324188,-3950603919085972],[1224,1179784,26495207784975390,26495209992202640],[1224,1180736,26495207784975390,26495209992202640],[1224,1180800,-3950606120324188,-3950603919085972],[1224,1180872,22544603239782766,22544604497985104],[1224,1572864,-24519907169816619,-24519905587656329],[1224,1572936,-49039814917723134,-49039810597222762],[1224,1573000,22544602318599624,22544605419168246],[1224,1573056,1975300950242052,1975304069463026],[1224,1573896,1975300950242052,1975304069463026],[1224,1573952,22544602318599624,22544605419168246],[1224,1574016,-49039814917723134,-49039810597222762],[1224,1574088,-24519907169816619,-24519905587656329],[1227,9,1975301912872117,1975303106832961],[1227,10,-1975303106832961,-1975301912872117],[1227,65,1975301912779772,1975303106925307],[1227,66,-1975303106925307,-1975301912779772],[1227,129,13247601047218919,13247607841370104],[1227,130,-9297003706117328,-9296995143061538],[1227,136,-1975303106925307,-1975301912779772],[1227,139,1975301912872117,1975303106832961],[1227,192,-1975303106832961,-1975301912872117],[1227,195,1975301912779772,1975303106925307],[1227,201,13247601047218919,13247607841370104],[1227,202,-17198211976622880,-17198206951376300],[1227,1025,-17198211976622880,-17198206951376300],[1227,1026,13247601047218919,13247607841370104],[1227,1032,1975301912779772,1975303106925307],[1227,1035,-1975303106832961,-1975301912872117],[1227,1088,1975301912872117,1975303106832961],[1227,1091,-1975303106925307,-1975301912779772],[1227,1097,-9297003706117328,-9296995143061538],[1227,1098,13247601047218919,13247607841370104],[1227,1161,-1975303106925307,-1975301912779772],[1227,1162,1975301912779772,1975303106925307],[1227,1217,-1975303106832961,-1975301912872117],[1227,1218,1975301912872117,1975303106832961],[1229,65,22544603300308524,22544604437459344],[1229,68,-22544604437459344,-22544603300308524],[1229,129,-24519907402845709,-24519905354627238],[1229,132,24519905354627238,24519907402845709],[1229,201,-1975303106925307,-1975301912779772],[1229,204,1975301912779772,1975303106925307],[1229,1025,1975301912779772,1975303106925307],[1229,1028,-1975303106925307,-1975301912779772],[1229,1097,24519905354627238,24519907402845709],[1229,1100,-24519907402845709,-24519905354627238],[1229,1161,-22544604437459344,-22544603300308524],[1229,1164,22544603300308524,22544604437459344],[1230,6,-13247605037567427,-13247603851021587],[1230,10,13247603851021587,13247605037567427],[1230,66,-22544604437459344,-22544603300308524],[1230,68,11272300744096280,11272303124787655],[1230,72,11272300317059811,11272303551824122],[1230,130,11272300317059811,11272303551824122],[1230,132,-24519908074897335,-24519904682575622],[1230,136,-2424856520,2424856530],[1230,142,-13247605037567427,-13247603851021587],[1230,192,13247603851021587,13247605037567427],[1230,198,-24519908074897335,-24519904682575622],[1230,202,26495207635626304,26495210141551732],[1230,204,11272300744096280,11272303124787655],[1230,1026,11272300744096280,11272303124787655],[1230,1028,26495207635626304,26495210141551732],[1230,1032,-24519908074897335,-24519904682575622],[1230,1038,13247603851021587,13247605037567427],[1230,1088,-13247605037567427,-13247603851021587],[1230,1094,-2424856520,2424856530],[1230,1098,-24519908074897335,-24519904682575622],[1230,1100,11272300317059811,11272303551824122],[1230,1158,11272300317059811,11272303551824122],[1230,1162,11272300744096280,11272303124787655],[1230,1164,-22544604437459344,-22544603300308524],[1230,1220,13247603851021587,13247605037567427],[1230,1224,-13247605037567427,-13247603851021587],[1280,66,-34514803436440870,-34514797555390214],[1280,72,-12549714284822493,-12549705218587237],[1280,130,-12549714284822493,-12549705218587237],[1280,136,-34514803436440870,-34514797555390214],[1280,202,-9297000684250004,-9296998164928852],[1280,514,17198207753821687,17198211174177485],[1280,520,-13247606157000801,-13247602731588215],[1280,706,-1975303104304567,-1975301915400511],[1280,712,-1975303106832961,-1975301912872117],[1280,1346,-34514803436440870,-34514797555390214],[1280,1352,-12549714284822493,-12549705218587237],[1280,1410,-12549714284822493,-12549705218587237],[1280,1416,-34514803436440870,-34514797555390214],[1280,1482,-9297000684250004,-9296998164928852],[1280,1794,17198207753821687,17198211174177485],[1280,1800,-13247606157000801,-13247602731588215],[1280,1986,-1975303104304567,-1975301915400511],[1280,1992,-1975303106832961,-1975301912872117],[1280,2050,-13247606157000801,-13247602731588215],[1280,2056,17198207753821687,17198211174177485],[1280,2242,-1975303106832961,-1975301912872117],[1280,2248,-1975303104304567,-1975301915400511],[1280,3330,-13247606157000801,-13247602731588215],[1280,3336,17198207753821687,17198211174177485],[1280,3522,-1975303106832961,-1975301912872117],[1280,3528,-1975303104304567,-1975301915400511],[1280,524296,-3950605484998596,-3950604554411562],[1280,524482,-4648500337554984,-4648499087034444],[1280,524488,8599103952831266,8599105511168320],[1280,525576,-3950605484998596,-3950604554411562],[1280,525762,-4648500337554984,-4648499087034444],[1280,525768,8599103952831266,8599105511168320],[1280,1048578,-13247606122970514,-13247602765618499],[1280,1048584,17198207785357210,17198211142641961],[1280,1048770,-1975303102434961,-1975301917270118],[1280,1048776,-1975303102468593,-1975301917236486],[1280,1049858,-13247606122970514,-13247602765618499],[1280,1049864,17198207785357210,17198211142641961],[1280,1050050,-1975303102434961,-1975301917270118],[1280,1050056,-1975303102468593,-1975301917236486],[1283,257,-1975304506421476,-1975300513283600],[1283,258,1975300513283600,1975304506421476],[1283,449,6623801213223040,6623803231071470],[1283,450,-6623803231071470,-6623801213223040],[1283,1025,1975300513283600,1975304506421476],[1283,1026,-1975304506421476,-1975300513283600],[1283,1217,-6623803231071470,-6623801213223040],[1283,1218,6623801213223040,6623803231071470],[1290,192,-58336815178304206,-58336809185820542],[1290,258,3950600776488312,3950609262921848],[1290,264,-3950609262921848,-3950600776488312],[1290,450,17198202133527204,17198216794471984],[1290,456,-75535025980292526,-75535017311831410],[1290,1026,-3950609262921848,-3950600776488312],[1290,1032,3950600776488312,3950609262921848],[1290,1218,-75535025980292526,-75535017311831410],[1290,1224,17198202133527204,17198216794471984],[1290,1482,-58336815178304206,-58336809185820542],[1292,260,1975300513283600,1975304506421476],[1292,264,-1975304506421476,-1975300513283600],[1292,452,-6623803231071470,-6623801213223040],[1292,456,6623801213223040,6623803231071470],[1292,1028,-1975304506421476,-1975300513283600],[1292,1032,1975300513283600,1975304506421476],[1292,1220,6623801213223040,6623803231071470],[1292,1224,-6623803231071470,-6623801213223040],[1345,130,-26495210023626872,-26495207753551168],[1345,195,-19871408102400732,-19871405230482798],[1345,257,-1975304034893986,-1975300984811094],[1345,263,-22544604437459344,-22544603300308524],[1345,267,-1975303106925307,-1975301912779772],[1345,320,1975300984811094,1975304034893986],[1345,326,22544603300308524,22544604437459344],[1345,330,1975301912779772,1975303106925307],[1345,387,17896102123555768,17896106189622669],[1345,450,-24519907402845709,-24519905354627238],[1345,514,13247603851021587,13247605037567427],[1345,579,13247603851021587,13247605037567427],[1345,1025,1975300984811094,1975304034893986],[1345,1031,22544603300308524,22544604437459344],[1345,1035,1975301912779772,1975303106925307],[1345,1088,-1975304034893986,-1975300984811094],[1345,1094,-22544604437459344,-22544603300308524],[1345,1098,-1975303106925307,-1975301912779772],[1345,1155,-24519907402845709,-24519905354627238],[1345,1218,17896102123555768,17896106189622669],[1345,1410,-19871408102400732,-19871405230482798],[1345,1475,-26495210023626872,-26495207753551168],[1345,1794,13247603851021587,13247605037567427],[1345,1859,13247603851021587,13247605037567427],[1345,2050,-13247605037567427,-13247603851021587],[1345,2115,-13247605037567427,-13247603851021587],[1345,3330,-13247605037567427,-13247603851021587],[1345,3395,-13247605037567427,-13247603851021587],[1345,1048578,-13247605033203059,-13247603855385956],[1345,1048643,-13247605033203059,-13247603855385956],[1345,1049858,-13247605033203059,-13247603855385956],[1345,1049923,-13247605033203059,-13247603855385956],[1346,0,-49039814791924922,-49039810723020980],[1346,66,-34514803436440870,-34514797555390214],[1346,129,26495207753551168,26495210023626872],[1346,136,26495207701858484,26495210075319546],[1346,195,19871405230482798,19871408102400732],[1346,202,66238017825195074,66238026617750008],[1346,258,255808774717255568,255808825243183778],[1346,267,24519905354627238,24519907402845709],[1346,320,-270333833954743796,-270333790528810368],[1346,329,-24519907402845709,-24519905354627238],[1346,387,-17896106189622669,-17896102123555768],[1346,394,7321691863722815,7321701965750947],[1346,449,24519905354627238,24519907402845709],[1346,456,-47064512094016005,-47064508401224809],[1346,513,-13247605037567427,-13247603851021587],[1346,520,-13247605066170506,-13247603822418509],[1346,579,-13247605037567427,-13247603851021587],[1346,586,-13247605066170506,-13247603822418509],[1346,640,11272300718113942,11272303150769995],[1346,706,13247603822418509,13247605066170506],[1346,898,-51015117331445277,-51015113203205693],[1346,960,49039810709439166,49039814805506726],[1346,1026,-270333833954743796,-270333790528810368],[1346,1035,-24519907402845709,-24519905354627238],[1346,1088,255808774717255568,255808825243183778],[1346,1097,24519905354627238,24519907402845709],[1346,1155,24519905354627238,24519907402845709],[1346,1162,-47064512094016005,-47064508401224809],[1346,1217,-17896106189622669,-17896102123555768],[1346,1224,7321691863722815,7321701965750947],[1346,1280,-34514803436440870,-34514797555390214],[1346,1346,-49039814791924922,-49039810723020980],[1346,1409,19871405230482798,19871408102400732],[1346,1416,66238017825195074,66238026617750008],[1346,1475,26495207753551168,26495210023626872],[1346,1482,26495207701858484,26495210075319546],[1346,1666,49039810709439166,49039814805506726],[1346,1728,-51015117331445277,-51015113203205693],[1346,1793,-13247605037567427,-13247603851021587],[1346,1800,-13247605066170506,-13247603822418509],[1346,1859,-13247605037567427,-13247603851021587],[1346,1866,-13247605066170506,-13247603822418509],[1346,1920,13247603822418509,13247605066170506],[1346,1986,11272300718113942,11272303150769995],[1346,2049,13247603851021587,13247605037567427],[1346,2056,13247603822418509,13247605066170506],[1346,2115,13247603851021587,13247605037567427],[1346,2122,13247603822418509,13247605066170506],[1346,2176,-13247605066170506,-13247603822418509],[1346,2242,-15222908173003467,-15222905735290626],[1346,2434,49039810709439166,49039814805506726],[1346,2496,-47064511840212707,-47064508655028107],[1346,2818,-22544605449648746,-22544602288119128],[1346,2880,22544602288119128,22544605449648746],[1346,3202,-47064511840212707,-47064508655028107],[1346,3264,49039810709439166,49039814805506726],[1346,3329,13247603851021587,13247605037567427],[1346,3336,13247603822418509,13247605066170506],[1346,3395,13247603851021587,13247605037567427],[1346,3402,13247603822418509,13247605066170506],[1346,3456,-15222908173003467,-15222905735290626],[1346,3522,-13247605066170506,-13247603822418509],[1346,3586,22544602288119128,22544605449648746],[1346,3648,-22544605449648746,-22544602288119128],[1346,524482,-4648500337554984,-4648499087034444],[1346,524674,6623801159997192,6623803284297315],[1346,524736,-1975303102468593,-1975301917236486],[1346,525442,-1975303102468593,-1975301917236486],[1346,525504,6623801159997192,6623803284297315],[1346,525696,-4648500337554984,-4648499087034444],[1346,1048577,13247603855385956,13247605033203059],[1346,1048584,13247603826989498,13247605061599516],[1346,1048643,13247603855385956,13247605033203059],[1346,1048650,13247603826989498,13247605061599516],[1346,1048704,-13247605061599516,-13247603826989498],[1346,1048770,-15222908164034477,-15222905744259616],[1346,1048962,49039810731968040,49039814782977862],[1346,1049024,-47064511822081843,-47064508673158980],[1346,1049346,-24519907464643494,-24519905292829457],[1346,1049408,24519905292829457,24519907464643494],[1346,1049730,-47064511822081843,-47064508673158980],[1346,1049792,49039810731968040,49039814782977862],[1346,1049857,13247603855385956,13247605033203059],[1346,1049864,13247603826989498,13247605061599516],[1346,1049923,13247603855385956,13247605033203059],[1346,1049930,13247603826989498,13247605061599516],[1346,1049984,-15222908164034477,-15222905744259616],[1346,1050050,-13247605061599516,-13247603826989498],[1346,1050114,24519905292829457,24519907464643494],[1346,1050176,-24519907464643494,-24519905292829457],[1346,1050882,24519905292829457,24519907464643494],[1346,1050944,-24519907464643494,-24519905292829457],[1346,1051650,-24519907464643494,-24519905292829457],[1346,1051712,24519905292829457,24519907464643494],[1348,204,19871405230482798,19871408102400732],[1348,263,22544603300308524,22544604437459344],[1348,270,1975301912779772,1975303106925307],[1348,323,-22544604437459344,-22544603300308524],[1348,330,-1975303106925307,-1975301912779772],[1348,396,8599101730286822,8599107733712757],[1348,456,-28470512964195555,-28470509832687554],[1348,1031,-22544604437459344,-22544603300308524],[1348,1038,-1975303106925307,-1975301912779772],[1348,1091,22544603300308524,22544604437459344],[1348,1098,1975301912779772,1975303106925307],[1348,1164,-28470512964195555,-28470509832687554],[1348,1224,8599101730286822,8599107733712757],[1348,1416,19871405230482798,19871408102400732],[1351,257,-22544604437459344,-22544603300308524],[1351,260,22544603300308524,22544604437459344],[1351,323,-22544604437459344,-22544603300308524],[1351,326,22544603300308524,22544604437459344],[1351,1025,22544603300308524,22544604437459344],[1351,1028,-22544604437459344,-22544603300308524],[1351,1091,22544603300308524,22544604437459344],[1351,1094,-22544604437459344,-22544603300308524],[1352,0,33237389706261878,33237395651043384],[1352,72,-12549714284822493,-12549705218587237],[1352,130,20569298579708561,20569304138354223],[1352,202,-75535024782678860,-75535018509445078],[1352,204,-19871408102400732,-19871405230482798],[1352,264,23242490579994047,23242506542953071],[1352,267,-22544604437459344,-22544603300308524],[1352,270,-1975303106925307,-1975301912779772],[1352,320,22544599251748898,22544608486018976],[1352,323,22544603300308524,22544604437459344],[1352,326,1975301912779772,1975303106925307],[1352,394,52990412240818188,52990423313537884],[1352,396,-8599107733712757,-8599101730286822],[1352,450,43113900199647331,43113910256183319],[1352,452,28470509832687554,28470512964195555],[1352,514,13247603822418509,13247605066170506],[1352,586,13247603822418509,13247605066170506],[1352,640,-7321700231122540,-7321693598351231],[1352,712,39742811609090167,39742815056676876],[1352,960,-47064511840212707,-47064508655028107],[1352,1032,22544599251748898,22544608486018976],[1352,1035,22544603300308524,22544604437459344],[1352,1038,1975301912779772,1975303106925307],[1352,1088,23242490579994047,23242506542953071],[1352,1091,-22544604437459344,-22544603300308524],[1352,1094,-1975303106925307,-1975301912779772],[1352,1162,43113900199647331,43113910256183319],[1352,1164,28470509832687554,28470512964195555],[1352,1218,52990412240818188,52990423313537884],[1352,1220,-8599107733712757,-8599101730286822],[1352,1280,-12549714284822493,-12549705218587237],[1352,1352,33237389706261878,33237395651043384],[1352,1410,-75535024782678860,-75535018509445078],[1352,1412,-19871408102400732,-19871405230482798],[1352,1482,20569298579708561,20569304138354223],[1352,1672,-47064511840212707,-47064508655028107],[1352,1794,13247603822418509,13247605066170506],[1352,1866,13247603822418509,13247605066170506],[1352,1920,39742811609090167,39742815056676876],[1352,1992,-7321700231122540,-7321693598351231],[1352,2050,-13247605066170506,-13247603822418509],[1352,2122,-13247605066170506,-13247603822418509],[1352,2176,-39742815056676876,-39742811609090167],[1352,2248,11272298146528817,11272305722355110],[1352,2440,-51015117331445277,-51015113203205693],[1352,3264,-51015117331445277,-51015113203205693],[1352,3330,-13247605066170506,-13247603822418509],[1352,3402,-13247605066170506,-13247603822418509],[1352,3456,11272298146528817,11272305722355110],[1352,3528,-39742815056676876,-39742811609090167],[1352,131272,-37767512457661269,-37767509188400696],[1352,131338,-1975303130061553,-1975301889643525],[1352,131394,1975301889643525,1975303130061553],[1352,131464,-11272305272819252,-11272298596064681],[1352,131520,49039811053725950,49039814461219948],[1352,132106,1975301889643525,1975303130061553],[1352,132162,-1975303130061553,-1975301889643525],[1352,132232,49039811053725950,49039814461219948],[1352,132288,-11272305272819252,-11272298596064681],[1352,132480,-37767512457661269,-37767509188400696],[1352,524488,-13247605939232943,-13247602949356073],[1352,524680,11272298892173522,11272304976710416],[1352,524736,1975300962522527,1975304057182551],[1352,525448,1975300962522527,1975304057182551],[1352,525504,11272298892173522,11272304976710416],[1352,525696,-13247605939232943,-13247602949356073],[1352,1048578,-13247605061599516,-13247603826989498],[1352,1048650,-13247605061599516,-13247603826989498],[1352,1048704,-39742815032300530,-39742811633466510],[1352,1048776,11272298195303644,11272305673580297],[1352,1048968,-51015117307046807,-51015113227604174],[1352,1049792,-51015117307046807,-51015113227604174],[1352,1049858,-13247605061599516,-13247603826989498],[1352,1049930,-13247605061599516,-13247603826989498],[1352,1049984,11272298195303644,11272305673580297],[1352,1050056,-39742815032300530,-39742811633466510],[1355,257,-1975303106925307,-1975301912779772],[1355,258,24519905354627238,24519907402845709],[1355,264,-22544604437459344,-22544603300308524],[1355,323,22544603300308524,22544604437459344],[1355,329,-24519907402845709,-24519905354627238],[1355,330,1975301912779772,1975303106925307],[1355,1025,1975301912779772,1975303106925307],[1355,1026,-24519907402845709,-24519905354627238],[1355,1032,22544603300308524,22544604437459344],[1355,1091,-22544604437459344,-22544603300308524],[1355,1097,24519905354627238,24519907402845709],[1355,1098,-1975303106925307,-1975301912779772],[1358,260,1975301912779772,1975303106925307],[1358,264,-1975303106925307,-1975301912779772],[1358,326,1975301912779772,1975303106925307],[1358,330,-1975303106925307,-1975301912779772],[1358,1028,-1975303106925307,-1975301912779772],[1358,1032,1975301912779772,1975303106925307],[1358,1094,-1975303106925307,-1975301912779772],[1358,1098,1975301912779772,1975303106925307],[1409,195,19871405230482798,19871408102400732],[1409,267,-1975303106925307,-1975301912779772],[1409,269,-22544604437459344,-22544603300308524],[1409,323,-28470512964195555,-28470509832687554],[1409,394,1975301912779772,1975303106925307],[1409,396,22544603300308524,22544604437459344],[1409,450,8599101730286822,8599107733712757],[1409,1035,1975301912779772,1975303106925307],[1409,1037,22544603300308524,22544604437459344],[1409,1091,8599101730286822,8599107733712757],[1409,1162,-1975303106925307,-1975301912779772],[1409,1164,-22544604437459344,-22544603300308524],[1409,1218,-28470512964195555,-28470509832687554],[1409,1346,19871405230482798,19871408102400732],[1410,0,33237389706261878,33237395651043384],[1410,72,20569298579708561,20569304138354223],[1410,130,-12549714284822493,-12549705218587237],[1410,195,-19871408102400732,-19871405230482798],[1410,202,-75535024782678860,-75535018509445078],[1410,258,22544599251748898,22544608486018976],[1410,267,1975301912779772,1975303106925307],[1410,270,22544603300308524,22544604437459344],[1410,323,28470509832687554,28470512964195555],[1410,330,43113900199647331,43113910256183319],[1410,384,23242490579994047,23242506542953071],[1410,393,-1975303106925307,-1975301912779772],[1410,396,-22544604437459344,-22544603300308524],[1410,449,-8599107733712757,-8599101730286822],[1410,456,52990412240818188,52990423313537884],[1410,520,-13247605066170506,-13247603822418509],[1410,576,-39742815056676876,-39742811609090167],[1410,650,-13247605066170506,-13247603822418509],[1410,706,11272298146528817,11272305722355110],[1410,960,-51015117331445277,-51015113203205693],[1410,1026,23242490579994047,23242506542953071],[1410,1035,-1975303106925307,-1975301912779772],[1410,1038,-22544604437459344,-22544603300308524],[1410,1091,-8599107733712757,-8599101730286822],[1410,1098,52990412240818188,52990423313537884],[1410,1152,22544599251748898,22544608486018976],[1410,1161,1975301912779772,1975303106925307],[1410,1164,22544603300308524,22544604437459344],[1410,1217,28470509832687554,28470512964195555],[1410,1224,43113900199647331,43113910256183319],[1410,1280,-12549714284822493,-12549705218587237],[1410,1345,-19871408102400732,-19871405230482798],[1410,1352,-75535024782678860,-75535018509445078],[1410,1410,33237389706261878,33237395651043384],[1410,1482,20569298579708561,20569304138354223],[1410,1602,-51015117331445277,-51015113203205693],[1410,1800,-13247605066170506,-13247603822418509],[1410,1856,11272298146528817,11272305722355110],[1410,1930,-13247605066170506,-13247603822418509],[1410,1986,-39742815056676876,-39742811609090167],[1410,2056,13247603822418509,13247605066170506],[1410,2112,-7321700231122540,-7321693598351231],[1410,2186,13247603822418509,13247605066170506],[1410,2242,39742811609090167,39742815056676876],[1410,2370,-47064511840212707,-47064508655028107],[1410,3264,-47064511840212707,-47064508655028107],[1410,3336,13247603822418509,13247605066170506],[1410,3392,39742811609090167,39742815056676876],[1410,3466,13247603822418509,13247605066170506],[1410,3522,-7321700231122540,-7321693598351231],[1410,131338,1975301885638544,1975303134066536],[1410,131464,-1975303134066536,-1975301885638544],[1410,132106,-1975303134066536,-1975301885638544],[1410,132232,1975301885638544,1975303134066536],[1410,524352,47064508673192612,47064511822048211],[1410,524554,-3950606107262344,-3950603932147814],[1410,524610,-3950608753647640,-3950601285762513],[1410,524680,3950603932147814,3950606107262344],[1410,524736,51015113107810724,51015117426840252],[1410,525322,3950603932147814,3950606107262344],[1410,525378,51015113107810724,51015117426840252],[1410,525448,-3950606107262344,-3950603932147814],[1410,525504,-3950608753647640,-3950601285762513],[1410,525762,47064508673192612,47064511822048211],[1410,1048584,13247603826989498,13247605061599516],[1410,1048640,-7321700188581701,-7321693640892082],[1410,1048714,13247603826989498,13247605061599516],[1410,1048770,39742811633466510,39742815032300530],[1410,1048898,-47064511822048211,-47064508673192612],[1410,1049792,-47064511822048211,-47064508673192612],[1410,1049864,13247603826989498,13247605061599516],[1410,1049920,39742811633466510,39742815032300530],[1410,1049994,13247603826989498,13247605061599516],[1410,1050050,-7321700188581701,-7321693640892082],[1412,72,-26495210023626872,-26495207753551168],[1412,204,-19871408102400732,-19871405230482798],[1412,260,1975300984811094,1975304034893986],[1412,269,22544603300308524,22544604437459344],[1412,270,1975301912779772,1975303106925307],[1412,332,-24519907402845709,-24519905354627238],[1412,384,-1975304034893986,-1975300984811094],[1412,393,-22544604437459344,-22544603300308524],[1412,394,-1975303106925307,-1975301912779772],[1412,456,17896102123555768,17896106189622669],[1412,520,-13247605037567427,-13247603851021587],[1412,652,-13247605037567427,-13247603851021587],[1412,1028,-1975304034893986,-1975300984811094],[1412,1037,-22544604437459344,-22544603300308524],[1412,1038,-1975303106925307,-1975301912779772],[1412,1100,17896102123555768,17896106189622669],[1412,1152,1975300984811094,1975304034893986],[1412,1161,22544603300308524,22544604437459344],[1412,1162,1975301912779772,1975303106925307],[1412,1224,-24519907402845709,-24519905354627238],[1412,1352,-19871408102400732,-19871405230482798],[1412,1484,-26495210023626872,-26495207753551168],[1412,1800,-13247605037567427,-13247603851021587],[1412,1932,-13247605037567427,-13247603851021587],[1412,2056,13247603851021587,13247605037567427],[1412,2188,13247603851021587,13247605037567427],[1412,3336,13247603851021587,13247605037567427],[1412,3468,13247603851021587,13247605037567427],[1412,33036,22544603307191776,22544604430576096],[1412,33160,-22544604430576096,-22544603307191776],[1412,33804,-22544604430576096,-22544603307191776],[1412,33928,22544603307191776,22544604430576096],[1412,131340,1975301917236486,1975303102468593],[1412,131464,-1975303102468593,-1975301917236486],[1412,132108,-1975303102468593,-1975301917236486],[1412,132232,1975301917236486,1975303102468593],[1412,524556,-24519907391505747,-24519905365967204],[1412,524680,24519905365967204,24519907391505747],[1412,525324,24519905365967204,24519907391505747],[1412,525448,-24519907391505747,-24519905365967204],[1412,1048584,13247603855385956,13247605033203059],[1412,1048716,13247603855385956,13247605033203059],[1412,1049864,13247603855385956,13247605033203059],[1412,1049996,13247603855385956,13247605033203059],[1416,0,-49039814791924922,-49039810723020980],[1416,66,26495207701858484,26495210075319546],[1416,68,26495207753551168,26495210023626872],[1416,136,-34514803436440870,-34514797555390214],[1416,202,66238017825195074,66238026617750008],[1416,204,19871405230482798,19871408102400732],[1416,264,-270333833954743796,-270333790528810368],[1416,270,-24519907402845709,-24519905354627238],[1416,330,-47064512094016005,-47064508401224809],[1416,332,24519905354627238,24519907402845709],[1416,384,255808774717255568,255808825243183778],[1416,390,24519905354627238,24519907402845709],[1416,450,7321691863722815,7321701965750947],[1416,452,-17896106189622669,-17896102123555768],[1416,514,13247603822418509,13247605066170506],[1416,516,13247603851021587,13247605037567427],[1416,576,-13247605066170506,-13247603822418509],[1416,650,13247603822418509,13247605066170506],[1416,652,13247603851021587,13247605037567427],[1416,712,-15222908173003467,-15222905735290626],[1416,840,-47064511840212707,-47064508655028107],[1416,960,49039810709439166,49039814805506726],[1416,1032,255808774717255568,255808825243183778],[1416,1038,24519905354627238,24519907402845709],[1416,1098,7321691863722815,7321701965750947],[1416,1100,-17896106189622669,-17896102123555768],[1416,1152,-270333833954743796,-270333790528810368],[1416,1158,-24519907402845709,-24519905354627238],[1416,1218,-47064512094016005,-47064508401224809],[1416,1220,24519905354627238,24519907402845709],[1416,1280,-34514803436440870,-34514797555390214],[1416,1346,66238017825195074,66238026617750008],[1416,1348,19871405230482798,19871408102400732],[1416,1416,-49039814791924922,-49039810723020980],[1416,1482,26495207701858484,26495210075319546],[1416,1484,26495207753551168,26495210023626872],[1416,1608,49039810709439166,49039814805506726],[1416,1728,-47064511840212707,-47064508655028107],[1416,1794,13247603822418509,13247605066170506],[1416,1796,13247603851021587,13247605037567427],[1416,1856,-15222908173003467,-15222905735290626],[1416,1930,13247603822418509,13247605066170506],[1416,1932,13247603851021587,13247605037567427],[1416,1992,-13247605066170506,-13247603822418509],[1416,2050,-13247605066170506,-13247603822418509],[1416,2052,-13247605037567427,-13247603851021587],[1416,2112,11272300718113942,11272303150769995],[1416,2186,-13247605066170506,-13247603822418509],[1416,2188,-13247605037567427,-13247603851021587],[1416,2248,13247603822418509,13247605066170506],[1416,2376,49039810709439166,49039814805506726],[1416,2496,-51015117331445277,-51015113203205693],[1416,2824,22544602288119128,22544605449648746],[1416,2944,-22544605449648746,-22544602288119128],[1416,3144,-51015117331445277,-51015113203205693],[1416,3264,49039810709439166,49039814805506726],[1416,3330,-13247605066170506,-13247603822418509],[1416,3332,-13247605037567427,-13247603851021587],[1416,3392,13247603822418509,13247605066170506],[1416,3466,-13247605066170506,-13247603822418509],[1416,3468,-13247605037567427,-13247603851021587],[1416,3528,11272300718113942,11272303150769995],[1416,3592,-22544605449648746,-22544602288119128],[1416,3712,22544602288119128,22544605449648746],[1416,131136,26495207710771912,26495210066406118],[1416,131272,37767509188400696,37767512457661269],[1416,131338,-3950606107262344,-3950603932147814],[1416,131340,-24519907391505747,-24519905365967204],[1416,131400,3950603932147814,3950606107262344],[1416,131458,3950603932147814,3950606107262344],[1416,131460,24519905365967204,24519907391505747],[1416,131520,-15222909102306755,-15222904805987338],[1416,131584,13247603826875223,13247605061713792],[1416,131720,13247603826875223,13247605061713792],[1416,132106,3950603932147814,3950606107262344],[1416,132108,24519905365967204,24519907391505747],[1416,132168,-15222909102306755,-15222904805987338],[1416,132226,-3950606107262344,-3950603932147814],[1416,132228,-24519907391505747,-24519905365967204],[1416,132288,3950603932147814,3950606107262344],[1416,132416,37767509188400696,37767512457661269],[1416,132552,26495207710771912,26495210066406118],[1416,132864,13247603826875223,13247605061713792],[1416,133000,13247603826875223,13247605061713792],[1416,133120,-13247605061713792,-13247603826875223],[1416,133256,-13247605061713792,-13247603826875223],[1416,134400,-13247605061713792,-13247603826875223],[1416,134536,-13247605061713792,-13247603826875223],[1416,524352,-24519907696178166,-24519905061294785],[1416,524488,-31143710097470678,-31143707104296780],[1416,524554,3950603932147814,3950606107262344],[1416,524556,24519905365967204,24519907391505747],[1416,524616,-3950606982859932,-3950603056550226],[1416,524674,-3950606107262344,-3950603932147814],[1416,524676,-24519907391505747,-24519905365967204],[1416,524736,10574405092145006,10574409391559659],[1416,524800,-13247605061713792,-13247603826875223],[1416,524936,-13247605061713792,-13247603826875223],[1416,525322,-3950606107262344,-3950603932147814],[1416,525324,-24519907391505747,-24519905365967204],[1416,525384,10574405092145006,10574409391559659],[1416,525442,3950603932147814,3950606107262344],[1416,525444,24519905365967204,24519907391505747],[1416,525504,-3950606982859932,-3950603056550226],[1416,525632,-31143710097470678,-31143707104296780],[1416,525768,-24519907696178166,-24519905061294785],[1416,526080,-13247605061713792,-13247603826875223],[1416,526216,-13247605061713792,-13247603826875223],[1416,526336,13247603826875223,13247605061713792],[1416,526472,13247603826875223,13247605061713792],[1416,527616,13247603826875223,13247605061713792],[1416,527752,13247603826875223,13247605061713792],[1416,655624,-18594000573832936,-18593997124524774],[1416,655744,18593997124524774,18594000573832936],[1416,656392,18593997124524774,18594000573832936],[1416,656512,-18594000573832936,-18593997124524774],[1416,1048578,-13247605061599516,-13247603826989498],[1416,1048580,-13247605033203059,-13247603855385956],[1416,1048640,11272300724520905,11272303144363030],[1416,1048714,-13247605061599516,-13247603826989498],[1416,1048716,-13247605033203059,-13247603855385956],[1416,1048776,13247603826989498,13247605061599516],[1416,1048904,49039810731968040,49039814782977862],[1416,1049024,-51015117307080439,-51015113227570542],[1416,1049352,24519905292829457,24519907464643494],[1416,1049472,-24519907464643494,-24519905292829457],[1416,1049672,-51015117307080439,-51015113227570542],[1416,1049792,49039810731968040,49039814782977862],[1416,1049858,-13247605061599516,-13247603826989498],[1416,1049860,-13247605033203059,-13247603855385956],[1416,1049920,13247603826989498,13247605061599516],[1416,1049994,-13247605061599516,-13247603826989498],[1416,1049996,-13247605033203059,-13247603855385956],[1416,1050056,11272300724520905,11272303144363030],[1416,1050120,-24519907464643494,-24519905292829457],[1416,1050240,24519905292829457,24519907464643494],[1416,1050888,-24519907464643494,-24519905292829457],[1416,1051008,24519905292829457,24519907464643494],[1416,1051656,24519905292829457,24519907464643494],[1416,1051776,-24519907464643494,-24519905292829457],[1416,1179648,-13247605076872486,-13247603811716528],[1416,1179784,-13247605076872486,-13247603811716528],[1416,1180928,-13247605076872486,-13247603811716528],[1416,1181064,-13247605076872486,-13247603811716528],[1416,1572864,13247603811716528,13247605076872486],[1416,1573000,13247603811716528,13247605076872486],[1416,1574144,13247603811716528,13247605076872486],[1416,1574280,13247603811716528,13247605076872486],[1419,257,-1975303106925307,-1975301912779772],[1419,258,1975301912779772,1975303106925307],[1419,393,-1975303106925307,-1975301912779772],[1419,394,1975301912779772,1975303106925307],[1419,1025,1975301912779772,1975303106925307],[1419,1026,-1975303106925307,-1975301912779772],[1419,1161,1975301912779772,1975303106925307],[1419,1162,-1975303106925307,-1975301912779772],[1421,257,-22544604437459344,-22544603300308524],[1421,260,22544603300308524,22544604437459344],[1421,393,-22544604437459344,-22544603300308524],[1421,396,22544603300308524,22544604437459344],[1421,1025,22544603300308524,22544604437459344],[1421,1028,-22544604437459344,-22544603300308524],[1421,1161,22544603300308524,22544604437459344],[1421,1164,-22544604437459344,-22544603300308524],[1422,258,22544603300308524,22544604437459344],[1422,260,1975301912779772,1975303106925307],[1422,264,-24519907402845709,-24519905354627238],[1422,390,24519905354627238,24519907402845709],[1422,394,-1975303106925307,-1975301912779772],[1422,396,-22544604437459344,-22544603300308524],[1422,1026,-22544604437459344,-22544603300308524],[1422,1028,-1975303106925307,-1975301912779772],[1422,1032,24519905354627238,24519907402845709],[1422,1158,-24519907402845709,-24519905354627238],[1422,1162,1975301912779772,1975303106925307],[1422,1164,22544603300308524,22544604437459344],[1472,10,-45089208874918688,-45089206600617048],[1472,330,-4260574858,4260574864],[1472,394,-45089210861191912,-45089204614343830],[1472,514,26495207635873864,26495210141304164],[1472,520,18593996459312884,18594001239044824],[1472,706,-26495212221509964,-26495205555668056],[1472,712,-26495210141304164,-26495207635873864],[1472,840,45089206600617048,45089208874918688],[1472,898,52990415696972220,52990419857383828],[1472,1098,-45089210861191912,-45089204614343830],[1472,1162,-4260574858,4260574864],[1472,1482,-45089208874918688,-45089206600617048],[1472,1602,52990415696972220,52990419857383828],[1472,1672,45089206600617048,45089208874918688],[1472,1794,-26495212221509964,-26495205555668056],[1472,1800,-26495210141304164,-26495207635873864],[1472,1986,26495207635873864,26495210141304164],[1472,1992,18593996459312884,18594001239044824],[1472,2050,18593996459312884,18594001239044824],[1472,2056,26495207635873864,26495210141304164],[1472,2242,-26495210141304164,-26495207635873864],[1472,2248,-26495212221509964,-26495205555668056],[1472,2370,45089206600617048,45089208874918688],[1472,2440,52990415696972220,52990419857383828],[1472,3144,52990415696972220,52990419857383828],[1472,3202,45089206600617048,45089208874918688],[1472,3330,-26495210141304164,-26495207635873864],[1472,3336,-26495212221509964,-26495205555668056],[1472,3522,18593996459312884,18594001239044824],[1472,3528,26495207635873864,26495210141304164],[1472,524290,-45089208861152192,-45089206614383552],[1472,524488,52990415723206676,52990419831149384],[1472,524610,3950601743215454,3950608296194700],[1472,524616,-49039814910578252,-49039810604367646],[1472,524674,-49039814910578252,-49039810604367646],[1472,524680,-3950609226781738,-3950600812628424],[1472,525378,-49039814910578252,-49039810604367646],[1472,525384,-3950609226781738,-3950600812628424],[1472,525442,3950601743215454,3950608296194700],[1472,525448,-49039814910578252,-49039810604367646],[1472,525576,52990415723206676,52990419831149384],[1472,525762,-45089208861152192,-45089206614383552],[1472,1048578,18593996492884744,18594001205472974],[1472,1048584,26495207655679218,26495210121498808],[1472,1048770,-26495210121498808,-26495207655679218],[1472,1048776,-26495212175470166,-26495205601707868],[1472,1048898,45089206614383552,45089208861152192],[1472,1048968,52990415723206676,52990419831149384],[1472,1049672,52990415723206676,52990419831149384],[1472,1049730,45089206614383552,45089208861152192],[1472,1049858,-26495210121498808,-26495207655679218],[1472,1049864,-26495212175470166,-26495205601707868],[1472,1050050,18593996492884744,18594001205472974],[1472,1050056,26495207655679218,26495210121498808],[1475,129,26495207753551168,26495210023626872],[1475,130,-26495210023626872,-26495207753551168],[1475,257,-3950606208579430,-3950603830830732],[1475,258,3950603830830732,3950606208579430],[1475,449,22544601544971738,22544606192796140],[1475,450,-22544606192796140,-22544601544971738],[1475,1025,-22544606192796140,-22544601544971738],[1475,1026,22544601544971738,22544606192796140],[1475,1217,3950603830830732,3950606208579430],[1475,1218,-3950606208579430,-3950603830830732],[1475,1345,-26495210023626872,-26495207753551168],[1475,1346,26495207753551168,26495210023626872],[1482,10,-45089208874918688,-45089206600617048],[1482,66,26495207701858484,26495210075319546],[1482,72,20569298579708561,20569304138354223],[1482,130,20569298579708561,20569304138354223],[1482,136,26495207701858484,26495210075319546],[1482,192,-58336815178304206,-58336809185820542],[1482,202,-9297000684250004,-9296998164928852],[1482,258,67633806676178144,67633816537125456],[1482,264,-69609119643958417,-69609108589050261],[1482,320,-3950606264617852,-3950603774792306],[1482,330,-3950606264617852,-3950603774792306],[1482,384,15222904008319537,15222909899974555],[1482,394,15222904008319537,15222909899974555],[1482,450,67633806676178144,67633816537125456],[1482,456,-69609119643958417,-69609108589050261],[1482,1026,-69609119643958417,-69609108589050261],[1482,1032,67633806676178144,67633816537125456],[1482,1088,15222904008319537,15222909899974555],[1482,1098,15222904008319537,15222909899974555],[1482,1152,-3950606264617852,-3950603774792306],[1482,1162,-3950606264617852,-3950603774792306],[1482,1218,-69609119643958417,-69609108589050261],[1482,1224,67633806676178144,67633816537125456],[1482,1280,-9297000684250004,-9296998164928852],[1482,1290,-58336815178304206,-58336809185820542],[1482,1346,26495207701858484,26495210075319546],[1482,1352,20569298579708561,20569304138354223],[1482,1410,20569298579708561,20569304138354223],[1482,1416,26495207701858484,26495210075319546],[1482,1472,-45089208874918688,-45089206600617048],[1484,68,26495207753551168,26495210023626872],[1484,72,-26495210023626872,-26495207753551168],[1484,260,-22544606192796140,-22544601544971738],[1484,264,22544601544971738,22544606192796140],[1484,452,3950603830830732,3950606208579430],[1484,456,-3950606208579430,-3950603830830732],[1484,1028,-3950606208579430,-3950603830830732],[1484,1032,3950603830830732,3950606208579430],[1484,1220,22544601544971738,22544606192796140],[1484,1224,-22544606192796140,-22544601544971738],[1484,1412,-26495210023626872,-26495207753551168],[1484,1416,26495207753551168,26495210023626872],[1536,66,-3950605491232570,-3950604548177586],[1536,258,-26495211840725034,-26495205936452994],[1536,264,13247602731588215,13247606157000801],[1536,450,1975301915400511,1975303104304567],[1536,456,1975301912872117,1975303106832961],[1536,1602,-3950605491232570,-3950604548177586],[1536,1794,-26495211840725034,-26495205936452994],[1536,1800,13247602731588215,13247606157000801],[1536,1986,1975301915400511,1975303104304567],[1536,1992,1975301912872117,1975303106832961],[1536,2056,13247602745554085,13247606143034927],[1536,3592,13247602745554085,13247606143034927],[1601,258,-26495209923507576,-26495207853670452],[1601,323,-26495209923507576,-26495207853670452],[1601,1794,-26495209923507576,-26495207853670452],[1601,1859,-26495209923507576,-26495207853670452],[1602,0,-7901210982465140,-7901209096355172],[1602,66,-3950605491232570,-3950604548177586],[1602,257,26495207853670452,26495209923507576],[1602,264,26495207791089865,26495209986088162],[1602,323,26495207853670452,26495209923507576],[1602,330,26495207791089865,26495209986088162],[1602,384,-24519908070687651,-24519904686785298],[1602,450,-26495209986088162,-26495207791089865],[1602,514,-1975305321237090,-1975299698467991],[1602,576,-1975305323765481,-1975299695939594],[1602,898,52990415696972220,52990419857383828],[1602,960,-51015117331445277,-51015113203205693],[1602,1026,-1975305323765481,-1975299695939594],[1602,1088,-1975305321237090,-1975299698467991],[1602,1410,-51015117331445277,-51015113203205693],[1602,1472,52990415696972220,52990419857383828],[1602,1536,-3950605491232570,-3950604548177586],[1602,1602,-7901210982465140,-7901209096355172],[1602,1793,26495207853670452,26495209923507576],[1602,1800,26495207791089865,26495209986088162],[1602,1859,26495207853670452,26495209923507576],[1602,1866,26495207791089865,26495209986088162],[1602,1920,-26495209986088162,-26495207791089865],[1602,1986,-24519908070687651,-24519904686785298],[1602,2818,-2216932520,2216932523],[1602,2880,-2216932523,2216932520],[1602,3330,-2216932523,2216932520],[1602,3392,-2216932520,2216932523],[1602,1049346,26495207798821558,26495209978356470],[1602,1049408,-26495209978356470,-26495207798821558],[1602,1049858,-26495209978356470,-26495207798821558],[1602,1049920,26495207798821558,26495209978356470],[1602,16777986,-26495209923507576,-26495207853670452],[1602,16778048,26495207853670452,26495209923507576],[1602,16778498,26495207853670452,26495209923507576],[1602,16778560,-26495209923507576,-26495207853670452],[1608,258,-26495209986088162,-26495207791089865],[1608,330,-26495209986088162,-26495207791089865],[1608,384,-3950609262610422,-3950600776799744],[1608,456,-52990419972049588,-52990415582306470],[1608,960,49039810709439166,49039814805506726],[1608,1416,49039810709439166,49039814805506726],[1608,1794,-26495209986088162,-26495207791089865],[1608,1866,-26495209986088162,-26495207791089865],[1608,1920,-52990419972049588,-52990415582306470],[1608,1992,-3950609262610422,-3950600776799744],[1608,2176,-26495209986088162,-26495207791089865],[1608,2248,-26495209986088162,-26495207791089865],[1608,3712,-26495209986088162,-26495207791089865],[1608,3784,-26495209986088162,-26495207791089865],[1666,264,13247603822418509,13247605066170506],[1666,320,66238019701775620,66238024741169450],[1666,394,13247603822418509,13247605066170506],[1666,450,17198204896268894,17198214031730284],[1666,960,49039810709439166,49039814805506726],[1666,1346,49039810709439166,49039814805506726],[1666,1800,13247603822418509,13247605066170506],[1666,1856,17198204896268894,17198214031730284],[1666,1930,13247603822418509,13247605066170506],[1666,1986,66238019701775620,66238024741169450],[1666,2056,13247603817873562,13247605070715450],[1666,2112,13247603822418509,13247605066170506],[1666,2186,13247603817873562,13247605070715450],[1666,2242,13247603822418509,13247605066170506],[1666,3592,13247603817873562,13247605070715450],[1666,3648,13247603822418509,13247605066170506],[1666,3722,13247603817873562,13247605070715450],[1666,3778,13247603822418509,13247605066170506],[1668,264,13247603851021587,13247605037567427],[1668,396,13247603851021587,13247605037567427],[1668,1800,13247603851021587,13247605037567427],[1668,1932,13247603851021587,13247605037567427],[1668,2056,13247603851851071,13247605036737943],[1668,2188,13247603851851071,13247605036737943],[1668,3592,13247603851851071,13247605036737943],[1668,3724,13247603851851071,13247605036737943],[1672,258,-13247605066170506,-13247603822418509],[1672,260,-13247605037567427,-13247603851021587],[1672,320,13247603822418509,13247605066170506],[1672,394,-13247605066170506,-13247603822418509],[1672,396,-13247605037567427,-13247603851021587],[1672,456,15222905735290626,15222908173003467],[1672,520,3950601803153038,3950608236257121],[1672,640,-3950608236257121,-3950601803153038],[1672,840,45089206600617048,45089208874918688],[1672,960,-47064511840212707,-47064508655028107],[1672,1032,-3950608236257121,-3950601803153038],[1672,1152,3950601803153038,3950608236257121],[1672,1352,-47064511840212707,-47064508655028107],[1672,1472,45089206600617048,45089208874918688],[1672,1794,-13247605066170506,-13247603822418509],[1672,1796,-13247605037567427,-13247603851021587],[1672,1856,15222905735290626,15222908173003467],[1672,1930,-13247605066170506,-13247603822418509],[1672,1932,-13247605037567427,-13247603851021587],[1672,1992,13247603822418509,13247605066170506],[1672,2050,-13247605070715450,-13247603817873562],[1672,2052,-13247605036737943,-13247603851851071],[1672,2112,13247603817873562,13247605070715450],[1672,2186,-13247605070715450,-13247603817873562],[1672,2188,-13247605036737943,-13247603851851071],[1672,2248,13247603817873562,13247605070715450],[1672,2824,-3950608236257121,-3950601803153038],[1672,2944,3950601803153038,3950608236257121],[1672,3336,3950601803153038,3950608236257121],[1672,3456,-3950608236257121,-3950601803153038],[1672,3586,-13247605070715450,-13247603817873562],[1672,3588,-13247605036737943,-13247603851851071],[1672,3648,13247603817873562,13247605070715450],[1672,3722,-13247605070715450,-13247603817873562],[1672,3724,-13247605036737943,-13247603851851071],[1672,3784,13247603817873562,13247605070715450],[1672,131328,-13247605061713792,-13247603826875223],[1672,131464,-13247605061713792,-13247603826875223],[1672,132864,-13247605061713792,-13247603826875223],[1672,133000,-13247605061713792,-13247603826875223],[1672,133120,-13247605060886466,-13247603827702546],[1672,133256,-13247605060886466,-13247603827702546],[1672,134656,-13247605060886466,-13247603827702546],[1672,134792,-13247605060886466,-13247603827702546],[1672,524544,13247603826875223,13247605061713792],[1672,524680,13247603826875223,13247605061713792],[1672,526080,13247603826875223,13247605061713792],[1672,526216,13247603826875223,13247605061713792],[1672,526336,13247603827702546,13247605060886466],[1672,526472,13247603827702546,13247605060886466],[1672,527872,13247603827702546,13247605060886466],[1672,528008,13247603827702546,13247605060886466],[1672,1049352,-24519907464643494,-24519905292829457],[1672,1049472,24519905292829457,24519907464643494],[1672,1049864,24519905292829457,24519907464643494],[1672,1049984,-24519907464643494,-24519905292829457],[1672,1051144,-3950606098159314,-3950603941250842],[1672,1051264,3950603941250842,3950606098159314],[1672,1051656,3950603941250842,3950606098159314],[1672,1051776,-3950606098159314,-3950603941250842],[1672,2099720,1975301892192549,1975303127512530],[1672,2099840,-1975303127512530,-1975301892192549],[1672,2100232,-1975303127512530,-1975301892192549],[1672,2100352,1975301892192549,1975303127512530],[1672,16777992,1975301912872117,1975303106832961],[1672,16778112,-1975303106832961,-1975301912872117],[1672,16778504,-1975303106832961,-1975301912872117],[1672,16778624,1975301912872117,1975303106832961],[1672,16779784,1975301915400511,1975303104304567],[1672,16779904,-1975303104304567,-1975301915400511],[1672,16780296,-1975303104304567,-1975301915400511],[1672,16780416,1975301915400511,1975303104304567],[1672,33557000,22544603305492866,22544604432275006],[1672,33557120,-22544604432275006,-22544603305492866],[1672,33557512,-22544604432275006,-22544603305492866],[1672,33557632,22544603305492866,22544604432275006],[1728,258,-39742815056676876,-39742811609090167],[1728,264,-7321700231122540,-7321693598351231],[1728,450,11272298146528817,11272305722355110],[1728,456,39742811609090167,39742815056676876],[1728,840,-47064511840212707,-47064508655028107],[1728,898,-51015117331445277,-51015113203205693],[1728,1346,-51015117331445277,-51015113203205693],[1728,1416,-47064511840212707,-47064508655028107],[1728,1794,11272298146528817,11272305722355110],[1728,1800,39742811609090167,39742815056676876],[1728,1986,-39742815056676876,-39742811609090167],[1728,1992,-7321700231122540,-7321693598351231],[1728,2050,-13247605066170506,-13247603822418509],[1728,2056,13247603822418509,13247605066170506],[1728,2242,-13247605066170506,-13247603822418509],[1728,2248,13247603822418509,13247605066170506],[1728,3586,-13247605066170506,-13247603822418509],[1728,3592,13247603822418509,13247605066170506],[1728,3778,-13247605066170506,-13247603822418509],[1728,3784,13247603822418509,13247605066170506],[1793,323,26495207853670452,26495209923507576],[1793,579,-13247605037567427,-13247603851021587],[1793,834,-13247605036737943,-13247603851851071],[1793,1091,-13247605036737943,-13247603851851071],[1793,1346,-13247605037567427,-13247603851021587],[1793,1602,26495207853670452,26495209923507576],[1794,0,7901209096355172,7901210982465140],[1794,192,-1975303104304567,-1975301915400511],[1794,258,-26495211840725034,-26495205936452994],[1794,323,-26495209923507576,-26495207853670452],[1794,330,-26495209986088162,-26495207791089865],[1794,394,-13247605066170506,-13247603822418509],[1794,450,11272298146528817,11272305722355110],[1794,514,17198207753821687,17198211174177485],[1794,579,13247603851021587,13247605037567427],[1794,586,13247603822418509,13247605066170506],[1794,650,13247603822418509,13247605066170506],[1794,706,-26495212221509964,-26495205555668056],[1794,768,17198207762730769,17198211165268399],[1794,833,13247603851851071,13247605036737943],[1794,840,13247603817873562,13247605070715450],[1794,960,13247603822418509,13247605066170506],[1794,1026,17198207762730769,17198211165268399],[1794,1091,13247603851851071,13247605036737943],[1794,1098,13247603817873562,13247605070715450],[1794,1218,13247603822418509,13247605066170506],[1794,1280,17198207753821687,17198211174177485],[1794,1345,13247603851021587,13247605037567427],[1794,1352,13247603822418509,13247605066170506],[1794,1416,13247603822418509,13247605066170506],[1794,1472,-26495212221509964,-26495205555668056],[1794,1536,-26495211840725034,-26495205936452994],[1794,1601,-26495209923507576,-26495207853670452],[1794,1608,-26495209986088162,-26495207791089865],[1794,1672,-13247605066170506,-13247603822418509],[1794,1728,11272298146528817,11272305722355110],[1794,1794,7901209096355172,7901210982465140],[1794,1986,-1975303104304567,-1975301915400511],[1794,2112,-49039815252370900,-49039810262574998],[1794,2370,3950601803153038,3950608236257121],[1794,2626,-26495210008022388,-26495207769155642],[1794,2880,-26495209986088162,-26495207791089865],[1794,3138,-26495209986088162,-26495207791089865],[1794,3392,-26495210008022388,-26495207769155642],[1794,3648,3950601803153038,3950608236257121],[1794,3906,-49039815252370900,-49039810262574998],[1794,1048640,-1975303127512529,-1975301892192548],[1794,1048898,24519905292829457,24519907464643494],[1794,1049154,-26495209978356470,-26495207798821558],[1794,1049920,-26495209978356470,-26495207798821558],[1794,1050176,24519905292829457,24519907464643494],[1794,1050434,-1975303127512529,-1975301892192548],[1794,16777280,-1975303106832961,-1975301912872117],[1794,16777538,24519905362432319,24519907395040631],[1794,16778048,-26495209923507576,-26495207853670452],[1794,16778306,-26495209923507576,-26495207853670452],[1794,16778816,24519905362432319,24519907395040631],[1794,16779074,-1975303106832961,-1975301912872117],[1796,396,-13247605037567427,-13247603851021587],[1796,652,13247603851021587,13247605037567427],[1796,1416,13247603851021587,13247605037567427],[1796,1672,-13247605037567427,-13247603851021587],[1800,192,-1975303106832961,-1975301912872117],[1800,264,13247602731588215,13247606157000801],[1800,330,26495207791089865,26495209986088162],[1800,394,13247603822418509,13247605066170506],[1800,396,13247603851021587,13247605037567427],[1800,456,39742811609090167,39742815056676876],[1800,520,-13247606157000801,-13247602731588215],[1800,586,-13247605066170506,-13247603822418509],[1800,650,-13247605066170506,-13247603822418509],[1800,652,-13247605037567427,-13247603851021587],[1800,712,-26495210141304164,-26495207635873864],[1800,834,-13247605070715450,-13247603817873562],[1800,960,-15222908173003467,-15222905735290626],[1800,1098,-13247605070715450,-13247603817873562],[1800,1224,-15222908173003467,-15222905735290626],[1800,1280,-13247606157000801,-13247602731588215],[1800,1346,-13247605066170506,-13247603822418509],[1800,1410,-13247605066170506,-13247603822418509],[1800,1412,-13247605037567427,-13247603851021587],[1800,1472,-26495210141304164,-26495207635873864],[1800,1536,13247602731588215,13247606157000801],[1800,1602,26495207791089865,26495209986088162],[1800,1666,13247603822418509,13247605066170506],[1800,1668,13247603851021587,13247605037567427],[1800,1728,39742811609090167,39742815056676876],[1800,1992,-1975303106832961,-1975301912872117],[1800,2176,45089206499321174,45089208976214568],[1800,2440,-2216932523,2216932520],[1800,2696,26495207769155642,26495210008022388],[1800,2944,18593997213391625,18594000484966090],[1800,3208,18593997213391625,18594000484966090],[1800,3456,26495207769155642,26495210008022388],[1800,3712,-2216932523,2216932520],[1800,3976,45089206499321174,45089208976214568],[1800,131464,13247603826875223,13247605061713792],[1800,131720,-13247605061713792,-13247603826875223],[1800,132480,-13247605061713792,-13247603826875223],[1800,132736,13247603826875223,13247605061713792],[1800,524680,13247603821511848,13247605067077166],[1800,524936,-13247605067077166,-13247603821511848],[1800,525696,-13247605067077166,-13247603821511848],[1800,525952,13247603821511848,13247605067077166],[1800,1048968,-26495209977993164,-26495207799184865],[1800,1049224,26495207799184865,26495209977993164],[1800,1049984,26495207799184865,26495209977993164],[1800,1050240,-26495209977993164,-26495207799184865],[1800,16777344,1975301912872117,1975303106832961],[1800,16778112,1975301912872117,1975303106832961],[1800,16778376,1975301912872117,1975303106832961],[1800,16779144,1975301912872117,1975303106832961],[1856,130,1975301915400511,1975303104304567],[1856,450,17198204896268894,17198214031730284],[1856,456,15222905735290626,15222908173003467],[1856,706,11272298146528817,11272305722355110],[1856,712,-15222908173003467,-15222905735290626],[1856,898,-26495209986088162,-26495207791089865],[1856,1218,-26495209986088162,-26495207791089865],[1856,1410,11272298146528817,11272305722355110],[1856,1416,-15222908173003467,-15222905735290626],[1856,1666,17198204896268894,17198214031730284],[1856,1672,15222905735290626,15222908173003467],[1856,1986,1975301915400511,1975303104304567],[1856,2050,49039810262574998,49039815252370900],[1856,2370,-3950608236257121,-3950601803153038],[1856,2626,26495207769155642,26495210008022388],[1856,2818,26495207791089865,26495209986088162],[1856,3138,26495207791089865,26495209986088162],[1856,3330,26495207769155642,26495210008022388],[1856,3586,-3950608236257121,-3950601803153038],[1856,3906,49039810262574998,49039815252370900],[1856,1048578,1975301892192548,1975303127512529],[1856,1048898,-24519907464643494,-24519905292829457],[1856,1049154,26495207798821558,26495209978356470],[1856,1049858,26495207798821558,26495209978356470],[1856,1050114,-24519907464643494,-24519905292829457],[1856,1050434,1975301892192548,1975303127512529],[1856,16777218,1975301912872117,1975303106832961],[1856,16777538,-24519907395040631,-24519905362432319],[1856,16777986,26495207853670452,26495209923507576],[1856,16778306,26495207853670452,26495209923507576],[1856,16778754,-24519907395040631,-24519905362432319],[1856,16779074,1975301912872117,1975303106832961],[1859,257,26495207853670452,26495209923507576],[1859,258,-26495209923507576,-26495207853670452],[1859,513,-13247605037567427,-13247603851021587],[1859,514,13247603851021587,13247605037567427],[1859,833,13247603851851071,13247605036737943],[1859,834,-13247605036737943,-13247603851851071],[1859,1025,-13247605036737943,-13247603851851071],[1859,1026,13247603851851071,13247605036737943],[1859,1345,13247603851021587,13247605037567427],[1859,1346,-13247605037567427,-13247603851021587],[1859,1601,-26495209923507576,-26495207853670452],[1859,1602,26495207853670452,26495209923507576],[1866,258,-26495209986088162,-26495207791089865],[1866,264,26495207791089865,26495209986088162],[1866,514,13247603822418509,13247605066170506],[1866,520,-13247605066170506,-13247603822418509],[1866,834,-13247605070715450,-13247603817873562],[1866,840,13247603817873562,13247605070715450],[1866,1026,13247603817873562,13247605070715450],[1866,1032,-13247605070715450,-13247603817873562],[1866,1346,-13247605066170506,-13247603822418509],[1866,1352,13247603822418509,13247605066170506],[1866,1602,26495207791089865,26495209986088162],[1866,1608,-26495209986088162,-26495207791089865],[1920,72,1975301912872117,1975303106832961],[1920,450,-26495209986088162,-26495207791089865],[1920,456,-52990419972049588,-52990415582306470],[1920,706,13247603822418509,13247605066170506],[1920,712,39742811609090167,39742815056676876],[1920,834,13247603817873562,13247605070715450],[1920,840,15222905735290626,15222908173003467],[1920,1218,13247603817873562,13247605070715450],[1920,1224,15222905735290626,15222908173003467],[1920,1346,13247603822418509,13247605066170506],[1920,1352,39742811609090167,39742815056676876],[1920,1602,-26495209986088162,-26495207791089865],[1920,1608,-52990419972049588,-52990415582306470],[1920,1992,1975301912872117,1975303106832961],[1920,2056,-45089208976214568,-45089206499321174],[1920,2440,-2216932520,2216932523],[1920,2696,-26495210008022388,-26495207769155642],[1920,2824,-18594000484966090,-18593997213391625],[1920,3208,-18594000484966090,-18593997213391625],[1920,3336,-26495210008022388,-26495207769155642],[1920,3592,-2216932520,2216932523],[1920,3976,-45089208976214568,-45089206499321174],[1920,524680,-26495209977993164,-26495207799184865],[1920,524936,26495207799184865,26495209977993164],[1920,525576,26495207799184865,26495209977993164],[1920,525832,-26495209977993164,-26495207799184865],[1920,1048968,26495207799184865,26495209977993164],[1920,1049224,-26495209977993164,-26495207799184865],[1920,1049864,-26495209977993164,-26495207799184865],[1920,1050120,26495207799184865,26495209977993164],[1920,16777224,-1975303106832961,-1975301912872117],[1920,16777992,-1975303106832961,-1975301912872117],[1920,16778376,-1975303106832961,-1975301912872117],[1920,16779144,-1975303106832961,-1975301912872117],[1930,258,-13247605066170506,-13247603822418509],[1930,264,13247603822418509,13247605066170506],[1930,514,13247603822418509,13247605066170506],[1930,520,-13247605066170506,-13247603822418509],[1930,1410,-13247605066170506,-13247603822418509],[1930,1416,13247603822418509,13247605066170506],[1930,1666,13247603822418509,13247605066170506],[1930,1672,-13247605066170506,-13247603822418509],[1932,260,-13247605037567427,-13247603851021587],[1932,264,13247603851021587,13247605037567427],[1932,516,13247603851021587,13247605037567427],[1932,520,-13247605037567427,-13247603851021587],[1932,1412,-13247605037567427,-13247603851021587],[1932,1416,13247603851021587,13247605037567427],[1932,1668,13247603851021587,13247605037567427],[1932,1672,-13247605037567427,-13247603851021587],[1986,130,1975301915400511,1975303104304567],[1986,192,-1975303104304567,-1975301915400511],[1986,258,-39742815056676876,-39742811609090167],[1986,320,66238019701775620,66238024741169450],[1986,384,-24519908070687651,-24519904686785298],[1986,450,1975301915400511,1975303104304567],[1986,514,26495207635873864,26495210141304164],[1986,576,-39742815056676876,-39742811609090167],[1986,640,11272300718113942,11272303150769995],[1986,706,-1975303104304567,-1975301915400511],[1986,834,13247603817873562,13247605070715450],[1986,898,-24519908070687651,-24519904686785298],[1986,960,11272300718113942,11272303150769995],[1986,1026,11272300718113942,11272303150769995],[1986,1088,-24519908070687651,-24519904686785298],[1986,1152,13247603817873562,13247605070715450],[1986,1280,-1975303104304567,-1975301915400511],[1986,1346,11272300718113942,11272303150769995],[1986,1410,-39742815056676876,-39742811609090167],[1986,1472,26495207635873864,26495210141304164],[1986,1536,1975301915400511,1975303104304567],[1986,1602,-24519908070687651,-24519904686785298],[1986,1666,66238019701775620,66238024741169450],[1986,1728,-39742815056676876,-39742811609090167],[1986,1794,-1975303104304567,-1975301915400511],[1986,1856,1975301915400511,1975303104304567],[1992,72,1975301912872117,1975303106832961],[1992,192,-1975303106832961,-1975301912872117],[1992,264,-7321700231122540,-7321693598351231],[1992,320,13247603822418509,13247605066170506],[1992,384,-3950609262610422,-3950600776799744],[1992,456,1975301912872117,1975303106832961],[1992,520,18593996459312884,18594001239044824],[1992,576,-13247605066170506,-13247603822418509],[1992,640,-7321700231122540,-7321693598351231],[1992,712,-1975303106832961,-1975301912872117],[1992,840,13247603822418509,13247605066170506],[1992,960,-13247605066170506,-13247603822418509],[1992,1032,-13247605066170506,-13247603822418509],[1992,1152,13247603822418509,13247605066170506],[1992,1280,-1975303106832961,-1975301912872117],[1992,1352,-7321700231122540,-7321693598351231],[1992,1416,-13247605066170506,-13247603822418509],[1992,1472,18593996459312884,18594001239044824],[1992,1536,1975301912872117,1975303106832961],[1992,1608,-3950609262610422,-3950600776799744],[1992,1672,13247603822418509,13247605066170506],[1992,1728,-7321700231122540,-7321693598351231],[1992,1800,-1975303106832961,-1975301912872117],[1992,1920,1975301912872117,1975303106832961],[2049,834,13247603851851071,13247605036737943],[2049,1162,-1975303104304567,-1975301915400511],[2049,1164,-22544604432275006,-22544603305492866],[2049,1218,-1975303106832961,-1975301912872117],[2049,1346,13247603851021587,13247605037567427],[2049,2883,13247603851851071,13247605036737943],[2049,3211,-1975303104304567,-1975301915400511],[2049,3213,-22544604432275006,-22544603305492866],[2049,3267,-1975303106832961,-1975301912872117],[2049,3395,13247603851021587,13247605037567427],[2050,136,-13247606143034927,-13247602745554085],[2050,192,-13247606157000801,-13247602731588215],[2050,320,3950601803153038,3950608236257121],[2050,576,1975300387251397,1975304632453679],[2050,768,-13247606143034927,-13247602745554085],[2050,833,-13247605036737943,-13247603851851071],[2050,840,-13247605070715450,-13247603817873562],[2050,960,-13247605066170506,-13247603822418509],[2050,1032,1975300387251397,1975304632453679],[2050,1088,3950600776799744,3950609262610422],[2050,1152,3950601803153038,3950608236257121],[2050,1161,1975301915400511,1975303104304567],[2050,1164,22544603305492866,22544604432275006],[2050,1217,1975301912872117,1975303106832961],[2050,1224,49039810262574998,49039815252370900],[2050,1280,-13247606157000801,-13247602731588215],[2050,1345,-13247605037567427,-13247603851021587],[2050,1352,-13247605066170506,-13247603822418509],[2050,1416,-13247605066170506,-13247603822418509],[2050,1472,18593996459312884,18594001239044824],[2050,1672,-13247605070715450,-13247603817873562],[2050,1728,-13247605066170506,-13247603822418509],[2050,1856,49039810262574998,49039815252370900],[2050,2186,-13247606143034927,-13247602745554085],[2050,2242,-13247606157000801,-13247602731588215],[2050,2370,3950601803153038,3950608236257121],[2050,2626,1975300387251397,1975304632453679],[2050,2818,-13247606143034927,-13247602745554085],[2050,2883,-13247605036737943,-13247603851851071],[2050,2890,-13247605070715450,-13247603817873562],[2050,3010,-13247605066170506,-13247603822418509],[2050,3082,1975300387251397,1975304632453679],[2050,3138,3950600776799744,3950609262610422],[2050,3202,3950601803153038,3950608236257121],[2050,3211,1975301915400511,1975303104304567],[2050,3214,22544603305492866,22544604432275006],[2050,3267,1975301912872117,1975303106832961],[2050,3274,49039810262574998,49039815252370900],[2050,3330,-13247606157000801,-13247602731588215],[2050,3395,-13247605037567427,-13247603851021587],[2050,3402,-13247605066170506,-13247603822418509],[2050,3466,-13247605066170506,-13247603822418509],[2050,3522,18593996459312884,18594001239044824],[2050,3722,-13247605070715450,-13247603817873562],[2050,3778,-13247605066170506,-13247603822418509],[2050,3906,49039810262574998,49039815252370900],[2050,132232,1975301892192549,1975303127512530],[2050,134282,1975301892192549,1975303127512530],[2050,525448,22544603251852693,22544604485915178],[2050,525504,1975301885638543,1975303134066535],[2050,527498,22544603251852693,22544604485915178],[2050,527554,1975301885638543,1975303134066535],[2050,1049736,-13247605061713792,-13247603826875223],[2050,1049792,-13247605067077166,-13247603821511848],[2050,1049920,1975301885638544,1975303134066536],[2050,1051786,-13247605061713792,-13247603826875223],[2050,1051842,-13247605067077166,-13247603821511848],[2050,1051970,1975301885638544,1975303134066536],[2050,2097984,1975301892192548,1975303127512529],[2050,2098312,-13247605060886466,-13247603827702546],[2050,2098368,-13247605061713792,-13247603826875223],[2050,2098496,22544603251852693,22544604485915178],[2050,2100034,1975301892192548,1975303127512529],[2050,2100362,-13247605060886466,-13247603827702546],[2050,2100418,-13247605061713792,-13247603826875223],[2050,2100546,22544603251852693,22544604485915178],[2050,16778048,22544603305492866,22544604432275006],[2050,16780098,22544603305492866,22544604432275006],[2050,33555264,1975301915400511,1975303104304567],[2050,33555592,-13247605036737943,-13247603851851071],[2050,33555648,-13247605037567427,-13247603851021587],[2050,33555776,1975301912872117,1975303106832961],[2050,33557314,1975301915400511,1975303104304567],[2050,33557642,-13247605036737943,-13247603851851071],[2050,33557698,-13247605037567427,-13247603851021587],[2050,33557826,1975301912872117,1975303106832961],[2052,136,-13247606072008906,-13247602816580098],[2052,1032,1975300488006682,1975304531698390],[2052,1152,1975300972654016,1975304047051064],[2052,1161,22544603305492866,22544604432275006],[2052,1162,1975301915400511,1975303104304567],[2052,1224,1975301912872117,1975303106832961],[2052,1416,-13247605037567427,-13247603851021587],[2052,1672,-13247605036737943,-13247603851851071],[2052,2188,-13247606072008906,-13247602816580098],[2052,3084,1975300488006682,1975304531698390],[2052,3204,1975300972654016,1975304047051064],[2052,3213,22544603305492866,22544604432275006],[2052,3214,1975301915400511,1975303104304567],[2052,3276,1975301912872117,1975303106832961],[2052,3468,-13247605037567427,-13247603851021587],[2052,3724,-13247605036737943,-13247603851851071],[2052,33928,22544603305492866,22544604432275006],[2052,35980,22544603305492866,22544604432275006],[2052,132232,1975301915400511,1975303104304567],[2052,134284,1975301915400511,1975303104304567],[2052,525448,1975301912872117,1975303106832961],[2052,527500,1975301912872117,1975303106832961],[2052,1049736,-13247605037567427,-13247603851021587],[2052,1051788,-13247605037567427,-13247603851021587],[2052,2098312,-13247605036737943,-13247603851851071],[2052,2100364,-13247605036737943,-13247603851851071],[2052,33555592,-13247605015388352,-13247603873200664],[2052,33557644,-13247605015388352,-13247603873200664],[2056,0,7901206905988008,7901213172832336],[2056,130,13247602745554085,13247606143034927],[2056,132,13247602816580098,13247606072008906],[2056,192,17198207753821687,17198211174177485],[2056,384,-1975305321237090,-1975299698467991],[2056,640,-1975304632453679,-1975300387251397],[2056,834,13247603817873562,13247605070715450],[2056,960,13247603822418509,13247605066170506],[2056,1026,-1975304632453679,-1975300387251397],[2056,1028,-1975304531698390,-1975300488006682],[2056,1088,-1975305321237090,-1975299698467991],[2056,1152,-227219925291193296,-227219888736530280],[2056,1158,-24519907395040631,-24519905362432319],[2056,1218,-45089208976214568,-45089206499321174],[2056,1220,-1975303106832961,-1975301912872117],[2056,1280,17198207753821687,17198211174177485],[2056,1346,13247603822418509,13247605066170506],[2056,1410,13247603822418509,13247605066170506],[2056,1412,13247603851021587,13247605037567427],[2056,1472,26495207635873864,26495210141304164],[2056,1536,13247602745554085,13247606143034927],[2056,1666,13247603817873562,13247605070715450],[2056,1668,13247603851851071,13247605036737943],[2056,1728,13247603822418509,13247605066170506],[2056,1920,-45089208976214568,-45089206499321174],[2056,2056,7901206905988008,7901213172832336],[2056,2186,13247602745554085,13247606143034927],[2056,2188,13247602816580098,13247606072008906],[2056,2248,17198207753821687,17198211174177485],[2056,2440,-1975305321237090,-1975299698467991],[2056,2696,-1975304632453679,-1975300387251397],[2056,2890,13247603817873562,13247605070715450],[2056,3016,13247603822418509,13247605066170506],[2056,3082,-1975304632453679,-1975300387251397],[2056,3084,-1975304531698390,-1975300488006682],[2056,3144,-1975305321237090,-1975299698467991],[2056,3208,-227219925291193296,-227219888736530280],[2056,3214,-24519907395040631,-24519905362432319],[2056,3274,-45089208976214568,-45089206499321174],[2056,3276,-1975303106832961,-1975301912872117],[2056,3336,17198207753821687,17198211174177485],[2056,3402,13247603822418509,13247605066170506],[2056,3466,13247603822418509,13247605066170506],[2056,3468,13247603851021587,13247605037567427],[2056,3528,26495207635873864,26495210141304164],[2056,3592,13247602745554085,13247606143034927],[2056,3722,13247603817873562,13247605070715450],[2056,3724,13247603851851071,13247605036737943],[2056,3784,13247603822418509,13247605066170506],[2056,3976,-45089208976214568,-45089206499321174],[2056,131200,13247602745554085,13247606143034927],[2056,132096,-1975304632453679,-1975300387251397],[2056,132226,-3950606098159314,-3950603941250842],[2056,132228,-24519907395040631,-24519905362432319],[2056,132288,-22544604485915178,-22544603251852693],[2056,132480,13247603826875223,13247605061713792],[2056,132736,13247603827702546,13247605060886466],[2056,133256,13247602745554085,13247606143034927],[2056,134152,-1975304632453679,-1975300387251397],[2056,134282,-3950606098159314,-3950603941250842],[2056,134284,-24519907395040631,-24519905362432319],[2056,134344,-22544604485915178,-22544603251852693],[2056,134536,13247603826875223,13247605061713792],[2056,134792,13247603827702546,13247605060886466],[2056,524416,17198207753821687,17198211174177485],[2056,525312,-1975305335522788,-1975299684182287],[2056,525442,-22544604485915178,-22544603251852693],[2056,525444,-1975303106832961,-1975301912872117],[2056,525504,-3950605802754426,-3950604236655732],[2056,525696,13247603821511848,13247605067077166],[2056,525952,13247603826875223,13247605061713792],[2056,526472,17198207753821687,17198211174177485],[2056,527368,-1975305335522788,-1975299684182287],[2056,527498,-22544604485915178,-22544603251852693],[2056,527500,-1975303106832961,-1975301912872117],[2056,527560,-3950605802754426,-3950604236655732],[2056,527752,13247603821511848,13247605067077166],[2056,528008,13247603826875223,13247605061713792],[2056,656512,-45089208980598784,-45089206494936958],[2056,658568,-45089208980598784,-45089206494936958],[2056,1048704,-1975305335522788,-1975299684182287],[2056,1049600,17198207753821687,17198211174177485],[2056,1049730,13247603826875223,13247605061713792],[2056,1049732,13247603851021587,13247605037567427],[2056,1049792,13247603821511848,13247605067077166],[2056,1049984,-3950605802754426,-3950604236655732],[2056,1050240,-22544604485915178,-22544603251852693],[2056,1050760,-1975305335522788,-1975299684182287],[2056,1051656,17198207753821687,17198211174177485],[2056,1051786,13247603826875223,13247605061713792],[2056,1051788,13247603851021587,13247605037567427],[2056,1051848,13247603821511848,13247605067077166],[2056,1052040,-3950605802754426,-3950604236655732],[2056,1052296,-22544604485915178,-22544603251852693],[2056,1180800,13247603817961795,13247605070627222],[2056,1182856,13247603817961795,13247605070627222],[2056,1574016,26495207628724032,26495210148454004],[2056,1576072,26495207628724032,26495210148454004],[2056,1704960,13247603817961795,13247605070627222],[2056,1707016,13247603817961795,13247605070627222],[2056,2097280,-1975304632453679,-1975300387251397],[2056,2098176,13247602745554085,13247606143034927],[2056,2098306,13247603827702546,13247605060886466],[2056,2098308,13247603851851071,13247605036737943],[2056,2098368,13247603826875223,13247605061713792],[2056,2098560,-22544604485915178,-22544603251852693],[2056,2098816,-3950606098159314,-3950603941250842],[2056,2099336,-1975304632453679,-1975300387251397],[2056,2100232,13247602745554085,13247606143034927],[2056,2100362,13247603827702546,13247605060886466],[2056,2100364,13247603851851071,13247605036737943],[2056,2100424,13247603826875223,13247605061713792],[2056,2100616,-22544604485915178,-22544603251852693],[2056,2100872,-3950606098159314,-3950603941250842],[2056,2229376,13247603808044578,13247605080544438],[2056,2231432,13247603808044578,13247605080544438],[2056,2622592,13247603817961795,13247605070627222],[2056,2624648,13247603817961795,13247605070627222],[2056,3146880,-45089208980598784,-45089206494936958],[2056,3148936,-45089208980598784,-45089206494936958],[2056,3670144,13247603817961795,13247605070627222],[2056,3672200,13247603817961795,13247605070627222],[2056,3801088,13247603808044578,13247605080544438],[2056,3803144,13247603808044578,13247605080544438],[2056,33554560,-1975304531698390,-1975300488006682],[2056,33555456,13247602816580098,13247606072008906],[2056,33555586,13247603851851071,13247605036737943],[2056,33555588,13247603873200664,13247605015388352],[2056,33555648,13247603851021587,13247605037567427],[2056,33555840,-1975303106832961,-1975301912872117],[2056,33556096,-24519907395040631,-24519905362432319],[2056,33556616,-1975304531698390,-1975300488006682],[2056,33557512,13247602816580098,13247606072008906],[2056,33557642,13247603851851071,13247605036737943],[2056,33557644,13247603873200664,13247605015388352],[2056,33557704,13247603851021587,13247605037567427],[2056,33557896,-1975303106832961,-1975301912872117],[2056,33558152,-24519907395040631,-24519905362432319],[2056,33686656,13247603851851071,13247605036737943],[2056,33688712,13247603851851071,13247605036737943],[2056,34079872,13247603851021587,13247605037567427],[2056,34081928,13247603851021587,13247605037567427],[2056,34604160,-1975303106832961,-1975301912872117],[2056,34606216,-1975303106832961,-1975301912872117],[2056,35652736,-24519907395040631,-24519905362432319],[2056,35654792,-24519907395040631,-24519905362432319],[2059,1161,1975301915400511,1975303104304567],[2059,1162,-1975303104304567,-1975301915400511],[2059,3201,-1975303104304567,-1975301915400511],[2059,3202,1975301915400511,1975303104304567],[2061,1161,22544603305492866,22544604432275006],[2061,1164,-22544604432275006,-22544603305492866],[2061,3201,-22544604432275006,-22544603305492866],[2061,3204,22544603305492866,22544604432275006],[2062,1158,-24519907395040631,-24519905362432319],[2062,1162,1975301915400511,1975303104304567],[2062,1164,22544603305492866,22544604432275006],[2062,3202,22544603305492866,22544604432275006],[2062,3204,1975301915400511,1975303104304567],[2062,3208,-24519907395040631,-24519905362432319],[2112,130,13247602731588215,13247606157000801],[2112,136,17198207762730769,17198211165268399],[2112,258,-3950608236257121,-3950601803153038],[2112,514,-1975304632453679,-1975300387251397],[2112,898,26495207791089865,26495209986088162],[2112,1026,-3950609262610422,-3950600776799744],[2112,1032,-1975305323765481,-1975299695939594],[2112,1162,-3950606276156332,-3950603763253824],[2112,1410,-7321700231122540,-7321693598351231],[2112,1416,11272300718113942,11272303150769995],[2112,1666,13247603822418509,13247605066170506],[2112,1672,13247603817873562,13247605070715450],[2112,1794,-49039815252370900,-49039810262574998],[2112,2242,13247602731588215,13247606157000801],[2112,2248,17198207762730769,17198211165268399],[2112,2370,-3950608236257121,-3950601803153038],[2112,2626,-1975304632453679,-1975300387251397],[2112,3010,26495207791089865,26495209986088162],[2112,3138,-3950609262610422,-3950600776799744],[2112,3144,-1975305323765481,-1975299695939594],[2112,3274,-3950606276156332,-3950603763253824],[2112,3522,-7321700231122540,-7321693598351231],[2112,3528,11272300718113942,11272303150769995],[2112,3778,13247603822418509,13247605066170506],[2112,3784,13247603817873562,13247605070715450],[2112,3906,-49039815252370900,-49039810262574998],[2112,525442,-1975303134066535,-1975301885638543],[2112,525448,-24519907156493900,-24519905600979050],[2112,527554,-1975303134066535,-1975301885638543],[2112,527560,-24519907156493900,-24519905600979050],[2112,1049730,13247603821511848,13247605067077166],[2112,1049736,13247603826875223,13247605061713792],[2112,1049858,-1975303134066536,-1975301885638544],[2112,1051842,13247603821511848,13247605067077166],[2112,1051848,13247603826875223,13247605061713792],[2112,1051970,-1975303134066536,-1975301885638544],[2112,2097922,-1975303127512529,-1975301892192548],[2112,2098306,13247603826875223,13247605061713792],[2112,2098312,13247603827702546,13247605060886466],[2112,2098434,-22544604485915178,-22544603251852693],[2112,2100034,-1975303127512529,-1975301892192548],[2112,2100418,13247603826875223,13247605061713792],[2112,2100424,13247603827702546,13247605060886466],[2112,2100546,-22544604485915178,-22544603251852693],[2112,16777986,-22544604432275006,-22544603305492866],[2112,16780098,-22544604432275006,-22544603305492866],[2112,33555202,-1975303104304567,-1975301915400511],[2112,33555586,13247603851021587,13247605037567427],[2112,33555592,13247603851851071,13247605036737943],[2112,33555714,-1975303106832961,-1975301912872117],[2112,33557314,-1975303104304567,-1975301915400511],[2112,33557698,13247603851021587,13247605037567427],[2112,33557704,13247603851851071,13247605036737943],[2112,33557826,-1975303106832961,-1975301912872117],[2115,833,-13247605036737943,-13247603851851071],[2115,834,13247603851851071,13247605036737943],[2115,1217,1975301912872117,1975303106832961],[2115,1218,-1975303106832961,-1975301912872117],[2115,1345,-13247605037567427,-13247603851021587],[2115,1346,13247603851021587,13247605037567427],[2115,2817,13247603851851071,13247605036737943],[2115,2818,-13247605036737943,-13247603851851071],[2115,3201,-1975303106832961,-1975301912872117],[2115,3202,1975301912872117,1975303106832961],[2115,3329,13247603851021587,13247605037567427],[2115,3330,-13247605037567427,-13247603851021587],[2122,834,13247603817873562,13247605070715450],[2122,840,-13247605070715450,-13247603817873562],[2122,1162,22544602288119128,22544605449648746],[2122,1218,-18594000484966090,-18593997213391625],[2122,1224,-3950608236257121,-3950601803153038],[2122,1346,13247603822418509,13247605066170506],[2122,1352,-13247605066170506,-13247603822418509],[2122,2818,-13247605070715450,-13247603817873562],[2122,2824,13247603817873562,13247605070715450],[2122,3202,-3950608236257121,-3950601803153038],[2122,3208,-18594000484966090,-18593997213391625],[2122,3264,22544602288119128,22544605449648746],[2122,3330,-13247605066170506,-13247603822418509],[2122,3336,13247603822418509,13247605066170506],[2124,1220,24519905362432319,24519907395040631],[2124,1224,-24519907395040631,-24519905362432319],[2124,3204,-24519907395040631,-24519905362432319],[2124,3208,24519905362432319,24519907395040631],[2176,72,-26495211840725034,-26495205936452994],[2176,264,-1975305323765481,-1975299695939594],[2176,520,1975300387251397,1975304632453679],[2176,834,-13247605070715450,-13247603817873562],[2176,840,-13247605066170506,-13247603822418509],[2176,1026,-3950608236257121,-3950601803153038],[2176,1028,-1975304047051064,-1975300972654016],[2176,1032,232566281601026132,232566321236466156],[2176,1346,-13247605066170506,-13247603822418509],[2176,1352,-39742815056676876,-39742811609090167],[2176,1608,-26495209986088162,-26495207791089865],[2176,1800,45089206499321174,45089208976214568],[2176,2248,-26495211840725034,-26495205936452994],[2176,2440,-1975305323765481,-1975299695939594],[2176,2696,1975300387251397,1975304632453679],[2176,3010,-13247605070715450,-13247603817873562],[2176,3016,-13247605066170506,-13247603822418509],[2176,3202,-3950608236257121,-3950601803153038],[2176,3204,-1975304047051064,-1975300972654016],[2176,3208,232566281601026132,232566321236466156],[2176,3522,-13247605066170506,-13247603822418509],[2176,3528,-39742815056676876,-39742811609090167],[2176,3784,-26495209986088162,-26495207791089865],[2176,3976,45089206499321174,45089208976214568],[2176,132096,-3950608254927041,-3950601784483124],[2176,134272,-3950608254927041,-3950601784483124],[2176,524296,-26495211840725034,-26495205936452994],[2176,525384,52990415906156016,52990419648200040],[2176,525576,-26495209977993164,-26495207799184865],[2176,525832,-26495209971802464,-26495207805375563],[2176,526472,-26495211840725034,-26495205936452994],[2176,527560,52990415906156016,52990419648200040],[2176,527752,-26495209977993164,-26495207799184865],[2176,528008,-26495209971802464,-26495207805375563],[2176,1048584,-1975305338051185,-1975299681653896],[2176,1049672,-26495209977993164,-26495207799184865],[2176,1049864,3950604236655732,3950605802754426],[2176,1050120,22544603251852693,22544604485915178],[2176,1050760,-1975305338051185,-1975299681653896],[2176,1051848,-26495209977993164,-26495207799184865],[2176,1052040,3950604236655732,3950605802754426],[2176,1052296,22544603251852693,22544604485915178],[2176,1573896,-39742815068283432,-39742811597483621],[2176,1576072,-39742815068283432,-39742811597483621],[2176,1704960,-13247605070627222,-13247603817961795],[2176,1707136,-13247605070627222,-13247603817961795],[2176,2097160,1975300387251397,1975304632453679],[2176,2098248,-26495209971802464,-26495207805375563],[2176,2098440,22544603251852693,22544604485915178],[2176,2098696,3950603941250842,3950606098159314],[2176,2099336,1975300387251397,1975304632453679],[2176,2100424,-26495209971802464,-26495207805375563],[2176,2100616,22544603251852693,22544604485915178],[2176,2100872,3950603941250842,3950606098159314],[2176,2622472,-26495210000373866,-26495207776804167],[2176,2624648,-26495210000373866,-26495207776804167],[2176,3146760,45089206494936958,45089208980598784],[2176,3148936,45089206494936958,45089208980598784],[2176,3670024,-13247605070627222,-13247603817961795],[2176,3672200,-13247605070627222,-13247603817961795],[2176,3801088,-13247605080544438,-13247603808044578],[2176,3803264,-13247605080544438,-13247603808044578],[2176,33554440,1975300488006682,1975304531698390],[2176,33555528,-26495209923507576,-26495207853670452],[2176,33555720,1975301912872117,1975303106832961],[2176,33555976,24519905362432319,24519907395040631],[2176,33556616,1975300488006682,1975304531698390],[2176,33557704,-26495209923507576,-26495207853670452],[2176,33557896,1975301912872117,1975303106832961],[2176,33558152,24519905362432319,24519907395040631],[2176,34079752,-26495209923507576,-26495207853670452],[2176,34081928,-26495209923507576,-26495207853670452],[2176,34604040,1975301912872117,1975303106832961],[2176,34606216,1975301912872117,1975303106832961],[2176,35652616,24519905362432319,24519907395040631],[2176,35654792,24519905362432319,24519907395040631],[2182,1032,24519905362432319,24519907395040631],[2182,1038,24519905362432319,24519907395040631],[2182,3208,24519905362432319,24519907395040631],[2182,3214,24519905362432319,24519907395040631],[2185,1026,-1975303104304567,-1975301915400511],[2185,1028,-22544604432275006,-22544603305492866],[2185,1035,-1975303104304567,-1975301915400511],[2185,1037,-22544604432275006,-22544603305492866],[2185,3202,-1975303104304567,-1975301915400511],[2185,3204,-22544604432275006,-22544603305492866],[2185,3211,-1975303104304567,-1975301915400511],[2185,3213,-22544604432275006,-22544603305492866],[2186,130,13247602745554085,13247606143034927],[2186,136,-13247606143034927,-13247602745554085],[2186,1025,1975301915400511,1975303104304567],[2186,1028,-1975303104304567,-1975301915400511],[2186,1035,1975301915400511,1975303104304567],[2186,1038,-1975303104304567,-1975301915400511],[2186,1088,3950603763253824,3950606276156332],[2186,1098,-22544605449648746,-22544602288119128],[2186,1218,-2216932520,2216932523],[2186,1224,26495207791089865,26495209986088162],[2186,1410,13247603822418509,13247605066170506],[2186,1416,-13247605066170506,-13247603822418509],[2186,1666,13247603817873562,13247605070715450],[2186,1672,-13247605070715450,-13247603817873562],[2186,2050,-13247606143034927,-13247602745554085],[2186,2056,13247602745554085,13247606143034927],[2186,3138,26495207791089865,26495209986088162],[2186,3144,-2216932520,2216932523],[2186,3201,1975301915400511,1975303104304567],[2186,3204,-1975303104304567,-1975301915400511],[2186,3211,1975301915400511,1975303104304567],[2186,3214,-1975303104304567,-1975301915400511],[2186,3264,-22544605449648746,-22544602288119128],[2186,3274,3950603763253824,3950606276156332],[2186,3330,-13247605066170506,-13247603822418509],[2186,3336,13247603822418509,13247605066170506],[2186,3586,-13247605070715450,-13247603817873562],[2186,3592,13247603817873562,13247605070715450],[2186,132096,-1975303127512529,-1975301892192548],[2186,132106,-1975303127512529,-1975301892192548],[2186,134272,-1975303127512529,-1975301892192548],[2186,134282,-1975303127512529,-1975301892192548],[2186,525442,-26495209971802464,-26495207805375563],[2186,525448,26495207805375563,26495209971802464],[2186,527362,26495207805375563,26495209971802464],[2186,527368,-26495209971802464,-26495207805375563],[2186,1049730,13247603826875223,13247605061713792],[2186,1049736,-13247605061713792,-13247603826875223],[2186,1051650,-13247605061713792,-13247603826875223],[2186,1051656,13247603826875223,13247605061713792],[2186,2098306,13247603827702546,13247605060886466],[2186,2098312,-13247605060886466,-13247603827702546],[2186,2100226,-13247605060886466,-13247603827702546],[2186,2100232,13247603827702546,13247605060886466],[2186,33555586,13247603851851071,13247605036737943],[2186,33555592,-13247605036737943,-13247603851851071],[2186,33557506,-13247605036737943,-13247603851851071],[2186,33557512,13247603851851071,13247605036737943],[2188,132,13247602816580098,13247606072008906],[2188,136,-13247606072008906,-13247602816580098],[2188,1025,22544603305492866,22544604432275006],[2188,1026,-22544604432275006,-22544603305492866],[2188,1037,22544603305492866,22544604432275006],[2188,1038,-22544604432275006,-22544603305492866],[2188,1220,-26495209923507576,-26495207853670452],[2188,1224,26495207853670452,26495209923507576],[2188,1412,13247603851021587,13247605037567427],[2188,1416,-13247605037567427,-13247603851021587],[2188,1668,13247603851851071,13247605036737943],[2188,1672,-13247605036737943,-13247603851851071],[2188,2052,-13247606072008906,-13247602816580098],[2188,2056,13247602816580098,13247606072008906],[2188,3140,26495207853670452,26495209923507576],[2188,3144,-26495209923507576,-26495207853670452],[2188,3201,22544603305492866,22544604432275006],[2188,3202,-22544604432275006,-22544603305492866],[2188,3213,22544603305492866,22544604432275006],[2188,3214,-22544604432275006,-22544603305492866],[2188,3332,-13247605037567427,-13247603851021587],[2188,3336,13247603851021587,13247605037567427],[2188,3588,-13247605036737943,-13247603851851071],[2188,3592,13247603851851071,13247605036737943],[2188,33792,22544603305492866,22544604432275006],[2188,33804,22544603305492866,22544604432275006],[2188,35968,22544603305492866,22544604432275006],[2188,35980,22544603305492866,22544604432275006],[2188,132096,-22544604432275006,-22544603305492866],[2188,132108,-22544604432275006,-22544603305492866],[2188,134272,-22544604432275006,-22544603305492866],[2188,134284,-22544604432275006,-22544603305492866],[2188,525444,-26495209923507576,-26495207853670452],[2188,525448,26495207853670452,26495209923507576],[2188,527364,26495207853670452,26495209923507576],[2188,527368,-26495209923507576,-26495207853670452],[2188,1049732,13247603851021587,13247605037567427],[2188,1049736,-13247605037567427,-13247603851021587],[2188,1051652,-13247605037567427,-13247603851021587],[2188,1051656,13247603851021587,13247605037567427],[2188,2098308,13247603851851071,13247605036737943],[2188,2098312,-13247605036737943,-13247603851851071],[2188,2100228,-13247605036737943,-13247603851851071],[2188,2100232,13247603851851071,13247605036737943],[2188,33555588,13247603873200664,13247605015388352],[2188,33555592,-13247605015388352,-13247603873200664],[2188,33557508,-13247605015388352,-13247603873200664],[2188,33557512,13247603873200664,13247605015388352],[2241,1026,-1975303106832961,-1975301912872117],[2241,1091,-1975303106832961,-1975301912872117],[2241,3202,-1975303106832961,-1975301912872117],[2241,3267,-1975303106832961,-1975301912872117],[2242,130,13247602731588215,13247606157000801],[2242,192,-13247606157000801,-13247602731588215],[2242,834,-13247605070715450,-13247603817873562],[2242,898,26495207791089865,26495209986088162],[2242,960,-13247605066170506,-13247603822418509],[2242,1025,1975301912872117,1975303106832961],[2242,1032,45089206499321174,45089208976214568],[2242,1091,1975301912872117,1975303106832961],[2242,1098,18593997213391625,18594000484966090],[2242,1162,-2216932523,2216932520],[2242,1224,26495207769155642,26495210008022388],[2242,1280,-1975303106832961,-1975301912872117],[2242,1346,-15222908173003467,-15222905735290626],[2242,1410,39742811609090167,39742815056676876],[2242,1472,-26495210141304164,-26495207635873864],[2242,1666,13247603822418509,13247605066170506],[2242,1728,-13247605066170506,-13247603822418509],[2242,2050,-13247606157000801,-13247602731588215],[2242,2112,13247602731588215,13247606157000801],[2242,2818,-13247605066170506,-13247603822418509],[2242,2880,26495207791089865,26495209986088162],[2242,2944,-13247605070715450,-13247603817873562],[2242,3082,26495207769155642,26495210008022388],[2242,3144,-2216932523,2216932520],[2242,3201,1975301912872117,1975303106832961],[2242,3208,18593997213391625,18594000484966090],[2242,3267,1975301912872117,1975303106832961],[2242,3274,45089206499321174,45089208976214568],[2242,3330,-26495210141304164,-26495207635873864],[2242,3392,39742811609090167,39742815056676876],[2242,3456,-15222908173003467,-15222905735290626],[2242,3522,-1975303106832961,-1975301912872117],[2242,3586,-13247605066170506,-13247603822418509],[2242,3648,13247603822418509,13247605066170506],[2242,525442,-26495209977993164,-26495207799184865],[2242,525504,26495207799184865,26495209977993164],[2242,527362,26495207799184865,26495209977993164],[2242,527424,-26495209977993164,-26495207799184865],[2242,1049730,13247603821511848,13247605067077166],[2242,1049792,-13247605067077166,-13247603821511848],[2242,1051650,-13247605067077166,-13247603821511848],[2242,1051712,13247603821511848,13247605067077166],[2242,2098306,13247603826875223,13247605061713792],[2242,2098368,-13247605061713792,-13247603826875223],[2242,2100226,-13247605061713792,-13247603826875223],[2242,2100288,13247603826875223,13247605061713792],[2242,33555586,13247603851021587,13247605037567427],[2242,33555648,-13247605037567427,-13247603851021587],[2242,33557506,-13247605037567427,-13247603851021587],[2242,33557568,13247603851021587,13247605037567427],[2244,1032,1975301912872117,1975303106832961],[2244,1100,-24519907395040631,-24519905362432319],[2244,1164,26495207853670452,26495209923507576],[2244,3144,26495207853670452,26495209923507576],[2244,3208,-24519907395040631,-24519905362432319],[2244,3276,1975301912872117,1975303106832961],[2248,0,7901209096355172,7901210982465140],[2248,72,-26495211840725034,-26495205936452994],[2248,136,17198207762730769,17198211165268399],[2248,192,17198207753821687,17198211174177485],[2248,840,-13247605066170506,-13247603822418509],[2248,960,13247603822418509,13247605066170506],[2248,1026,-49039815252370900,-49039810262574998],[2248,1028,-1975303106832961,-1975301912872117],[2248,1098,3950601803153038,3950608236257121],[2248,1100,24519905362432319,24519907395040631],[2248,1162,-26495209986088162,-26495207791089865],[2248,1164,-26495209923507576,-26495207853670452],[2248,1218,-26495210008022388,-26495207769155642],[2248,1280,-1975303104304567,-1975301915400511],[2248,1352,11272298146528817,11272305722355110],[2248,1416,13247603822418509,13247605066170506],[2248,1472,-26495212221509964,-26495205555668056],[2248,1608,-26495209986088162,-26495207791089865],[2248,1672,13247603817873562,13247605070715450],[2248,1728,13247603822418509,13247605066170506],[2248,2056,17198207753821687,17198211174177485],[2248,2112,17198207762730769,17198211165268399],[2248,2176,-26495211840725034,-26495205936452994],[2248,2248,7901209096355172,7901210982465140],[2248,2824,13247603822418509,13247605066170506],[2248,2944,-13247605066170506,-13247603822418509],[2248,3082,-26495210008022388,-26495207769155642],[2248,3138,-26495209986088162,-26495207791089865],[2248,3140,-26495209923507576,-26495207853670452],[2248,3202,3950601803153038,3950608236257121],[2248,3204,24519905362432319,24519907395040631],[2248,3274,-49039815252370900,-49039810262574998],[2248,3276,-1975303106832961,-1975301912872117],[2248,3336,-26495212221509964,-26495205555668056],[2248,3392,13247603822418509,13247605066170506],[2248,3456,11272298146528817,11272305722355110],[2248,3528,-1975303104304567,-1975301915400511],[2248,3592,13247603822418509,13247605066170506],[2248,3648,13247603817873562,13247605070715450],[2248,3712,-26495209986088162,-26495207791089865],[2248,132096,-22544604485915178,-22544603251852693],[2248,132168,3950603941250842,3950606098159314],[2248,132232,-26495209971802464,-26495207805375563],[2248,134208,-26495209971802464,-26495207805375563],[2248,134272,3950603941250842,3950606098159314],[2248,134344,-22544604485915178,-22544603251852693],[2248,525312,24519905600979049,24519907156493899],[2248,525384,24519905292829456,24519907464643493],[2248,525448,-923386045,923386045],[2248,525504,-929670022,929670021],[2248,527368,-929670022,929670021],[2248,527424,-923386045,923386045],[2248,527488,24519905292829456,24519907464643493],[2248,527560,24519905600979049,24519907156493899],[2248,1049672,-26495209977993164,-26495207799184865],[2248,1049736,13247603826875223,13247605061713792],[2248,1049792,13247603821511848,13247605067077166],[2248,1051656,13247603821511848,13247605067077166],[2248,1051712,13247603826875223,13247605061713792],[2248,1051776,-26495209977993164,-26495207799184865],[2248,2098248,-26495209971802464,-26495207805375563],[2248,2098312,13247603827702546,13247605060886466],[2248,2098368,13247603826875223,13247605061713792],[2248,2100232,13247603826875223,13247605061713792],[2248,2100288,13247603827702546,13247605060886466],[2248,2100352,-26495209971802464,-26495207805375563],[2248,33555528,-26495209923507576,-26495207853670452],[2248,33555592,13247603851851071,13247605036737943],[2248,33555648,13247603851021587,13247605037567427],[2248,33557512,13247603851021587,13247605037567427],[2248,33557568,13247603851851071,13247605036737943],[2248,33557632,-26495209923507576,-26495207853670452],[2304,136,-3950605491232570,-3950604548177586],[2304,514,13247602745554085,13247606143034927],[2304,1026,13247602731588215,13247606157000801],[2304,1032,-26495211840725034,-26495205936452994],[2304,1218,1975301912872117,1975303106832961],[2304,1224,1975301915400511,1975303104304567],[2304,2440,-3950605491232570,-3950604548177586],[2304,2818,13247602745554085,13247606143034927],[2304,3330,13247602731588215,13247606157000801],[2304,3336,-26495211840725034,-26495205936452994],[2304,3522,1975301912872117,1975303106832961],[2304,3528,1975301915400511,1975303104304567],[2369,514,13247603851851071,13247605036737943],[2369,579,13247603851851071,13247605036737943],[2369,1026,13247603851021587,13247605037567427],[2369,1091,13247603851021587,13247605037567427],[2369,2818,13247603851851071,13247605036737943],[2369,2883,13247603851851071,13247605036737943],[2369,3330,13247603851021587,13247605037567427],[2369,3395,13247603851021587,13247605037567427],[2370,258,-3950608236257121,-3950601803153038],[2370,320,3950601803153038,3950608236257121],[2370,513,-13247605036737943,-13247603851851071],[2370,520,-13247605070715450,-13247603817873562],[2370,579,-13247605036737943,-13247603851851071],[2370,586,-13247605070715450,-13247603817873562],[2370,640,13247603817873562,13247605070715450],[2370,706,13247603817873562,13247605070715450],[2370,1025,-13247605037567427,-13247603851021587],[2370,1032,-13247605066170506,-13247603822418509],[2370,1091,-13247605037567427,-13247603851021587],[2370,1098,-13247605066170506,-13247603822418509],[2370,1152,13247603822418509,13247605066170506],[2370,1218,15222905735290626,15222908173003467],[2370,1410,-47064511840212707,-47064508655028107],[2370,1472,45089206600617048,45089208874918688],[2370,1794,3950601803153038,3950608236257121],[2370,1856,-3950608236257121,-3950601803153038],[2370,2050,3950601803153038,3950608236257121],[2370,2112,-3950608236257121,-3950601803153038],[2370,2817,-13247605036737943,-13247603851851071],[2370,2824,-13247605070715450,-13247603817873562],[2370,2883,-13247605036737943,-13247603851851071],[2370,2890,-13247605070715450,-13247603817873562],[2370,2944,13247603817873562,13247605070715450],[2370,3010,13247603817873562,13247605070715450],[2370,3202,45089206600617048,45089208874918688],[2370,3264,-47064511840212707,-47064508655028107],[2370,3329,-13247605037567427,-13247603851021587],[2370,3336,-13247605066170506,-13247603822418509],[2370,3395,-13247605037567427,-13247603851021587],[2370,3402,-13247605066170506,-13247603822418509],[2370,3456,15222905735290626,15222908173003467],[2370,3522,13247603822418509,13247605066170506],[2370,3586,-3950608236257121,-3950601803153038],[2370,3648,3950601803153038,3950608236257121],[2370,1049858,-1975303134066536,-1975301885638544],[2370,1049920,1975301885638544,1975303134066536],[2370,1051650,1975301885638544,1975303134066536],[2370,1051712,-1975303134066536,-1975301885638544],[2370,2097922,-1975303127512529,-1975301892192548],[2370,2097984,1975301892192548,1975303127512529],[2370,2098434,-22544604485915178,-22544603251852693],[2370,2098496,22544603251852693,22544604485915178],[2370,2099714,1975301892192548,1975303127512529],[2370,2099776,-1975303127512529,-1975301892192548],[2370,2100226,22544603251852693,22544604485915178],[2370,2100288,-22544604485915178,-22544603251852693],[2370,16777986,-22544604432275006,-22544603305492866],[2370,16778048,22544603305492866,22544604432275006],[2370,16779778,22544603305492866,22544604432275006],[2370,16779840,-22544604432275006,-22544603305492866],[2370,33555202,-1975303104304567,-1975301915400511],[2370,33555264,1975301915400511,1975303104304567],[2370,33555714,-1975303106832961,-1975301912872117],[2370,33555776,1975301912872117,1975303106832961],[2370,33556994,1975301915400511,1975303104304567],[2370,33557056,-1975303104304567,-1975301915400511],[2370,33557506,1975301912872117,1975303106832961],[2370,33557568,-1975303106832961,-1975301912872117],[2376,514,13247603817873562,13247605070715450],[2376,586,13247603817873562,13247605070715450],[2376,640,13247603822418509,13247605066170506],[2376,712,13247603822418509,13247605066170506],[2376,1026,13247603822418509,13247605066170506],[2376,1098,13247603822418509,13247605066170506],[2376,1152,66238019701775620,66238024741169450],[2376,1224,17198204896268894,17198214031730284],[2376,1416,49039810709439166,49039814805506726],[2376,2818,13247603817873562,13247605070715450],[2376,2890,13247603817873562,13247605070715450],[2376,2944,13247603822418509,13247605066170506],[2376,3016,13247603822418509,13247605066170506],[2376,3264,49039810709439166,49039814805506726],[2376,3330,13247603822418509,13247605066170506],[2376,3402,13247603822418509,13247605066170506],[2376,3456,17198204896268894,17198214031730284],[2376,3528,66238019701775620,66238024741169450],[2434,576,-26495209986088162,-26495207791089865],[2434,706,-26495209986088162,-26495207791089865],[2434,1032,-26495209986088162,-26495207791089865],[2434,1088,-3950609262610422,-3950600776799744],[2434,1162,-26495209986088162,-26495207791089865],[2434,1218,-52990419972049588,-52990415582306470],[2434,1346,49039810709439166,49039814805506726],[2434,2880,-26495209986088162,-26495207791089865],[2434,3010,-26495209986088162,-26495207791089865],[2434,3264,49039810709439166,49039814805506726],[2434,3336,-26495209986088162,-26495207791089865],[2434,3392,-52990419972049588,-52990415582306470],[2434,3466,-26495209986088162,-26495207791089865],[2434,3522,-3950609262610422,-3950600776799744],[2436,1032,-26495209923507576,-26495207853670452],[2436,1164,-26495209923507576,-26495207853670452],[2436,3336,-26495209923507576,-26495207853670452],[2436,3468,-26495209923507576,-26495207853670452],[2440,0,-7901210982465140,-7901209096355172],[2440,136,-3950605491232570,-3950604548177586],[2440,264,-1975305323765481,-1975299695939594],[2440,384,-1975305321237090,-1975299698467991],[2440,1026,26495207791089865,26495209986088162],[2440,1028,26495207853670452,26495209923507576],[2440,1088,-24519908070687651,-24519904686785298],[2440,1162,26495207791089865,26495209986088162],[2440,1164,26495207853670452,26495209923507576],[2440,1224,-26495209986088162,-26495207791089865],[2440,1352,-51015117331445277,-51015113203205693],[2440,1472,52990415696972220,52990419857383828],[2440,1800,-2216932523,2216932520],[2440,1920,-2216932520,2216932523],[2440,2056,-1975305321237090,-1975299698467991],[2440,2176,-1975305323765481,-1975299695939594],[2440,2304,-3950605491232570,-3950604548177586],[2440,2440,-7901210982465140,-7901209096355172],[2440,3144,52990415696972220,52990419857383828],[2440,3264,-51015117331445277,-51015113203205693],[2440,3330,26495207791089865,26495209986088162],[2440,3332,26495207853670452,26495209923507576],[2440,3392,-26495209986088162,-26495207791089865],[2440,3466,26495207791089865,26495209986088162],[2440,3468,26495207853670452,26495209923507576],[2440,3528,-24519908070687651,-24519904686785298],[2440,3592,-2216932520,2216932523],[2440,3712,-2216932523,2216932520],[2440,132096,26495207805375563,26495209971802464],[2440,132232,26495207805375563,26495209971802464],[2440,134400,26495207805375563,26495209971802464],[2440,134536,26495207805375563,26495209971802464],[2440,525312,-26495209971802464,-26495207805375563],[2440,525448,-26495209971802464,-26495207805375563],[2440,527616,-26495209971802464,-26495207805375563],[2440,527752,-26495209971802464,-26495207805375563],[2440,1049864,-929670021,929670022],[2440,1049984,-929670022,929670021],[2440,1051656,-929670022,929670021],[2440,1051776,-929670021,929670022],[2440,2098440,26495207805375563,26495209971802464],[2440,2098560,-26495209971802464,-26495207805375563],[2440,2100232,-26495209971802464,-26495207805375563],[2440,2100352,26495207805375563,26495209971802464],[2440,33555720,26495207853670452,26495209923507576],[2440,33555840,-26495209923507576,-26495207853670452],[2440,33557512,-26495209923507576,-26495207853670452],[2440,33557632,26495207853670452,26495209923507576],[2496,514,13247603822418509,13247605066170506],[2496,520,-13247605066170506,-13247603822418509],[2496,706,13247603822418509,13247605066170506],[2496,712,-13247605066170506,-13247603822418509],[2496,1026,-7321700231122540,-7321693598351231],[2496,1032,-39742815056676876,-39742811609090167],[2496,1218,39742811609090167,39742815056676876],[2496,1224,11272298146528817,11272305722355110],[2496,1346,-47064511840212707,-47064508655028107],[2496,1416,-51015117331445277,-51015113203205693],[2496,2818,13247603822418509,13247605066170506],[2496,2824,-13247605066170506,-13247603822418509],[2496,3010,13247603822418509,13247605066170506],[2496,3016,-13247605066170506,-13247603822418509],[2496,3144,-51015117331445277,-51015113203205693],[2496,3202,-47064511840212707,-47064508655028107],[2496,3330,39742811609090167,39742815056676876],[2496,3336,11272298146528817,11272305722355110],[2496,3522,-7321700231122540,-7321693598351231],[2496,3528,-39742815056676876,-39742811609090167],[2626,514,-1975304632453679,-1975300387251397],[2626,576,1975300387251397,1975304632453679],[2626,1794,-26495210008022388,-26495207769155642],[2626,1856,26495207769155642,26495210008022388],[2626,2050,1975300387251397,1975304632453679],[2626,2112,-1975304632453679,-1975300387251397],[2626,3330,26495207769155642,26495210008022388],[2626,3392,-26495210008022388,-26495207769155642],[2696,520,1975300387251397,1975304632453679],[2696,640,-1975304632453679,-1975300387251397],[2696,1800,26495207769155642,26495210008022388],[2696,1920,-26495210008022388,-26495207769155642],[2696,2056,-1975304632453679,-1975300387251397],[2696,2176,1975300387251397,1975304632453679],[2696,3336,-26495210008022388,-26495207769155642],[2696,3456,26495207769155642,26495210008022388],[2817,579,-13247605036737943,-13247603851851071],[2817,834,13247603851851071,13247605036737943],[2817,2115,13247603851851071,13247605036737943],[2817,2370,-13247605036737943,-13247603851851071],[2818,514,13247602745554085,13247606143034927],[2818,579,13247603851851071,13247605036737943],[2818,586,13247603817873562,13247605070715450],[2818,706,13247603822418509,13247605066170506],[2818,768,-13247606143034927,-13247602745554085],[2818,833,-13247605036737943,-13247603851851071],[2818,840,-13247605070715450,-13247603817873562],[2818,960,-13247605066170506,-13247603822418509],[2818,1088,3950603763253824,3950606276156332],[2818,1346,-22544605449648746,-22544602288119128],[2818,1602,-2216932520,2216932523],[2818,1856,26495207791089865,26495209986088162],[2818,2050,-13247606143034927,-13247602745554085],[2818,2115,-13247605036737943,-13247603851851071],[2818,2122,-13247605070715450,-13247603817873562],[2818,2242,-13247605066170506,-13247603822418509],[2818,2304,13247602745554085,13247606143034927],[2818,2369,13247603851851071,13247605036737943],[2818,2376,13247603817873562,13247605070715450],[2818,2496,13247603822418509,13247605066170506],[2818,3138,26495207791089865,26495209986088162],[2818,3392,-2216932520,2216932523],[2818,3648,-22544605449648746,-22544602288119128],[2818,3906,3950603763253824,3950606276156332],[2818,2097216,1975301892192548,1975303127512529],[2818,2097474,1975301892192548,1975303127512529],[2818,2099776,1975301892192548,1975303127512529],[2818,2100034,1975301892192548,1975303127512529],[2818,16777280,-1975303104304567,-1975301915400511],[2818,16777538,-1975303104304567,-1975301915400511],[2818,16779840,-1975303104304567,-1975301915400511],[2818,16780098,-1975303104304567,-1975301915400511],[2818,33554496,1975301915400511,1975303104304567],[2818,33554754,1975301915400511,1975303104304567],[2818,33557056,1975301915400511,1975303104304567],[2818,33557314,1975301915400511,1975303104304567],[2824,586,-13247605070715450,-13247603817873562],[2824,712,-13247605066170506,-13247603822418509],[2824,834,13247603817873562,13247605070715450],[2824,960,13247603822418509,13247605066170506],[2824,1416,22544602288119128,22544605449648746],[2824,1672,-3950608236257121,-3950601803153038],[2824,1920,-18594000484966090,-18593997213391625],[2824,2122,13247603817873562,13247605070715450],[2824,2248,13247603822418509,13247605066170506],[2824,2370,-13247605070715450,-13247603817873562],[2824,2496,-13247605066170506,-13247603822418509],[2824,3208,-18594000484966090,-18593997213391625],[2824,3456,-3950608236257121,-3950601803153038],[2824,3712,22544602288119128,22544605449648746],[2880,706,-26495209986088162,-26495207791089865],[2880,898,26495207791089865,26495209986088162],[2880,1026,-3950606276156332,-3950603763253824],[2880,1346,22544602288119128,22544605449648746],[2880,1602,-2216932523,2216932520],[2880,1794,-26495209986088162,-26495207791089865],[2880,2242,26495207791089865,26495209986088162],[2880,2434,-26495209986088162,-26495207791089865],[2880,3138,-26495209986088162,-26495207791089865],[2880,3330,-2216932523,2216932520],[2880,3586,22544602288119128,22544605449648746],[2880,3906,-3950606276156332,-3950603763253824],[2880,2097154,-1975303127512529,-1975301892192548],[2880,2097474,-1975303127512529,-1975301892192548],[2880,2099714,-1975303127512529,-1975301892192548],[2880,2100034,-1975303127512529,-1975301892192548],[2880,16777218,1975301915400511,1975303104304567],[2880,16777538,1975301915400511,1975303104304567],[2880,16779778,1975301915400511,1975303104304567],[2880,16780098,1975301915400511,1975303104304567],[2880,33554434,-1975303104304567,-1975301915400511],[2880,33554754,-1975303104304567,-1975301915400511],[2880,33556994,-1975303104304567,-1975301915400511],[2880,33557314,-1975303104304567,-1975301915400511],[2883,513,-13247605036737943,-13247603851851071],[2883,514,13247603851851071,13247605036737943],[2883,833,-13247605036737943,-13247603851851071],[2883,834,13247603851851071,13247605036737943],[2883,2049,13247603851851071,13247605036737943],[2883,2050,-13247605036737943,-13247603851851071],[2883,2369,13247603851851071,13247605036737943],[2883,2370,-13247605036737943,-13247603851851071],[2890,514,13247603817873562,13247605070715450],[2890,520,-13247605070715450,-13247603817873562],[2890,834,13247603817873562,13247605070715450],[2890,840,-13247605070715450,-13247603817873562],[2890,2050,-13247605070715450,-13247603817873562],[2890,2056,13247603817873562,13247605070715450],[2890,2370,-13247605070715450,-13247603817873562],[2890,2376,13247603817873562,13247605070715450],[2944,706,13247603817873562,13247605070715450],[2944,712,13247603822418509,13247605066170506],[2944,834,-13247605070715450,-13247603817873562],[2944,840,-13247605066170506,-13247603822418509],[2944,1416,-22544605449648746,-22544602288119128],[2944,1672,3950601803153038,3950608236257121],[2944,1800,18593997213391625,18594000484966090],[2944,2242,-13247605070715450,-13247603817873562],[2944,2248,-13247605066170506,-13247603822418509],[2944,2370,13247603817873562,13247605070715450],[2944,2376,13247603822418509,13247605066170506],[2944,3208,18593997213391625,18594000484966090],[2944,3336,3950601803153038,3950608236257121],[2944,3592,-22544605449648746,-22544602288119128],[3010,514,13247603822418509,13247605066170506],[3010,576,-26495209986088162,-26495207791089865],[3010,640,13247603817873562,13247605070715450],[3010,834,-13247605070715450,-13247603817873562],[3010,898,26495207791089865,26495209986088162],[3010,960,-13247605066170506,-13247603822418509],[3010,2050,-13247605066170506,-13247603822418509],[3010,2112,26495207791089865,26495209986088162],[3010,2176,-13247605070715450,-13247603817873562],[3010,2370,13247603817873562,13247605070715450],[3010,2434,-26495209986088162,-26495207791089865],[3010,2496,13247603822418509,13247605066170506],[3016,520,-13247605066170506,-13247603822418509],[3016,640,13247603822418509,13247605066170506],[3016,840,-13247605066170506,-13247603822418509],[3016,960,13247603822418509,13247605066170506],[3016,2056,13247603822418509,13247605066170506],[3016,2176,-13247605066170506,-13247603822418509],[3016,2376,13247603822418509,13247605066170506],[3016,2496,-13247605066170506,-13247603822418509],[3072,72,-3950605491232570,-3950604548177586],[3072,136,-5346395945272860,-5346392864495852],[3072,264,17198207762730769,17198211165268399],[3072,520,-13247606143034927,-13247602745554085],[3072,3144,-3950605491232570,-3950604548177586],[3072,3208,-5346395945272860,-5346392864495852],[3072,3336,17198207762730769,17198211165268399],[3072,3592,-13247606143034927,-13247602745554085],[3072,524296,-3950605491232570,-3950604548177586],[3072,527368,-3950605491232570,-3950604548177586],[3072,1048584,17198207762730769,17198211165268399],[3072,1051656,17198207762730769,17198211165268399],[3072,2097160,-13247606143034927,-13247602745554085],[3072,2100232,-13247606143034927,-13247602745554085],[3072,33554440,-13247606072008906,-13247602816580098],[3072,33557512,-13247606072008906,-13247602816580098],[3082,1026,-1975304632453679,-1975300387251397],[3082,1032,1975300387251397,1975304632453679],[3082,1218,-26495210008022388,-26495207769155642],[3082,1224,26495207769155642,26495210008022388],[3082,2050,1975300387251397,1975304632453679],[3082,2056,-1975304632453679,-1975300387251397],[3082,2242,26495207769155642,26495210008022388],[3082,2248,-26495210008022388,-26495207769155642],[3084,1028,-1975304531698390,-1975300488006682],[3084,1032,1975300488006682,1975304531698390],[3084,2052,1975300488006682,1975304531698390],[3084,2056,-1975304531698390,-1975300488006682],[3138,1026,-3950609262610422,-3950600776799744],[3138,1088,3950600776799744,3950609262610422],[3138,1162,-26495209986088162,-26495207791089865],[3138,1224,26495207791089865,26495209986088162],[3138,1794,-26495209986088162,-26495207791089865],[3138,1856,26495207791089865,26495209986088162],[3138,2050,3950600776799744,3950609262610422],[3138,2112,-3950609262610422,-3950600776799744],[3138,2186,26495207791089865,26495209986088162],[3138,2248,-26495209986088162,-26495207791089865],[3138,2818,26495207791089865,26495209986088162],[3138,2880,-26495209986088162,-26495207791089865],[3140,1164,-26495209923507576,-26495207853670452],[3140,1224,26495207853670452,26495209923507576],[3140,2188,26495207853670452,26495209923507576],[3140,2248,-26495209923507576,-26495207853670452],[3144,0,-7901210982465140,-7901209096355172],[3144,72,-3950605491232570,-3950604548177586],[3144,384,-24519908070687651,-24519904686785298],[3144,456,-26495209986088162,-26495207791089865],[3144,640,26495207791089865,26495209986088162],[3144,712,26495207791089865,26495209986088162],[3144,1032,-1975305323765481,-1975299695939594],[3144,1088,-1975305321237090,-1975299698467991],[3144,1162,-2216932523,2216932520],[3144,1164,26495207853670452,26495209923507576],[3144,1218,-2216932520,2216932523],[3144,1220,-26495209923507576,-26495207853670452],[3144,1416,-51015117331445277,-51015113203205693],[3144,1472,52990415696972220,52990419857383828],[3144,2056,-1975305321237090,-1975299698467991],[3144,2112,-1975305323765481,-1975299695939594],[3144,2186,-2216932520,2216932523],[3144,2188,-26495209923507576,-26495207853670452],[3144,2242,-2216932523,2216932520],[3144,2244,26495207853670452,26495209923507576],[3144,2440,52990415696972220,52990419857383828],[3144,2496,-51015117331445277,-51015113203205693],[3144,3072,-3950605491232570,-3950604548177586],[3144,3144,-7901210982465140,-7901209096355172],[3144,3456,-26495209986088162,-26495207791089865],[3144,3528,-24519908070687651,-24519904686785298],[3144,3712,26495207791089865,26495209986088162],[3144,3784,26495207791089865,26495209986088162],[3144,132232,26495207805375563,26495209971802464],[3144,132288,-26495209971802464,-26495207805375563],[3144,133256,-26495209971802464,-26495207805375563],[3144,133312,26495207805375563,26495209971802464],[3144,525448,-929670021,929670022],[3144,525504,-929670022,929670021],[3144,526472,-929670022,929670021],[3144,526528,-929670021,929670022],[3144,1048704,-26495209971802464,-26495207805375563],[3144,1048776,-26495209971802464,-26495207805375563],[3144,1051776,-26495209971802464,-26495207805375563],[3144,1051848,-26495209971802464,-26495207805375563],[3144,2097280,26495207805375563,26495209971802464],[3144,2097352,26495207805375563,26495209971802464],[3144,2100352,26495207805375563,26495209971802464],[3144,2100424,26495207805375563,26495209971802464],[3144,33554560,26495207853670452,26495209923507576],[3144,33554632,26495207853670452,26495209923507576],[3144,33557632,26495207853670452,26495209923507576],[3144,33557704,26495207853670452,26495209923507576],[3201,1035,1975301915400511,1975303104304567],[3201,1037,22544603305492866,22544604432275006],[3201,1091,1975301912872117,1975303106832961],[3201,1162,-1975303104304567,-1975301915400511],[3201,1164,-22544604432275006,-22544603305492866],[3201,1218,-1975303106832961,-1975301912872117],[3201,2059,-1975303104304567,-1975301915400511],[3201,2061,-22544604432275006,-22544603305492866],[3201,2115,-1975303106832961,-1975301912872117],[3201,2186,1975301915400511,1975303104304567],[3201,2188,22544603305492866,22544604432275006],[3201,2242,1975301912872117,1975303106832961],[3202,264,13247603817873562,13247605070715450],[3202,320,13247603822418509,13247605066170506],[3202,394,13247603817873562,13247605070715450],[3202,450,15222905735290626,15222908173003467],[3202,520,-13247605070715450,-13247603817873562],[3202,576,-13247605066170506,-13247603822418509],[3202,650,-13247605070715450,-13247603817873562],[3202,706,-13247605066170506,-13247603822418509],[3202,1026,-3950608236257121,-3950601803153038],[3202,1035,-1975303104304567,-1975301915400511],[3202,1038,-22544604432275006,-22544603305492866],[3202,1091,-1975303106832961,-1975301912872117],[3202,1098,3950601803153038,3950608236257121],[3202,1152,3950601803153038,3950608236257121],[3202,1161,1975301915400511,1975303104304567],[3202,1164,22544603305492866,22544604432275006],[3202,1217,1975301912872117,1975303106832961],[3202,1224,-3950608236257121,-3950601803153038],[3202,1346,-47064511840212707,-47064508655028107],[3202,1472,45089206600617048,45089208874918688],[3202,2050,3950601803153038,3950608236257121],[3202,2059,1975301915400511,1975303104304567],[3202,2062,22544603305492866,22544604432275006],[3202,2115,1975301912872117,1975303106832961],[3202,2122,-3950608236257121,-3950601803153038],[3202,2176,-3950608236257121,-3950601803153038],[3202,2185,-1975303104304567,-1975301915400511],[3202,2188,-22544604432275006,-22544603305492866],[3202,2241,-1975303106832961,-1975301912872117],[3202,2248,3950601803153038,3950608236257121],[3202,2370,45089206600617048,45089208874918688],[3202,2496,-47064511840212707,-47064508655028107],[3202,3336,13247603817873562,13247605070715450],[3202,3392,15222905735290626,15222908173003467],[3202,3466,13247603817873562,13247605070715450],[3202,3522,13247603822418509,13247605066170506],[3202,3592,-13247605070715450,-13247603817873562],[3202,3648,-13247605066170506,-13247603822418509],[3202,3722,-13247605070715450,-13247603817873562],[3202,3778,-13247605066170506,-13247603822418509],[3202,132106,-1975303127512530,-1975301892192549],[3202,132232,1975301892192549,1975303127512530],[3202,133130,1975301892192549,1975303127512530],[3202,133256,-1975303127512530,-1975301892192549],[3202,525322,3950603941250842,3950606098159314],[3202,525378,24519905292829457,24519907464643494],[3202,525448,-3950606098159314,-3950603941250842],[3202,525504,-24519907464643494,-24519905292829457],[3202,526346,-3950606098159314,-3950603941250842],[3202,526402,-24519907464643494,-24519905292829457],[3202,526472,3950603941250842,3950606098159314],[3202,526528,24519905292829457,24519907464643494],[3202,1048584,13247603827702546,13247605060886466],[3202,1048640,13247603826875223,13247605061713792],[3202,1048714,13247603827702546,13247605060886466],[3202,1048770,13247603826875223,13247605061713792],[3202,1051656,13247603827702546,13247605060886466],[3202,1051712,13247603826875223,13247605061713792],[3202,1051786,13247603827702546,13247605060886466],[3202,1051842,13247603826875223,13247605061713792],[3202,2097160,-13247605060886466,-13247603827702546],[3202,2097216,-13247605061713792,-13247603826875223],[3202,2097290,-13247605060886466,-13247603827702546],[3202,2097346,-13247605061713792,-13247603826875223],[3202,2100232,-13247605060886466,-13247603827702546],[3202,2100288,-13247605061713792,-13247603826875223],[3202,2100362,-13247605060886466,-13247603827702546],[3202,2100418,-13247605061713792,-13247603826875223],[3202,33554440,-13247605036737943,-13247603851851071],[3202,33554496,-13247605037567427,-13247603851021587],[3202,33554570,-13247605036737943,-13247603851851071],[3202,33554626,-13247605037567427,-13247603851021587],[3202,33557512,-13247605036737943,-13247603851851071],[3202,33557568,-13247605037567427,-13247603851021587],[3202,33557642,-13247605036737943,-13247603851851071],[3202,33557698,-13247605037567427,-13247603851021587],[3204,264,13247603851851071,13247605036737943],[3204,396,13247603851851071,13247605036737943],[3204,520,-13247605036737943,-13247603851851071],[3204,652,-13247605036737943,-13247603851851071],[3204,1028,-1975304047051064,-1975300972654016],[3204,1037,-22544604432275006,-22544603305492866],[3204,1038,-1975303104304567,-1975301915400511],[3204,1100,24519905362432319,24519907395040631],[3204,1152,1975300972654016,1975304047051064],[3204,1161,22544603305492866,22544604432275006],[3204,1162,1975301915400511,1975303104304567],[3204,1224,-24519907395040631,-24519905362432319],[3204,2052,1975300972654016,1975304047051064],[3204,2061,22544603305492866,22544604432275006],[3204,2062,1975301915400511,1975303104304567],[3204,2124,-24519907395040631,-24519905362432319],[3204,2176,-1975304047051064,-1975300972654016],[3204,2185,-22544604432275006,-22544603305492866],[3204,2186,-1975303104304567,-1975301915400511],[3204,2248,24519905362432319,24519907395040631],[3204,3336,13247603851851071,13247605036737943],[3204,3468,13247603851851071,13247605036737943],[3204,3592,-13247605036737943,-13247603851851071],[3204,3724,-13247605036737943,-13247603851851071],[3204,33804,-22544604432275006,-22544603305492866],[3204,33928,22544603305492866,22544604432275006],[3204,34828,22544603305492866,22544604432275006],[3204,34952,-22544604432275006,-22544603305492866],[3204,132108,-1975303104304567,-1975301915400511],[3204,132232,1975301915400511,1975303104304567],[3204,133132,1975301915400511,1975303104304567],[3204,133256,-1975303104304567,-1975301915400511],[3204,525324,24519905362432319,24519907395040631],[3204,525448,-24519907395040631,-24519905362432319],[3204,526348,-24519907395040631,-24519905362432319],[3204,526472,24519905362432319,24519907395040631],[3204,1048584,13247603851851071,13247605036737943],[3204,1048716,13247603851851071,13247605036737943],[3204,1051656,13247603851851071,13247605036737943],[3204,1051788,13247603851851071,13247605036737943],[3204,2097160,-13247605036737943,-13247603851851071],[3204,2097292,-13247605036737943,-13247603851851071],[3204,2100232,-13247605036737943,-13247603851851071],[3204,2100364,-13247605036737943,-13247603851851071],[3204,33554440,-13247605015388352,-13247603873200664],[3204,33554572,-13247605015388352,-13247603873200664],[3204,33557512,-13247605015388352,-13247603873200664],[3204,33557644,-13247605015388352,-13247603873200664],[3208,136,-5346395945272860,-5346392864495852],[3208,258,-13247605070715450,-13247603817873562],[3208,260,-13247605036737943,-13247603851851071],[3208,320,13247603817873562,13247605070715450],[3208,394,-13247605070715450,-13247603817873562],[3208,396,-13247605036737943,-13247603851851071],[3208,456,13247603817873562,13247605070715450],[3208,514,13247603817873562,13247605070715450],[3208,516,13247603851851071,13247605036737943],[3208,576,-13247605070715450,-13247603817873562],[3208,650,13247603817873562,13247605070715450],[3208,652,13247603851851071,13247605036737943],[3208,712,-13247605070715450,-13247603817873562],[3208,1032,232566281601026132,232566321236466156],[3208,1038,24519905362432319,24519907395040631],[3208,1098,18593997213391625,18594000484966090],[3208,1100,-24519907395040631,-24519905362432319],[3208,1152,-227219925291193296,-227219888736530280],[3208,1158,-24519907395040631,-24519905362432319],[3208,1218,-18594000484966090,-18593997213391625],[3208,1220,24519905362432319,24519907395040631],[3208,1800,18593997213391625,18594000484966090],[3208,1920,-18594000484966090,-18593997213391625],[3208,2056,-227219925291193296,-227219888736530280],[3208,2062,-24519907395040631,-24519905362432319],[3208,2122,-18594000484966090,-18593997213391625],[3208,2124,24519905362432319,24519907395040631],[3208,2176,232566281601026132,232566321236466156],[3208,2182,24519905362432319,24519907395040631],[3208,2242,18593997213391625,18594000484966090],[3208,2244,-24519907395040631,-24519905362432319],[3208,2824,-18594000484966090,-18593997213391625],[3208,2944,18593997213391625,18594000484966090],[3208,3072,-5346395945272860,-5346392864495852],[3208,3330,-13247605070715450,-13247603817873562],[3208,3332,-13247605036737943,-13247603851851071],[3208,3392,13247603817873562,13247605070715450],[3208,3466,-13247605070715450,-13247603817873562],[3208,3468,-13247605036737943,-13247603851851071],[3208,3528,13247603817873562,13247605070715450],[3208,3586,13247603817873562,13247605070715450],[3208,3588,13247603851851071,13247605036737943],[3208,3648,-13247605070715450,-13247603817873562],[3208,3722,13247603817873562,13247605070715450],[3208,3724,13247603851851071,13247605036737943],[3208,3784,-13247605070715450,-13247603817873562],[3208,131328,-13247605060886466,-13247603827702546],[3208,131464,-13247605060886466,-13247603827702546],[3208,131584,13247603827702546,13247605060886466],[3208,131720,13247603827702546,13247605060886466],[3208,132106,3950603941250842,3950606098159314],[3208,132108,24519905362432319,24519907395040631],[3208,132168,-3950606098159314,-3950603941250842],[3208,132226,-3950606098159314,-3950603941250842],[3208,132228,-24519907395040631,-24519905362432319],[3208,132288,3950603941250842,3950606098159314],[3208,133130,-3950606098159314,-3950603941250842],[3208,133132,-24519907395040631,-24519905362432319],[3208,133192,3950603941250842,3950606098159314],[3208,133250,3950603941250842,3950606098159314],[3208,133252,24519905362432319,24519907395040631],[3208,133312,-3950606098159314,-3950603941250842],[3208,134400,-13247605060886466,-13247603827702546],[3208,134536,-13247605060886466,-13247603827702546],[3208,134656,13247603827702546,13247605060886466],[3208,134792,13247603827702546,13247605060886466],[3208,524544,13247603827702546,13247605060886466],[3208,524680,13247603827702546,13247605060886466],[3208,524800,-13247605060886466,-13247603827702546],[3208,524936,-13247605060886466,-13247603827702546],[3208,525322,-3950606098159314,-3950603941250842],[3208,525324,-24519907395040631,-24519905362432319],[3208,525384,3950603941250842,3950606098159314],[3208,525442,3950603941250842,3950606098159314],[3208,525444,24519905362432319,24519907395040631],[3208,525504,-3950606098159314,-3950603941250842],[3208,526346,3950603941250842,3950606098159314],[3208,526348,24519905362432319,24519907395040631],[3208,526408,-3950606098159314,-3950603941250842],[3208,526466,-3950606098159314,-3950603941250842],[3208,526468,-24519907395040631,-24519905362432319],[3208,526528,3950603941250842,3950606098159314],[3208,527616,13247603827702546,13247605060886466],[3208,527752,13247603827702546,13247605060886466],[3208,527872,-13247605060886466,-13247603827702546],[3208,528008,-13247605060886466,-13247603827702546],[3208,656392,18593997194721705,18594000503636004],[3208,656512,-18594000503636004,-18593997194721705],[3208,657416,-18594000503636004,-18593997194721705],[3208,657536,18593997194721705,18594000503636004],[3208,1048578,-13247605060886466,-13247603827702546],[3208,1048580,-13247605036737943,-13247603851851071],[3208,1048640,13247603827702546,13247605060886466],[3208,1048714,-13247605060886466,-13247603827702546],[3208,1048716,-13247605036737943,-13247603851851071],[3208,1048776,13247603827702546,13247605060886466],[3208,1049864,3950603941250842,3950606098159314],[3208,1049984,-3950606098159314,-3950603941250842],[3208,1050120,-3950606098159314,-3950603941250842],[3208,1050240,3950603941250842,3950606098159314],[3208,1050888,-3950606098159314,-3950603941250842],[3208,1051008,3950603941250842,3950606098159314],[3208,1051144,3950603941250842,3950606098159314],[3208,1051264,-3950606098159314,-3950603941250842],[3208,1051650,-13247605060886466,-13247603827702546],[3208,1051652,-13247605036737943,-13247603851851071],[3208,1051712,13247603827702546,13247605060886466],[3208,1051786,-13247605060886466,-13247603827702546],[3208,1051788,-13247605036737943,-13247603851851071],[3208,1051848,13247603827702546,13247605060886466],[3208,1179648,-13247605080544438,-13247603808044578],[3208,1179784,-13247605080544438,-13247603808044578],[3208,1182720,-13247605080544438,-13247603808044578],[3208,1182856,-13247605080544438,-13247603808044578],[3208,1572864,13247603808044578,13247605080544438],[3208,1573000,13247603808044578,13247605080544438],[3208,1575936,13247603808044578,13247605080544438],[3208,1576072,13247603808044578,13247605080544438],[3208,2097154,13247603827702546,13247605060886466],[3208,2097156,13247603851851071,13247605036737943],[3208,2097216,-13247605060886466,-13247603827702546],[3208,2097290,13247603827702546,13247605060886466],[3208,2097292,13247603851851071,13247605036737943],[3208,2097352,-13247605060886466,-13247603827702546],[3208,2098440,-3950606098159314,-3950603941250842],[3208,2098560,3950603941250842,3950606098159314],[3208,2098696,3950603941250842,3950606098159314],[3208,2098816,-3950606098159314,-3950603941250842],[3208,2099464,3950603941250842,3950606098159314],[3208,2099584,-3950606098159314,-3950603941250842],[3208,2099720,-3950606098159314,-3950603941250842],[3208,2099840,3950603941250842,3950606098159314],[3208,2100226,13247603827702546,13247605060886466],[3208,2100228,13247603851851071,13247605036737943],[3208,2100288,-13247605060886466,-13247603827702546],[3208,2100362,13247603827702546,13247605060886466],[3208,2100364,13247603851851071,13247605036737943],[3208,2100424,-13247605060886466,-13247603827702546],[3208,2228224,13247603808044578,13247605080544438],[3208,2228360,13247603808044578,13247605080544438],[3208,2231296,13247603808044578,13247605080544438],[3208,2231432,13247603808044578,13247605080544438],[3208,2621440,-13247605080544438,-13247603808044578],[3208,2621576,-13247605080544438,-13247603808044578],[3208,2624512,-13247605080544438,-13247603808044578],[3208,2624648,-13247605080544438,-13247603808044578],[3208,3146760,18593997194721705,18594000503636004],[3208,3146880,-18594000503636004,-18593997194721705],[3208,3147784,-18594000503636004,-18593997194721705],[3208,3147904,18593997194721705,18594000503636004],[3208,33554434,13247603851851071,13247605036737943],[3208,33554436,13247603873200664,13247605015388352],[3208,33554496,-13247605036737943,-13247603851851071],[3208,33554570,13247603851851071,13247605036737943],[3208,33554572,13247603873200664,13247605015388352],[3208,33554632,-13247605036737943,-13247603851851071],[3208,33555720,-24519907395040631,-24519905362432319],[3208,33555840,24519905362432319,24519907395040631],[3208,33555976,24519905362432319,24519907395040631],[3208,33556096,-24519907395040631,-24519905362432319],[3208,33556744,24519905362432319,24519907395040631],[3208,33556864,-24519907395040631,-24519905362432319],[3208,33557000,-24519907395040631,-24519905362432319],[3208,33557120,24519905362432319,24519907395040631],[3208,33557506,13247603851851071,13247605036737943],[3208,33557508,13247603873200664,13247605015388352],[3208,33557568,-13247605036737943,-13247603851851071],[3208,33557642,13247603851851071,13247605036737943],[3208,33557644,13247603873200664,13247605015388352],[3208,33557704,-13247605036737943,-13247603851851071],[3208,33685504,13247603851851071,13247605036737943],[3208,33685640,13247603851851071,13247605036737943],[3208,33688576,13247603851851071,13247605036737943],[3208,33688712,13247603851851071,13247605036737943],[3208,34078720,-13247605036737943,-13247603851851071],[3208,34078856,-13247605036737943,-13247603851851071],[3208,34081792,-13247605036737943,-13247603851851071],[3208,34081928,-13247605036737943,-13247603851851071],[3208,34604040,-24519907395040631,-24519905362432319],[3208,34604160,24519905362432319,24519907395040631],[3208,34605064,24519905362432319,24519907395040631],[3208,34605184,-24519907395040631,-24519905362432319],[3208,35652616,24519905362432319,24519907395040631],[3208,35652736,-24519907395040631,-24519905362432319],[3208,35653640,-24519907395040631,-24519905362432319],[3208,35653760,24519905362432319,24519907395040631],[3211,1025,1975301915400511,1975303104304567],[3211,1026,-1975303104304567,-1975301915400511],[3211,1161,1975301915400511,1975303104304567],[3211,1162,-1975303104304567,-1975301915400511],[3211,2049,-1975303104304567,-1975301915400511],[3211,2050,1975301915400511,1975303104304567],[3211,2185,-1975303104304567,-1975301915400511],[3211,2186,1975301915400511,1975303104304567],[3213,1025,22544603305492866,22544604432275006],[3213,1028,-22544604432275006,-22544603305492866],[3213,1161,22544603305492866,22544604432275006],[3213,1164,-22544604432275006,-22544603305492866],[3213,2049,-22544604432275006,-22544603305492866],[3213,2052,22544603305492866,22544604432275006],[3213,2185,-22544604432275006,-22544603305492866],[3213,2188,22544603305492866,22544604432275006],[3214,1026,-22544604432275006,-22544603305492866],[3214,1028,-1975303104304567,-1975301915400511],[3214,1032,24519905362432319,24519907395040631],[3214,1158,-24519907395040631,-24519905362432319],[3214,1162,1975301915400511,1975303104304567],[3214,1164,22544603305492866,22544604432275006],[3214,2050,22544603305492866,22544604432275006],[3214,2052,1975301915400511,1975303104304567],[3214,2056,-24519907395040631,-24519905362432319],[3214,2182,24519905362432319,24519907395040631],[3214,2186,-1975303104304567,-1975301915400511],[3214,2188,-22544604432275006,-22544603305492866],[3264,258,-13247605066170506,-13247603822418509],[3264,264,11272300718113942,11272303150769995],[3264,450,-15222908173003467,-15222905735290626],[3264,456,13247603822418509,13247605066170506],[3264,514,13247603822418509,13247605066170506],[3264,520,-13247605066170506,-13247603822418509],[3264,706,13247603822418509,13247605066170506],[3264,712,-13247605066170506,-13247603822418509],[3264,1098,-22544605449648746,-22544602288119128],[3264,1162,22544602288119128,22544605449648746],[3264,1346,49039810709439166,49039814805506726],[3264,1352,-51015117331445277,-51015113203205693],[3264,1410,-47064511840212707,-47064508655028107],[3264,1416,49039810709439166,49039814805506726],[3264,2122,22544602288119128,22544605449648746],[3264,2186,-22544605449648746,-22544602288119128],[3264,2370,-47064511840212707,-47064508655028107],[3264,2376,49039810709439166,49039814805506726],[3264,2434,49039810709439166,49039814805506726],[3264,2440,-51015117331445277,-51015113203205693],[3264,3330,-15222908173003467,-15222905735290626],[3264,3336,13247603822418509,13247605066170506],[3264,3522,-13247605066170506,-13247603822418509],[3264,3528,11272300718113942,11272303150769995],[3264,3586,13247603822418509,13247605066170506],[3264,3592,-13247605066170506,-13247603822418509],[3264,3778,13247603822418509,13247605066170506],[3264,3784,-13247605066170506,-13247603822418509],[3264,525378,-24519907464643494,-24519905292829457],[3264,525384,24519905292829457,24519907464643494],[3264,525442,24519905292829457,24519907464643494],[3264,525448,-24519907464643494,-24519905292829457],[3264,526402,24519905292829457,24519907464643494],[3264,526408,-24519907464643494,-24519905292829457],[3264,526466,-24519907464643494,-24519905292829457],[3264,526472,24519905292829457,24519907464643494],[3264,1048578,-13247605061713792,-13247603826875223],[3264,1048584,13247603826875223,13247605061713792],[3264,1048770,-13247605061713792,-13247603826875223],[3264,1048776,13247603826875223,13247605061713792],[3264,1051650,-13247605061713792,-13247603826875223],[3264,1051656,13247603826875223,13247605061713792],[3264,1051842,-13247605061713792,-13247603826875223],[3264,1051848,13247603826875223,13247605061713792],[3264,2097154,13247603826875223,13247605061713792],[3264,2097160,-13247605061713792,-13247603826875223],[3264,2097346,13247603826875223,13247605061713792],[3264,2097352,-13247605061713792,-13247603826875223],[3264,2100226,13247603826875223,13247605061713792],[3264,2100232,-13247605061713792,-13247603826875223],[3264,2100418,13247603826875223,13247605061713792],[3264,2100424,-13247605061713792,-13247603826875223],[3264,33554434,13247603851021587,13247605037567427],[3264,33554440,-13247605037567427,-13247603851021587],[3264,33554626,13247603851021587,13247605037567427],[3264,33554632,-13247605037567427,-13247603851021587],[3264,33557506,13247603851021587,13247605037567427],[3264,33557512,-13247605037567427,-13247603851021587],[3264,33557698,13247603851021587,13247605037567427],[3264,33557704,-13247605037567427,-13247603851021587],[3267,1025,1975301912872117,1975303106832961],[3267,1026,-1975303106832961,-1975301912872117],[3267,1217,1975301912872117,1975303106832961],[3267,1218,-1975303106832961,-1975301912872117],[3267,2049,-1975303106832961,-1975301912872117],[3267,2050,1975301912872117,1975303106832961],[3267,2241,-1975303106832961,-1975301912872117],[3267,2242,1975301912872117,1975303106832961],[3274,1026,-49039815252370900,-49039810262574998],[3274,1032,45089206499321174,45089208976214568],[3274,1088,3950603763253824,3950606276156332],[3274,1162,-3950606276156332,-3950603763253824],[3274,1218,-45089208976214568,-45089206499321174],[3274,1224,49039810262574998,49039815252370900],[3274,2050,49039810262574998,49039815252370900],[3274,2056,-45089208976214568,-45089206499321174],[3274,2112,-3950606276156332,-3950603763253824],[3274,2186,3950603763253824,3950606276156332],[3274,2242,45089206499321174,45089208976214568],[3274,2248,-49039815252370900,-49039810262574998],[3276,1028,-1975303106832961,-1975301912872117],[3276,1032,1975301912872117,1975303106832961],[3276,1220,-1975303106832961,-1975301912872117],[3276,1224,1975301912872117,1975303106832961],[3276,2052,1975301912872117,1975303106832961],[3276,2056,-1975303106832961,-1975301912872117],[3276,2244,1975301912872117,1975303106832961],[3276,2248,-1975303106832961,-1975301912872117],[3329,1091,-13247605037567427,-13247603851021587],[3329,1346,13247603851021587,13247605037567427],[3329,2115,13247603851021587,13247605037567427],[3329,2370,-13247605037567427,-13247603851021587],[3330,192,-1975303106832961,-1975301912872117],[3330,394,-13247605070715450,-13247603817873562],[3330,450,-15222908173003467,-15222905735290626],[3330,576,45089206499321174,45089208976214568],[3330,834,18593997213391625,18594000484966090],[3330,1026,13247602731588215,13247606157000801],[3330,1091,13247603851021587,13247605037567427],[3330,1098,13247603822418509,13247605066170506],[3330,1162,26495207791089865,26495209986088162],[3330,1218,39742811609090167,39742815056676876],[3330,1280,-13247606157000801,-13247602731588215],[3330,1345,-13247605037567427,-13247603851021587],[3330,1352,-13247605066170506,-13247603822418509],[3330,1416,-13247605066170506,-13247603822418509],[3330,1472,-26495210141304164,-26495207635873864],[3330,1602,-2216932523,2216932520],[3330,1856,26495207769155642,26495210008022388],[3330,2050,-13247606157000801,-13247602731588215],[3330,2115,-13247605037567427,-13247603851021587],[3330,2122,-13247605066170506,-13247603822418509],[3330,2186,-13247605066170506,-13247603822418509],[3330,2242,-26495210141304164,-26495207635873864],[3330,2304,13247602731588215,13247606157000801],[3330,2369,13247603851021587,13247605037567427],[3330,2376,13247603822418509,13247605066170506],[3330,2440,26495207791089865,26495209986088162],[3330,2496,39742811609090167,39742815056676876],[3330,2626,26495207769155642,26495210008022388],[3330,2880,-2216932523,2216932520],[3330,3208,-13247605070715450,-13247603817873562],[3330,3264,-15222908173003467,-15222905735290626],[3330,3522,-1975303106832961,-1975301912872117],[3330,3648,18593997213391625,18594000484966090],[3330,3906,45089206499321174,45089208976214568],[3330,1048640,-22544604485915178,-22544603251852693],[3330,1048898,-22544604485915178,-22544603251852693],[3330,1051712,-22544604485915178,-22544603251852693],[3330,1051970,-22544604485915178,-22544603251852693],[3330,2097216,22544603251852693,22544604485915178],[3330,2097474,22544603251852693,22544604485915178],[3330,2100288,22544603251852693,22544604485915178],[3330,2100546,22544603251852693,22544604485915178],[3330,33554496,1975301912872117,1975303106832961],[3330,33554754,1975301912872117,1975303106832961],[3330,33557568,1975301912872117,1975303106832961],[3330,33557826,1975301912872117,1975303106832961],[3332,396,-13247605036737943,-13247603851851071],[3332,1164,26495207853670452,26495209923507576],[3332,1416,-13247605037567427,-13247603851021587],[3332,2188,-13247605037567427,-13247603851021587],[3332,2440,26495207853670452,26495209923507576],[3332,3208,-13247605036737943,-13247603851851071],[3336,0,7901209096355172,7901210982465140],[3336,192,-1975303104304567,-1975301915400511],[3336,264,17198207762730769,17198211165268399],[3336,394,13247603817873562,13247605070715450],[3336,396,13247603851851071,13247605036737943],[3336,456,13247603822418509,13247605066170506],[3336,640,-49039815252370900,-49039810262574998],[3336,904,-26495209986088162,-26495207791089865],[3336,1032,-26495211840725034,-26495205936452994],[3336,1098,-13247605066170506,-13247603822418509],[3336,1162,-26495209986088162,-26495207791089865],[3336,1164,-26495209923507576,-26495207853670452],[3336,1224,11272298146528817,11272305722355110],[3336,1280,17198207753821687,17198211174177485],[3336,1346,13247603822418509,13247605066170506],[3336,1410,13247603822418509,13247605066170506],[3336,1412,13247603851021587,13247605037567427],[3336,1472,-26495212221509964,-26495205555668056],[3336,1672,3950601803153038,3950608236257121],[3336,1920,-26495210008022388,-26495207769155642],[3336,2056,17198207753821687,17198211174177485],[3336,2122,13247603822418509,13247605066170506],[3336,2186,13247603822418509,13247605066170506],[3336,2188,13247603851021587,13247605037567427],[3336,2248,-26495212221509964,-26495205555668056],[3336,2304,-26495211840725034,-26495205936452994],[3336,2370,-13247605066170506,-13247603822418509],[3336,2434,-26495209986088162,-26495207791089865],[3336,2436,-26495209923507576,-26495207853670452],[3336,2496,11272298146528817,11272305722355110],[3336,2696,-26495210008022388,-26495207769155642],[3336,2944,3950601803153038,3950608236257121],[3336,3072,17198207762730769,17198211165268399],[3336,3202,13247603817873562,13247605070715450],[3336,3204,13247603851851071,13247605036737943],[3336,3264,13247603822418509,13247605066170506],[3336,3336,7901209096355172,7901210982465140],[3336,3528,-1975303104304567,-1975301915400511],[3336,3712,-26495209986088162,-26495207791089865],[3336,3976,-49039815252370900,-49039810262574998],[3336,131464,13247603827702546,13247605060886466],[3336,132232,-26495209971802464,-26495207805375563],[3336,132480,13247603826875223,13247605061713792],[3336,133256,13247603826875223,13247605061713792],[3336,133504,-26495209971802464,-26495207805375563],[3336,134272,13247603827702546,13247605060886466],[3336,524680,13247603826875223,13247605061713792],[3336,525448,-26495209977993164,-26495207799184865],[3336,525696,13247603821511848,13247605067077166],[3336,526472,13247603821511848,13247605067077166],[3336,526720,-26495209977993164,-26495207799184865],[3336,527488,13247603826875223,13247605061713792],[3336,1048704,24519905600979049,24519907156493899],[3336,1048968,-923386045,923386045],[3336,1049736,24519905292829456,24519907464643493],[3336,1049984,-929670022,929670021],[3336,1050760,-929670022,929670021],[3336,1051008,24519905292829456,24519907464643493],[3336,1051776,-923386045,923386045],[3336,1052040,24519905600979049,24519907156493899],[3336,2097280,-22544604485915178,-22544603251852693],[3336,2097544,-26495209971802464,-26495207805375563],[3336,2098312,3950603941250842,3950606098159314],[3336,2099584,3950603941250842,3950606098159314],[3336,2100352,-26495209971802464,-26495207805375563],[3336,2100616,-22544604485915178,-22544603251852693],[3336,33554560,-1975303106832961,-1975301912872117],[3336,33554824,-26495209923507576,-26495207853670452],[3336,33555592,24519905362432319,24519907395040631],[3336,33556864,24519905362432319,24519907395040631],[3336,33557632,-26495209923507576,-26495207853670452],[3336,33557896,-1975303106832961,-1975301912872117],[3392,130,1975301912872117,1975303106832961],[3392,450,15222905735290626,15222908173003467],[3392,456,13247603817873562,13247605070715450],[3392,514,-45089208976214568,-45089206499321174],[3392,834,-18594000484966090,-18593997213391625],[3392,1218,-52990419972049588,-52990415582306470],[3392,1224,-26495209986088162,-26495207791089865],[3392,1410,39742811609090167,39742815056676876],[3392,1416,13247603822418509,13247605066170506],[3392,1602,-2216932520,2216932523],[3392,1794,-26495210008022388,-26495207769155642],[3392,2242,39742811609090167,39742815056676876],[3392,2248,13247603822418509,13247605066170506],[3392,2434,-52990419972049588,-52990415582306470],[3392,2440,-26495209986088162,-26495207791089865],[3392,2626,-26495210008022388,-26495207769155642],[3392,2818,-2216932520,2216932523],[3392,3202,15222905735290626,15222908173003467],[3392,3208,13247603817873562,13247605070715450],[3392,3522,1975301912872117,1975303106832961],[3392,3586,-18594000484966090,-18593997213391625],[3392,3906,-45089208976214568,-45089206499321174],[3392,1048578,22544603251852693,22544604485915178],[3392,1048898,22544603251852693,22544604485915178],[3392,1051650,22544603251852693,22544604485915178],[3392,1051970,22544603251852693,22544604485915178],[3392,2097154,-22544604485915178,-22544603251852693],[3392,2097474,-22544604485915178,-22544603251852693],[3392,2100226,-22544604485915178,-22544603251852693],[3392,2100546,-22544604485915178,-22544603251852693],[3392,33554434,-1975303106832961,-1975301912872117],[3392,33554754,-1975303106832961,-1975301912872117],[3392,33557506,-1975303106832961,-1975301912872117],[3392,33557826,-1975303106832961,-1975301912872117],[3395,1025,-13247605037567427,-13247603851021587],[3395,1026,13247603851021587,13247605037567427],[3395,1345,-13247605037567427,-13247603851021587],[3395,1346,13247603851021587,13247605037567427],[3395,2049,13247603851021587,13247605037567427],[3395,2050,-13247605037567427,-13247603851021587],[3395,2369,13247603851021587,13247605037567427],[3395,2370,-13247605037567427,-13247603851021587],[3402,1026,13247603822418509,13247605066170506],[3402,1032,-13247605066170506,-13247603822418509],[3402,1346,13247603822418509,13247605066170506],[3402,1352,-13247605066170506,-13247603822418509],[3402,2050,-13247605066170506,-13247603822418509],[3402,2056,13247603822418509,13247605066170506],[3402,2370,-13247605066170506,-13247603822418509],[3402,2376,13247603822418509,13247605066170506],[3456,72,1975301915400511,1975303104304567],[3456,456,-26495209986088162,-26495207791089865],[3456,520,49039810262574998,49039815252370900],[3456,904,26495207791089865,26495209986088162],[3456,1218,15222905735290626,15222908173003467],[3456,1224,17198204896268894,17198214031730284],[3456,1346,-15222908173003467,-15222905735290626],[3456,1352,11272298146528817,11272305722355110],[3456,1672,-3950608236257121,-3950601803153038],[3456,1800,26495207769155642,26495210008022388],[3456,2242,-15222908173003467,-15222905735290626],[3456,2248,11272298146528817,11272305722355110],[3456,2370,15222905735290626,15222908173003467],[3456,2376,17198204896268894,17198214031730284],[3456,2696,26495207769155642,26495210008022388],[3456,2824,-3950608236257121,-3950601803153038],[3456,3144,-26495209986088162,-26495207791089865],[3456,3528,1975301915400511,1975303104304567],[3456,3592,26495207791089865,26495209986088162],[3456,3976,49039810262574998,49039815252370900],[3456,524680,-26495209971802464,-26495207805375563],[3456,525448,52990415906156016,52990419648200040],[3456,525576,-26495209977993164,-26495207799184865],[3456,526472,-26495209977993164,-26495207799184865],[3456,526600,52990415906156016,52990419648200040],[3456,527368,-26495209971802464,-26495207805375563],[3456,1048584,-24519907156493899,-24519905600979049],[3456,1048968,-923386045,923386045],[3456,1049736,-24519907464643493,-24519905292829456],[3456,1049864,-929670021,929670022],[3456,1050760,-929670021,929670022],[3456,1050888,-24519907464643493,-24519905292829456],[3456,1051656,-923386045,923386045],[3456,1052040,-24519907156493899,-24519905600979049],[3456,2097160,22544603251852693,22544604485915178],[3456,2097544,26495207805375563,26495209971802464],[3456,2098312,-3950606098159314,-3950603941250842],[3456,2099464,-3950606098159314,-3950603941250842],[3456,2100232,26495207805375563,26495209971802464],[3456,2100616,22544603251852693,22544604485915178],[3456,33554440,1975301912872117,1975303106832961],[3456,33554824,26495207853670452,26495209923507576],[3456,33555592,-24519907395040631,-24519905362432319],[3456,33556744,-24519907395040631,-24519905362432319],[3456,33557512,26495207853670452,26495209923507576],[3456,33557896,1975301912872117,1975303106832961],[3466,258,-13247605070715450,-13247603817873562],[3466,264,13247603817873562,13247605070715450],[3466,1026,26495207791089865,26495209986088162],[3466,1032,-26495209986088162,-26495207791089865],[3466,1410,13247603822418509,13247605066170506],[3466,1416,-13247605066170506,-13247603822418509],[3466,2050,-13247605066170506,-13247603822418509],[3466,2056,13247603822418509,13247605066170506],[3466,2434,-26495209986088162,-26495207791089865],[3466,2440,26495207791089865,26495209986088162],[3466,3202,13247603817873562,13247605070715450],[3466,3208,-13247605070715450,-13247603817873562],[3468,260,-13247605036737943,-13247603851851071],[3468,264,13247603851851071,13247605036737943],[3468,1028,26495207853670452,26495209923507576],[3468,1032,-26495209923507576,-26495207853670452],[3468,1412,13247603851021587,13247605037567427],[3468,1416,-13247605037567427,-13247603851021587],[3468,2052,-13247605037567427,-13247603851021587],[3468,2056,13247603851021587,13247605037567427],[3468,2436,-26495209923507576,-26495207853670452],[3468,2440,26495207853670452,26495209923507576],[3468,3204,13247603851851071,13247605036737943],[3468,3208,-13247605036737943,-13247603851851071],[3522,130,1975301912872117,1975303106832961],[3522,192,-1975303106832961,-1975301912872117],[3522,258,-13247605066170506,-13247603822418509],[3522,320,13247603822418509,13247605066170506],[3522,1026,-7321700231122540,-7321693598351231],[3522,1088,-3950609262610422,-3950600776799744],[3522,1152,13247603822418509,13247605066170506],[3522,1218,1975301912872117,1975303106832961],[3522,1280,-1975303106832961,-1975301912872117],[3522,1346,-13247605066170506,-13247603822418509],[3522,1410,-7321700231122540,-7321693598351231],[3522,1472,18593996459312884,18594001239044824],[3522,2050,18593996459312884,18594001239044824],[3522,2112,-7321700231122540,-7321693598351231],[3522,2176,-13247605066170506,-13247603822418509],[3522,2242,-1975303106832961,-1975301912872117],[3522,2304,1975301912872117,1975303106832961],[3522,2370,13247603822418509,13247605066170506],[3522,2434,-3950609262610422,-3950600776799744],[3522,2496,-7321700231122540,-7321693598351231],[3522,3202,13247603822418509,13247605066170506],[3522,3264,-13247605066170506,-13247603822418509],[3522,3330,-1975303106832961,-1975301912872117],[3522,3392,1975301912872117,1975303106832961],[3528,72,1975301915400511,1975303104304567],[3528,192,-1975303104304567,-1975301915400511],[3528,264,11272300718113942,11272303150769995],[3528,320,13247603817873562,13247605070715450],[3528,384,-24519908070687651,-24519904686785298],[3528,1032,-39742815056676876,-39742811609090167],[3528,1088,-24519908070687651,-24519904686785298],[3528,1152,66238019701775620,66238024741169450],[3528,1224,1975301915400511,1975303104304567],[3528,1280,-1975303104304567,-1975301915400511],[3528,1352,-39742815056676876,-39742811609090167],[3528,1416,11272300718113942,11272303150769995],[3528,1472,26495207635873864,26495210141304164],[3528,2056,26495207635873864,26495210141304164],[3528,2112,11272300718113942,11272303150769995],[3528,2176,-39742815056676876,-39742811609090167],[3528,2248,-1975303104304567,-1975301915400511],[3528,2304,1975301915400511,1975303104304567],[3528,2376,66238019701775620,66238024741169450],[3528,2440,-24519908070687651,-24519904686785298],[3528,2496,-39742815056676876,-39742811609090167],[3528,3144,-24519908070687651,-24519904686785298],[3528,3208,13247603817873562,13247605070715450],[3528,3264,11272300718113942,11272303150769995],[3528,3336,-1975303104304567,-1975301915400511],[3528,3456,1975301915400511,1975303104304567],[3586,650,13247603817873562,13247605070715450],[3586,706,13247603822418509,13247605066170506],[3586,834,-18594000484966090,-18593997213391625],[3586,1346,22544602288119128,22544605449648746],[3586,1672,-13247605070715450,-13247603817873562],[3586,1728,-13247605066170506,-13247603822418509],[3586,1856,-3950608236257121,-3950601803153038],[3586,2186,-13247605070715450,-13247603817873562],[3586,2242,-13247605066170506,-13247603822418509],[3586,2370,-3950608236257121,-3950601803153038],[3586,2880,22544602288119128,22544605449648746],[3586,3208,13247603817873562,13247605070715450],[3586,3264,13247603822418509,13247605066170506],[3586,3392,-18594000484966090,-18593997213391625],[3588,652,13247603851851071,13247605036737943],[3588,1672,-13247605036737943,-13247603851851071],[3588,2188,-13247605036737943,-13247603851851071],[3588,3208,13247603851851071,13247605036737943],[3592,384,3950603763253824,3950606276156332],[3592,520,-13247606143034927,-13247602745554085],[3592,650,-13247605070715450,-13247603817873562],[3592,652,-13247605036737943,-13247603851851071],[3592,712,-13247605066170506,-13247603822418509],[3592,904,26495207791089865,26495209986088162],[3592,1416,-22544605449648746,-22544602288119128],[3592,1536,13247602745554085,13247606143034927],[3592,1666,13247603817873562,13247605070715450],[3592,1668,13247603851851071,13247605036737943],[3592,1728,13247603822418509,13247605066170506],[3592,1920,-2216932520,2216932523],[3592,2056,13247602745554085,13247606143034927],[3592,2186,13247603817873562,13247605070715450],[3592,2188,13247603851851071,13247605036737943],[3592,2248,13247603822418509,13247605066170506],[3592,2440,-2216932520,2216932523],[3592,2944,-22544605449648746,-22544602288119128],[3592,3072,-13247606143034927,-13247602745554085],[3592,3202,-13247605070715450,-13247603817873562],[3592,3204,-13247605036737943,-13247603851851071],[3592,3264,-13247605066170506,-13247603822418509],[3592,3456,26495207791089865,26495209986088162],[3592,3976,3950603763253824,3950606276156332],[3592,131720,-13247605060886466,-13247603827702546],[3592,132736,13247603827702546,13247605060886466],[3592,133256,13247603827702546,13247605060886466],[3592,134272,-13247605060886466,-13247603827702546],[3592,524936,-13247605061713792,-13247603826875223],[3592,525952,13247603826875223,13247605061713792],[3592,526472,13247603826875223,13247605061713792],[3592,527488,-13247605061713792,-13247603826875223],[3592,1049224,26495207805375563,26495209971802464],[3592,1050240,-26495209971802464,-26495207805375563],[3592,1050760,-26495209971802464,-26495207805375563],[3592,1051776,26495207805375563,26495209971802464],[3592,2097280,-1975303127512529,-1975301892192548],[3592,2098312,-1975303127512529,-1975301892192548],[3592,2099840,-1975303127512529,-1975301892192548],[3592,2100872,-1975303127512529,-1975301892192548],[3592,16777344,1975301915400511,1975303104304567],[3592,16778376,1975301915400511,1975303104304567],[3592,16779904,1975301915400511,1975303104304567],[3592,16780936,1975301915400511,1975303104304567],[3592,33554560,-1975303104304567,-1975301915400511],[3592,33555592,-1975303104304567,-1975301915400511],[3592,33557120,-1975303104304567,-1975301915400511],[3592,33558152,-1975303104304567,-1975301915400511],[3648,706,-13247605066170506,-13247603822418509],[3648,712,-13247605070715450,-13247603817873562],[3648,834,18593997213391625,18594000484966090],[3648,1346,-22544605449648746,-22544602288119128],[3648,1666,13247603822418509,13247605066170506],[3648,1672,13247603817873562,13247605070715450],[3648,1794,3950601803153038,3950608236257121],[3648,2242,13247603822418509,13247605066170506],[3648,2248,13247603817873562,13247605070715450],[3648,2370,3950601803153038,3950608236257121],[3648,2818,-22544605449648746,-22544602288119128],[3648,3202,-13247605066170506,-13247603822418509],[3648,3208,-13247605070715450,-13247603817873562],[3648,3330,18593997213391625,18594000484966090],[3712,264,-3950606276156332,-3950603763253824],[3712,712,26495207791089865,26495209986088162],[3712,904,-26495209986088162,-26495207791089865],[3712,1416,22544602288119128,22544605449648746],[3712,1608,-26495209986088162,-26495207791089865],[3712,1800,-2216932523,2216932520],[3712,2248,-26495209986088162,-26495207791089865],[3712,2440,-2216932523,2216932520],[3712,2824,22544602288119128,22544605449648746],[3712,3144,26495207791089865,26495209986088162],[3712,3336,-26495209986088162,-26495207791089865],[3712,3976,-3950606276156332,-3950603763253824],[3712,524936,26495207805375563,26495209971802464],[3712,525832,-26495209971802464,-26495207805375563],[3712,526472,-26495209971802464,-26495207805375563],[3712,527368,26495207805375563,26495209971802464],[3712,1049224,-26495209971802464,-26495207805375563],[3712,1050120,26495207805375563,26495209971802464],[3712,1050760,26495207805375563,26495209971802464],[3712,1051656,-26495209971802464,-26495207805375563],[3712,2097160,1975301892192548,1975303127512529],[3712,2098312,1975301892192548,1975303127512529],[3712,2099720,1975301892192548,1975303127512529],[3712,2100872,1975301892192548,1975303127512529],[3712,16777224,-1975303104304567,-1975301915400511],[3712,16778376,-1975303104304567,-1975301915400511],[3712,16779784,-1975303104304567,-1975301915400511],[3712,16780936,-1975303104304567,-1975301915400511],[3712,33554440,1975301915400511,1975303104304567],[3712,33555592,1975301915400511,1975303104304567],[3712,33557000,1975301915400511,1975303104304567],[3712,33558152,1975301915400511,1975303104304567],[3722,514,13247603817873562,13247605070715450],[3722,520,-13247605070715450,-13247603817873562],[3722,1666,13247603817873562,13247605070715450],[3722,1672,-13247605070715450,-13247603817873562],[3722,2050,-13247605070715450,-13247603817873562],[3722,2056,13247603817873562,13247605070715450],[3722,3202,-13247605070715450,-13247603817873562],[3722,3208,13247603817873562,13247605070715450],[3724,516,13247603851851071,13247605036737943],[3724,520,-13247605036737943,-13247603851851071],[3724,1668,13247603851851071,13247605036737943],[3724,1672,-13247605036737943,-13247603851851071],[3724,2052,-13247605036737943,-13247603851851071],[3724,2056,13247603851851071,13247605036737943],[3724,3204,-13247605036737943,-13247603851851071],[3724,3208,13247603851851071,13247605036737943],[3778,514,13247603822418509,13247605066170506],[3778,576,-13247605066170506,-13247603822418509],[3778,1666,13247603822418509,13247605066170506],[3778,1728,-13247605066170506,-13247603822418509],[3778,2050,-13247605066170506,-13247603822418509],[3778,2112,13247603822418509,13247605066170506],[3778,3202,-13247605066170506,-13247603822418509],[3778,3264,13247603822418509,13247605066170506],[3784,520,-13247605066170506,-13247603822418509],[3784,576,-13247605070715450,-13247603817873562],[3784,640,26495207791089865,26495209986088162],[3784,1608,-26495209986088162,-26495207791089865],[3784,1672,13247603817873562,13247605070715450],[3784,1728,13247603822418509,13247605066170506],[3784,2056,13247603822418509,13247605066170506],[3784,2112,13247603817873562,13247605070715450],[3784,2176,-26495209986088162,-26495207791089865],[3784,3144,26495207791089865,26495209986088162],[3784,3208,-13247605070715450,-13247603817873562],[3784,3264,-13247605066170506,-13247603822418509],[3906,514,-45089208976214568,-45089206499321174],[3906,576,45089206499321174,45089208976214568],[3906,1026,-3950606276156332,-3950603763253824],[3906,1088,3950603763253824,3950606276156332],[3906,1794,-49039815252370900,-49039810262574998],[3906,1856,49039810262574998,49039815252370900],[3906,2050,49039810262574998,49039815252370900],[3906,2112,-49039815252370900,-49039810262574998],[3906,2818,3950603763253824,3950606276156332],[3906,2880,-3950606276156332,-3950603763253824],[3906,3330,45089206499321174,45089208976214568],[3906,3392,-45089208976214568,-45089206499321174],[3976,264,-3950606276156332,-3950603763253824],[3976,384,3950603763253824,3950606276156332],[3976,520,49039810262574998,49039815252370900],[3976,640,-49039815252370900,-49039810262574998],[3976,1800,45089206499321174,45089208976214568],[3976,1920,-45089208976214568,-45089206499321174],[3976,2056,-45089208976214568,-45089206499321174],[3976,2176,45089206499321174,45089208976214568],[3976,3336,-49039815252370900,-49039810262574998],[3976,3456,49039810262574998,49039815252370900],[3976,3592,3950603763253824,3950606276156332],[3976,3712,-3950606276156332,-3950603763253824],[32769,0,-53534633662818236,-53534570238879156],[32769,6,-133599767595705506,-133599715886872508],[32769,10,-7901214462754538,-7901205616065770],[32769,12,332041690197650200,332041742440092355],[32769,68,13247602765618499,13247606122970514],[32769,78,1975301917270118,1975303102434961],[32769,132,-26495211786596702,-26495205990581324],[32769,136,-3950605484998596,-3950604554411562],[32769,142,1975301917236486,1975303102468593],[32769,32769,-53534633662818236,-53534570238879156],[32769,32775,-133599767595705506,-133599715886872508],[32769,32779,-7901214462754538,-7901205616065770],[32769,32781,332041690197650200,332041742440092355],[32769,32837,13247602765618499,13247606122970514],[32769,32847,1975301917270118,1975303102434961],[32769,32901,-26495211786596702,-26495205990581324],[32769,32905,-3950605484998596,-3950604554411562],[32769,32911,1975301917236486,1975303102468593],[32769,131074,9296995124907418,9297003724271436],[32769,131076,-215060696800522478,-215060645033294693],[32769,131080,-7901214439889918,-7901205638930376],[32769,131086,-45089212389398762,-45089203086137004],[32769,131146,4648499087034444,4648500337554984],[32769,131210,-13247605066155522,-13247603822433492],[32769,131212,1975301917236486,1975303102468593],[32769,163843,9296995124907418,9297003724271436],[32769,163845,-215060696800522478,-215060645033294693],[32769,163849,-7901214439889918,-7901205638930376],[32769,163855,-45089212389398762,-45089203086137004],[32769,163915,4648499087034444,4648500337554984],[32769,163979,-13247605066155522,-13247603822433492],[32769,163981,1975301917236486,1975303102468593],[32769,524292,13247602765652131,13247606122936882],[32769,557061,13247602765652131,13247606122936882],[32769,655370,4648499087000812,4648500337588616],[32769,655372,1975301917270118,1975303102434961],[32769,688139,4648499087000812,4648500337588616],[32769,688141,1975301917270118,1975303102434961],[32769,67108868,8599101567032212,8599107896967374],[32769,67141637,8599101567032212,8599107896967374],[32769,67239946,4648499082464426,4648500342125002],[32769,67239948,1975301912872117,1975303106832961],[32769,67272715,4648499082464426,4648500342125002],[32769,67272717,1975301912872117,1975303106832961],[32769,1073741826,4648497418040009,4648502006549417],[32769,1073741828,-118376856345199404,-118376813229084520],[32769,1073741832,-4648502525987800,-4648496898601629],[32769,1073741838,-26495210075134854,-26495207702043174],[32769,1073774595,4648497418040009,4648502006549417],[32769,1073774597,-118376856345199404,-118376813229084520],[32769,1073774601,-4648502525987800,-4648496898601629],[32769,1073774607,-26495210075134854,-26495207702043174],[32769,1073872896,6623799135992659,6623805308301850],[32769,1073872902,6623801151062805,6623803293231701],[32769,1073872906,1975301912872117,1975303106832961],[32769,1073872908,47064508655028107,47064511840212707],[32769,1073905665,6623799135992659,6623805308301850],[32769,1073905671,6623801151062805,6623803293231701],[32769,1073905675,1975301912872117,1975303106832961],[32769,1073905677,47064508655028107,47064511840212707],[32769,140737488355332,13247602482884872,13247606405704134],[32769,140737488388101,13247602482884872,13247606405704134],[32770,0,-1395798588612732,-1395780181745792],[32770,5,126278022677218062,126278066975886174],[32770,9,20569293260874416,20569309457188365],[32770,12,-354586345522376890,-354586294853133538],[32770,65,-1975304235590111,-1975300784114970],[32770,68,-3950609211113582,-3950600828296569],[32770,72,8599101370269630,8599108093729955],[32770,77,-7321700188581701,-7321693640892082],[32770,132,-1975305281023604,-1975299738681472],[32770,136,3950601664814648,3950608374595511],[32770,141,11272300724520905,11272303144363030],[32770,204,-3950606255704424,-3950603783705734],[32770,32770,-1395798588612732,-1395780181745792],[32770,32775,126278022677218062,126278066975886174],[32770,32779,20569293260874416,20569309457188365],[32770,32782,-354586345522376890,-354586294853133538],[32770,32835,-1975304235590111,-1975300784114970],[32770,32838,-3950609211113582,-3950600828296569],[32770,32842,8599101370269630,8599108093729955],[32770,32847,-7321700188581701,-7321693640892082],[32770,32902,-1975305281023604,-1975299738681472],[32770,32906,3950601664814648,3950608374595511],[32770,32911,11272300724520905,11272303144363030],[32770,32974,-3950606255704424,-3950603783705734],[32770,131073,-9297003724271436,-9296995124907418],[32770,131076,20569293250811822,20569309467250933],[32770,131080,207738951876696445,207738996127646956],[32770,131085,58336806904098799,58336817460025984],[32770,131136,-4648501976324875,-4648497448264558],[32770,131141,-1975303102468593,-1975301917236486],[32770,131145,-6623803284297315,-6623801159997192],[32770,131148,22544601452067054,22544606285700820],[32770,131200,15920798744910351,15920804548563011],[32770,131209,13247603822433492,13247605066155522],[32770,131212,-22544606585988845,-22544601151779026],[32770,131272,26495207590564460,26495210186613570],[32770,163843,-9297003724271436,-9296995124907418],[32770,163846,20569293250811822,20569309467250933],[32770,163850,207738951876696445,207738996127646956],[32770,163855,58336806904098799,58336817460025984],[32770,163906,-4648501976324875,-4648497448264558],[32770,163911,-1975303102468593,-1975301917236486],[32770,163915,-6623803284297315,-6623801159997192],[32770,163918,22544601452067054,22544606285700820],[32770,163970,15920798744910351,15920804548563011],[32770,163979,13247603822433492,13247605066155522],[32770,163982,-22544606585988845,-22544601151779026],[32770,164042,26495207590564460,26495210186613570],[32770,524296,-4648502482185233,-4648496942404193],[32770,557066,-4648502482185233,-4648496942404193],[32770,655360,-15920803437427959,-15920799856045399],[32770,655369,-4648500337588616,-4648499087000812],[32770,655372,-3950606237024947,-3950603802385214],[32770,655432,-4648500367937248,-4648499056652179],[32770,655496,-3950606322255178,-3950603717154982],[32770,655552,-4648500367937248,-4648499056652179],[32770,688130,-15920803437427959,-15920799856045399],[32770,688139,-4648500337588616,-4648499087000812],[32770,688142,-3950606237024947,-3950603802385214],[32770,688202,-4648500367937248,-4648499056652179],[32770,688266,-3950606322255178,-3950603717154982],[32770,688322,-4648500367937248,-4648499056652179],[32770,67108872,-4648502525987800,-4648496898601629],[32770,67141642,-4648502525987800,-4648496898601629],[32770,67239936,-15920803465251079,-15920799828222285],[32770,67239945,-4648500342125002,-4648499082464426],[32770,67239948,-3950606243598603,-3950603795811556],[32770,67240008,-4648500367050864,-4648499057538562],[32770,67240072,-1975303161793801,-1975301857911278],[32770,67272706,-15920803465251079,-15920799828222285],[32770,67272715,-4648500342125002,-4648499082464426],[32770,67272718,-3950606243598603,-3950603795811556],[32770,67272778,-4648500367050864,-4648499057538562],[32770,67272842,-1975303161793801,-1975301857911278],[32770,67764232,8599103904459875,8599105559539709],[32770,67797002,8599103904459875,8599105559539709],[32770,1073741825,-4648502006549417,-4648497418040009],[32770,1073741828,8599101567032212,8599107896967374],[32770,1073741832,-3950609278673694,-3950600760736484],[32770,1073741837,22544601425886842,22544606311881030],[32770,1073741893,-1975303127852212,-1975301891852867],[32770,1073741900,13247603827010127,13247605061578886],[32770,1073741964,13247603821617226,13247605066971786],[32770,1073774595,-4648502006549417,-4648497418040009],[32770,1073774598,8599101567032212,8599107896967374],[32770,1073774602,-3950609278673694,-3950600760736484],[32770,1073774607,22544601425886842,22544606311881030],[32770,1073774663,-1975303127852212,-1975301891852867],[32770,1073774670,13247603827010127,13247605061578886],[32770,1073774734,13247603821617226,13247605066971786],[32770,1073872896,-1975304247543921,-1975300772161160],[32770,1073872901,-6623803293231701,-6623801151062805],[32770,1073872905,-1975303106832961,-1975301912872117],[32770,1073872908,-7321700242729086,-7321693586744675],[32770,1073872968,-1975303130040923,-1975301889664154],[32770,1073873032,-22544604489700504,-22544603248067364],[32770,1073905666,-1975304247543921,-1975300772161160],[32770,1073905671,-6623803293231701,-6623801151062805],[32770,1073905675,-1975303106832961,-1975301912872117],[32770,1073905678,-7321700242729086,-7321693586744675],[32770,1073905738,-1975303130040923,-1975301889664154],[32770,1073905802,-22544604489700504,-22544603248067364],[32770,1074397192,-1975303134066536,-1975301885638544],[32770,1074429962,-1975303134066536,-1975301885638544],[32770,1140981768,-3950606276156332,-3950603763253824],[32770,1141014538,-3950606276156332,-3950603763253824],[32772,0,-264466246035572172,-264466089763059996],[32772,3,19173508878057052,19173515069647194],[32772,9,-222382391306796628,-222382344356494327],[32772,10,-63683210088709754,-63683203085183716],[32772,129,17198207785323578,17198211142675593],[32772,130,-3950605484998596,-3950604554411562],[32772,136,-34514803440217642,-34514797551613446],[32772,32772,-264466246035572172,-264466089763059996],[32772,32775,19173508878057052,19173515069647194],[32772,32781,-222382391306796628,-222382344356494327],[32772,32782,-63683210088709754,-63683203085183716],[32772,32901,17198207785323578,17198211142675593],[32772,32902,-3950605484998596,-3950604554411562],[32772,32908,-34514803440217642,-34514797551613446],[32772,131073,207738951876696445,207738996127646956],[32772,131074,-7901214439889918,-7901205638930376],[32772,131080,496122563821345000,496122638017568840],[32772,131083,-3950606208609134,-3950603830801022],[32772,131200,-12549714288599261,-12549705214810465],[32772,131209,-1975303102468593,-1975301917236486],[32772,131210,8599103952864898,8599105511134688],[32772,163845,207738951876696445,207738996127646956],[32772,163846,-7901214439889918,-7901205638930376],[32772,163852,496122563821345000,496122638017568840],[32772,163855,-3950606208609134,-3950603830801022],[32772,163972,-12549714288599261,-12549705214810465],[32772,163981,-1975303102468593,-1975301917236486],[32772,163982,8599103952864898,8599105511134688],[32772,524289,-13247606122936882,-13247602765652131],[32772,524296,-12549714288599261,-12549705214810465],[32772,557061,-13247606122936882,-13247602765652131],[32772,557068,-12549714288599261,-12549705214810465],[32772,655360,-34514803440217642,-34514797551613446],[32772,655369,-1975303102434961,-1975301917270118],[32772,655370,-4648500337588616,-4648499087000812],[32772,655496,-9297000684250004,-9296998164928852],[32772,688132,-34514803440217642,-34514797551613446],[32772,688141,-1975303102434961,-1975301917270118],[32772,688142,-4648500337588616,-4648499087000812],[32772,688268,-9297000684250004,-9296998164928852],[32772,67108865,-8599107896967374,-8599101567032212],[32772,67108872,-7901214439889918,-7901205638930376],[32772,67141637,-8599107896967374,-8599101567032212],[32772,67141644,-7901214439889918,-7901205638930376],[32772,67239936,-63683210088709754,-63683203085183716],[32772,67239945,-1975303106832961,-1975301912872117],[32772,67239946,-4648500342125002,-4648499082464426],[32772,67240072,-4648500337588616,-4648499087000812],[32772,67272708,-63683210088709754,-63683203085183716],[32772,67272717,-1975303106832961,-1975301912872117],[32772,67272718,-4648500342125002,-4648499082464426],[32772,67272844,-4648500337588616,-4648499087000812],[32772,67633152,-3950605484998596,-3950604554411562],[32772,67665924,-3950605484998596,-3950604554411562],[32772,67764232,8599103952864898,8599105511134688],[32772,67797004,8599103952864898,8599105511134688],[32772,1073741825,118376814987968068,118376854586315852],[32772,1073741826,-8599107896967374,-8599101567032212],[32772,1073741832,207738951876696445,207738996127646956],[32772,1073741952,-13247606122936882,-13247602765652131],[32772,1073774597,118376814987968068,118376854586315852],[32772,1073774598,-8599107896967374,-8599101567032212],[32772,1073774604,207738951876696445,207738996127646956],[32772,1073774724,-13247606122936882,-13247602765652131],[32772,1073872896,-222382391306796628,-222382344356494327],[32772,1073872905,-53688314836179204,-53688310103356116],[32772,1073872906,-1975303106832961,-1975301912872117],[32772,1073873032,-1975303102434961,-1975301917270118],[32772,1073905668,-222382391306796628,-222382344356494327],[32772,1073905677,-53688314836179204,-53688310103356116],[32772,1073905678,-1975303106832961,-1975301912872117],[32772,1073905804,-1975303102434961,-1975301917270118],[32772,1074266112,17198207785323578,17198211142675593],[32772,1074298884,17198207785323578,17198211142675593],[32772,1074397192,-1975303102468593,-1975301917236486],[32772,1074429964,-1975303102468593,-1975301917236486],[32772,1140850688,19173508878057052,19173515069647194],[32772,1140883460,19173508878057052,19173515069647194],[32772,1140981768,-3950606208609134,-3950603830801022],[32772,1141014540,-3950606208609134,-3950603830801022],[32772,140737488355329,-13247606405704134,-13247602482884872],[32772,140737488355336,-13247606302871576,-13247602585717435],[32772,140737488388101,-13247606405704134,-13247602482884872],[32772,140737488388108,-13247606302871576,-13247602585717435],[32772,140737488486400,22544602005389605,22544605732378260],[32772,140737488519172,22544602005389605,22544605732378260],[32772,140737555464192,-9296999899749346,-9296998949429508],[32772,140737555496964,-9296999899749346,-9296998949429508],[32772,140738562097152,-5346396222573668,-5346392587195036],[32772,140738562129924,-5346396222573668,-5346392587195036],[32775,0,11851812927156194,11851817191074274],[32775,3,19173508878057052,19173515069647194],[32775,5,126278022677218062,126278066975886174],[32775,6,-133599767595705506,-133599715886872508],[32775,72,1975301917236486,1975303102468593],[32775,75,15222905744246613,15222908164047479],[32775,77,39742811633466510,39742815032300530],[32775,78,-52990419943081622,-52990415611274431],[32775,139,13247603821617226,13247605066971786],[32775,141,13247603826989498,13247605061599516],[32775,142,-26495209977773508,-26495207799404518],[32775,32769,-133599767595705506,-133599715886872508],[32775,32770,126278022677218062,126278066975886174],[32775,32772,19173508878057052,19173515069647194],[32775,32775,11851812927156194,11851817191074274],[32775,32841,-52990419943081622,-52990415611274431],[32775,32842,39742811633466510,39742815032300530],[32775,32844,15222905744246613,15222908164047479],[32775,32847,1975301917236486,1975303102468593],[32775,32905,-26495209977773508,-26495207799404518],[32775,32906,13247603826989498,13247605061599516],[32775,32908,13247603821617226,13247605066971786],[32775,131080,-3950606208609134,-3950603830801022],[32775,131083,-30445818299541794,-30445809517046374],[32775,131085,39742811571512963,39742815094254094],[32775,131086,-13247609394938084,-13247599493650961],[32775,131136,-1975303102468593,-1975301917236486],[32775,131139,-1975303102468593,-1975301917236486],[32775,163849,-13247609394938084,-13247599493650961],[32775,163850,39742811571512963,39742815094254094],[32775,163852,-30445818299541794,-30445809517046374],[32775,163855,-3950606208609134,-3950603830801022],[32775,163908,-1975303102468593,-1975301917236486],[32775,163911,-1975303102468593,-1975301917236486],[32775,1073741832,-3950606276156332,-3950603763253824],[32775,1073741835,-28470512991844104,-28470509805039004],[32775,1073741837,6623801151062805,6623803293231701],[32775,1073741838,17896101969228851,17896106343949595],[32775,1073741888,-1975303127852212,-1975301891852867],[32775,1073741891,-1975303127852212,-1975301891852867],[32775,1073774601,17896101969228851,17896106343949595],[32775,1073774602,6623801151062805,6623803293231701],[32775,1073774604,-28470512991844104,-28470509805039004],[32775,1073774607,-3950606276156332,-3950603763253824],[32775,1073774660,-1975303127852212,-1975301891852867],[32775,1073774663,-1975303127852212,-1975301891852867],[32775,1073872901,-6623803293231701,-6623801151062805],[32775,1073872902,6623801151062805,6623803293231701],[32775,1073905665,6623801151062805,6623803293231701],[32775,1073905666,-6623803293231701,-6623801151062805],[32776,0,-263722470861251000,-263722338607825936],[32776,3,20569296515201551,20569306202861252],[32776,5,-120352160799604924,-120352113794384070],[32776,6,320189871195698486,320189931323813606],[32776,68,-3950608433100829,-3950601606309328],[32776,71,-13247605061599516,-13247603826989498],[32776,129,-1975305295246081,-1975299724458993],[32776,130,-19871412444254049,-19871400888629471],[32776,132,296947377306566843,296947428089998092],[32776,135,-39742815032300530,-39742811633466510],[32776,1028,-1975304034893986,-1975300984811094],[32776,32776,-263722470861251000,-263722338607825936],[32776,32779,20569296515201551,20569306202861252],[32776,32781,-120352160799604924,-120352113794384070],[32776,32782,320189871195698486,320189931323813606],[32776,32844,-3950608433100829,-3950601606309328],[32776,32847,-13247605061599516,-13247603826989498],[32776,32905,-1975305295246081,-1975299724458993],[32776,32906,-19871412444254049,-19871400888629471],[32776,32908,296947377306566843,296947428089998092],[32776,32911,-39742815032300530,-39742811633466510],[32776,33804,-1975304034893986,-1975300984811094],[32776,131073,20569293250811822,20569309467250933],[32776,131074,-215060696800522478,-215060645033294693],[32776,131076,189346333623047312,189346485052598824],[32776,131079,-35792211250117282,-35792205376239611],[32776,131136,8599101150291472,8599108313708112],[32776,131200,-245506516979052740,-245506452671352604],[32776,131205,-24519908074966154,-24519904682506797],[32776,131206,19871400888629471,19871412444254049],[32776,132096,-4648501315670959,-4648498108918473],[32776,163849,20569293250811822,20569309467250933],[32776,163850,-215060696800522478,-215060645033294693],[32776,163852,189346333623047312,189346485052598824],[32776,163855,-35792211250117282,-35792205376239611],[32776,163912,8599101150291472,8599108313708112],[32776,163976,-245506516979052740,-245506452671352604],[32776,163981,-24519908074966154,-24519904682506797],[32776,163982,19871400888629471,19871412444254049],[32776,164872,-4648501315670959,-4648498108918473],[32776,524290,15920798873942155,15920804419531205],[32776,524292,23242489006570695,23242508116376415],[32776,524416,-4795158453,4795158459],[32776,557066,15920798873942155,15920804419531205],[32776,557068,23242489006570695,23242508116376415],[32776,557192,-4795158453,4795158459],[32776,655360,-48767744686891983,-48767696654383246],[32776,655366,8599103045112288,8599106418887301],[32776,655490,8599102944565871,8599106519433716],[32776,655492,15222903999406109,15222909908887987],[32776,655552,4648499056652179,4648500367937248],[32776,656512,1975301912872117,1975303106832961],[32776,688136,-48767744686891983,-48767696654383246],[32776,688142,8599103045112288,8599106418887301],[32776,688266,8599102944565871,8599106519433716],[32776,688268,15222903999406109,15222909908887987],[32776,688328,4648499056652179,4648500367937248],[32776,689288,1975301912872117,1975303106832961],[32776,1179648,6623799524173159,6623804920121353],[32776,1212424,6623799524173159,6623804920121353],[32776,1572864,11272301510581248,11272302358302688],[32776,1605640,11272301510581248,11272302358302688],[32776,1704064,-13247605037567427,-13247603851021587],[32776,1736840,-13247605037567427,-13247603851021587],[32776,67108866,15920798832463209,15920804461010156],[32776,67108868,20569293250811822,20569309467250933],[32776,67108992,15920798874182437,15920804419290919],[32776,67141642,15920798832463209,15920804461010156],[32776,67141644,20569293250811822,20569309467250933],[32776,67141768,15920798874182437,15920804419290919],[32776,67239936,-120352160799604924,-120352113794384070],[32776,67239942,8599103034002244,8599106429997343],[32776,67240066,6623801086208550,6623803358085955],[32776,67240068,8599103045112288,8599106418887301],[32776,67272712,-120352160799604924,-120352113794384070],[32776,67272718,8599103034002244,8599106429997343],[32776,67272842,6623801086208550,6623803358085955],[32776,67272844,8599103045112288,8599106418887301],[32776,67633152,-13945502255682351,-13945496018085931],[32776,67665928,-13945502255682351,-13945496018085931],[32776,67764226,-8599105559539709,-8599103904459875],[32776,67764228,15920800076521641,15920803216951721],[32776,67764352,-21846710653066666,-21846707699521935],[32776,67797002,-8599105559539709,-8599103904459875],[32776,67797004,15920800076521641,15920803216951721],[32776,67797128,-21846710653066666,-21846707699521935],[32776,268566528,-4648505765491449,-4648493659097978],[32776,268599304,-4648505765491449,-4648493659097978],[32776,268959744,-9296999886451704,-9296998962727152],[32776,268992520,-9296999886451704,-9296998962727152],[32776,269090944,4648499056652180,4648500367937249],[32776,269123720,4648499056652180,4648500367937249],[32776,335544320,11272301474344214,11272302394539722],[32776,335577096,11272301474344214,11272302394539722],[32776,1073741825,15920798832463209,15920804461010156],[32776,1073741826,3950600760736484,3950609278673694],[32776,1073741828,-215060696800522478,-215060645033294693],[32776,1073741831,3950603763253824,3950606276156332],[32776,1073741952,3950600812107830,3950609227302328],[32776,1073741957,1975301891852867,1975303127852212],[32776,1073741958,-26495209977752878,-26495207799425147],[32776,1073774601,15920798832463209,15920804461010156],[32776,1073774602,3950600760736484,3950609278673694],[32776,1073774604,-215060696800522478,-215060645033294693],[32776,1073774607,3950603763253824,3950606276156332],[32776,1073774728,3950600812107830,3950609227302328],[32776,1073774733,1975301891852867,1975303127852212],[32776,1073774734,-26495209977752878,-26495207799425147],[32776,1073872896,320189871195698486,320189931323813606],[32776,1073872901,8599103034002244,8599106429997343],[32776,1073872902,-3950609278673694,-3950600760736484],[32776,1073873026,24519905293069738,24519907464403207],[32776,1073873028,-3950609227302328,-3950600812107830],[32776,1073905672,320189871195698486,320189931323813606],[32776,1073905677,8599103034002244,8599106429997343],[32776,1073905678,-3950609278673694,-3950600760736484],[32776,1073905802,24519905293069738,24519907464403207],[32776,1073905804,-3950609227302328,-3950600812107830],[32776,1074266112,-1975305295486367,-1975299724218711],[32776,1074298888,-1975305295486367,-1975299724218711],[32776,1074397186,1975301885638544,1975303134066536],[32776,1074397188,-24519908074966154,-24519904682506797],[32776,1074397312,3950603783705734,3950606255704424],[32776,1074429962,1975301885638544,1975303134066536],[32776,1074429964,-24519908074966154,-24519904682506797],[32776,1074430088,3950603783705734,3950606255704424],[32776,1140850688,20569296515201551,20569306202861252],[32776,1140883464,20569296515201551,20569306202861252],[32776,1140981762,3950603763253824,3950606276156332],[32776,1140981764,-35792211250117282,-35792205376239611],[32776,1140981888,3950603784385098,3950606255025060],[32776,1141014538,3950603763253824,3950606276156332],[32776,1141014540,-35792211250117282,-35792205376239611],[32776,1141014664,3950603784385098,3950606255025060],[32776,1141506048,47064508855883441,47064511639357377],[32776,1141538824,47064508855883441,47064511639357377],[32776,1409417216,1975301889643525,1975303130061553],[32776,1409449992,1975301889643525,1975303130061553],[32776,17592186175488,-11272305103287715,-11272298765596219],[32776,17592186208264,-11272305103287715,-11272298765596219],[32776,17592253153280,-9296999899749346,-9296998949429508],[32776,17592253186056,-9296999899749346,-9296998949429508],[32776,17593327026176,22544603247468479,22544604490299392],[32776,17593327058952,22544603247468479,22544604490299392],[32776,140737488355332,13247602585717435,13247606302871576],[32776,140737488388108,13247602585717435,13247606302871576],[32776,140737488486400,-1975304301048867,-1975300718656210],[32776,140737488519176,-1975304301048867,-1975300718656210],[32776,140738629337088,-13247605070627222,-13247603817961795],[32776,140738629369864,-13247605070627222,-13247603817961795],[32779,0,33237389706387162,33237395650918114],[32779,3,20569296515201551,20569306202861252],[32779,9,20569293260874416,20569309457188365],[32779,10,-7901214462754538,-7901205616065770],[32779,68,-7321700188594704,-7321693640879080],[32779,71,-47064511822081843,-47064508673158980],[32779,78,39742811633487139,39742815032279900],[32779,132,-39742815032279900,-39742811633487139],[32779,141,-51015117307080439,-51015113227570542],[32779,142,11272298195290642,11272305673593300],[32779,32769,-7901214462754538,-7901205616065770],[32779,32770,20569293260874416,20569309457188365],[32779,32776,20569296515201551,20569306202861252],[32779,32779,33237389706387162,33237395650918114],[32779,32837,39742811633487139,39742815032279900],[32779,32844,-47064511822081843,-47064508673158980],[32779,32847,-7321700188594704,-7321693640879080],[32779,32901,11272298195290642,11272305673593300],[32779,32902,-51015117307080439,-51015113227570542],[32779,32911,-39742815032279900,-39742811633487139],[32779,131076,-35792211250117282,-35792205376239611],[32779,131079,56941019665500378,56941025928265826],[32779,131085,-79485631987828172,-79485621343705900],[32779,131086,-13247609434184624,-13247599454404401],[32779,131136,-1975303102468593,-1975301917236486],[32779,131139,-1975303102468593,-1975301917236486],[32779,131209,6623801159997192,6623803284297315],[32779,131210,-6623803284297315,-6623801159997192],[32779,163845,-13247609434184624,-13247599454404401],[32779,163846,-79485631987828172,-79485621343705900],[32779,163852,56941019665500378,56941025928265826],[32779,163855,-35792211250117282,-35792205376239611],[32779,163912,-1975303102468593,-1975301917236486],[32779,163915,-1975303102468593,-1975301917236486],[32779,163969,-6623803284297315,-6623801159997192],[32779,163970,6623801159997192,6623803284297315],[32779,655369,-4648500337588616,-4648499087000812],[32779,655370,4648499087000812,4648500337588616],[32779,688129,4648499087000812,4648500337588616],[32779,688130,-4648500337588616,-4648499087000812],[32779,67239945,-4648500342125002,-4648499082464426],[32779,67239946,4648499082464426,4648500342125002],[32779,67272705,4648499082464426,4648500342125002],[32779,67272706,-4648500342125002,-4648499082464426],[32779,1073741831,28470509805039004,28470512991844104],[32779,1073741837,-8599107896967374,-8599101567032212],[32779,1073741838,-19871408238006792,-19871405094876730],[32779,1073774597,-19871408238006792,-19871405094876730],[32779,1073774598,-8599107896967374,-8599101567032212],[32779,1073774604,28470509805039004,28470512991844104],[32779,1073872905,-1975303106832961,-1975301912872117],[32779,1073872906,1975301912872117,1975303106832961],[32779,1073905665,1975301912872117,1975303106832961],[32779,1073905666,-1975303106832961,-1975301912872117],[32781,0,-10692792130513058,-10692785489024336],[32781,5,-120352160799604924,-120352113794384070],[32781,9,-222382391306796628,-222382344356494327],[32781,12,332041690197650200,332041742440092355],[32781,71,-15222908164034477,-15222905744259616],[32781,78,15222905744259616,15222908164034477],[32781,130,1975301917270118,1975303102434961],[32781,135,11272298195303644,11272305673580297],[32781,139,-26495209977752878,-26495207799425147],[32781,142,17198204951509383,17198213976489780],[32781,32769,332041690197650200,332041742440092355],[32781,32772,-222382391306796628,-222382344356494327],[32781,32776,-120352160799604924,-120352113794384070],[32781,32781,-10692792130513058,-10692785489024336],[32781,32835,15222905744259616,15222908164034477],[32781,32842,-15222908164034477,-15222905744259616],[32781,32899,17198204951509383,17198213976489780],[32781,32902,-26495209977752878,-26495207799425147],[32781,32906,11272298195303644,11272305673580297],[32781,32911,1975301917270118,1975303102434961],[32781,131074,-45089212389398762,-45089203086137004],[32781,131079,-13247609434184624,-13247599454404401],[32781,131083,-13247609394938084,-13247599493650961],[32781,131086,-18594006149950118,-18593991548407578],[32781,131200,1975301917236486,1975303102468593],[32781,131205,-26495209992202640,-26495207784975390],[32781,131209,11272298183630328,11272305685253609],[32781,131212,17198204925419946,17198214002579226],[32781,163843,-18594006149950118,-18593991548407578],[32781,163846,-13247609394938084,-13247599493650961],[32781,163850,-13247609434184624,-13247599454404401],[32781,163855,-45089212389398762,-45089203086137004],[32781,163969,17198204925419946,17198214002579226],[32781,163972,11272298183630328,11272305685253609],[32781,163976,-26495209992202640,-26495207784975390],[32781,163981,1975301917236486,1975303102468593],[32781,655369,-15222908168562909,-15222905739731186],[32781,655372,15222905739731186,15222908168562909],[32781,688129,15222905739731186,15222908168562909],[32781,688132,-15222908168562909,-15222905739731186],[32781,67239945,-15222908177460183,-15222905730833912],[32781,67239948,15222905730833912,15222908177460183],[32781,67272705,15222905730833912,15222908177460183],[32781,67272708,-15222908177460183,-15222905730833912],[32781,1073741826,-22544606311881030,-22544601425886842],[32781,1073741831,-6623803293231701,-6623801151062805],[32781,1073741835,8599101567032212,8599107896967374],[32781,1073741838,-24519907495012400,-24519905262460552],[32781,1073741952,1975301891852867,1975303127852212],[32781,1073741961,26495207799425147,26495209977752878],[32781,1073741964,-24519907468051532,-24519905289421414],[32781,1073774595,-24519907495012400,-24519905262460552],[32781,1073774598,8599101567032212,8599107896967374],[32781,1073774602,-6623803293231701,-6623801151062805],[32781,1073774607,-22544606311881030,-22544601425886842],[32781,1073774721,-24519907468051532,-24519905289421414],[32781,1073774724,26495207799425147,26495209977752878],[32781,1073774733,1975301891852867,1975303127852212],[32781,1073872896,1975301882939439,1975303136765642],[32781,1073872901,6623801151062805,6623803293231701],[32781,1073872905,-697899269935994,-697890115243256],[32781,1073872908,-3950608814469977,-3950601224940198],[32781,1073905665,-3950608814469977,-3950601224940198],[32781,1073905668,-697899269935994,-697890115243256],[32781,1073905672,6623801151062805,6623803293231701],[32781,1073905677,1975301882939439,1975303136765642],[32782,0,-98079629592578584,-98079621437313222],[32782,6,320189871195698486,320189931323813606],[32782,10,-63683210088709754,-63683203085183716],[32782,12,-354586345522376890,-354586294853133538],[32782,65,-13247605061578886,-13247603827010127],[32782,71,49039810731968040,49039814782977862],[32782,75,-15222908164047479,-15222905744246613],[32782,77,-47064511822048211,-47064508673192612],[32782,129,11272300724575166,11272303144308768],[32782,135,-51015117307046807,-51015113227604174],[32782,139,13247603827010127,13247605061578886],[32782,141,49039810731968040,49039814782977862],[32782,198,-22544605576438951,-22544602161328920],[32782,204,22544602161328920,22544605576438951],[32782,32770,-354586345522376890,-354586294853133538],[32782,32772,-63683210088709754,-63683203085183716],[32782,32776,320189871195698486,320189931323813606],[32782,32782,-98079629592578584,-98079621437313222],[32782,32835,-47064511822048211,-47064508673192612],[32782,32837,-15222908164047479,-15222905744246613],[32782,32841,49039810731968040,49039814782977862],[32782,32847,-13247605061578886,-13247603827010127],[32782,32899,49039810731968040,49039814782977862],[32782,32901,13247603827010127,13247605061578886],[32782,32905,-51015117307046807,-51015113227604174],[32782,32911,11272300724575166,11272303144308768],[32782,32962,22544602161328920,22544605576438951],[32782,32968,-22544605576438951,-22544602161328920],[32782,131073,58336806904098799,58336817460025984],[32782,131079,-79485631987828172,-79485621343705900],[32782,131083,39742811571512963,39742815094254094],[32782,131085,98079621396013726,98079629633878072],[32782,131136,26495207710839176,26495210066338854],[32782,131142,-17896106317239678,-17896101995938767],[32782,131146,19871405028479484,19871408304404039],[32782,131148,24519905280236082,24519907477236870],[32782,131200,-24519907697962539,-24519905059510412],[32782,131206,13247602285191671,13247606603397346],[32782,131210,-13247605939232943,-13247602949356073],[32782,131212,-24519908352868090,-24519904404604862],[32782,163843,98079621396013726,98079629633878072],[32782,163845,39742811571512963,39742815094254094],[32782,163849,-79485631987828172,-79485621343705900],[32782,163855,58336806904098799,58336817460025984],[32782,163906,24519905280236082,24519907477236870],[32782,163908,19871405028479484,19871408304404039],[32782,163912,-17896106317239678,-17896101995938767],[32782,163918,26495207710839176,26495210066338854],[32782,163970,-24519908352868090,-24519904404604862],[32782,163972,-13247605939232943,-13247602949356073],[32782,163976,13247602285191671,13247606603397346],[32782,163982,-24519907697962539,-24519905059510412],[32782,655366,6623801159997192,6623803284297315],[32782,655370,-4648500337588616,-4648499087000812],[32782,655372,-1975303102434961,-1975301917270118],[32782,688130,-1975303102434961,-1975301917270118],[32782,688132,-4648500337588616,-4648499087000812],[32782,688136,6623801159997192,6623803284297315],[32782,67239942,6623801151062805,6623803293231701],[32782,67239946,-4648500342125002,-4648499082464426],[32782,67239948,-1975303106832961,-1975301912872117],[32782,67272706,-1975303106832961,-1975301912872117],[32782,67272708,-4648500342125002,-4648499082464426],[32782,67272712,6623801151062805,6623803293231701],[32782,1073741825,26495207702043174,26495210075134854],[32782,1073741831,-17896106343949595,-17896101969228851],[32782,1073741835,19871405094876730,19871408238006792],[32782,1073741837,24519905262460552,24519907495012400],[32782,1073741888,13247603827010127,13247605061578886],[32782,1073741898,13247603827010127,13247605061578886],[32782,1073741952,-13247605061578886,-13247603827010127],[32782,1073741962,-13247605061578886,-13247603827010127],[32782,1073774595,24519905262460552,24519907495012400],[32782,1073774597,19871405094876730,19871408238006792],[32782,1073774601,-17896106343949595,-17896101969228851],[32782,1073774607,26495207702043174,26495210075134854],[32782,1073774660,13247603827010127,13247605061578886],[32782,1073774670,13247603827010127,13247605061578886],[32782,1073774724,-13247605061578886,-13247603827010127],[32782,1073774734,-13247605061578886,-13247603827010127],[32782,1073872896,-13247605070627222,-13247603817961795],[32782,1073872902,49039810709439166,49039814805506726],[32782,1073872906,-15222908177460183,-15222905730833912],[32782,1073872908,-47064511840212707,-47064508655028107],[32782,1073905666,-47064511840212707,-47064508655028107],[32782,1073905668,-15222908177460183,-15222905730833912],[32782,1073905672,49039810709439166,49039814805506726],[32782,1073905678,-13247605070627222,-13247603817961795],[32832,3,1975300784114970,1975304235590111],[32832,5,-13247606122970514,-13247602765618499],[32832,6,3950600828296569,3950609211113582],[32832,10,-8599108093729955,-8599101370269630],[32832,12,3950601606309328,3950608433100829],[32832,15,18593996492884744,18594001205472974],[32832,132,1975300413869816,1975304605835260],[32832,135,-13247605061599516,-13247603826989498],[32832,136,-11272305289278916,-11272298579605019],[32832,141,-13247605061599516,-13247603826989498],[32832,142,49039810292025454,49039815222920444],[32832,263,-13247605033203059,-13247603855385956],[32832,270,1975301917270118,1975303102434961],[32832,396,1975301917236486,1975303102468593],[32832,1164,22544603307191776,22544604430576096],[32832,32835,1975300784114970,1975304235590111],[32832,32837,-13247606122970514,-13247602765618499],[32832,32838,3950600828296569,3950609211113582],[32832,32842,-8599108093729955,-8599101370269630],[32832,32844,3950601606309328,3950608433100829],[32832,32847,18593996492884744,18594001205472974],[32832,32964,1975300413869816,1975304605835260],[32832,32967,-13247605061599516,-13247603826989498],[32832,32968,-11272305289278916,-11272298579605019],[32832,32973,-13247605061599516,-13247603826989498],[32832,32974,49039810292025454,49039815222920444],[32832,33095,-13247605033203059,-13247603855385956],[32832,33102,1975301917270118,1975303102434961],[32832,33228,1975301917236486,1975303102468593],[32832,33996,22544603307191776,22544604430576096],[32832,131074,4648497448264558,4648501976324875],[32832,131079,1975301917236486,1975303102468593],[32832,131080,-8599108313708112,-8599101150291472],[32832,131083,1975301917236486,1975303102468593],[32832,131086,-22544606285700820,-22544601452067054],[32832,131200,6623797698355075,6623806745939431],[32832,131210,-22544606464959780,-22544601272808088],[32832,131212,18593996439502170,18594001258855540],[32832,131338,4648499087034444,4648500337554984],[32832,131464,-13247605066155522,-13247603822433492],[32832,132232,1975301917236486,1975303102468593],[32832,163906,4648497448264558,4648501976324875],[32832,163911,1975301917236486,1975303102468593],[32832,163912,-8599108313708112,-8599101150291472],[32832,163915,1975301917236486,1975303102468593],[32832,163918,-22544606285700820,-22544601452067054],[32832,164032,6623797698355075,6623806745939431],[32832,164042,-22544606464959780,-22544601272808088],[32832,164044,18593996439502170,18594001258855540],[32832,164170,4648499087034444,4648500337554984],[32832,164296,-13247605066155522,-13247603822433492],[32832,165064,1975301917236486,1975303102468593],[32832,524416,4648498045480102,4648501379109327],[32832,524428,1975301885115096,1975303134589986],[32832,557248,4648498045480102,4648501379109327],[32832,557260,1975301885115096,1975303134589986],[32832,655360,4648497918699427,4648501505889997],[32832,655370,4648499056652179,4648500367937248],[32832,655490,4648499056652179,4648500367937248],[32832,655492,1975301885115096,1975303134589986],[32832,655496,-22544606482912750,-22544601254855122],[32832,655744,4648499087000812,4648500337588616],[32832,656512,1975301917270118,1975303102434961],[32832,688192,4648497918699427,4648501505889997],[32832,688202,4648499056652179,4648500367937248],[32832,688322,4648499056652179,4648500367937248],[32832,688324,1975301885115096,1975303134589986],[32832,688328,-22544606482912750,-22544601254855122],[32832,688576,4648499087000812,4648500337588616],[32832,689344,1975301917270118,1975303102434961],[32832,1704064,-13247605033169427,-13247603855419588],[32832,1736896,-13247605033169427,-13247603855419588],[32832,67239946,4648499057538562,4648500367050864],[32832,67240072,1975301857911278,1975303161793801],[32832,67272778,4648499057538562,4648500367050864],[32832,67272904,1975301857911278,1975303161793801],[32832,67764352,-13247605096148654,-13247603792440361],[32832,67797184,-13247605096148654,-13247603792440361],[32832,269090944,4648499059714221,4648500364875210],[32832,269123776,4648499059714221,4648500364875210],[32832,1073741831,1975301891852867,1975303127852212],[32832,1073741838,-13247605061578886,-13247603827010127],[32832,1073741964,-13247605066971786,-13247603821617226],[32832,1073774663,1975301891852867,1975303127852212],[32832,1073774670,-13247605061578886,-13247603827010127],[32832,1073774796,-13247605066971786,-13247603821617226],[32832,1073872906,1975301889664154,1975303130040923],[32832,1073873032,22544603248067364,22544604489700504],[32832,1073905738,1975301889664154,1975303130040923],[32832,1073905864,22544603248067364,22544604489700504],[32832,1074397312,1975301885638544,1975303134066536],[32832,1074430144,1975301885638544,1975303134066536],[32835,3,1975300784114970,1975304235590111],[32835,12,13247603826989498,13247605061599516],[32835,15,45089206614383552,45089208861152192],[32835,65,-1975304235590111,-1975300784114970],[32835,77,-47064511822048211,-47064508673192612],[32835,78,15222905744259616,15222908164034477],[32835,132,-13247605061599516,-13247603826989498],[32835,198,-13247605061599516,-13247603826989498],[32835,260,-13247605033203059,-13247603855385956],[32835,326,-13247605033203059,-13247603855385956],[32835,32770,-1975304235590111,-1975300784114970],[32835,32781,15222905744259616,15222908164034477],[32835,32782,-47064511822048211,-47064508673192612],[32835,32832,1975300784114970,1975304235590111],[32835,32844,45089206614383552,45089208861152192],[32835,32847,13247603826989498,13247605061599516],[32835,32901,-13247605061599516,-13247603826989498],[32835,32967,-13247605061599516,-13247603826989498],[32835,33029,-13247605033203059,-13247603855385956],[32835,33095,-13247605033203059,-13247603855385956],[32835,131079,1975301917236486,1975303102468593],[32835,131083,1975301917236486,1975303102468593],[32835,131141,-1975303102468593,-1975301917236486],[32835,131145,-6623803284297315,-6623801159997192],[32835,131146,4648499087034444,4648500337554984],[32835,163846,-1975303102468593,-1975301917236486],[32835,163849,4648499087034444,4648500337554984],[32835,163850,-6623803284297315,-6623801159997192],[32835,163908,1975301917236486,1975303102468593],[32835,163912,1975301917236486,1975303102468593],[32835,1073741831,1975301891852867,1975303127852212],[32835,1073741893,-1975303127852212,-1975301891852867],[32835,1073774598,-1975303127852212,-1975301891852867],[32835,1073774660,1975301891852867,1975303127852212],[32837,5,-13247606122970514,-13247602765618499],[32837,10,-1975303102468593,-1975301917236486],[32837,15,-26495210121498808,-26495207655679218],[32837,68,13247602765618499,13247606122970514],[32837,75,-15222908164047479,-15222905744246613],[32837,78,39742811633487139,39742815032279900],[32837,135,-13247605061599516,-13247603826989498],[32837,141,-13247605061599516,-13247603826989498],[32837,198,13247603826989498,13247605061599516],[32837,201,-13247605066971786,-13247603821617226],[32837,204,26495207799404518,26495209977773508],[32837,263,-13247605033203059,-13247603855385956],[32837,326,13247603855385956,13247605033203059],[32837,32769,13247602765618499,13247606122970514],[32837,32779,39742811633487139,39742815032279900],[32837,32782,-15222908164047479,-15222905744246613],[32837,32832,-13247606122970514,-13247602765618499],[32837,32842,-26495210121498808,-26495207655679218],[32837,32847,-1975303102468593,-1975301917236486],[32837,32899,13247603826989498,13247605061599516],[32837,32905,26495207799404518,26495209977773508],[32837,32908,-13247605066971786,-13247603821617226],[32837,32962,-13247605061599516,-13247603826989498],[32837,32968,-13247605061599516,-13247603826989498],[32837,33027,13247603855385956,13247605033203059],[32837,33090,-13247605033203059,-13247603855385956],[32837,131074,1975301917236486,1975303102468593],[32837,131139,1975301917236486,1975303102468593],[32837,163846,1975301917236486,1975303102468593],[32837,163911,1975301917236486,1975303102468593],[32837,1073741826,1975301891852867,1975303127852212],[32837,1073741891,1975301891852867,1975303127852212],[32837,1073774598,1975301891852867,1975303127852212],[32837,1073774663,1975301891852867,1975303127852212],[32838,6,3950600828296569,3950609211113582],[32838,68,-3950609211113582,-3950600828296569],[32838,142,26495207799404518,26495209977773508],[32838,204,-26495209977773508,-26495207799404518],[32838,32770,-3950609211113582,-3950600828296569],[32838,32832,3950600828296569,3950609211113582],[32838,32906,-26495209977773508,-26495207799404518],[32838,32968,26495207799404518,26495209977773508],[32838,131086,-6623803284297315,-6623801159997192],[32838,131148,6623801159997192,6623803284297315],[32838,163850,6623801159997192,6623803284297315],[32838,163912,-6623803284297315,-6623801159997192],[32841,6,-3950609211113582,-3950600828296569],[32841,71,49039810731968040,49039814782977862],[32841,78,-52990419943081622,-52990415611274431],[32841,132,-26495209977773508,-26495207799404518],[32841,204,-26495209977773508,-26495207799404518],[32841,32775,-52990419943081622,-52990415611274431],[32841,32782,49039810731968040,49039814782977862],[32841,32847,-3950609211113582,-3950600828296569],[32841,32901,-26495209977773508,-26495207799404518],[32841,32973,-26495209977773508,-26495207799404518],[32841,131074,6623801159997192,6623803284297315],[32841,131139,6623801159997192,6623803284297315],[32841,163850,6623801159997192,6623803284297315],[32841,163915,6623801159997192,6623803284297315],[32842,5,-1975303102434961,-1975301917270118],[32842,10,-8599108093729955,-8599101370269630],[32842,15,-26495210121498808,-26495207655679218],[32842,71,-15222908164034477,-15222905744259616],[32842,72,8599101370269630,8599108093729955],[32842,77,39742811633466510,39742815032300530],[32842,132,45089206508319720,45089208967216020],[32842,142,26495207799184865,26495209977993164],[32842,198,18593997143338122,18594000555019592],[32842,204,-2178588646,2178588643],[32842,260,1975301917270118,1975303102434961],[32842,326,1975301917270118,1975303102434961],[32842,32770,8599101370269630,8599108093729955],[32842,32775,39742811633466510,39742815032300530],[32842,32781,-15222908164034477,-15222905744259616],[32842,32832,-8599108093729955,-8599101370269630],[32842,32837,-26495210121498808,-26495207655679218],[32842,32847,-1975303102434961,-1975301917270118],[32842,32902,-2178588646,2178588643],[32842,32908,18593997143338122,18594000555019592],[32842,32964,26495207799184865,26495209977993164],[32842,32974,45089206508319720,45089208967216020],[32842,33036,1975301917270118,1975303102434961],[32842,33102,1975301917270118,1975303102434961],[32842,131073,-4648500337554984,-4648499087034444],[32842,131086,8599101370269630,8599108093729955],[32842,131139,-4648500337554984,-4648499087034444],[32842,131148,-8599108093729955,-8599101370269630],[32842,131200,3950603721653790,3950606317756372],[32842,131210,-6623803346277521,-6623801098016984],[32842,131266,28470509608204269,28470513188678840],[32842,131272,-17896106400955991,-17896101912222451],[32842,131328,4648499087034444,4648500337554984],[32842,131394,4648499087034444,4648500337554984],[32842,163846,-8599108093729955,-8599101370269630],[32842,163849,-4648500337554984,-4648499087034444],[32842,163908,8599101370269630,8599108093729955],[32842,163915,-4648500337554984,-4648499087034444],[32842,163970,-17896106400955991,-17896101912222451],[32842,163976,28470509608204269,28470513188678840],[32842,164032,-6623803346277521,-6623801098016984],[32842,164042,3950603721653790,3950606317756372],[32842,164104,4648499087034444,4648500337554984],[32842,164170,4648499087034444,4648500337554984],[32842,655370,4648499056652179,4648500367937248],[32842,655432,-4648500367937248,-4648499056652179],[32842,688130,-4648500367937248,-4648499056652179],[32842,688192,4648499056652179,4648500367937248],[32842,67239946,4648499057538562,4648500367050864],[32842,67240008,-4648500367050864,-4648499057538562],[32842,67272706,-4648500367050864,-4648499057538562],[32842,67272768,4648499057538562,4648500367050864],[32842,1073741838,-13247605061578886,-13247603827010127],[32842,1073741900,13247603827010127,13247605061578886],[32842,1073774598,13247603827010127,13247605061578886],[32842,1073774660,-13247605061578886,-13247603827010127],[32842,1073872906,1975301889664154,1975303130040923],[32842,1073872968,-1975303130040923,-1975301889664154],[32842,1073905666,-1975303130040923,-1975301889664154],[32842,1073905728,1975301889664154,1975303130040923],[32844,3,13247603827010127,13247605061578886],[32844,12,3950601606309328,3950608433100829],[32844,15,45089206614383552,45089208861152192],[32844,68,-3950608433100829,-3950601606309328],[32844,71,-47064511822081843,-47064508673158980],[32844,75,15222905744246613,15222908164047479],[32844,129,13247603821617226,13247605066971786],[32844,142,-3950608433100829,-3950601606309328],[32844,198,3950601606309328,3950608433100829],[32844,201,13247603821617226,13247605066971786],[32844,270,1975301917270118,1975303102434961],[32844,326,-1975303102434961,-1975301917270118],[32844,396,1975301917236486,1975303102468593],[32844,452,-1975303102468593,-1975301917236486],[32844,1164,22544603307191776,22544604430576096],[32844,1220,-22544604430576096,-22544603307191776],[32844,32775,15222905744246613,15222908164047479],[32844,32776,-3950608433100829,-3950601606309328],[32844,32779,-47064511822081843,-47064508673158980],[32844,32832,3950601606309328,3950608433100829],[32844,32835,45089206614383552,45089208861152192],[32844,32847,13247603827010127,13247605061578886],[32844,32901,13247603821617226,13247605066971786],[32844,32906,3950601606309328,3950608433100829],[32844,32962,-3950608433100829,-3950601606309328],[32844,32973,13247603821617226,13247605066971786],[32844,33034,-1975303102434961,-1975301917270118],[32844,33090,1975301917270118,1975303102434961],[32844,33160,-1975303102468593,-1975301917236486],[32844,33216,1975301917236486,1975303102468593],[32844,33928,-22544604430576096,-22544603307191776],[32844,33984,22544603307191776,22544604430576096],[32844,131074,-26495210066338854,-26495207710839176],[32844,131086,-24519907477236870,-24519905280236082],[32844,131142,17896101995938767,17896106317239678],[32844,131146,-19871408304404039,-19871405028479484],[32844,131200,-26495210066406118,-26495207710771912],[32844,131212,-3950606120324188,-3950603919085972],[32844,131268,15222904792925496,15222909115368599],[32844,131272,-37767512457661269,-37767509188400696],[32844,163846,-19871408304404039,-19871405028479484],[32844,163850,17896101995938767,17896106317239678],[32844,163906,-24519907477236870,-24519905280236082],[32844,163918,-26495210066338854,-26495207710839176],[32844,163972,-37767512457661269,-37767509188400696],[32844,163976,15222904792925496,15222909115368599],[32844,164032,-3950606120324188,-3950603919085972],[32844,164044,-26495210066406118,-26495207710771912],[32844,524428,1975301885115096,1975303134589986],[32844,524484,-1975303134589986,-1975301885115096],[32844,557192,-1975303134589986,-1975301885115096],[32844,557248,1975301885115096,1975303134589986],[32844,1073741826,-13247605061578886,-13247603827010127],[32844,1073741898,-13247605061578886,-13247603827010127],[32844,1073741952,-13247605066971786,-13247603821617226],[32844,1073742024,-13247605066971786,-13247603821617226],[32844,1073774598,-13247605061578886,-13247603827010127],[32844,1073774670,-13247605061578886,-13247603827010127],[32844,1073774724,-13247605066971786,-13247603821617226],[32844,1073774796,-13247605066971786,-13247603821617226],[32847,3,13247603827010127,13247605061578886],[32847,5,-1975303102434961,-1975301917270118],[32847,6,-3950609211113582,-3950600828296569],[32847,10,-1975303102468593,-1975301917236486],[32847,12,13247603826989498,13247605061599516],[32847,15,18593996492884744,18594001205472974],[32847,65,-13247605061578886,-13247603827010127],[32847,68,-7321700188594704,-7321693640879080],[32847,71,-13247605061599516,-13247603826989498],[32847,72,1975301917236486,1975303102468593],[32847,77,-7321700188581701,-7321693640892082],[32847,78,1975301917270118,1975303102434961],[32847,32769,1975301917270118,1975303102434961],[32847,32770,-7321700188581701,-7321693640892082],[32847,32775,1975301917236486,1975303102468593],[32847,32776,-13247605061599516,-13247603826989498],[32847,32779,-7321700188594704,-7321693640879080],[32847,32782,-13247605061578886,-13247603827010127],[32847,32832,18593996492884744,18594001205472974],[32847,32835,13247603826989498,13247605061599516],[32847,32837,-1975303102468593,-1975301917236486],[32847,32841,-3950609211113582,-3950600828296569],[32847,32842,-1975303102434961,-1975301917270118],[32847,32844,13247603827010127,13247605061578886],[32896,0,-1395798588612732,-1395780181745792],[32896,5,17198207785357210,17198211142641961],[32896,6,-1975305281057239,-1975299738647843],[32896,9,-1975305295212454,-1975299724492630],[32896,10,1277404455586225,1277411178939584],[32896,12,-311472436788867910,-311472393130811843],[32896,15,26495207655679218,26495210121498808],[32896,68,-1975304605835260,-1975300413869816],[32896,71,13247603826989498,13247605061599516],[32896,72,11272298579605019,11272305289278916],[32896,77,13247603826989498,13247605061599516],[32896,78,-45089208967216020,-45089206508319720],[32896,1028,-1975304506421476,-1975300513283600],[32896,1032,8599101715170092,8599107748829489],[32896,1037,13247603855385956,13247605033203059],[32896,1038,-1975303102434961,-1975301917270118],[32896,1100,-24519907391505747,-24519905365967204],[32896,32896,-1395798588612732,-1395780181745792],[32896,32901,17198207785357210,17198211142641961],[32896,32902,-1975305281057239,-1975299738647843],[32896,32905,-1975305295212454,-1975299724492630],[32896,32906,1277404455586225,1277411178939584],[32896,32908,-311472436788867910,-311472393130811843],[32896,32911,26495207655679218,26495210121498808],[32896,32964,-1975304605835260,-1975300413869816],[32896,32967,13247603826989498,13247605061599516],[32896,32968,11272298579605019,11272305289278916],[32896,32973,13247603826989498,13247605061599516],[32896,32974,-45089208967216020,-45089206508319720],[32896,33924,-1975304506421476,-1975300513283600],[32896,33928,8599101715170092,8599107748829489],[32896,33933,13247603855385956,13247605033203059],[32896,33934,-1975303102434961,-1975301917270118],[32896,33996,-24519907391505747,-24519905365967204],[32896,131074,-4648502614033929,-4648496810555499],[32896,131076,23242489006570695,23242508116376415],[32896,131080,272001667572402980,272001719855180396],[32896,131085,11272300719992475,11272303148891462],[32896,131086,18593996124609637,18594001573748076],[32896,131136,-6623806745939431,-6623797698355075],[32896,131146,-3950606317756372,-3950603721653790],[32896,131148,-18594001258855540,-18593996439502170],[32896,132096,-9297003724271436,-9296995124907418],[32896,132106,-4648500337554984,-4648499087034444],[32896,132108,22544601541194970,22544606196572912],[32896,132168,11272300873839524,11272302995044411],[32896,163970,-4648502614033929,-4648496810555499],[32896,163972,23242489006570695,23242508116376415],[32896,163976,272001667572402980,272001719855180396],[32896,163981,11272300719992475,11272303148891462],[32896,163982,18593996124609637,18594001573748076],[32896,164032,-6623806745939431,-6623797698355075],[32896,164042,-3950606317756372,-3950603721653790],[32896,164044,-18594001258855540,-18593996439502170],[32896,164992,-9297003724271436,-9296995124907418],[32896,165002,-4648500337554984,-4648499087034444],[32896,165004,22544601541194970,22544606196572912],[32896,165064,11272300873839524,11272302995044411],[32896,524292,-3950609314173172,-3950600725236988],[32896,524296,-9709549903,9709549901],[32896,524301,13247603811716528,13247605076872486],[32896,524302,-22544604497985104,-22544603239782766],[32896,524352,-4648501379109327,-4648498045480102],[32896,524364,-3950606120324188,-3950603919085972],[32896,525312,-4648501315670959,-4648498108918473],[32896,525324,-24519907414185673,-24519905343287280],[32896,557188,-3950609314173172,-3950600725236988],[32896,557192,-9709549903,9709549901],[32896,557197,13247603811716528,13247605076872486],[32896,557198,-22544604497985104,-22544603239782766],[32896,557248,-4648501379109327,-4648498045480102],[32896,557260,-3950606120324188,-3950603919085972],[32896,558208,-4648501315670959,-4648498108918473],[32896,558220,-24519907414185673,-24519905343287280],[32896,655360,60039999943769960,60040045266389211],[32896,655370,-6623803535249348,-6623800909045159],[32896,655372,-69609119710487749,-69609108522520937],[32896,655428,-1975303134589986,-1975301885115096],[32896,655432,31143705012464284,31143712189303175],[32896,656388,-1975303111382023,-1975301908323058],[32896,656392,13247601033521515,13247607855067498],[32896,656448,-6623803284297315,-6623801159997192],[32896,688256,60039999943769960,60040045266389211],[32896,688266,-6623803535249348,-6623800909045159],[32896,688268,-69609119710487749,-69609108522520937],[32896,688324,-1975303134589986,-1975301885115096],[32896,688328,31143705012464284,31143712189303175],[32896,689284,-1975303111382023,-1975301908323058],[32896,689288,13247601033521515,13247607855067498],[32896,689344,-6623803284297315,-6623801159997192],[32896,1179648,15920799005382849,15920804288090516],[32896,1212544,15920799005382849,15920804288090516],[32896,1572864,-13247605973043456,-13247602915545560],[32896,1605760,-13247605973043456,-13247602915545560],[32896,1703940,-22544604444342592,-22544603293425280],[32896,1703944,11272300739639564,11272303129244369],[32896,1704000,13247603855419588,13247605033169427],[32896,1704960,26495207753551168,26495210023626872],[32896,1736836,-22544604444342592,-22544603293425280],[32896,1736840,11272300739639564,11272303129244369],[32896,1736896,13247603855419588,13247605033169427],[32896,1737856,26495207753551168,26495210023626872],[32896,67108872,-4648502481944947,-4648496942644475],[32896,67141768,-4648502481944947,-4648496942644475],[32896,67239936,6623798624404334,6623805819890177],[32896,67239946,-4648500367050864,-4648499057538562],[32896,67239948,-3950606237024947,-3950603802385214],[32896,67240008,-1975303161793801,-1975301857911278],[32896,67240968,-4648500337588616,-4648499087000812],[32896,67272832,6623798624404334,6623805819890177],[32896,67272842,-4648500367050864,-4648499057538562],[32896,67272844,-3950606237024947,-3950603802385214],[32896,67272904,-1975303161793801,-1975301857911278],[32896,67273864,-4648500337588616,-4648499087000812],[32896,67633152,-1975305275431532,-1975299744273546],[32896,67666048,-1975305275431532,-1975299744273546],[32896,67764228,-22544604497985104,-22544603239782766],[32896,67764232,15920798685149414,15920804608323947],[32896,67764288,13247603792440361,13247605096148654],[32896,67765248,13247603822433492,13247605066155522],[32896,67797124,-22544604497985104,-22544603239782766],[32896,67797128,15920798685149414,15920804608323947],[32896,67797184,13247603792440361,13247605096148654],[32896,67798144,13247603822433492,13247605066155522],[32896,68812800,-1975303102468593,-1975301917236486],[32896,68845696,-1975303102468593,-1975301917236486],[32896,268566528,-4648502626375994,-4648496798213434],[32896,268599424,-4648502626375994,-4648496798213434],[32896,268959744,4648498045480100,4648501379109325],[32896,268992640,4648498045480100,4648501379109325],[32896,269090820,-1975303142599947,-1975301877105131],[32896,269090824,8599103418984813,8599106045014772],[32896,269090880,-4648500364875210,-4648499059714221],[32896,269091840,-4648500337554984,-4648499087034444],[32896,269123716,-1975303142599947,-1975301877105131],[32896,269123720,8599103418984813,8599106045014772],[32896,269123776,-4648500364875210,-4648499059714221],[32896,269124736,-4648500337554984,-4648499087034444],[32896,270139392,11272301204090824,11272302664793112],[32896,270172288,11272301204090824,11272302664793112],[32896,336199680,26495207586327742,26495210190850288],[32896,336232576,26495207586327742,26495210190850288],[32896,1073741828,13247602765652131,13247606122936882],[32896,1073741832,-3950609227302328,-3950600812107830],[32896,1073741837,-1975303127852212,-1975301891852867],[32896,1073741838,13247603827010127,13247605061578886],[32896,1073741900,13247603821617226,13247605066971786],[32896,1073742860,13247603855419588,13247605033169427],[32896,1073774724,13247602765652131,13247606122936882],[32896,1073774728,-3950609227302328,-3950600812107830],[32896,1073774733,-1975303127852212,-1975301891852867],[32896,1073774734,13247603827010127,13247605061578886],[32896,1073774796,13247603821617226,13247605066971786],[32896,1073775756,13247603855419588,13247605033169427],[32896,1073872896,-3950608451914177,-3950601587495984],[32896,1073872906,-1975303130040923,-1975301889664154],[32896,1073872908,-7321700200255013,-7321693629218766],[32896,1073872968,-22544604489700504,-22544603248067364],[32896,1073873928,-1975303102434961,-1975301917270118],[32896,1073905792,-3950608451914177,-3950601587495984],[32896,1073905802,-1975303130040923,-1975301889664154],[32896,1073905804,-7321700200255013,-7321693629218766],[32896,1073905864,-22544604489700504,-22544603248067364],[32896,1073906824,-1975303102434961,-1975301917270118],[32896,1074266112,-1975304605835260,-1975300413869816],[32896,1074266124,13247603822461068,13247605066127948],[32896,1074299008,-1975304605835260,-1975300413869816],[32896,1074299020,13247603822461068,13247605066127948],[32896,1074397188,26495207784975390,26495209992202640],[32896,1074397192,-49039815227304660,-49039810287641238],[32896,1074397248,-1975303134066536,-1975301885638544],[32896,1074398208,-1975303102468593,-1975301917236486],[32896,1074430084,26495207784975390,26495209992202640],[32896,1074430088,-49039815227304660,-49039810287641238],[32896,1074430144,-1975303134066536,-1975301885638544],[32896,1074431104,-1975303102468593,-1975301917236486],[32896,1075445760,-22544604430576096,-22544603307191776],[32896,1075478656,-22544604430576096,-22544603307191776],[32896,1140981768,-3950606255025060,-3950603784385098],[32896,1141014664,-3950606255025060,-3950603784385098],[32896,1141506048,-45089208966229632,-45089206509306108],[32896,1141538944,-45089208966229632,-45089206509306108],[32896,1342832640,-1975303130061553,-1975301889643525],[32896,1342865536,-1975303130061553,-1975301889643525],[32896,1409810432,-1975303130061553,-1975301889643525],[32896,1409843328,-1975303130061553,-1975301889643525],[32899,12,66238019734487245,66238024708457820],[32899,68,13247603826989498,13247605061599516],[32899,141,49039810731968040,49039814782977862],[32899,142,17198204951509383,17198213976489780],[32899,198,13247603826989498,13247605061599516],[32899,32781,17198204951509383,17198213976489780],[32899,32782,49039810731968040,49039814782977862],[32899,32837,13247603826989498,13247605061599516],[32899,32911,66238019734487245,66238024708457820],[32899,32967,13247603826989498,13247605061599516],[32899,131209,6623801159997192,6623803284297315],[32899,131210,-6623803284297315,-6623801159997192],[32899,163849,-6623803284297315,-6623801159997192],[32899,163850,6623801159997192,6623803284297315],[32901,0,7901209108823124,7901210969997192],[32901,5,17198207785357210,17198211142641961],[32901,10,-1975303102434961,-1975301917270118],[32901,15,-26495212175470166,-26495205601707868],[32901,71,13247603826989498,13247605061599516],[32901,77,13247603826989498,13247605061599516],[32901,129,17198207785323578,17198211142675593],[32901,132,-26495211786596702,-26495205990581324],[32901,139,13247603827010127,13247605061578886],[32901,142,11272298195290642,11272305673593300],[32901,198,-13247605061599516,-13247603826989498],[32901,201,13247603821617226,13247605066971786],[32901,204,-26495209977773508,-26495207799404518],[32901,1037,13247603855385956,13247605033203059],[32901,1161,13247603855419588,13247605033169427],[32901,1164,-26495209915574692,-26495207861603338],[32901,32769,-26495211786596702,-26495205990581324],[32901,32772,17198207785323578,17198211142675593],[32901,32779,11272298195290642,11272305673593300],[32901,32782,13247603827010127,13247605061578886],[32901,32835,-13247605061599516,-13247603826989498],[32901,32841,-26495209977773508,-26495207799404518],[32901,32844,13247603821617226,13247605066971786],[32901,32896,17198207785357210,17198211142641961],[32901,32901,7901209108823124,7901210969997192],[32901,32906,-26495212175470166,-26495205601707868],[32901,32911,-1975303102434961,-1975301917270118],[32901,32962,13247603826989498,13247605061599516],[32901,32968,13247603826989498,13247605061599516],[32901,33801,-26495209915574692,-26495207861603338],[32901,33804,13247603855419588,13247605033169427],[32901,33928,13247603855385956,13247605033203059],[32901,131080,-1975303102468593,-1975301917236486],[32901,131085,13247603822461068,13247605066127948],[32901,131209,-26495212182615048,-26495205594562984],[32901,131212,11272298183630328,11272305685253609],[32901,163849,11272298183630328,11272305685253609],[32901,163852,-26495212182615048,-26495205594562984],[32901,163976,13247603822461068,13247605066127948],[32901,163981,-1975303102468593,-1975301917236486],[32901,524301,13247603811716528,13247605076872486],[32901,524425,13247603822461068,13247605066127948],[32901,524428,-26495209992202640,-26495207784975390],[32901,557065,-26495209992202640,-26495207784975390],[32901,557068,13247603822461068,13247605066127948],[32901,557192,13247603811716528,13247605076872486],[32901,655489,13247603822461068,13247605066127948],[32901,655492,-13247605066127948,-13247603822461068],[32901,688129,-13247605066127948,-13247603822461068],[32901,688132,13247603822461068,13247605066127948],[32901,1073741832,-1975303127852212,-1975301891852867],[32901,1073741961,-26495209977752878,-26495207799425147],[32901,1073741964,24519905289421414,24519907468051532],[32901,1073774601,24519905289421414,24519907468051532],[32901,1073774604,-26495209977752878,-26495207799425147],[32901,1073774733,-1975303127852212,-1975301891852867],[32902,0,-7901210969997192,-7901209108823124],[32902,6,-1975305281057239,-1975299738647843],[32902,9,-24519908060482760,-24519904696990186],[32902,15,52990415723206676,52990419831149384],[32902,78,-2178588643,2178588646],[32902,130,-3950605484998596,-3950604554411562],[32902,132,-1975305281023604,-1975299738681472],[32902,139,-26495209977752878,-26495207799425147],[32902,141,-51015117307080439,-51015113227570542],[32902,204,-2178588646,2178588643],[32902,1038,-26495209915574692,-26495207861603338],[32902,1164,26495207861603338,26495209915574692],[32902,32770,-1975305281023604,-1975299738681472],[32902,32772,-3950605484998596,-3950604554411562],[32902,32779,-51015117307080439,-51015113227570542],[32902,32781,-26495209977752878,-26495207799425147],[32902,32842,-2178588646,2178588643],[32902,32896,-1975305281057239,-1975299738647843],[32902,32902,-7901210969997192,-7901209108823124],[32902,32905,52990415723206676,52990419831149384],[32902,32911,-24519908060482760,-24519904696990186],[32902,32968,-2178588643,2178588646],[32902,33802,26495207861603338,26495209915574692],[32902,33928,-26495209915574692,-26495207861603338],[32902,131080,57638914684866570,57638920294078918],[32902,131086,11272299936568599,11272303932315336],[32902,131210,52990415723206676,52990419831149384],[32902,131212,-6623804221568240,-6623800222726267],[32902,163850,-6623804221568240,-6623800222726267],[32902,163852,52990415723206676,52990419831149384],[32902,163976,11272299936568599,11272303932315336],[32902,163982,57638914684866570,57638920294078918],[32902,524302,-26495209992202640,-26495207784975390],[32902,524428,26495207784975390,26495209992202640],[32902,557066,26495207784975390,26495209992202640],[32902,557192,-26495209992202640,-26495207784975390],[32902,1073741832,26495207799425147,26495209977752878],[32902,1073741962,26495207799425147,26495209977752878],[32902,1073774604,26495207799425147,26495209977752878],[32902,1073774734,26495207799425147,26495209977752878],[32905,0,-7901210969997192,-7901209108823124],[32905,6,-24519908060537022,-24519904696935925],[32905,9,-1975305295212454,-1975299724492630],[32905,15,52990415723206676,52990419831149384],[32905,68,26495207799404518,26495209977773508],[32905,129,-1975305295246081,-1975299724458993],[32905,135,-51015117307046807,-51015113227604174],[32905,136,-3950605484998596,-3950604554411562],[32905,142,-26495209977773508,-26495207799404518],[32905,204,26495207799404518,26495209977773508],[32905,1028,26495207861603338,26495209915574692],[32905,1164,26495207861603338,26495209915574692],[32905,32769,-3950605484998596,-3950604554411562],[32905,32775,-26495209977773508,-26495207799404518],[32905,32776,-1975305295246081,-1975299724458993],[32905,32782,-51015117307046807,-51015113227604174],[32905,32837,26495207799404518,26495209977773508],[32905,32896,-1975305295212454,-1975299724492630],[32905,32902,52990415723206676,52990419831149384],[32905,32905,-7901210969997192,-7901209108823124],[32905,32911,-24519908060537022,-24519904696935925],[32905,32973,26495207799404518,26495209977773508],[32905,33797,26495207861603338,26495209915574692],[32905,33933,26495207861603338,26495209915574692],[32905,131074,-13247605066155522,-13247603822433492],[32905,131076,-24519908074966154,-24519904682506797],[32905,131083,-6623803284297315,-6623801159997192],[32905,131085,-51015117307046807,-51015113227604174],[32905,131203,-6623803284297315,-6623801159997192],[32905,131205,52990415723206676,52990419831149384],[32905,131212,-26495209992202640,-26495207784975390],[32905,163845,-26495209992202640,-26495207784975390],[32905,163850,-6623803284297315,-6623801159997192],[32905,163852,52990415723206676,52990419831149384],[32905,163970,-6623803284297315,-6623801159997192],[32905,163972,-51015117307046807,-51015113227604174],[32905,163979,-13247605066155522,-13247603822433492],[32905,163981,-24519908074966154,-24519904682506797],[32905,524292,26495207784975390,26495209992202640],[32905,524428,26495207784975390,26495209992202640],[32905,557061,26495207784975390,26495209992202640],[32905,557197,26495207784975390,26495209992202640],[32905,1073741837,-26495209977752878,-26495207799425147],[32905,1073741957,26495207799425147,26495209977752878],[32905,1073774604,26495207799425147,26495209977752878],[32905,1073774724,-26495209977752878,-26495207799425147],[32906,0,-14643395680256318,-14643391978691234],[32906,5,-1975303102468593,-1975301917236486],[32906,10,1277404455586225,1277411178939584],[32906,15,-26495212175470166,-26495205601707868],[32906,68,-49039815222920444,-49039810292025454],[32906,78,-26495209977993164,-26495207799184865],[32906,130,-19871412444254049,-19871400888629471],[32906,135,11272298195303644,11272305673580297],[32906,136,3950601664814648,3950608374595511],[32906,141,13247603826989498,13247605061599516],[32906,198,3950601606309328,3950608433100829],[32906,204,-26495209977773508,-26495207799404518],[32906,1028,-1975303102434961,-1975301917270118],[32906,1158,24519905365967204,24519907391505747],[32906,1164,-26495209915574692,-26495207861603338],[32906,32770,3950601664814648,3950608374595511],[32906,32775,13247603826989498,13247605061599516],[32906,32776,-19871412444254049,-19871400888629471],[32906,32781,11272298195303644,11272305673580297],[32906,32838,-26495209977773508,-26495207799404518],[32906,32844,3950601606309328,3950608433100829],[32906,32896,1277404455586225,1277411178939584],[32906,32901,-26495212175470166,-26495205601707868],[32906,32906,-14643395680256318,-14643391978691234],[32906,32911,-1975303102468593,-1975301917236486],[32906,32964,-26495209977993164,-26495207799184865],[32906,32974,-49039815222920444,-49039810292025454],[32906,33798,-26495209915574692,-26495207861603338],[32906,33804,24519905365967204,24519907391505747],[32906,33934,-1975303102434961,-1975301917270118],[32906,131073,13247603822433492,13247605066155522],[32906,131076,15920800076521641,15920803216951721],[32906,131083,6623801159997192,6623803284297315],[32906,131086,11272298879893047,11272304988990891],[32906,131136,22544601272808088,22544606464959780],[32906,131146,6623801098016984,6623803346277521],[32906,131203,6623801159997192,6623803284297315],[32906,131206,-3950609233926622,-3950600805483542],[32906,131212,8599101685162166,8599107778837422],[32906,131266,-8599108313708112,-8599101150291472],[32906,131272,24519905258499972,24519907498972975],[32906,132096,-4648500337554984,-4648499087034444],[32906,132226,-11272302995044411,-11272300873839524],[32906,132232,6623801159997192,6623803284297315],[32906,163846,8599101685162166,8599107778837422],[32906,163849,6623801159997192,6623803284297315],[32906,163852,-3950609233926622,-3950600805483542],[32906,163906,24519905258499972,24519907498972975],[32906,163912,-8599108313708112,-8599101150291472],[32906,163969,6623801159997192,6623803284297315],[32906,163972,11272298879893047,11272304988990891],[32906,163979,13247603822433492,13247605066155522],[32906,163982,15920800076521641,15920803216951721],[32906,164032,6623801098016984,6623803346277521],[32906,164042,22544601272808088,22544606464959780],[32906,164866,6623801159997192,6623803284297315],[32906,164872,-11272302995044411,-11272300873839524],[32906,165002,-4648500337554984,-4648499087034444],[32906,524292,-22544604497985104,-22544603239782766],[32906,524422,3950603919085972,3950606120324188],[32906,524428,-26495209992202640,-26495207784975390],[32906,557062,-26495209992202640,-26495207784975390],[32906,557068,3950603919085972,3950606120324188],[32906,557198,-22544604497985104,-22544603239782766],[32906,655360,-1975303167312100,-1975301852392980],[32906,655370,-4648500367937248,-4648499056652179],[32906,655490,-42416014583842896,-42416006486808497],[32906,655496,45089204203543548,45089211271992192],[32906,688130,45089204203543548,45089211271992192],[32906,688136,-42416014583842896,-42416006486808497],[32906,688256,-4648500367937248,-4648499056652179],[32906,688266,-1975303167312100,-1975301852392980],[32906,67239946,-4648500367050864,-4648499057538562],[32906,67240066,6623801086208550,6623803358085955],[32906,67240072,-1975303161793801,-1975301857911278],[32906,67272706,-1975303161793801,-1975301857911278],[32906,67272712,6623801086208550,6623803358085955],[32906,67272832,-4648500367050864,-4648499057538562],[32906,1073741838,13247603827010127,13247605061578886],[32906,1073741958,-26495209977752878,-26495207799425147],[32906,1073741964,13247603821617226,13247605066971786],[32906,1073774598,13247603821617226,13247605066971786],[32906,1073774604,-26495209977752878,-26495207799425147],[32906,1073774724,13247603827010127,13247605061578886],[32906,1073872906,-1975303130040923,-1975301889664154],[32906,1073873026,24519905293069738,24519907464403207],[32906,1073873032,-22544604489700504,-22544603248067364],[32906,1073905666,-22544604489700504,-22544603248067364],[32906,1073905672,24519905293069738,24519907464403207],[32906,1073905792,-1975303130040923,-1975301889664154],[32908,0,-49039814800838354,-49039810714107552],[32908,3,13247603821617226,13247605066971786],[32908,12,-311472436788867910,-311472393130811843],[32908,65,-13247605066971786,-13247603821617226],[32908,78,-18594000555019592,-18593997143338122],[32908,132,296947377306566843,296947428089998092],[32908,136,-34514803440217642,-34514797551613446],[32908,139,13247603821617226,13247605066971786],[32908,198,18593997143338122,18594000555019592],[32908,201,-13247605066971786,-13247603821617226],[32908,1025,-13247605033169427,-13247603855419588],[32908,1038,24519905365967204,24519907391505747],[32908,1100,-24519907391505747,-24519905365967204],[32908,1158,-24519907391505747,-24519905365967204],[32908,1161,-13247605033169427,-13247603855419588],[32908,1220,24519905365967204,24519907391505747],[32908,32772,-34514803440217642,-34514797551613446],[32908,32775,13247603821617226,13247605066971786],[32908,32776,296947377306566843,296947428089998092],[32908,32837,-13247605066971786,-13247603821617226],[32908,32842,18593997143338122,18594000555019592],[32908,32896,-311472436788867910,-311472393130811843],[32908,32908,-49039814800838354,-49039810714107552],[32908,32911,13247603821617226,13247605066971786],[32908,32962,-18594000555019592,-18593997143338122],[32908,32973,-13247605066971786,-13247603821617226],[32908,33797,-13247605033169427,-13247603855419588],[32908,33802,-24519907391505747,-24519905365967204],[32908,33864,24519905365967204,24519907391505747],[32908,33922,24519905365967204,24519907391505747],[32908,33933,-13247605033169427,-13247603855419588],[32908,33984,-24519907391505747,-24519905365967204],[32908,131073,11272300719992475,11272303148891462],[32908,131074,-24519907696178166,-24519905061294785],[32908,131085,49039810732001672,49039814782944230],[32908,131086,-3950606995955408,-3950603043454752],[32908,131136,26495207710771912,26495210066406118],[32908,131148,3950603919085972,3950606120324188],[32908,131205,-51015117307046807,-51015113227604174],[32908,131206,10574405079083164,10574409404621503],[32908,131209,13247603822461068,13247605066127948],[32908,131210,-31143710097437046,-31143707104330412],[32908,131268,-15222909115368599,-15222904792925496],[32908,131272,37767509188400696,37767512457661269],[32908,132096,26495207753551168,26495210023626872],[32908,132108,24519905343287280,24519907414185673],[32908,132228,-17896106200962633,-17896102112215810],[32908,132232,19871405230482798,19871408102400732],[32908,163845,13247603822461068,13247605066127948],[32908,163846,-31143710097437046,-31143707104330412],[32908,163849,-51015117307046807,-51015113227604174],[32908,163850,10574405079083164,10574409404621503],[32908,163908,37767509188400696,37767512457661269],[32908,163912,-15222909115368599,-15222904792925496],[32908,163969,49039810732001672,49039814782944230],[32908,163970,-3950606995955408,-3950603043454752],[32908,163981,11272300719992475,11272303148891462],[32908,163982,-24519907696178166,-24519905061294785],[32908,164032,3950603919085972,3950606120324188],[32908,164044,26495207710771912,26495210066406118],[32908,164868,19871405230482798,19871408102400732],[32908,164872,-17896106200962633,-17896102112215810],[32908,164992,24519905343287280,24519907414185673],[32908,165004,26495207753551168,26495210023626872],[32908,524289,-13247605066127948,-13247603822461068],[32908,524302,3950603919085972,3950606120324188],[32908,524364,-3950606120324188,-3950603919085972],[32908,524422,-3950606120324188,-3950603919085972],[32908,524425,-13247605066127948,-13247603822461068],[32908,524484,3950603919085972,3950606120324188],[32908,525324,-24519907414185673,-24519905343287280],[32908,525444,24519905343287280,24519907414185673],[32908,557061,-13247605066127948,-13247603822461068],[32908,557066,-3950606120324188,-3950603919085972],[32908,557128,3950603919085972,3950606120324188],[32908,557186,3950603919085972,3950606120324188],[32908,557197,-13247605066127948,-13247603822461068],[32908,557248,-3950606120324188,-3950603919085972],[32908,558088,24519905343287280,24519907414185673],[32908,558208,-24519907414185673,-24519905343287280],[32908,655360,26495207692945056,26495210084232978],[32908,655372,-47064513169575377,-47064507325665441],[32908,655492,7321690308104443,7321703521369331],[32908,655496,66238017807040958,66238026635904120],[32908,688132,66238017807040958,66238026635904120],[32908,688136,7321690308104443,7321703521369331],[32908,688256,-47064513169575377,-47064507325665441],[32908,688268,26495207692945056,26495210084232978],[32908,67239948,-1975303102434961,-1975301917270118],[32908,67240068,6623801159997192,6623803284297315],[32908,67240072,-4648500337588616,-4648499087000812],[32908,67272708,-4648500337588616,-4648499087000812],[32908,67272712,6623801159997192,6623803284297315],[32908,67272832,-1975303102434961,-1975301917270118],[32908,1073741826,-13247605066971786,-13247603821617226],[32908,1073741837,24519905289421414,24519907468051532],[32908,1073741888,13247603821617226,13247605066971786],[32908,1073741957,-24519907468051532,-24519905289421414],[32908,1073741962,-13247605066971786,-13247603821617226],[32908,1073742024,13247603821617226,13247605066971786],[32908,1073742848,13247603855419588,13247605033169427],[32908,1073742984,13247603855419588,13247605033169427],[32908,1073774598,-13247605066971786,-13247603821617226],[32908,1073774601,-24519907468051532,-24519905289421414],[32908,1073774660,13247603821617226,13247605066971786],[32908,1073774721,24519905289421414,24519907468051532],[32908,1073774734,-13247605066971786,-13247603821617226],[32908,1073774796,13247603821617226,13247605066971786],[32908,1073775620,13247603855419588,13247605033169427],[32908,1073775756,13247603855419588,13247605033169427],[32908,1073872896,-13247605066127948,-13247603822461068],[32908,1073872908,-47064511822048211,-47064508673192612],[32908,1073873028,49039810732001672,49039814782944230],[32908,1073873032,-15222908168562909,-15222905739731186],[32908,1073905668,-15222908168562909,-15222905739731186],[32908,1073905672,49039810732001672,49039814782944230],[32908,1073905792,-47064511822048211,-47064508673192612],[32908,1073905804,-13247605066127948,-13247603822461068],[32908,1074266112,13247603822461068,13247605066127948],[32908,1074266248,13247603822461068,13247605066127948],[32908,1074298884,13247603822461068,13247605066127948],[32908,1074299020,13247603822461068,13247605066127948],[32911,3,13247603821617226,13247605066971786],[32911,5,-1975303102468593,-1975301917236486],[32911,6,-24519908060537022,-24519904696935925],[32911,9,-24519908060482760,-24519904696990186],[32911,10,-1975303102434961,-1975301917270118],[32911,12,66238019734487245,66238024708457820],[32911,15,26495207655679218,26495210121498808],[32911,129,11272300724575166,11272303144308768],[32911,130,1975301917270118,1975303102434961],[32911,132,-39742815032279900,-39742811633487139],[32911,135,-39742815032300530,-39742811633466510],[32911,141,11272300724520905,11272303144363030],[32911,142,1975301917236486,1975303102468593],[32911,32769,1975301917236486,1975303102468593],[32911,32770,11272300724520905,11272303144363030],[32911,32776,-39742815032300530,-39742811633466510],[32911,32779,-39742815032279900,-39742811633487139],[32911,32781,1975301917270118,1975303102434961],[32911,32782,11272300724575166,11272303144308768],[32911,32896,26495207655679218,26495210121498808],[32911,32899,66238019734487245,66238024708457820],[32911,32901,-1975303102434961,-1975301917270118],[32911,32902,-24519908060482760,-24519904696990186],[32911,32905,-24519908060537022,-24519904696935925],[32911,32906,-1975303102468593,-1975301917236486],[32911,32908,13247603821617226,13247605066971786],[32962,71,13247603826989498,13247605061599516],[32962,78,-18594000555019592,-18593997143338122],[32962,135,-13247605061599516,-13247603826989498],[32962,142,-3950608433100829,-3950601606309328],[32962,204,22544602161328920,22544605576438951],[32962,32782,22544602161328920,22544605576438951],[32962,32837,-13247605061599516,-13247603826989498],[32962,32844,-3950608433100829,-3950601606309328],[32962,32901,13247603826989498,13247605061599516],[32962,32908,-18594000555019592,-18593997143338122],[32962,131146,-28470513188678840,-28470509608204269],[32962,131210,8599101150291472,8599108313708112],[32962,131272,19871404874970728,19871408457912797],[32962,163850,19871404874970728,19871408457912797],[32962,163912,8599101150291472,8599108313708112],[32962,163976,-28470513188678840,-28470509608204269],[32962,655490,4648499056652179,4648500367937248],[32962,655552,-4648500367937248,-4648499056652179],[32962,688130,-4648500367937248,-4648499056652179],[32962,688192,4648499056652179,4648500367937248],[32964,68,-1975304605835260,-1975300413869816],[32964,78,-26495209977993164,-26495207799184865],[32964,132,1975300413869816,1975304605835260],[32964,142,26495207799184865,26495209977993164],[32964,32832,1975300413869816,1975304605835260],[32964,32842,26495207799184865,26495209977993164],[32964,32896,-1975304605835260,-1975300413869816],[32964,32906,-26495209977993164,-26495207799184865],[32964,131148,-11272302995044411,-11272300873839524],[32964,131212,11272300873839524,11272302995044411],[32964,163912,11272300873839524,11272302995044411],[32964,163976,-11272302995044411,-11272300873839524],[32967,68,13247603826989498,13247605061599516],[32967,71,13247603826989498,13247605061599516],[32967,132,-13247605061599516,-13247603826989498],[32967,135,-13247605061599516,-13247603826989498],[32967,32832,-13247605061599516,-13247603826989498],[32967,32835,-13247605061599516,-13247603826989498],[32967,32896,13247603826989498,13247605061599516],[32967,32899,13247603826989498,13247605061599516],[32968,6,3950603783705734,3950606255704424],[32968,72,11272298579605019,11272305289278916],[32968,77,13247603826989498,13247605061599516],[32968,78,-2178588643,2178588646],[32968,136,-11272305289278916,-11272298579605019],[32968,141,-13247605061599516,-13247603826989498],[32968,142,26495207799404518,26495209977773508],[32968,198,-22544605576438951,-22544602161328920],[32968,260,1975301917236486,1975303102468593],[32968,452,1975301917236486,1975303102468593],[32968,1028,-1975303102468593,-1975301917236486],[32968,1220,-1975303102468593,-1975301917236486],[32968,32782,-22544605576438951,-22544602161328920],[32968,32832,-11272305289278916,-11272298579605019],[32968,32837,-13247605061599516,-13247603826989498],[32968,32838,26495207799404518,26495209977773508],[32968,32896,11272298579605019,11272305289278916],[32968,32901,13247603826989498,13247605061599516],[32968,32902,-2178588643,2178588646],[32968,32974,3950603783705734,3950606255704424],[32968,33036,1975301917236486,1975303102468593],[32968,33228,1975301917236486,1975303102468593],[32968,33804,-1975303102468593,-1975301917236486],[32968,33996,-1975303102468593,-1975301917236486],[32968,131074,-26495210186613570,-26495207590564460],[32968,131146,17896101912222451,17896106400955991],[32968,131148,-11272305289278916,-11272298579605019],[32968,131210,-24519907498972975,-24519905258499972],[32968,131212,11272298579605019,11272305289278916],[32968,131266,-19871408457912797,-19871404874970728],[32968,131328,-13247605066155522,-13247603822433492],[32968,131520,-13247605066155522,-13247603822433492],[32968,132096,13247603822433492,13247605066155522],[32968,132288,13247603822433492,13247605066155522],[32968,163850,-19871408457912797,-19871404874970728],[32968,163906,-24519907498972975,-24519905258499972],[32968,163908,11272298579605019,11272305289278916],[32968,163970,17896101912222451,17896106400955991],[32968,163972,-11272305289278916,-11272298579605019],[32968,164042,-26495210186613570,-26495207590564460],[32968,164104,-13247605066155522,-13247603822433492],[32968,164296,-13247605066155522,-13247603822433492],[32968,164872,13247603822433492,13247605066155522],[32968,165064,13247603822433492,13247605066155522],[32968,524292,-1975303142599947,-1975301877105131],[32968,524484,-1975303142599947,-1975301877105131],[32968,557068,-1975303142599947,-1975301877105131],[32968,557260,-1975303142599947,-1975301877105131],[32968,655360,13247603786922062,13247605101666952],[32968,655432,-8599106519433716,-8599102944565871],[32968,655496,3950603717154982,3950606322255178],[32968,655552,17896102843574241,17896105469604200],[32968,688136,17896102843574241,17896105469604200],[32968,688192,3950603717154982,3950606322255178],[32968,688256,-8599106519433716,-8599102944565871],[32968,688328,13247603786922062,13247605101666952],[32968,67240008,-1975303161793801,-1975301857911278],[32968,67240072,1975301857911278,1975303161793801],[32968,67272768,1975301857911278,1975303161793801],[32968,67272832,-1975303161793801,-1975301857911278],[32968,1073741900,13247603821617226,13247605066971786],[32968,1073741964,-13247605066971786,-13247603821617226],[32968,1073774660,-13247605066971786,-13247603821617226],[32968,1073774724,13247603821617226,13247605066971786],[32968,1073872968,-22544604489700504,-22544603248067364],[32968,1073873032,22544603248067364,22544604489700504],[32968,1073905728,22544603248067364,22544604489700504],[32968,1073905792,-22544604489700504,-22544603248067364],[32973,65,-13247605066971786,-13247603821617226],[32973,68,26495207799404518,26495209977773508],[32973,77,13247603826989498,13247605061599516],[32973,129,13247603821617226,13247605066971786],[32973,132,-26495209977773508,-26495207799404518],[32973,141,-13247605061599516,-13247603826989498],[32973,32832,-13247605061599516,-13247603826989498],[32973,32841,-26495209977773508,-26495207799404518],[32973,32844,13247603821617226,13247605066971786],[32973,32896,13247603826989498,13247605061599516],[32973,32905,26495207799404518,26495209977773508],[32973,32908,-13247605066971786,-13247603821617226],[32974,6,3950603783705734,3950606255704424],[32974,68,-49039815222920444,-49039810292025454],[32974,78,-45089208967216020,-45089206508319720],[32974,132,45089206508319720,45089208967216020],[32974,142,49039810292025454,49039815222920444],[32974,204,-3950606255704424,-3950603783705734],[32974,32770,-3950606255704424,-3950603783705734],[32974,32832,49039810292025454,49039815222920444],[32974,32842,45089206508319720,45089208967216020],[32974,32896,-45089208967216020,-45089206508319720],[32974,32906,-49039815222920444,-49039810292025454],[32974,32968,3950603783705734,3950606255704424],[33024,71,13247603855385956,13247605033203059],[33024,78,-1975303102434961,-1975301917270118],[33024,204,-1975303102468593,-1975301917236486],[33024,1164,-22544604430576096,-22544603307191776],[33024,33095,13247603855385956,13247605033203059],[33024,33102,-1975303102434961,-1975301917270118],[33024,33228,-1975303102468593,-1975301917236486],[33024,34188,-22544604430576096,-22544603307191776],[33024,131146,-4648500337554984,-4648499087034444],[33024,131272,13247603822433492,13247605066155522],[33024,132232,-1975303102468593,-1975301917236486],[33024,164170,-4648500337554984,-4648499087034444],[33024,164296,13247603822433492,13247605066155522],[33024,165256,-1975303102468593,-1975301917236486],[33024,655552,-4648500337588616,-4648499087000812],[33024,656512,-1975303102434961,-1975301917270118],[33024,688576,-4648500337588616,-4648499087000812],[33024,689536,-1975303102434961,-1975301917270118],[33024,1704960,13247603855419588,13247605033169427],[33024,1737984,13247603855419588,13247605033169427],[33027,68,13247603855385956,13247605033203059],[33027,326,13247603855385956,13247605033203059],[33027,32837,13247603855385956,13247605033203059],[33027,33095,13247603855385956,13247605033203059],[33029,71,13247603855385956,13247605033203059],[33029,326,-13247605033203059,-13247603855385956],[33029,32835,-13247605033203059,-13247603855385956],[33029,33090,13247603855385956,13247605033203059],[33034,68,-1975303102434961,-1975301917270118],[33034,326,-1975303102434961,-1975301917270118],[33034,32844,-1975303102434961,-1975301917270118],[33034,33102,-1975303102434961,-1975301917270118],[33034,131136,-4648500337554984,-4648499087034444],[33034,131394,-4648500337554984,-4648499087034444],[33034,163912,-4648500337554984,-4648499087034444],[33034,164170,-4648500337554984,-4648499087034444],[33036,78,-1975303102434961,-1975301917270118],[33036,204,-1975303102468593,-1975301917236486],[33036,326,1975301917270118,1975303102434961],[33036,452,1975301917236486,1975303102468593],[33036,1164,-22544604430576096,-22544603307191776],[33036,1412,22544603307191776,22544604430576096],[33036,32842,1975301917270118,1975303102434961],[33036,32968,1975301917236486,1975303102468593],[33036,33090,-1975303102434961,-1975301917270118],[33036,33216,-1975303102468593,-1975301917236486],[33036,33928,22544603307191776,22544604430576096],[33036,34176,-22544604430576096,-22544603307191776],[33090,71,13247603855385956,13247605033203059],[33090,78,-1975303102434961,-1975301917270118],[33090,263,-13247605033203059,-13247603855385956],[33090,270,1975301917270118,1975303102434961],[33090,32837,-13247605033203059,-13247603855385956],[33090,32844,1975301917270118,1975303102434961],[33090,33029,13247603855385956,13247605033203059],[33090,33036,-1975303102434961,-1975301917270118],[33090,131146,-4648500337554984,-4648499087034444],[33090,131338,4648499087034444,4648500337554984],[33090,163912,4648499087034444,4648500337554984],[33090,164104,-4648500337554984,-4648499087034444],[33095,68,13247603855385956,13247605033203059],[33095,71,13247603855385956,13247605033203059],[33095,260,-13247605033203059,-13247603855385956],[33095,263,-13247605033203059,-13247603855385956],[33095,32832,-13247605033203059,-13247603855385956],[33095,32835,-13247605033203059,-13247603855385956],[33095,33024,13247603855385956,13247605033203059],[33095,33027,13247603855385956,13247605033203059],[33102,68,-1975303102434961,-1975301917270118],[33102,78,-1975303102434961,-1975301917270118],[33102,260,1975301917270118,1975303102434961],[33102,270,1975301917270118,1975303102434961],[33102,32832,1975301917270118,1975303102434961],[33102,32842,1975301917270118,1975303102434961],[33102,33024,-1975303102434961,-1975301917270118],[33102,33034,-1975303102434961,-1975301917270118],[33160,68,-1975303102468593,-1975301917236486],[33160,452,-1975303102468593,-1975301917236486],[33160,1028,-22544604430576096,-22544603307191776],[33160,1412,-22544604430576096,-22544603307191776],[33160,32844,-1975303102468593,-1975301917236486],[33160,33228,-1975303102468593,-1975301917236486],[33160,33804,-22544604430576096,-22544603307191776],[33160,34188,-22544604430576096,-22544603307191776],[33160,131136,13247603822433492,13247605066155522],[33160,131520,13247603822433492,13247605066155522],[33160,132096,-1975303102468593,-1975301917236486],[33160,132480,-1975303102468593,-1975301917236486],[33160,163912,13247603822433492,13247605066155522],[33160,164296,13247603822433492,13247605066155522],[33160,164872,-1975303102468593,-1975301917236486],[33160,165256,-1975303102468593,-1975301917236486],[33216,204,-1975303102468593,-1975301917236486],[33216,396,1975301917236486,1975303102468593],[33216,32844,1975301917236486,1975303102468593],[33216,33036,-1975303102468593,-1975301917236486],[33216,131272,13247603822433492,13247605066155522],[33216,131464,-13247605066155522,-13247603822433492],[33216,163912,-13247605066155522,-13247603822433492],[33216,164104,13247603822433492,13247605066155522],[33216,655552,-4648500337588616,-4648499087000812],[33216,655744,4648499087000812,4648500337588616],[33216,688192,4648499087000812,4648500337588616],[33216,688384,-4648500337588616,-4648499087000812],[33228,68,-1975303102468593,-1975301917236486],[33228,204,-1975303102468593,-1975301917236486],[33228,260,1975301917236486,1975303102468593],[33228,396,1975301917236486,1975303102468593],[33228,32832,1975301917236486,1975303102468593],[33228,32968,1975301917236486,1975303102468593],[33228,33024,-1975303102468593,-1975301917236486],[33228,33160,-1975303102468593,-1975301917236486],[33792,12,1975300984811094,1975304034893986],[33792,132,1975300513283600,1975304506421476],[33792,136,-8599107748829489,-8599101715170092],[33792,141,-13247605033203059,-13247603855385956],[33792,142,1975301917270118,1975303102434961],[33792,204,1975301917236486,1975303102468593],[33792,396,22544603307191776,22544604430576096],[33792,2188,22544603305492866,22544604432275006],[33792,33804,1975300984811094,1975304034893986],[33792,33924,1975300513283600,1975304506421476],[33792,33928,-8599107748829489,-8599101715170092],[33792,33933,-13247605033203059,-13247603855385956],[33792,33934,1975301917270118,1975303102434961],[33792,33996,1975301917236486,1975303102468593],[33792,34188,22544603307191776,22544604430576096],[33792,35980,22544603305492866,22544604432275006],[33792,131080,4648498108918473,4648501315670959],[33792,131200,9296995124907418,9297003724271436],[33792,131210,4648499087034444,4648500337554984],[33792,131212,-22544606196572912,-22544601541194970],[33792,131272,-13247605066155522,-13247603822433492],[33792,131464,1975301917236486,1975303102468593],[33792,133256,1975301915400511,1975303104304567],[33792,164872,4648498108918473,4648501315670959],[33792,164992,9296995124907418,9297003724271436],[33792,165002,4648499087034444,4648500337554984],[33792,165004,-22544606196572912,-22544601541194970],[33792,165064,-13247605066155522,-13247603822433492],[33792,165256,1975301917236486,1975303102468593],[33792,167048,1975301915400511,1975303104304567],[33792,524416,4648498108918473,4648501315670959],[33792,524428,1975301908323058,1975303111382023],[33792,558208,4648498108918473,4648501315670959],[33792,558220,1975301908323058,1975303111382023],[33792,655360,-8599107748829489,-8599101715170092],[33792,655492,1975301908323058,1975303111382023],[33792,655496,-17198211985863560,-17198206942135612],[33792,655552,4648499087000812,4648500337588616],[33792,655744,1975301917270118,1975303102434961],[33792,657536,1975301912872117,1975303106832961],[33792,689152,-8599107748829489,-8599101715170092],[33792,689284,1975301908323058,1975303111382023],[33792,689288,-17198211985863560,-17198206942135612],[33792,689344,4648499087000812,4648500337588616],[33792,689536,1975301917270118,1975303102434961],[33792,691328,1975301912872117,1975303106832961],[33792,1048716,22544603293425280,22544604444342592],[33792,1082508,22544603293425280,22544604444342592],[33792,1179648,1975300513283600,1975304506421476],[33792,1179784,1975301908323058,1975303111382023],[33792,1213440,1975300513283600,1975304506421476],[33792,1213576,1975301908323058,1975303111382023],[33792,1572864,1975300984811094,1975304034893986],[33792,1606656,1975300984811094,1975304034893986],[33792,1703940,22544603293425280,22544604444342592],[33792,1703944,1975301908323058,1975303111382023],[33792,1704064,-22544606196572912,-22544601541194970],[33792,1704192,-13247605033169427,-13247603855419588],[33792,1705984,-13247605037567427,-13247603851021587],[33792,1737732,22544603293425280,22544604444342592],[33792,1737736,1975301908323058,1975303111382023],[33792,1737856,-22544606196572912,-22544601541194970],[33792,1737984,-13247605033169427,-13247603855419588],[33792,1739776,-13247605037567427,-13247603851021587],[33792,3801088,-13247605036737943,-13247603851851071],[33792,3834880,-13247605036737943,-13247603851851071],[33792,67240072,4648499087000812,4648500337588616],[33792,67273864,4648499087000812,4648500337588616],[33792,67764352,-13247605066155522,-13247603822433492],[33792,67798144,-13247605066155522,-13247603822433492],[33792,68812800,1975301917236486,1975303102468593],[33792,68846592,1975301917236486,1975303102468593],[33792,135921664,-13247605033203059,-13247603855385956],[33792,135955456,-13247605033203059,-13247603855385956],[33792,269090944,4648499087034444,4648500337554984],[33792,269124736,4648499087034444,4648500337554984],[33792,270139392,1975301917270118,1975303102434961],[33792,270173184,1975301917270118,1975303102434961],[33792,1073741964,-13247605033169427,-13247603855419588],[33792,1073775756,-13247605033169427,-13247603855419588],[33792,1073873032,1975301917270118,1975303102434961],[33792,1073906824,1975301917270118,1975303102434961],[33792,1074397312,1975301917236486,1975303102468593],[33792,1074431104,1975301917236486,1975303102468593],[33792,1075445760,22544603307191776,22544604430576096],[33792,1075479552,22544603307191776,22544604430576096],[33797,141,-13247605033203059,-13247603855385956],[33797,1161,-13247605033169427,-13247603855419588],[33797,1164,26495207861603338,26495209915574692],[33797,32905,26495207861603338,26495209915574692],[33797,32908,-13247605033169427,-13247603855419588],[33797,33928,-13247605033203059,-13247603855385956],[33798,142,26495207861603338,26495209915574692],[33798,1164,-26495209915574692,-26495207861603338],[33798,32906,-26495209915574692,-26495207861603338],[33798,33928,26495207861603338,26495209915574692],[33801,132,-26495209915574692,-26495207861603338],[33801,1164,-26495209915574692,-26495207861603338],[33801,32901,-26495209915574692,-26495207861603338],[33801,33933,-26495209915574692,-26495207861603338],[33802,132,1975301917270118,1975303102434961],[33802,1158,-24519907391505747,-24519905365967204],[33802,1164,26495207861603338,26495209915574692],[33802,32902,26495207861603338,26495209915574692],[33802,32908,-24519907391505747,-24519905365967204],[33802,33934,1975301917270118,1975303102434961],[33802,131200,4648499087034444,4648500337554984],[33802,132226,11272300873839524,11272302995044411],[33802,132232,-6623803284297315,-6623801159997192],[33802,163970,-6623803284297315,-6623801159997192],[33802,163976,11272300873839524,11272302995044411],[33802,165002,4648499087034444,4648500337554984],[33804,12,1975300984811094,1975304034893986],[33804,129,13247603855419588,13247605033169427],[33804,142,-24519907391505747,-24519905365967204],[33804,204,1975301917236486,1975303102468593],[33804,396,22544603307191776,22544604430576096],[33804,1028,-1975304034893986,-1975300984811094],[33804,1158,24519905365967204,24519907391505747],[33804,1161,13247603855419588,13247605033169427],[33804,1220,-1975303102468593,-1975301917236486],[33804,1412,-22544604430576096,-22544603307191776],[33804,2188,22544603305492866,22544604432275006],[33804,3204,-22544604432275006,-22544603305492866],[33804,32776,-1975304034893986,-1975300984811094],[33804,32901,13247603855419588,13247605033169427],[33804,32906,24519905365967204,24519907391505747],[33804,32968,-1975303102468593,-1975301917236486],[33804,33160,-22544604430576096,-22544603307191776],[33804,33792,1975300984811094,1975304034893986],[33804,33922,-24519907391505747,-24519905365967204],[33804,33933,13247603855419588,13247605033169427],[33804,33984,1975301917236486,1975303102468593],[33804,34176,22544603307191776,22544604430576096],[33804,34952,-22544604432275006,-22544603305492866],[33804,35968,22544603305492866,22544604432275006],[33804,131200,-26495210023626872,-26495207753551168],[33804,131212,-24519907414185673,-24519905343287280],[33804,132228,17896102112215810,17896106200962633],[33804,132232,-19871408102400732,-19871405230482798],[33804,163972,-19871408102400732,-19871405230482798],[33804,163976,17896102112215810,17896106200962633],[33804,164992,-24519907414185673,-24519905343287280],[33804,165004,-26495210023626872,-26495207753551168],[33804,524428,1975301908323058,1975303111382023],[33804,525444,-1975303111382023,-1975301908323058],[33804,557192,-1975303111382023,-1975301908323058],[33804,558208,1975301908323058,1975303111382023],[33804,1048716,22544603293425280,22544604444342592],[33804,1049732,-22544604444342592,-22544603293425280],[33804,1081480,-22544604444342592,-22544603293425280],[33804,1082496,22544603293425280,22544604444342592],[33804,1073741952,-13247605033169427,-13247603855419588],[33804,1073742984,-13247605033169427,-13247603855419588],[33804,1073774724,-13247605033169427,-13247603855419588],[33804,1073775756,-13247605033169427,-13247603855419588],[33864,132,24519905365967204,24519907391505747],[33864,1220,24519905365967204,24519907391505747],[33864,32908,24519905365967204,24519907391505747],[33864,33996,24519905365967204,24519907391505747],[33864,131200,-11272302995044411,-11272300873839524],[33864,132288,-11272302995044411,-11272300873839524],[33864,163976,-11272302995044411,-11272300873839524],[33864,165064,-11272302995044411,-11272300873839524],[33922,142,-24519907391505747,-24519905365967204],[33922,1038,24519905365967204,24519907391505747],[33922,32908,24519905365967204,24519907391505747],[33922,33804,-24519907391505747,-24519905365967204],[33922,131210,11272300873839524,11272302995044411],[33922,132106,-11272302995044411,-11272300873839524],[33922,163976,-11272302995044411,-11272300873839524],[33922,164872,11272300873839524,11272302995044411],[33924,132,1975300513283600,1975304506421476],[33924,1028,-1975304506421476,-1975300513283600],[33924,32896,-1975304506421476,-1975300513283600],[33924,33792,1975300513283600,1975304506421476],[33924,131212,-6623803231071470,-6623801213223040],[33924,132108,6623801213223040,6623803231071470],[33924,163976,6623801213223040,6623803231071470],[33924,164872,-6623803231071470,-6623801213223040],[33928,68,-22544604430576096,-22544603307191776],[33928,136,-8599107748829489,-8599101715170092],[33928,141,-13247605033203059,-13247603855385956],[33928,142,26495207861603338,26495209915574692],[33928,260,22544603307191776,22544604430576096],[33928,1032,8599101715170092,8599107748829489],[33928,1037,13247603855385956,13247605033203059],[33928,1038,-26495209915574692,-26495207861603338],[33928,1220,-22544604430576096,-22544603307191776],[33928,1412,22544603307191776,22544604430576096],[33928,2052,22544603305492866,22544604432275006],[33928,3204,22544603305492866,22544604432275006],[33928,32844,-22544604430576096,-22544603307191776],[33928,32896,8599101715170092,8599107748829489],[33928,32901,13247603855385956,13247605033203059],[33928,32902,-26495209915574692,-26495207861603338],[33928,33036,22544603307191776,22544604430576096],[33928,33792,-8599107748829489,-8599101715170092],[33928,33797,-13247605033203059,-13247603855385956],[33928,33798,26495207861603338,26495209915574692],[33928,33996,-22544604430576096,-22544603307191776],[33928,34188,22544603307191776,22544604430576096],[33928,34828,22544603305492866,22544604432275006],[33928,35980,22544603305492866,22544604432275006],[33928,131136,-1975303102468593,-1975301917236486],[33928,131210,-6623803284297315,-6623801159997192],[33928,131212,8599101715170092,8599107748829489],[33928,131328,1975301917236486,1975303102468593],[33928,132106,6623801159997192,6623803284297315],[33928,132108,-8599107748829489,-8599101715170092],[33928,132288,-1975303102468593,-1975301917236486],[33928,132480,1975301917236486,1975303102468593],[33928,133120,1975301915400511,1975303104304567],[33928,134272,1975301915400511,1975303104304567],[33928,163912,-1975303102468593,-1975301917236486],[33928,163970,6623801159997192,6623803284297315],[33928,163972,-8599107748829489,-8599101715170092],[33928,164104,1975301917236486,1975303102468593],[33928,164866,-6623803284297315,-6623801159997192],[33928,164868,8599101715170092,8599107748829489],[33928,165064,-1975303102468593,-1975301917236486],[33928,165256,1975301917236486,1975303102468593],[33928,165896,1975301915400511,1975303104304567],[33928,167048,1975301915400511,1975303104304567],[33928,524292,-22544604444342592,-22544603293425280],[33928,525444,-22544604444342592,-22544603293425280],[33928,557068,-22544604444342592,-22544603293425280],[33928,558220,-22544604444342592,-22544603293425280],[33928,655360,-1975303111382023,-1975301908323058],[33928,655496,9296998164928852,9297000684250004],[33928,656392,-11272303635356703,-11272300233527231],[33928,656512,-1198509906,1198509903],[33928,688136,-1198509906,1198509903],[33928,688256,-11272303635356703,-11272300233527231],[33928,689152,9296998164928852,9297000684250004],[33928,689288,-1975303111382023,-1975301908323058],[33928,1048580,22544603293425280,22544604444342592],[33928,1049732,22544603293425280,22544604444342592],[33928,1081356,22544603293425280,22544604444342592],[33928,1082508,22544603293425280,22544604444342592],[33928,1179648,1975301908323058,1975303111382023],[33928,1180800,1975301908323058,1975303111382023],[33928,1212424,1975301908323058,1975303111382023],[33928,1213576,1975301908323058,1975303111382023],[33928,67240072,4648499087000812,4648500337588616],[33928,67240968,-4648500337588616,-4648499087000812],[33928,67272832,-4648500337588616,-4648499087000812],[33928,67273728,4648499087000812,4648500337588616],[33928,1073741964,-13247605033169427,-13247603855419588],[33928,1073742860,13247603855419588,13247605033169427],[33928,1073774724,13247603855419588,13247605033169427],[33928,1073775620,-13247605033169427,-13247603855419588],[33928,1073873032,1975301917270118,1975303102434961],[33928,1073873928,-1975303102434961,-1975301917270118],[33928,1073905792,-1975303102434961,-1975301917270118],[33928,1073906688,1975301917270118,1975303102434961],[33933,129,13247603855419588,13247605033169427],[33933,132,-26495209915574692,-26495207861603338],[33933,141,-13247605033203059,-13247603855385956],[33933,1025,-13247605033169427,-13247603855419588],[33933,1028,26495207861603338,26495209915574692],[33933,1037,13247603855385956,13247605033203059],[33933,32896,13247603855385956,13247605033203059],[33933,32905,26495207861603338,26495209915574692],[33933,32908,-13247605033169427,-13247603855419588],[33933,33792,-13247605033203059,-13247603855385956],[33933,33801,-26495209915574692,-26495207861603338],[33933,33804,13247603855419588,13247605033169427],[33934,132,1975301917270118,1975303102434961],[33934,142,1975301917270118,1975303102434961],[33934,1028,-1975303102434961,-1975301917270118],[33934,1038,-1975303102434961,-1975301917270118],[33934,32896,-1975303102434961,-1975301917270118],[33934,32906,-1975303102434961,-1975301917270118],[33934,33792,1975301917270118,1975303102434961],[33934,33802,1975301917270118,1975303102434961],[33984,204,1975301917236486,1975303102468593],[33984,1100,-24519907391505747,-24519905365967204],[33984,1164,22544603307191776,22544604430576096],[33984,32844,22544603307191776,22544604430576096],[33984,32908,-24519907391505747,-24519905365967204],[33984,33804,1975301917236486,1975303102468593],[33984,131272,-13247605066155522,-13247603822433492],[33984,132168,11272300873839524,11272302995044411],[33984,132232,1975301917236486,1975303102468593],[33984,163912,1975301917236486,1975303102468593],[33984,163976,11272300873839524,11272302995044411],[33984,164872,-13247605066155522,-13247603822433492],[33984,655552,4648499087000812,4648500337588616],[33984,656448,-6623803284297315,-6623801159997192],[33984,656512,1975301917270118,1975303102434961],[33984,688192,1975301917270118,1975303102434961],[33984,688256,-6623803284297315,-6623801159997192],[33984,689152,4648499087000812,4648500337588616],[33996,68,-22544604430576096,-22544603307191776],[33996,132,24519905365967204,24519907391505747],[33996,204,1975301917236486,1975303102468593],[33996,1028,-1975303102468593,-1975301917236486],[33996,1100,-24519907391505747,-24519905365967204],[33996,1164,22544603307191776,22544604430576096],[33996,32832,22544603307191776,22544604430576096],[33996,32896,-24519907391505747,-24519905365967204],[33996,32968,-1975303102468593,-1975301917236486],[33996,33792,1975301917236486,1975303102468593],[33996,33864,24519905365967204,24519907391505747],[33996,33928,-22544604430576096,-22544603307191776],[34176,396,22544603307191776,22544604430576096],[34176,1164,-22544604430576096,-22544603307191776],[34176,33036,-22544604430576096,-22544603307191776],[34176,33804,22544603307191776,22544604430576096],[34176,131464,1975301917236486,1975303102468593],[34176,132232,-1975303102468593,-1975301917236486],[34176,164104,-1975303102468593,-1975301917236486],[34176,164872,1975301917236486,1975303102468593],[34176,655744,1975301917270118,1975303102434961],[34176,656512,-1975303102434961,-1975301917270118],[34176,688384,-1975303102434961,-1975301917270118],[34176,689152,1975301917270118,1975303102434961],[34188,260,22544603307191776,22544604430576096],[34188,396,22544603307191776,22544604430576096],[34188,1028,-22544604430576096,-22544603307191776],[34188,1164,-22544604430576096,-22544603307191776],[34188,33024,-22544604430576096,-22544603307191776],[34188,33160,-22544604430576096,-22544603307191776],[34188,33792,22544603307191776,22544604430576096],[34188,33928,22544603307191776,22544604430576096],[34816,1164,-22544604432275006,-22544603305492866],[34816,35980,-22544604432275006,-22544603305492866],[34816,132232,-1975303104304567,-1975301915400511],[34816,167048,-1975303104304567,-1975301915400511],[34816,656512,-1975303106832961,-1975301912872117],[34816,691328,-1975303106832961,-1975301912872117],[34816,1704960,13247603851021587,13247605037567427],[34816,1739776,13247603851021587,13247605037567427],[34816,3801088,13247603851851071,13247605036737943],[34816,3835904,13247603851851071,13247605036737943],[34828,1164,-22544604432275006,-22544603305492866],[34828,3204,22544603305492866,22544604432275006],[34828,33928,22544603305492866,22544604432275006],[34828,35968,-22544604432275006,-22544603305492866],[34952,1028,-22544604432275006,-22544603305492866],[34952,3204,-22544604432275006,-22544603305492866],[34952,33804,-22544604432275006,-22544603305492866],[34952,35980,-22544604432275006,-22544603305492866],[34952,132096,-1975303104304567,-1975301915400511],[34952,134272,-1975303104304567,-1975301915400511],[34952,164872,-1975303104304567,-1975301915400511],[34952,167048,-1975303104304567,-1975301915400511],[35968,1164,-22544604432275006,-22544603305492866],[35968,2188,22544603305492866,22544604432275006],[35968,33804,22544603305492866,22544604432275006],[35968,34828,-22544604432275006,-22544603305492866],[35968,132232,-1975303104304567,-1975301915400511],[35968,133256,1975301915400511,1975303104304567],[35968,164872,1975301915400511,1975303104304567],[35968,165896,-1975303104304567,-1975301915400511],[35968,656512,-1975303106832961,-1975301912872117],[35968,657536,1975301912872117,1975303106832961],[35968,689152,1975301912872117,1975303106832961],[35968,690176,-1975303106832961,-1975301912872117],[35980,1028,-22544604432275006,-22544603305492866],[35980,1164,-22544604432275006,-22544603305492866],[35980,2052,22544603305492866,22544604432275006],[35980,2188,22544603305492866,22544604432275006],[35980,33792,22544603305492866,22544604432275006],[35980,33928,22544603305492866,22544604432275006],[35980,34816,-22544604432275006,-22544603305492866],[35980,34952,-22544604432275006,-22544603305492866],[131073,0,-1395798588612732,-1395780181745792],[131073,6,20569293260874416,20569309457188365],[131073,10,126278022677218062,126278066975886174],[131073,12,-354586345522376890,-354586294853133538],[131073,66,-15920803457056280,-15920799836417081],[131073,72,-4648502477690436,-4648496946898994],[131073,78,-3950606232496514,-3950603806913643],[131073,130,15920798736625752,15920804556847610],[131073,132,-1975305295452736,-1975299724252344],[131073,136,3950601681274309,3950608358135846],[131073,142,-22544606578062592,-22544601159705275],[131073,202,-3950606322255178,-3950603717154982],[131073,32770,-9297003724271436,-9296995124907418],[131073,32772,207738951876696445,207738996127646956],[131073,32776,20569293250811822,20569309467250933],[131073,32782,58336806904098799,58336817460025984],[131073,32842,-4648500337554984,-4648499087034444],[131073,32906,13247603822433492,13247605066155522],[131073,32908,11272300719992475,11272303148891462],[131073,131073,-1395798588612732,-1395780181745792],[131073,131079,20569293260874416,20569309457188365],[131073,131083,126278022677218062,126278066975886174],[131073,131085,-354586345522376890,-354586294853133538],[131073,131139,-15920803457056280,-15920799836417081],[131073,131145,-4648502477690436,-4648496946898994],[131073,131151,-3950606232496514,-3950603806913643],[131073,131203,15920798736625752,15920804556847610],[131073,131205,-1975305295452736,-1975299724252344],[131073,131209,3950601681274309,3950608358135846],[131073,131215,-22544606578062592,-22544601159705275],[131073,131275,-3950606322255178,-3950603717154982],[131073,163843,-9297003724271436,-9296995124907418],[131073,163845,207738951876696445,207738996127646956],[131073,163849,20569293250811822,20569309467250933],[131073,163855,58336806904098799,58336817460025984],[131073,163915,-4648500337554984,-4648499087034444],[131073,163979,13247603822433492,13247605066155522],[131073,163981,11272300719992475,11272303148891462],[131073,524290,-4648501974835595,-4648497449753834],[131073,524292,-3950609227302328,-3950600812107830],[131073,524296,8599101386783086,8599108077216494],[131073,524302,22544601455814116,22544606281953756],[131073,524362,-4648500367937249,-4648499056652180],[131073,524426,26495207590564460,26495210186613570],[131073,524428,-3950606255704424,-3950603783705734],[131073,524482,-4648500367937249,-4648499056652180],[131073,557056,-1975304216083780,-1975300803621296],[131073,557062,-1975303102434961,-1975301917270118],[131073,557066,-6623803284297315,-6623801159997192],[131073,557068,-7321700200255013,-7321693629218766],[131073,655363,-4648501974835595,-4648497449753834],[131073,655365,-3950609227302328,-3950600812107830],[131073,655369,8599101386783086,8599108077216494],[131073,655375,22544601455814116,22544606281953756],[131073,655435,-4648500367937249,-4648499056652180],[131073,655499,26495207590564460,26495210186613570],[131073,655501,-3950606255704424,-3950603783705734],[131073,655555,-4648500367937249,-4648499056652180],[131073,688129,-1975304216083780,-1975300803621296],[131073,688135,-1975303102434961,-1975301917270118],[131073,688139,-6623803284297315,-6623801159997192],[131073,688141,-7321700200255013,-7321693629218766],[131073,67108866,-4648502006549417,-4648497418040009],[131073,67108868,-3950609278673694,-3950600760736484],[131073,67108872,8599101567032212,8599107896967374],[131073,67108878,22544601425886842,22544606311881030],[131073,67108938,-4648500364875210,-4648499059714221],[131073,67109002,13247603792440361,13247605096148654],[131073,67109004,-1975303134066536,-1975301885638544],[131073,67141632,-1975304247543921,-1975300772161160],[131073,67141638,-1975303106832961,-1975301912872117],[131073,67141642,-6623803293231701,-6623801151062805],[131073,67141644,-7321700242729086,-7321693586744675],[131073,67239939,-4648502006549417,-4648497418040009],[131073,67239941,-3950609278673694,-3950600760736484],[131073,67239945,8599101567032212,8599107896967374],[131073,67239951,22544601425886842,22544606311881030],[131073,67240011,-4648500364875210,-4648499059714221],[131073,67240075,13247603792440361,13247605096148654],[131073,67240077,-1975303134066536,-1975301885638544],[131073,67272705,-1975304247543921,-1975300772161160],[131073,67272711,-1975303106832961,-1975301912872117],[131073,67272715,-6623803293231701,-6623801151062805],[131073,67272717,-7321700242729086,-7321693586744675],[131073,67633162,-6623803358085955,-6623801086208550],[131073,67633164,-24519907464403207,-24519905293069738],[131073,67665924,26495207799425147,26495209977752878],[131073,67764235,-6623803358085955,-6623801086208550],[131073,67764237,-24519907464403207,-24519905293069738],[131073,67796997,26495207799425147,26495209977752878],[131073,1073741828,-4648502525987800,-4648496898601629],[131073,1073774592,-15920803465251079,-15920799828222285],[131073,1073774598,-4648500342125002,-4648499082464426],[131073,1073774604,-3950606243598603,-3950603795811556],[131073,1073872901,-4648502525987800,-4648496898601629],[131073,1073905665,-15920803465251079,-15920799828222285],[131073,1073905671,-4648500342125002,-4648499082464426],[131073,1073905677,-3950606243598603,-3950603795811556],[131073,1074298884,-1975303127852212,-1975301891852867],[131073,1074429957,-1975303127852212,-1975301891852867],[131073,1140883460,-3950606276156332,-3950603763253824],[131073,1141014533,-3950606276156332,-3950603763253824],[131074,0,-53534633662818236,-53534570238879156],[131074,5,-7901214462754538,-7901205616065770],[131074,9,-133599767595705506,-133599715886872508],[131074,12,332041690197650200,332041742440092355],[131074,65,6623799170377024,6623805273917482],[131074,68,-4648502490229551,-4648496934359881],[131074,72,-85257851747913146,-85257795604898244],[131074,77,47064508673192612,47064511822048211],[131074,129,-4648502622318527,-4648496802270899],[131074,132,9296996307740651,9297002541438203],[131074,136,235357851276653147,235357909101556156],[131074,141,-24519907696178166,-24519905061294785],[131074,192,-7901216811716128,-7901203267104184],[131074,201,26495207121529005,26495210655649026],[131074,204,-9297000814034204,-9296998035144653],[131074,264,-4648501379109328,-4648498045480103],[131074,456,22544603251852693,22544604485915178],[131074,1032,9296996568177046,9297002281001814],[131074,1152,-9296999886451704,-9296998962727152],[131074,1224,-13247605061713792,-13247603826875223],[131074,32769,9296995124907418,9297003724271436],[131074,32772,-7901214439889918,-7901205638930376],[131074,32776,-215060696800522478,-215060645033294693],[131074,32781,-45089212389398762,-45089203086137004],[131074,32832,4648497448264558,4648501976324875],[131074,32837,1975301917236486,1975303102468593],[131074,32841,6623801159997192,6623803284297315],[131074,32844,-26495210066338854,-26495207710839176],[131074,32896,-4648502614033929,-4648496810555499],[131074,32905,-13247605066155522,-13247603822433492],[131074,32908,-24519907696178166,-24519905061294785],[131074,32968,-26495210186613570,-26495207590564460],[131074,131074,-53534633662818236,-53534570238879156],[131074,131079,-7901214462754538,-7901205616065770],[131074,131083,-133599767595705506,-133599715886872508],[131074,131086,332041690197650200,332041742440092355],[131074,131139,6623799170377024,6623805273917482],[131074,131142,-4648502490229551,-4648496934359881],[131074,131146,-85257851747913146,-85257795604898244],[131074,131151,47064508673192612,47064511822048211],[131074,131203,-4648502622318527,-4648496802270899],[131074,131206,9296996307740651,9297002541438203],[131074,131210,235357851276653147,235357909101556156],[131074,131215,-24519907696178166,-24519905061294785],[131074,131266,-7901216811716128,-7901203267104184],[131074,131275,26495207121529005,26495210655649026],[131074,131278,-9297000814034204,-9296998035144653],[131074,131338,-4648501379109328,-4648498045480103],[131074,131530,22544603251852693,22544604485915178],[131074,132106,9296996568177046,9297002281001814],[131074,132226,-9296999886451704,-9296998962727152],[131074,132298,-13247605061713792,-13247603826875223],[131074,163843,9296995124907418,9297003724271436],[131074,163846,-7901214439889918,-7901205638930376],[131074,163850,-215060696800522478,-215060645033294693],[131074,163855,-45089212389398762,-45089203086137004],[131074,163906,4648497448264558,4648501976324875],[131074,163911,1975301917236486,1975303102468593],[131074,163915,6623801159997192,6623803284297315],[131074,163918,-26495210066338854,-26495207710839176],[131074,163970,-4648502614033929,-4648496810555499],[131074,163979,-13247605066155522,-13247603822433492],[131074,163982,-24519907696178166,-24519905061294785],[131074,164042,-26495210186613570,-26495207590564460],[131074,524289,4648497449753834,4648501974835595],[131074,524292,-4648502481944947,-4648496942644475],[131074,524296,-166718780962043040,-166718724742007499],[131074,524301,-26495210066338854,-26495207710839176],[131074,524352,9296994579848082,9297004269330780],[131074,524361,6623801098016986,6623803346277523],[131074,524364,-13247605067077166,-13247603821511848],[131074,524416,-7901216780706716,-7901203298113598],[131074,524425,-26495210186613570,-26495207590564460],[131074,524428,-9297000814034204,-9296998035144653],[131074,524481,4648499056652180,4648500367937249],[131074,524488,-45089213226916902,-45089202248618840],[131074,524736,1975301885638544,1975303134066536],[131074,525448,-13247605061713792,-13247603826875223],[131074,525504,-13247605067077166,-13247603821511848],[131074,557056,6623799192952293,6623805251342207],[131074,557061,1975301917270118,1975303102434961],[131074,557065,6623801159997192,6623803284297315],[131074,557068,47064508673192612,47064511822048211],[131074,557128,6623801098016984,6623803346277521],[131074,557192,26495207121529005,26495210655649026],[131074,557248,4648499056652179,4648500367937248],[131074,655363,4648497449753834,4648501974835595],[131074,655366,-4648502481944947,-4648496942644475],[131074,655370,-166718780962043040,-166718724742007499],[131074,655375,-26495210066338854,-26495207710839176],[131074,655426,9296994579848082,9297004269330780],[131074,655435,6623801098016986,6623803346277523],[131074,655438,-13247605067077166,-13247603821511848],[131074,655490,-7901216780706716,-7901203298113598],[131074,655499,-26495210186613570,-26495207590564460],[131074,655502,-9297000814034204,-9296998035144653],[131074,655555,4648499056652180,4648500367937249],[131074,655562,-45089213226916902,-45089202248618840],[131074,655810,1975301885638544,1975303134066536],[131074,656522,-13247605061713792,-13247603826875223],[131074,656578,-13247605067077166,-13247603821511848],[131074,688130,6623799192952293,6623805251342207],[131074,688135,1975301917270118,1975303102434961],[131074,688139,6623801159997192,6623803284297315],[131074,688142,47064508673192612,47064511822048211],[131074,688202,6623801098016984,6623803346277521],[131074,688266,26495207121529005,26495210655649026],[131074,688322,4648499056652179,4648500367937248],[131074,1048584,-4648501379109327,-4648498045480102],[131074,1179658,-4648501379109327,-4648498045480102],[131074,1573000,22544603251852693,22544604485915178],[131074,1573056,1975301885638543,1975303134066535],[131074,1704074,22544603251852693,22544604485915178],[131074,1704130,1975301885638543,1975303134066535],[131074,67108865,4648497418040009,4648502006549417],[131074,67108868,-4648502525987800,-4648496898601629],[131074,67108872,-118376856345199404,-118376813229084520],[131074,67108877,-26495210075134854,-26495207702043174],[131074,67108928,4648497289301856,4648502135287572],[131074,67108937,6623801107293350,6623803337001160],[131074,67108940,-13247605061578886,-13247603827010127],[131074,67108992,-4648502836441441,-4648496588147988],[131074,67109001,-13247605096148654,-13247603792440361],[131074,67109004,-11272302707496740,-11272301161387192],[131074,67109064,-26495210251583166,-26495207525594866],[131074,67141632,6623799135992659,6623805308301850],[131074,67141637,1975301912872117,1975303106832961],[131074,67141641,6623801151062805,6623803293231701],[131074,67141644,47064508655028107,47064511840212707],[131074,67141704,6623801102928978,6623803341365525],[131074,67141768,24519905258499972,24519907498972975],[131074,67239939,4648497418040009,4648502006549417],[131074,67239942,-4648502525987800,-4648496898601629],[131074,67239946,-118376856345199404,-118376813229084520],[131074,67239951,-26495210075134854,-26495207702043174],[131074,67240002,4648497289301856,4648502135287572],[131074,67240011,6623801107293350,6623803337001160],[131074,67240014,-13247605061578886,-13247603827010127],[131074,67240066,-4648502836441441,-4648496588147988],[131074,67240075,-13247605096148654,-13247603792440361],[131074,67240078,-11272302707496740,-11272301161387192],[131074,67240138,-26495210251583166,-26495207525594866],[131074,67272706,6623799135992659,6623805308301850],[131074,67272711,1975301912872117,1975303106832961],[131074,67272715,6623801151062805,6623803293231701],[131074,67272718,47064508655028107,47064511840212707],[131074,67272778,6623801102928978,6623803341365525],[131074,67272842,24519905258499972,24519907498972975],[131074,67633152,6623798927600937,6623805516693572],[131074,67633161,6623801086208550,6623803358085955],[131074,67633164,24519905293069738,24519907464403207],[131074,67633224,6623801015151933,6623803429142575],[131074,67633288,47064508360216381,47064512135024435],[131074,67633344,1975301824995317,1975303194709763],[131074,67665928,-31143710514241570,-31143706687525880],[131074,67764226,6623798927600937,6623805516693572],[131074,67764235,6623801086208550,6623803358085955],[131074,67764238,24519905293069738,24519907464403207],[131074,67764298,6623801015151933,6623803429142575],[131074,67764362,47064508360216381,47064512135024435],[131074,67764418,1975301824995317,1975303194709763],[131074,67797002,-31143710514241570,-31143706687525880],[131074,268435464,8599101184095716,8599108279903872],[131074,268566538,8599101184095716,8599108279903872],[131074,268959880,1975301824995317,1975303194709763],[131074,268959936,4648499019397906,4648500405191522],[131074,269090954,1975301824995317,1975303194709763],[131074,269091010,4648499019397906,4648500405191522],[131074,1073741832,8599101567032212,8599107896967374],[131074,1073774597,4648499082464426,4648500342125002],[131074,1073774604,1975301912872117,1975303106832961],[131074,1073872906,8599101567032212,8599107896967374],[131074,1073905671,4648499082464426,4648500342125002],[131074,1073905678,1975301912872117,1975303106832961],[131074,17592186044424,13247602482884872,13247606405704134],[131074,17592186175498,13247602482884872,13247606405704134],[131076,0,-263722470861251000,-263722338607825936],[131076,3,20569296515201551,20569306202861252],[131076,9,320189871195698486,320189931323813606],[131076,10,-120352160799604924,-120352113794384070],[131076,66,11272301474344214,11272302394539722],[131076,72,-4648505765491449,-4648493659097978],[131076,75,1975301889643525,1975303130061553],[131076,129,-1975305295486367,-1975299724218711],[131076,130,-13945502255682351,-13945496018085931],[131076,136,-48767744686891983,-48767696654383246],[131076,139,47064508855883441,47064511639357377],[131076,192,-9296999886451704,-9296998962727152],[131076,1032,6623799524173159,6623804920121353],[131076,1152,11272301510581248,11272302358302688],[131076,32769,-215060696800522478,-215060645033294693],[131076,32770,20569293250811822,20569309467250933],[131076,32776,189346333623047312,189346485052598824],[131076,32779,-35792211250117282,-35792205376239611],[131076,32896,23242489006570695,23242508116376415],[131076,32905,-24519908074966154,-24519904682506797],[131076,32906,15920800076521641,15920803216951721],[131076,131076,-263722470861251000,-263722338607825936],[131076,131079,20569296515201551,20569306202861252],[131076,131085,320189871195698486,320189931323813606],[131076,131086,-120352160799604924,-120352113794384070],[131076,131142,11272301474344214,11272302394539722],[131076,131148,-4648505765491449,-4648493659097978],[131076,131151,1975301889643525,1975303130061553],[131076,131205,-1975305295486367,-1975299724218711],[131076,131206,-13945502255682351,-13945496018085931],[131076,131212,-48767744686891983,-48767696654383246],[131076,131215,47064508855883441,47064511639357377],[131076,131268,-9296999886451704,-9296998962727152],[131076,132108,6623799524173159,6623804920121353],[131076,132228,11272301510581248,11272302358302688],[131076,163845,-215060696800522478,-215060645033294693],[131076,163846,20569293250811822,20569309467250933],[131076,163852,189346333623047312,189346485052598824],[131076,163855,-35792211250117282,-35792205376239611],[131076,163972,23242489006570695,23242508116376415],[131076,163981,-24519908074966154,-24519904682506797],[131076,163982,15920800076521641,15920803216951721],[131076,524289,3950600812107830,3950609227302328],[131076,524290,15920798874182437,15920804419290919],[131076,524296,-245506516979052740,-245506452671352604],[131076,524299,3950603784385098,3950606255025060],[131076,524416,-4795158453,4795158459],[131076,524425,3950603783705734,3950606255704424],[131076,524426,-21846710653066666,-21846707699521935],[131076,524488,4648499056652180,4648500367937249],[131076,525448,-13247605037567427,-13247603851021587],[131076,557056,296947377306566843,296947428089998092],[131076,557065,-3950609227302328,-3950600812107830],[131076,557066,8599103045112288,8599106418887301],[131076,557192,15222903999406109,15222909908887987],[131076,655365,3950600812107830,3950609227302328],[131076,655366,15920798874182437,15920804419290919],[131076,655372,-245506516979052740,-245506452671352604],[131076,655375,3950603784385098,3950606255025060],[131076,655492,-4795158453,4795158459],[131076,655501,3950603783705734,3950606255704424],[131076,655502,-21846710653066666,-21846707699521935],[131076,655564,4648499056652180,4648500367937249],[131076,656524,-13247605037567427,-13247603851021587],[131076,688132,296947377306566843,296947428089998092],[131076,688141,-3950609227302328,-3950600812107830],[131076,688142,8599103045112288,8599106418887301],[131076,688268,15222903999406109,15222909908887987],[131076,1048584,-4648501315670959,-4648498108918473],[131076,1081344,-1975304034893986,-1975300984811094],[131076,1179660,-4648501315670959,-4648498108918473],[131076,1212420,-1975304034893986,-1975300984811094],[131076,1573000,1975301912872117,1975303106832961],[131076,1704076,1975301912872117,1975303106832961],[131076,67108865,3950600760736484,3950609278673694],[131076,67108866,15920798832463209,15920804461010156],[131076,67108872,-215060696800522478,-215060645033294693],[131076,67108875,3950603763253824,3950606276156332],[131076,67108992,15920798873942155,15920804419531205],[131076,67109001,1975301885638544,1975303134066536],[131076,67109002,-8599105559539709,-8599103904459875],[131076,67141632,320189871195698486,320189931323813606],[131076,67141641,-3950609278673694,-3950600760736484],[131076,67141642,8599103034002244,8599106429997343],[131076,67141768,8599103045112288,8599106418887301],[131076,67239941,3950600760736484,3950609278673694],[131076,67239942,15920798832463209,15920804461010156],[131076,67239948,-215060696800522478,-215060645033294693],[131076,67239951,3950603763253824,3950606276156332],[131076,67240068,15920798873942155,15920804419531205],[131076,67240077,1975301885638544,1975303134066536],[131076,67240078,-8599105559539709,-8599103904459875],[131076,67272708,320189871195698486,320189931323813606],[131076,67272717,-3950609278673694,-3950600760736484],[131076,67272718,8599103034002244,8599106429997343],[131076,67272844,8599103045112288,8599106418887301],[131076,67633152,-19871412444254049,-19871400888629471],[131076,67633161,24519905293069738,24519907464403207],[131076,67633162,6623801086208550,6623803358085955],[131076,67633288,8599102944565871,8599106519433716],[131076,67665921,-26495209977752878,-26495207799425147],[131076,67665928,19871400888629471,19871412444254049],[131076,67764228,-19871412444254049,-19871400888629471],[131076,67764237,24519905293069738,24519907464403207],[131076,67764238,6623801086208550,6623803358085955],[131076,67764364,8599102944565871,8599106519433716],[131076,67796997,-26495209977752878,-26495207799425147],[131076,67797004,19871400888629471,19871412444254049],[131076,268435464,8599101150291472,8599108313708112],[131076,268468224,-3950608433100829,-3950601606309328],[131076,268566540,8599101150291472,8599108313708112],[131076,268599300,-3950608433100829,-3950601606309328],[131076,268959880,4648499056652179,4648500367937248],[131076,269090956,4648499056652179,4648500367937248],[131076,1073741825,15920798832463209,15920804461010156],[131076,1073741832,20569293250811822,20569309467250933],[131076,1073774592,-120352160799604924,-120352113794384070],[131076,1073774601,8599103034002244,8599106429997343],[131076,1073872901,15920798832463209,15920804461010156],[131076,1073872908,20569293250811822,20569309467250933],[131076,1073905668,-120352160799604924,-120352113794384070],[131076,1073905677,8599103034002244,8599106429997343],[131076,1074266112,-1975305295246081,-1975299724458993],[131076,1074298881,1975301891852867,1975303127852212],[131076,1074298888,-24519908074966154,-24519904682506797],[131076,1074397188,-1975305295246081,-1975299724458993],[131076,1074429957,1975301891852867,1975303127852212],[131076,1074429964,-24519908074966154,-24519904682506797],[131076,1140850688,20569296515201551,20569306202861252],[131076,1140883457,3950603763253824,3950606276156332],[131076,1140883464,-35792211250117282,-35792205376239611],[131076,1140981764,20569296515201551,20569306202861252],[131076,1141014533,3950603763253824,3950606276156332],[131076,1141014540,-35792211250117282,-35792205376239611],[131076,1141407744,-39742815032300530,-39742811633466510],[131076,1141538820,-39742815032300530,-39742811633466510],[131076,1409318912,-13247605061599516,-13247603826989498],[131076,1409449988,-13247605061599516,-13247603826989498],[131076,17592186044424,13247602585717435,13247606302871576],[131076,17592186077184,-1975304301048867,-1975300718656210],[131076,17592186175500,13247602585717435,13247606302871576],[131076,17592186208260,-1975304301048867,-1975300718656210],[131076,17593326927872,-13247605070627222,-13247603817961795],[131076,17593327058948,-13247605070627222,-13247603817961795],[131076,140737488388096,-11272305103287715,-11272298765596219],[131076,140737488519172,-11272305103287715,-11272298765596219],[131076,140738562097152,-9296999899749346,-9296998949429508],[131076,140738562228228,-9296999899749346,-9296998949429508],[131076,140738629238784,22544603247468479,22544604490299392],[131076,140738629369860,22544603247468479,22544604490299392],[131079,0,33237389706387162,33237395650918114],[131079,3,20569296515201551,20569306202861252],[131079,5,-7901214462754538,-7901205616065770],[131079,6,20569293260874416,20569309457188365],[131079,72,47064508673158980,47064511822081843],[131079,75,-3950608753660642,-3950601285749510],[131079,78,51015113107831353,51015117426819622],[131079,139,22544602330282044,22544605407485828],[131079,141,-31143710097470678,-31143707104296780],[131079,142,8599101696810952,8599107767188634],[131079,32776,-35792211250117282,-35792205376239611],[131079,32779,56941019665500378,56941025928265826],[131079,32781,-13247609434184624,-13247599454404401],[131079,32782,-79485631987828172,-79485621343705900],[131079,32832,1975301917236486,1975303102468593],[131079,32835,1975301917236486,1975303102468593],[131079,131073,20569293260874416,20569309457188365],[131079,131074,-7901214462754538,-7901205616065770],[131079,131076,20569296515201551,20569306202861252],[131079,131079,33237389706387162,33237395650918114],[131079,131145,51015113107831353,51015117426819622],[131079,131148,-3950608753660642,-3950601285749510],[131079,131151,47064508673158980,47064511822081843],[131079,131209,8599101696810952,8599107767188634],[131079,131210,-31143710097470678,-31143707104296780],[131079,131212,22544602330282044,22544605407485828],[131079,163849,-79485631987828172,-79485621343705900],[131079,163850,-13247609434184624,-13247599454404401],[131079,163852,56941019665500378,56941025928265826],[131079,163855,-35792211250117282,-35792205376239611],[131079,163908,1975301917236486,1975303102468593],[131079,163911,1975301917236486,1975303102468593],[131079,524299,28470509691254389,28470513105628714],[131079,524301,-19871408304471303,-19871405028412220],[131079,524302,-8599108077216494,-8599101386783086],[131079,557061,1975301917270118,1975303102434961],[131079,557062,-1975303102434961,-1975301917270118],[131079,655369,-8599108077216494,-8599101386783086],[131079,655370,-19871408304471303,-19871405028412220],[131079,655372,28470509691254389,28470513105628714],[131079,688129,-1975303102434961,-1975301917270118],[131079,688130,1975301917270118,1975303102434961],[131079,67108875,28470509805039004,28470512991844104],[131079,67108877,-19871408238006792,-19871405094876730],[131079,67108878,-8599107896967374,-8599101567032212],[131079,67141637,1975301912872117,1975303106832961],[131079,67141638,-1975303106832961,-1975301912872117],[131079,67239945,-8599107896967374,-8599101567032212],[131079,67239946,-19871408238006792,-19871405094876730],[131079,67239948,28470509805039004,28470512991844104],[131079,67272705,-1975303106832961,-1975301912872117],[131079,67272706,1975301912872117,1975303106832961],[131079,1073774597,4648499082464426,4648500342125002],[131079,1073774598,-4648500342125002,-4648499082464426],[131079,1073905665,-4648500342125002,-4648499082464426],[131079,1073905666,4648499082464426,4648500342125002],[131080,0,-264466246035572172,-264466089763059996],[131080,3,19173508878057052,19173515069647194],[131080,5,-63683210088709754,-63683203085183716],[131080,6,-222382391306796628,-222382344356494327],[131080,65,11272301474344214,11272302394539722],[131080,66,19173508522816278,19173515424887978],[131080,68,6623798642954895,6623805801339609],[131080,129,1277404472099680,1277411162426122],[131080,130,-168694080794423276,-168694029929332347],[131080,132,-258754116160104515,-258754062378889847],[131080,192,-63683211765177830,-63683201408715624],[131080,1026,4648498045480101,4648501379109326],[131080,1028,-15920803246405425,-15920800047067943],[131080,1088,-9296999886451704,-9296998962727152],[131080,1152,-11272305028685690,-11272298840198250],[131080,32769,-7901214439889918,-7901205638930376],[131080,32770,207738951876696445,207738996127646956],[131080,32772,496122563821345000,496122638017568840],[131080,32775,-3950606208609134,-3950603830801022],[131080,32832,-8599108313708112,-8599101150291472],[131080,32896,272001667572402980,272001719855180396],[131080,32901,-1975303102468593,-1975301917236486],[131080,32902,57638914684866570,57638920294078918],[131080,33792,4648498108918473,4648501315670959],[131080,131080,-264466246035572172,-264466089763059996],[131080,131083,19173508878057052,19173515069647194],[131080,131085,-63683210088709754,-63683203085183716],[131080,131086,-222382391306796628,-222382344356494327],[131080,131145,11272301474344214,11272302394539722],[131080,131146,19173508522816278,19173515424887978],[131080,131148,6623798642954895,6623805801339609],[131080,131209,1277404472099680,1277411162426122],[131080,131210,-168694080794423276,-168694029929332347],[131080,131212,-258754116160104515,-258754062378889847],[131080,131272,-63683211765177830,-63683201408715624],[131080,132106,4648498045480101,4648501379109326],[131080,132108,-15920803246405425,-15920800047067943],[131080,132168,-9296999886451704,-9296998962727152],[131080,132232,-11272305028685690,-11272298840198250],[131080,163849,-7901214439889918,-7901205638930376],[131080,163850,207738951876696445,207738996127646956],[131080,163852,496122563821345000,496122638017568840],[131080,163855,-3950606208609134,-3950603830801022],[131080,163912,-8599108313708112,-8599101150291472],[131080,163976,272001667572402980,272001719855180396],[131080,163981,-1975303102468593,-1975301917236486],[131080,163982,57638914684866570,57638920294078918],[131080,164872,4648498108918473,4648501315670959],[131080,524289,-8599108077216494,-8599101386783086],[131080,524290,159397032038790385,159397079835786384],[131080,524292,272001667572402980,272001719855180396],[131080,524352,-7901216780706716,-7901203298113598],[131080,524416,302754886842070856,302754970477776592],[131080,524422,42416007508370071,42416013562281321],[131080,524482,-3950606383588294,-3950603655821866],[131080,524484,-4648500367937249,-4648499056652180],[131080,525312,-4795158453,4795158459],[131080,525442,13247603826875223,13247605061713792],[131080,525444,13247603851021587,13247605037567427],[131080,525504,11272301159430177,11272302709453757],[131080,557056,-258754116160104515,-258754062378889847],[131080,557061,-1975303102434961,-1975301917270118],[131080,557062,-53688314809080322,-53688310130455008],[131080,557186,-33119013675829617,-33119008545642919],[131080,557188,-58336815178304206,-58336809185820542],[131080,557248,-4648500367937248,-4648499056652179],[131080,558208,-1975303106832961,-1975301912872117],[131080,655369,-8599108077216494,-8599101386783086],[131080,655370,159397032038790385,159397079835786384],[131080,655372,272001667572402980,272001719855180396],[131080,655432,-7901216780706716,-7901203298113598],[131080,655496,302754886842070856,302754970477776592],[131080,655502,42416007508370071,42416013562281321],[131080,655562,-3950606383588294,-3950603655821866],[131080,655564,-4648500367937249,-4648499056652180],[131080,656392,-4795158453,4795158459],[131080,656522,13247603826875223,13247605061713792],[131080,656524,13247603851021587,13247605037567427],[131080,656584,11272301159430177,11272302709453757],[131080,688136,-258754116160104515,-258754062378889847],[131080,688141,-1975303102434961,-1975301917270118],[131080,688142,-53688314809080322,-53688310130455008],[131080,688266,-33119013675829617,-33119008545642919],[131080,688268,-58336815178304206,-58336809185820542],[131080,688328,-4648500367937248,-4648499056652179],[131080,689288,-1975303106832961,-1975301912872117],[131080,1048578,4648498045480102,4648501379109327],[131080,1048580,4648498108918473,4648501315670959],[131080,1048704,-4795158453,4795158459],[131080,1081344,-15920803246405425,-15920800047067943],[131080,1179658,4648498045480102,4648501379109327],[131080,1179660,4648498108918473,4648501315670959],[131080,1179784,-4795158453,4795158459],[131080,1212424,-15920803246405425,-15920800047067943],[131080,1572864,-11272305028685690,-11272298840198250],[131080,1572994,-22544604485915178,-22544603251852693],[131080,1572996,-1975303106832961,-1975301912872117],[131080,1573056,-1975303134066535,-1975301885638543],[131080,1574016,-45089208874918688,-45089206600617048],[131080,1605760,13247603851021587,13247605037567427],[131080,1703944,-11272305028685690,-11272298840198250],[131080,1704074,-22544604485915178,-22544603251852693],[131080,1704076,-1975303106832961,-1975301912872117],[131080,1704136,-1975303134066535,-1975301885638543],[131080,1705096,-45089208874918688,-45089206600617048],[131080,1736840,13247603851021587,13247605037567427],[131080,67108865,-8599107896967374,-8599101567032212],[131080,67108866,118376814987968068,118376854586315852],[131080,67108868,207738951876696445,207738996127646956],[131080,67108928,-8599108279903872,-8599101184095716],[131080,67108992,159397032038790385,159397079835786384],[131080,67108998,31143706687525880,31143710514241570],[131080,67109888,4648498045480102,4648501379109327],[131080,67141632,-222382391306796628,-222382344356494327],[131080,67141637,-1975303106832961,-1975301912872117],[131080,67141638,-53688314836179204,-53688310103356116],[131080,67141762,-31143710514241570,-31143706687525880],[131080,67141764,-53688314809080322,-53688310130455008],[131080,67239945,-8599107896967374,-8599101567032212],[131080,67239946,118376814987968068,118376854586315852],[131080,67239948,207738951876696445,207738996127646956],[131080,67240008,-8599108279903872,-8599101184095716],[131080,67240072,159397032038790385,159397079835786384],[131080,67240078,31143706687525880,31143710514241570],[131080,67240968,4648498045480102,4648501379109327],[131080,67272712,-222382391306796628,-222382344356494327],[131080,67272717,-1975303106832961,-1975301912872117],[131080,67272718,-53688314836179204,-53688310103356116],[131080,67272842,-31143710514241570,-31143706687525880],[131080,67272844,-53688314809080322,-53688310130455008],[131080,67633152,-168694080794423276,-168694029929332347],[131080,67633158,-31143710514241570,-31143706687525880],[131080,67633282,-53688315226712860,-53688309712822464],[131080,67633284,-33119013675829617,-33119008545642919],[131080,67633344,-1975303194709763,-1975301824995317],[131080,67634304,-22544604485915178,-22544603251852693],[131080,67665922,31143706687525880,31143710514241570],[131080,67665924,57638914684866570,57638920294078918],[131080,67666048,42416007508370071,42416013562281321],[131080,67764232,-168694080794423276,-168694029929332347],[131080,67764238,-31143710514241570,-31143706687525880],[131080,67764362,-53688315226712860,-53688309712822464],[131080,67764364,-33119013675829617,-33119008545642919],[131080,67764424,-1975303194709763,-1975301824995317],[131080,67765384,-22544604485915178,-22544603251852693],[131080,67797002,31143706687525880,31143710514241570],[131080,67797004,57638914684866570,57638920294078918],[131080,67797128,42416007508370071,42416013562281321],[131080,68157440,4648498045480101,4648501379109326],[131080,68288520,4648498045480101,4648501379109326],[131080,68681856,13247603826875223,13247605061713792],[131080,68812936,13247603826875223,13247605061713792],[131080,268435458,-8599108279903872,-8599101184095716],[131080,268435460,-8599108313708112,-8599101150291472],[131080,268435584,-7901216780706716,-7901203298113598],[131080,268468224,6623798642954895,6623805801339609],[131080,268566538,-8599108279903872,-8599101184095716],[131080,268566540,-8599108313708112,-8599101150291472],[131080,268566664,-7901216780706716,-7901203298113598],[131080,268599304,6623798642954895,6623805801339609],[131080,268959744,-63683211765177830,-63683201408715624],[131080,268959874,-1975303194709763,-1975301824995317],[131080,268959876,-4648500367937248,-4648499056652179],[131080,268959936,-4648500405191522,-4648499019397906],[131080,268960896,-1975303134066535,-1975301885638543],[131080,268992640,-4648500367937249,-4648499056652180],[131080,269090824,-63683211765177830,-63683201408715624],[131080,269090954,-1975303194709763,-1975301824995317],[131080,269090956,-4648500367937248,-4648499056652179],[131080,269091016,-4648500405191522,-4648499019397906],[131080,269091976,-1975303134066535,-1975301885638543],[131080,269123720,-4648500367937249,-4648499056652180],[131080,269484032,-9296999886451704,-9296998962727152],[131080,269615112,-9296999886451704,-9296998962727152],[131080,270008448,11272301159430177,11272302709453757],[131080,270139528,11272301159430177,11272302709453757],[131080,335544320,19173508522816278,19173515424887978],[131080,335675400,19173508522816278,19173515424887978],[131080,336068736,-3950606383588294,-3950603655821866],[131080,336199816,-3950606383588294,-3950603655821866],[131080,1073741826,-8599107896967374,-8599101567032212],[131080,1073741828,-7901214439889918,-7901205638930376],[131080,1073741952,-8599108077216494,-8599101386783086],[131080,1073774592,-63683210088709754,-63683203085183716],[131080,1073774597,-4648500342125002,-4648499082464426],[131080,1073774598,-1975303106832961,-1975301912872117],[131080,1073774724,-1975303102434961,-1975301917270118],[131080,1073872906,-8599107896967374,-8599101567032212],[131080,1073872908,-7901214439889918,-7901205638930376],[131080,1073873032,-8599108077216494,-8599101386783086],[131080,1073905672,-63683210088709754,-63683203085183716],[131080,1073905677,-4648500342125002,-4648499082464426],[131080,1073905678,-1975303106832961,-1975301912872117],[131080,1073905804,-1975303102434961,-1975301917270118],[131080,1074266112,1277404472099680,1277411162426122],[131080,1074298884,-1975303102468593,-1975301917236486],[131080,1074397192,1277404472099680,1277411162426122],[131080,1074429964,-1975303102468593,-1975301917236486],[131080,1140850688,19173508878057052,19173515069647194],[131080,1140883460,-3950606208609134,-3950603830801022],[131080,1140981768,19173508878057052,19173515069647194],[131080,1141014540,-3950606208609134,-3950603830801022],[131080,1342177280,11272301474344214,11272302394539722],[131080,1342308360,11272301474344214,11272302394539722],[131080,17592186044418,-13247606405704134,-13247602482884872],[131080,17592186044420,-13247606302871576,-13247602585717435],[131080,17592186044544,-13247606387717226,-13247602500871785],[131080,17592186077184,22544602005389605,22544605732378260],[131080,17592186175498,-13247606405704134,-13247602482884872],[131080,17592186175500,-13247606302871576,-13247602585717435],[131080,17592186175624,-13247606387717226,-13247602500871785],[131080,17592186208264,22544602005389605,22544605732378260],[131080,17592186568704,22544601914969187,22544605822798680],[131080,17592186699784,22544601914969187,22544605822798680],[131080,17592253153280,-5346396222573668,-5346392587195036],[131080,17592253284360,-5346396222573668,-5346392587195036],[131080,17592454479872,-9296999945106400,-9296998904072456],[131080,17592454610952,-9296999945106400,-9296998904072456],[131080,17593259786240,-9296999899749346,-9296998949429508],[131080,17593259917320,-9296999899749346,-9296998949429508],[131083,0,11851812927156194,11851817191074274],[131083,3,19173508878057052,19173515069647194],[131083,9,-133599767595705506,-133599715886872508],[131083,10,126278022677218062,126278066975886174],[131083,68,-3950606232509516,-3950603806900640],[131083,71,-1975303102468593,-1975301917236486],[131083,77,51015113107810724,51015117426840252],[131083,78,-52990419943081622,-52990415611274431],[131083,132,5925906132510585,5925908926604650],[131083,135,1975300962522527,1975304057182551],[131083,141,10574405092145006,10574409391559659],[131083,142,-6623804212490749,-6623800231803759],[131083,192,-1975303134066536,-1975301885638544],[131083,195,-1975303134066536,-1975301885638544],[131083,32772,-3950606208609134,-3950603830801022],[131083,32775,-30445818299541794,-30445809517046374],[131083,32781,-13247609394938084,-13247599493650961],[131083,32782,39742811571512963,39742815094254094],[131083,32832,1975301917236486,1975303102468593],[131083,32835,1975301917236486,1975303102468593],[131083,32905,-6623803284297315,-6623801159997192],[131083,32906,6623801159997192,6623803284297315],[131083,131073,126278022677218062,126278066975886174],[131083,131074,-133599767595705506,-133599715886872508],[131083,131080,19173508878057052,19173515069647194],[131083,131083,11851812927156194,11851817191074274],[131083,131141,-52990419943081622,-52990415611274431],[131083,131142,51015113107810724,51015117426840252],[131083,131148,-1975303102468593,-1975301917236486],[131083,131151,-3950606232509516,-3950603806900640],[131083,131205,-6623804212490749,-6623800231803759],[131083,131206,10574405092145006,10574409391559659],[131083,131212,1975300962522527,1975304057182551],[131083,131215,5925906132510585,5925908926604650],[131083,131272,-1975303134066536,-1975301885638544],[131083,131275,-1975303134066536,-1975301885638544],[131083,163845,39742811571512963,39742815094254094],[131083,163846,-13247609394938084,-13247599493650961],[131083,163852,-30445818299541794,-30445809517046374],[131083,163855,-3950606208609134,-3950603830801022],[131083,163912,1975301917236486,1975303102468593],[131083,163915,1975301917236486,1975303102468593],[131083,163969,6623801159997192,6623803284297315],[131083,163970,-6623803284297315,-6623801159997192],[131083,524292,-3950606255025060,-3950603784385098],[131083,524295,-28470513105628714,-28470509691254389],[131083,524301,17896102008772423,17896106304406015],[131083,524302,6623801159997192,6623803284297315],[131083,524352,1975301885638544,1975303134066536],[131083,524355,1975301885638544,1975303134066536],[131083,524425,-19871408457827235,-19871404875056286],[131083,524426,19871404875056286,19871408457827235],[131083,557065,6623801159997192,6623803284297315],[131083,557066,-6623803284297315,-6623801159997192],[131083,655365,6623801159997192,6623803284297315],[131083,655366,17896102008772423,17896106304406015],[131083,655372,-28470513105628714,-28470509691254389],[131083,655375,-3950606255025060,-3950603784385098],[131083,655432,1975301885638544,1975303134066536],[131083,655435,1975301885638544,1975303134066536],[131083,655489,19871404875056286,19871408457827235],[131083,655490,-19871408457827235,-19871404875056286],[131083,688129,-6623803284297315,-6623801159997192],[131083,688130,6623801159997192,6623803284297315],[131083,67108868,-3950606276156332,-3950603763253824],[131083,67108871,-28470512991844104,-28470509805039004],[131083,67108877,17896101969228851,17896106343949595],[131083,67108878,6623801151062805,6623803293231701],[131083,67108928,1975301891852867,1975303127852212],[131083,67108931,1975301891852867,1975303127852212],[131083,67109001,-6623803358085955,-6623801086208550],[131083,67109002,6623801086208550,6623803358085955],[131083,67141641,6623801151062805,6623803293231701],[131083,67141642,-6623803293231701,-6623801151062805],[131083,67239941,6623801151062805,6623803293231701],[131083,67239942,17896101969228851,17896106343949595],[131083,67239948,-28470512991844104,-28470509805039004],[131083,67239951,-3950606276156332,-3950603763253824],[131083,67240008,1975301891852867,1975303127852212],[131083,67240011,1975301891852867,1975303127852212],[131083,67240065,6623801086208550,6623803358085955],[131083,67240066,-6623803358085955,-6623801086208550],[131083,67272705,-6623803293231701,-6623801151062805],[131083,67272706,6623801151062805,6623803293231701],[131083,67633161,6623801086208550,6623803358085955],[131083,67633162,-6623803358085955,-6623801086208550],[131083,67764225,-6623803358085955,-6623801086208550],[131083,67764226,6623801086208550,6623803358085955],[131085,0,-98079629592578584,-98079621437313222],[131085,5,-63683210088709754,-63683203085183716],[131085,9,320189871195698486,320189931323813606],[131085,12,-354586345522376890,-354586294853133538],[131085,71,-4648500337554984,-4648499087034444],[131085,75,6623801159963560,6623803284330947],[131085,78,-1975303102434961,-1975301917270118],[131085,130,-24519907697996171,-24519905059476780],[131085,135,-13247605939232943,-13247602949356073],[131085,139,13247602298025327,13247606590563683],[131085,142,-24519908340000795,-24519904417472150],[131085,32770,58336806904098799,58336817460025984],[131085,32775,39742811571512963,39742815094254094],[131085,32779,-79485631987828172,-79485621343705900],[131085,32782,98079621396013726,98079629633878072],[131085,32896,11272300719992475,11272303148891462],[131085,32901,13247603822461068,13247605066127948],[131085,32905,-51015117307046807,-51015113227604174],[131085,32908,49039810732001672,49039814782944230],[131085,131073,-354586345522376890,-354586294853133538],[131085,131076,320189871195698486,320189931323813606],[131085,131080,-63683210088709754,-63683203085183716],[131085,131085,-98079629592578584,-98079621437313222],[131085,131139,-1975303102434961,-1975301917270118],[131085,131142,6623801159963560,6623803284330947],[131085,131146,-4648500337554984,-4648499087034444],[131085,131203,-24519908340000795,-24519904417472150],[131085,131206,13247602298025327,13247606590563683],[131085,131210,-13247605939232943,-13247602949356073],[131085,131215,-24519907697996171,-24519905059476780],[131085,163843,98079621396013726,98079629633878072],[131085,163846,-79485631987828172,-79485621343705900],[131085,163850,39742811571512963,39742815094254094],[131085,163855,58336806904098799,58336817460025984],[131085,163969,49039810732001672,49039814782944230],[131085,163972,-51015117307046807,-51015113227604174],[131085,163976,13247603822461068,13247605066127948],[131085,163981,11272300719992475,11272303148891462],[131085,524290,26495207710839176,26495210066338854],[131085,524295,19871405028412220,19871408304471303],[131085,524299,-17896106304406015,-17896102008772423],[131085,524302,24519905293069738,24519907464403207],[131085,524425,-22544605576438951,-22544602161328920],[131085,524428,22544602161328920,22544605576438951],[131085,557056,-13247605066127948,-13247603822461068],[131085,557061,-15222908168562909,-15222905739731186],[131085,557065,49039810732001672,49039814782944230],[131085,557068,-47064511822048211,-47064508673192612],[131085,655363,24519905293069738,24519907464403207],[131085,655366,-17896106304406015,-17896102008772423],[131085,655370,19871405028412220,19871408304471303],[131085,655375,26495207710839176,26495210066338854],[131085,655489,22544602161328920,22544605576438951],[131085,655492,-22544605576438951,-22544602161328920],[131085,688129,-47064511822048211,-47064508673192612],[131085,688132,49039810732001672,49039814782944230],[131085,688136,-15222908168562909,-15222905739731186],[131085,688141,-13247605066127948,-13247603822461068],[131085,67108866,26495207702043174,26495210075134854],[131085,67108871,19871405094876730,19871408238006792],[131085,67108875,-17896106343949595,-17896101969228851],[131085,67108878,24519905262460552,24519907495012400],[131085,67109001,-24519907464403207,-24519905293069738],[131085,67109004,24519905293069738,24519907464403207],[131085,67141632,-13247605070627222,-13247603817961795],[131085,67141637,-15222908177460183,-15222905730833912],[131085,67141641,49039810709439166,49039814805506726],[131085,67141644,-47064511840212707,-47064508655028107],[131085,67239939,24519905262460552,24519907495012400],[131085,67239942,-17896106343949595,-17896101969228851],[131085,67239946,19871405094876730,19871408238006792],[131085,67239951,26495207702043174,26495210075134854],[131085,67240065,24519905293069738,24519907464403207],[131085,67240068,-24519907464403207,-24519905293069738],[131085,67272705,-47064511840212707,-47064508655028107],[131085,67272708,49039810709439166,49039814805506726],[131085,67272712,-15222908177460183,-15222905730833912],[131085,67272717,-13247605070627222,-13247603817961795],[131085,67633161,24519905293069738,24519907464403207],[131085,67633164,-24519907464403207,-24519905293069738],[131085,67764225,-24519907464403207,-24519905293069738],[131085,67764228,24519905293069738,24519907464403207],[131085,1073774597,-4648500342125002,-4648499082464426],[131085,1073774601,6623801151062805,6623803293231701],[131085,1073774604,-1975303106832961,-1975301912872117],[131085,1073905665,-1975303106832961,-1975301912872117],[131085,1073905668,6623801151062805,6623803293231701],[131085,1073905672,-4648500342125002,-4648499082464426],[131086,0,-10692792130513058,-10692785489024336],[131086,6,-222382391306796628,-222382344356494327],[131086,10,-120352160799604924,-120352113794384070],[131086,12,332041690197650200,332041742440092355],[131086,65,1975301889664154,1975303130040923],[131086,71,6623801159997192,6623803284297315],[131086,75,-697899197873155,-697890187306122],[131086,77,-3950608753647640,-3950601285762513],[131086,129,18593996132872130,18594001565485586],[131086,135,11272298892173522,11272304976710416],[131086,139,11272299945646091,11272303923237845],[131086,141,-3950606982859932,-3950603056550226],[131086,192,11272301159430178,11272302709453758],[131086,198,-13247606060429303,-13247602828159713],[131086,202,22544601642609286,22544606095158586],[131086,204,1975300959240086,1975304060464994],[131086,32769,-45089212389398762,-45089203086137004],[131086,32775,-13247609394938084,-13247599493650961],[131086,32779,-13247609434184624,-13247599454404401],[131086,32781,-18594006149950118,-18593991548407578],[131086,32832,-22544606285700820,-22544601452067054],[131086,32838,-6623803284297315,-6623801159997192],[131086,32842,8599101370269630,8599108093729955],[131086,32844,-24519907477236870,-24519905280236082],[131086,32896,18593996124609637,18594001573748076],[131086,32902,11272299936568599,11272303932315336],[131086,32906,11272298879893047,11272304988990891],[131086,32908,-3950606995955408,-3950603043454752],[131086,131074,332041690197650200,332041742440092355],[131086,131076,-120352160799604924,-120352113794384070],[131086,131080,-222382391306796628,-222382344356494327],[131086,131086,-10692792130513058,-10692785489024336],[131086,131139,-3950608753647640,-3950601285762513],[131086,131141,-697899197873155,-697890187306122],[131086,131145,6623801159997192,6623803284297315],[131086,131151,1975301889664154,1975303130040923],[131086,131203,-3950606982859932,-3950603056550226],[131086,131205,11272299945646091,11272303923237845],[131086,131209,11272298892173522,11272304976710416],[131086,131215,18593996132872130,18594001565485586],[131086,131266,1975300959240086,1975304060464994],[131086,131268,22544601642609286,22544606095158586],[131086,131272,-13247606060429303,-13247602828159713],[131086,131278,11272301159430178,11272302709453758],[131086,163843,-18594006149950118,-18593991548407578],[131086,163845,-13247609434184624,-13247599454404401],[131086,163849,-13247609394938084,-13247599493650961],[131086,163855,-45089212389398762,-45089203086137004],[131086,163906,-24519907477236870,-24519905280236082],[131086,163908,8599101370269630,8599108093729955],[131086,163912,-6623803284297315,-6623801159997192],[131086,163918,-22544606285700820,-22544601452067054],[131086,163970,-3950606995955408,-3950603043454752],[131086,163972,11272298879893047,11272304988990891],[131086,163976,11272299936568599,11272303932315336],[131086,163982,18593996124609637,18594001573748076],[131086,524289,-22544606281953756,-22544601455814116],[131086,524295,8599101386783086,8599108077216494],[131086,524299,-6623803284297315,-6623801159997192],[131086,524301,-24519907464403207,-24519905293069738],[131086,524352,-13247605067077166,-13247603821511848],[131086,524358,-6623803346277523,-6623801098016986],[131086,524362,-6623803346277521,-6623801098016984],[131086,524416,11272301159430177,11272302709453757],[131086,524422,22544601642609286,22544606095158586],[131086,524426,-13247606060429303,-13247602828159713],[131086,524428,1975300959240085,1975304060464993],[131086,557056,1975301885115096,1975303134589986],[131086,557062,-697899214028262,-697890171151008],[131086,557066,6623801159997192,6623803284297315],[131086,557068,-3950608765320955,-3950601274089200],[131086,655363,-24519907464403207,-24519905293069738],[131086,655365,-6623803284297315,-6623801159997192],[131086,655369,8599101386783086,8599108077216494],[131086,655375,-22544606281953756,-22544601455814116],[131086,655428,-6623803346277521,-6623801098016984],[131086,655432,-6623803346277523,-6623801098016986],[131086,655438,-13247605067077166,-13247603821511848],[131086,655490,1975300959240085,1975304060464993],[131086,655492,-13247606060429303,-13247602828159713],[131086,655496,22544601642609286,22544606095158586],[131086,655502,11272301159430177,11272302709453757],[131086,688130,-3950608765320955,-3950601274089200],[131086,688132,6623801159997192,6623803284297315],[131086,688136,-697899214028262,-697890171151008],[131086,688142,1975301885115096,1975303134589986],[131086,67108865,-22544606311881030,-22544601425886842],[131086,67108871,8599101567032212,8599107896967374],[131086,67108875,-6623803293231701,-6623801151062805],[131086,67108877,-24519907495012400,-24519905262460552],[131086,67108928,-13247605061578886,-13247603827010127],[131086,67108934,-6623803337001160,-6623801107293350],[131086,67108938,-6623803341365525,-6623801102928978],[131086,67108992,11272301161280132,11272302707603802],[131086,67108998,11272300812248450,11272303056635485],[131086,67109002,-964466108,964466106],[131086,67109004,-932612781,932612782],[131086,67141632,1975301882939439,1975303136765642],[131086,67141638,-697899269935994,-697890115243256],[131086,67141642,6623801151062805,6623803293231701],[131086,67141644,-3950608814469977,-3950601224940198],[131086,67239939,-24519907495012400,-24519905262460552],[131086,67239941,-6623803293231701,-6623801151062805],[131086,67239945,8599101567032212,8599107896967374],[131086,67239951,-22544606311881030,-22544601425886842],[131086,67240004,-6623803341365525,-6623801102928978],[131086,67240008,-6623803337001160,-6623801107293350],[131086,67240014,-13247605061578886,-13247603827010127],[131086,67240066,-932612781,932612782],[131086,67240068,-964466108,964466106],[131086,67240072,11272300812248450,11272303056635485],[131086,67240078,11272301161280132,11272302707603802],[131086,67272706,-3950608814469977,-3950601224940198],[131086,67272708,6623801151062805,6623803293231701],[131086,67272712,-697899269935994,-697890115243256],[131086,67272718,1975301882939439,1975303136765642],[131086,67633158,-31143710514241570,-31143706687525880],[131086,67633162,6623801086208550,6623803358085955],[131086,67633164,24519905293069738,24519907464403207],[131086,67764226,24519905293069738,24519907464403207],[131086,67764228,6623801086208550,6623803358085955],[131086,67764232,-31143710514241570,-31143706687525880],[131086,1073774598,-15222908177460183,-15222905730833912],[131086,1073774604,15222905730833912,15222908177460183],[131086,1073905666,15222905730833912,15222908177460183],[131086,1073905672,-15222908177460183,-15222905730833912],[131136,0,-1395799815332118,-1395778955026394],[131136,3,-13247606172936084,-13247602715652933],[131136,6,15920798865897844,15920804427575524],[131136,9,15920798878436957,15920804415036409],[131136,10,77936102841789496,77936150681548118],[131136,12,-5925910945469332,-5925904113645905],[131136,15,-45089208861152192,-45089206614383552],[131136,130,20569290559759355,20569312158303430],[131136,132,-7321699692989682,-7321694136484094],[131136,136,-252556117717993928,-252556061588214548],[131136,139,-9297000658925680,-9296998190253177],[131136,142,-22544606644811289,-22544601092956580],[131136,258,-4648501525518317,-4648497899071108],[131136,264,-6623806726760819,-6623797717533688],[131136,267,13247603855385956,13247605033203059],[131136,270,-1975303102434961,-1975301917270118],[131136,384,8599101131740910,8599108332258679],[131136,394,-1975306045508212,-1975298974196867],[131136,396,-1975303102468593,-1975301917236486],[131136,1032,-7321699679927840,-7321694149545938],[131136,1152,-5925910964282679,-5925904094832560],[131136,1162,11272300696813670,11272303172070267],[131136,1164,-22544604430576096,-22544603307191776],[131136,1416,26495207710771912,26495210066406118],[131136,32770,-4648501976324875,-4648497448264558],[131136,32775,-1975303102468593,-1975301917236486],[131136,32776,8599101150291472,8599108313708112],[131136,32779,-1975303102468593,-1975301917236486],[131136,32782,26495207710839176,26495210066338854],[131136,32896,-6623806745939431,-6623797698355075],[131136,32906,22544601272808088,22544606464959780],[131136,32908,26495207710771912,26495210066406118],[131136,33034,-4648500337554984,-4648499087034444],[131136,33160,13247603822433492,13247605066155522],[131136,33928,-1975303102468593,-1975301917236486],[131136,131136,-1395799815332118,-1395778955026394],[131136,131139,-13247606172936084,-13247602715652933],[131136,131142,15920798865897844,15920804427575524],[131136,131145,15920798878436957,15920804415036409],[131136,131146,77936102841789496,77936150681548118],[131136,131148,-5925910945469332,-5925904113645905],[131136,131151,-45089208861152192,-45089206614383552],[131136,131266,20569290559759355,20569312158303430],[131136,131268,-7321699692989682,-7321694136484094],[131136,131272,-252556117717993928,-252556061588214548],[131136,131275,-9297000658925680,-9296998190253177],[131136,131278,-22544606644811289,-22544601092956580],[131136,131394,-4648501525518317,-4648497899071108],[131136,131400,-6623806726760819,-6623797717533688],[131136,131403,13247603855385956,13247605033203059],[131136,131406,-1975303102434961,-1975301917270118],[131136,131520,8599101131740910,8599108332258679],[131136,131530,-1975306045508212,-1975298974196867],[131136,131532,-1975303102468593,-1975301917236486],[131136,132168,-7321699679927840,-7321694149545938],[131136,132288,-5925910964282679,-5925904094832560],[131136,132298,11272300696813670,11272303172070267],[131136,132300,-22544604430576096,-22544603307191776],[131136,132552,26495207710771912,26495210066406118],[131136,163906,-4648501976324875,-4648497448264558],[131136,163911,-1975303102468593,-1975301917236486],[131136,163912,8599101150291472,8599108313708112],[131136,163915,-1975303102468593,-1975301917236486],[131136,163918,26495207710839176,26495210066338854],[131136,164032,-6623806745939431,-6623797698355075],[131136,164042,22544601272808088,22544606464959780],[131136,164044,26495207710771912,26495210066406118],[131136,164170,-4648500337554984,-4648499087034444],[131136,164296,13247603822433492,13247605066155522],[131136,165064,-1975303102468593,-1975301917236486],[131136,524290,-9297004269330780,-9296994579848082],[131136,524296,20569290552159553,20569312165903224],[131136,524299,-1975303134066536,-1975301885638544],[131136,524302,13247603821511848,13247605067077166],[131136,524416,159397032038790385,159397079835786384],[131136,524426,58336806002895800,58336818361228957],[131136,524428,11272300692285237,11272303176598696],[131136,524544,-4648501974835595,-4648497449753834],[131136,524554,-4648500367937249,-4648499056652180],[131136,524674,-6623803346277523,-6623801098016986],[131136,524680,22544601267974862,22544606469793008],[131136,525312,15920798874182437,15920804419290919],[131136,525442,13247603821511848,13247605067077166],[131136,525448,-22544606653723935,-22544601084043932],[131136,525696,26495207710839176,26495210066338854],[131136,557056,-4648501505889997,-4648497918699427],[131136,557066,-6623803346277521,-6623801098016984],[131136,557186,-4648500367937248,-4648499056652179],[131136,557192,-1975306059254087,-1975298960450994],[131136,557440,-4648500337588616,-4648499087000812],[131136,558208,-1975303102434961,-1975301917270118],[131136,655426,-9297004269330780,-9296994579848082],[131136,655432,20569290552159553,20569312165903224],[131136,655435,-1975303134066536,-1975301885638544],[131136,655438,13247603821511848,13247605067077166],[131136,655552,159397032038790385,159397079835786384],[131136,655562,58336806002895800,58336818361228957],[131136,655564,11272300692285237,11272303176598696],[131136,655680,-4648501974835595,-4648497449753834],[131136,655690,-4648500367937249,-4648499056652180],[131136,655810,-6623803346277523,-6623801098016986],[131136,655816,22544601267974862,22544606469793008],[131136,656448,15920798874182437,15920804419290919],[131136,656578,13247603821511848,13247605067077166],[131136,656584,-22544606653723935,-22544601084043932],[131136,656832,26495207710839176,26495210066338854],[131136,688192,-4648501505889997,-4648497918699427],[131136,688202,-6623803346277521,-6623801098016984],[131136,688322,-4648500367937248,-4648499056652179],[131136,688328,-1975306059254087,-1975298960450994],[131136,688576,-4648500337588616,-4648499087000812],[131136,689344,-1975303102434961,-1975301917270118],[131136,1048704,15920798873942155,15920804419531205],[131136,1179840,15920798873942155,15920804419531205],[131136,1572864,-13247606153429752,-13247602735159258],[131136,1572994,-1975303134066535,-1975301885638543],[131136,1573000,-9297000663454110,-9296998185724745],[131136,1573248,-1975303102434961,-1975301917270118],[131136,1574016,-45089208861152192,-45089206614383552],[131136,1574144,-1975303102434961,-1975301917270118],[131136,1605760,13247603855419588,13247605033169427],[131136,1704000,-13247606153429752,-13247602735159258],[131136,1704130,-1975303134066535,-1975301885638543],[131136,1704136,-9297000663454110,-9296998185724745],[131136,1704384,-1975303102434961,-1975301917270118],[131136,1705152,-45089208861152192,-45089206614383552],[131136,1705280,-1975303102434961,-1975301917270118],[131136,1736896,13247603855419588,13247605033169427],[131136,67108866,-4648502135287572,-4648497289301856],[131136,67108872,8599101184095716,8599108279903872],[131136,67108875,-1975303127852212,-1975301891852867],[131136,67108878,13247603827010127,13247605061578886],[131136,67108992,-3950609856348444,-3950600183061726],[131136,67109002,22544601129070346,22544606608697526],[131136,67109004,13247603821617226,13247605066971786],[131136,67109130,-4648500364875210,-4648499059714221],[131136,67109256,13247603792440361,13247605096148654],[131136,67110024,-1975303134066536,-1975301885638544],[131136,67141642,-6623803341365525,-6623801102928978],[131136,67141768,-24519907498972975,-24519905258499972],[131136,67240002,-4648502135287572,-4648497289301856],[131136,67240008,8599101184095716,8599108279903872],[131136,67240011,-1975303127852212,-1975301891852867],[131136,67240014,13247603827010127,13247605061578886],[131136,67240128,-3950609856348444,-3950600183061726],[131136,67240138,22544601129070346,22544606608697526],[131136,67240140,13247603821617226,13247605066971786],[131136,67240266,-4648500364875210,-4648499059714221],[131136,67240392,13247603792440361,13247605096148654],[131136,67241160,-1975303134066536,-1975301885638544],[131136,67272778,-6623803341365525,-6623801102928978],[131136,67272904,-24519907498972975,-24519905258499972],[131136,67633152,-1975304416511920,-1975300603193161],[131136,67633162,-6623803429142575,-6623801015151933],[131136,67633282,-1975303194709763,-1975301824995317],[131136,67633288,-7321700711066549,-7321693118407216],[131136,67633536,-1975303161793801,-1975301857911278],[131136,67634304,-22544604489700504,-22544603248067364],[131136,67666048,11272300812248450,11272303056635485],[131136,67764288,-1975304416511920,-1975300603193161],[131136,67764298,-6623803429142575,-6623801015151933],[131136,67764418,-1975303194709763,-1975301824995317],[131136,67764424,-7321700711066549,-7321693118407216],[131136,67764672,-1975303161793801,-1975301857911278],[131136,67765440,-22544604489700504,-22544603248067364],[131136,67797184,11272300812248450,11272303056635485],[131136,68681856,13247603821617226,13247605066971786],[131136,68812992,13247603821617226,13247605066971786],[131136,268435584,-4648502836441441,-4648496588147988],[131136,268566720,-4648502836441441,-4648496588147988],[131136,268959744,-15920803552528152,-15920799740945212],[131136,268959874,-4648500405191522,-4648499019397906],[131136,268959880,-3950606391264266,-3950603648145893],[131136,268960128,-4648500367050864,-4648499057538562],[131136,268960896,-1975303130040923,-1975301889664154],[131136,268992640,-4648500364875210,-4648499059714221],[131136,269090880,-15920803552528152,-15920799740945212],[131136,269091010,-4648500405191522,-4648499019397906],[131136,269091016,-3950606391264266,-3950603648145893],[131136,269091264,-4648500367050864,-4648499057538562],[131136,269092032,-1975303130040923,-1975301889664154],[131136,269123776,-4648500364875210,-4648499059714221],[131136,270008448,11272301161280132,11272302707603802],[131136,270139584,11272301161280132,11272302707603802],[131136,336068736,-3950606396524520,-3950603642885640],[131136,336199872,-3950606396524520,-3950603642885640],[131139,0,-22544604789079444,-22544602948688428],[131139,3,-13247606172936084,-13247602715652933],[131139,12,-1975303130061553,-1975301889643525],[131139,15,3950601743215454,3950608296194700],[131139,65,6623799170377024,6623805273917482],[131139,66,-15920803457056280,-15920799836417081],[131139,77,-3950608753647640,-3950601285762513],[131139,78,-1975303102434961,-1975301917270118],[131139,136,13247603826989498,13247605061599516],[131139,139,-22544604485915178,-22544603251852693],[131139,201,-9297003420342855,-9296995428836002],[131139,202,45089204212760992,45089211262774750],[131139,264,13247603855385956,13247605033203059],[131139,329,6623801172992632,6623803271301876],[131139,330,6623801159963560,6623803284330947],[131139,32775,-1975303102468593,-1975301917236486],[131139,32779,-1975303102468593,-1975301917236486],[131139,32837,1975301917236486,1975303102468593],[131139,32841,6623801159997192,6623803284297315],[131139,32842,-4648500337554984,-4648499087034444],[131139,131073,-15920803457056280,-15920799836417081],[131139,131074,6623799170377024,6623805273917482],[131139,131085,-1975303102434961,-1975301917270118],[131139,131086,-3950608753647640,-3950601285762513],[131139,131136,-13247606172936084,-13247602715652933],[131139,131139,-22544604789079444,-22544602948688428],[131139,131148,3950601743215454,3950608296194700],[131139,131151,-1975303130061553,-1975301889643525],[131139,131209,45089204212760992,45089211262774750],[131139,131210,-9297003420342855,-9296995428836002],[131139,131272,-22544604485915178,-22544603251852693],[131139,131275,13247603826989498,13247605061599516],[131139,131337,6623801159963560,6623803284330947],[131139,131338,6623801172992632,6623803271301876],[131139,131403,13247603855385956,13247605033203059],[131139,163846,1975301917236486,1975303102468593],[131139,163849,-4648500337554984,-4648499087034444],[131139,163850,6623801159997192,6623803284297315],[131139,163908,-1975303102468593,-1975301917236486],[131139,163912,-1975303102468593,-1975301917236486],[131139,524299,-1975303134066536,-1975301885638544],[131139,524361,6623801098016986,6623803346277523],[131139,524362,-4648500367937249,-4648499056652180],[131139,524481,4648499056652180,4648500367937249],[131139,524482,-4648500367937249,-4648499056652180],[131139,655369,-4648500367937249,-4648499056652180],[131139,655370,6623801098016986,6623803346277523],[131139,655432,-1975303134066536,-1975301885638544],[131139,655489,-4648500367937249,-4648499056652180],[131139,655490,4648499056652180,4648500367937249],[131139,67108875,-1975303127852212,-1975301891852867],[131139,67108937,6623801107293350,6623803337001160],[131139,67108938,-4648500364875210,-4648499059714221],[131139,67239945,-4648500364875210,-4648499059714221],[131139,67239946,6623801107293350,6623803337001160],[131139,67240008,-1975303127852212,-1975301891852867],[131141,10,-53688314809147586,-53688310130387744],[131141,75,-697899197873155,-697890187306122],[131141,78,-52990419943081622,-52990415611274431],[131141,201,26495207799404518,26495209977773508],[131141,204,-26495209977773508,-26495207799404518],[131141,32770,-1975303102468593,-1975301917236486],[131141,32835,-1975303102468593,-1975301917236486],[131141,131083,-52990419943081622,-52990415611274431],[131141,131086,-697899197873155,-697890187306122],[131141,131151,-53688314809147586,-53688310130387744],[131141,131209,-26495209977773508,-26495207799404518],[131141,131212,26495207799404518,26495209977773508],[131141,163846,-1975303102468593,-1975301917236486],[131141,163911,-1975303102468593,-1975301917236486],[131142,0,22544602948688428,22544604789079444],[131142,6,15920798865897844,15920804427575524],[131142,9,8599103049607085,8599106414392500],[131142,15,-49039814910578252,-49039810604367646],[131142,66,11272301474344214,11272302394539722],[131142,68,-4648502490229551,-4648496934359881],[131142,75,6623801159963560,6623803284330947],[131142,77,51015113107810724,51015117426840252],[131142,136,-47064513273775962,-47064507221464861],[131142,142,-6623804308921517,-6623800135372988],[131142,202,-49039814979929732,-49039810535016170],[131142,204,8599102676277534,8599106787722050],[131142,264,-6623803284330947,-6623801159963560],[131142,330,-6623803284330947,-6623801159963560],[131142,32782,-17896106317239678,-17896101995938767],[131142,32844,17896101995938767,17896106317239678],[131142,131074,-4648502490229551,-4648496934359881],[131142,131076,11272301474344214,11272302394539722],[131142,131083,51015113107810724,51015117426840252],[131142,131085,6623801159963560,6623803284330947],[131142,131136,15920798865897844,15920804427575524],[131142,131142,22544602948688428,22544604789079444],[131142,131145,-49039814910578252,-49039810604367646],[131142,131151,8599103049607085,8599106414392500],[131142,131210,8599102676277534,8599106787722050],[131142,131212,-49039814979929732,-49039810535016170],[131142,131272,-6623804308921517,-6623800135372988],[131142,131278,-47064513273775962,-47064507221464861],[131142,131340,-6623803284330947,-6623801159963560],[131142,131406,-6623803284330947,-6623801159963560],[131142,163850,17896101995938767,17896106317239678],[131142,163912,-17896106317239678,-17896101995938767],[131142,524302,6623801098016986,6623803346277523],[131142,524364,-6623803346277523,-6623801098016986],[131142,655370,-6623803346277523,-6623801098016986],[131142,655432,6623801098016986,6623803346277523],[131142,67108878,6623801107293350,6623803337001160],[131142,67108940,-6623803337001160,-6623801107293350],[131142,67239946,-6623803337001160,-6623801107293350],[131142,67240008,6623801107293350,6623803337001160],[131145,0,22544602948688428,22544604789079444],[131145,6,8599103049661346,8599106414338238],[131145,9,15920798878436957,15920804415036409],[131145,15,-49039814910578252,-49039810604367646],[131145,65,11272301474344214,11272302394539722],[131145,71,6623801159997192,6623803284297315],[131145,72,-4648502477690436,-4648496946898994],[131145,78,51015113107831353,51015117426819622],[131145,130,8599102955928264,8599106508071324],[131145,132,22544603248067364,22544604489700504],[131145,139,51015113020977955,51015117513673026],[131145,141,-3950606107262344,-3950603932147814],[131145,195,6623801098016986,6623803346277523],[131145,202,-49039814979929732,-49039810535016170],[131145,204,26495207799404518,26495209977773508],[131145,267,6623801159963560,6623803284330947],[131145,330,-6623803284330947,-6623801159963560],[131145,32770,-6623803284297315,-6623801159997192],[131145,32835,-6623803284297315,-6623801159997192],[131145,131073,-4648502477690436,-4648496946898994],[131145,131079,51015113107831353,51015117426819622],[131145,131080,11272301474344214,11272302394539722],[131145,131086,6623801159997192,6623803284297315],[131145,131136,15920798878436957,15920804415036409],[131145,131142,-49039814910578252,-49039810604367646],[131145,131145,22544602948688428,22544604789079444],[131145,131151,8599103049661346,8599106414338238],[131145,131203,-49039814979929732,-49039810535016170],[131145,131205,26495207799404518,26495209977773508],[131145,131210,6623801098016986,6623803346277523],[131145,131266,51015113020977955,51015117513673026],[131145,131268,-3950606107262344,-3950603932147814],[131145,131275,8599102955928264,8599106508071324],[131145,131277,22544603248067364,22544604489700504],[131145,131331,-6623803284330947,-6623801159963560],[131145,131394,6623801159963560,6623803284330947],[131145,163850,-6623803284297315,-6623801159997192],[131145,163915,-6623803284297315,-6623801159997192],[131145,524290,-6623803346277523,-6623801098016986],[131145,524355,-6623803346277523,-6623801098016986],[131145,655370,-6623803346277523,-6623801098016986],[131145,655435,-6623803346277523,-6623801098016986],[131145,67108866,-6623803337001160,-6623801107293350],[131145,67108931,-6623803337001160,-6623801107293350],[131145,67239946,-6623803337001160,-6623801107293350],[131145,67240011,-6623803337001160,-6623801107293350],[131146,0,11851812660075666,11851817458154814],[131146,5,-4648500337554984,-4648499087034444],[131146,10,77936102841789496,77936150681548118],[131146,66,19173508522816278,19173515424887978],[131146,71,-4648500337554984,-4648499087034444],[131146,72,-85257851747913146,-85257795604898244],[131146,129,-6623803529731050,-6623800914563458],[131146,132,5925906055094245,5925909004020996],[131146,139,-37767513075615154,-37767508570446813],[131146,142,8599102641942379,8599106822057209],[131146,195,-4648500367937249,-4648499056652180],[131146,198,17198207846590140,17198211081409034],[131146,201,35792206084485028,35792210541871860],[131146,204,-19871408879756524,-19871404453126997],[131146,260,4648499087034444,4648500337554984],[131146,267,6623801172992632,6623803271301876],[131146,326,4648499087034444,4648500337554984],[131146,329,-6623803271301876,-6623801172992632],[131146,384,4648499056652180,4648500367937249],[131146,394,24519904610140814,24519908147332138],[131146,450,17896102849092541,17896105464085903],[131146,456,-37767513075615154,-37767508570446813],[131146,1162,-1975303130061553,-1975301889643525],[131146,1218,-1975303134066536,-1975301885638544],[131146,1224,3950603932147814,3950606107262344],[131146,32769,4648499087034444,4648500337554984],[131146,32782,19871405028479484,19871408304404039],[131146,32835,4648499087034444,4648500337554984],[131146,32844,-19871408304404039,-19871405028479484],[131146,32896,-3950606317756372,-3950603721653790],[131146,32906,6623801098016984,6623803346277521],[131146,32962,-28470513188678840,-28470509608204269],[131146,32968,17896101912222451,17896106400955991],[131146,33024,-4648500337554984,-4648499087034444],[131146,33090,-4648500337554984,-4648499087034444],[131146,131074,-85257851747913146,-85257795604898244],[131146,131080,19173508522816278,19173515424887978],[131146,131085,-4648500337554984,-4648499087034444],[131146,131136,77936102841789496,77936150681548118],[131146,131146,11851812660075666,11851817458154814],[131146,131151,-4648500337554984,-4648499087034444],[131146,131203,35792206084485028,35792210541871860],[131146,131206,-19871408879756524,-19871404453126997],[131146,131209,-4648500367937249,-4648499056652180],[131146,131212,17198207846590140,17198211081409034],[131146,131265,-37767513075615154,-37767508570446813],[131146,131268,8599102641942379,8599106822057209],[131146,131275,-6623803529731050,-6623800914563458],[131146,131278,5925906055094245,5925909004020996],[131146,131331,-6623803271301876,-6623801172992632],[131146,131340,4648499087034444,4648500337554984],[131146,131393,6623801172992632,6623803271301876],[131146,131406,4648499087034444,4648500337554984],[131146,131458,-37767513075615154,-37767508570446813],[131146,131464,17896102849092541,17896105464085903],[131146,131520,24519904610140814,24519908147332138],[131146,131530,4648499056652180,4648500367937249],[131146,132226,3950603932147814,3950606107262344],[131146,132232,-1975303134066536,-1975301885638544],[131146,132288,-1975303130061553,-1975301889643525],[131146,163846,-19871408304404039,-19871405028479484],[131146,163849,4648499087034444,4648500337554984],[131146,163908,19871405028479484,19871408304404039],[131146,163915,4648499087034444,4648500337554984],[131146,163970,17896101912222451,17896106400955991],[131146,163976,-28470513188678840,-28470509608204269],[131146,164032,6623801098016984,6623803346277521],[131146,164042,-3950606317756372,-3950603721653790],[131146,164104,-4648500337554984,-4648499087034444],[131146,164170,-4648500337554984,-4648499087034444],[131146,524289,4648499056652180,4648500367937249],[131146,524302,6623801098016984,6623803346277521],[131146,524355,4648499056652180,4648500367937249],[131146,524364,-6623803346277521,-6623801098016984],[131146,524416,-3950606383588294,-3950603655821866],[131146,524426,39742810183793936,39742816481973111],[131146,524482,-30445818898447706,-30445808918140474],[131146,524488,-13247611732520567,-13247597156068460],[131146,524544,-4648500367937249,-4648499056652180],[131146,524610,-4648500367937249,-4648499056652180],[131146,557066,-6623803346277521,-6623801098016984],[131146,557128,6623801098016984,6623803346277521],[131146,655366,-6623803346277521,-6623801098016984],[131146,655369,4648499056652180,4648500367937249],[131146,655428,6623801098016984,6623803346277521],[131146,655435,4648499056652180,4648500367937249],[131146,655490,-13247611732520567,-13247597156068460],[131146,655496,-30445818898447706,-30445808918140474],[131146,655552,39742810183793936,39742816481973111],[131146,655562,-3950606383588294,-3950603655821866],[131146,655624,-4648500367937249,-4648499056652180],[131146,655690,-4648500367937249,-4648499056652180],[131146,688130,6623801098016984,6623803346277521],[131146,688192,-6623803346277521,-6623801098016984],[131146,67108865,4648499059714221,4648500364875210],[131146,67108878,6623801102928978,6623803341365525],[131146,67108931,4648499059714221,4648500364875210],[131146,67108940,-6623803341365525,-6623801102928978],[131146,67108992,-3950606396524520,-3950603642885640],[131146,67109002,6623801015151933,6623803429142575],[131146,67109058,-28470513144585146,-28470509652297966],[131146,67109064,17896101722460043,17896106590718401],[131146,67109120,-4648500364875210,-4648499059714221],[131146,67109186,-4648500364875210,-4648499059714221],[131146,67141642,-6623803341365525,-6623801102928978],[131146,67141704,6623801102928978,6623803341365525],[131146,67239942,-6623803341365525,-6623801102928978],[131146,67239945,4648499059714221,4648500364875210],[131146,67240004,6623801102928978,6623803341365525],[131146,67240011,4648499059714221,4648500364875210],[131146,67240066,17896101722460043,17896106590718401],[131146,67240072,-28470513144585146,-28470509652297966],[131146,67240128,6623801015151933,6623803429142575],[131146,67240138,-3950606396524520,-3950603642885640],[131146,67240200,-4648500364875210,-4648499059714221],[131146,67240266,-4648500364875210,-4648499059714221],[131146,67272706,6623801102928978,6623803341365525],[131146,67272768,-6623803341365525,-6623801102928978],[131146,67633162,-6623803429142575,-6623801015151933],[131146,67633224,6623801015151933,6623803429142575],[131146,67764226,6623801015151933,6623803429142575],[131146,67764288,-6623803429142575,-6623801015151933],[131148,0,-3950606863625140,-3950603175785020],[131148,3,-1975303130040923,-1975301889664154],[131148,12,-5925910945469332,-5925904113645905],[131148,15,3950601743215454,3950608296194700],[131148,68,6623798642954895,6623805801339609],[131148,71,-1975303102468593,-1975301917236486],[131148,72,-4648505765491449,-4648493659097978],[131148,75,-3950608753660642,-3950601285749510],[131148,129,-22544604489700504,-22544603248067364],[131148,130,-1975304058435710,-1975300961269370],[131148,141,3950603932147814,3950606107262344],[131148,142,-24519909474570990,-24519903282901962],[131148,198,-3950608253249321,-3950601786160837],[131148,201,-26495209977773508,-26495207799404518],[131148,202,26495204439857584,26495213337320446],[131148,270,-1975303102434961,-1975301917270118],[131148,326,-4648500337554984,-4648499087034444],[131148,330,6623801159963560,6623803284330947],[131148,396,-1975303102468593,-1975301917236486],[131148,452,13247603822433492,13247605066155522],[131148,456,-11272302995044411,-11272300873839524],[131148,1164,-22544604430576096,-22544603307191776],[131148,1220,-1975303102468593,-1975301917236486],[131148,1224,24519905365967204,24519907391505747],[131148,32770,22544601452067054,22544606285700820],[131148,32782,24519905280236082,24519907477236870],[131148,32838,6623801159997192,6623803284297315],[131148,32842,-8599108093729955,-8599101370269630],[131148,32896,-18594001258855540,-18593996439502170],[131148,32908,3950603919085972,3950606120324188],[131148,32964,-11272302995044411,-11272300873839524],[131148,32968,-11272305289278916,-11272298579605019],[131148,131076,-4648505765491449,-4648493659097978],[131148,131079,-3950608753660642,-3950601285749510],[131148,131080,6623798642954895,6623805801339609],[131148,131083,-1975303102468593,-1975301917236486],[131148,131136,-5925910945469332,-5925904113645905],[131148,131139,3950601743215454,3950608296194700],[131148,131148,-3950606863625140,-3950603175785020],[131148,131151,-1975303130040923,-1975301889664154],[131148,131205,-26495209977773508,-26495207799404518],[131148,131206,26495204439857584,26495213337320446],[131148,131210,-3950608253249321,-3950601786160837],[131148,131265,3950603932147814,3950606107262344],[131148,131266,-24519909474570990,-24519903282901962],[131148,131277,-22544604489700504,-22544603248067364],[131148,131278,-1975304058435710,-1975300961269370],[131148,131334,6623801159963560,6623803284330947],[131148,131338,-4648500337554984,-4648499087034444],[131148,131394,-1975303102434961,-1975301917270118],[131148,131460,-11272302995044411,-11272300873839524],[131148,131464,13247603822433492,13247605066155522],[131148,131520,-1975303102468593,-1975301917236486],[131148,132228,24519905365967204,24519907391505747],[131148,132232,-1975303102468593,-1975301917236486],[131148,132288,-22544604430576096,-22544603307191776],[131148,163846,-8599108093729955,-8599101370269630],[131148,163850,6623801159997192,6623803284297315],[131148,163906,24519905280236082,24519907477236870],[131148,163918,22544601452067054,22544606285700820],[131148,163972,-11272305289278916,-11272298579605019],[131148,163976,-11272302995044411,-11272300873839524],[131148,164032,3950603919085972,3950606120324188],[131148,164044,-18594001258855540,-18593996439502170],[131148,524290,13247603821511848,13247605067077166],[131148,524358,6623801098016986,6623803346277523],[131148,524362,6623801098016984,6623803346277521],[131148,524416,13247603826875223,13247605061713792],[131148,524428,-1975303134589986,-1975301885115096],[131148,524484,3950601481951714,3950608557458446],[131148,524488,11272297923178146,11272305945705791],[131148,655366,6623801098016984,6623803346277521],[131148,655370,6623801098016986,6623803346277523],[131148,655438,13247603821511848,13247605067077166],[131148,655492,11272297923178146,11272305945705791],[131148,655496,3950601481951714,3950608557458446],[131148,655552,-1975303134589986,-1975301885115096],[131148,655564,13247603826875223,13247605061713792],[131148,67108866,13247603827010127,13247605061578886],[131148,67108934,6623801107293350,6623803337001160],[131148,67108938,6623801102928978,6623803341365525],[131148,67108992,13247603821617226,13247605066971786],[131148,67109060,-11272303056635485,-11272300812248450],[131148,67109064,24519905258499972,24519907498972975],[131148,67239942,6623801102928978,6623803341365525],[131148,67239946,6623801107293350,6623803337001160],[131148,67240014,13247603827010127,13247605061578886],[131148,67240068,24519905258499972,24519907498972975],[131148,67240072,-11272303056635485,-11272300812248450],[131148,67240140,13247603821617226,13247605066971786],[131151,3,-1975303130040923,-1975301889664154],[131151,5,-4648500337554984,-4648499087034444],[131151,6,8599103049661346,8599106414338238],[131151,9,8599103049607085,8599106414392500],[131151,10,-53688314809147586,-53688310130387744],[131151,12,-1975303130061553,-1975301889643525],[131151,15,-45089208861152192,-45089206614383552],[131151,65,1975301889664154,1975303130040923],[131151,68,-3950606232509516,-3950603806900640],[131151,72,47064508673158980,47064511822081843],[131151,75,1975301889643525,1975303130061553],[131151,77,47064508673192612,47064511822048211],[131151,78,-3950606232496514,-3950603806913643],[131151,131073,-3950606232496514,-3950603806913643],[131151,131074,47064508673192612,47064511822048211],[131151,131076,1975301889643525,1975303130061553],[131151,131079,47064508673158980,47064511822081843],[131151,131083,-3950606232509516,-3950603806900640],[131151,131086,1975301889664154,1975303130040923],[131151,131136,-45089208861152192,-45089206614383552],[131151,131139,-1975303130061553,-1975301889643525],[131151,131141,-53688314809147586,-53688310130387744],[131151,131142,8599103049607085,8599106414392500],[131151,131145,8599103049661346,8599106414338238],[131151,131146,-4648500337554984,-4648499087034444],[131151,131148,-1975303130040923,-1975301889664154],[131200,0,-181445272717252872,-181445125879572760],[131200,3,11272301474344214,11272302394539722],[131200,5,-3950605484998596,-3950604554411562],[131200,6,-13945502254348697,-13945496019419587],[131200,9,-19871412418198236,-19871400914685277],[131200,10,-66663850285081034,-66663799369372644],[131200,12,307521786696231667,307521833184037924],[131200,66,20569295987453940,20569306730608851],[131200,68,-1975305288493376,-1975299731211704],[131200,72,218159636069763092,218159705380447032],[131200,75,-13247605061599516,-13247603826989498],[131200,78,31841601906990784,31841604679955942],[131200,264,11272298596064681,11272305272819252],[131200,330,1975301889643525,1975303130061553],[131200,1026,-4648502626375994,-4648496798213434],[131200,1028,-4648502349941046,-4648497074648383],[131200,1032,-67361745915243333,-67361693124389608],[131200,1038,-11272302664793112,-11272301204090824],[131200,1088,-4648505793203474,-4648493631385954],[131200,1098,-24519908147332138,-24519904610140814],[131200,1100,24519905365967204,24519907391505747],[131200,2056,13247602745554085,13247606143034927],[131200,32770,15920798744910351,15920804548563011],[131200,32772,-12549714288599261,-12549705214810465],[131200,32776,-245506516979052740,-245506452671352604],[131200,32781,1975301917236486,1975303102468593],[131200,32782,-24519907697962539,-24519905059510412],[131200,32832,6623797698355075,6623806745939431],[131200,32842,3950603721653790,3950606317756372],[131200,32844,-26495210066406118,-26495207710771912],[131200,33792,9296995124907418,9297003724271436],[131200,33802,4648499087034444,4648500337554984],[131200,33804,-26495210023626872,-26495207753551168],[131200,33864,-11272302995044411,-11272300873839524],[131200,131200,-181445272717252872,-181445125879572760],[131200,131203,11272301474344214,11272302394539722],[131200,131205,-3950605484998596,-3950604554411562],[131200,131206,-13945502254348697,-13945496019419587],[131200,131209,-19871412418198236,-19871400914685277],[131200,131210,-66663850285081034,-66663799369372644],[131200,131212,307521786696231667,307521833184037924],[131200,131266,20569295987453940,20569306730608851],[131200,131268,-1975305288493376,-1975299731211704],[131200,131272,218159636069763092,218159705380447032],[131200,131275,-13247605061599516,-13247603826989498],[131200,131278,31841601906990784,31841604679955942],[131200,131464,11272298596064681,11272305272819252],[131200,131530,1975301889643525,1975303130061553],[131200,132226,-4648502626375994,-4648496798213434],[131200,132228,-4648502349941046,-4648497074648383],[131200,132232,-67361745915243333,-67361693124389608],[131200,132238,-11272302664793112,-11272301204090824],[131200,132288,-4648505793203474,-4648493631385954],[131200,132298,-24519908147332138,-24519904610140814],[131200,132300,24519905365967204,24519907391505747],[131200,133256,13247602745554085,13247606143034927],[131200,163970,15920798744910351,15920804548563011],[131200,163972,-12549714288599261,-12549705214810465],[131200,163976,-245506516979052740,-245506452671352604],[131200,163981,1975301917236486,1975303102468593],[131200,163982,-24519907697962539,-24519905059510412],[131200,164032,6623797698355075,6623806745939431],[131200,164042,3950603721653790,3950606317756372],[131200,164044,-26495210066406118,-26495207710771912],[131200,164992,9296995124907418,9297003724271436],[131200,165002,4648499087034444,4648500337554984],[131200,165004,-26495210023626872,-26495207753551168],[131200,165064,-11272302995044411,-11272300873839524],[131200,524290,20569290552159553,20569312165903224],[131200,524292,-9709549903,9709549901],[131200,524296,178653536553454336,178653704502654240],[131200,524302,-1975304066969121,-1975300952735957],[131200,524352,-166718780962043040,-166718724742007499],[131200,524362,-35792211597603263,-35792205028753624],[131200,524364,-9297001142627820,-9296997706551035],[131200,524544,8599101386783086,8599108077216494],[131200,525312,-245506516979052740,-245506452671352604],[131200,525322,-6623804014035016,-6623800430259491],[131200,525324,11272300305719853,11272303563164086],[131200,525384,4648493631385954,4648505793203474],[131200,526336,13247602731588215,13247606157000801],[131200,557056,-67361745915243333,-67361693124389608],[131200,557066,8599102950409964,8599106513589621],[131200,557068,20569298570795129,20569304147267651],[131200,557128,-6623806745939431,-6623797698355075],[131200,558088,-9297003724271436,-9296995124907418],[131200,558144,6623801159997192,6623803284297315],[131200,655490,20569290552159553,20569312165903224],[131200,655492,-9709549903,9709549901],[131200,655496,178653536553454336,178653704502654240],[131200,655502,-1975304066969121,-1975300952735957],[131200,655552,-166718780962043040,-166718724742007499],[131200,655562,-35792211597603263,-35792205028753624],[131200,655564,-9297001142627820,-9296997706551035],[131200,655744,8599101386783086,8599108077216494],[131200,656512,-245506516979052740,-245506452671352604],[131200,656522,-6623804014035016,-6623800430259491],[131200,656524,11272300305719853,11272303563164086],[131200,656584,4648493631385954,4648505793203474],[131200,657536,13247602731588215,13247606157000801],[131200,688256,-67361745915243333,-67361693124389608],[131200,688266,8599102950409964,8599106513589621],[131200,688268,20569298570795129,20569304147267651],[131200,688328,-6623806745939431,-6623797698355075],[131200,689288,-9297003724271436,-9296995124907418],[131200,689344,6623801159997192,6623803284297315],[131200,1048584,-9709549903,9709549901],[131200,1048640,-4648502482185233,-4648496942404193],[131200,1049600,-12549714288599261,-12549705214810465],[131200,1081344,-4648502349941046,-4648497074648383],[131200,1179784,-9709549903,9709549901],[131200,1179840,-4648502482185233,-4648496942404193],[131200,1180800,-12549714288599261,-12549705214810465],[131200,1212544,-4648502349941046,-4648497074648383],[131200,1572864,307521786696231667,307521833184037924],[131200,1572936,11272300226701508,11272303642182425],[131200,1573896,20569298570795129,20569304147267651],[131200,1573952,47064508673192612,47064511822048211],[131200,1574144,1975301917270118,1975303102434961],[131200,1575936,1975301912872117,1975303106832961],[131200,1605640,11272300305719853,11272303563164086],[131200,1605696,-13247605033169427,-13247603855419588],[131200,1606656,-26495210023626872,-26495207753551168],[131200,1704064,307521786696231667,307521833184037924],[131200,1704136,11272300226701508,11272303642182425],[131200,1705096,20569298570795129,20569304147267651],[131200,1705152,47064508673192612,47064511822048211],[131200,1705344,1975301917270118,1975303102434961],[131200,1707136,1975301912872117,1975303106832961],[131200,1736840,11272300305719853,11272303563164086],[131200,1736896,-13247605033169427,-13247603855419588],[131200,1737856,-26495210023626872,-26495207753551168],[131200,2621440,-26495211840725034,-26495205936452994],[131200,2752640,-26495211840725034,-26495205936452994],[131200,3145728,-3950605491232570,-3950604548177586],[131200,3276928,-3950605491232570,-3950604548177586],[131200,3671040,1975301915400511,1975303104304567],[131200,3802240,1975301915400511,1975303104304567],[131200,67108866,15920798525905540,15920804767567825],[131200,67108868,-4648502482185233,-4648496942404193],[131200,67108872,-166718780962043040,-166718724742007499],[131200,67108878,-11272302707603802,-11272301161280132],[131200,67108928,3950600183061726,3950609856348444],[131200,67108938,3950603642885640,3950606396524520],[131200,67108940,-13247605066971786,-13247603821617226],[131200,67109888,6623797698355075,6623806745939431],[131200,67109898,4648499059714221,4648500364875210],[131200,67109900,-13247605033169427,-13247603855419588],[131200,67109960,-11272303056635485,-11272300812248450],[131200,67141632,-4648505793203474,-4648493631385954],[131200,67141642,6623801102928978,6623803341365525],[131200,67141644,47064508673192612,47064511822048211],[131200,67141704,24519905258499972,24519907498972975],[131200,67142664,6623801159997192,6623803284297315],[131200,67240066,15920798525905540,15920804767567825],[131200,67240068,-4648502482185233,-4648496942404193],[131200,67240072,-166718780962043040,-166718724742007499],[131200,67240078,-11272302707603802,-11272301161280132],[131200,67240128,3950600183061726,3950609856348444],[131200,67240138,3950603642885640,3950606396524520],[131200,67240140,-13247605066971786,-13247603821617226],[131200,67241088,6623797698355075,6623806745939431],[131200,67241098,4648499059714221,4648500364875210],[131200,67241100,-13247605033169427,-13247603855419588],[131200,67241160,-11272303056635485,-11272300812248450],[131200,67272832,-4648505793203474,-4648493631385954],[131200,67272842,6623801102928978,6623803341365525],[131200,67272844,47064508673192612,47064511822048211],[131200,67272904,24519905258499972,24519907498972975],[131200,67273864,6623801159997192,6623803284297315],[131200,67633152,218159636069763092,218159705380447032],[131200,67633162,8599102838302509,8599106625697078],[131200,67633164,11272300226701508,11272303642182425],[131200,67633224,-3950609856348444,-3950600183061726],[131200,67634184,-6623806745939431,-6623797698355075],[131200,67634240,24519905258499972,24519907498972975],[131200,67665928,4648493631385954,4648505793203474],[131200,67665984,-11272303056635485,-11272300812248450],[131200,67666944,-11272302995044411,-11272300873839524],[131200,67764352,218159636069763092,218159705380447032],[131200,67764362,8599102838302509,8599106625697078],[131200,67764364,11272300226701508,11272303642182425],[131200,67764424,-3950609856348444,-3950600183061726],[131200,67765384,-6623806745939431,-6623797698355075],[131200,67765440,24519905258499972,24519907498972975],[131200,67797128,4648493631385954,4648505793203474],[131200,67797184,-11272303056635485,-11272300812248450],[131200,67798144,-11272302995044411,-11272300873839524],[131200,68157440,-1975305288493376,-1975299731211704],[131200,68288640,-1975305288493376,-1975299731211704],[131200,68681736,-9297001142627820,-9296997706551035],[131200,68681792,-13247605066971786,-13247603821617226],[131200,68682752,-26495210066406118,-26495207710771912],[131200,68714496,24519905365967204,24519907391505747],[131200,68812936,-9297001142627820,-9296997706551035],[131200,68812992,-13247605066971786,-13247603821617226],[131200,68813952,-26495210066406118,-26495207710771912],[131200,68845696,24519905365967204,24519907391505747],[131200,134742016,-19871412418198236,-19871400914685277],[131200,134873216,-19871412418198236,-19871400914685277],[131200,135266304,-3950605484998596,-3950604554411562],[131200,135397504,-3950605484998596,-3950604554411562],[131200,135791616,1975301917236486,1975303102468593],[131200,135922816,1975301917236486,1975303102468593],[131200,268435464,20569290552159553,20569312165903224],[131200,268435520,15920798525905540,15920804767567825],[131200,268436480,15920798744910351,15920804548563011],[131200,268468224,-4648502626375994,-4648496798213434],[131200,268566664,20569290552159553,20569312165903224],[131200,268566720,15920798525905540,15920804767567825],[131200,268567680,15920798744910351,15920804548563011],[131200,268599424,-4648502626375994,-4648496798213434],[131200,268959744,-66663850285081034,-66663799369372644],[131200,268959816,8599102838302509,8599106625697078],[131200,268960776,8599102950409964,8599106513589621],[131200,268960832,6623801102928978,6623803341365525],[131200,268992520,-6623804014035016,-6623800430259491],[131200,268992576,4648499059714221,4648500364875210],[131200,268993536,4648499087034444,4648500337554984],[131200,269090944,-66663850285081034,-66663799369372644],[131200,269091016,8599102838302509,8599106625697078],[131200,269091976,8599102950409964,8599106513589621],[131200,269092032,6623801102928978,6623803341365525],[131200,269123720,-6623804014035016,-6623800430259491],[131200,269123776,4648499059714221,4648500364875210],[131200,269124736,4648499087034444,4648500337554984],[131200,269484032,-13945502254348697,-13945496019419587],[131200,269615232,-13945502254348697,-13945496019419587],[131200,270008328,-1975304066969121,-1975300952735957],[131200,270008384,-11272302707603802,-11272301161280132],[131200,270009344,-24519907697962539,-24519905059510412],[131200,270041088,-11272302664793112,-11272301204090824],[131200,270139528,-1975304066969121,-1975300952735957],[131200,270139584,-11272302707603802,-11272301161280132],[131200,270140544,-24519907697962539,-24519905059510412],[131200,270172288,-11272302664793112,-11272301204090824],[131200,335544320,20569295987453940,20569306730608851],[131200,335675520,20569295987453940,20569306730608851],[131200,336068616,-35792211597603263,-35792205028753624],[131200,336068672,3950603642885640,3950606396524520],[131200,336069632,3950603721653790,3950606317756372],[131200,336101376,-24519908147332138,-24519904610140814],[131200,336199816,-35792211597603263,-35792205028753624],[131200,336199872,3950603642885640,3950606396524520],[131200,336200832,3950603721653790,3950606317756372],[131200,336232576,-24519908147332138,-24519904610140814],[131200,337117184,31841601906990784,31841604679955942],[131200,337248384,31841601906990784,31841604679955942],[131200,402653184,11272301474344214,11272302394539722],[131200,402784384,11272301474344214,11272302394539722],[131200,470286336,-13247605061599516,-13247603826989498],[131200,470417536,-13247605061599516,-13247603826989498],[131200,1073741832,8599101386783086,8599108077216494],[131200,1073774604,1975301917270118,1975303102434961],[131200,1073873032,8599101386783086,8599108077216494],[131200,1073905804,1975301917270118,1975303102434961],[131200,1074266112,11272298596064681,11272305272819252],[131200,1074397312,11272298596064681,11272305272819252],[131200,1409810432,1975301889643525,1975303130061553],[131200,1409941632,1975301889643525,1975303130061553],[131200,17592186044424,13247602500871785,13247606387717226],[131200,17592186175624,13247602500871785,13247606387717226],[131200,17592186568704,-1975304480049416,-1975300539655663],[131200,17592186699904,-1975304480049416,-1975300539655663],[131200,17592522113024,-13247605134312055,-13247603754276960],[131200,17592522244224,-13247605134312055,-13247603754276960],[131200,35184372613120,-11272305322642808,-11272298546241124],[131200,35184372744320,-11272305322642808,-11272298546241124],[131200,35184640524288,-9296999945106400,-9296998904072456],[131200,35184640655488,-9296999945106400,-9296998904072456],[131200,35184708157440,22544603189358414,22544604548409457],[131200,35184708288640,22544603189358414,22544604548409457],[131203,0,22544602948688428,22544604789079444],[131203,3,11272301474344214,11272302394539722],[131203,12,-77510327102997542,-77510321208831459],[131203,15,-49039814910578252,-49039810604367646],[131203,72,11272300231229941,11272303637653996],[131203,75,24519905292829457,24519907464643494],[131203,129,-4648502622318527,-4648496802270899],[131203,130,15920798736625752,15920804556847610],[131203,141,-3950606982859932,-3950603056550226],[131203,142,-24519908340000795,-24519904417472150],[131203,201,35792206084485028,35792210541871860],[131203,202,-49039814979929732,-49039810535016170],[131203,1161,6623801159963560,6623803284330947],[131203,1162,-6623803284330947,-6623801159963560],[131203,32905,-6623803284297315,-6623801159997192],[131203,32906,6623801159997192,6623803284297315],[131203,131073,15920798736625752,15920804556847610],[131203,131074,-4648502622318527,-4648496802270899],[131203,131085,-24519908340000795,-24519904417472150],[131203,131086,-3950606982859932,-3950603056550226],[131203,131145,-49039814979929732,-49039810535016170],[131203,131146,35792206084485028,35792210541871860],[131203,131200,11272301474344214,11272302394539722],[131203,131203,22544602948688428,22544604789079444],[131203,131212,-49039814910578252,-49039810604367646],[131203,131215,-77510327102997542,-77510321208831459],[131203,131272,24519905292829457,24519907464643494],[131203,131275,11272300231229941,11272303637653996],[131203,132105,-6623803284330947,-6623801159963560],[131203,132106,6623801159963560,6623803284330947],[131203,163849,6623801159997192,6623803284297315],[131203,163850,-6623803284297315,-6623801159997192],[131203,524425,17896101898419553,17896106414758888],[131203,524426,-17896106414758888,-17896101898419553],[131203,655369,-17896106414758888,-17896101898419553],[131203,655370,17896101898419553,17896106414758888],[131203,67109001,-6623803337001160,-6623801107293350],[131203,67109002,6623801107293350,6623803337001160],[131203,67239945,6623801107293350,6623803337001160],[131203,67239946,-6623803337001160,-6623801107293350],[131205,0,-7901210969997192,-7901209108823124],[131205,5,-3950605484998596,-3950604554411562],[131205,10,57638914684799306,57638920294146182],[131205,15,52990415723206676,52990419831149384],[131205,129,-1975305295486367,-1975299724218711],[131205,132,-1975305295452736,-1975299724252344],[131205,139,11272299945646091,11272303923237845],[131205,142,-6623804212490749,-6623800231803759],[131205,201,-26495209977773508,-26495207799404518],[131205,204,26495207799404518,26495209977773508],[131205,1161,-26495209915574692,-26495207861603338],[131205,1164,26495207861603338,26495209915574692],[131205,32776,-24519908074966154,-24519904682506797],[131205,32781,-26495209992202640,-26495207784975390],[131205,32905,52990415723206676,52990419831149384],[131205,32908,-51015117307046807,-51015113227604174],[131205,131073,-1975305295452736,-1975299724252344],[131205,131076,-1975305295486367,-1975299724218711],[131205,131083,-6623804212490749,-6623800231803759],[131205,131086,11272299945646091,11272303923237845],[131205,131145,26495207799404518,26495209977773508],[131205,131148,-26495209977773508,-26495207799404518],[131205,131200,-3950605484998596,-3950604554411562],[131205,131205,-7901210969997192,-7901209108823124],[131205,131210,52990415723206676,52990419831149384],[131205,131215,57638914684799306,57638920294146182],[131205,132105,26495207861603338,26495209915574692],[131205,132108,-26495209915574692,-26495207861603338],[131205,163849,-51015117307046807,-51015113227604174],[131205,163852,52990415723206676,52990419831149384],[131205,163976,-26495209992202640,-26495207784975390],[131205,163981,-24519908074966154,-24519904682506797],[131205,524425,-2193017775,2193017774],[131205,524428,-2193017774,2193017775],[131205,655369,-2193017774,2193017775],[131205,655372,-2193017775,2193017774],[131205,67109001,26495207799425147,26495209977752878],[131205,67109004,-26495209977752878,-26495207799425147],[131205,67239945,-26495209977752878,-26495207799425147],[131205,67239948,26495207799425147,26495209977752878],[131206,0,-18594002543881458,-18593995154476254],[131206,6,-13945502254348697,-13945496019419587],[131206,9,19871400914685277,19871412418198236],[131206,15,-3950609226781738,-3950600812628424],[131206,72,4648493659097978,4648505765491449],[131206,78,-1975304719493192,-1975300300211890],[131206,130,-13945502255682351,-13945496018085931],[131206,132,9296996307740651,9297002541438203],[131206,139,13247602298025327,13247606590563683],[131206,141,10574405092145006,10574409391559659],[131206,202,26495204439857584,26495213337320446],[131206,204,-19871408879756524,-19871404453126997],[131206,1032,-13247606222252656,-13247602666336360],[131206,1038,6623801159997192,6623803284297315],[131206,1162,6623801159963560,6623803284330947],[131206,1164,-26495209915574692,-26495207861603338],[131206,32776,19871400888629471,19871412444254049],[131206,32782,13247602285191671,13247606603397346],[131206,32906,-3950609233926622,-3950600805483542],[131206,32908,10574405079083164,10574409404621503],[131206,131074,9296996307740651,9297002541438203],[131206,131076,-13945502255682351,-13945496018085931],[131206,131083,10574405092145006,10574409391559659],[131206,131085,13247602298025327,13247606590563683],[131206,131146,-19871408879756524,-19871404453126997],[131206,131148,26495204439857584,26495213337320446],[131206,131200,-13945502254348697,-13945496019419587],[131206,131206,-18594002543881458,-18593995154476254],[131206,131209,-3950609226781738,-3950600812628424],[131206,131215,19871400914685277,19871412418198236],[131206,131272,-1975304719493192,-1975300300211890],[131206,131278,4648493659097978,4648505765491449],[131206,132106,-26495209915574692,-26495207861603338],[131206,132108,6623801159963560,6623803284330947],[131206,132232,6623801159997192,6623803284297315],[131206,132238,-13247606222252656,-13247602666336360],[131206,163850,10574405079083164,10574409404621503],[131206,163852,-3950609233926622,-3950600805483542],[131206,163976,13247602285191671,13247606603397346],[131206,163982,19871400888629471,19871412444254049],[131206,524296,4648493631385954,4648505793203474],[131206,524302,26495204430640140,26495213346537888],[131206,524426,-1975304733296088,-1975300286408991],[131206,524428,-19871408894185654,-19871404438697867],[131206,655370,-19871408894185654,-19871404438697867],[131206,655372,-1975304733296088,-1975300286408991],[131206,655496,26495204430640140,26495213346537888],[131206,655502,4648493631385954,4648505793203474],[131206,67108872,-31143710514241570,-31143706687525880],[131206,67108878,-11272303056635485,-11272300812248450],[131206,67109002,-26495209977752878,-26495207799425147],[131206,67109004,6623801107293350,6623803337001160],[131206,67239946,6623801107293350,6623803337001160],[131206,67239948,-26495209977752878,-26495207799425147],[131206,67240072,-11272303056635485,-11272300812248450],[131206,67240078,-31143710514241570,-31143706687525880],[131209,0,-14643395680256320,-14643391978691236],[131209,6,15920800086388708,15920803207084654],[131209,9,-19871412418198236,-19871400914685277],[131209,15,-3950609226781738,-3950600812628424],[131209,66,-1975303161793801,-1975301857911278],[131209,68,-22544604489700504,-22544603248067364],[131209,75,-42416014569192714,-42416006501458678],[131209,77,3950603932147814,3950606107262344],[131209,129,1277404472099680,1277411162426122],[131209,135,11272298892173522,11272304976710416],[131209,136,3950601681274309,3950608358135846],[131209,142,8599101696810952,8599107767188634],[131209,195,-4648500367937249,-4648499056652180],[131209,202,45089204212760992,45089211262774750],[131209,204,-26495209977773508,-26495207799404518],[131209,1026,-4648500337588616,-4648499087000812],[131209,1028,-1975303102434961,-1975301917270118],[131209,1035,-11272302995044411,-11272300873839524],[131209,1037,24519905365967204,24519907391505747],[131209,1162,6623801159963560,6623803284330947],[131209,1164,-26495209915574692,-26495207861603338],[131209,32770,13247603822433492,13247605066155522],[131209,32772,-1975303102468593,-1975301917236486],[131209,32779,6623801159997192,6623803284297315],[131209,32781,11272298183630328,11272305685253609],[131209,32899,6623801159997192,6623803284297315],[131209,32901,-26495212182615048,-26495205594562984],[131209,32908,13247603822461068,13247605066127948],[131209,131073,3950601681274309,3950608358135846],[131209,131079,8599101696810952,8599107767188634],[131209,131080,1277404472099680,1277411162426122],[131209,131086,11272298892173522,11272304976710416],[131209,131139,45089204212760992,45089211262774750],[131209,131141,-26495209977773508,-26495207799404518],[131209,131146,-4648500367937249,-4648499056652180],[131209,131200,-19871412418198236,-19871400914685277],[131209,131206,-3950609226781738,-3950600812628424],[131209,131209,-14643395680256320,-14643391978691236],[131209,131215,15920800086388708,15920803207084654],[131209,131266,-42416014569192714,-42416006501458678],[131209,131268,3950603932147814,3950606107262344],[131209,131275,-1975303161793801,-1975301857911278],[131209,131277,-22544604489700504,-22544603248067364],[131209,132099,6623801159963560,6623803284330947],[131209,132101,-26495209915574692,-26495207861603338],[131209,132226,-11272302995044411,-11272300873839524],[131209,132228,24519905365967204,24519907391505747],[131209,132235,-4648500337588616,-4648499087000812],[131209,132237,-1975303102434961,-1975301917270118],[131209,163845,13247603822461068,13247605066127948],[131209,163850,6623801159997192,6623803284297315],[131209,163852,-26495212182615048,-26495205594562984],[131209,163970,6623801159997192,6623803284297315],[131209,163972,11272298183630328,11272305685253609],[131209,163979,13247603822433492,13247605066155522],[131209,163981,-1975303102468593,-1975301917236486],[131209,524290,22544601267974862,22544606469793008],[131209,524292,-49039815227304660,-49039810287641238],[131209,524299,-8599108332258679,-8599101131740910],[131209,524301,3950601587495984,3950608451914177],[131209,524419,6623801098016986,6623803346277523],[131209,524421,-26495209977993164,-26495207799184865],[131209,524426,24519905244697076,24519907512775874],[131209,524428,-26495209992202640,-26495207784975390],[131209,655363,24519905244697076,24519907512775874],[131209,655365,-26495209992202640,-26495207784975390],[131209,655370,6623801098016986,6623803346277523],[131209,655372,-26495209977993164,-26495207799184865],[131209,655490,-8599108332258679,-8599101131740910],[131209,655492,3950601587495984,3950608451914177],[131209,655499,22544601267974862,22544606469793008],[131209,655501,-49039815227304660,-49039810287641238],[131209,67108866,13247603792440361,13247605096148654],[131209,67108868,-1975303134066536,-1975301885638544],[131209,67108875,6623801086208550,6623803358085955],[131209,67108877,24519905293069738,24519907464403207],[131209,67108995,6623801107293350,6623803337001160],[131209,67108997,-26495209977752878,-26495207799425147],[131209,67239946,6623801107293350,6623803337001160],[131209,67239948,-26495209977752878,-26495207799425147],[131209,67240066,6623801086208550,6623803358085955],[131209,67240068,24519905293069738,24519907464403207],[131209,67240075,13247603792440361,13247605096148654],[131209,67240077,-1975303134066536,-1975301885638544],[131210,0,-3681052522,3681052524],[131210,5,8599103952831266,8599105511168320],[131210,10,-66663850285081034,-66663799369372644],[131210,15,52990415723206676,52990419831149384],[131210,65,1975301857911278,1975303161793801],[131210,68,15920798695415380,15920804598057982],[131210,75,4648494894531634,4648504530057793],[131210,78,11272299879110672,11272303989773264],[131210,130,-168694080794423276,-168694029929332347],[131210,135,-13247605939232943,-13247602949356073],[131210,136,235357851276653147,235357909101556156],[131210,141,-31143710097470678,-31143707104296780],[131210,195,6623801098016986,6623803346277523],[131210,198,-3950608253249321,-3950601786160837],[131210,201,-9297003420342855,-9296995428836002],[131210,204,8599102676277534,8599106787722050],[131210,330,-20569302596271653,-20569300121791140],[131210,456,20569300121791140,20569302596271653],[131210,1025,4648499087000812,4648500337588616],[131210,1028,-9297000203994710,-9296998645184146],[131210,1035,11272300873839524,11272302995044411],[131210,1038,-17896105064267619,-17896103248910824],[131210,1088,4648499056652179,4648500367937248],[131210,1098,11272297936924019,11272305931959916],[131210,1158,-17896105064267619,-17896103248910824],[131210,1161,-6623803284330947,-6623801159963560],[131210,1164,26495207861603338,26495209915574692],[131210,1218,-11272303056635485,-11272300812248450],[131210,1224,4648494894207522,4648504530381905],[131210,32769,-13247605066155522,-13247603822433492],[131210,32772,8599103952864898,8599105511134688],[131210,32779,-6623803284297315,-6623801159997192],[131210,32782,-13247605939232943,-13247602949356073],[131210,32832,-22544606464959780,-22544601272808088],[131210,32842,-6623803346277521,-6623801098016984],[131210,32899,-6623803284297315,-6623801159997192],[131210,32902,52990415723206676,52990419831149384],[131210,32908,-31143710097437046,-31143707104330412],[131210,32962,8599101150291472,8599108313708112],[131210,32968,-24519907498972975,-24519905258499972],[131210,33792,4648499087034444,4648500337554984],[131210,33922,11272300873839524,11272302995044411],[131210,33928,-6623803284297315,-6623801159997192],[131210,131074,235357851276653147,235357909101556156],[131210,131079,-31143710097470678,-31143707104296780],[131210,131080,-168694080794423276,-168694029929332347],[131210,131085,-13247605939232943,-13247602949356073],[131210,131139,-9297003420342855,-9296995428836002],[131210,131142,8599102676277534,8599106787722050],[131210,131145,6623801098016986,6623803346277523],[131210,131148,-3950608253249321,-3950601786160837],[131210,131200,-66663850285081034,-66663799369372644],[131210,131205,52990415723206676,52990419831149384],[131210,131210,-3681052522,3681052524],[131210,131215,8599103952831266,8599105511168320],[131210,131265,4648494894531634,4648504530057793],[131210,131268,11272299879110672,11272303989773264],[131210,131275,1975301857911278,1975303161793801],[131210,131278,15920798695415380,15920804598057982],[131210,131394,20569300121791140,20569302596271653],[131210,131520,-20569302596271653,-20569300121791140],[131210,132099,-6623803284330947,-6623801159963560],[131210,132102,26495207861603338,26495209915574692],[131210,132108,-17896105064267619,-17896103248910824],[131210,132162,4648494894207522,4648504530381905],[131210,132168,-11272303056635485,-11272300812248450],[131210,132225,11272300873839524,11272302995044411],[131210,132228,-17896105064267619,-17896103248910824],[131210,132235,4648499087000812,4648500337588616],[131210,132238,-9297000203994710,-9296998645184146],[131210,132288,11272297936924019,11272305931959916],[131210,132298,4648499056652179,4648500367937248],[131210,163846,-31143710097437046,-31143707104330412],[131210,163849,-6623803284297315,-6623801159997192],[131210,163852,52990415723206676,52990419831149384],[131210,163906,-24519907498972975,-24519905258499972],[131210,163912,8599101150291472,8599108313708112],[131210,163969,-6623803284297315,-6623801159997192],[131210,163972,-13247605939232943,-13247602949356073],[131210,163979,-13247605066155522,-13247603822433492],[131210,163982,8599103952864898,8599105511134688],[131210,164032,-6623803346277521,-6623801098016984],[131210,164042,-22544606464959780,-22544601272808088],[131210,164866,-6623803284297315,-6623801159997192],[131210,164872,11272300873839524,11272302995044411],[131210,165002,4648499087034444,4648500337554984],[131210,524289,-22544606469793008,-22544601267974862],[131210,524292,15920798685149414,15920804608323947],[131210,524299,8599101131740910,8599108332258679],[131210,524302,-3950608267983247,-3950601771426911],[131210,524352,-45089213226916902,-45089202248618840],[131210,524362,-13247611779979171,-13247597108609852],[131210,524419,-6623803346277523,-6623801098016986],[131210,524422,11272299869063941,11272303999819992],[131210,524425,-24519907512775874,-24519905244697076],[131210,524428,8599102661848405,8599106802151181],[131210,524482,-13247611732520567,-13247597156068460],[131210,524488,-18594007185055848,-18593990513301844],[131210,525312,4648499056652180,4648500367937249],[131210,525322,-11272303070687196,-11272300798196740],[131210,525442,11272297923178146,11272305945705791],[131210,525448,4648494866495498,4648504558093930],[131210,557056,1975301852392980,1975303167312100],[131210,557066,6623801098016984,6623803346277521],[131210,557186,4648494875353022,4648504549236406],[131210,557192,-9297003434088727,-9296995415090126],[131210,655363,-24519907512775874,-24519905244697076],[131210,655366,8599102661848405,8599106802151181],[131210,655369,-6623803346277523,-6623801098016986],[131210,655372,11272299869063941,11272303999819992],[131210,655426,-18594007185055848,-18593990513301844],[131210,655432,-13247611732520567,-13247597156068460],[131210,655489,8599101131740910,8599108332258679],[131210,655492,-3950608267983247,-3950601771426911],[131210,655499,-22544606469793008,-22544601267974862],[131210,655502,15920798685149414,15920804608323947],[131210,655552,-13247611779979171,-13247597108609852],[131210,655562,-45089213226916902,-45089202248618840],[131210,656386,4648494866495498,4648504558093930],[131210,656392,11272297923178146,11272305945705791],[131210,656512,-11272303070687196,-11272300798196740],[131210,656522,4648499056652180,4648500367937249],[131210,688130,-9297003434088727,-9296995415090126],[131210,688136,4648494875353022,4648504549236406],[131210,688256,6623801098016984,6623803346277521],[131210,688266,1975301852392980,1975303167312100],[131210,1572994,-20569302600800082,-20569300117262707],[131210,1573000,20569300117262707,20569302600800082],[131210,1703938,20569300117262707,20569302600800082],[131210,1703944,-20569302600800082,-20569300117262707],[131210,67108865,-13247605096148654,-13247603792440361],[131210,67108868,8599103904459875,8599105559539709],[131210,67108875,-6623803358085955,-6623801086208550],[131210,67108878,-964466106,964466108],[131210,67108928,-22544606608697526,-22544601129070346],[131210,67108938,-6623803429142575,-6623801015151933],[131210,67108995,-6623803337001160,-6623801107293350],[131210,67108998,26495207799425147,26495209977752878],[131210,67109004,-17896105125322940,-17896103187855503],[131210,67109058,8599101184095716,8599108279903872],[131210,67109064,-24519907605870334,-24519905151602618],[131210,67109888,4648499059714221,4648500364875210],[131210,67110018,11272300812248450,11272303056635485],[131210,67110024,-6623803364300278,-6623801079994226],[131210,67141642,6623801102928978,6623803341365525],[131210,67141762,-31143710514241570,-31143706687525880],[131210,67141768,24519905258499972,24519907498972975],[131210,67239942,-17896105125322940,-17896103187855503],[131210,67239945,-6623803337001160,-6623801107293350],[131210,67239948,26495207799425147,26495209977752878],[131210,67240002,-24519907605870334,-24519905151602618],[131210,67240008,8599101184095716,8599108279903872],[131210,67240065,-6623803358085955,-6623801086208550],[131210,67240068,-964466106,964466108],[131210,67240075,-13247605096148654,-13247603792440361],[131210,67240078,8599103904459875,8599105559539709],[131210,67240128,-6623803429142575,-6623801015151933],[131210,67240138,-22544606608697526,-22544601129070346],[131210,67240962,-6623803364300278,-6623801079994226],[131210,67240968,11272300812248450,11272303056635485],[131210,67241098,4648499059714221,4648500364875210],[131210,67272706,24519905258499972,24519907498972975],[131210,67272712,-31143710514241570,-31143706687525880],[131210,67272832,6623801102928978,6623803341365525],[131210,67633152,1975301823150576,1975303196554503],[131210,67633162,6623801015151933,6623803429142575],[131210,67633282,-697899880612376,-697889504566882],[131210,67633288,-3950609326662792,-3950600712747379],[131210,67764226,-3950609326662792,-3950600712747379],[131210,67764232,-697899880612376,-697889504566882],[131210,67764352,6623801015151933,6623803429142575],[131210,67764362,1975301823150576,1975303196554503],[131210,268959874,-15222908329021818,-15222905579272277],[131210,268959880,15222905579272277,15222908329021818],[131210,269090818,15222905579272277,15222908329021818],[131210,269090824,-15222908329021818,-15222905579272277],[131212,0,-3375919900,3375919900],[131212,3,-24519907159915920,-24519905597557028],[131212,12,307521786696231667,307521833184037924],[131212,15,-49039814910578252,-49039810604367646],[131212,65,22544603248067364,22544604489700504],[131212,66,-9297000198160808,-9296998651018048],[131212,77,-3950606107262344,-3950603932147814],[131212,78,22544602323661876,22544605414105996],[131212,132,-258754116160104515,-258754062378889847],[131212,135,1975300962522527,1975304057182551],[131212,136,-48767744686891983,-48767696654383246],[131212,139,22544602330282044,22544605407485828],[131212,198,17198207846590140,17198211081409034],[131212,201,26495207799404518,26495209977773508],[131212,202,-49039814979929732,-49039810535016170],[131212,1025,1975301917270118,1975303102434961],[131212,1026,11272301204057192,11272302664826744],[131212,1037,-24519907391505747,-24519905365967204],[131212,1038,-873779583,873779583],[131212,1100,24519905365967204,24519907391505747],[131212,1158,17896103248910824,17896105064267619],[131212,1161,26495207861603338,26495209915574692],[131212,1162,-6623803284330947,-6623801159963560],[131212,1220,-11272302995044411,-11272300873839524],[131212,1224,-13247606222252656,-13247602666336360],[131212,32769,1975301917236486,1975303102468593],[131212,32770,-22544606585988845,-22544601151779026],[131212,32781,17198204925419946,17198214002579226],[131212,32782,-24519908352868090,-24519904404604862],[131212,32832,18593996439502170,18594001258855540],[131212,32844,-3950606120324188,-3950603919085972],[131212,32901,11272298183630328,11272305685253609],[131212,32902,-6623804221568240,-6623800222726267],[131212,32905,-26495209992202640,-26495207784975390],[131212,32906,8599101685162166,8599107778837422],[131212,32964,11272300873839524,11272302995044411],[131212,32968,11272298579605019,11272305289278916],[131212,33792,-22544606196572912,-22544601541194970],[131212,33804,-24519907414185673,-24519905343287280],[131212,33924,-6623803231071470,-6623801213223040],[131212,33928,8599101715170092,8599107748829489],[131212,131076,-48767744686891983,-48767696654383246],[131212,131079,22544602330282044,22544605407485828],[131212,131080,-258754116160104515,-258754062378889847],[131212,131083,1975300962522527,1975304057182551],[131212,131141,26495207799404518,26495209977773508],[131212,131142,-49039814979929732,-49039810535016170],[131212,131146,17198207846590140,17198211081409034],[131212,131200,307521786696231667,307521833184037924],[131212,131203,-49039814910578252,-49039810604367646],[131212,131212,-3375919900,3375919900],[131212,131215,-24519907159915920,-24519905597557028],[131212,131265,-3950606107262344,-3950603932147814],[131212,131266,22544602323661876,22544605414105996],[131212,131277,22544603248067364,22544604489700504],[131212,131278,-9297000198160808,-9296998651018048],[131212,132101,26495207861603338,26495209915574692],[131212,132102,-6623803284330947,-6623801159963560],[131212,132106,17896103248910824,17896105064267619],[131212,132164,-13247606222252656,-13247602666336360],[131212,132168,-11272302995044411,-11272300873839524],[131212,132225,-24519907391505747,-24519905365967204],[131212,132226,-873779583,873779583],[131212,132237,1975301917270118,1975303102434961],[131212,132238,11272301204057192,11272302664826744],[131212,132288,24519905365967204,24519907391505747],[131212,163845,-26495209992202640,-26495207784975390],[131212,163846,8599101685162166,8599107778837422],[131212,163849,11272298183630328,11272305685253609],[131212,163850,-6623804221568240,-6623800222726267],[131212,163908,11272298579605019,11272305289278916],[131212,163912,11272300873839524,11272302995044411],[131212,163969,17198204925419946,17198214002579226],[131212,163970,-24519908352868090,-24519904404604862],[131212,163981,1975301917236486,1975303102468593],[131212,163982,-22544606585988845,-22544601151779026],[131212,164032,-3950606120324188,-3950603919085972],[131212,164044,18593996439502170,18594001258855540],[131212,164868,8599101715170092,8599107748829489],[131212,164872,-6623803231071470,-6623801213223040],[131212,164992,-24519907414185673,-24519905343287280],[131212,165004,-22544606196572912,-22544601541194970],[131212,524289,49039810287641238,49039815227304660],[131212,524290,-22544606653723935,-22544601084043932],[131212,524301,-3950608451914177,-3950601587495984],[131212,524302,-24519909487239803,-24519903270233145],[131212,524352,-13247605061713792,-13247603826875223],[131212,524364,3950603919085972,3950606120324188],[131212,524421,26495207799184865,26495209977993164],[131212,524422,8599102631895649,8599106832103938],[131212,524425,26495207784975390,26495209992202640],[131212,524426,-6623804322724415,-6623800121570091],[131212,524484,-21846713226576023,-21846705126012580],[131212,524488,4648494866495498,4648504558093930],[131212,525312,-13247605037567427,-13247603851021587],[131212,525324,24519905343287280,24519907414185673],[131212,525444,-24519910213370186,-24519902544102763],[131212,525448,-13247609036357290,-13247599852231728],[131212,557056,67633806609648820,67633816603654788],[131212,557068,43113898635137411,43113911820693235],[131212,557188,17198202099309824,17198216828689364],[131212,557192,7321690308104443,7321703521369331],[131212,655365,26495207784975390,26495209992202640],[131212,655366,-6623804322724415,-6623800121570091],[131212,655369,26495207799184865,26495209977993164],[131212,655370,8599102631895649,8599106832103938],[131212,655428,4648494866495498,4648504558093930],[131212,655432,-21846713226576023,-21846705126012580],[131212,655489,-3950608451914177,-3950601587495984],[131212,655490,-24519909487239803,-24519903270233145],[131212,655501,49039810287641238,49039815227304660],[131212,655502,-22544606653723935,-22544601084043932],[131212,655552,3950603919085972,3950606120324188],[131212,655564,-13247605061713792,-13247603826875223],[131212,656388,-13247609036357290,-13247599852231728],[131212,656392,-24519910213370186,-24519902544102763],[131212,656512,24519905343287280,24519907414185673],[131212,656524,-13247605037567427,-13247603851021587],[131212,688132,7321690308104443,7321703521369331],[131212,688136,17198202099309824,17198216828689364],[131212,688256,43113898635137411,43113911820693235],[131212,688268,67633806609648820,67633816603654788],[131212,1572996,-1198509903,1198509906],[131212,1573000,-1198509906,1198509903],[131212,1703940,-1198509906,1198509903],[131212,1703944,-1198509903,1198509906],[131212,67108865,1975301885638544,1975303134066536],[131212,67108866,11272301161387192,11272302707496740],[131212,67108877,-24519907464403207,-24519905293069738],[131212,67108878,-932612782,932612781],[131212,67108928,-13247605066971786,-13247603821617226],[131212,67108997,26495207799425147,26495209977752878],[131212,67108998,-6623803337001160,-6623801107293350],[131212,67109002,17896103187855503,17896105125322940],[131212,67109060,11272300812248450,11272303056635485],[131212,67109064,-24519907498972975,-24519905258499972],[131212,67109888,-13247605033169427,-13247603855419588],[131212,67110020,-6623803271301876,-6623801172992632],[131212,67110024,-6623803284297315,-6623801159997192],[131212,67141632,1975301885115096,1975303134589986],[131212,67141644,-3950608765320955,-3950601274089200],[131212,67141764,-697899214028262,-697890171151008],[131212,67141768,6623801159997192,6623803284297315],[131212,67239942,17896103187855503,17896105125322940],[131212,67239945,26495207799425147,26495209977752878],[131212,67239946,-6623803337001160,-6623801107293350],[131212,67240004,-24519907498972975,-24519905258499972],[131212,67240008,11272300812248450,11272303056635485],[131212,67240065,-24519907464403207,-24519905293069738],[131212,67240066,-932612782,932612781],[131212,67240077,1975301885638544,1975303134066536],[131212,67240078,11272301161387192,11272302707496740],[131212,67240140,-13247605066971786,-13247603821617226],[131212,67240964,-6623803284297315,-6623801159997192],[131212,67240968,-6623803271301876,-6623801172992632],[131212,67241100,-13247605033169427,-13247603855419588],[131212,67272708,6623801159997192,6623803284297315],[131212,67272712,-697899214028262,-697890171151008],[131212,67272832,-3950608765320955,-3950601274089200],[131212,67272844,1975301885115096,1975303134589986],[131212,67633152,-13247605066127948,-13247603822461068],[131212,67633164,24519905292829456,24519907464643493],[131212,67633284,4648494875353022,4648504549236406],[131212,67633288,-42416014583842896,-42416006486808497],[131212,67764228,-42416014583842896,-42416006486808497],[131212,67764232,4648494875353022,4648504549236406],[131212,67764352,24519905292829456,24519907464643493],[131212,67764364,-13247605066127948,-13247603822461068],[131212,268959876,-17896105469604200,-17896102843574241],[131212,268959880,17896102843574241,17896105469604200],[131212,269090820,17896102843574241,17896105469604200],[131212,269090824,-17896105469604200,-17896102843574241],[131212,1073774604,15222905739731186,15222908168562909],[131212,1073774724,-15222908168562909,-15222905739731186],[131212,1073905672,-15222908168562909,-15222905739731186],[131212,1073905792,15222905739731186,15222908168562909],[131215,3,-24519907159915920,-24519905597557028],[131215,5,8599103952831266,8599105511168320],[131215,6,15920800086388708,15920803207084654],[131215,9,19871400914685277,19871412418198236],[131215,10,57638914684799306,57638920294146182],[131215,12,-77510327102997542,-77510321208831459],[131215,129,18593996132872130,18594001565485586],[131215,130,-24519907697996171,-24519905059476780],[131215,132,5925906132510585,5925908926604650],[131215,139,47064508855883441,47064511639357377],[131215,141,-24519907696178166,-24519905061294785],[131215,142,-22544606578062592,-22544601159705275],[131215,131073,-22544606578062592,-22544601159705275],[131215,131074,-24519907696178166,-24519905061294785],[131215,131076,47064508855883441,47064511639357377],[131215,131083,5925906132510585,5925908926604650],[131215,131085,-24519907697996171,-24519905059476780],[131215,131086,18593996132872130,18594001565485586],[131215,131203,-77510327102997542,-77510321208831459],[131215,131205,57638914684799306,57638920294146182],[131215,131206,19871400914685277,19871412418198236],[131215,131209,15920800086388708,15920803207084654],[131215,131210,8599103952831266,8599105511168320],[131215,131212,-24519907159915920,-24519905597557028],[131265,10,-33119013675915179,-33119008545557361],[131265,75,4648494894531634,4648504530057793],[131265,77,-3950606107262344,-3950603932147814],[131265,139,-37767513075615154,-37767508570446813],[131265,141,3950603932147814,3950606107262344],[131265,131146,-37767513075615154,-37767508570446813],[131265,131148,3950603932147814,3950606107262344],[131265,131210,4648494894531634,4648504530057793],[131265,131212,-3950606107262344,-3950603932147814],[131265,131275,-33119013675915179,-33119008545557361],[131265,524290,-4648500367937249,-4648499056652180],[131265,524355,-4648500367937249,-4648499056652180],[131265,655490,-4648500367937249,-4648499056652180],[131265,655555,-4648500367937249,-4648499056652180],[131266,0,33237389263734506,33237396093570758],[131266,9,8599102944480312,8599106519519277],[131266,66,20569295987453940,20569306730608851],[131266,75,-42416014569192714,-42416006501458678],[131266,78,22544602323661876,22544605414105996],[131266,130,20569290559759355,20569312158303430],[131266,139,51015113020977955,51015117513673026],[131266,142,-24519909474570990,-24519903282901962],[131266,192,-7901216811716128,-7901203267104184],[131266,204,1975300959240086,1975304060464994],[131266,264,31143705027114464,31143712174652992],[131266,330,-8599106519519277,-8599102944480312],[131266,456,39742811546633741,39742815119133304],[131266,1032,-39742815119133304,-39742811546633741],[131266,1162,-17896106405970981,-17896101907207464],[131266,1224,-21846713211925840,-21846705140662760],[131266,32842,28470509608204269,28470513188678840],[131266,32906,-8599108313708112,-8599101150291472],[131266,32968,-19871408457912797,-19871404874970728],[131266,131074,-7901216811716128,-7901203267104184],[131266,131086,1975300959240086,1975304060464994],[131266,131136,20569290559759355,20569312158303430],[131266,131145,51015113020977955,51015117513673026],[131266,131148,-24519909474570990,-24519903282901962],[131266,131200,20569295987453940,20569306730608851],[131266,131209,-42416014569192714,-42416006501458678],[131266,131212,22544602323661876,22544605414105996],[131266,131266,33237389263734506,33237396093570758],[131266,131275,8599102944480312,8599106519519277],[131266,131338,39742811546633741,39742815119133304],[131266,131464,-8599106519519277,-8599102944480312],[131266,131530,31143705027114464,31143712174652992],[131266,132106,-21846713211925840,-21846705140662760],[131266,132168,-17896106405970981,-17896101907207464],[131266,132298,-39742815119133304,-39742811546633741],[131266,163850,-19871408457912797,-19871404874970728],[131266,163912,-8599108313708112,-8599101150291472],[131266,163976,28470509608204269,28470513188678840],[131266,524289,4648499056652180,4648500367937249],[131266,524296,-35792211597603263,-35792205028753624],[131266,524355,4648499056652180,4648500367937249],[131266,524362,56941019193503222,56941026400262994],[131266,524426,-79485635001138468,-79485618330395612],[131266,524488,-13247611779979171,-13247597108609852],[131266,524544,-4648500367937249,-4648499056652180],[131266,524610,-4648500367937249,-4648499056652180],[131266,525442,6623801098016984,6623803346277521],[131266,525504,-6623803346277521,-6623801098016984],[131266,557186,-4648500367937248,-4648499056652179],[131266,557248,4648499056652179,4648500367937248],[131266,655370,-13247611779979171,-13247597108609852],[131266,655432,-79485635001138468,-79485618330395612],[131266,655489,4648499056652180,4648500367937249],[131266,655496,56941019193503222,56941026400262994],[131266,655555,4648499056652180,4648500367937249],[131266,655562,-35792211597603263,-35792205028753624],[131266,655744,-4648500367937249,-4648499056652180],[131266,655810,-4648500367937249,-4648499056652180],[131266,656386,-6623803346277521,-6623801098016984],[131266,656448,6623801098016984,6623803346277521],[131266,688130,4648499056652179,4648500367937248],[131266,688192,-4648500367937248,-4648499056652179],[131266,1572994,-1975303134066535,-1975301885638543],[131266,1573056,1975301885638543,1975303134066535],[131266,1703938,1975301885638543,1975303134066535],[131266,1704000,-1975303134066535,-1975301885638543],[131266,67108938,28470509652297966,28470513144585146],[131266,67109002,-8599108279903872,-8599101184095716],[131266,67109064,-19871408468202250,-19871404864681274],[131266,67239946,-19871408468202250,-19871404864681274],[131266,67240008,-8599108279903872,-8599101184095716],[131266,67240072,28470509652297966,28470513144585146],[131266,67633282,-1975303194709763,-1975301824995317],[131266,67633344,1975301824995317,1975303194709763],[131266,67764226,1975301824995317,1975303194709763],[131266,67764288,-1975303194709763,-1975301824995317],[131266,268959874,-4648500405191522,-4648499019397906],[131266,268959936,4648499019397906,4648500405191522],[131266,269090818,4648499019397906,4648500405191522],[131266,269090880,-4648500405191522,-4648499019397906],[131268,0,-18593999772903408,-18593997925454304],[131268,10,42416007508284513,42416013562366883],[131268,68,-1975305288493376,-1975299731211704],[131268,77,3950603932147814,3950606107262344],[131268,78,11272299879110672,11272303989773264],[131268,132,-7321699692989682,-7321694136484094],[131268,141,-3950606107262344,-3950603932147814],[131268,142,8599102641942379,8599106822057209],[131268,192,-9296999886451704,-9296998962727152],[131268,202,22544601642609286,22544606095158586],[131268,264,11272300873839524,11272302995044411],[131268,456,11272300873839524,11272302995044411],[131268,1032,-11272302995044411,-11272300873839524],[131268,1224,-11272302995044411,-11272300873839524],[131268,32844,15222904792925496,15222909115368599],[131268,32908,-15222909115368599,-15222904792925496],[131268,131076,-9296999886451704,-9296998962727152],[131268,131086,22544601642609286,22544606095158586],[131268,131136,-7321699692989682,-7321694136484094],[131268,131145,-3950606107262344,-3950603932147814],[131268,131146,8599102641942379,8599106822057209],[131268,131200,-1975305288493376,-1975299731211704],[131268,131209,3950603932147814,3950606107262344],[131268,131210,11272299879110672,11272303989773264],[131268,131268,-18593999772903408,-18593997925454304],[131268,131278,42416007508284513,42416013562366883],[131268,131340,11272300873839524,11272302995044411],[131268,131532,11272300873839524,11272302995044411],[131268,132108,-11272302995044411,-11272300873839524],[131268,132300,-11272302995044411,-11272300873839524],[131268,163912,-15222909115368599,-15222904792925496],[131268,163976,15222904792925496,15222909115368599],[131268,524296,-6623804014035016,-6623800430259491],[131268,524364,22544601642609286,22544606095158586],[131268,524428,-17896106405885420,-17896101907293023],[131268,524488,-11272303070687196,-11272300798196740],[131268,655372,-11272303070687196,-11272300798196740],[131268,655432,-17896106405885420,-17896101907293023],[131268,655496,22544601642609286,22544606095158586],[131268,655564,-6623804014035016,-6623800430259491],[131268,67108940,11272300812248450,11272303056635485],[131268,67109004,-11272303056635485,-11272300812248450],[131268,67240008,-11272303056635485,-11272300812248450],[131268,67240072,11272300812248450,11272303056635485],[131272,0,-98079630297168496,-98079620732723310],[131272,6,-21846710653152227,-21846707699436376],[131272,72,218159636069763092,218159705380447032],[131272,75,24519905292829457,24519907464643494],[131272,78,-1975304719493192,-1975300300211890],[131272,136,-252556117717993928,-252556061588214548],[131272,139,-22544604485915178,-22544603251852693],[131272,142,-6623804308921517,-6623800135372988],[131272,192,-63683211765177830,-63683201408715624],[131272,195,-1975303134066536,-1975301885638544],[131272,198,-13247606060429303,-13247602828159713],[131272,258,-13247605096148654,-13247603792440361],[131272,260,-13247605066155522,-13247603822433492],[131272,330,31143706348854335,31143710852913125],[131272,394,-26495210655649026,-26495207121529005],[131272,450,-17896105464085903,-17896102849092541],[131272,452,-13247605066155522,-13247603822433492],[131272,1026,8599103424503113,8599106039496475],[131272,1028,13247603822433492,13247605066155522],[131272,1098,-35792210542100730,-35792206084256157],[131272,1162,31143706348854335,31143710852913125],[131272,1218,13247603792440361,13247605096148654],[131272,1220,13247603822433492,13247605066155522],[131272,1352,-37767512457661269,-37767509188400696],[131272,1416,37767509188400696,37767512457661269],[131272,32770,26495207590564460,26495210186613570],[131272,32842,-17896106400955991,-17896101912222451],[131272,32844,-37767512457661269,-37767509188400696],[131272,32906,24519905258499972,24519907498972975],[131272,32908,37767509188400696,37767512457661269],[131272,32962,19871404874970728,19871408457912797],[131272,33024,13247603822433492,13247605066155522],[131272,33216,13247603822433492,13247605066155522],[131272,33792,-13247605066155522,-13247603822433492],[131272,33984,-13247605066155522,-13247603822433492],[131272,131080,-63683211765177830,-63683201408715624],[131272,131083,-1975303134066536,-1975301885638544],[131272,131086,-13247606060429303,-13247602828159713],[131272,131136,-252556117717993928,-252556061588214548],[131272,131139,-22544604485915178,-22544603251852693],[131272,131142,-6623804308921517,-6623800135372988],[131272,131200,218159636069763092,218159705380447032],[131272,131203,24519905292829457,24519907464643494],[131272,131206,-1975304719493192,-1975300300211890],[131272,131272,-98079630297168496,-98079620732723310],[131272,131278,-21846710653152227,-21846707699436376],[131272,131338,-17896105464085903,-17896102849092541],[131272,131340,-13247605066155522,-13247603822433492],[131272,131394,-26495210655649026,-26495207121529005],[131272,131458,31143706348854335,31143710852913125],[131272,131530,-13247605096148654,-13247603792440361],[131272,131532,-13247605066155522,-13247603822433492],[131272,132106,13247603792440361,13247605096148654],[131272,132108,13247603822433492,13247605066155522],[131272,132162,31143706348854335,31143710852913125],[131272,132226,-35792210542100730,-35792206084256157],[131272,132298,8599103424503113,8599106039496475],[131272,132300,13247603822433492,13247605066155522],[131272,132416,37767509188400696,37767512457661269],[131272,132480,-37767512457661269,-37767509188400696],[131272,163850,19871404874970728,19871408457912797],[131272,163906,24519905258499972,24519907498972975],[131272,163908,37767509188400696,37767512457661269],[131272,163970,-17896106400955991,-17896101912222451],[131272,163972,-37767512457661269,-37767509188400696],[131272,164042,26495207590564460,26495210186613570],[131272,164104,13247603822433492,13247605066155522],[131272,164296,13247603822433492,13247605066155522],[131272,164872,-13247605066155522,-13247603822433492],[131272,165064,-13247605066155522,-13247603822433492],[131272,524290,58336806002895800,58336818361228957],[131272,524292,8599103418984813,8599106045014772],[131272,524362,-79485635001138468,-79485618330395612],[131272,524364,-35792210542100730,-35792206084256157],[131272,524426,98079620672804862,98079630357086928],[131272,524428,31143706348939894,31143710852827564],[131272,524482,39742810183793936,39742816481973111],[131272,524484,13247603786922062,13247605101666952],[131272,524544,26495207590564460,26495210186613570],[131272,524616,-17896106414758888,-17896101898419553],[131272,524680,24519905244697076,24519907512775874],[131272,524736,19871404875056286,19871408457827235],[131272,525312,-21846710653066666,-21846707699521935],[131272,525384,-1975304733296088,-1975300286408991],[131272,525448,-6623804322724415,-6623800121570091],[131272,525504,-13247606060429303,-13247602828159713],[131272,557056,-13247605101666952,-13247603786922062],[131272,557128,31143706348939894,31143710852827564],[131272,557192,-26495210655649026,-26495207121529005],[131272,557248,-17896105469604200,-17896102843574241],[131272,655370,39742810183793936,39742816481973111],[131272,655372,13247603786922062,13247605101666952],[131272,655426,98079620672804862,98079630357086928],[131272,655428,31143706348939894,31143710852827564],[131272,655490,-79485635001138468,-79485618330395612],[131272,655492,-35792210542100730,-35792206084256157],[131272,655562,58336806002895800,58336818361228957],[131272,655564,8599103418984813,8599106045014772],[131272,655624,19871404875056286,19871408457827235],[131272,655680,24519905244697076,24519907512775874],[131272,655744,-17896106414758888,-17896101898419553],[131272,655816,26495207590564460,26495210186613570],[131272,656392,-13247606060429303,-13247602828159713],[131272,656448,-6623804322724415,-6623800121570091],[131272,656512,-1975304733296088,-1975300286408991],[131272,656584,-21846710653066666,-21846707699521935],[131272,688136,-17896105469604200,-17896102843574241],[131272,688192,-26495210655649026,-26495207121529005],[131272,688256,31143706348939894,31143710852827564],[131272,688328,-13247605101666952,-13247603786922062],[131272,1572936,24519905292829456,24519907464643493],[131272,1573000,-22544604485915178,-22544603251852693],[131272,1573056,-1975303134066535,-1975301885638543],[131272,1703944,-1975303134066535,-1975301885638543],[131272,1704000,-22544604485915178,-22544603251852693],[131272,1704064,24519905292829456,24519907464643493],[131272,67108866,26495207525594866,26495210251583166],[131272,67108938,-17896106590718401,-17896101722460043],[131272,67108940,-24519907498972975,-24519905258499972],[131272,67109002,24519905151602618,24519907605870334],[131272,67109004,24519905258499972,24519907498972975],[131272,67109058,19871404864681274,19871408468202250],[131272,67109120,13247603792440361,13247605096148654],[131272,67109312,13247603792440361,13247605096148654],[131272,67109888,-13247605096148654,-13247603792440361],[131272,67110080,-13247605096148654,-13247603792440361],[131272,67141704,24519905258499972,24519907498972975],[131272,67141768,-24519907498972975,-24519905258499972],[131272,67239946,19871404864681274,19871408468202250],[131272,67240002,24519905151602618,24519907605870334],[131272,67240004,24519905258499972,24519907498972975],[131272,67240066,-17896106590718401,-17896101722460043],[131272,67240068,-24519907498972975,-24519905258499972],[131272,67240138,26495207525594866,26495210251583166],[131272,67240200,13247603792440361,13247605096148654],[131272,67240392,13247603792440361,13247605096148654],[131272,67240968,-13247605096148654,-13247603792440361],[131272,67241160,-13247605096148654,-13247603792440361],[131272,67272768,-24519907498972975,-24519905258499972],[131272,67272832,24519905258499972,24519907498972975],[131272,67633152,-13247605134312055,-13247603754276960],[131272,67633224,49039810351907138,49039815163038758],[131272,67633288,-47064512135024435,-47064508360216381],[131272,67633344,-15222908329021818,-15222905579272277],[131272,67764232,-15222908329021818,-15222905579272277],[131272,67764288,-47064512135024435,-47064508360216381],[131272,67764352,49039810351907138,49039815163038758],[131272,67764424,-13247605134312055,-13247603754276960],[131272,268959816,6623801015151933,6623803429142575],[131272,268959880,-1975303194709763,-1975301824995317],[131272,268959936,-4648500405191522,-4648499019397906],[131272,269090824,-4648500405191522,-4648499019397906],[131272,269090880,-1975303194709763,-1975301824995317],[131272,269090944,6623801015151933,6623803429142575],[131275,9,8599102944480312,8599106519519277],[131275,10,-33119013675915179,-33119008545557361],[131275,65,1975301857911278,1975303161793801],[131275,66,-1975303161793801,-1975301857911278],[131275,72,11272300231229941,11272303637653996],[131275,75,-13247605061599516,-13247603826989498],[131275,129,-6623803529731050,-6623800914563458],[131275,130,8599102955928264,8599106508071324],[131275,136,13247603826989498,13247605061599516],[131275,139,-9297000658925680,-9296998190253177],[131275,192,-1975303134066536,-1975301885638544],[131275,201,26495207121529005,26495210655649026],[131275,202,-3950606322255178,-3950603717154982],[131275,131073,-3950606322255178,-3950603717154982],[131275,131074,26495207121529005,26495210655649026],[131275,131083,-1975303134066536,-1975301885638544],[131275,131136,-9297000658925680,-9296998190253177],[131275,131139,13247603826989498,13247605061599516],[131275,131145,8599102955928264,8599106508071324],[131275,131146,-6623803529731050,-6623800914563458],[131275,131200,-13247605061599516,-13247603826989498],[131275,131203,11272300231229941,11272303637653996],[131275,131209,-1975303161793801,-1975301857911278],[131275,131210,1975301857911278,1975303161793801],[131275,131265,-33119013675915179,-33119008545557361],[131275,131266,8599102944480312,8599106519519277],[131277,65,22544603248067364,22544604489700504],[131277,68,-22544604489700504,-22544603248067364],[131277,129,-22544604489700504,-22544603248067364],[131277,132,22544603248067364,22544604489700504],[131277,131145,22544603248067364,22544604489700504],[131277,131148,-22544604489700504,-22544603248067364],[131277,131209,-22544604489700504,-22544603248067364],[131277,131212,22544603248067364,22544604489700504],[131278,6,-21846710653152227,-21846707699436376],[131278,10,42416007508284513,42416013562366883],[131278,66,-9297000198160808,-9296998651018048],[131278,68,15920798695415380,15920804598057982],[131278,72,4648493659097978,4648505765491449],[131278,78,31841601906990784,31841604679955942],[131278,130,-1975304058435710,-1975300961269370],[131278,132,5925906055094245,5925909004020996],[131278,136,-47064513273775962,-47064507221464861],[131278,142,-22544606644811289,-22544601092956580],[131278,192,11272301159430178,11272302709453758],[131278,204,-9297000814034204,-9296998035144653],[131278,131074,-9297000814034204,-9296998035144653],[131278,131086,11272301159430178,11272302709453758],[131278,131136,-22544606644811289,-22544601092956580],[131278,131142,-47064513273775962,-47064507221464861],[131278,131146,5925906055094245,5925909004020996],[131278,131148,-1975304058435710,-1975300961269370],[131278,131200,31841601906990784,31841604679955942],[131278,131206,4648493659097978,4648505765491449],[131278,131210,15920798695415380,15920804598057982],[131278,131212,-9297000198160808,-9296998651018048],[131278,131268,42416007508284513,42416013562366883],[131278,131272,-21846710653152227,-21846707699436376],[131328,10,4648498045480103,4648501379109328],[131328,66,4648497899071108,4648501525518317],[131328,72,6623797717533688,6623806726760819],[131328,75,-13247605033203059,-13247603855385956],[131328,78,1975301917270118,1975303102434961],[131328,136,-11272305272819252,-11272298596064681],[131328,192,-8599108332258679,-8599101131740910],[131328,202,-22544606473695306,-22544601264072564],[131328,204,1975301917236486,1975303102468593],[131328,586,1975301892192548,1975303127512529],[131328,712,22544603251852693,22544604485915178],[131328,1032,1975300413869816,1975304605835260],[131328,1098,1975301889643525,1975303130061553],[131328,1152,3950601587495984,3950608451914177],[131328,1162,1975301889643525,1975303130061553],[131328,1164,22544603307191776,22544604430576096],[131328,1224,18593996442899990,18594001255457720],[131328,1672,-13247605061713792,-13247603826875223],[131328,3208,-13247605060886466,-13247603827702546],[131328,32842,4648499087034444,4648500337554984],[131328,32968,-13247605066155522,-13247603822433492],[131328,33928,1975301917236486,1975303102468593],[131328,131338,4648498045480103,4648501379109328],[131328,131394,4648497899071108,4648501525518317],[131328,131400,6623797717533688,6623806726760819],[131328,131403,-13247605033203059,-13247603855385956],[131328,131406,1975301917270118,1975303102434961],[131328,131464,-11272305272819252,-11272298596064681],[131328,131520,-8599108332258679,-8599101131740910],[131328,131530,-22544606473695306,-22544601264072564],[131328,131532,1975301917236486,1975303102468593],[131328,131914,1975301892192548,1975303127512529],[131328,132040,22544603251852693,22544604485915178],[131328,132360,1975300413869816,1975304605835260],[131328,132426,1975301889643525,1975303130061553],[131328,132480,3950601587495984,3950608451914177],[131328,132490,1975301889643525,1975303130061553],[131328,132492,22544603307191776,22544604430576096],[131328,132552,18593996442899990,18594001255457720],[131328,133000,-13247605061713792,-13247603826875223],[131328,134536,-13247605060886466,-13247603827702546],[131328,164170,4648499087034444,4648500337554984],[131328,164296,-13247605066155522,-13247603822433492],[131328,165256,1975301917236486,1975303102468593],[131328,524352,4648497449753834,4648501974835595],[131328,524362,4648499056652180,4648500367937249],[131328,524416,-8599108077216494,-8599101386783086],[131328,524482,4648499056652180,4648500367937249],[131328,524488,-22544606469793008,-22544601267974862],[131328,524992,1975301885638544,1975303134066536],[131328,525312,3950600812107830,3950609227302328],[131328,525448,49039810287641238,49039815227304660],[131328,525504,-22544606281953756,-22544601455814116],[131328,525952,-13247605067077166,-13247603821511848],[131328,527488,-13247605061713792,-13247603826875223],[131328,557248,4648499087000812,4648500337588616],[131328,558208,1975301917270118,1975303102434961],[131328,655680,4648497449753834,4648501974835595],[131328,655690,4648499056652180,4648500367937249],[131328,655744,-8599108077216494,-8599101386783086],[131328,655810,4648499056652180,4648500367937249],[131328,655816,-22544606469793008,-22544601267974862],[131328,656320,1975301885638544,1975303134066536],[131328,656640,3950600812107830,3950609227302328],[131328,656776,49039810287641238,49039815227304660],[131328,656832,-22544606281953756,-22544601455814116],[131328,657280,-13247605067077166,-13247603821511848],[131328,658816,-13247605061713792,-13247603826875223],[131328,688576,4648499087000812,4648500337588616],[131328,689536,1975301917270118,1975303102434961],[131328,1049600,-13247606122936882,-13247602765652131],[131328,1049736,-13247605066127948,-13247603822461068],[131328,1180928,-13247606122936882,-13247602765652131],[131328,1181064,-13247605066127948,-13247603822461068],[131328,1572864,1975300803621296,1975304216083780],[131328,1573056,1975301917270118,1975303102434961],[131328,1573896,-13247605066127948,-13247603822461068],[131328,1573952,1975301917270118,1975303102434961],[131328,1574016,18593996485739860,18594001212617856],[131328,1574400,1975301885638543,1975303134066535],[131328,1575936,22544603251852693,22544604485915178],[131328,1606656,-13247605033169427,-13247603855419588],[131328,1704192,1975300803621296,1975304216083780],[131328,1704384,1975301917270118,1975303102434961],[131328,1705224,-13247605066127948,-13247603822461068],[131328,1705280,1975301917270118,1975303102434961],[131328,1705344,18593996485739860,18594001212617856],[131328,1705728,1975301885638543,1975303134066535],[131328,1707264,22544603251852693,22544604485915178],[131328,1737984,-13247605033169427,-13247603855419588],[131328,3671040,1975301892192549,1975303127512530],[131328,3802368,1975301892192549,1975303127512530],[131328,67108938,4648499059714221,4648500364875210],[131328,67109064,-13247605096148654,-13247603792440361],[131328,67110024,1975301885638544,1975303134066536],[131328,67240266,4648499059714221,4648500364875210],[131328,67240392,-13247605096148654,-13247603792440361],[131328,67241352,1975301885638544,1975303134066536],[131328,67633344,1975301857911278,1975303161793801],[131328,67634304,22544603248067364,22544604489700504],[131328,67764672,1975301857911278,1975303161793801],[131328,67765632,22544603248067364,22544604489700504],[131328,68682752,-13247605066971786,-13247603821617226],[131328,68814080,-13247605066971786,-13247603821617226],[131328,135791616,1975301891852867,1975303127852212],[131328,135922944,1975301891852867,1975303127852212],[131328,268959936,4648499057538562,4648500367050864],[131328,268960896,1975301889664154,1975303130040923],[131328,269091264,4648499057538562,4648500367050864],[131328,269092224,1975301889664154,1975303130040923],[131328,270009344,-13247605061578886,-13247603827010127],[131328,270140672,-13247605061578886,-13247603827010127],[131331,72,-13247605033203059,-13247603855385956],[131331,329,-6623803271301876,-6623801172992632],[131331,330,-6623803284330947,-6623801159963560],[131331,131145,-6623803284330947,-6623801159963560],[131331,131146,-6623803271301876,-6623801172992632],[131331,131403,-13247605033203059,-13247603855385956],[131334,72,6623801159963560,6623803284330947],[131334,330,6623801159963560,6623803284330947],[131334,131148,6623801159963560,6623803284330947],[131334,131406,6623801159963560,6623803284330947],[131337,75,-6623803284330947,-6623801159963560],[131337,330,6623801159963560,6623803284330947],[131337,131139,6623801159963560,6623803284330947],[131337,131394,-6623803284330947,-6623801159963560],[131338,10,4648498045480103,4648501379109328],[131338,68,-4648500337554984,-4648499087034444],[131338,75,-6623803271301876,-6623801172992632],[131338,192,-4648500367937249,-4648499056652180],[131338,202,-26495210190850288,-26495207586327742],[131338,264,-4648501379109328,-4648498045480103],[131338,326,-4648500337554984,-4648499087034444],[131338,329,6623801172992632,6623803271301876],[131338,450,-17896105464085903,-17896102849092541],[131338,456,39742811546633741,39742815119133304],[131338,586,1975301892192548,1975303127512529],[131338,840,-1975303127512529,-1975301892192548],[131338,1098,1975301889643525,1975303130061553],[131338,1162,1975301889643525,1975303130061553],[131338,1352,-1975303130061553,-1975301889643525],[131338,1410,1975301885638544,1975303134066536],[131338,1416,-3950606107262344,-3950603932147814],[131338,32832,4648499087034444,4648500337554984],[131338,33090,4648499087034444,4648500337554984],[131338,131074,-4648501379109328,-4648498045480103],[131338,131139,6623801172992632,6623803271301876],[131338,131148,-4648500337554984,-4648499087034444],[131338,131266,39742811546633741,39742815119133304],[131338,131272,-17896105464085903,-17896102849092541],[131338,131328,4648498045480103,4648501379109328],[131338,131393,-6623803271301876,-6623801172992632],[131338,131406,-4648500337554984,-4648499087034444],[131338,131520,-26495210190850288,-26495207586327742],[131338,131530,-4648500367937249,-4648499056652180],[131338,131650,-1975303127512529,-1975301892192548],[131338,131904,1975301892192548,1975303127512529],[131338,132162,-1975303130061553,-1975301889643525],[131338,132226,-3950606107262344,-3950603932147814],[131338,132232,1975301885638544,1975303134066536],[131338,132416,1975301889643525,1975303130061553],[131338,132480,1975301889643525,1975303130061553],[131338,163912,4648499087034444,4648500337554984],[131338,164170,4648499087034444,4648500337554984],[131338,524352,4648499056652180,4648500367937249],[131338,524610,4648499056652180,4648500367937249],[131338,655432,4648499056652180,4648500367937249],[131338,655690,4648499056652180,4648500367937249],[131338,67108928,4648499059714221,4648500364875210],[131338,67109186,4648499059714221,4648500364875210],[131338,67240008,4648499059714221,4648500364875210],[131338,67240266,4648499059714221,4648500364875210],[131340,78,1975301917270118,1975303102434961],[131340,204,1975301917236486,1975303102468593],[131340,326,4648499087034444,4648500337554984],[131340,330,-6623803284330947,-6623801159963560],[131340,452,-13247605066155522,-13247603822433492],[131340,456,11272300873839524,11272302995044411],[131340,1164,22544603307191776,22544604430576096],[131340,1412,1975301917236486,1975303102468593],[131340,1416,-24519907391505747,-24519905365967204],[131340,131142,-6623803284330947,-6623801159963560],[131340,131146,4648499087034444,4648500337554984],[131340,131268,11272300873839524,11272302995044411],[131340,131272,-13247605066155522,-13247603822433492],[131340,131394,1975301917270118,1975303102434961],[131340,131520,1975301917236486,1975303102468593],[131340,132228,-24519907391505747,-24519905365967204],[131340,132232,1975301917236486,1975303102468593],[131340,132480,22544603307191776,22544604430576096],[131393,75,-6623803271301876,-6623801172992632],[131393,267,6623801172992632,6623803271301876],[131393,131146,6623801172992632,6623803271301876],[131393,131338,-6623803271301876,-6623801172992632],[131394,66,4648497899071108,4648501525518317],[131394,75,-6623803284330947,-6623801159963560],[131394,78,1975301917270118,1975303102434961],[131394,136,-1975303130061553,-1975301889643525],[131394,202,3950603717154982,3950606322255178],[131394,258,-4648501525518317,-4648497899071108],[131394,267,6623801159963560,6623803284330947],[131394,270,-1975303102434961,-1975301917270118],[131394,394,-26495210655649026,-26495207121529005],[131394,456,20569300121791140,20569302596271653],[131394,520,1975301892192548,1975303127512529],[131394,840,1975301892192548,1975303127512529],[131394,1032,1975301889643525,1975303130061553],[131394,1352,1975301889643525,1975303130061553],[131394,32842,4648499087034444,4648500337554984],[131394,33034,-4648500337554984,-4648499087034444],[131394,131136,-4648501525518317,-4648497899071108],[131394,131145,6623801159963560,6623803284330947],[131394,131148,-1975303102434961,-1975301917270118],[131394,131210,20569300121791140,20569302596271653],[131394,131272,-26495210655649026,-26495207121529005],[131394,131328,4648497899071108,4648501525518317],[131394,131337,-6623803284330947,-6623801159963560],[131394,131340,1975301917270118,1975303102434961],[131394,131464,3950603717154982,3950606322255178],[131394,131530,-1975303130061553,-1975301889643525],[131394,131594,1975301892192548,1975303127512529],[131394,131914,1975301892192548,1975303127512529],[131394,132106,1975301889643525,1975303130061553],[131394,132426,1975301889643525,1975303130061553],[131394,163912,-4648500337554984,-4648499087034444],[131394,164104,4648499087034444,4648500337554984],[131394,524362,4648499056652180,4648500367937249],[131394,524482,4648499056652180,4648500367937249],[131394,524554,-4648500367937249,-4648499056652180],[131394,524674,-6623803346277523,-6623801098016986],[131394,524736,1975301885638544,1975303134066536],[131394,655432,-4648500367937249,-4648499056652180],[131394,655490,1975301885638544,1975303134066536],[131394,655552,-6623803346277523,-6623801098016986],[131394,655624,4648499056652180,4648500367937249],[131394,655744,4648499056652180,4648500367937249],[131394,67108938,4648499059714221,4648500364875210],[131394,67109130,-4648500364875210,-4648499059714221],[131394,67240008,-4648500364875210,-4648499059714221],[131394,67240200,4648499059714221,4648500364875210],[131400,72,6623797717533688,6623806726760819],[131400,264,-6623806726760819,-6623797717533688],[131400,1224,-3950606107262344,-3950603932147814],[131400,1416,3950603932147814,3950606107262344],[131400,131136,-6623806726760819,-6623797717533688],[131400,131328,6623797717533688,6623806726760819],[131400,132288,3950603932147814,3950606107262344],[131400,132480,-3950606107262344,-3950603932147814],[131400,524488,-6623803346277523,-6623801098016986],[131400,524680,6623801098016986,6623803346277523],[131400,655552,6623801098016986,6623803346277523],[131400,655744,-6623803346277523,-6623801098016986],[131403,72,-13247605033203059,-13247603855385956],[131403,75,-13247605033203059,-13247603855385956],[131403,264,13247603855385956,13247605033203059],[131403,267,13247603855385956,13247605033203059],[131403,131136,13247603855385956,13247605033203059],[131403,131139,13247603855385956,13247605033203059],[131403,131328,-13247605033203059,-13247603855385956],[131403,131331,-13247605033203059,-13247603855385956],[131406,68,-4648500337554984,-4648499087034444],[131406,72,6623801159963560,6623803284330947],[131406,78,1975301917270118,1975303102434961],[131406,260,4648499087034444,4648500337554984],[131406,264,-6623803284330947,-6623801159963560],[131406,270,-1975303102434961,-1975301917270118],[131406,131136,-1975303102434961,-1975301917270118],[131406,131142,-6623803284330947,-6623801159963560],[131406,131146,4648499087034444,4648500337554984],[131406,131328,1975301917270118,1975303102434961],[131406,131334,6623801159963560,6623803284330947],[131406,131338,-4648500337554984,-4648499087034444],[131458,72,-6623806726760819,-6623797717533688],[131458,330,31143706348854335,31143710852913125],[131458,456,-37767513075615154,-37767508570446813],[131458,1032,3950603932147814,3950606107262344],[131458,1416,3950603932147814,3950606107262344],[131458,131146,-37767513075615154,-37767508570446813],[131458,131272,31143706348854335,31143710852913125],[131458,131530,-6623806726760819,-6623797717533688],[131458,132106,3950603932147814,3950606107262344],[131458,132490,3950603932147814,3950606107262344],[131458,524352,6623801098016986,6623803346277523],[131458,524610,6623801098016986,6623803346277523],[131458,655552,6623801098016986,6623803346277523],[131458,655810,6623801098016986,6623803346277523],[131460,72,-11272302995044411,-11272300873839524],[131460,456,-11272302995044411,-11272300873839524],[131460,1032,24519905365967204,24519907391505747],[131460,1416,24519905365967204,24519907391505747],[131460,131148,-11272302995044411,-11272300873839524],[131460,131532,-11272302995044411,-11272300873839524],[131460,132108,24519905365967204,24519907391505747],[131460,132492,24519905365967204,24519907391505747],[131464,66,13247603792440361,13247605096148654],[131464,68,13247603822433492,13247605066155522],[131464,136,-11272305272819252,-11272298596064681],[131464,202,3950603717154982,3950606322255178],[131464,264,11272298596064681,11272305272819252],[131464,330,-8599106519519277,-8599102944480312],[131464,450,17896102849092541,17896105464085903],[131464,452,13247603822433492,13247605066155522],[131464,712,22544603251852693,22544604485915178],[131464,840,-22544604485915178,-22544603251852693],[131464,1026,-1975303134066536,-1975301885638544],[131464,1028,-1975303102468593,-1975301917236486],[131464,1224,11272298596064681,11272305272819252],[131464,1352,-11272305272819252,-11272298596064681],[131464,1410,-1975303134066536,-1975301885638544],[131464,1412,-1975303102468593,-1975301917236486],[131464,1672,-13247605061713792,-13247603826875223],[131464,1800,13247603826875223,13247605061713792],[131464,3208,-13247605060886466,-13247603827702546],[131464,3336,13247603827702546,13247605060886466],[131464,32832,-13247605066155522,-13247603822433492],[131464,33216,-13247605066155522,-13247603822433492],[131464,33792,1975301917236486,1975303102468593],[131464,34176,1975301917236486,1975303102468593],[131464,131146,17896102849092541,17896105464085903],[131464,131148,13247603822433492,13247605066155522],[131464,131200,11272298596064681,11272305272819252],[131464,131266,-8599106519519277,-8599102944480312],[131464,131328,-11272305272819252,-11272298596064681],[131464,131394,3950603717154982,3950606322255178],[131464,131530,13247603792440361,13247605096148654],[131464,131532,13247603822433492,13247605066155522],[131464,131776,-22544604485915178,-22544603251852693],[131464,131904,22544603251852693,22544604485915178],[131464,132106,-1975303134066536,-1975301885638544],[131464,132108,-1975303102468593,-1975301917236486],[131464,132288,-11272305272819252,-11272298596064681],[131464,132416,11272298596064681,11272305272819252],[131464,132490,-1975303134066536,-1975301885638544],[131464,132492,-1975303102468593,-1975301917236486],[131464,132736,13247603826875223,13247605061713792],[131464,132864,-13247605061713792,-13247603826875223],[131464,134272,13247603827702546,13247605060886466],[131464,134400,-13247605060886466,-13247603827702546],[131464,163912,-13247605066155522,-13247603822433492],[131464,164296,-13247605066155522,-13247603822433492],[131464,164872,1975301917236486,1975303102468593],[131464,165256,1975301917236486,1975303102468593],[131464,524352,-26495210186613570,-26495207590564460],[131464,524488,-24519907512775874,-24519905244697076],[131464,524616,17896101898419553,17896106414758888],[131464,524736,-19871408457827235,-19871404875056286],[131464,525312,3950603783705734,3950606255704424],[131464,525448,26495207784975390,26495209992202640],[131464,525576,-2193017775,2193017774],[131464,525696,-22544605576438951,-22544602161328920],[131464,655432,-19871408457827235,-19871404875056286],[131464,655552,17896101898419553,17896106414758888],[131464,655680,-24519907512775874,-24519905244697076],[131464,655816,-26495210186613570,-26495207590564460],[131464,656392,-22544605576438951,-22544602161328920],[131464,656512,-2193017775,2193017774],[131464,656640,26495207784975390,26495209992202640],[131464,656776,3950603783705734,3950606255704424],[131464,1049736,-13247605066127948,-13247603822461068],[131464,1049864,13247603822461068,13247605066127948],[131464,1180800,13247603822461068,13247605066127948],[131464,1180928,-13247605066127948,-13247603822461068],[131464,67108928,-13247605096148654,-13247603792440361],[131464,67109312,-13247605096148654,-13247603792440361],[131464,67109888,1975301885638544,1975303134066536],[131464,67110272,1975301885638544,1975303134066536],[131464,67240008,-13247605096148654,-13247603792440361],[131464,67240392,-13247605096148654,-13247603792440361],[131464,67240968,1975301885638544,1975303134066536],[131464,67241352,1975301885638544,1975303134066536],[131520,10,-22544604485915178,-22544603251852693],[131520,192,-8599108332258679,-8599101131740910],[131520,202,-26495210190850288,-26495207586327742],[131520,204,1975301917236486,1975303102468593],[131520,330,-20569302596271653,-20569300121791140],[131520,384,8599101131740910,8599108332258679],[131520,394,24519904610140814,24519908147332138],[131520,396,-1975303102468593,-1975301917236486],[131520,520,22544603251852693,22544604485915178],[131520,840,22544603251852693,22544604485915178],[131520,1032,45089206509306108,45089208966229632],[131520,1224,11272300873839524,11272302995044411],[131520,1352,49039811053725950,49039814461219948],[131520,1416,-15222909102306755,-15222904805987338],[131520,32968,-13247605066155522,-13247603822433492],[131520,33160,13247603822433492,13247605066155522],[131520,131136,8599101131740910,8599108332258679],[131520,131146,24519904610140814,24519908147332138],[131520,131148,-1975303102468593,-1975301917236486],[131520,131210,-20569302596271653,-20569300121791140],[131520,131328,-8599108332258679,-8599101131740910],[131520,131338,-26495210190850288,-26495207586327742],[131520,131340,1975301917236486,1975303102468593],[131520,131530,-22544604485915178,-22544603251852693],[131520,131720,22544603251852693,22544604485915178],[131520,132040,22544603251852693,22544604485915178],[131520,132168,-15222909102306755,-15222904805987338],[131520,132232,49039811053725950,49039814461219948],[131520,132360,11272300873839524,11272302995044411],[131520,132552,45089206509306108,45089208966229632],[131520,163912,13247603822433492,13247605066155522],[131520,164104,-13247605066155522,-13247603822433492],[131520,524290,-1975303134066536,-1975301885638544],[131520,524488,8599101131740910,8599108332258679],[131520,524610,-1975303134066536,-1975301885638544],[131520,524680,-8599108332258679,-8599101131740910],[131520,524800,1975301885638544,1975303134066536],[131520,525120,1975301885638544,1975303134066536],[131520,525312,3950603784385098,3950606255025060],[131520,525504,-6623803284297315,-6623801159997192],[131520,525632,28470509691254389,28470513105628714],[131520,525696,-17896106304406015,-17896102008772423],[131520,557248,4648499087000812,4648500337588616],[131520,557440,-4648500337588616,-4648499087000812],[131520,655432,-8599108332258679,-8599101131740910],[131520,655490,-1975303134066536,-1975301885638544],[131520,655624,8599101131740910,8599108332258679],[131520,655810,-1975303134066536,-1975301885638544],[131520,656000,1975301885638544,1975303134066536],[131520,656320,1975301885638544,1975303134066536],[131520,656448,-17896106304406015,-17896102008772423],[131520,656512,28470509691254389,28470513105628714],[131520,656640,-6623803284297315,-6623801159997192],[131520,656832,3950603784385098,3950606255025060],[131520,688192,-4648500337588616,-4648499087000812],[131520,688384,4648499087000812,4648500337588616],[131520,1573056,1975301917270118,1975303102434961],[131520,1573248,-1975303102434961,-1975301917270118],[131520,1704000,-1975303102434961,-1975301917270118],[131520,1704192,1975301917270118,1975303102434961],[131520,67109064,-13247605096148654,-13247603792440361],[131520,67109256,13247603792440361,13247605096148654],[131520,67240008,13247603792440361,13247605096148654],[131520,67240200,-13247605096148654,-13247603792440361],[131520,67633344,1975301857911278,1975303161793801],[131520,67633536,-1975303161793801,-1975301857911278],[131520,67764288,-1975303161793801,-1975301857911278],[131520,67764480,1975301857911278,1975303161793801],[131520,268959936,4648499057538562,4648500367050864],[131520,268960128,-4648500367050864,-4648499057538562],[131520,269090880,-4648500367050864,-4648499057538562],[131520,269091072,4648499057538562,4648500367050864],[131530,10,-22544604485915178,-22544603251852693],[131530,66,13247603792440361,13247605096148654],[131530,72,-6623806726760819,-6623797717533688],[131530,136,-1975303130061553,-1975301889643525],[131530,192,-4648500367937249,-4648499056652180],[131530,202,-22544606473695306,-22544601264072564],[131530,258,-13247605096148654,-13247603792440361],[131530,264,31143705027114464,31143712174652992],[131530,330,1975301889643525,1975303130061553],[131530,384,4648499056652180,4648500367937249],[131530,394,-1975306045508212,-1975298974196867],[131530,456,22544603251852693,22544604485915178],[131530,131074,22544603251852693,22544604485915178],[131530,131136,-1975306045508212,-1975298974196867],[131530,131146,4648499056652180,4648500367937249],[131530,131200,1975301889643525,1975303130061553],[131530,131266,31143705027114464,31143712174652992],[131530,131272,-13247605096148654,-13247603792440361],[131530,131328,-22544606473695306,-22544601264072564],[131530,131338,-4648500367937249,-4648499056652180],[131530,131394,-1975303130061553,-1975301889643525],[131530,131458,-6623806726760819,-6623797717533688],[131530,131464,13247603792440361,13247605096148654],[131530,131520,-22544604485915178,-22544603251852693],[131532,68,13247603822433492,13247605066155522],[131532,72,-11272302995044411,-11272300873839524],[131532,204,1975301917236486,1975303102468593],[131532,260,-13247605066155522,-13247603822433492],[131532,264,11272300873839524,11272302995044411],[131532,396,-1975303102468593,-1975301917236486],[131532,131136,-1975303102468593,-1975301917236486],[131532,131268,11272300873839524,11272302995044411],[131532,131272,-13247605066155522,-13247603822433492],[131532,131328,1975301917236486,1975303102468593],[131532,131460,-11272302995044411,-11272300873839524],[131532,131464,13247603822433492,13247605066155522],[131584,330,-1975303127512529,-1975301892192548],[131584,456,-22544604485915178,-22544603251852693],[131584,1416,13247603826875223,13247605061713792],[131584,3208,13247603827702546,13247605060886466],[131584,131914,-1975303127512529,-1975301892192548],[131584,132040,-22544604485915178,-22544603251852693],[131584,133000,13247603826875223,13247605061713792],[131584,134792,13247603827702546,13247605060886466],[131584,524736,-1975303134066536,-1975301885638544],[131584,525696,13247603821511848,13247605067077166],[131584,527488,13247603826875223,13247605061713792],[131584,656320,-1975303134066536,-1975301885638544],[131584,657280,13247603821511848,13247605067077166],[131584,659072,13247603826875223,13247605061713792],[131584,1574144,-1975303134066535,-1975301885638543],[131584,1575936,-22544604485915178,-22544603251852693],[131584,1705728,-1975303134066535,-1975301885638543],[131584,1707520,-22544604485915178,-22544603251852693],[131584,3672064,-1975303127512530,-1975301892192549],[131584,3803648,-1975303127512530,-1975301892192549],[131594,330,-1975303127512529,-1975301892192548],[131594,840,1975301892192548,1975303127512529],[131594,131394,1975301892192548,1975303127512529],[131594,131904,-1975303127512529,-1975301892192548],[131650,264,-1975303127512529,-1975301892192548],[131650,840,-1975303127512529,-1975301892192548],[131650,131338,-1975303127512529,-1975301892192548],[131650,131914,-1975303127512529,-1975301892192548],[131720,456,-22544604485915178,-22544603251852693],[131720,840,22544603251852693,22544604485915178],[131720,1416,13247603826875223,13247605061713792],[131720,1800,-13247605061713792,-13247603826875223],[131720,3208,13247603827702546,13247605060886466],[131720,3592,-13247605060886466,-13247603827702546],[131720,131520,22544603251852693,22544604485915178],[131720,131904,-22544604485915178,-22544603251852693],[131720,132480,-13247605061713792,-13247603826875223],[131720,132864,13247603826875223,13247605061713792],[131720,134272,-13247605060886466,-13247603827702546],[131720,134656,13247603827702546,13247605060886466],[131776,264,-22544604485915178,-22544603251852693],[131776,840,-22544604485915178,-22544603251852693],[131776,131464,-22544604485915178,-22544603251852693],[131776,132040,-22544604485915178,-22544603251852693],[131776,524544,-1975303134066536,-1975301885638544],[131776,525120,-1975303134066536,-1975301885638544],[131776,655744,-1975303134066536,-1975301885638544],[131776,656320,-1975303134066536,-1975301885638544],[131904,330,-1975303127512529,-1975301892192548],[131904,456,-22544604485915178,-22544603251852693],[131904,586,1975301892192548,1975303127512529],[131904,712,22544603251852693,22544604485915178],[131904,131338,1975301892192548,1975303127512529],[131904,131464,22544603251852693,22544604485915178],[131904,131594,-1975303127512529,-1975301892192548],[131904,131720,-22544604485915178,-22544603251852693],[131904,524736,-1975303134066536,-1975301885638544],[131904,524992,1975301885638544,1975303134066536],[131904,655744,1975301885638544,1975303134066536],[131904,656000,-1975303134066536,-1975301885638544],[131914,264,-1975303127512529,-1975301892192548],[131914,330,-1975303127512529,-1975301892192548],[131914,520,1975301892192548,1975303127512529],[131914,586,1975301892192548,1975303127512529],[131914,131328,1975301892192548,1975303127512529],[131914,131394,1975301892192548,1975303127512529],[131914,131584,-1975303127512529,-1975301892192548],[131914,131650,-1975303127512529,-1975301892192548],[132040,264,-22544604485915178,-22544603251852693],[132040,456,-22544604485915178,-22544603251852693],[132040,520,22544603251852693,22544604485915178],[132040,712,22544603251852693,22544604485915178],[132040,131328,22544603251852693,22544604485915178],[132040,131520,22544603251852693,22544604485915178],[132040,131584,-22544604485915178,-22544603251852693],[132040,131776,-22544604485915178,-22544603251852693],[132096,0,-1395798588612732,-1395780181745792],[132096,10,4648498045480100,4648501379109325],[132096,12,-13247605973043456,-13247602915545560],[132096,72,-1975305275431532,-1975299744273546],[132096,130,-4648502626375994,-4648496798213434],[132096,132,15920799005382849,15920804288090516],[132096,136,60039999943769960,60040045266389211],[132096,142,11272301204090824,11272302664793112],[132096,192,6623798624404334,6623805819890177],[132096,202,26495207586327742,26495210190850288],[132096,204,-1975303102468593,-1975301917236486],[132096,264,-1975304605835260,-1975300413869816],[132096,330,-1975303130061553,-1975301889643525],[132096,384,-3950608451914177,-3950601587495984],[132096,394,-1975303130061553,-1975301889643525],[132096,396,-22544604430576096,-22544603307191776],[132096,456,-45089208966229632,-45089206509306108],[132096,2056,-1975304632453679,-1975300387251397],[132096,2176,-3950608254927041,-3950601784483124],[132096,2186,-1975303127512529,-1975301892192548],[132096,2188,-22544604432275006,-22544603305492866],[132096,2248,-22544604485915178,-22544603251852693],[132096,2440,26495207805375563,26495209971802464],[132096,32776,-4648501315670959,-4648498108918473],[132096,32896,-9297003724271436,-9296995124907418],[132096,32906,-4648500337554984,-4648499087034444],[132096,32908,26495207753551168,26495210023626872],[132096,32968,13247603822433492,13247605066155522],[132096,33160,-1975303102468593,-1975301917236486],[132096,34952,-1975303104304567,-1975301915400511],[132096,132096,-1395798588612732,-1395780181745792],[132096,132106,4648498045480100,4648501379109325],[132096,132108,-13247605973043456,-13247602915545560],[132096,132168,-1975305275431532,-1975299744273546],[132096,132226,-4648502626375994,-4648496798213434],[132096,132228,15920799005382849,15920804288090516],[132096,132232,60039999943769960,60040045266389211],[132096,132238,11272301204090824,11272302664793112],[132096,132288,6623798624404334,6623805819890177],[132096,132298,26495207586327742,26495210190850288],[132096,132300,-1975303102468593,-1975301917236486],[132096,132360,-1975304605835260,-1975300413869816],[132096,132426,-1975303130061553,-1975301889643525],[132096,132480,-3950608451914177,-3950601587495984],[132096,132490,-1975303130061553,-1975301889643525],[132096,132492,-22544604430576096,-22544603307191776],[132096,132552,-45089208966229632,-45089206509306108],[132096,134152,-1975304632453679,-1975300387251397],[132096,134272,-3950608254927041,-3950601784483124],[132096,134282,-1975303127512529,-1975301892192548],[132096,134284,-22544604432275006,-22544603305492866],[132096,134344,-22544604485915178,-22544603251852693],[132096,134536,26495207805375563,26495209971802464],[132096,164872,-4648501315670959,-4648498108918473],[132096,164992,-9297003724271436,-9296995124907418],[132096,165002,-4648500337554984,-4648499087034444],[132096,165004,26495207753551168,26495210023626872],[132096,165064,13247603822433492,13247605066155522],[132096,165256,-1975303102468593,-1975301917236486],[132096,167048,-1975303104304567,-1975301915400511],[132096,524296,-9709549903,9709549901],[132096,524352,-4648502481944947,-4648496942644475],[132096,524416,272001667572402980,272001719855180396],[132096,524426,8599103418984813,8599106045014772],[132096,524428,11272300739639564,11272303129244369],[132096,524488,15920798685149414,15920804608323947],[132096,524544,-3950609227302328,-3950600812107830],[132096,524680,-49039815227304660,-49039810287641238],[132096,524736,-3950606255025060,-3950603784385098],[132096,526336,-3950609278673694,-3950600760736484],[132096,526472,-49039815256755116,-49039810258190782],[132096,526528,-1975303134066536,-1975301885638544],[132096,526720,26495207799184865,26495209977993164],[132096,557056,8599101715170092,8599107748829489],[132096,557192,13247601033521515,13247607855067498],[132096,557248,-4648500337588616,-4648499087000812],[132096,557440,-1975303102434961,-1975301917270118],[132096,559232,-1975303106832961,-1975301912872117],[132096,656392,-9709549903,9709549901],[132096,656448,-4648502481944947,-4648496942644475],[132096,656512,272001667572402980,272001719855180396],[132096,656522,8599103418984813,8599106045014772],[132096,656524,11272300739639564,11272303129244369],[132096,656584,15920798685149414,15920804608323947],[132096,656640,-3950609227302328,-3950600812107830],[132096,656776,-49039815227304660,-49039810287641238],[132096,656832,-3950606255025060,-3950603784385098],[132096,658432,-3950609278673694,-3950600760736484],[132096,658568,-49039815256755116,-49039810258190782],[132096,658624,-1975303134066536,-1975301885638544],[132096,658816,26495207799184865,26495209977993164],[132096,689152,8599101715170092,8599107748829489],[132096,689288,13247601033521515,13247607855067498],[132096,689344,-4648500337588616,-4648499087000812],[132096,689536,-1975303102434961,-1975301917270118],[132096,691328,-1975303106832961,-1975301912872117],[132096,1048584,-3950609314173172,-3950600725236988],[132096,1048704,23242489006570695,23242508116376415],[132096,1048714,-1975303142599947,-1975301877105131],[132096,1048716,-22544604444342592,-22544603293425280],[132096,1048776,-22544604497985104,-22544603239782766],[132096,1048832,13247602765652131,13247606122936882],[132096,1048968,26495207784975390,26495209992202640],[132096,1050624,13247602731588215,13247606157000801],[132096,1050760,26495207776804167,26495210000373866],[132096,1081344,-1975304506421476,-1975300513283600],[132096,1081480,-1975303111382023,-1975301908323058],[132096,1180680,-3950609314173172,-3950600725236988],[132096,1180800,23242489006570695,23242508116376415],[132096,1180810,-1975303142599947,-1975301877105131],[132096,1180812,-22544604444342592,-22544603293425280],[132096,1180872,-22544604497985104,-22544603239782766],[132096,1180928,13247602765652131,13247606122936882],[132096,1181064,26495207784975390,26495209992202640],[132096,1182720,13247602731588215,13247606157000801],[132096,1182856,26495207776804167,26495210000373866],[132096,1213440,-1975304506421476,-1975300513283600],[132096,1213576,-1975303111382023,-1975301908323058],[132096,1572864,-311472436788867910,-311472393130811843],[132096,1573000,-69609119710487749,-69609108522520937],[132096,1573056,-3950606237024947,-3950603802385214],[132096,1573128,13247603822461068,13247605066127948],[132096,1573248,-7321700200255013,-7321693629218766],[132096,1574920,13247603817961795,13247605070627222],[132096,1575040,-7321700242729086,-7321693586744675],[132096,1575168,-24519907464643493,-24519905292829456],[132096,1605640,-24519907414185673,-24519905343287280],[132096,1605760,22544601541194970,22544606196572912],[132096,1605888,13247603855419588,13247605033169427],[132096,1607680,13247603851021587,13247605037567427],[132096,1704960,-311472436788867910,-311472393130811843],[132096,1705096,-69609119710487749,-69609108522520937],[132096,1705152,-3950606237024947,-3950603802385214],[132096,1705224,13247603822461068,13247605066127948],[132096,1705344,-7321700200255013,-7321693629218766],[132096,1707016,13247603817961795,13247605070627222],[132096,1707136,-7321700242729086,-7321693586744675],[132096,1707264,-24519907464643493,-24519905292829456],[132096,1737736,-24519907414185673,-24519905343287280],[132096,1737856,22544601541194970,22544606196572912],[132096,1737984,13247603855419588,13247605033169427],[132096,1739776,13247603851021587,13247605037567427],[132096,2621440,-1975305338051185,-1975299681653896],[132096,2753536,-1975305338051185,-1975299681653896],[132096,3145728,17198207762730769,17198211165268399],[132096,3277824,17198207762730769,17198211165268399],[132096,3670024,13247603808044578,13247605080544438],[132096,3670144,11272300713657228,11272303155226711],[132096,3670272,-1975303127512530,-1975301892192549],[132096,3672064,-3950606276156332,-3950603763253824],[132096,3702784,13247603851851071,13247605036737943],[132096,3802120,13247603808044578,13247605080544438],[132096,3802240,11272300713657228,11272303155226711],[132096,3802368,-1975303127512530,-1975301892192549],[132096,3804160,-3950606276156332,-3950603763253824],[132096,3834880,13247603851851071,13247605036737943],[132096,67108872,-4648501379109327,-4648498045480102],[132096,67108992,-6623806745939431,-6623797698355075],[132096,67109002,-4648500364875210,-4648499059714221],[132096,67109004,13247603855419588,13247605033169427],[132096,67109064,13247603792440361,13247605096148654],[132096,67109256,-1975303134066536,-1975301885638544],[132096,67111048,-1975303127512530,-1975301892192549],[132096,67141768,-6623803284297315,-6623801159997192],[132096,67240968,-4648501379109327,-4648498045480102],[132096,67241088,-6623806745939431,-6623797698355075],[132096,67241098,-4648500364875210,-4648499059714221],[132096,67241100,13247603855419588,13247605033169427],[132096,67241160,13247603792440361,13247605096148654],[132096,67241352,-1975303134066536,-1975301885638544],[132096,67243144,-1975303127512530,-1975301892192549],[132096,67273864,-6623803284297315,-6623801159997192],[132096,67633152,11272298579605019,11272305289278916],[132096,67633288,31143705012464284,31143712189303175],[132096,67633344,-1975303161793801,-1975301857911278],[132096,67633536,-22544604489700504,-22544603248067364],[132096,67635328,-22544604485915178,-22544603251852693],[132096,67666048,11272300873839524,11272302995044411],[132096,67765248,11272298579605019,11272305289278916],[132096,67765384,31143705012464284,31143712189303175],[132096,67765440,-1975303161793801,-1975301857911278],[132096,67765632,-22544604489700504,-22544603248067364],[132096,67767424,-22544604485915178,-22544603251852693],[132096,67798144,11272300873839524,11272302995044411],[132096,68157440,-1975304605835260,-1975300413869816],[132096,68157576,-1975303134589986,-1975301885115096],[132096,68289536,-1975304605835260,-1975300413869816],[132096,68289672,-1975303134589986,-1975301885115096],[132096,68681736,-3950606120324188,-3950603919085972],[132096,68681856,-18594001258855540,-18593996439502170],[132096,68681984,13247603821617226,13247605066971786],[132096,68683776,13247603826875223,13247605061713792],[132096,68714496,-24519907391505747,-24519905365967204],[132096,68813832,-3950606120324188,-3950603919085972],[132096,68813952,-18594001258855540,-18593996439502170],[132096,68814080,13247603821617226,13247605066971786],[132096,68815872,13247603826875223,13247605061713792],[132096,68846592,-24519907391505747,-24519905365967204],[132096,70778880,13247603827702546,13247605060886466],[132096,70910976,13247603827702546,13247605060886466],[132096,134742016,-1975305295212454,-1975299724492630],[132096,134874112,-1975305295212454,-1975299724492630],[132096,135266304,17198207785357210,17198211142641961],[132096,135398400,17198207785357210,17198211142641961],[132096,135790600,13247603811716528,13247605076872486],[132096,135790720,11272300719992475,11272303148891462],[132096,135790848,-1975303127852212,-1975301891852867],[132096,135792640,-1975303134066536,-1975301885638544],[132096,135823360,13247603855385956,13247605033203059],[132096,135922696,13247603811716528,13247605076872486],[132096,135922816,11272300719992475,11272303148891462],[132096,135922944,-1975303127852212,-1975301891852867],[132096,135924736,-1975303134066536,-1975301885638544],[132096,135955456,13247603855385956,13247605033203059],[132096,137887744,-24519907156493899,-24519905600979049],[132096,138019840,-24519907156493899,-24519905600979049],[132096,202899456,13247603826989498,13247605061599516],[132096,203031552,13247603826989498,13247605061599516],[132096,268435584,-4648502614033929,-4648496810555499],[132096,268567680,-4648502614033929,-4648496810555499],[132096,268959744,1277404455586225,1277411178939584],[132096,268959880,-6623803535249348,-6623800909045159],[132096,268959936,-4648500367050864,-4648499057538562],[132096,268960128,-1975303130040923,-1975301889664154],[132096,268961920,-1975303134066535,-1975301885638543],[132096,268992640,-4648500337554984,-4648499087034444],[132096,269091840,1277404455586225,1277411178939584],[132096,269091976,-6623803535249348,-6623800909045159],[132096,269092032,-4648500367050864,-4648499057538562],[132096,269092224,-1975303130040923,-1975301889664154],[132096,269094016,-1975303134066535,-1975301885638543],[132096,269124736,-4648500337554984,-4648499087034444],[132096,269484032,-1975305281057239,-1975299738647843],[132096,269616128,-1975305281057239,-1975299738647843],[132096,270008328,-22544604497985104,-22544603239782766],[132096,270008448,18593996124609637,18594001573748076],[132096,270008576,13247603827010127,13247605061578886],[132096,270010368,13247603821511848,13247605067077166],[132096,270041088,-1975303102434961,-1975301917270118],[132096,270140424,-22544604497985104,-22544603239782766],[132096,270140544,18593996124609637,18594001573748076],[132096,270140672,13247603827010127,13247605061578886],[132096,270142464,13247603821511848,13247605067077166],[132096,270173184,-1975303102434961,-1975301917270118],[132096,272105472,13247603826875223,13247605061713792],[132096,272237568,13247603826875223,13247605061713792],[132096,336068736,-3950606317756372,-3950603721653790],[132096,336200832,-3950606317756372,-3950603721653790],[132096,337117184,-45089208967216020,-45089206508319720],[132096,337249280,-45089208967216020,-45089206508319720],[132096,404226048,26495207655679218,26495210121498808],[132096,404358144,26495207655679218,26495210121498808],[132096,470810624,13247603826989498,13247605061599516],[132096,470942720,13247603826989498,13247605061599516],[132099,1161,-6623803284330947,-6623801159963560],[132099,1162,6623801159963560,6623803284330947],[132099,131209,6623801159963560,6623803284330947],[132099,131210,-6623803284330947,-6623801159963560],[132101,1161,26495207861603338,26495209915574692],[132101,1164,-26495209915574692,-26495207861603338],[132101,131209,-26495209915574692,-26495207861603338],[132101,131212,26495207861603338,26495209915574692],[132102,136,13247602666336360,13247606222252656],[132102,142,-6623803284297315,-6623801159997192],[132102,1162,-6623803284330947,-6623801159963560],[132102,1164,26495207861603338,26495209915574692],[132102,131210,26495207861603338,26495209915574692],[132102,131212,-6623803284330947,-6623801159963560],[132102,132232,-6623803284297315,-6623801159997192],[132102,132238,13247602666336360,13247606222252656],[132105,130,4648499087000812,4648500337588616],[132105,132,1975301917270118,1975303102434961],[132105,139,11272300873839524,11272302995044411],[132105,141,-24519907391505747,-24519905365967204],[132105,1162,-6623803284330947,-6623801159963560],[132105,1164,26495207861603338,26495209915574692],[132105,131203,-6623803284330947,-6623801159963560],[132105,131205,26495207861603338,26495209915574692],[132105,132226,11272300873839524,11272302995044411],[132105,132228,-24519907391505747,-24519905365967204],[132105,132235,4648499087000812,4648500337588616],[132105,132237,1975301917270118,1975303102434961],[132106,0,18593997925454304,18593999772903408],[132106,10,4648498045480100,4648501379109325],[132106,129,-4648500337588616,-4648499087000812],[132106,132,9296998645184146,9297000203994710],[132106,139,-11272302995044411,-11272300873839524],[132106,142,17896103248910824,17896105064267619],[132106,192,-4648500367937248,-4648499056652179],[132106,202,3950601491169156,3950608548241002],[132106,330,-1975303130061553,-1975301889643525],[132106,394,-1975303130061553,-1975301889643525],[132106,1026,4648498045480101,4648501379109326],[132106,1032,9296996568177046,9297002281001814],[132106,1158,17896103248910824,17896105064267619],[132106,1161,6623801159963560,6623803284330947],[132106,1164,-26495209915574692,-26495207861603338],[132106,1218,13247603792440361,13247605096148654],[132106,1224,-21846713211925840,-21846705140662760],[132106,1352,1975301889643525,1975303130061553],[132106,1410,-1975303134066536,-1975301885638544],[132106,1416,3950603932147814,3950606107262344],[132106,2186,-1975303127512529,-1975301892192548],[132106,3202,-1975303127512530,-1975301892192549],[132106,3208,3950603941250842,3950606098159314],[132106,32896,-4648500337554984,-4648499087034444],[132106,33922,-11272302995044411,-11272300873839524],[132106,33928,6623801159997192,6623803284297315],[132106,131074,9296996568177046,9297002281001814],[132106,131080,4648498045480101,4648501379109326],[132106,131203,6623801159963560,6623803284330947],[132106,131206,-26495209915574692,-26495207861603338],[132106,131212,17896103248910824,17896105064267619],[132106,131266,-21846713211925840,-21846705140662760],[132106,131272,13247603792440361,13247605096148654],[132106,131394,1975301889643525,1975303130061553],[132106,131458,3950603932147814,3950606107262344],[132106,131464,-1975303134066536,-1975301885638544],[132106,132096,4648498045480100,4648501379109325],[132106,132106,18593997925454304,18593999772903408],[132106,132225,-11272302995044411,-11272300873839524],[132106,132228,17896103248910824,17896105064267619],[132106,132235,-4648500337588616,-4648499087000812],[132106,132238,9296998645184146,9297000203994710],[132106,132288,3950601491169156,3950608548241002],[132106,132298,-4648500367937248,-4648499056652179],[132106,132416,-1975303130061553,-1975301889643525],[132106,132480,-1975303130061553,-1975301889643525],[132106,133250,3950603941250842,3950606098159314],[132106,133256,-1975303127512530,-1975301892192549],[132106,134272,-1975303127512529,-1975301892192548],[132106,163970,6623801159997192,6623803284297315],[132106,163976,-11272302995044411,-11272300873839524],[132106,165002,-4648500337554984,-4648499087034444],[132106,524416,-4648500367937249,-4648499056652180],[132106,524426,13247603786922062,13247605101666952],[132106,525442,3950601481951714,3950608557458446],[132106,525448,-21846713226576023,-21846705126012580],[132106,655490,-21846713226576023,-21846705126012580],[132106,655496,3950601481951714,3950608557458446],[132106,656512,13247603786922062,13247605101666952],[132106,656522,-4648500367937249,-4648499056652180],[132106,1048714,-1975303142599947,-1975301877105131],[132106,1049730,-1975303134589986,-1975301885115096],[132106,1049736,3950603919085972,3950606120324188],[132106,1179778,3950603919085972,3950606120324188],[132106,1179784,-1975303134589986,-1975301885115096],[132106,1180800,-1975303142599947,-1975301877105131],[132106,1573890,-1975303134589986,-1975301885115096],[132106,1573896,1975301885115096,1975303134589986],[132106,1703938,1975301885115096,1975303134589986],[132106,1703944,-1975303134589986,-1975301885115096],[132106,67108992,-4648500364875210,-4648499059714221],[132106,67110018,-11272303056635485,-11272300812248450],[132106,67110024,6623801079994226,6623803364300278],[132106,67240066,6623801079994226,6623803364300278],[132106,67240072,-11272303056635485,-11272300812248450],[132106,67241098,-4648500364875210,-4648499059714221],[132108,0,-22544604716605376,-22544603021162496],[132108,12,-13247605973043456,-13247602915545560],[132108,129,-1975303102434961,-1975301917270118],[132108,130,-11272302664826744,-11272301204057192],[132108,141,24519905365967204,24519907391505747],[132108,142,-873779583,873779583],[132108,204,-1975303102468593,-1975301917236486],[132108,396,-22544604430576096,-22544603307191776],[132108,1028,-15920803246405425,-15920800047067943],[132108,1032,6623799524173159,6623804920121353],[132108,1158,-17896105064267619,-17896103248910824],[132108,1161,-26495209915574692,-26495207861603338],[132108,1162,6623801159963560,6623803284330947],[132108,1220,13247603822433492,13247605066155522],[132108,1224,-11272302995044411,-11272300873839524],[132108,1412,-1975303102468593,-1975301917236486],[132108,1416,24519905365967204,24519907391505747],[132108,2188,-22544604432275006,-22544603305492866],[132108,3204,-1975303104304567,-1975301915400511],[132108,3208,24519905362432319,24519907395040631],[132108,32896,22544601541194970,22544606196572912],[132108,32908,24519905343287280,24519907414185673],[132108,33924,6623801213223040,6623803231071470],[132108,33928,-8599107748829489,-8599101715170092],[132108,131076,6623799524173159,6623804920121353],[132108,131080,-15920803246405425,-15920800047067943],[132108,131205,-26495209915574692,-26495207861603338],[132108,131206,6623801159963560,6623803284330947],[132108,131210,-17896105064267619,-17896103248910824],[132108,131268,-11272302995044411,-11272300873839524],[132108,131272,13247603822433492,13247605066155522],[132108,131460,24519905365967204,24519907391505747],[132108,131464,-1975303102468593,-1975301917236486],[132108,132096,-13247605973043456,-13247602915545560],[132108,132108,-22544604716605376,-22544603021162496],[132108,132225,24519905365967204,24519907391505747],[132108,132226,-873779583,873779583],[132108,132237,-1975303102434961,-1975301917270118],[132108,132238,-11272302664826744,-11272301204057192],[132108,132288,-1975303102468593,-1975301917236486],[132108,132480,-22544604430576096,-22544603307191776],[132108,133252,24519905362432319,24519907395040631],[132108,133256,-1975303104304567,-1975301915400511],[132108,134272,-22544604432275006,-22544603305492866],[132108,163972,-8599107748829489,-8599101715170092],[132108,163976,6623801213223040,6623803231071470],[132108,164992,24519905343287280,24519907414185673],[132108,165004,22544601541194970,22544606196572912],[132108,524416,13247603851021587,13247605037567427],[132108,524428,-1975303111382023,-1975301908323058],[132108,525444,39742809963298108,39742816702468936],[132108,525448,-24519910213370186,-24519902544102763],[132108,655492,-24519910213370186,-24519902544102763],[132108,655496,39742809963298108,39742816702468936],[132108,656512,-1975303111382023,-1975301908323058],[132108,656524,13247603851021587,13247605037567427],[132108,1048716,-22544604444342592,-22544603293425280],[132108,1049732,-1975303111382023,-1975301908323058],[132108,1049736,24519905343287280,24519907414185673],[132108,1179780,24519905343287280,24519907414185673],[132108,1179784,-1975303111382023,-1975301908323058],[132108,1180800,-22544604444342592,-22544603293425280],[132108,1573892,-1975303111382023,-1975301908323058],[132108,1573896,1975301908323058,1975303111382023],[132108,1703940,1975301908323058,1975303111382023],[132108,1703944,-1975303111382023,-1975301908323058],[132108,67108992,13247603855419588,13247605033169427],[132108,67110020,6623801172992632,6623803271301876],[132108,67110024,6623801159997192,6623803284297315],[132108,67240068,6623801159997192,6623803284297315],[132108,67240072,6623801172992632,6623803271301876],[132108,67241100,13247603855419588,13247605033169427],[132162,136,35792205747120647,35792210879236240],[132162,264,-1975303130061553,-1975301889643525],[132162,1162,31143706348854335,31143710852913125],[132162,1224,4648494894207522,4648504530381905],[132162,1352,-1975303130061553,-1975301889643525],[132162,131210,4648494894207522,4648504530381905],[132162,131272,31143706348854335,31143710852913125],[132162,131338,-1975303130061553,-1975301889643525],[132162,132298,35792205747120647,35792210879236240],[132162,132426,-1975303130061553,-1975301889643525],[132162,525442,6623801098016986,6623803346277523],[132162,525504,-6623803346277523,-6623801098016986],[132162,655490,-6623803346277523,-6623801098016986],[132162,655552,6623801098016986,6623803346277523],[132164,136,-13247606222252656,-13247602666336360],[132164,1224,-13247606222252656,-13247602666336360],[132164,131212,-13247606222252656,-13247602666336360],[132164,132300,-13247606222252656,-13247602666336360],[132168,0,-18593999772903408,-18593997925454304],[132168,72,-1975305275431532,-1975299744273546],[132168,130,-6623803999983306,-6623800444311202],[132168,132,-11272302995044411,-11272300873839524],[132168,202,22544601642609286,22544606095158586],[132168,456,15222904805987338,15222909102306755],[132168,1032,-7321699679927840,-7321694149545938],[132168,1088,-9296999886451704,-9296998962727152],[132168,1162,-17896106405970981,-17896101907207464],[132168,1218,-11272303056635485,-11272300812248450],[132168,1220,-11272302995044411,-11272300873839524],[132168,1416,-15222909102306755,-15222904805987338],[132168,2248,3950603941250842,3950606098159314],[132168,3208,-3950606098159314,-3950603941250842],[132168,32896,11272300873839524,11272302995044411],[132168,33984,11272300873839524,11272302995044411],[132168,131080,-9296999886451704,-9296998962727152],[132168,131136,-7321699679927840,-7321694149545938],[132168,131210,-11272303056635485,-11272300812248450],[132168,131212,-11272302995044411,-11272300873839524],[132168,131266,-17896106405970981,-17896101907207464],[132168,131520,-15222909102306755,-15222904805987338],[132168,132096,-1975305275431532,-1975299744273546],[132168,132168,-18593999772903408,-18593997925454304],[132168,132226,22544601642609286,22544606095158586],[132168,132298,-6623803999983306,-6623800444311202],[132168,132300,-11272302995044411,-11272300873839524],[132168,132480,15222904805987338,15222909102306755],[132168,133312,-3950606098159314,-3950603941250842],[132168,134272,3950603941250842,3950606098159314],[132168,163976,11272300873839524,11272302995044411],[132168,165064,11272300873839524,11272302995044411],[132168,524416,42416007508370071,42416013562281321],[132168,524488,11272299869063941,11272303999819992],[132168,525448,8599102631895649,8599106832103938],[132168,525504,22544601642609286,22544606095158586],[132168,655496,22544601642609286,22544606095158586],[132168,655552,8599102631895649,8599106832103938],[132168,656512,11272299869063941,11272303999819992],[132168,656584,42416007508370071,42416013562281321],[132168,1048776,3950603919085972,3950606120324188],[132168,1049736,-3950606120324188,-3950603919085972],[132168,1179840,-3950606120324188,-3950603919085972],[132168,1180800,3950603919085972,3950606120324188],[132168,67108992,11272300812248450,11272303056635485],[132168,67110080,11272300812248450,11272303056635485],[132168,67240072,11272300812248450,11272303056635485],[132168,67241160,11272300812248450,11272303056635485],[132225,139,-11272302995044411,-11272300873839524],[132225,141,24519905365967204,24519907391505747],[132225,1035,11272300873839524,11272302995044411],[132225,1037,-24519907391505747,-24519905365967204],[132225,131210,11272300873839524,11272302995044411],[132225,131212,-24519907391505747,-24519905365967204],[132225,132106,-11272302995044411,-11272300873839524],[132225,132108,24519905365967204,24519907391505747],[132226,0,-18593999772903408,-18593997925454304],[132226,72,-9297001129565978,-9296997719612879],[132226,130,-4648502626375994,-4648496798213434],[132226,139,11272300873839524,11272302995044411],[132226,142,-873779583,873779583],[132226,202,22544601642609286,22544606095158586],[132226,264,-3950606107262344,-3950603932147814],[132226,1026,-4648502626375994,-4648496798213434],[132226,1035,-11272302995044411,-11272300873839524],[132226,1038,-873779583,873779583],[132226,1098,-35792210542100730,-35792206084256157],[132226,1152,-9296999886451704,-9296998962727152],[132226,1224,3950603932147814,3950606107262344],[132226,1416,-3950606107262344,-3950603932147814],[132226,2056,-3950606098159314,-3950603941250842],[132226,3208,-3950606098159314,-3950603941250842],[132226,32906,-11272302995044411,-11272300873839524],[132226,33802,11272300873839524,11272302995044411],[132226,131074,-9296999886451704,-9296998962727152],[132226,131146,3950603932147814,3950606107262344],[132226,131200,-4648502626375994,-4648496798213434],[132226,131209,-11272302995044411,-11272300873839524],[132226,131212,-873779583,873779583],[132226,131272,-35792210542100730,-35792206084256157],[132226,131338,-3950606107262344,-3950603932147814],[132226,132096,-4648502626375994,-4648496798213434],[132226,132105,11272300873839524,11272302995044411],[132226,132108,-873779583,873779583],[132226,132168,22544601642609286,22544606095158586],[132226,132226,-18593999772903408,-18593997925454304],[132226,132298,-9297001129565978,-9296997719612879],[132226,132490,-3950606107262344,-3950603932147814],[132226,133130,-3950606098159314,-3950603941250842],[132226,134282,-3950606098159314,-3950603941250842],[132226,163976,11272300873839524,11272302995044411],[132226,164872,-11272302995044411,-11272300873839524],[132226,524296,-9297001142627820,-9296997706551035],[132226,524352,-13247605067077166,-13247603821511848],[132226,524426,-35792210542100730,-35792206084256157],[132226,524482,-6623803346277521,-6623801098016984],[132226,525322,22544601642609286,22544606095158586],[132226,525378,-6623803346277523,-6623801098016986],[132226,525448,3950603919085972,3950606120324188],[132226,655370,3950603919085972,3950606120324188],[132226,655496,22544601642609286,22544606095158586],[132226,655552,-6623803346277523,-6623801098016986],[132226,656392,-35792210542100730,-35792206084256157],[132226,656448,-6623803346277521,-6623801098016984],[132226,656522,-9297001142627820,-9296997706551035],[132226,656578,-13247605067077166,-13247603821511848],[132226,1048584,-3950606120324188,-3950603919085972],[132226,1049736,-3950606120324188,-3950603919085972],[132226,1179658,-3950606120324188,-3950603919085972],[132226,1180810,-3950606120324188,-3950603919085972],[132226,67109002,-11272303056635485,-11272300812248450],[132226,67109898,11272300812248450,11272303056635485],[132226,67240072,11272300812248450,11272303056635485],[132226,67240968,-11272303056635485,-11272300812248450],[132228,0,22544603021162496,22544604716605376],[132228,72,24519905365967204,24519907391505747],[132228,132,15920799005382849,15920804288090516],[132228,141,-24519907391505747,-24519905365967204],[132228,142,17896103248910824,17896105064267619],[132228,264,-24519907391505747,-24519905365967204],[132228,1028,-4648502349941046,-4648497074648383],[132228,1037,24519905365967204,24519907391505747],[132228,1038,-17896105064267619,-17896103248910824],[132228,1152,11272301510581248,11272302358302688],[132228,1224,24519905365967204,24519907391505747],[132228,1416,-24519907391505747,-24519905365967204],[132228,2056,-24519907395040631,-24519905362432319],[132228,3208,-24519907395040631,-24519905362432319],[132228,32908,-17896106200962633,-17896102112215810],[132228,33804,17896102112215810,17896106200962633],[132228,131076,11272301510581248,11272302358302688],[132228,131148,24519905365967204,24519907391505747],[132228,131200,-4648502349941046,-4648497074648383],[132228,131209,24519905365967204,24519907391505747],[132228,131210,-17896105064267619,-17896103248910824],[132228,131340,-24519907391505747,-24519905365967204],[132228,132096,15920799005382849,15920804288090516],[132228,132105,-24519907391505747,-24519905365967204],[132228,132106,17896103248910824,17896105064267619],[132228,132228,22544603021162496,22544604716605376],[132228,132300,24519905365967204,24519907391505747],[132228,132492,-24519907391505747,-24519905365967204],[132228,133132,-24519907395040631,-24519905362432319],[132228,134284,-24519907395040631,-24519905362432319],[132228,163976,17896102112215810,17896106200962633],[132228,164872,-17896106200962633,-17896102112215810],[132228,524296,11272300305719853,11272303563164086],[132228,524428,-2124775455,2124775457],[132228,525324,-13247606551676524,-13247602336912492],[132228,525448,24519905343287280,24519907414185673],[132228,655372,24519905343287280,24519907414185673],[132228,655496,-13247606551676524,-13247602336912492],[132228,656392,-2124775455,2124775457],[132228,656524,11272300305719853,11272303563164086],[132228,1048584,-24519907414185673,-24519905343287280],[132228,1049736,-24519907414185673,-24519905343287280],[132228,1179660,-24519907414185673,-24519905343287280],[132228,1180812,-24519907414185673,-24519905343287280],[132228,67109004,6623801172992632,6623803271301876],[132228,67109900,-6623803271301876,-6623801172992632],[132228,67240072,-6623803271301876,-6623801172992632],[132228,67240968,6623801172992632,6623803271301876],[132232,0,-18594001036550426,-18593996661807284],[132232,66,-1975303134066536,-1975301885638544],[132232,68,-1975303102468593,-1975301917236486],[132232,136,60039999943769960,60040045266389211],[132232,142,-6623803284297315,-6623801159997192],[132232,258,1975301885638544,1975303134066536],[132232,260,1975301917236486,1975303102468593],[132232,456,-49039814461219948,-49039811053725950],[132232,1032,-67361745915243333,-67361693124389608],[132232,1038,6623801159997192,6623803284297315],[132232,1152,-11272305028685690,-11272298840198250],[132232,1218,-1975303134066536,-1975301885638544],[132232,1220,-1975303102468593,-1975301917236486],[132232,1352,49039811053725950,49039814461219948],[132232,1410,1975301885638544,1975303134066536],[132232,1412,1975301917236486,1975303102468593],[132232,2050,1975301892192549,1975303127512530],[132232,2052,1975301915400511,1975303104304567],[132232,2248,-26495209971802464,-26495207805375563],[132232,2440,26495207805375563,26495209971802464],[132232,3144,26495207805375563,26495209971802464],[132232,3202,1975301892192549,1975303127512530],[132232,3204,1975301915400511,1975303104304567],[132232,3336,-26495209971802464,-26495207805375563],[132232,32832,1975301917236486,1975303102468593],[132232,32906,6623801159997192,6623803284297315],[132232,32908,19871405230482798,19871408102400732],[132232,33024,-1975303102468593,-1975301917236486],[132232,33802,-6623803284297315,-6623801159997192],[132232,33804,-19871408102400732,-19871405230482798],[132232,33984,1975301917236486,1975303102468593],[132232,34176,-1975303102468593,-1975301917236486],[132232,34816,-1975303104304567,-1975301915400511],[132232,35968,-1975303104304567,-1975301915400511],[132232,131080,-11272305028685690,-11272298840198250],[132232,131146,-1975303134066536,-1975301885638544],[132232,131148,-1975303102468593,-1975301917236486],[132232,131200,-67361745915243333,-67361693124389608],[132232,131206,6623801159997192,6623803284297315],[132232,131338,1975301885638544,1975303134066536],[132232,131340,1975301917236486,1975303102468593],[132232,131520,49039811053725950,49039814461219948],[132232,132096,60039999943769960,60040045266389211],[132232,132102,-6623803284297315,-6623801159997192],[132232,132232,-18594001036550426,-18593996661807284],[132232,132298,-1975303134066536,-1975301885638544],[132232,132300,-1975303102468593,-1975301917236486],[132232,132416,-49039814461219948,-49039811053725950],[132232,132490,1975301885638544,1975303134066536],[132232,132492,1975301917236486,1975303102468593],[132232,133130,1975301892192549,1975303127512530],[132232,133132,1975301915400511,1975303104304567],[132232,133312,26495207805375563,26495209971802464],[132232,133504,-26495209971802464,-26495207805375563],[132232,134208,-26495209971802464,-26495207805375563],[132232,134282,1975301892192549,1975303127512530],[132232,134284,1975301915400511,1975303104304567],[132232,134400,26495207805375563,26495209971802464],[132232,163912,1975301917236486,1975303102468593],[132232,163970,-6623803284297315,-6623801159997192],[132232,163972,-19871408102400732,-19871405230482798],[132232,164104,-1975303102468593,-1975301917236486],[132232,164866,6623801159997192,6623803284297315],[132232,164868,19871405230482798,19871408102400732],[132232,165064,1975301917236486,1975303102468593],[132232,165256,-1975303102468593,-1975301917236486],[132232,165896,-1975303104304567,-1975301915400511],[132232,167048,-1975303104304567,-1975301915400511],[132232,524290,11272300692285237,11272303176598696],[132232,524292,11272300739639564,11272303129244369],[132232,524352,-9297000814034204,-9296998035144653],[132232,524426,31143706348939894,31143710852827564],[132232,524428,13247602302125610,13247606586463402],[132232,524488,8599102661848405,8599106802151181],[132232,524544,-3950606255704424,-3950603783705734],[132232,524680,-26495209992202640,-26495207784975390],[132232,525322,-17896106405885420,-17896101907293023],[132232,525324,-2124775455,2124775457],[132232,525384,-19871408894185654,-19871404438697867],[132232,525442,-1975303134589986,-1975301885115096],[132232,525444,-1975303111382023,-1975301908323058],[132232,525504,1975300959240085,1975304060464993],[132232,525576,-2193017774,2193017775],[132232,525696,22544602161328920,22544605576438951],[132232,526336,-3950606276156332,-3950603763253824],[132232,526472,-26495210000373866,-26495207776804167],[132232,527368,-2231218221,2231218224],[132232,527488,22544602288119128,22544605449648746],[132232,557056,1975301908323058,1975303111382023],[132232,557192,-11272303635356703,-11272300233527231],[132232,558088,13247602302125610,13247606586463402],[132232,558208,-1198509903,1198509906],[132232,655370,-1975303134589986,-1975301885115096],[132232,655372,-1975303111382023,-1975301908323058],[132232,655432,1975300959240085,1975304060464993],[132232,655490,-17896106405885420,-17896101907293023],[132232,655492,-2124775455,2124775457],[132232,655552,-19871408894185654,-19871404438697867],[132232,655624,22544602161328920,22544605576438951],[132232,655744,-2193017774,2193017775],[132232,656386,31143706348939894,31143710852827564],[132232,656388,13247602302125610,13247606586463402],[132232,656448,8599102661848405,8599106802151181],[132232,656522,11272300692285237,11272303176598696],[132232,656524,11272300739639564,11272303129244369],[132232,656584,-9297000814034204,-9296998035144653],[132232,656640,-26495209992202640,-26495207784975390],[132232,656776,-3950606255704424,-3950603783705734],[132232,657416,22544602288119128,22544605449648746],[132232,657536,-2231218221,2231218224],[132232,658432,-26495210000373866,-26495207776804167],[132232,658568,-3950606276156332,-3950603763253824],[132232,688136,-1198509903,1198509906],[132232,688256,13247602302125610,13247606586463402],[132232,689152,-11272303635356703,-11272300233527231],[132232,689288,1975301908323058,1975303111382023],[132232,1048578,1975301885115096,1975303134589986],[132232,1048580,1975301908323058,1975303111382023],[132232,1048776,-26495209992202640,-26495207784975390],[132232,1048968,26495207784975390,26495209992202640],[132232,1049672,26495207784975390,26495209992202640],[132232,1049730,1975301885115096,1975303134589986],[132232,1049732,1975301908323058,1975303111382023],[132232,1049864,-26495209992202640,-26495207784975390],[132232,1050760,26495207776804167,26495210000373866],[132232,1051656,-26495210000373866,-26495207776804167],[132232,1081344,-1975303111382023,-1975301908323058],[132232,1082496,-1975303111382023,-1975301908323058],[132232,1179658,1975301885115096,1975303134589986],[132232,1179660,1975301908323058,1975303111382023],[132232,1179840,26495207784975390,26495209992202640],[132232,1180032,-26495209992202640,-26495207784975390],[132232,1180736,-26495209992202640,-26495207784975390],[132232,1180810,1975301885115096,1975303134589986],[132232,1180812,1975301908323058,1975303111382023],[132232,1180928,26495207784975390,26495209992202640],[132232,1181824,-26495210000373866,-26495207776804167],[132232,1182720,26495207776804167,26495210000373866],[132232,1212424,-1975303111382023,-1975301908323058],[132232,1213576,-1975303111382023,-1975301908323058],[132232,1572864,-3950606273531284,-3950603765878878],[132232,1573000,-47064513169575377,-47064507325665441],[132232,1573896,43113898635137411,43113911820693235],[132232,1574016,-4276638122,4276638132],[132232,1703944,-4276638122,4276638132],[132232,1704064,43113898635137411,43113911820693235],[132232,1704960,-47064513169575377,-47064507325665441],[132232,1705096,-3950606273531284,-3950603765878878],[132232,67108928,1975301885638544,1975303134066536],[132232,67109002,6623801079994226,6623803364300278],[132232,67109004,6623801159997192,6623803284297315],[132232,67109120,-1975303134066536,-1975301885638544],[132232,67109898,-6623803364300278,-6623801079994226],[132232,67109900,-6623803284297315,-6623801159997192],[132232,67110080,1975301885638544,1975303134066536],[132232,67110272,-1975303134066536,-1975301885638544],[132232,67110912,-1975303127512530,-1975301892192549],[132232,67112064,-1975303127512530,-1975301892192549],[132232,67141768,-6623803284297315,-6623801159997192],[132232,67142664,6623801159997192,6623803284297315],[132232,67240008,1975301885638544,1975303134066536],[132232,67240066,-6623803364300278,-6623801079994226],[132232,67240068,-6623803284297315,-6623801159997192],[132232,67240200,-1975303134066536,-1975301885638544],[132232,67240962,6623801079994226,6623803364300278],[132232,67240964,6623801159997192,6623803284297315],[132232,67241160,1975301885638544,1975303134066536],[132232,67241352,-1975303134066536,-1975301885638544],[132232,67241992,-1975303127512530,-1975301892192549],[132232,67243144,-1975303127512530,-1975301892192549],[132232,67272832,6623801159997192,6623803284297315],[132232,67273728,-6623803284297315,-6623801159997192],[132232,67633152,1975301885115096,1975303134589986],[132232,67633288,-8599106519433716,-8599102944565871],[132232,67634184,31143706348939894,31143710852827564],[132232,67634304,-20569302600800082,-20569300117262707],[132232,67764232,-20569302600800082,-20569300117262707],[132232,67764352,31143706348939894,31143710852827564],[132232,67765248,-8599106519433716,-8599102944565871],[132232,67765384,1975301885115096,1975303134589986],[132232,68157440,-1975303134589986,-1975301885115096],[132232,68158592,-1975303134589986,-1975301885115096],[132232,68288520,-1975303134589986,-1975301885115096],[132232,68289672,-1975303134589986,-1975301885115096],[132232,268959880,-4648500367937248,-4648499056652179],[132232,268960776,6623801098016984,6623803346277521],[132232,268960896,-1975303134066535,-1975301885638543],[132232,269090824,-1975303134066535,-1975301885638543],[132232,269090944,6623801098016984,6623803346277521],[132232,269091840,-4648500367937248,-4648499056652179],[132235,129,-4648500337588616,-4648499087000812],[132235,130,4648499087000812,4648500337588616],[132235,1025,4648499087000812,4648500337588616],[132235,1026,-4648500337588616,-4648499087000812],[132235,131209,-4648500337588616,-4648499087000812],[132235,131210,4648499087000812,4648500337588616],[132235,132105,4648499087000812,4648500337588616],[132235,132106,-4648500337588616,-4648499087000812],[132237,129,-1975303102434961,-1975301917270118],[132237,132,1975301917270118,1975303102434961],[132237,1025,1975301917270118,1975303102434961],[132237,1028,-1975303102434961,-1975301917270118],[132237,131209,-1975303102434961,-1975301917270118],[132237,131212,1975301917270118,1975303102434961],[132237,132105,1975301917270118,1975303102434961],[132237,132108,-1975303102434961,-1975301917270118],[132238,130,-11272302664826744,-11272301204057192],[132238,132,9296998645184146,9297000203994710],[132238,136,13247602666336360,13247606222252656],[132238,142,11272301204090824,11272302664793112],[132238,1026,11272301204057192,11272302664826744],[132238,1028,-9297000203994710,-9296998645184146],[132238,1032,-13247606222252656,-13247602666336360],[132238,1038,-11272302664793112,-11272301204090824],[132238,131200,-11272302664793112,-11272301204090824],[132238,131206,-13247606222252656,-13247602666336360],[132238,131210,-9297000203994710,-9296998645184146],[132238,131212,11272301204057192,11272302664826744],[132238,132096,11272301204090824,11272302664793112],[132238,132102,13247602666336360,13247606222252656],[132238,132106,9296998645184146,9297000203994710],[132238,132108,-11272302664826744,-11272301204057192],[132288,0,-3950606863625138,-3950603175785018],[132288,10,13247603826875223,13247605061713792],[132288,192,6623798624404334,6623805819890177],[132288,202,3950601491169156,3950608548241002],[132288,204,-1975303102468593,-1975301917236486],[132288,264,-18594001255457720,-18593996442899990],[132288,456,-11272302995044411,-11272300873839524],[132288,1088,-4648505793203474,-4648493631385954],[132288,1098,11272297936924019,11272305931959916],[132288,1100,24519905365967204,24519907391505747],[132288,1152,-5925910964282679,-5925904094832560],[132288,1162,-1975303130061553,-1975301889643525],[132288,1164,-22544604430576096,-22544603307191776],[132288,1352,-11272305272819252,-11272298596064681],[132288,1416,3950603932147814,3950606107262344],[132288,2056,-22544604485915178,-22544603251852693],[132288,3144,-26495209971802464,-26495207805375563],[132288,3208,3950603941250842,3950606098159314],[132288,32968,13247603822433492,13247605066155522],[132288,33864,-11272302995044411,-11272300873839524],[132288,33928,-1975303102468593,-1975301917236486],[132288,131136,-5925910964282679,-5925904094832560],[132288,131146,-1975303130061553,-1975301889643525],[132288,131148,-22544604430576096,-22544603307191776],[132288,131200,-4648505793203474,-4648493631385954],[132288,131210,11272297936924019,11272305931959916],[132288,131212,24519905365967204,24519907391505747],[132288,131400,3950603932147814,3950606107262344],[132288,131464,-11272305272819252,-11272298596064681],[132288,132096,6623798624404334,6623805819890177],[132288,132106,3950601491169156,3950608548241002],[132288,132108,-1975303102468593,-1975301917236486],[132288,132288,-3950606863625138,-3950603175785018],[132288,132298,13247603826875223,13247605061713792],[132288,132360,-11272302995044411,-11272300873839524],[132288,132552,-18594001255457720,-18593996442899990],[132288,133192,3950603941250842,3950606098159314],[132288,133256,-26495209971802464,-26495207805375563],[132288,134344,-22544604485915178,-22544603251852693],[132288,163912,-1975303102468593,-1975301917236486],[132288,163976,-11272302995044411,-11272300873839524],[132288,164872,13247603822433492,13247605066155522],[132288,524290,13247603821511848,13247605067077166],[132288,524296,-1975304066969121,-1975300952735957],[132288,524482,6623801098016984,6623803346277521],[132288,524488,-3950608267983247,-3950601771426911],[132288,524544,22544601455814116,22544606281953756],[132288,524736,6623801159997192,6623803284297315],[132288,525378,6623801098016986,6623803346277523],[132288,525384,26495204430640140,26495213346537888],[132288,525448,-24519909487239803,-24519903270233145],[132288,525632,-8599108077216494,-8599101386783086],[132288,525696,24519905293069738,24519907464403207],[132288,526336,-1975303134066536,-1975301885638544],[132288,527424,-26495209977993164,-26495207799184865],[132288,527488,24519905292829456,24519907464643493],[132288,557248,-4648500337588616,-4648499087000812],[132288,558144,6623801159997192,6623803284297315],[132288,558208,-1975303102434961,-1975301917270118],[132288,655432,-24519909487239803,-24519903270233145],[132288,655490,6623801098016986,6623803346277523],[132288,655496,26495204430640140,26495213346537888],[132288,655680,24519905293069738,24519907464403207],[132288,655744,-8599108077216494,-8599101386783086],[132288,656386,6623801098016984,6623803346277521],[132288,656392,-3950608267983247,-3950601771426911],[132288,656578,13247603821511848,13247605067077166],[132288,656584,-1975304066969121,-1975300952735957],[132288,656640,6623801159997192,6623803284297315],[132288,656832,22544601455814116,22544606281953756],[132288,657472,24519905292829456,24519907464643493],[132288,657536,-26495209977993164,-26495207799184865],[132288,658624,-1975303134066536,-1975301885638544],[132288,688192,-1975303102434961,-1975301917270118],[132288,688256,6623801159997192,6623803284297315],[132288,689152,-4648500337588616,-4648499087000812],[132288,1048584,-22544604497985104,-22544603239782766],[132288,1049672,-26495209992202640,-26495207784975390],[132288,1049736,3950603919085972,3950606120324188],[132288,1179720,3950603919085972,3950606120324188],[132288,1179784,-26495209992202640,-26495207784975390],[132288,1180872,-22544604497985104,-22544603239782766],[132288,1572864,-1975303134589986,-1975301885115096],[132288,1573056,-1975303102434961,-1975301917270118],[132288,1573952,-3950608765320955,-3950601274089200],[132288,1574016,3950601736070570,3950608303339582],[132288,1704000,3950601736070570,3950608303339582],[132288,1704064,-3950608765320955,-3950601274089200],[132288,1704960,-1975303102434961,-1975301917270118],[132288,1705152,-1975303134589986,-1975301885115096],[132288,67109064,13247603792440361,13247605096148654],[132288,67109960,-11272303056635485,-11272300812248450],[132288,67110024,-1975303134066536,-1975301885638544],[132288,67240008,-1975303134066536,-1975301885638544],[132288,67240072,-11272303056635485,-11272300812248450],[132288,67240968,13247603792440361,13247605096148654],[132288,67633344,-1975303161793801,-1975301857911278],[132288,67634240,24519905258499972,24519907498972975],[132288,67634304,-22544604489700504,-22544603248067364],[132288,67764288,-22544604489700504,-22544603248067364],[132288,67764352,24519905258499972,24519907498972975],[132288,67765248,-1975303161793801,-1975301857911278],[132288,268959936,-4648500367050864,-4648499057538562],[132288,268960832,6623801102928978,6623803341365525],[132288,268960896,-1975303130040923,-1975301889664154],[132288,269090880,-1975303130040923,-1975301889664154],[132288,269090944,6623801102928978,6623803341365525],[132288,269091840,-4648500367050864,-4648499057538562],[132298,10,13247603826875223,13247605061713792],[132298,66,-1975303134066536,-1975301885638544],[132298,72,-9297001129565978,-9296997719612879],[132298,130,-6623803999983306,-6623800444311202],[132298,136,35792205747120647,35792210879236240],[132298,192,-4648500367937248,-4648499056652179],[132298,202,26495207586327742,26495210190850288],[132298,1026,8599103424503113,8599106039496475],[132298,1032,-39742815119133304,-39742811546633741],[132298,1088,4648499056652179,4648500367937248],[132298,1098,-24519908147332138,-24519904610140814],[132298,1162,11272300696813670,11272303172070267],[132298,1224,-13247605061713792,-13247603826875223],[132298,131074,-13247605061713792,-13247603826875223],[132298,131136,11272300696813670,11272303172070267],[132298,131200,-24519908147332138,-24519904610140814],[132298,131210,4648499056652179,4648500367937248],[132298,131266,-39742815119133304,-39742811546633741],[132298,131272,8599103424503113,8599106039496475],[132298,132096,26495207586327742,26495210190850288],[132298,132106,-4648500367937248,-4648499056652179],[132298,132162,35792205747120647,35792210879236240],[132298,132168,-6623803999983306,-6623800444311202],[132298,132226,-9297001129565978,-9296997719612879],[132298,132232,-1975303134066536,-1975301885638544],[132298,132288,13247603826875223,13247605061713792],[132300,68,-1975303102468593,-1975301917236486],[132300,72,24519905365967204,24519907391505747],[132300,132,-11272302995044411,-11272300873839524],[132300,136,-13247606222252656,-13247602666336360],[132300,204,-1975303102468593,-1975301917236486],[132300,1028,13247603822433492,13247605066155522],[132300,1032,-11272302995044411,-11272300873839524],[132300,1100,24519905365967204,24519907391505747],[132300,1164,-22544604430576096,-22544603307191776],[132300,131136,-22544604430576096,-22544603307191776],[132300,131200,24519905365967204,24519907391505747],[132300,131268,-11272302995044411,-11272300873839524],[132300,131272,13247603822433492,13247605066155522],[132300,132096,-1975303102468593,-1975301917236486],[132300,132164,-13247606222252656,-13247602666336360],[132300,132168,-11272302995044411,-11272300873839524],[132300,132228,24519905365967204,24519907391505747],[132300,132232,-1975303102468593,-1975301917236486],[132360,264,-1975304605835260,-1975300413869816],[132360,456,-11272302995044411,-11272300873839524],[132360,1032,1975300413869816,1975304605835260],[132360,1224,11272300873839524,11272302995044411],[132360,131328,1975300413869816,1975304605835260],[132360,131520,11272300873839524,11272302995044411],[132360,132096,-1975304605835260,-1975300413869816],[132360,132288,-11272302995044411,-11272300873839524],[132360,524680,-26495209977993164,-26495207799184865],[132360,525448,26495207799184865,26495209977993164],[132360,655744,26495207799184865,26495209977993164],[132360,656512,-26495209977993164,-26495207799184865],[132416,330,-1975303130061553,-1975301889643525],[132416,456,-49039814461219948,-49039811053725950],[132416,1098,1975301889643525,1975303130061553],[132416,1224,11272298596064681,11272305272819252],[132416,1416,37767509188400696,37767512457661269],[132416,131272,37767509188400696,37767512457661269],[132416,131338,1975301889643525,1975303130061553],[132416,131464,11272298596064681,11272305272819252],[132416,132106,-1975303130061553,-1975301889643525],[132416,132232,-49039814461219948,-49039811053725950],[132416,524736,-28470513105628714,-28470509691254389],[132416,525504,8599101386783086,8599108077216494],[132416,525696,19871405028412220,19871408304471303],[132416,655552,19871405028412220,19871408304471303],[132416,655744,8599101386783086,8599108077216494],[132416,656512,-28470513105628714,-28470509691254389],[132416,1573952,1975301917270118,1975303102434961],[132416,1574144,-1975303102434961,-1975301917270118],[132416,1704000,-1975303102434961,-1975301917270118],[132416,1704192,1975301917270118,1975303102434961],[132426,264,-1975303130061553,-1975301889643525],[132426,330,-1975303130061553,-1975301889643525],[132426,1032,1975301889643525,1975303130061553],[132426,1098,1975301889643525,1975303130061553],[132426,131328,1975301889643525,1975303130061553],[132426,131394,1975301889643525,1975303130061553],[132426,132096,-1975303130061553,-1975301889643525],[132426,132162,-1975303130061553,-1975301889643525],[132480,72,-26495210066406118,-26495207710771912],[132480,384,-3950608451914177,-3950601587495984],[132480,394,-1975303130061553,-1975301889643525],[132480,396,-22544604430576096,-22544603307191776],[132480,456,15222904805987338,15222909102306755],[132480,520,-13247605061713792,-13247603826875223],[132480,1152,3950601587495984,3950608451914177],[132480,1162,1975301889643525,1975303130061553],[132480,1164,22544603307191776,22544604430576096],[132480,1224,-3950606107262344,-3950603932147814],[132480,1352,-37767512457661269,-37767509188400696],[132480,1800,-13247605061713792,-13247603826875223],[132480,2056,13247603826875223,13247605061713792],[132480,3336,13247603826875223,13247605061713792],[132480,33160,-1975303102468593,-1975301917236486],[132480,33928,1975301917236486,1975303102468593],[132480,131272,-37767512457661269,-37767509188400696],[132480,131328,3950601587495984,3950608451914177],[132480,131338,1975301889643525,1975303130061553],[132480,131340,22544603307191776,22544604430576096],[132480,131400,-3950606107262344,-3950603932147814],[132480,131720,-13247605061713792,-13247603826875223],[132480,132096,-3950608451914177,-3950601587495984],[132480,132106,-1975303130061553,-1975301889643525],[132480,132108,-22544604430576096,-22544603307191776],[132480,132168,15222904805987338,15222909102306755],[132480,132552,-26495210066406118,-26495207710771912],[132480,133000,-13247605061713792,-13247603826875223],[132480,133256,13247603826875223,13247605061713792],[132480,134536,13247603826875223,13247605061713792],[132480,164104,1975301917236486,1975303102468593],[132480,164872,-1975303102468593,-1975301917236486],[132480,524352,-26495210066338854,-26495207710839176],[132480,524680,3950601587495984,3950608451914177],[132480,524736,17896102008772423,17896106304406015],[132480,524800,-13247605067077166,-13247603821511848],[132480,525448,-3950608451914177,-3950601587495984],[132480,525504,-24519907464403207,-24519905293069738],[132480,525632,-19871408304471303,-19871405028412220],[132480,526080,-13247605067077166,-13247603821511848],[132480,526336,13247603821511848,13247605067077166],[132480,527616,13247603821511848,13247605067077166],[132480,557440,-1975303102434961,-1975301917270118],[132480,558208,1975301917270118,1975303102434961],[132480,655552,-19871408304471303,-19871405028412220],[132480,655624,-3950608451914177,-3950601587495984],[132480,655680,-24519907464403207,-24519905293069738],[132480,656000,-13247605067077166,-13247603821511848],[132480,656392,3950601587495984,3950608451914177],[132480,656448,17896102008772423,17896106304406015],[132480,656832,-26495210066338854,-26495207710839176],[132480,657280,-13247605067077166,-13247603821511848],[132480,657536,13247603821511848,13247605067077166],[132480,658816,13247603821511848,13247605067077166],[132480,688384,1975301917270118,1975303102434961],[132480,689152,-1975303102434961,-1975301917270118],[132480,1048584,13247603811716528,13247605076872486],[132480,1049864,13247603811716528,13247605076872486],[132480,1179784,13247603811716528,13247605076872486],[132480,1181064,13247603811716528,13247605076872486],[132480,1572864,13247603822461068,13247605066127948],[132480,1573248,-47064511822048211,-47064508673192612],[132480,1574016,45089206614383552,45089208861152192],[132480,1574144,15222905739731186,15222908168562909],[132480,1704064,15222905739731186,15222908168562909],[132480,1704192,45089206614383552,45089208861152192],[132480,1704960,-47064511822048211,-47064508673192612],[132480,1705344,13247603822461068,13247605066127948],[132480,67109256,-1975303134066536,-1975301885638544],[132480,67110024,1975301885638544,1975303134066536],[132480,67240200,1975301885638544,1975303134066536],[132480,67240968,-1975303134066536,-1975301885638544],[132480,67633536,-22544604489700504,-22544603248067364],[132480,67634304,22544603248067364,22544604489700504],[132480,67764480,22544603248067364,22544604489700504],[132480,67765248,-22544604489700504,-22544603248067364],[132480,268960128,-1975303130040923,-1975301889664154],[132480,268960896,1975301889664154,1975303130040923],[132480,269091072,1975301889664154,1975303130040923],[132480,269091840,-1975303130040923,-1975301889664154],[132490,258,1975301885638544,1975303134066536],[132490,264,-3950606107262344,-3950603932147814],[132490,394,-1975303130061553,-1975301889643525],[132490,1026,-1975303134066536,-1975301885638544],[132490,1032,3950603932147814,3950606107262344],[132490,1162,1975301889643525,1975303130061553],[132490,131328,1975301889643525,1975303130061553],[132490,131458,3950603932147814,3950606107262344],[132490,131464,-1975303134066536,-1975301885638544],[132490,132096,-1975303130061553,-1975301889643525],[132490,132226,-3950606107262344,-3950603932147814],[132490,132232,1975301885638544,1975303134066536],[132492,260,1975301917236486,1975303102468593],[132492,264,-24519907391505747,-24519905365967204],[132492,396,-22544604430576096,-22544603307191776],[132492,1028,-1975303102468593,-1975301917236486],[132492,1032,24519905365967204,24519907391505747],[132492,1164,22544603307191776,22544604430576096],[132492,131328,22544603307191776,22544604430576096],[132492,131460,24519905365967204,24519907391505747],[132492,131464,-1975303102468593,-1975301917236486],[132492,132096,-22544604430576096,-22544603307191776],[132492,132228,-24519907391505747,-24519905365967204],[132492,132232,1975301917236486,1975303102468593],[132552,72,-26495210066406118,-26495207710771912],[132552,264,-18594001255457720,-18593996442899990],[132552,456,-45089208966229632,-45089206509306108],[132552,1032,45089206509306108,45089208966229632],[132552,1224,18593996442899990,18594001255457720],[132552,1416,26495207710771912,26495210066406118],[132552,131136,26495207710771912,26495210066406118],[132552,131328,18593996442899990,18594001255457720],[132552,131520,45089206509306108,45089208966229632],[132552,132096,-45089208966229632,-45089206509306108],[132552,132288,-18594001255457720,-18593996442899990],[132552,132480,-26495210066406118,-26495207710771912],[132736,264,13247603826875223,13247605061713792],[132736,1800,13247603826875223,13247605061713792],[132736,2056,13247603827702546,13247605060886466],[132736,3592,13247603827702546,13247605060886466],[132736,131464,13247603826875223,13247605061713792],[132736,133000,13247603826875223,13247605061713792],[132736,133256,13247603827702546,13247605060886466],[132736,134792,13247603827702546,13247605060886466],[132736,524544,13247603821511848,13247605067077166],[132736,526080,13247603821511848,13247605067077166],[132736,526336,13247603826875223,13247605061713792],[132736,527872,13247603826875223,13247605061713792],[132736,655744,13247603821511848,13247605067077166],[132736,657280,13247603821511848,13247605067077166],[132736,657536,13247603826875223,13247605061713792],[132736,659072,13247603826875223,13247605061713792],[132864,1416,13247603826875223,13247605061713792],[132864,1672,-13247605061713792,-13247603826875223],[132864,131464,-13247605061713792,-13247603826875223],[132864,131720,13247603826875223,13247605061713792],[132864,525696,13247603821511848,13247605067077166],[132864,525952,-13247605067077166,-13247603821511848],[132864,655744,-13247605067077166,-13247603821511848],[132864,656000,13247603821511848,13247605067077166],[132864,1574144,-1975303134066535,-1975301885638543],[132864,1574400,1975301885638543,1975303134066535],[132864,1704192,1975301885638543,1975303134066535],[132864,1704448,-1975303134066535,-1975301885638543],[133000,264,13247603826875223,13247605061713792],[133000,520,-13247605061713792,-13247603826875223],[133000,1416,13247603826875223,13247605061713792],[133000,1672,-13247605061713792,-13247603826875223],[133000,131328,-13247605061713792,-13247603826875223],[133000,131584,13247603826875223,13247605061713792],[133000,132480,-13247605061713792,-13247603826875223],[133000,132736,13247603826875223,13247605061713792],[133120,136,-13247606143034927,-13247602745554085],[133120,1032,1975300387251397,1975304632453679],[133120,1152,3950601784483124,3950608254927041],[133120,1162,1975301892192548,1975303127512529],[133120,1164,22544603305492866,22544604432275006],[133120,1224,22544603251852693,22544604485915178],[133120,1416,-13247605061713792,-13247603826875223],[133120,1672,-13247605060886466,-13247603827702546],[133120,33928,1975301915400511,1975303104304567],[133120,133256,-13247606143034927,-13247602745554085],[133120,134152,1975300387251397,1975304632453679],[133120,134272,3950601784483124,3950608254927041],[133120,134282,1975301892192548,1975303127512529],[133120,134284,22544603305492866,22544604432275006],[133120,134344,22544603251852693,22544604485915178],[133120,134536,-13247605061713792,-13247603826875223],[133120,134792,-13247605060886466,-13247603827702546],[133120,167048,1975301915400511,1975303104304567],[133120,524416,-13247606157000801,-13247602731588215],[133120,525312,3950600760736484,3950609278673694],[133120,525448,49039810258190782,49039815256755116],[133120,525504,1975301885638544,1975303134066536],[133120,525696,-13247605067077166,-13247603821511848],[133120,525952,-13247605061713792,-13247603826875223],[133120,558208,1975301912872117,1975303106832961],[133120,657536,-13247606157000801,-13247602731588215],[133120,658432,3950600760736484,3950609278673694],[133120,658568,49039810258190782,49039815256755116],[133120,658624,1975301885638544,1975303134066536],[133120,658816,-13247605067077166,-13247603821511848],[133120,659072,-13247605061713792,-13247603826875223],[133120,691328,1975301912872117,1975303106832961],[133120,1049600,-13247606157000801,-13247602731588215],[133120,1049736,-13247605070627222,-13247603817961795],[133120,1182720,-13247606157000801,-13247602731588215],[133120,1182856,-13247605070627222,-13247603817961795],[133120,1572864,3950601784483124,3950608254927041],[133120,1573896,-13247605070627222,-13247603817961795],[133120,1574016,18593996452163044,18594001246194656],[133120,1574144,1975301885638543,1975303134066535],[133120,1574400,22544603251852693,22544604485915178],[133120,1606656,-13247605037567427,-13247603851021587],[133120,1705984,3950601784483124,3950608254927041],[133120,1707016,-13247605070627222,-13247603817961795],[133120,1707136,18593996452163044,18594001246194656],[133120,1707264,1975301885638543,1975303134066535],[133120,1707520,22544603251852693,22544604485915178],[133120,1739776,-13247605037567427,-13247603851021587],[133120,2098312,-13247605080544438,-13247603808044578],[133120,2231432,-13247605080544438,-13247603808044578],[133120,2621440,1975300387251397,1975304632453679],[133120,2622592,-13247605070627222,-13247603817961795],[133120,2754560,1975300387251397,1975304632453679],[133120,2755712,-13247605070627222,-13247603817961795],[133120,3145728,-13247606143034927,-13247602745554085],[133120,3278848,-13247606143034927,-13247602745554085],[133120,3670024,-13247605080544438,-13247603808044578],[133120,3670144,-13247605070627222,-13247603817961795],[133120,3670528,1975301892192549,1975303127512530],[133120,3671040,49039810258190782,49039815256755116],[133120,3702784,-13247605036737943,-13247603851851071],[133120,3803144,-13247605080544438,-13247603808044578],[133120,3803264,-13247605070627222,-13247603817961795],[133120,3803648,1975301892192549,1975303127512530],[133120,3804160,49039810258190782,49039815256755116],[133120,3835904,-13247605036737943,-13247603851851071],[133120,33555592,-13247605036737943,-13247603851851071],[133120,33688712,-13247605036737943,-13247603851851071],[133120,34079872,-13247605037567427,-13247603851021587],[133120,34212992,-13247605037567427,-13247603851021587],[133120,35128320,1975301912872117,1975303106832961],[133120,35261440,1975301912872117,1975303106832961],[133120,37224448,1975301915400511,1975303104304567],[133120,37357568,1975301915400511,1975303104304567],[133120,67110024,1975301892192549,1975303127512530],[133120,67243144,1975301892192549,1975303127512530],[133120,67634304,22544603251852693,22544604485915178],[133120,67767424,22544603251852693,22544604485915178],[133120,68682752,-13247605061713792,-13247603826875223],[133120,68815872,-13247605061713792,-13247603826875223],[133120,70778880,-13247605060886466,-13247603827702546],[133120,70912000,-13247605060886466,-13247603827702546],[133120,135791616,1975301885638544,1975303134066536],[133120,135924736,1975301885638544,1975303134066536],[133120,137887744,22544603251852693,22544604485915178],[133120,138020864,22544603251852693,22544604485915178],[133120,268960896,1975301885638543,1975303134066535],[133120,269094016,1975301885638543,1975303134066535],[133120,270009344,-13247605067077166,-13247603821511848],[133120,270142464,-13247605067077166,-13247603821511848],[133120,272105472,-13247605061713792,-13247603826875223],[133120,272238592,-13247605061713792,-13247603826875223],[133120,540540928,1975301892192548,1975303127512529],[133120,540674048,1975301892192548,1975303127512529],[133120,549759483904,22544603305492866,22544604432275006],[133120,549759617024,22544603305492866,22544604432275006],[133130,1162,1975301892192548,1975303127512529],[133130,3202,1975301892192549,1975303127512530],[133130,3208,-3950606098159314,-3950603941250842],[133130,132226,-3950606098159314,-3950603941250842],[133130,132232,1975301892192549,1975303127512530],[133130,134272,1975301892192548,1975303127512529],[133132,1164,22544603305492866,22544604432275006],[133132,3204,1975301915400511,1975303104304567],[133132,3208,-24519907395040631,-24519905362432319],[133132,132228,-24519907395040631,-24519905362432319],[133132,132232,1975301915400511,1975303104304567],[133132,134272,22544603305492866,22544604432275006],[133192,1224,-3950606098159314,-3950603941250842],[133192,3208,3950603941250842,3950606098159314],[133192,132288,3950603941250842,3950606098159314],[133192,134272,-3950606098159314,-3950603941250842],[133250,1032,3950603941250842,3950606098159314],[133250,3208,3950603941250842,3950606098159314],[133250,132106,3950603941250842,3950606098159314],[133250,134282,3950603941250842,3950606098159314],[133252,1032,24519905362432319,24519907395040631],[133252,3208,24519905362432319,24519907395040631],[133252,132108,24519905362432319,24519907395040631],[133252,134284,24519905362432319,24519907395040631],[133256,136,-13247606143034927,-13247602745554085],[133256,1026,-1975303127512530,-1975301892192549],[133256,1028,-1975303104304567,-1975301915400511],[133256,1224,26495207805375563,26495209971802464],[133256,1416,-13247605061713792,-13247603826875223],[133256,1672,-13247605060886466,-13247603827702546],[133256,2056,13247602745554085,13247606143034927],[133256,3144,-26495209971802464,-26495207805375563],[133256,3202,-1975303127512530,-1975301892192549],[133256,3204,-1975303104304567,-1975301915400511],[133256,3336,13247603826875223,13247605061713792],[133256,3592,13247603827702546,13247605060886466],[133256,33792,1975301915400511,1975303104304567],[133256,35968,1975301915400511,1975303104304567],[133256,131200,13247602745554085,13247606143034927],[133256,132106,-1975303127512530,-1975301892192549],[133256,132108,-1975303104304567,-1975301915400511],[133256,132288,-26495209971802464,-26495207805375563],[133256,132480,13247603826875223,13247605061713792],[133256,132736,13247603827702546,13247605060886466],[133256,133120,-13247606143034927,-13247602745554085],[133256,134208,26495207805375563,26495209971802464],[133256,134282,-1975303127512530,-1975301892192549],[133256,134284,-1975303104304567,-1975301915400511],[133256,134400,-13247605061713792,-13247603826875223],[133256,134656,-13247605060886466,-13247603827702546],[133256,164872,1975301915400511,1975303104304567],[133256,167048,1975301915400511,1975303104304567],[133256,525312,3950603763253824,3950606276156332],[133256,525448,26495207776804167,26495210000373866],[133256,527368,-2231218224,2231218221],[133256,527488,-22544605449648746,-22544602288119128],[133256,656392,-22544605449648746,-22544602288119128],[133256,656512,-2231218224,2231218221],[133256,658432,26495207776804167,26495210000373866],[133256,658568,3950603763253824,3950606276156332],[133256,1049736,-13247605070627222,-13247603817961795],[133256,1051656,13247603817961795,13247605070627222],[133256,1180800,13247603817961795,13247605070627222],[133256,1182720,-13247605070627222,-13247603817961795],[133256,2098312,-13247605080544438,-13247603808044578],[133256,2100232,13247603808044578,13247605080544438],[133256,2229376,13247603808044578,13247605080544438],[133256,2231296,-13247605080544438,-13247603808044578],[133256,33555592,-13247605036737943,-13247603851851071],[133256,33557512,13247603851851071,13247605036737943],[133256,33686656,13247603851851071,13247605036737943],[133256,33688576,-13247605036737943,-13247603851851071],[133256,67109888,1975301892192549,1975303127512530],[133256,67112064,1975301892192549,1975303127512530],[133256,67240968,1975301892192549,1975303127512530],[133256,67243144,1975301892192549,1975303127512530],[133312,1032,22544603251852693,22544604485915178],[133312,3144,26495207805375563,26495209971802464],[133312,3208,-3950606098159314,-3950603941250842],[133312,132168,-3950606098159314,-3950603941250842],[133312,132232,26495207805375563,26495209971802464],[133312,134344,22544603251852693,22544604485915178],[133312,525312,1975301885638544,1975303134066536],[133312,527424,26495207799184865,26495209977993164],[133312,527488,-24519907464643493,-24519905292829456],[133312,656448,-24519907464643493,-24519905292829456],[133312,656512,26495207799184865,26495209977993164],[133312,658624,1975301885638544,1975303134066536],[133504,1032,-26495209971802464,-26495207805375563],[133504,3336,-26495209971802464,-26495207805375563],[133504,132232,-26495209971802464,-26495207805375563],[133504,134536,-26495209971802464,-26495207805375563],[133504,525312,-26495209977993164,-26495207799184865],[133504,527616,-26495209977993164,-26495207799184865],[133504,656512,-26495209977993164,-26495207799184865],[133504,658816,-26495209977993164,-26495207799184865],[134152,1032,1975300387251397,1975304632453679],[134152,2056,-1975304632453679,-1975300387251397],[134152,132096,-1975304632453679,-1975300387251397],[134152,133120,1975300387251397,1975304632453679],[134152,525448,26495207769155642,26495210008022388],[134152,526472,-26495210008022388,-26495207769155642],[134152,656512,-26495210008022388,-26495207769155642],[134152,657536,26495207769155642,26495210008022388],[134208,1224,26495207805375563,26495209971802464],[134208,2248,-26495209971802464,-26495207805375563],[134208,132232,-26495209971802464,-26495207805375563],[134208,133256,26495207805375563,26495209971802464],[134208,525504,26495207799184865,26495209977993164],[134208,526528,-26495209977993164,-26495207799184865],[134208,656512,-26495209977993164,-26495207799184865],[134208,657536,26495207799184865,26495209977993164],[134272,264,13247603827702546,13247605060886466],[134272,520,-13247605060886466,-13247603827702546],[134272,1152,3950601784483124,3950608254927041],[134272,1162,1975301892192548,1975303127512529],[134272,1164,22544603305492866,22544604432275006],[134272,1224,-3950606098159314,-3950603941250842],[134272,2176,-3950608254927041,-3950601784483124],[134272,2186,-1975303127512529,-1975301892192548],[134272,2188,-22544604432275006,-22544603305492866],[134272,2248,3950603941250842,3950606098159314],[134272,3336,13247603827702546,13247605060886466],[134272,3592,-13247605060886466,-13247603827702546],[134272,33928,1975301915400511,1975303104304567],[134272,34952,-1975303104304567,-1975301915400511],[134272,131464,13247603827702546,13247605060886466],[134272,131720,-13247605060886466,-13247603827702546],[134272,132096,-3950608254927041,-3950601784483124],[134272,132106,-1975303127512529,-1975301892192548],[134272,132108,-22544604432275006,-22544603305492866],[134272,132168,3950603941250842,3950606098159314],[134272,133120,3950601784483124,3950608254927041],[134272,133130,1975301892192548,1975303127512529],[134272,133132,22544603305492866,22544604432275006],[134272,133192,-3950606098159314,-3950603941250842],[134272,134536,13247603827702546,13247605060886466],[134272,134792,-13247605060886466,-13247603827702546],[134272,164872,-1975303104304567,-1975301915400511],[134272,165896,1975301915400511,1975303104304567],[134272,524544,13247603826875223,13247605061713792],[134272,524800,-13247605061713792,-13247603826875223],[134272,525448,-3950608254927041,-3950601784483124],[134272,525504,-24519907464643493,-24519905292829456],[134272,526472,3950601784483124,3950608254927041],[134272,526528,24519905292829456,24519907464643493],[134272,527616,13247603826875223,13247605061713792],[134272,527872,-13247605061713792,-13247603826875223],[134272,558208,1975301912872117,1975303106832961],[134272,559232,-1975303106832961,-1975301912872117],[134272,655744,13247603826875223,13247605061713792],[134272,656000,-13247605061713792,-13247603826875223],[134272,656392,3950601784483124,3950608254927041],[134272,656448,24519905292829456,24519907464643493],[134272,657416,-3950608254927041,-3950601784483124],[134272,657472,-24519907464643493,-24519905292829456],[134272,658816,13247603826875223,13247605061713792],[134272,659072,-13247605061713792,-13247603826875223],[134272,689152,-1975303106832961,-1975301912872117],[134272,690176,1975301912872117,1975303106832961],[134272,1048584,13247603808044578,13247605080544438],[134272,1051656,13247603808044578,13247605080544438],[134272,1179784,13247603808044578,13247605080544438],[134272,1182856,13247603808044578,13247605080544438],[134272,1572864,13247603817961795,13247605070627222],[134272,1574016,45089206600617048,45089208874918688],[134272,1575040,-47064511840212707,-47064508655028107],[134272,1575936,15222905730833912,15222908177460183],[134272,1704064,15222905730833912,15222908177460183],[134272,1704960,-47064511840212707,-47064508655028107],[134272,1705984,45089206600617048,45089208874918688],[134272,1707136,13247603817961795,13247605070627222],[134272,2097160,-13247605080544438,-13247603808044578],[134272,2100232,-13247605080544438,-13247603808044578],[134272,2228360,-13247605080544438,-13247603808044578],[134272,2231432,-13247605080544438,-13247603808044578],[134272,2621440,-13247605070627222,-13247603817961795],[134272,2624512,-13247605070627222,-13247603817961795],[134272,2752640,-13247605070627222,-13247603817961795],[134272,2755712,-13247605070627222,-13247603817961795],[134272,33554440,-13247605036737943,-13247603851851071],[134272,33557512,-13247605036737943,-13247603851851071],[134272,33685640,-13247605036737943,-13247603851851071],[134272,33688712,-13247605036737943,-13247603851851071],[134272,34078720,-13247605037567427,-13247603851021587],[134272,34081792,-13247605037567427,-13247603851021587],[134272,34209920,-13247605037567427,-13247603851021587],[134272,34212992,-13247605037567427,-13247603851021587],[134272,67110024,1975301892192549,1975303127512530],[134272,67111048,-1975303127512530,-1975301892192549],[134272,67240968,-1975303127512530,-1975301892192549],[134272,67241992,1975301892192549,1975303127512530],[134272,67634304,22544603251852693,22544604485915178],[134272,67635328,-22544604485915178,-22544603251852693],[134272,67765248,-22544604485915178,-22544603251852693],[134272,67766272,22544603251852693,22544604485915178],[134272,268960896,1975301885638543,1975303134066535],[134272,268961920,-1975303134066535,-1975301885638543],[134272,269091840,-1975303134066535,-1975301885638543],[134272,269092864,1975301885638543,1975303134066535],[134282,1026,-1975303127512530,-1975301892192549],[134282,1032,3950603941250842,3950606098159314],[134282,1162,1975301892192548,1975303127512529],[134282,2050,1975301892192549,1975303127512530],[134282,2056,-3950606098159314,-3950603941250842],[134282,2186,-1975303127512529,-1975301892192548],[134282,132096,-1975303127512529,-1975301892192548],[134282,132226,-3950606098159314,-3950603941250842],[134282,132232,1975301892192549,1975303127512530],[134282,133120,1975301892192548,1975303127512529],[134282,133250,3950603941250842,3950606098159314],[134282,133256,-1975303127512530,-1975301892192549],[134284,1028,-1975303104304567,-1975301915400511],[134284,1032,24519905362432319,24519907395040631],[134284,1164,22544603305492866,22544604432275006],[134284,2052,1975301915400511,1975303104304567],[134284,2056,-24519907395040631,-24519905362432319],[134284,2188,-22544604432275006,-22544603305492866],[134284,132096,-22544604432275006,-22544603305492866],[134284,132228,-24519907395040631,-24519905362432319],[134284,132232,1975301915400511,1975303104304567],[134284,133120,22544603305492866,22544604432275006],[134284,133252,24519905362432319,24519907395040631],[134284,133256,-1975303104304567,-1975301915400511],[134344,1032,22544603251852693,22544604485915178],[134344,1224,22544603251852693,22544604485915178],[134344,2056,-22544604485915178,-22544603251852693],[134344,2248,-22544604485915178,-22544603251852693],[134344,132096,-22544604485915178,-22544603251852693],[134344,132288,-22544604485915178,-22544603251852693],[134344,133120,22544603251852693,22544604485915178],[134344,133312,22544603251852693,22544604485915178],[134400,1416,-13247605061713792,-13247603826875223],[134400,2440,26495207805375563,26495209971802464],[134400,3208,-13247605060886466,-13247603827702546],[134400,131464,-13247605060886466,-13247603827702546],[134400,132232,26495207805375563,26495209971802464],[134400,133256,-13247605061713792,-13247603826875223],[134400,525696,-13247605067077166,-13247603821511848],[134400,526720,26495207799184865,26495209977993164],[134400,527488,-13247605061713792,-13247603826875223],[134400,655744,-13247605061713792,-13247603826875223],[134400,656512,26495207799184865,26495209977993164],[134400,657536,-13247605067077166,-13247603821511848],[134400,1574144,1975301885638543,1975303134066535],[134400,1575168,-24519907464643493,-24519905292829456],[134400,1575936,22544603251852693,22544604485915178],[134400,1704192,22544603251852693,22544604485915178],[134400,1704960,-24519907464643493,-24519905292829456],[134400,1705984,1975301885638543,1975303134066535],[134536,264,13247603827702546,13247605060886466],[134536,1032,-26495209971802464,-26495207805375563],[134536,1416,-13247605061713792,-13247603826875223],[134536,2056,13247603826875223,13247605061713792],[134536,2440,26495207805375563,26495209971802464],[134536,3208,-13247605060886466,-13247603827702546],[134536,131328,-13247605060886466,-13247603827702546],[134536,132096,26495207805375563,26495209971802464],[134536,132480,13247603826875223,13247605061713792],[134536,133120,-13247605061713792,-13247603826875223],[134536,133504,-26495209971802464,-26495207805375563],[134536,134272,13247603827702546,13247605060886466],[134656,1672,-13247605060886466,-13247603827702546],[134656,3208,13247603827702546,13247605060886466],[134656,131720,13247603827702546,13247605060886466],[134656,133256,-13247605060886466,-13247603827702546],[134656,525952,-13247605061713792,-13247603826875223],[134656,527488,13247603826875223,13247605061713792],[134656,656000,13247603826875223,13247605061713792],[134656,657536,-13247605061713792,-13247603826875223],[134656,1574400,22544603251852693,22544604485915178],[134656,1575936,-22544604485915178,-22544603251852693],[134656,1704448,-22544604485915178,-22544603251852693],[134656,1705984,22544603251852693,22544604485915178],[134792,520,-13247605060886466,-13247603827702546],[134792,1672,-13247605060886466,-13247603827702546],[134792,2056,13247603827702546,13247605060886466],[134792,3208,13247603827702546,13247605060886466],[134792,131584,13247603827702546,13247605060886466],[134792,132736,13247603827702546,13247605060886466],[134792,133120,-13247605060886466,-13247603827702546],[134792,134272,-13247605060886466,-13247603827702546],[163840,5,19173508834098980,19173515113605268],[163840,6,20569296483878353,20569306234184452],[163840,9,20569296483878353,20569306234184452],[163840,10,19173508834098980,19173515113605268],[163840,12,-685469048873943824,-685468971640616152],[163840,15,26495207616089156,26495210161088876],[163840,130,11272301474344213,11272302394539721],[163840,132,22544597683462214,22544610054305668],[163840,136,49039808003270598,49039817511675298],[163840,141,13247603811716528,13247605076872486],[163840,142,-24519907169816619,-24519905587656329],[163840,163845,19173508834098980,19173515113605268],[163840,163846,20569296483878353,20569306234184452],[163840,163849,20569296483878353,20569306234184452],[163840,163850,19173508834098980,19173515113605268],[163840,163852,-685469048873943824,-685468971640616152],[163840,163855,26495207616089156,26495210161088876],[163840,163970,11272301474344213,11272302394539721],[163840,163972,22544597683462214,22544610054305668],[163840,163976,49039808003270598,49039817511675298],[163840,163981,13247603811716528,13247605076872486],[163840,163982,-24519907169816619,-24519905587656329],[163840,524289,1975300803621296,1975304216083780],[163840,524290,-13247606153429752,-13247602735159258],[163840,524292,-311472436788867910,-311472393130811843],[163840,524296,307521786696231667,307521833184037924],[163840,524301,13247603822461068,13247605066127948],[163840,524302,-1975303134589986,-1975301885115096],[163840,524416,-11272305028685690,-11272298840198250],[163840,524428,-3950606273531284,-3950603765878878],[163840,688129,1975300803621296,1975304216083780],[163840,688130,-13247606153429752,-13247602735159258],[163840,688132,-311472436788867910,-311472393130811843],[163840,688136,307521786696231667,307521833184037924],[163840,688141,13247603822461068,13247605066127948],[163840,688142,-1975303134589986,-1975301885115096],[163840,688256,-11272305028685690,-11272298840198250],[163840,688268,-3950606273531284,-3950603765878878],[163840,1048580,1975300984811094,1975304034893986],[163840,1048584,-13247605973043456,-13247602915545560],[163840,1048704,11272301510581248,11272302358302688],[163840,1212420,1975300984811094,1975304034893986],[163840,1212424,-13247605973043456,-13247602915545560],[163840,1212544,11272301510581248,11272302358302688],[163840,67108865,1975300772161160,1975304247543921],[163840,67108866,-13247606182566277,-13247602706022740],[163840,67108868,-354586345522376890,-354586294853133538],[163840,67108872,332041690197650200,332041742440092355],[163840,67108877,13247603817961795,13247605070627222],[163840,67108878,-1975303136765642,-1975301882939439],[163840,67108992,-5925910964282679,-5925904094832560],[163840,67109004,-1975303134589986,-1975301885115096],[163840,67272705,1975300772161160,1975304247543921],[163840,67272706,-13247606182566277,-13247602706022740],[163840,67272708,-354586345522376890,-354586294853133538],[163840,67272712,332041690197650200,332041742440092355],[163840,67272717,13247603817961795,13247605070627222],[163840,67272718,-1975303136765642,-1975301882939439],[163840,67272832,-5925910964282679,-5925904094832560],[163840,67272844,-1975303134589986,-1975301885115096],[163840,67633164,-77510327129120619,-77510321182708389],[163840,67797004,-77510327129120619,-77510321182708389],[163840,268435460,3950601606309328,3950608433100829],[163840,268435464,-5925910945469332,-5925904113645905],[163840,268435584,-9296999886451704,-9296998962727152],[163840,268599300,3950601606309328,3950608433100829],[163840,268599304,-5925910945469332,-5925904113645905],[163840,268599424,-9296999886451704,-9296998962727152],[163840,1073741825,-13247606182566277,-13247602706022740],[163840,1073741826,1975300772161160,1975304247543921],[163840,1073741828,332041690197650200,332041742440092355],[163840,1073741832,-354586345522376890,-354586294853133538],[163840,1073741837,-1975303136765642,-1975301882939439],[163840,1073741838,13247603817961795,13247605070627222],[163840,1073741952,3950601587495984,3950608451914177],[163840,1073741964,13247603822461068,13247605066127948],[163840,1073905665,-13247606182566277,-13247602706022740],[163840,1073905666,1975300772161160,1975304247543921],[163840,1073905668,332041690197650200,332041742440092355],[163840,1073905672,-354586345522376890,-354586294853133538],[163840,1073905677,-1975303136765642,-1975301882939439],[163840,1073905678,13247603817961795,13247605070627222],[163840,1073905792,3950601587495984,3950608451914177],[163840,1073905804,13247603822461068,13247605066127948],[163840,1074266124,66238019708364176,66238024734580898],[163840,1074429964,66238019708364176,66238024734580898],[163840,1140850700,79485623483927954,79485629847606148],[163840,1141014540,79485623483927954,79485629847606148],[163840,1141374980,66238019734487245,66238024708457820],[163840,1141374984,-77510327102997542,-77510321208831459],[163840,1141538820,66238019734487245,66238024708457820],[163840,1141538824,-77510327102997542,-77510321208831459],[163840,1409286148,13247603826989498,13247605061599516],[163840,1409286152,-1975303130061553,-1975301889643525],[163840,1409449988,13247603826989498,13247605061599516],[163840,1409449992,-1975303130061553,-1975301889643525],[163840,17592186044420,1975300718656210,1975304301048867],[163840,17592186044424,7321695128457817,7321698701015960],[163840,17592186208260,1975300718656210,1975304301048867],[163840,17592186208264,7321695128457817,7321698701015960],[163840,17593326895108,13247603817961795,13247605070627222],[163840,17593326895112,-22544604490299392,-22544603247468479],[163840,17593327058948,13247603817961795,13247605070627222],[163840,17593327058952,-22544604490299392,-22544603247468479],[163840,140737488355332,7321695128457817,7321698701015960],[163840,140737488355336,1975300718656210,1975304301048867],[163840,140737488519172,7321695128457817,7321698701015960],[163840,140737488519176,1975300718656210,1975304301048867],[163840,140738629206020,-22544604490299392,-22544603247468479],[163840,140738629206024,13247603817961795,13247605070627222],[163840,140738629369860,-22544604490299392,-22544603247468479],[163840,140738629369864,13247603817961795,13247605070627222],[163843,12,79485623483927954,79485629847606148],[163843,32769,9296995124907418,9297003724271436],[163843,32770,-9297003724271436,-9296995124907418],[163843,32781,-18594006149950118,-18593991548407578],[163843,32782,98079621396013726,98079629633878072],[163843,131073,-9297003724271436,-9296995124907418],[163843,131074,9296995124907418,9297003724271436],[163843,131085,98079621396013726,98079629633878072],[163843,131086,-18594006149950118,-18593991548407578],[163843,163855,79485623483927954,79485629847606148],[163845,0,11851812910563952,11851817207666526],[163845,5,19173508834098980,19173515113605268],[163845,10,-3950606212356198,-3950603827053960],[163845,15,-30445818197184670,-30445809619403520],[163845,141,13247603811716528,13247605076872486],[163845,32769,-215060696800522478,-215060645033294693],[163845,32772,207738951876696445,207738996127646956],[163845,32779,-13247609434184624,-13247599454404401],[163845,32782,39742811571512963,39742815094254094],[163845,32905,-26495209992202640,-26495207784975390],[163845,32908,13247603822461068,13247605066127948],[163845,131073,207738951876696445,207738996127646956],[163845,131076,-215060696800522478,-215060645033294693],[163845,131083,39742811571512963,39742815094254094],[163845,131086,-13247609434184624,-13247599454404401],[163845,131209,13247603822461068,13247605066127948],[163845,131212,-26495209992202640,-26495207784975390],[163845,163840,19173508834098980,19173515113605268],[163845,163845,11851812910563952,11851817207666526],[163845,163850,-30445818197184670,-30445809619403520],[163845,163855,-3950606212356198,-3950603827053960],[163845,163976,13247603811716528,13247605076872486],[163845,524290,-1975303102434961,-1975301917270118],[163845,524295,-1975303102434961,-1975301917270118],[163845,524296,1975301917270118,1975303102434961],[163845,524301,15222905739731186,15222908168562909],[163845,557065,-52990419959304000,-52990415595052060],[163845,557068,39742811621793198,39742815043973846],[163845,655369,39742811621793198,39742815043973846],[163845,655372,-52990419959304000,-52990415595052060],[163845,688130,-1975303102434961,-1975301917270118],[163845,688135,-1975303102434961,-1975301917270118],[163845,688136,15222905739731186,15222908168562909],[163845,688141,1975301917270118,1975303102434961],[163845,67108866,-1975303106832961,-1975301912872117],[163845,67108871,-1975303106832961,-1975301912872117],[163845,67108872,1975301912872117,1975303106832961],[163845,67108877,15222905730833912,15222908177460183],[163845,67141641,-52990419988112860,-52990415566243210],[163845,67141644,39742811597483621,39742815068283432],[163845,67239945,39742811597483621,39742815068283432],[163845,67239948,-52990419988112860,-52990415566243210],[163845,67272706,-1975303106832961,-1975301912872117],[163845,67272711,-1975303106832961,-1975301912872117],[163845,67272712,15222905730833912,15222908177460183],[163845,67272717,1975301912872117,1975303106832961],[163845,67665921,-26495209977752878,-26495207799425147],[163845,67665924,26495207799425147,26495209977752878],[163845,67764225,26495207799425147,26495209977752878],[163845,67764228,-26495209977752878,-26495207799425147],[163845,1073741826,1975301912872117,1975303106832961],[163845,1073741831,1975301912872117,1975303106832961],[163845,1073741832,-3950606243598603,-3950603795811556],[163845,1073741837,-1975303106832961,-1975301912872117],[163845,1073774601,51015113065152905,51015117469498084],[163845,1073774604,-52990419988112860,-52990415566243210],[163845,1073872905,-52990419988112860,-52990415566243210],[163845,1073872908,51015113065152905,51015117469498084],[163845,1073905666,1975301912872117,1975303106832961],[163845,1073905671,1975301912872117,1975303106832961],[163845,1073905672,-1975303106832961,-1975301912872117],[163845,1073905677,-3950606243598603,-3950603795811556],[163845,1074298881,26495207799425147,26495209977752878],[163845,1074298884,-26495209977752878,-26495207799425147],[163845,1074397185,-26495209977752878,-26495207799425147],[163845,1074397188,26495207799425147,26495209977752878],[163845,1140883457,28470509805039004,28470512991844104],[163845,1140883460,-28470512991844104,-28470509805039004],[163845,1140981761,-28470512991844104,-28470509805039004],[163845,1140981764,28470509805039004,28470512991844104],[163846,0,33237389689794910,33237395667510356],[163846,6,20569296483878353,20569306234184452],[163846,9,-35792211241229472,-35792205385127423],[163846,15,56941019780492396,56941025813273826],[163846,78,28470509674673669,28470513122209439],[163846,142,22544602318599624,22544605419168246],[163846,32770,20569293250811822,20569309467250933],[163846,32772,-7901214439889918,-7901205638930376],[163846,32779,-79485631987828172,-79485621343705900],[163846,32781,-13247609394938084,-13247599493650961],[163846,32835,-1975303102468593,-1975301917236486],[163846,32837,1975301917236486,1975303102468593],[163846,32842,-8599108093729955,-8599101370269630],[163846,32844,-19871408304404039,-19871405028479484],[163846,32906,8599101685162166,8599107778837422],[163846,32908,-31143710097437046,-31143707104330412],[163846,131074,-7901214439889918,-7901205638930376],[163846,131076,20569293250811822,20569309467250933],[163846,131083,-13247609394938084,-13247599493650961],[163846,131085,-79485631987828172,-79485621343705900],[163846,131139,1975301917236486,1975303102468593],[163846,131141,-1975303102468593,-1975301917236486],[163846,131146,-19871408304404039,-19871405028479484],[163846,131148,-8599108093729955,-8599101370269630],[163846,131210,-31143710097437046,-31143707104330412],[163846,131212,8599101685162166,8599107778837422],[163846,163840,20569296483878353,20569306234184452],[163846,163846,33237389689794910,33237395667510356],[163846,163849,56941019780492396,56941025813273826],[163846,163855,-35792211241229472,-35792205385127423],[163846,163912,28470509674673669,28470513122209439],[163846,163976,22544602318599624,22544605419168246],[163846,524289,1975301917270118,1975303102434961],[163846,524295,1975301917270118,1975303102434961],[163846,524296,47064508673192612,47064511822048211],[163846,524302,-3950608765320955,-3950601274089200],[163846,557066,51015113096137411,51015117438513567],[163846,655372,51015113096137411,51015117438513567],[163846,688129,1975301917270118,1975303102434961],[163846,688135,1975301917270118,1975303102434961],[163846,688136,-3950608765320955,-3950601274089200],[163846,688142,47064508673192612,47064511822048211],[163846,67108865,1975301912872117,1975303106832961],[163846,67108871,1975301912872117,1975303106832961],[163846,67108872,47064508655028107,47064511840212707],[163846,67108878,-3950608814469977,-3950601224940198],[163846,67141642,51015113065152905,51015117469498084],[163846,67239948,51015113065152905,51015117469498084],[163846,67272705,1975301912872117,1975303106832961],[163846,67272711,1975301912872117,1975303106832961],[163846,67272712,-3950608814469977,-3950601224940198],[163846,67272718,47064508655028107,47064511840212707],[163846,1073741825,-1975303106832961,-1975301912872117],[163846,1073741831,-1975303106832961,-1975301912872117],[163846,1073741832,-7321700242729086,-7321693586744675],[163846,1073741838,-47064511840212707,-47064508655028107],[163846,1073774604,39742811597483621,39742815068283432],[163846,1073872906,39742811597483621,39742815068283432],[163846,1073905665,-1975303106832961,-1975301912872117],[163846,1073905671,-1975303106832961,-1975301912872117],[163846,1073905672,-47064511840212707,-47064508655028107],[163846,1073905678,-7321700242729086,-7321693586744675],[163849,0,33237389689794910,33237395667510356],[163849,6,-35792211241229472,-35792205385127423],[163849,9,20569296483878353,20569306234184452],[163849,15,56941019780492396,56941025813273826],[163849,132,-39742815043973846,-39742811621793198],[163849,32769,-7901214439889918,-7901205638930376],[163849,32775,-13247609394938084,-13247599493650961],[163849,32776,20569293250811822,20569309467250933],[163849,32782,-79485631987828172,-79485621343705900],[163849,32835,4648499087034444,4648500337554984],[163849,32842,-4648500337554984,-4648499087034444],[163849,32899,-6623803284297315,-6623801159997192],[163849,32901,11272298183630328,11272305685253609],[163849,32906,6623801159997192,6623803284297315],[163849,32908,-51015117307046807,-51015113227604174],[163849,131073,20569293250811822,20569309467250933],[163849,131079,-79485631987828172,-79485621343705900],[163849,131080,-7901214439889918,-7901205638930376],[163849,131086,-13247609394938084,-13247599493650961],[163849,131139,-4648500337554984,-4648499087034444],[163849,131146,4648499087034444,4648500337554984],[163849,131203,6623801159997192,6623803284297315],[163849,131205,-51015117307046807,-51015113227604174],[163849,131210,-6623803284297315,-6623801159997192],[163849,131212,11272298183630328,11272305685253609],[163849,163840,20569296483878353,20569306234184452],[163849,163846,56941019780492396,56941025813273826],[163849,163849,33237389689794910,33237395667510356],[163849,163855,-35792211241229472,-35792205385127423],[163849,163981,-39742815043973846,-39742811621793198],[163849,524290,-1975303102434961,-1975301917270118],[163849,524292,-7321700200255013,-7321693629218766],[163849,524299,-1975303102434961,-1975301917270118],[163849,524301,-47064511822048211,-47064508673192612],[163849,557061,39742811621793198,39742815043973846],[163849,655372,39742811621793198,39742815043973846],[163849,688130,-1975303102434961,-1975301917270118],[163849,688132,-47064511822048211,-47064508673192612],[163849,688139,-1975303102434961,-1975301917270118],[163849,688141,-7321700200255013,-7321693629218766],[163849,67108866,-1975303106832961,-1975301912872117],[163849,67108868,-7321700242729086,-7321693586744675],[163849,67108875,-1975303106832961,-1975301912872117],[163849,67108877,-47064511840212707,-47064508655028107],[163849,67141637,39742811597483621,39742815068283432],[163849,67239948,39742811597483621,39742815068283432],[163849,67272706,-1975303106832961,-1975301912872117],[163849,67272708,-47064511840212707,-47064508655028107],[163849,67272715,-1975303106832961,-1975301912872117],[163849,67272717,-7321700242729086,-7321693586744675],[163849,1073741826,1975301912872117,1975303106832961],[163849,1073741828,47064508655028107,47064511840212707],[163849,1073741835,1975301912872117,1975303106832961],[163849,1073741837,-3950608814469977,-3950601224940198],[163849,1073774604,51015113065152905,51015117469498084],[163849,1073872901,51015113065152905,51015117469498084],[163849,1073905666,1975301912872117,1975303106832961],[163849,1073905668,-3950608814469977,-3950601224940198],[163849,1073905675,1975301912872117,1975303106832961],[163849,1073905677,47064508655028107,47064511840212707],[163850,0,11851812910563952,11851817207666526],[163850,5,-3950606212356198,-3950603827053960],[163850,10,19173508834098980,19173515113605268],[163850,15,-30445818197184670,-30445809619403520],[163850,68,-3950606258772122,-3950603780638034],[163850,78,-28470513122209439,-28470509674673669],[163850,132,5925906124214463,5925908934900775],[163850,142,1975300950242052,1975304069463026],[163850,32770,207738951876696445,207738996127646956],[163850,32775,39742811571512963,39742815094254094],[163850,32776,-215060696800522478,-215060645033294693],[163850,32781,-13247609434184624,-13247599454404401],[163850,32835,-6623803284297315,-6623801159997192],[163850,32838,6623801159997192,6623803284297315],[163850,32841,6623801159997192,6623803284297315],[163850,32844,17896101995938767,17896106317239678],[163850,32899,6623801159997192,6623803284297315],[163850,32902,-6623804221568240,-6623800222726267],[163850,32905,-6623803284297315,-6623801159997192],[163850,32908,10574405079083164,10574409404621503],[163850,32962,19871404874970728,19871408457912797],[163850,32968,-19871408457912797,-19871404874970728],[163850,131074,-215060696800522478,-215060645033294693],[163850,131079,-13247609434184624,-13247599454404401],[163850,131080,207738951876696445,207738996127646956],[163850,131085,39742811571512963,39742815094254094],[163850,131139,6623801159997192,6623803284297315],[163850,131142,17896101995938767,17896106317239678],[163850,131145,-6623803284297315,-6623801159997192],[163850,131148,6623801159997192,6623803284297315],[163850,131203,-6623803284297315,-6623801159997192],[163850,131206,10574405079083164,10574409404621503],[163850,131209,6623801159997192,6623803284297315],[163850,131212,-6623804221568240,-6623800222726267],[163850,131266,-19871408457912797,-19871404874970728],[163850,131272,19871404874970728,19871408457912797],[163850,163840,19173508834098980,19173515113605268],[163850,163845,-30445818197184670,-30445809619403520],[163850,163850,11851812910563952,11851817207666526],[163850,163855,-3950606212356198,-3950603827053960],[163850,163908,-28470513122209439,-28470509674673669],[163850,163918,-3950606258772122,-3950603780638034],[163850,163972,1975300950242052,1975304069463026],[163850,163982,5925906124214463,5925908934900775],[163850,524289,1975301917270118,1975303102434961],[163850,524292,-3950606237024947,-3950603802385214],[163850,524299,1975301917270118,1975303102434961],[163850,524302,-1975303102434961,-1975301917270118],[163850,524352,1975301885638543,1975303134066535],[163850,524362,1975301885638543,1975303134066535],[163850,524416,-1975303134066535,-1975301885638543],[163850,524426,-1975303134066535,-1975301885638543],[163850,557062,-52990419959304000,-52990415595052060],[163850,557068,51015113096137411,51015117438513567],[163850,655366,51015113096137411,51015117438513567],[163850,655372,-52990419959304000,-52990415595052060],[163850,688129,1975301917270118,1975303102434961],[163850,688132,-1975303102434961,-1975301917270118],[163850,688139,1975301917270118,1975303102434961],[163850,688142,-3950606237024947,-3950603802385214],[163850,688192,1975301885638543,1975303134066535],[163850,688202,1975301885638543,1975303134066535],[163850,688256,-1975303134066535,-1975301885638543],[163850,688266,-1975303134066535,-1975301885638543],[163850,67108865,1975301912872117,1975303106832961],[163850,67108868,-3950606243598603,-3950603795811556],[163850,67108875,1975301912872117,1975303106832961],[163850,67108878,-1975303106832961,-1975301912872117],[163850,67108928,1975301889664154,1975303130040923],[163850,67108938,1975301889664154,1975303130040923],[163850,67108992,-1975303130040923,-1975301889664154],[163850,67109002,-1975303130040923,-1975301889664154],[163850,67141638,-52990419988112860,-52990415566243210],[163850,67141644,51015113065152905,51015117469498084],[163850,67239942,51015113065152905,51015117469498084],[163850,67239948,-52990419988112860,-52990415566243210],[163850,67272705,1975301912872117,1975303106832961],[163850,67272708,-1975303106832961,-1975301912872117],[163850,67272715,1975301912872117,1975303106832961],[163850,67272718,-3950606243598603,-3950603795811556],[163850,67272768,1975301889664154,1975303130040923],[163850,67272778,1975301889664154,1975303130040923],[163850,67272832,-1975303130040923,-1975301889664154],[163850,67272842,-1975303130040923,-1975301889664154],[163850,67665922,26495207799425147,26495209977752878],[163850,67665928,-26495209977752878,-26495207799425147],[163850,67764226,-26495209977752878,-26495207799425147],[163850,67764232,26495207799425147,26495209977752878],[163850,1073741825,-1975303106832961,-1975301912872117],[163850,1073741828,1975301912872117,1975303106832961],[163850,1073741835,-1975303106832961,-1975301912872117],[163850,1073741838,15222905730833912,15222908177460183],[163850,1073741888,-1975303130040923,-1975301889664154],[163850,1073741898,-1975303130040923,-1975301889664154],[163850,1073741952,1975301889664154,1975303130040923],[163850,1073741962,1975301889664154,1975303130040923],[163850,1073774598,39742811597483621,39742815068283432],[163850,1073774604,-52990419988112860,-52990415566243210],[163850,1073872902,-52990419988112860,-52990415566243210],[163850,1073872908,39742811597483621,39742815068283432],[163850,1073905665,-1975303106832961,-1975301912872117],[163850,1073905668,15222905730833912,15222908177460183],[163850,1073905675,-1975303106832961,-1975301912872117],[163850,1073905678,1975301912872117,1975303106832961],[163850,1073905728,-1975303130040923,-1975301889664154],[163850,1073905738,-1975303130040923,-1975301889664154],[163850,1073905792,1975301889664154,1975303130040923],[163850,1073905802,1975301889664154,1975303130040923],[163850,1074298882,-26495209977752878,-26495207799425147],[163850,1074298888,26495207799425147,26495209977752878],[163850,1074397186,26495207799425147,26495209977752878],[163850,1074397192,-26495209977752878,-26495207799425147],[163850,1140883458,-28470512991844104,-28470509805039004],[163850,1140883464,28470509805039004,28470512991844104],[163850,1140981762,28470509805039004,28470512991844104],[163850,1140981768,-28470512991844104,-28470509805039004],[163852,3,26495207628724032,26495210148454004],[163852,12,-685469048873943824,-685468971640616152],[163852,129,26495207648534336,26495210128643692],[163852,142,-49039814917723134,-49039810597222762],[163852,32772,496122563821345000,496122638017568840],[163852,32775,-30445818299541794,-30445809517046374],[163852,32776,189346333623047312,189346485052598824],[163852,32779,56941019665500378,56941025928265826],[163852,32901,-26495212182615048,-26495205594562984],[163852,32902,52990415723206676,52990419831149384],[163852,32905,52990415723206676,52990419831149384],[163852,32906,-3950609233926622,-3950600805483542],[163852,131076,189346333623047312,189346485052598824],[163852,131079,56941019665500378,56941025928265826],[163852,131080,496122563821345000,496122638017568840],[163852,131083,-30445818299541794,-30445809517046374],[163852,131205,52990415723206676,52990419831149384],[163852,131206,-3950609233926622,-3950600805483542],[163852,131209,-26495212182615048,-26495205594562984],[163852,131210,52990415723206676,52990419831149384],[163852,163840,-685469048873943824,-685468971640616152],[163852,163855,26495207628724032,26495210148454004],[163852,163970,-49039814917723134,-49039810597222762],[163852,163981,26495207648534336,26495210128643692],[163852,524289,18593996485739860,18594001212617856],[163852,524290,-45089208861152192,-45089206614383552],[163852,524301,45089206614383552,45089208861152192],[163852,524302,3950601736070570,3950608303339582],[163852,524416,-45089208874918688,-45089206600617048],[163852,524428,-4276638122,4276638132],[163852,557061,-26495210128643692,-26495207648534336],[163852,557066,-49039814917723134,-49039810597222762],[163852,557192,-45089210877255180,-45089204598280566],[163852,655366,-49039814917723134,-49039810597222762],[163852,655369,-26495210128643692,-26495207648534336],[163852,655492,-45089210877255180,-45089204598280566],[163852,688129,45089206614383552,45089208861152192],[163852,688130,3950601736070570,3950608303339582],[163852,688141,18593996485739860,18594001212617856],[163852,688142,-45089208861152192,-45089206614383552],[163852,688256,-4276638122,4276638132],[163852,688268,-45089208874918688,-45089206600617048],[163852,67108865,18593996452163044,18594001246194656],[163852,67108866,-45089208874918688,-45089206600617048],[163852,67108877,45089206600617048,45089208874918688],[163852,67108878,3950601689143912,3950608350266260],[163852,67108992,-45089208861152192,-45089206614383552],[163852,67109004,3950601736070570,3950608303339582],[163852,67141637,-26495210148454004,-26495207628724032],[163852,67141642,-49039814950883308,-49039810564062600],[163852,67141768,-49039814917723134,-49039810597222762],[163852,67239942,-49039814950883308,-49039810564062600],[163852,67239945,-26495210148454004,-26495207628724032],[163852,67240068,-49039814917723134,-49039810597222762],[163852,67272705,45089206600617048,45089208874918688],[163852,67272706,3950601689143912,3950608350266260],[163852,67272717,18593996452163044,18594001246194656],[163852,67272718,-45089208874918688,-45089206600617048],[163852,67272832,3950601736070570,3950608303339582],[163852,67272844,-45089208861152192,-45089206614383552],[163852,67633164,-49039814917723134,-49039810597222762],[163852,67665924,52990415723206676,52990419831149384],[163852,67665928,-3950609233926622,-3950600805483542],[163852,67764228,-3950609233926622,-3950600805483542],[163852,67764232,52990415723206676,52990419831149384],[163852,67796992,-49039814917723134,-49039810597222762],[163852,1073741825,-45089208874918688,-45089206600617048],[163852,1073741826,18593996452163044,18594001246194656],[163852,1073741837,3950601689143912,3950608350266260],[163852,1073741838,45089206600617048,45089208874918688],[163852,1073741952,18593996485739860,18594001212617856],[163852,1073741964,45089206614383552,45089208861152192],[163852,1073774598,-26495210148454004,-26495207628724032],[163852,1073774601,-49039814950883308,-49039810564062600],[163852,1073774724,-26495210128643692,-26495207648534336],[163852,1073872901,-49039814950883308,-49039810564062600],[163852,1073872906,-26495210148454004,-26495207628724032],[163852,1073873032,-26495210128643692,-26495207648534336],[163852,1073905665,3950601689143912,3950608350266260],[163852,1073905666,45089206600617048,45089208874918688],[163852,1073905677,-45089208874918688,-45089206600617048],[163852,1073905678,18593996452163044,18594001246194656],[163852,1073905792,45089206614383552,45089208861152192],[163852,1073905804,18593996485739860,18594001212617856],[163852,1074266112,26495207648534336,26495210128643692],[163852,1074298884,-26495212182615048,-26495205594562984],[163852,1074298888,52990415723206676,52990419831149384],[163852,1074397188,52990415723206676,52990419831149384],[163852,1074397192,-26495212182615048,-26495205594562984],[163852,1074429964,26495207648534336,26495210128643692],[163852,1140850688,26495207628724032,26495210148454004],[163852,1140883460,-30445818299541794,-30445809517046374],[163852,1140883464,56941019665500378,56941025928265826],[163852,1140981764,56941019665500378,56941025928265826],[163852,1140981768,-30445818299541794,-30445809517046374],[163852,1141014540,26495207628724032,26495210148454004],[163855,3,26495207628724032,26495210148454004],[163855,5,-3950606212356198,-3950603827053960],[163855,6,-35792211241229472,-35792205385127423],[163855,9,-35792211241229472,-35792205385127423],[163855,10,-3950606212356198,-3950603827053960],[163855,12,79485623483927954,79485629847606148],[163855,15,26495207616089156,26495210161088876],[163855,32769,-45089212389398762,-45089203086137004],[163855,32770,58336806904098799,58336817460025984],[163855,32772,-3950606208609134,-3950603830801022],[163855,32775,-3950606208609134,-3950603830801022],[163855,32776,-35792211250117282,-35792205376239611],[163855,32779,-35792211250117282,-35792205376239611],[163855,32781,-45089212389398762,-45089203086137004],[163855,32782,58336806904098799,58336817460025984],[163855,131073,58336806904098799,58336817460025984],[163855,131074,-45089212389398762,-45089203086137004],[163855,131076,-35792211250117282,-35792205376239611],[163855,131079,-35792211250117282,-35792205376239611],[163855,131080,-3950606208609134,-3950603830801022],[163855,131083,-3950606208609134,-3950603830801022],[163855,131085,58336806904098799,58336817460025984],[163855,131086,-45089212389398762,-45089203086137004],[163855,163840,26495207616089156,26495210161088876],[163855,163843,79485623483927954,79485629847606148],[163855,163845,-3950606212356198,-3950603827053960],[163855,163846,-35792211241229472,-35792205385127423],[163855,163849,-35792211241229472,-35792205385127423],[163855,163850,-3950606212356198,-3950603827053960],[163855,163852,26495207628724032,26495210148454004],[163906,32770,-4648501976324875,-4648497448264558],[163906,32782,24519905280236082,24519907477236870],[163906,32832,4648497448264558,4648501976324875],[163906,32844,-24519907477236870,-24519905280236082],[163906,32906,24519905258499972,24519907498972975],[163906,32968,-24519907498972975,-24519905258499972],[163906,131074,4648497448264558,4648501976324875],[163906,131086,-24519907477236870,-24519905280236082],[163906,131136,-4648501976324875,-4648497448264558],[163906,131148,24519905280236082,24519907477236870],[163906,131210,-24519907498972975,-24519905258499972],[163906,131272,24519905258499972,24519907498972975],[163908,78,-28470513122209439,-28470509674673669],[163908,204,-49039814477679612,-49039811037266288],[163908,32775,-1975303102468593,-1975301917236486],[163908,32782,19871405028479484,19871408304404039],[163908,32835,1975301917236486,1975303102468593],[163908,32842,8599101370269630,8599108093729955],[163908,32908,37767509188400696,37767512457661269],[163908,32968,11272298579605019,11272305289278916],[163908,131079,1975301917236486,1975303102468593],[163908,131086,8599101370269630,8599108093729955],[163908,131139,-1975303102468593,-1975301917236486],[163908,131146,19871405028479484,19871408304404039],[163908,131212,11272298579605019,11272305289278916],[163908,131272,37767509188400696,37767512457661269],[163908,163850,-28470513122209439,-28470509674673669],[163908,163976,-49039814477679612,-49039811037266288],[163908,524484,-1975303134589986,-1975301885115096],[163908,557248,1975301885115096,1975303134589986],[163908,655492,1975301885115096,1975303134589986],[163908,688256,-1975303134589986,-1975301885115096],[163911,32770,-1975303102468593,-1975301917236486],[163911,32775,-1975303102468593,-1975301917236486],[163911,32832,1975301917236486,1975303102468593],[163911,32837,1975301917236486,1975303102468593],[163911,131074,1975301917236486,1975303102468593],[163911,131079,1975301917236486,1975303102468593],[163911,131136,-1975303102468593,-1975301917236486],[163911,131141,-1975303102468593,-1975301917236486],[163912,6,3950603780638034,3950606258772122],[163912,78,28470509674673669,28470513122209439],[163912,132,45089206505908288,45089208969627452],[163912,204,49039811037266288,49039814477679612],[163912,32776,8599101150291472,8599108313708112],[163912,32779,-1975303102468593,-1975301917236486],[163912,32782,-17896106317239678,-17896101995938767],[163912,32832,-8599108313708112,-8599101150291472],[163912,32835,1975301917236486,1975303102468593],[163912,32838,-6623803284297315,-6623801159997192],[163912,32906,-8599108313708112,-8599101150291472],[163912,32908,-15222909115368599,-15222904792925496],[163912,32962,8599101150291472,8599108313708112],[163912,32964,11272300873839524,11272302995044411],[163912,33034,-4648500337554984,-4648499087034444],[163912,33090,4648499087034444,4648500337554984],[163912,33160,13247603822433492,13247605066155522],[163912,33216,-13247605066155522,-13247603822433492],[163912,33928,-1975303102468593,-1975301917236486],[163912,33984,1975301917236486,1975303102468593],[163912,131080,-8599108313708112,-8599101150291472],[163912,131083,1975301917236486,1975303102468593],[163912,131086,-6623803284297315,-6623801159997192],[163912,131136,8599101150291472,8599108313708112],[163912,131139,-1975303102468593,-1975301917236486],[163912,131142,-17896106317239678,-17896101995938767],[163912,131210,8599101150291472,8599108313708112],[163912,131212,11272300873839524,11272302995044411],[163912,131266,-8599108313708112,-8599101150291472],[163912,131268,-15222909115368599,-15222904792925496],[163912,131338,4648499087034444,4648500337554984],[163912,131394,-4648500337554984,-4648499087034444],[163912,131464,-13247605066155522,-13247603822433492],[163912,131520,13247603822433492,13247605066155522],[163912,132232,1975301917236486,1975303102468593],[163912,132288,-1975303102468593,-1975301917236486],[163912,163846,28470509674673669,28470513122209439],[163912,163918,3950603780638034,3950606258772122],[163912,163972,49039811037266288,49039814477679612],[163912,164044,45089206505908288,45089208969627452],[163912,524290,-1975303134066535,-1975301885638543],[163912,524362,-1975303134066535,-1975301885638543],[163912,524416,-22544604485915178,-22544603251852693],[163912,524488,-20569302600800082,-20569300117262707],[163912,557192,24519904596394939,24519908161078011],[163912,557248,-26495210200067732,-26495207577110300],[163912,655496,-26495210200067732,-26495207577110300],[163912,655552,24519904596394939,24519908161078011],[163912,688130,-1975303134066535,-1975301885638543],[163912,688202,-1975303134066535,-1975301885638543],[163912,688256,-20569302600800082,-20569300117262707],[163912,688328,-22544604485915178,-22544603251852693],[163912,67108866,-1975303130040923,-1975301889664154],[163912,67108938,-1975303130040923,-1975301889664154],[163912,67108992,-22544604489700504,-22544603248067364],[163912,67109064,-22544604489700504,-22544603248067364],[163912,67272706,-1975303130040923,-1975301889664154],[163912,67272778,-1975303130040923,-1975301889664154],[163912,67272832,-22544604489700504,-22544603248067364],[163912,67272904,-22544604489700504,-22544603248067364],[163912,1073741826,1975301889664154,1975303130040923],[163912,1073741898,1975301889664154,1975303130040923],[163912,1073741952,22544603248067364,22544604489700504],[163912,1073742024,22544603248067364,22544604489700504],[163912,1073905666,1975301889664154,1975303130040923],[163912,1073905738,1975301889664154,1975303130040923],[163912,1073905792,22544603248067364,22544604489700504],[163912,1073905864,22544603248067364,22544604489700504],[163915,32769,4648499087034444,4648500337554984],[163915,32770,-6623803284297315,-6623801159997192],[163915,32779,-1975303102468593,-1975301917236486],[163915,32832,1975301917236486,1975303102468593],[163915,32841,6623801159997192,6623803284297315],[163915,32842,-4648500337554984,-4648499087034444],[163915,131073,-4648500337554984,-4648499087034444],[163915,131074,6623801159997192,6623803284297315],[163915,131083,1975301917236486,1975303102468593],[163915,131136,-1975303102468593,-1975301917236486],[163915,131145,-6623803284297315,-6623801159997192],[163915,131146,4648499087034444,4648500337554984],[163918,6,3950603780638034,3950606258772122],[163918,68,-3950606258772122,-3950603780638034],[163918,32770,22544601452067054,22544606285700820],[163918,32782,26495207710839176,26495210066338854],[163918,32832,-22544606285700820,-22544601452067054],[163918,32844,-26495210066338854,-26495207710839176],[163918,131074,-26495210066338854,-26495207710839176],[163918,131086,-22544606285700820,-22544601452067054],[163918,131136,26495207710839176,26495210066338854],[163918,131148,22544601452067054,22544606285700820],[163918,163850,-3950606258772122,-3950603780638034],[163918,163912,3950603780638034,3950606258772122],[163969,12,66238019708364176,66238024734580898],[163969,32779,-6623803284297315,-6623801159997192],[163969,32781,17198204925419946,17198214002579226],[163969,32906,6623801159997192,6623803284297315],[163969,32908,49039810732001672,49039814782944230],[163969,131083,6623801159997192,6623803284297315],[163969,131085,49039810732001672,49039814782944230],[163969,131210,-6623803284297315,-6623801159997192],[163969,131212,17198204925419946,17198214002579226],[163969,163981,66238019708364176,66238024734580898],[163969,524292,13247603822461068,13247605066127948],[163969,557061,13247603822461068,13247605066127948],[163969,655492,13247603822461068,13247605066127948],[163969,688261,13247603822461068,13247605066127948],[163970,0,22544602948688426,22544604789079442],[163970,12,-77510327129120619,-77510321182708389],[163970,130,11272301474344213,11272302394539721],[163970,142,-49039814917723134,-49039810597222762],[163970,32770,15920798744910351,15920804548563011],[163970,32779,6623801159997192,6623803284297315],[163970,32782,-24519908352868090,-24519904404604862],[163970,32842,-17896106400955991,-17896101912222451],[163970,32896,-4648502614033929,-4648496810555499],[163970,32905,-6623803284297315,-6623801159997192],[163970,32908,-3950606995955408,-3950603043454752],[163970,32968,17896101912222451,17896106400955991],[163970,33802,-6623803284297315,-6623801159997192],[163970,33928,6623801159997192,6623803284297315],[163970,131074,-4648502614033929,-4648496810555499],[163970,131083,-6623803284297315,-6623801159997192],[163970,131086,-3950606995955408,-3950603043454752],[163970,131146,17896101912222451,17896106400955991],[163970,131200,15920798744910351,15920804548563011],[163970,131209,6623801159997192,6623803284297315],[163970,131212,-24519908352868090,-24519904404604862],[163970,131272,-17896106400955991,-17896101912222451],[163970,132106,6623801159997192,6623803284297315],[163970,132232,-6623803284297315,-6623801159997192],[163970,163840,11272301474344213,11272302394539721],[163970,163852,-49039814917723134,-49039810597222762],[163970,163970,22544602948688426,22544604789079442],[163970,163982,-77510327129120619,-77510321182708389],[163970,524296,11272300226701508,11272303642182425],[163970,524426,24519905292829456,24519907464643493],[163970,557066,-49039814989147174,-49039810525798726],[163970,557192,35792206070739152,35792210555617732],[163970,655370,35792206070739152,35792210555617732],[163970,655496,-49039814989147174,-49039810525798726],[163970,688136,24519905292829456,24519907464643493],[163970,688266,11272300226701508,11272303642182425],[163970,67108872,24519905293069738,24519907464403207],[163970,67109002,24519905293069738,24519907464403207],[163970,67272712,24519905293069738,24519907464403207],[163970,67272842,24519905293069738,24519907464403207],[163970,1073741832,-24519907464403207,-24519905293069738],[163970,1073741962,-24519907464403207,-24519905293069738],[163970,1073905672,-24519907464403207,-24519905293069738],[163970,1073905802,-24519907464403207,-24519905293069738],[163972,0,33237389689794910,33237395667510356],[163972,9,-39742815043973846,-39742811621793198],[163972,132,22544597683462214,22544610054305668],[163972,142,1975300950242052,1975304069463026],[163972,204,49039811037266288,49039814477679612],[163972,1164,28470509817570824,28470512979312287],[163972,32772,-12549714288599261,-12549705214810465],[163972,32781,11272298183630328,11272305685253609],[163972,32782,-13247605939232943,-13247602949356073],[163972,32844,-37767512457661269,-37767509188400696],[163972,32896,23242489006570695,23242508116376415],[163972,32905,-51015117307046807,-51015113227604174],[163972,32906,11272298879893047,11272304988990891],[163972,32968,-11272305289278916,-11272298579605019],[163972,33804,-19871408102400732,-19871405230482798],[163972,33928,-8599107748829489,-8599101715170092],[163972,131076,23242489006570695,23242508116376415],[163972,131085,-51015117307046807,-51015113227604174],[163972,131086,11272298879893047,11272304988990891],[163972,131148,-11272305289278916,-11272298579605019],[163972,131200,-12549714288599261,-12549705214810465],[163972,131209,11272298183630328,11272305685253609],[163972,131210,-13247605939232943,-13247602949356073],[163972,131272,-37767512457661269,-37767509188400696],[163972,132108,-8599107748829489,-8599101715170092],[163972,132232,-19871408102400732,-19871405230482798],[163972,163840,22544597683462214,22544610054305668],[163972,163850,1975300950242052,1975304069463026],[163972,163912,49039811037266288,49039814477679612],[163972,163972,33237389689794910,33237395667510356],[163972,163981,-39742815043973846,-39742811621793198],[163972,164872,28470509817570824,28470512979312287],[163972,524289,-13247605066127948,-13247603822461068],[163972,524296,20569298570795129,20569304147267651],[163972,524428,43113898635137411,43113911820693235],[163972,524484,1975301885115096,1975303134589986],[163972,525444,1975301908323058,1975303111382023],[163972,557061,-13247605066127948,-13247603822461068],[163972,557068,-75535024800832972,-75535018491290962],[163972,557192,52990410196249260,52990425358106808],[163972,557248,-1975303134589986,-1975301885115096],[163972,558208,-1975303111382023,-1975301908323058],[163972,655372,52990410196249260,52990425358106808],[163972,655428,-1975303134589986,-1975301885115096],[163972,655489,-13247605066127948,-13247603822461068],[163972,655496,-75535024800832972,-75535018491290962],[163972,656388,-1975303111382023,-1975301908323058],[163972,688136,43113898635137411,43113911820693235],[163972,688192,1975301885115096,1975303134589986],[163972,688261,-13247605066127948,-13247603822461068],[163972,688268,20569298570795129,20569304147267651],[163972,689152,1975301908323058,1975303111382023],[163972,1572996,22544603293425280,22544604444342592],[163972,1605760,-22544604444342592,-22544603293425280],[163972,1703940,-22544604444342592,-22544603293425280],[163972,1736704,22544603293425280,22544604444342592],[163972,67108872,47064508673192612,47064511822048211],[163972,67109004,-3950608765320955,-3950601274089200],[163972,67141768,51015113096137411,51015117438513567],[163972,67239948,51015113096137411,51015117438513567],[163972,67272712,-3950608765320955,-3950601274089200],[163972,67272844,47064508673192612,47064511822048211],[163972,67633284,-3950606120324188,-3950603919085972],[163972,67666048,3950603919085972,3950606120324188],[163972,67764228,3950603919085972,3950606120324188],[163972,67796992,-3950606120324188,-3950603919085972],[163972,268959876,1975301877105131,1975303142599947],[163972,268992640,-1975303142599947,-1975301877105131],[163972,269090820,-1975303142599947,-1975301877105131],[163972,269123584,1975301877105131,1975303142599947],[163972,1073741832,-7321700200255013,-7321693629218766],[163972,1073741964,-47064511822048211,-47064508673192612],[163972,1073774604,39742811621793198,39742815043973846],[163972,1073873032,39742811621793198,39742815043973846],[163972,1073905672,-47064511822048211,-47064508673192612],[163972,1073905804,-7321700200255013,-7321693629218766],[163972,1074266112,13247603822461068,13247605066127948],[163972,1074298884,13247603822461068,13247605066127948],[163972,1074397312,13247603822461068,13247605066127948],[163972,1074430084,13247603822461068,13247605066127948],[163976,0,75535017304359926,75535025987764002],[163976,6,47064508847957192,47064511647283630],[163976,68,-45089208969627452,-45089206505908288],[163976,136,49039808003270598,49039817511675298],[163976,141,13247603811716528,13247605076872486],[163976,142,22544602318599624,22544605419168246],[163976,204,-49039814477679612,-49039811037266288],[163976,1028,-3950606212356198,-3950603827053960],[163976,1164,-28470512979312287,-28470509817570824],[163976,32776,-245506516979052740,-245506452671352604],[163976,32781,-26495209992202640,-26495207784975390],[163976,32782,13247602285191671,13247606603397346],[163976,32842,28470509608204269,28470513188678840],[163976,32844,15222904792925496,15222909115368599],[163976,32896,272001667572402980,272001719855180396],[163976,32901,13247603822461068,13247605066127948],[163976,32902,11272299936568599,11272303932315336],[163976,32962,-28470513188678840,-28470509608204269],[163976,32964,-11272302995044411,-11272300873839524],[163976,33802,11272300873839524,11272302995044411],[163976,33804,17896102112215810,17896106200962633],[163976,33864,-11272302995044411,-11272300873839524],[163976,33922,-11272302995044411,-11272300873839524],[163976,33924,6623801213223040,6623803231071470],[163976,33984,11272300873839524,11272302995044411],[163976,131080,272001667572402980,272001719855180396],[163976,131085,13247603822461068,13247605066127948],[163976,131086,11272299936568599,11272303932315336],[163976,131146,-28470513188678840,-28470509608204269],[163976,131148,-11272302995044411,-11272300873839524],[163976,131200,-245506516979052740,-245506452671352604],[163976,131205,-26495209992202640,-26495207784975390],[163976,131206,13247602285191671,13247606603397346],[163976,131266,28470509608204269,28470513188678840],[163976,131268,15222904792925496,15222909115368599],[163976,132106,-11272302995044411,-11272300873839524],[163976,132108,6623801213223040,6623803231071470],[163976,132168,11272300873839524,11272302995044411],[163976,132226,11272300873839524,11272302995044411],[163976,132228,17896102112215810,17896106200962633],[163976,132288,-11272302995044411,-11272300873839524],[163976,163840,49039808003270598,49039817511675298],[163976,163845,13247603811716528,13247605076872486],[163976,163846,22544602318599624,22544605419168246],[163976,163908,-49039814477679612,-49039811037266288],[163976,163976,75535017304359926,75535025987764002],[163976,163982,47064508847957192,47064511647283630],[163976,164044,-45089208969627452,-45089206505908288],[163976,164868,-28470512979312287,-28470509817570824],[163976,165004,-3950606212356198,-3950603827053960],[163976,524290,-9297000663454110,-9296998185724745],[163976,524292,-69609119710487749,-69609108522520937],[163976,524352,22544603251852693,22544604485915178],[163976,524426,-22544604485915178,-22544603251852693],[163976,524428,-47064513169575377,-47064507325665441],[163976,524488,20569300117262707,20569302600800082],[163976,525312,1975301912872117,1975303106832961],[163976,525448,-1198509906,1198509903],[163976,557066,51015113006242213,51015117528408767],[163976,557068,52990410196249260,52990425358106808],[163976,557128,-37767513094879325,-37767508551182639],[163976,557186,-37767513094879325,-37767508551182639],[163976,557188,-75535026014509906,-75535017277614030],[163976,557248,39742811531898000,39742815133869046],[163976,558088,-22544606026397046,-22544601711370820],[163976,558208,24519904668878218,24519908088594729],[163976,655370,-37767513094879325,-37767508551182639],[163976,655372,-75535026014509906,-75535017277614030],[163976,655432,39742811531898000,39742815133869046],[163976,655490,51015113006242213,51015117528408767],[163976,655492,52990410196249260,52990425358106808],[163976,655552,-37767513094879325,-37767508551182639],[163976,656392,24519904668878218,24519908088594729],[163976,656512,-22544606026397046,-22544601711370820],[163976,688130,-22544604485915178,-22544603251852693],[163976,688132,-47064513169575377,-47064507325665441],[163976,688192,20569300117262707,20569302600800082],[163976,688266,-9297000663454110,-9296998185724745],[163976,688268,-69609119710487749,-69609108522520937],[163976,688328,22544603251852693,22544604485915178],[163976,689152,-1198509906,1198509903],[163976,689288,1975301912872117,1975303106832961],[163976,1573000,-22544604444342592,-22544603293425280],[163976,1605640,24519905343287280,24519907414185673],[163976,1605760,-1975303111382023,-1975301908323058],[163976,1703944,-1975303111382023,-1975301908323058],[163976,1704064,24519905343287280,24519907414185673],[163976,1736704,-22544604444342592,-22544603293425280],[163976,67108866,-22544604489700504,-22544603248067364],[163976,67108868,-3950606237024947,-3950603802385214],[163976,67108928,22544603248067364,22544604489700504],[163976,67109002,-22544604489700504,-22544603248067364],[163976,67109004,-1975303102434961,-1975301917270118],[163976,67109064,22544603248067364,22544604489700504],[163976,67109888,1975301917270118,1975303102434961],[163976,67110024,1975301917270118,1975303102434961],[163976,67141644,51015113096137411,51015117438513567],[163976,67141764,-52990419959304000,-52990415595052060],[163976,67239948,-52990419959304000,-52990415595052060],[163976,67240068,51015113096137411,51015117438513567],[163976,67272706,-22544604489700504,-22544603248067364],[163976,67272708,-1975303102434961,-1975301917270118],[163976,67272768,22544603248067364,22544604489700504],[163976,67272842,-22544604489700504,-22544603248067364],[163976,67272844,-3950606237024947,-3950603802385214],[163976,67272904,22544603248067364,22544604489700504],[163976,67273728,1975301917270118,1975303102434961],[163976,67273864,1975301917270118,1975303102434961],[163976,67633152,31841601898078136,31841604688868588],[163976,67633288,22544602310993060,22544605426774810],[163976,67665928,-1975304733296088,-1975300286408991],[163976,67666048,11272299869063941,11272303999819992],[163976,67764232,11272299869063941,11272303999819992],[163976,67764352,-1975304733296088,-1975300286408991],[163976,67796992,22544602310993060,22544605426774810],[163976,67797128,31841601898078136,31841604688868588],[163976,268959880,-1975303142599947,-1975301877105131],[163976,268992520,-11272303070687196,-11272300798196740],[163976,268992640,13247603786922062,13247605101666952],[163976,269090824,13247603786922062,13247605101666952],[163976,269090944,-11272303070687196,-11272300798196740],[163976,269123584,-1975303142599947,-1975301877105131],[163976,1073741826,22544603248067364,22544604489700504],[163976,1073741828,1975301917270118,1975303102434961],[163976,1073741888,-22544604489700504,-22544603248067364],[163976,1073741962,22544603248067364,22544604489700504],[163976,1073741964,15222905739731186,15222908168562909],[163976,1073742024,-22544604489700504,-22544603248067364],[163976,1073742848,-1975303102434961,-1975301917270118],[163976,1073742984,-1975303102434961,-1975301917270118],[163976,1073774604,-52990419959304000,-52990415595052060],[163976,1073774724,39742811621793198,39742815043973846],[163976,1073872908,39742811621793198,39742815043973846],[163976,1073873028,-52990419959304000,-52990415595052060],[163976,1073905666,22544603248067364,22544604489700504],[163976,1073905668,15222905739731186,15222908168562909],[163976,1073905728,-22544604489700504,-22544603248067364],[163976,1073905802,22544603248067364,22544604489700504],[163976,1073905804,1975301917270118,1975303102434961],[163976,1073905864,-22544604489700504,-22544603248067364],[163976,1073906688,-1975303102434961,-1975301917270118],[163976,1073906824,-1975303102434961,-1975301917270118],[163976,1074266112,-45089208971600236,-45089206503935504],[163976,1074266248,-18594000573832936,-18593997124524774],[163976,1074298888,-2193017775,2193017774],[163976,1074299008,-26495209977993164,-26495207799184865],[163976,1074397192,-26495209977993164,-26495207799184865],[163976,1074397312,-2193017775,2193017774],[163976,1074429952,-18594000573832936,-18593997124524774],[163976,1074430088,-45089208971600236,-45089206503935504],[163976,1140883464,28470509691254389,28470513105628714],[163976,1140883584,-28470513105628714,-28470509691254389],[163976,1140981768,-28470513105628714,-28470509691254389],[163976,1140981888,28470509691254389,28470513105628714],[163979,32769,-13247605066155522,-13247603822433492],[163979,32770,13247603822433492,13247605066155522],[163979,32905,-13247605066155522,-13247603822433492],[163979,32906,13247603822433492,13247605066155522],[163979,131073,13247603822433492,13247605066155522],[163979,131074,-13247605066155522,-13247603822433492],[163979,131209,13247603822433492,13247605066155522],[163979,131210,-13247605066155522,-13247603822433492],[163981,9,-39742815043973846,-39742811621793198],[163981,12,66238019708364176,66238024734580898],[163981,129,26495207648534336,26495210128643692],[163981,132,-39742815043973846,-39742811621793198],[163981,141,13247603811716528,13247605076872486],[163981,32769,1975301917236486,1975303102468593],[163981,32772,-1975303102468593,-1975301917236486],[163981,32776,-24519908074966154,-24519904682506797],[163981,32781,1975301917236486,1975303102468593],[163981,32896,11272300719992475,11272303148891462],[163981,32901,-1975303102468593,-1975301917236486],[163981,32905,-24519908074966154,-24519904682506797],[163981,32908,11272300719992475,11272303148891462],[163981,131073,11272300719992475,11272303148891462],[163981,131076,-24519908074966154,-24519904682506797],[163981,131080,-1975303102468593,-1975301917236486],[163981,131085,11272300719992475,11272303148891462],[163981,131200,1975301917236486,1975303102468593],[163981,131205,-24519908074966154,-24519904682506797],[163981,131209,-1975303102468593,-1975301917236486],[163981,131212,1975301917236486,1975303102468593],[163981,163840,13247603811716528,13247605076872486],[163981,163849,-39742815043973846,-39742811621793198],[163981,163852,26495207648534336,26495210128643692],[163981,163969,66238019708364176,66238024734580898],[163981,163972,-39742815043973846,-39742811621793198],[163982,6,47064508847957192,47064511647283630],[163982,12,-77510327129120619,-77510321182708389],[163982,132,5925906124214463,5925908934900775],[163982,142,-24519907169816619,-24519905587656329],[163982,32770,-22544606585988845,-22544601151779026],[163982,32772,8599103952864898,8599105511134688],[163982,32776,19871400888629471,19871412444254049],[163982,32782,-24519907697962539,-24519905059510412],[163982,32896,18593996124609637,18594001573748076],[163982,32902,57638914684866570,57638920294078918],[163982,32906,15920800076521641,15920803216951721],[163982,32908,-24519907696178166,-24519905061294785],[163982,131074,-24519907696178166,-24519905061294785],[163982,131076,15920800076521641,15920803216951721],[163982,131080,57638914684866570,57638920294078918],[163982,131086,18593996124609637,18594001573748076],[163982,131200,-24519907697962539,-24519905059510412],[163982,131206,19871400888629471,19871412444254049],[163982,131210,8599103952864898,8599105511134688],[163982,131212,-22544606585988845,-22544601151779026],[163982,163840,-24519907169816619,-24519905587656329],[163982,163850,5925906124214463,5925908934900775],[163982,163970,-77510327129120619,-77510321182708389],[163982,163976,47064508847957192,47064511647283630],[164032,32832,6623797698355075,6623806745939431],[164032,32842,-6623803346277521,-6623801098016984],[164032,32844,-3950606120324188,-3950603919085972],[164032,32896,-6623806745939431,-6623797698355075],[164032,32906,6623801098016984,6623803346277521],[164032,32908,3950603919085972,3950606120324188],[164032,131136,-6623806745939431,-6623797698355075],[164032,131146,6623801098016984,6623803346277521],[164032,131148,3950603919085972,3950606120324188],[164032,131200,6623797698355075,6623806745939431],[164032,131210,-6623803346277521,-6623801098016984],[164032,131212,-3950606120324188,-3950603919085972],[164042,32770,26495207590564460,26495210186613570],[164042,32832,-22544606464959780,-22544601272808088],[164042,32842,3950603721653790,3950606317756372],[164042,32896,-3950606317756372,-3950603721653790],[164042,32906,22544601272808088,22544606464959780],[164042,32968,-26495210186613570,-26495207590564460],[164042,131074,-26495210186613570,-26495207590564460],[164042,131136,22544601272808088,22544606464959780],[164042,131146,-3950606317756372,-3950603721653790],[164042,131200,3950603721653790,3950606317756372],[164042,131210,-22544606464959780,-22544601272808088],[164042,131272,26495207590564460,26495210186613570],[164044,68,-45089208969627452,-45089206505908288],[164044,132,45089206505908288,45089208969627452],[164044,32832,18593996439502170,18594001258855540],[164044,32844,-26495210066406118,-26495207710771912],[164044,32896,-18594001258855540,-18593996439502170],[164044,32908,26495207710771912,26495210066406118],[164044,131136,26495207710771912,26495210066406118],[164044,131148,-18594001258855540,-18593996439502170],[164044,131200,-26495210066406118,-26495207710771912],[164044,131212,18593996439502170,18594001258855540],[164044,163912,45089206505908288,45089208969627452],[164044,163976,-45089208969627452,-45089206505908288],[164104,32842,4648499087034444,4648500337554984],[164104,32968,-13247605066155522,-13247603822433492],[164104,33090,-4648500337554984,-4648499087034444],[164104,33216,13247603822433492,13247605066155522],[164104,33928,1975301917236486,1975303102468593],[164104,34176,-1975303102468593,-1975301917236486],[164104,131146,-4648500337554984,-4648499087034444],[164104,131272,13247603822433492,13247605066155522],[164104,131394,4648499087034444,4648500337554984],[164104,131520,-13247605066155522,-13247603822433492],[164104,132232,-1975303102468593,-1975301917236486],[164104,132480,1975301917236486,1975303102468593],[164170,32832,4648499087034444,4648500337554984],[164170,32842,4648499087034444,4648500337554984],[164170,33024,-4648500337554984,-4648499087034444],[164170,33034,-4648500337554984,-4648499087034444],[164170,131136,-4648500337554984,-4648499087034444],[164170,131146,-4648500337554984,-4648499087034444],[164170,131328,4648499087034444,4648500337554984],[164170,131338,4648499087034444,4648500337554984],[164296,32832,-13247605066155522,-13247603822433492],[164296,32968,-13247605066155522,-13247603822433492],[164296,33024,13247603822433492,13247605066155522],[164296,33160,13247603822433492,13247605066155522],[164296,131136,13247603822433492,13247605066155522],[164296,131272,13247603822433492,13247605066155522],[164296,131328,-13247605066155522,-13247603822433492],[164296,131464,-13247605066155522,-13247603822433492],[164866,32906,6623801159997192,6623803284297315],[164866,33928,-6623803284297315,-6623801159997192],[164866,131210,-6623803284297315,-6623801159997192],[164866,132232,6623801159997192,6623803284297315],[164868,1164,-28470512979312287,-28470509817570824],[164868,32908,19871405230482798,19871408102400732],[164868,33928,8599101715170092,8599107748829489],[164868,131212,8599101715170092,8599107748829489],[164868,132232,19871405230482798,19871408102400732],[164868,163976,-28470512979312287,-28470509817570824],[164868,525444,-1975303111382023,-1975301908323058],[164868,558208,1975301908323058,1975303111382023],[164868,655492,1975301908323058,1975303111382023],[164868,688256,-1975303111382023,-1975301908323058],[164868,1573892,-22544604444342592,-22544603293425280],[164868,1606656,22544603293425280,22544604444342592],[164868,1703940,22544603293425280,22544604444342592],[164868,1736704,-22544604444342592,-22544603293425280],[164872,132,3950603827053960,3950606212356198],[164872,1164,28470509817570824,28470512979312287],[164872,32776,-4648501315670959,-4648498108918473],[164872,32906,-11272302995044411,-11272300873839524],[164872,32908,-17896106200962633,-17896102112215810],[164872,32968,13247603822433492,13247605066155522],[164872,33160,-1975303102468593,-1975301917236486],[164872,33792,4648498108918473,4648501315670959],[164872,33922,11272300873839524,11272302995044411],[164872,33924,-6623803231071470,-6623801213223040],[164872,33984,-13247605066155522,-13247603822433492],[164872,34176,1975301917236486,1975303102468593],[164872,34952,-1975303104304567,-1975301915400511],[164872,35968,1975301915400511,1975303104304567],[164872,131080,4648498108918473,4648501315670959],[164872,131210,11272300873839524,11272302995044411],[164872,131212,-6623803231071470,-6623801213223040],[164872,131272,-13247605066155522,-13247603822433492],[164872,131464,1975301917236486,1975303102468593],[164872,132096,-4648501315670959,-4648498108918473],[164872,132226,-11272302995044411,-11272300873839524],[164872,132228,-17896106200962633,-17896102112215810],[164872,132288,13247603822433492,13247605066155522],[164872,132480,-1975303102468593,-1975301917236486],[164872,133256,1975301915400511,1975303104304567],[164872,134272,-1975303104304567,-1975301915400511],[164872,163972,28470509817570824,28470512979312287],[164872,165004,3950603827053960,3950606212356198],[164872,524416,-1975303106832961,-1975301912872117],[164872,525448,-1198509903,1198509906],[164872,557192,24519904668878218,24519908088594729],[164872,558208,-26495210150792412,-26495207626385616],[164872,655496,-26495210150792412,-26495207626385616],[164872,656512,24519904668878218,24519908088594729],[164872,688256,-1198509903,1198509906],[164872,689288,-1975303106832961,-1975301912872117],[164872,1081480,-1975303111382023,-1975301908323058],[164872,1082496,1975301908323058,1975303111382023],[164872,1179784,1975301908323058,1975303111382023],[164872,1180800,-1975303111382023,-1975301908323058],[164872,1573896,22544603293425280,22544604444342592],[164872,1605640,-24519907414185673,-24519905343287280],[164872,1606656,1975301908323058,1975303111382023],[164872,1703944,1975301908323058,1975303111382023],[164872,1704960,-24519907414185673,-24519905343287280],[164872,1736704,22544603293425280,22544604444342592],[164872,67108992,-1975303102434961,-1975301917270118],[164872,67110024,-1975303102434961,-1975301917270118],[164872,67272832,-1975303102434961,-1975301917270118],[164872,67273864,-1975303102434961,-1975301917270118],[164872,1073741952,1975301917270118,1975303102434961],[164872,1073742984,1975301917270118,1975303102434961],[164872,1073905792,1975301917270118,1975303102434961],[164872,1073906824,1975301917270118,1975303102434961],[164992,32896,-9297003724271436,-9296995124907418],[164992,32908,24519905343287280,24519907414185673],[164992,33792,9296995124907418,9297003724271436],[164992,33804,-24519907414185673,-24519905343287280],[164992,131200,9296995124907418,9297003724271436],[164992,131212,-24519907414185673,-24519905343287280],[164992,132096,-9297003724271436,-9296995124907418],[164992,132108,24519905343287280,24519907414185673],[164992,1605760,24519905343287280,24519907414185673],[164992,1606656,-24519907414185673,-24519905343287280],[164992,1704064,-24519907414185673,-24519905343287280],[164992,1704960,24519905343287280,24519907414185673],[165002,32896,-4648500337554984,-4648499087034444],[165002,32906,-4648500337554984,-4648499087034444],[165002,33792,4648499087034444,4648500337554984],[165002,33802,4648499087034444,4648500337554984],[165002,131200,4648499087034444,4648500337554984],[165002,131210,4648499087034444,4648500337554984],[165002,132096,-4648500337554984,-4648499087034444],[165002,132106,-4648500337554984,-4648499087034444],[165004,132,3950603827053960,3950606212356198],[165004,1028,-3950606212356198,-3950603827053960],[165004,32896,22544601541194970,22544606196572912],[165004,32908,26495207753551168,26495210023626872],[165004,33792,-22544606196572912,-22544601541194970],[165004,33804,-26495210023626872,-26495207753551168],[165004,131200,-26495210023626872,-26495207753551168],[165004,131212,-22544606196572912,-22544601541194970],[165004,132096,26495207753551168,26495210023626872],[165004,132108,22544601541194970,22544606196572912],[165004,163976,-3950606212356198,-3950603827053960],[165004,164872,3950603827053960,3950606212356198],[165064,32832,1975301917236486,1975303102468593],[165064,32896,11272300873839524,11272302995044411],[165064,32968,13247603822433492,13247605066155522],[165064,33792,-13247605066155522,-13247603822433492],[165064,33864,-11272302995044411,-11272300873839524],[165064,33928,-1975303102468593,-1975301917236486],[165064,131136,-1975303102468593,-1975301917236486],[165064,131200,-11272302995044411,-11272300873839524],[165064,131272,-13247605066155522,-13247603822433492],[165064,132096,13247603822433492,13247605066155522],[165064,132168,11272300873839524,11272302995044411],[165064,132232,1975301917236486,1975303102468593],[165256,33024,-1975303102468593,-1975301917236486],[165256,33160,-1975303102468593,-1975301917236486],[165256,33792,1975301917236486,1975303102468593],[165256,33928,1975301917236486,1975303102468593],[165256,131328,1975301917236486,1975303102468593],[165256,131464,1975301917236486,1975303102468593],[165256,132096,-1975303102468593,-1975301917236486],[165256,132232,-1975303102468593,-1975301917236486],[165896,33928,1975301915400511,1975303104304567],[165896,35968,-1975303104304567,-1975301915400511],[165896,132232,-1975303104304567,-1975301915400511],[165896,134272,1975301915400511,1975303104304567],[167048,33792,1975301915400511,1975303104304567],[167048,33928,1975301915400511,1975303104304567],[167048,34816,-1975303104304567,-1975301915400511],[167048,34952,-1975303104304567,-1975301915400511],[167048,132096,-1975303104304567,-1975301915400511],[167048,132232,-1975303104304567,-1975301915400511],[167048,133120,1975301915400511,1975303104304567],[167048,133256,1975301915400511,1975303104304567],[524289,10,-8599108332258679,-8599101131740910],[524289,12,3950601587495984,3950608451914177],[524289,66,4648497899071108,4648501525518317],[524289,130,6623797717533688,6623806726760819],[524289,132,1975300413869816,1975304605835260],[524289,136,-11272305272819252,-11272298596064681],[524289,142,18593996442899990,18594001255457720],[524289,192,4648498045480103,4648501379109328],[524289,198,1975301889643525,1975303130061553],[524289,202,-22544606473695306,-22544601264072564],[524289,204,1975301889643525,1975303130061553],[524289,450,-13247605033203059,-13247603855385956],[524289,1162,1975301917236486,1975303102468593],[524289,1164,22544603307191776,22544604430576096],[524289,1218,1975301917270118,1975303102434961],[524289,32772,-13247606122936882,-13247602765652131],[524289,32908,-13247605066127948,-13247603822461068],[524289,131074,4648497449753834,4648501974835595],[524289,131076,3950600812107830,3950609227302328],[524289,131080,-8599108077216494,-8599101386783086],[524289,131086,-22544606281953756,-22544601455814116],[524289,131146,4648499056652180,4648500367937249],[524289,131210,-22544606469793008,-22544601267974862],[524289,131212,49039810287641238,49039815227304660],[524289,131266,4648499056652180,4648500367937249],[524289,163840,1975300803621296,1975304216083780],[524289,163846,1975301917270118,1975303102434961],[524289,163850,1975301917270118,1975303102434961],[524289,163852,18593996485739860,18594001212617856],[524289,163972,-13247605066127948,-13247603822461068],[524289,524299,-8599108332258679,-8599101131740910],[524289,524301,3950601587495984,3950608451914177],[524289,524355,4648497899071108,4648501525518317],[524289,524419,6623797717533688,6623806726760819],[524289,524421,1975300413869816,1975304605835260],[524289,524425,-11272305272819252,-11272298596064681],[524289,524431,18593996442899990,18594001255457720],[524289,524481,4648498045480103,4648501379109328],[524289,524487,1975301889643525,1975303130061553],[524289,524491,-22544606473695306,-22544601264072564],[524289,524493,1975301889643525,1975303130061553],[524289,524739,-13247605033203059,-13247603855385956],[524289,525451,1975301917236486,1975303102468593],[524289,525453,22544603307191776,22544604430576096],[524289,525507,1975301917270118,1975303102434961],[524289,557061,-13247606122936882,-13247602765652131],[524289,557197,-13247605066127948,-13247603822461068],[524289,655363,4648497449753834,4648501974835595],[524289,655365,3950600812107830,3950609227302328],[524289,655369,-8599108077216494,-8599101386783086],[524289,655375,-22544606281953756,-22544601455814116],[524289,655435,4648499056652180,4648500367937249],[524289,655499,-22544606469793008,-22544601267974862],[524289,655501,49039810287641238,49039815227304660],[524289,655555,4648499056652180,4648500367937249],[524289,688129,1975300803621296,1975304216083780],[524289,688135,1975301917270118,1975303102434961],[524289,688139,1975301917270118,1975303102434961],[524289,688141,18593996485739860,18594001212617856],[524289,688261,-13247605066127948,-13247603822461068],[524289,1048714,-13247605066155522,-13247603822433492],[524289,1048716,1975301917236486,1975303102468593],[524289,1048770,4648499087034444,4648500337554984],[524289,1179658,4648499087000812,4648500337588616],[524289,1179660,1975301917270118,1975303102434961],[524289,1212420,-13247605033169427,-13247603855419588],[524289,1573003,-13247605066155522,-13247603822433492],[524289,1573005,1975301917236486,1975303102468593],[524289,1573059,4648499087034444,4648500337554984],[524289,1703947,4648499087000812,4648500337588616],[524289,1703949,1975301917270118,1975303102434961],[524289,1736709,-13247605033169427,-13247603855419588],[524289,67239946,4648499057538562,4648500367050864],[524289,67239948,1975301889664154,1975303130040923],[524289,67272708,-13247605061578886,-13247603827010127],[524289,67764235,4648499057538562,4648500367050864],[524289,67764237,1975301889664154,1975303130040923],[524289,67796997,-13247605061578886,-13247603827010127],[524289,268435594,-13247605096148654,-13247603792440361],[524289,268435596,1975301885638544,1975303134066536],[524289,268435650,4648499059714221,4648500364875210],[524289,268566538,1975301857911278,1975303161793801],[524289,268566540,22544603248067364,22544604489700504],[524289,268599300,-13247605066971786,-13247603821617226],[524289,268959883,-13247605096148654,-13247603792440361],[524289,268959885,1975301885638544,1975303134066536],[524289,268959939,4648499059714221,4648500364875210],[524289,269090827,1975301857911278,1975303161793801],[524289,269090829,22544603248067364,22544604489700504],[524289,269123589,-13247605066971786,-13247603821617226],[524289,1073905668,1975301891852867,1975303127852212],[524289,1074429957,1975301891852867,1975303127852212],[524290,0,-1395799815332118,-1395778955026394],[524290,9,8599101131740910,8599108332258679],[524290,12,-5925910964282679,-5925904094832560],[524290,65,-4648501525518317,-4648497899071108],[524290,72,20569290559759355,20569312158303430],[524290,129,-6623806726760819,-6623797717533688],[524290,132,-7321699679927840,-7321694149545938],[524290,136,-252556117717993928,-252556061588214548],[524290,141,26495207710771912,26495210066406118],[524290,192,77936102841789496,77936150681548118],[524290,201,-1975306045508212,-1975298974196867],[524290,204,11272300696813670,11272303172070267],[524290,320,-13247606172936084,-13247602715652933],[524290,384,15920798878436957,15920804415036409],[524290,449,13247603855385956,13247605033203059],[524290,456,-9297000658925680,-9296998190253177],[524290,1032,-7321699692989682,-7321694136484094],[524290,1088,15920798865897844,15920804427575524],[524290,1152,-5925910945469332,-5925904113645905],[524290,1161,-1975303102468593,-1975301917236486],[524290,1164,-22544604430576096,-22544603307191776],[524290,1217,-1975303102434961,-1975301917270118],[524290,1224,-22544606644811289,-22544601092956580],[524290,1472,-45089208861152192,-45089206614383552],[524290,32776,15920798873942155,15920804419531205],[524290,131073,-4648501974835595,-4648497449753834],[524290,131076,15920798874182437,15920804419290919],[524290,131080,159397032038790385,159397079835786384],[524290,131085,26495207710839176,26495210066338854],[524290,131136,-9297004269330780,-9296994579848082],[524290,131145,-6623803346277523,-6623801098016986],[524290,131148,13247603821511848,13247605067077166],[524290,131200,20569290552159553,20569312165903224],[524290,131209,22544601267974862,22544606469793008],[524290,131212,-22544606653723935,-22544601084043932],[524290,131265,-4648500367937249,-4648499056652180],[524290,131272,58336806002895800,58336818361228957],[524290,131520,-1975303134066536,-1975301885638544],[524290,132232,11272300692285237,11272303176598696],[524290,132288,13247603821511848,13247605067077166],[524290,163840,-13247606153429752,-13247602735159258],[524290,163845,-1975303102434961,-1975301917270118],[524290,163849,-1975303102434961,-1975301917270118],[524290,163852,-45089208861152192,-45089206614383552],[524290,163912,-1975303134066535,-1975301885638543],[524290,163976,-9297000663454110,-9296998185724745],[524290,524290,-1395799815332118,-1395778955026394],[524290,524299,8599101131740910,8599108332258679],[524290,524302,-5925910964282679,-5925904094832560],[524290,524355,-4648501525518317,-4648497899071108],[524290,524362,20569290559759355,20569312158303430],[524290,524419,-6623806726760819,-6623797717533688],[524290,524422,-7321699679927840,-7321694149545938],[524290,524426,-252556117717993928,-252556061588214548],[524290,524431,26495207710771912,26495210066406118],[524290,524482,77936102841789496,77936150681548118],[524290,524491,-1975306045508212,-1975298974196867],[524290,524494,11272300696813670,11272303172070267],[524290,524610,-13247606172936084,-13247602715652933],[524290,524674,15920798878436957,15920804415036409],[524290,524739,13247603855385956,13247605033203059],[524290,524746,-9297000658925680,-9296998190253177],[524290,525322,-7321699692989682,-7321694136484094],[524290,525378,15920798865897844,15920804427575524],[524290,525442,-5925910945469332,-5925904113645905],[524290,525451,-1975303102468593,-1975301917236486],[524290,525454,-22544604430576096,-22544603307191776],[524290,525507,-1975303102434961,-1975301917270118],[524290,525514,-22544606644811289,-22544601092956580],[524290,525762,-45089208861152192,-45089206614383552],[524290,557066,15920798873942155,15920804419531205],[524290,655363,-4648501974835595,-4648497449753834],[524290,655366,15920798874182437,15920804419290919],[524290,655370,159397032038790385,159397079835786384],[524290,655375,26495207710839176,26495210066338854],[524290,655426,-9297004269330780,-9296994579848082],[524290,655435,-6623803346277523,-6623801098016986],[524290,655438,13247603821511848,13247605067077166],[524290,655490,20569290552159553,20569312165903224],[524290,655499,22544601267974862,22544606469793008],[524290,655502,-22544606653723935,-22544601084043932],[524290,655555,-4648500367937249,-4648499056652180],[524290,655562,58336806002895800,58336818361228957],[524290,655810,-1975303134066536,-1975301885638544],[524290,656522,11272300692285237,11272303176598696],[524290,656578,13247603821511848,13247605067077166],[524290,688130,-13247606153429752,-13247602735159258],[524290,688135,-1975303102434961,-1975301917270118],[524290,688139,-1975303102434961,-1975301917270118],[524290,688142,-45089208861152192,-45089206614383552],[524290,688202,-1975303134066535,-1975301885638543],[524290,688266,-9297000663454110,-9296998185724745],[524290,1048584,-6623806745939431,-6623797698355075],[524290,1048640,-4648501976324875,-4648497448264558],[524290,1048704,8599101150291472,8599108313708112],[524290,1048713,13247603822433492,13247605066155522],[524290,1048716,-1975303102468593,-1975301917236486],[524290,1048769,-4648500337554984,-4648499087034444],[524290,1048776,22544601272808088,22544606464959780],[524290,1049024,-1975303102468593,-1975301917236486],[524290,1049736,26495207710771912,26495210066406118],[524290,1049792,26495207710839176,26495210066338854],[524290,1049920,-1975303102468593,-1975301917236486],[524290,1179648,-4648501505889997,-4648497918699427],[524290,1179657,-4648500337588616,-4648499087000812],[524290,1179660,-1975303102434961,-1975301917270118],[524290,1179720,-4648500367937248,-4648499056652179],[524290,1179784,-1975306059254087,-1975298960450994],[524290,1179840,-6623803346277521,-6623801098016984],[524290,1212424,13247603855419588,13247605033169427],[524290,1572874,-6623806745939431,-6623797698355075],[524290,1572930,-4648501976324875,-4648497448264558],[524290,1572994,8599101150291472,8599108313708112],[524290,1573003,13247603822433492,13247605066155522],[524290,1573006,-1975303102468593,-1975301917236486],[524290,1573059,-4648500337554984,-4648499087034444],[524290,1573066,22544601272808088,22544606464959780],[524290,1573314,-1975303102468593,-1975301917236486],[524290,1574026,26495207710771912,26495210066406118],[524290,1574082,26495207710839176,26495210066338854],[524290,1574210,-1975303102468593,-1975301917236486],[524290,1703938,-4648501505889997,-4648497918699427],[524290,1703947,-4648500337588616,-4648499087000812],[524290,1703950,-1975303102434961,-1975301917270118],[524290,1704010,-4648500367937248,-4648499056652179],[524290,1704074,-1975306059254087,-1975298960450994],[524290,1704130,-6623803346277521,-6623801098016984],[524290,1736714,13247603855419588,13247605033169427],[524290,67108872,-4648502836441441,-4648496588147988],[524290,67239936,-15920803552528152,-15920799740945212],[524290,67239945,-4648500367050864,-4648499057538562],[524290,67239948,-1975303130040923,-1975301889664154],[524290,67240008,-4648500405191522,-4648499019397906],[524290,67240072,-3950606391264266,-3950603648145893],[524290,67272712,11272301161280132,11272302707603802],[524290,67633162,-4648502836441441,-4648496588147988],[524290,67764226,-15920803552528152,-15920799740945212],[524290,67764235,-4648500367050864,-4648499057538562],[524290,67764238,-1975303130040923,-1975301889664154],[524290,67764298,-4648500405191522,-4648499019397906],[524290,67764362,-3950606391264266,-3950603648145893],[524290,67797002,11272301161280132,11272302707603802],[524290,68288520,-4648500364875210,-4648499059714221],[524290,68812810,-4648500364875210,-4648499059714221],[524290,268435464,-3950609856348444,-3950600183061726],[524290,268435520,-4648502135287572,-4648497289301856],[524290,268435584,8599101184095716,8599108279903872],[524290,268435593,13247603792440361,13247605096148654],[524290,268435596,-1975303134066536,-1975301885638544],[524290,268435649,-4648500364875210,-4648499059714221],[524290,268435656,22544601129070346,22544606608697526],[524290,268435904,-1975303127852212,-1975301891852867],[524290,268436616,13247603821617226,13247605066971786],[524290,268436672,13247603827010127,13247605061578886],[524290,268566528,-1975304416511920,-1975300603193161],[524290,268566537,-1975303161793801,-1975301857911278],[524290,268566540,-22544604489700504,-22544603248067364],[524290,268566600,-1975303194709763,-1975301824995317],[524290,268566664,-7321700711066549,-7321693118407216],[524290,268566720,-6623803429142575,-6623801015151933],[524290,268599304,13247603821617226,13247605066971786],[524290,268959754,-3950609856348444,-3950600183061726],[524290,268959810,-4648502135287572,-4648497289301856],[524290,268959874,8599101184095716,8599108279903872],[524290,268959883,13247603792440361,13247605096148654],[524290,268959886,-1975303134066536,-1975301885638544],[524290,268959939,-4648500364875210,-4648499059714221],[524290,268959946,22544601129070346,22544606608697526],[524290,268960194,-1975303127852212,-1975301891852867],[524290,268960906,13247603821617226,13247605066971786],[524290,268960962,13247603827010127,13247605061578886],[524290,269090818,-1975304416511920,-1975300603193161],[524290,269090827,-1975303161793801,-1975301857911278],[524290,269090830,-22544604489700504,-22544603248067364],[524290,269090890,-1975303194709763,-1975301824995317],[524290,269090954,-7321700711066549,-7321693118407216],[524290,269091010,-6623803429142575,-6623801015151933],[524290,269123594,13247603821617226,13247605066971786],[524290,269484168,-24519907498972975,-24519905258499972],[524290,269484224,-6623803341365525,-6623801102928978],[524290,269615112,11272300812248450,11272303056635485],[524290,270008458,-24519907498972975,-24519905258499972],[524290,270008514,-6623803341365525,-6623801102928978],[524290,270139402,11272300812248450,11272303056635485],[524290,335675400,-3950606396524520,-3950603642885640],[524290,336199690,-3950606396524520,-3950603642885640],[524292,0,-1395798588612732,-1395780181745792],[524292,9,-3950608451914177,-3950601587495984],[524292,10,6623798624404334,6623805819890177],[524292,72,-4648502626375994,-4648496798213434],[524292,129,-1975304605835260,-1975300413869816],[524292,130,-1975305275431532,-1975299744273546],[524292,136,60039999943769960,60040045266389211],[524292,139,-45089208966229632,-45089206509306108],[524292,192,4648498045480100,4648501379109325],[524292,195,-1975303130061553,-1975301889643525],[524292,201,-1975303130061553,-1975301889643525],[524292,202,26495207586327742,26495210190850288],[524292,1032,15920799005382849,15920804288090516],[524292,1152,-13247605973043456,-13247602915545560],[524292,1161,-22544604430576096,-22544603307191776],[524292,1162,-1975303102468593,-1975301917236486],[524292,1224,11272301204090824,11272302664793112],[524292,32769,13247602765652131,13247606122936882],[524292,32776,23242489006570695,23242508116376415],[524292,32896,-3950609314173172,-3950600725236988],[524292,32905,26495207784975390,26495209992202640],[524292,32906,-22544604497985104,-22544603239782766],[524292,32968,-1975303142599947,-1975301877105131],[524292,33928,-22544604444342592,-22544603293425280],[524292,131073,-3950609227302328,-3950600812107830],[524292,131074,-4648502481944947,-4648496942644475],[524292,131080,272001667572402980,272001719855180396],[524292,131083,-3950606255025060,-3950603784385098],[524292,131200,-9709549903,9709549901],[524292,131209,-49039815227304660,-49039810287641238],[524292,131210,15920798685149414,15920804608323947],[524292,131272,8599103418984813,8599106045014772],[524292,132232,11272300739639564,11272303129244369],[524292,163840,-311472436788867910,-311472393130811843],[524292,163849,-7321700200255013,-7321693629218766],[524292,163850,-3950606237024947,-3950603802385214],[524292,163969,13247603822461068,13247605066127948],[524292,163976,-69609119710487749,-69609108522520937],[524292,524292,-1395798588612732,-1395780181745792],[524292,524301,-3950608451914177,-3950601587495984],[524292,524302,6623798624404334,6623805819890177],[524292,524364,-4648502626375994,-4648496798213434],[524292,524421,-1975304605835260,-1975300413869816],[524292,524422,-1975305275431532,-1975299744273546],[524292,524428,60039999943769960,60040045266389211],[524292,524431,-45089208966229632,-45089206509306108],[524292,524484,4648498045480100,4648501379109325],[524292,524487,-1975303130061553,-1975301889643525],[524292,524493,-1975303130061553,-1975301889643525],[524292,524494,26495207586327742,26495210190850288],[524292,525324,15920799005382849,15920804288090516],[524292,525444,-13247605973043456,-13247602915545560],[524292,525453,-22544604430576096,-22544603307191776],[524292,525454,-1975303102468593,-1975301917236486],[524292,525516,11272301204090824,11272302664793112],[524292,557061,13247602765652131,13247606122936882],[524292,557068,23242489006570695,23242508116376415],[524292,557188,-3950609314173172,-3950600725236988],[524292,557197,26495207784975390,26495209992202640],[524292,557198,-22544604497985104,-22544603239782766],[524292,557260,-1975303142599947,-1975301877105131],[524292,558220,-22544604444342592,-22544603293425280],[524292,655365,-3950609227302328,-3950600812107830],[524292,655366,-4648502481944947,-4648496942644475],[524292,655372,272001667572402980,272001719855180396],[524292,655375,-3950606255025060,-3950603784385098],[524292,655492,-9709549903,9709549901],[524292,655501,-49039815227304660,-49039810287641238],[524292,655502,15920798685149414,15920804608323947],[524292,655564,8599103418984813,8599106045014772],[524292,656524,11272300739639564,11272303129244369],[524292,688132,-311472436788867910,-311472393130811843],[524292,688141,-7321700200255013,-7321693629218766],[524292,688142,-3950606237024947,-3950603802385214],[524292,688261,13247603822461068,13247605066127948],[524292,688268,-69609119710487749,-69609108522520937],[524292,1048584,-9297003724271436,-9296995124907418],[524292,1048704,-4648501315670959,-4648498108918473],[524292,1048713,-1975303102468593,-1975301917236486],[524292,1048714,13247603822433492,13247605066155522],[524292,1048776,-4648500337554984,-4648499087034444],[524292,1049736,26495207753551168,26495210023626872],[524292,1081344,-1975304506421476,-1975300513283600],[524292,1081480,-1975303111382023,-1975301908323058],[524292,1179648,8599101715170092,8599107748829489],[524292,1179657,-1975303102434961,-1975301917270118],[524292,1179658,-4648500337588616,-4648499087000812],[524292,1179784,13247601033521515,13247607855067498],[524292,1212417,13247603855419588,13247605033169427],[524292,1212424,22544601541194970,22544606196572912],[524292,1212544,-24519907414185673,-24519905343287280],[524292,1572876,-9297003724271436,-9296995124907418],[524292,1572996,-4648501315670959,-4648498108918473],[524292,1573005,-1975303102468593,-1975301917236486],[524292,1573006,13247603822433492,13247605066155522],[524292,1573068,-4648500337554984,-4648499087034444],[524292,1574028,26495207753551168,26495210023626872],[524292,1605636,-1975304506421476,-1975300513283600],[524292,1605772,-1975303111382023,-1975301908323058],[524292,1703940,8599101715170092,8599107748829489],[524292,1703949,-1975303102434961,-1975301917270118],[524292,1703950,-4648500337588616,-4648499087000812],[524292,1704076,13247601033521515,13247607855067498],[524292,1736709,13247603855419588,13247605033169427],[524292,1736716,22544601541194970,22544606196572912],[524292,1736836,-24519907414185673,-24519905343287280],[524292,67108872,-4648502614033929,-4648496810555499],[524292,67141632,-1975305281057239,-1975299738647843],[524292,67239936,1277404455586225,1277411178939584],[524292,67239945,-1975303130040923,-1975301889664154],[524292,67239946,-4648500367050864,-4648499057538562],[524292,67240072,-6623803535249348,-6623800909045159],[524292,67272705,13247603827010127,13247605061578886],[524292,67272712,18593996124609637,18594001573748076],[524292,67272832,-22544604497985104,-22544603239782766],[524292,67633164,-4648502614033929,-4648496810555499],[524292,67665924,-1975305281057239,-1975299738647843],[524292,67764228,1277404455586225,1277411178939584],[524292,67764237,-1975303130040923,-1975301889664154],[524292,67764238,-4648500367050864,-4648499057538562],[524292,67764364,-6623803535249348,-6623800909045159],[524292,67796997,13247603827010127,13247605061578886],[524292,67797004,18593996124609637,18594001573748076],[524292,67797124,-22544604497985104,-22544603239782766],[524292,68288520,-4648500337554984,-4648499087034444],[524292,68321280,-1975303102434961,-1975301917270118],[524292,68812812,-4648500337554984,-4648499087034444],[524292,68845572,-1975303102434961,-1975301917270118],[524292,268435464,-6623806745939431,-6623797698355075],[524292,268435584,-4648501379109327,-4648498045480102],[524292,268435593,-1975303134066536,-1975301885638544],[524292,268435594,13247603792440361,13247605096148654],[524292,268435656,-4648500364875210,-4648499059714221],[524292,268436616,13247603855419588,13247605033169427],[524292,268468224,-1975304605835260,-1975300413869816],[524292,268468360,-1975303134589986,-1975301885115096],[524292,268566528,11272298579605019,11272305289278916],[524292,268566537,-22544604489700504,-22544603248067364],[524292,268566538,-1975303161793801,-1975301857911278],[524292,268566664,31143705012464284,31143712189303175],[524292,268599297,13247603821617226,13247605066971786],[524292,268599304,-18594001258855540,-18593996439502170],[524292,268599424,-3950606120324188,-3950603919085972],[524292,268959756,-6623806745939431,-6623797698355075],[524292,268959876,-4648501379109327,-4648498045480102],[524292,268959885,-1975303134066536,-1975301885638544],[524292,268959886,13247603792440361,13247605096148654],[524292,268959948,-4648500364875210,-4648499059714221],[524292,268960908,13247603855419588,13247605033169427],[524292,268992516,-1975304605835260,-1975300413869816],[524292,268992652,-1975303134589986,-1975301885115096],[524292,269090820,11272298579605019,11272305289278916],[524292,269090829,-22544604489700504,-22544603248067364],[524292,269090830,-1975303161793801,-1975301857911278],[524292,269090956,31143705012464284,31143712189303175],[524292,269123589,13247603821617226,13247605066971786],[524292,269123596,-18594001258855540,-18593996439502170],[524292,269123716,-3950606120324188,-3950603919085972],[524292,269484168,-6623803284297315,-6623801159997192],[524292,269615112,11272300873839524,11272302995044411],[524292,269647872,-24519907391505747,-24519905365967204],[524292,270008460,-6623803284297315,-6623801159997192],[524292,270139404,11272300873839524,11272302995044411],[524292,270172164,-24519907391505747,-24519905365967204],[524292,335675400,-3950606317756372,-3950603721653790],[524292,335708160,-45089208967216020,-45089206508319720],[524292,336199692,-3950606317756372,-3950603721653790],[524292,336232452,-45089208967216020,-45089206508319720],[524292,1073774592,17198207785357210,17198211142641961],[524292,1073872896,-1975305295212454,-1975299724492630],[524292,1073905665,-1975303127852212,-1975301891852867],[524292,1073905672,11272300719992475,11272303148891462],[524292,1073905792,13247603811716528,13247605076872486],[524292,1074298884,17198207785357210,17198211142641961],[524292,1074397188,-1975305295212454,-1975299724492630],[524292,1074429957,-1975303127852212,-1975301891852867],[524292,1074429964,11272300719992475,11272303148891462],[524292,1074430084,13247603811716528,13247605076872486],[524292,1074954240,13247603855385956,13247605033203059],[524292,1075478532,13247603855385956,13247605033203059],[524292,1141014528,26495207655679218,26495210121498808],[524292,1141538820,26495207655679218,26495210121498808],[524292,1342341120,13247603826989498,13247605061599516],[524292,1342865412,13247603826989498,13247605061599516],[524292,1409318912,13247603826989498,13247605061599516],[524292,1409843204,13247603826989498,13247605061599516],[524295,139,-49039814461219948,-49039811053725950],[524295,141,37767509188400696,37767512457661269],[524295,142,11272298596064681,11272305272819252],[524295,195,-1975303130061553,-1975301889643525],[524295,198,1975301889643525,1975303130061553],[524295,131083,-28470513105628714,-28470509691254389],[524295,131085,19871405028412220,19871408304471303],[524295,131086,8599101386783086,8599108077216494],[524295,163845,-1975303102434961,-1975301917270118],[524295,163846,1975301917270118,1975303102434961],[524295,524425,11272298596064681,11272305272819252],[524295,524426,37767509188400696,37767512457661269],[524295,524428,-49039814461219948,-49039811053725950],[524295,524481,1975301889643525,1975303130061553],[524295,524484,-1975303130061553,-1975301889643525],[524295,655369,8599101386783086,8599108077216494],[524295,655370,19871405028412220,19871408304471303],[524295,655372,-28470513105628714,-28470509691254389],[524295,688129,1975301917270118,1975303102434961],[524295,688130,-1975303102434961,-1975301917270118],[524296,0,-181445272717252872,-181445125879572760],[524296,6,-4648505793203474,-4648493631385954],[524296,66,20569295987453940,20569306730608851],[524296,68,-4648502626375994,-4648496798213434],[524296,129,11272298596064681,11272305272819252],[524296,130,218159636069763092,218159705380447032],[524296,132,-67361745915243333,-67361693124389608],[524296,192,-66663850285081034,-66663799369372644],[524296,195,1975301889643525,1975303130061553],[524296,198,-24519908147332138,-24519904610140814],[524296,320,11272301474344214,11272302394539722],[524296,384,-19871412418198236,-19871400914685277],[524296,450,-13247605061599516,-13247603826989498],[524296,1026,-1975305288493376,-1975299731211704],[524296,1028,-4648502349941046,-4648497074648383],[524296,1088,-13945502254348697,-13945496019419587],[524296,1152,307521786696231667,307521833184037924],[524296,1158,24519905365967204,24519907391505747],[524296,1218,31841601906990784,31841604679955942],[524296,1220,-11272302664793112,-11272301204090824],[524296,1280,-3950605484998596,-3950604554411562],[524296,2176,-26495211840725034,-26495205936452994],[524296,3072,-3950605491232570,-3950604548177586],[524296,32770,-4648502482185233,-4648496942404193],[524296,32772,-12549714288599261,-12549705214810465],[524296,32896,-9709549903,9709549901],[524296,131073,8599101386783086,8599108077216494],[524296,131074,-166718780962043040,-166718724742007499],[524296,131076,-245506516979052740,-245506452671352604],[524296,131136,20569290552159553,20569312165903224],[524296,131200,178653536553454336,178653704502654240],[524296,131206,4648493631385954,4648505793203474],[524296,131266,-35792211597603263,-35792205028753624],[524296,131268,-6623804014035016,-6623800430259491],[524296,132096,-9709549903,9709549901],[524296,132226,-9297001142627820,-9296997706551035],[524296,132228,11272300305719853,11272303563164086],[524296,132288,-1975304066969121,-1975300952735957],[524296,163840,307521786696231667,307521833184037924],[524296,163845,1975301917270118,1975303102434961],[524296,163846,47064508673192612,47064511822048211],[524296,163970,11272300226701508,11272303642182425],[524296,163972,20569298570795129,20569304147267651],[524296,524296,-181445272717252872,-181445125879572760],[524296,524302,-4648505793203474,-4648493631385954],[524296,524362,20569295987453940,20569306730608851],[524296,524364,-4648502626375994,-4648496798213434],[524296,524425,11272298596064681,11272305272819252],[524296,524426,218159636069763092,218159705380447032],[524296,524428,-67361745915243333,-67361693124389608],[524296,524488,-66663850285081034,-66663799369372644],[524296,524491,1975301889643525,1975303130061553],[524296,524494,-24519908147332138,-24519904610140814],[524296,524616,11272301474344214,11272302394539722],[524296,524680,-19871412418198236,-19871400914685277],[524296,524746,-13247605061599516,-13247603826989498],[524296,525322,-1975305288493376,-1975299731211704],[524296,525324,-4648502349941046,-4648497074648383],[524296,525384,-13945502254348697,-13945496019419587],[524296,525448,307521786696231667,307521833184037924],[524296,525454,24519905365967204,24519907391505747],[524296,525514,31841601906990784,31841604679955942],[524296,525516,-11272302664793112,-11272301204090824],[524296,525576,-3950605484998596,-3950604554411562],[524296,526472,-26495211840725034,-26495205936452994],[524296,527368,-3950605491232570,-3950604548177586],[524296,557066,-4648502482185233,-4648496942404193],[524296,557068,-12549714288599261,-12549705214810465],[524296,557192,-9709549903,9709549901],[524296,655369,8599101386783086,8599108077216494],[524296,655370,-166718780962043040,-166718724742007499],[524296,655372,-245506516979052740,-245506452671352604],[524296,655432,20569290552159553,20569312165903224],[524296,655496,178653536553454336,178653704502654240],[524296,655502,4648493631385954,4648505793203474],[524296,655562,-35792211597603263,-35792205028753624],[524296,655564,-6623804014035016,-6623800430259491],[524296,656392,-9709549903,9709549901],[524296,656522,-9297001142627820,-9296997706551035],[524296,656524,11272300305719853,11272303563164086],[524296,656584,-1975304066969121,-1975300952735957],[524296,688136,307521786696231667,307521833184037924],[524296,688141,1975301917270118,1975303102434961],[524296,688142,47064508673192612,47064511822048211],[524296,688266,11272300226701508,11272303642182425],[524296,688268,20569298570795129,20569304147267651],[524296,1048578,6623797698355075,6623806745939431],[524296,1048580,9296995124907418,9297003724271436],[524296,1048640,15920798744910351,15920804548563011],[524296,1048704,-245506516979052740,-245506452671352604],[524296,1048710,-11272302995044411,-11272300873839524],[524296,1048770,3950603721653790,3950606317756372],[524296,1048772,4648499087034444,4648500337554984],[524296,1049600,-12549714288599261,-12549705214810465],[524296,1049730,-26495210066406118,-26495207710771912],[524296,1049732,-26495210023626872,-26495207753551168],[524296,1049792,-24519907697962539,-24519905059510412],[524296,1049984,1975301917236486,1975303102468593],[524296,1051776,1975301915400511,1975303104304567],[524296,1081344,-4648502349941046,-4648497074648383],[524296,1179648,-67361745915243333,-67361693124389608],[524296,1179654,6623801159997192,6623803284297315],[524296,1179778,-6623806745939431,-6623797698355075],[524296,1179780,-9297003724271436,-9296995124907418],[524296,1179840,8599102950409964,8599106513589621],[524296,1180800,20569298570795129,20569304147267651],[524296,1212418,-13247605033169427,-13247603855419588],[524296,1212420,-26495210023626872,-26495207753551168],[524296,1212544,11272300305719853,11272303563164086],[524296,1572874,6623797698355075,6623806745939431],[524296,1572876,9296995124907418,9297003724271436],[524296,1572936,15920798744910351,15920804548563011],[524296,1573000,-245506516979052740,-245506452671352604],[524296,1573006,-11272302995044411,-11272300873839524],[524296,1573066,3950603721653790,3950606317756372],[524296,1573068,4648499087034444,4648500337554984],[524296,1573896,-12549714288599261,-12549705214810465],[524296,1574026,-26495210066406118,-26495207710771912],[524296,1574028,-26495210023626872,-26495207753551168],[524296,1574088,-24519907697962539,-24519905059510412],[524296,1574280,1975301917236486,1975303102468593],[524296,1576072,1975301915400511,1975303104304567],[524296,1605640,-4648502349941046,-4648497074648383],[524296,1703944,-67361745915243333,-67361693124389608],[524296,1703950,6623801159997192,6623803284297315],[524296,1704074,-6623806745939431,-6623797698355075],[524296,1704076,-9297003724271436,-9296995124907418],[524296,1704136,8599102950409964,8599106513589621],[524296,1705096,20569298570795129,20569304147267651],[524296,1736714,-13247605033169427,-13247603855419588],[524296,1736716,-26495210023626872,-26495207753551168],[524296,1736840,11272300305719853,11272303563164086],[524296,2097280,13247602731588215,13247606157000801],[524296,2228224,13247602745554085,13247606143034927],[524296,2621576,13247602731588215,13247606157000801],[524296,2752520,13247602745554085,13247606143034927],[524296,3146880,1975301912872117,1975303106832961],[524296,3671176,1975301912872117,1975303106832961],[524296,67108866,15920798525905540,15920804767567825],[524296,67108868,15920798744910351,15920804548563011],[524296,67108992,20569290552159553,20569312165903224],[524296,67141632,-13945502254348697,-13945496019419587],[524296,67239936,-66663850285081034,-66663799369372644],[524296,67239942,6623801102928978,6623803341365525],[524296,67240066,8599102838302509,8599106625697078],[524296,67240068,8599102950409964,8599106513589621],[524296,67272706,-11272302707603802,-11272301161280132],[524296,67272708,-24519907697962539,-24519905059510412],[524296,67272832,-1975304066969121,-1975300952735957],[524296,67633162,15920798525905540,15920804767567825],[524296,67633164,15920798744910351,15920804548563011],[524296,67633288,20569290552159553,20569312165903224],[524296,67665928,-13945502254348697,-13945496019419587],[524296,67764232,-66663850285081034,-66663799369372644],[524296,67764238,6623801102928978,6623803341365525],[524296,67764362,8599102838302509,8599106625697078],[524296,67764364,8599102950409964,8599106513589621],[524296,67797002,-11272302707603802,-11272301161280132],[524296,67797004,-24519907697962539,-24519905059510412],[524296,67797128,-1975304066969121,-1975300952735957],[524296,68157440,-4648502626375994,-4648496798213434],[524296,68288514,4648499059714221,4648500364875210],[524296,68288516,4648499087034444,4648500337554984],[524296,68288640,-6623804014035016,-6623800430259491],[524296,68321280,-11272302664793112,-11272301204090824],[524296,68681736,-4648502626375994,-4648496798213434],[524296,68812810,4648499059714221,4648500364875210],[524296,68812812,4648499087034444,4648500337554984],[524296,68812936,-6623804014035016,-6623800430259491],[524296,68845576,-11272302664793112,-11272301204090824],[524296,134217856,8599101386783086,8599108077216494],[524296,134348800,11272298596064681,11272305272819252],[524296,134742152,8599101386783086,8599108077216494],[524296,134873096,11272298596064681,11272305272819252],[524296,135267456,1975301917270118,1975303102434961],[524296,135791752,1975301917270118,1975303102434961],[524296,268435458,3950600183061726,3950609856348444],[524296,268435460,6623797698355075,6623806745939431],[524296,268435520,15920798525905540,15920804767567825],[524296,268435584,-166718780962043040,-166718724742007499],[524296,268435590,-11272303056635485,-11272300812248450],[524296,268435650,3950603642885640,3950606396524520],[524296,268435652,4648499059714221,4648500364875210],[524296,268436480,-4648502482185233,-4648496942404193],[524296,268436610,-13247605066971786,-13247603821617226],[524296,268436612,-13247605033169427,-13247603855419588],[524296,268436672,-11272302707603802,-11272301161280132],[524296,268468224,-1975305288493376,-1975299731211704],[524296,268566528,218159636069763092,218159705380447032],[524296,268566534,24519905258499972,24519907498972975],[524296,268566658,-3950609856348444,-3950600183061726],[524296,268566660,-6623806745939431,-6623797698355075],[524296,268566720,8599102838302509,8599106625697078],[524296,268567680,11272300226701508,11272303642182425],[524296,268599298,-13247605066971786,-13247603821617226],[524296,268599300,-26495210066406118,-26495207710771912],[524296,268599424,-9297001142627820,-9296997706551035],[524296,268959754,3950600183061726,3950609856348444],[524296,268959756,6623797698355075,6623806745939431],[524296,268959816,15920798525905540,15920804767567825],[524296,268959880,-166718780962043040,-166718724742007499],[524296,268959886,-11272303056635485,-11272300812248450],[524296,268959946,3950603642885640,3950606396524520],[524296,268959948,4648499059714221,4648500364875210],[524296,268960776,-4648502482185233,-4648496942404193],[524296,268960906,-13247605066971786,-13247603821617226],[524296,268960908,-13247605033169427,-13247603855419588],[524296,268960968,-11272302707603802,-11272301161280132],[524296,268992520,-1975305288493376,-1975299731211704],[524296,269090824,218159636069763092,218159705380447032],[524296,269090830,24519905258499972,24519907498972975],[524296,269090954,-3950609856348444,-3950600183061726],[524296,269090956,-6623806745939431,-6623797698355075],[524296,269091016,8599102838302509,8599106625697078],[524296,269091976,11272300226701508,11272303642182425],[524296,269123594,-13247605066971786,-13247603821617226],[524296,269123596,-26495210066406118,-26495207710771912],[524296,269123720,-9297001142627820,-9296997706551035],[524296,269484032,-4648505793203474,-4648493631385954],[524296,269484162,24519905258499972,24519907498972975],[524296,269484164,6623801159997192,6623803284297315],[524296,269484224,6623801102928978,6623803341365525],[524296,269485184,47064508673192612,47064511822048211],[524296,269615106,-11272303056635485,-11272300812248450],[524296,269615108,-11272302995044411,-11272300873839524],[524296,269615232,4648493631385954,4648505793203474],[524296,269647872,24519905365967204,24519907391505747],[524296,270008328,-4648505793203474,-4648493631385954],[524296,270008458,24519905258499972,24519907498972975],[524296,270008460,6623801159997192,6623803284297315],[524296,270008520,6623801102928978,6623803341365525],[524296,270009480,47064508673192612,47064511822048211],[524296,270139402,-11272303056635485,-11272300812248450],[524296,270139404,-11272302995044411,-11272300873839524],[524296,270139528,4648493631385954,4648505793203474],[524296,270172168,24519905365967204,24519907391505747],[524296,335544320,20569295987453940,20569306730608851],[524296,335675394,3950603642885640,3950606396524520],[524296,335675396,3950603721653790,3950606317756372],[524296,335675520,-35792211597603263,-35792205028753624],[524296,335708160,31841601906990784,31841604679955942],[524296,336068616,20569295987453940,20569306730608851],[524296,336199690,3950603642885640,3950606396524520],[524296,336199692,3950603721653790,3950606317756372],[524296,336199816,-35792211597603263,-35792205028753624],[524296,336232456,31841601906990784,31841604679955942],[524296,336723968,-24519908147332138,-24519904610140814],[524296,337248264,-24519908147332138,-24519904610140814],[524296,469893120,1975301889643525,1975303130061553],[524296,470417416,1975301889643525,1975303130061553],[524296,1073774592,-3950605484998596,-3950604554411562],[524296,1073872896,-19871412418198236,-19871400914685277],[524296,1073905668,1975301917236486,1975303102468593],[524296,1074298888,-3950605484998596,-3950604554411562],[524296,1074397192,-19871412418198236,-19871400914685277],[524296,1074429964,1975301917236486,1975303102468593],[524296,1140850688,11272301474344214,11272302394539722],[524296,1141374984,11272301474344214,11272302394539722],[524296,1409417216,-13247605061599516,-13247603826989498],[524296,1409941512,-13247605061599516,-13247603826989498],[524296,17592186175488,-11272305322642808,-11272298546241124],[524296,17592186699784,-11272305322642808,-11272298546241124],[524296,17592253153280,-9296999945106400,-9296998904072456],[524296,17592253677576,-9296999945106400,-9296998904072456],[524296,17592521719808,22544603189358414,22544604548409457],[524296,17592522244104,22544603189358414,22544604548409457],[524296,35184372088960,13247602500871785,13247606387717226],[524296,35184372219904,-1975304480049416,-1975300539655663],[524296,35184372613256,13247602500871785,13247606387717226],[524296,35184372744200,-1975304480049416,-1975300539655663],[524296,35184707764224,-13247605134312055,-13247603754276960],[524296,35184708288520,-13247605134312055,-13247603754276960],[524299,9,8599101131740910,8599108332258679],[524299,10,-8599108332258679,-8599101131740910],[524299,132,45089206509306108,45089208966229632],[524299,135,49039811053725950,49039814461219948],[524299,141,-15222909102306755,-15222904805987338],[524299,142,11272300873839524,11272302995044411],[524299,192,-22544604485915178,-22544603251852693],[524299,195,-20569302596271653,-20569300121791140],[524299,201,24519904610140814,24519908147332138],[524299,202,-26495210190850288,-26495207586327742],[524299,1161,-1975303102468593,-1975301917236486],[524299,1162,1975301917236486,1975303102468593],[524299,131076,3950603784385098,3950606255025060],[524299,131079,28470509691254389,28470513105628714],[524299,131085,-17896106304406015,-17896102008772423],[524299,131086,-6623803284297315,-6623801159997192],[524299,131136,-1975303134066536,-1975301885638544],[524299,131139,-1975303134066536,-1975301885638544],[524299,131209,-8599108332258679,-8599101131740910],[524299,131210,8599101131740910,8599108332258679],[524299,163849,-1975303102434961,-1975301917270118],[524299,163850,1975301917270118,1975303102434961],[524299,524289,-8599108332258679,-8599101131740910],[524299,524290,8599101131740910,8599108332258679],[524299,524421,11272300873839524,11272302995044411],[524299,524422,-15222909102306755,-15222904805987338],[524299,524428,49039811053725950,49039814461219948],[524299,524431,45089206509306108,45089208966229632],[524299,524481,-26495210190850288,-26495207586327742],[524299,524482,24519904610140814,24519908147332138],[524299,524488,-20569302596271653,-20569300121791140],[524299,524491,-22544604485915178,-22544603251852693],[524299,525441,1975301917236486,1975303102468593],[524299,525442,-1975303102468593,-1975301917236486],[524299,655365,-6623803284297315,-6623801159997192],[524299,655366,-17896106304406015,-17896102008772423],[524299,655372,28470509691254389,28470513105628714],[524299,655375,3950603784385098,3950606255025060],[524299,655432,-1975303134066536,-1975301885638544],[524299,655435,-1975303134066536,-1975301885638544],[524299,655489,8599101131740910,8599108332258679],[524299,655490,-8599108332258679,-8599101131740910],[524299,688129,1975301917270118,1975303102434961],[524299,688130,-1975303102434961,-1975301917270118],[524299,1048713,13247603822433492,13247605066155522],[524299,1048714,-13247605066155522,-13247603822433492],[524299,1179657,-4648500337588616,-4648499087000812],[524299,1179658,4648499087000812,4648500337588616],[524299,1572993,-13247605066155522,-13247603822433492],[524299,1572994,13247603822433492,13247605066155522],[524299,1703937,4648499087000812,4648500337588616],[524299,1703938,-4648500337588616,-4648499087000812],[524299,67239945,-4648500367050864,-4648499057538562],[524299,67239946,4648499057538562,4648500367050864],[524299,67764225,4648499057538562,4648500367050864],[524299,67764226,-4648500367050864,-4648499057538562],[524299,268435593,13247603792440361,13247605096148654],[524299,268435594,-13247605096148654,-13247603792440361],[524299,268566537,-1975303161793801,-1975301857911278],[524299,268566538,1975301857911278,1975303161793801],[524299,268959873,-13247605096148654,-13247603792440361],[524299,268959874,13247603792440361,13247605096148654],[524299,269090817,1975301857911278,1975303161793801],[524299,269090818,-1975303161793801,-1975301857911278],[524301,9,-3950608451914177,-3950601587495984],[524301,12,3950601587495984,3950608451914177],[524301,130,-26495210066406118,-26495207710771912],[524301,135,-37767512457661269,-37767509188400696],[524301,139,15222904805987338,15222909102306755],[524301,142,-3950606107262344,-3950603932147814],[524301,201,-1975303130061553,-1975301889643525],[524301,204,1975301889643525,1975303130061553],[524301,1161,-22544604430576096,-22544603307191776],[524301,1164,22544603307191776,22544604430576096],[524301,32896,13247603811716528,13247605076872486],[524301,32901,13247603811716528,13247605076872486],[524301,131074,-26495210066338854,-26495207710839176],[524301,131079,-19871408304471303,-19871405028412220],[524301,131083,17896102008772423,17896106304406015],[524301,131086,-24519907464403207,-24519905293069738],[524301,131209,3950601587495984,3950608451914177],[524301,131212,-3950608451914177,-3950601587495984],[524301,163840,13247603822461068,13247605066127948],[524301,163845,15222905739731186,15222908168562909],[524301,163849,-47064511822048211,-47064508673192612],[524301,163852,45089206614383552,45089208861152192],[524301,524289,3950601587495984,3950608451914177],[524301,524292,-3950608451914177,-3950601587495984],[524301,524419,-3950606107262344,-3950603932147814],[524301,524422,15222904805987338,15222909102306755],[524301,524426,-37767512457661269,-37767509188400696],[524301,524431,-26495210066406118,-26495207710771912],[524301,524481,1975301889643525,1975303130061553],[524301,524484,-1975303130061553,-1975301889643525],[524301,525441,22544603307191776,22544604430576096],[524301,525444,-22544604430576096,-22544603307191776],[524301,557192,13247603811716528,13247605076872486],[524301,557197,13247603811716528,13247605076872486],[524301,655363,-24519907464403207,-24519905293069738],[524301,655366,17896102008772423,17896106304406015],[524301,655370,-19871408304471303,-19871405028412220],[524301,655375,-26495210066338854,-26495207710839176],[524301,655489,-3950608451914177,-3950601587495984],[524301,655492,3950601587495984,3950608451914177],[524301,688129,45089206614383552,45089208861152192],[524301,688132,-47064511822048211,-47064508673192612],[524301,688136,15222905739731186,15222908168562909],[524301,688141,13247603822461068,13247605066127948],[524301,1048713,-1975303102468593,-1975301917236486],[524301,1048716,1975301917236486,1975303102468593],[524301,1179657,-1975303102434961,-1975301917270118],[524301,1179660,1975301917270118,1975303102434961],[524301,1572993,1975301917236486,1975303102468593],[524301,1572996,-1975303102468593,-1975301917236486],[524301,1703937,1975301917270118,1975303102434961],[524301,1703940,-1975303102434961,-1975301917270118],[524301,67239945,-1975303130040923,-1975301889664154],[524301,67239948,1975301889664154,1975303130040923],[524301,67764225,1975301889664154,1975303130040923],[524301,67764228,-1975303130040923,-1975301889664154],[524301,268435593,-1975303134066536,-1975301885638544],[524301,268435596,1975301885638544,1975303134066536],[524301,268566537,-22544604489700504,-22544603248067364],[524301,268566540,22544603248067364,22544604489700504],[524301,268959873,1975301885638544,1975303134066536],[524301,268959876,-1975303134066536,-1975301885638544],[524301,269090817,22544603248067364,22544604489700504],[524301,269090820,-22544604489700504,-22544603248067364],[524302,0,-3950606863625138,-3950603175785018],[524302,6,-4648505793203474,-4648493631385954],[524302,10,6623798624404334,6623805819890177],[524302,12,-5925910964282679,-5925904094832560],[524302,129,-18594001255457720,-18593996442899990],[524302,135,-11272305272819252,-11272298596064681],[524302,139,-11272302995044411,-11272300873839524],[524302,141,3950603932147814,3950606107262344],[524302,192,13247603826875223,13247605061713792],[524302,198,11272297936924019,11272305931959916],[524302,202,3950601491169156,3950608548241002],[524302,204,-1975303130061553,-1975301889643525],[524302,1158,24519905365967204,24519907391505747],[524302,1162,-1975303102468593,-1975301917236486],[524302,1164,-22544604430576096,-22544603307191776],[524302,32896,-22544604497985104,-22544603239782766],[524302,32902,-26495209992202640,-26495207784975390],[524302,32908,3950603919085972,3950606120324188],[524302,131073,22544601455814116,22544606281953756],[524302,131079,-8599108077216494,-8599101386783086],[524302,131083,6623801159997192,6623803284297315],[524302,131085,24519905293069738,24519907464403207],[524302,131136,13247603821511848,13247605067077166],[524302,131142,6623801098016986,6623803346277523],[524302,131146,6623801098016984,6623803346277521],[524302,131200,-1975304066969121,-1975300952735957],[524302,131206,26495204430640140,26495213346537888],[524302,131210,-3950608267983247,-3950601771426911],[524302,131212,-24519909487239803,-24519903270233145],[524302,163840,-1975303134589986,-1975301885115096],[524302,163846,-3950608765320955,-3950601274089200],[524302,163850,-1975303102434961,-1975301917270118],[524302,163852,3950601736070570,3950608303339582],[524302,524290,-5925910964282679,-5925904094832560],[524302,524292,6623798624404334,6623805819890177],[524302,524296,-4648505793203474,-4648493631385954],[524302,524302,-3950606863625138,-3950603175785018],[524302,524419,3950603932147814,3950606107262344],[524302,524421,-11272302995044411,-11272300873839524],[524302,524425,-11272305272819252,-11272298596064681],[524302,524431,-18594001255457720,-18593996442899990],[524302,524482,-1975303130061553,-1975301889643525],[524302,524484,3950601491169156,3950608548241002],[524302,524488,11272297936924019,11272305931959916],[524302,524494,13247603826875223,13247605061713792],[524302,525442,-22544604430576096,-22544603307191776],[524302,525444,-1975303102468593,-1975301917236486],[524302,525448,24519905365967204,24519907391505747],[524302,557186,3950603919085972,3950606120324188],[524302,557192,-26495209992202640,-26495207784975390],[524302,557198,-22544604497985104,-22544603239782766],[524302,655363,24519905293069738,24519907464403207],[524302,655365,6623801159997192,6623803284297315],[524302,655369,-8599108077216494,-8599101386783086],[524302,655375,22544601455814116,22544606281953756],[524302,655428,6623801098016984,6623803346277521],[524302,655432,6623801098016986,6623803346277523],[524302,655438,13247603821511848,13247605067077166],[524302,655490,-24519909487239803,-24519903270233145],[524302,655492,-3950608267983247,-3950601771426911],[524302,655496,26495204430640140,26495213346537888],[524302,655502,-1975304066969121,-1975300952735957],[524302,688130,3950601736070570,3950608303339582],[524302,688132,-1975303102434961,-1975301917270118],[524302,688136,-3950608765320955,-3950601274089200],[524302,688142,-1975303134589986,-1975301885115096],[524302,1048710,-11272302995044411,-11272300873839524],[524302,1048714,13247603822433492,13247605066155522],[524302,1048716,-1975303102468593,-1975301917236486],[524302,1179654,6623801159997192,6623803284297315],[524302,1179658,-4648500337588616,-4648499087000812],[524302,1179660,-1975303102434961,-1975301917270118],[524302,1572994,-1975303102468593,-1975301917236486],[524302,1572996,13247603822433492,13247605066155522],[524302,1573000,-11272302995044411,-11272300873839524],[524302,1703938,-1975303102434961,-1975301917270118],[524302,1703940,-4648500337588616,-4648499087000812],[524302,1703944,6623801159997192,6623803284297315],[524302,67239942,6623801102928978,6623803341365525],[524302,67239946,-4648500367050864,-4648499057538562],[524302,67239948,-1975303130040923,-1975301889664154],[524302,67764226,-1975303130040923,-1975301889664154],[524302,67764228,-4648500367050864,-4648499057538562],[524302,67764232,6623801102928978,6623803341365525],[524302,268435590,-11272303056635485,-11272300812248450],[524302,268435594,13247603792440361,13247605096148654],[524302,268435596,-1975303134066536,-1975301885638544],[524302,268566534,24519905258499972,24519907498972975],[524302,268566538,-1975303161793801,-1975301857911278],[524302,268566540,-22544604489700504,-22544603248067364],[524302,268959874,-1975303134066536,-1975301885638544],[524302,268959876,13247603792440361,13247605096148654],[524302,268959880,-11272303056635485,-11272300812248450],[524302,269090818,-22544604489700504,-22544603248067364],[524302,269090820,-1975303161793801,-1975301857911278],[524302,269090824,24519905258499972,24519907498972975],[524352,10,-7901216811716128,-7901203267104184],[524352,12,-9296999886451704,-9296998962727152],[524352,129,-4648501379109328,-4648498045480103],[524352,130,-85257851747913146,-85257795604898244],[524352,132,9296996568177046,9297002281001814],[524352,136,235357851276653147,235357909101556156],[524352,139,22544603251852693,22544604485915178],[524352,142,-13247605061713792,-13247603826875223],[524352,258,6623799170377024,6623805273917482],[524352,264,-4648502622318527,-4648496802270899],[524352,394,26495207121529005,26495210655649026],[524352,1026,-4648502490229551,-4648496934359881],[524352,1032,9296996307740651,9297002541438203],[524352,1162,-9297000814034204,-9296998035144653],[524352,1410,47064508673192612,47064511822048211],[524352,1416,-24519907696178166,-24519905061294785],[524352,32896,-4648501379109327,-4648498045480102],[524352,131074,9296994579848082,9297004269330780],[524352,131080,-7901216780706716,-7901203298113598],[524352,131083,1975301885638544,1975303134066536],[524352,131086,-13247605067077166,-13247603821511848],[524352,131200,-166718780962043040,-166718724742007499],[524352,131210,-45089213226916902,-45089202248618840],[524352,131212,-13247605061713792,-13247603826875223],[524352,131328,4648497449753834,4648501974835595],[524352,131338,4648499056652180,4648500367937249],[524352,131458,6623801098016986,6623803346277523],[524352,131464,-26495210186613570,-26495207590564460],[524352,132096,-4648502481944947,-4648496942644475],[524352,132226,-13247605067077166,-13247603821511848],[524352,132232,-9297000814034204,-9296998035144653],[524352,132480,-26495210066338854,-26495207710839176],[524352,163850,1975301885638543,1975303134066535],[524352,163976,22544603251852693,22544604485915178],[524352,524362,-7901216811716128,-7901203267104184],[524352,524364,-9296999886451704,-9296998962727152],[524352,524481,-4648501379109328,-4648498045480103],[524352,524482,-85257851747913146,-85257795604898244],[524352,524484,9296996568177046,9297002281001814],[524352,524488,235357851276653147,235357909101556156],[524352,524491,22544603251852693,22544604485915178],[524352,524494,-13247605061713792,-13247603826875223],[524352,524610,6623799170377024,6623805273917482],[524352,524616,-4648502622318527,-4648496802270899],[524352,524746,26495207121529005,26495210655649026],[524352,525378,-4648502490229551,-4648496934359881],[524352,525384,9296996307740651,9297002541438203],[524352,525514,-9297000814034204,-9296998035144653],[524352,525762,47064508673192612,47064511822048211],[524352,525768,-24519907696178166,-24519905061294785],[524352,557248,-4648501379109327,-4648498045480102],[524352,655426,9296994579848082,9297004269330780],[524352,655432,-7901216780706716,-7901203298113598],[524352,655435,1975301885638544,1975303134066536],[524352,655438,-13247605067077166,-13247603821511848],[524352,655552,-166718780962043040,-166718724742007499],[524352,655562,-45089213226916902,-45089202248618840],[524352,655564,-13247605061713792,-13247603826875223],[524352,655680,4648497449753834,4648501974835595],[524352,655690,4648499056652180,4648500367937249],[524352,655810,6623801098016986,6623803346277523],[524352,655816,-26495210186613570,-26495207590564460],[524352,656448,-4648502481944947,-4648496942644475],[524352,656578,-13247605067077166,-13247603821511848],[524352,656584,-9297000814034204,-9296998035144653],[524352,656832,-26495210066338854,-26495207710839176],[524352,688202,1975301885638543,1975303134066535],[524352,688328,22544603251852693,22544604485915178],[524352,1048578,4648497448264558,4648501976324875],[524352,1048584,-4648502614033929,-4648496810555499],[524352,1048714,-26495210186613570,-26495207590564460],[524352,1048962,6623801159997192,6623803284297315],[524352,1048968,-13247605066155522,-13247603822433492],[524352,1049730,-26495210066338854,-26495207710839176],[524352,1049736,-24519907696178166,-24519905061294785],[524352,1049858,1975301917236486,1975303102468593],[524352,1179648,6623799192952293,6623805251342207],[524352,1179658,4648499056652179,4648500367937248],[524352,1179778,6623801098016984,6623803346277521],[524352,1179784,26495207121529005,26495210655649026],[524352,1180032,6623801159997192,6623803284297315],[524352,1180800,47064508673192612,47064511822048211],[524352,1180928,1975301917270118,1975303102434961],[524352,1572930,4648497448264558,4648501976324875],[524352,1572936,-4648502614033929,-4648496810555499],[524352,1573066,-26495210186613570,-26495207590564460],[524352,1573314,6623801159997192,6623803284297315],[524352,1573320,-13247605066155522,-13247603822433492],[524352,1574082,-26495210066338854,-26495207710839176],[524352,1574088,-24519907696178166,-24519905061294785],[524352,1574210,1975301917236486,1975303102468593],[524352,1704000,6623799192952293,6623805251342207],[524352,1704010,4648499056652179,4648500367937248],[524352,1704130,6623801098016984,6623803346277521],[524352,1704136,26495207121529005,26495210655649026],[524352,1704384,6623801159997192,6623803284297315],[524352,1705152,47064508673192612,47064511822048211],[524352,1705280,1975301917270118,1975303102434961],[524352,67108992,8599101184095716,8599108279903872],[524352,67239946,4648499019397906,4648500405191522],[524352,67240072,1975301824995317,1975303194709763],[524352,67633344,8599101184095716,8599108279903872],[524352,67764298,4648499019397906,4648500405191522],[524352,67764424,1975301824995317,1975303194709763],[524352,268435458,4648497289301856,4648502135287572],[524352,268435464,-4648502836441441,-4648496588147988],[524352,268435594,-26495210251583166,-26495207525594866],[524352,268435842,6623801107293350,6623803337001160],[524352,268435848,-13247605096148654,-13247603792440361],[524352,268436610,-13247605061578886,-13247603827010127],[524352,268436616,-11272302707496740,-11272301161387192],[524352,268566528,6623798927600937,6623805516693572],[524352,268566538,1975301824995317,1975303194709763],[524352,268566658,6623801015151933,6623803429142575],[524352,268566664,47064508360216381,47064512135024435],[524352,268566912,6623801086208550,6623803358085955],[524352,268567680,24519905293069738,24519907464403207],[524352,268959810,4648497289301856,4648502135287572],[524352,268959816,-4648502836441441,-4648496588147988],[524352,268959946,-26495210251583166,-26495207525594866],[524352,268960194,6623801107293350,6623803337001160],[524352,268960200,-13247605096148654,-13247603792440361],[524352,268960962,-13247605061578886,-13247603827010127],[524352,268960968,-11272302707496740,-11272301161387192],[524352,269090880,6623798927600937,6623805516693572],[524352,269090890,1975301824995317,1975303194709763],[524352,269091010,6623801015151933,6623803429142575],[524352,269091016,47064508360216381,47064512135024435],[524352,269091264,6623801086208550,6623803358085955],[524352,269092032,24519905293069738,24519907464403207],[524352,269484162,6623801102928978,6623803341365525],[524352,269484168,24519905258499972,24519907498972975],[524352,269615232,-31143710514241570,-31143706687525880],[524352,270008514,6623801102928978,6623803341365525],[524352,270008520,24519905258499972,24519907498972975],[524352,270139584,-31143710514241570,-31143706687525880],[524355,65,-4648501525518317,-4648497899071108],[524355,66,4648497899071108,4648501525518317],[524355,132,1975301889643525,1975303130061553],[524355,135,1975301889643525,1975303130061553],[524355,136,-1975303130061553,-1975301889643525],[524355,139,20569300121791140,20569302596271653],[524355,201,-26495210655649026,-26495207121529005],[524355,202,3950603717154982,3950606322255178],[524355,449,6623801159963560,6623803284330947],[524355,450,-6623803284330947,-6623801159963560],[524355,1217,-1975303102434961,-1975301917270118],[524355,1218,1975301917270118,1975303102434961],[524355,131083,1975301885638544,1975303134066536],[524355,131145,-6623803346277523,-6623801098016986],[524355,131146,4648499056652180,4648500367937249],[524355,131265,-4648500367937249,-4648499056652180],[524355,131266,4648499056652180,4648500367937249],[524355,524289,4648497899071108,4648501525518317],[524355,524290,-4648501525518317,-4648497899071108],[524355,524425,3950603717154982,3950606322255178],[524355,524426,-26495210655649026,-26495207121529005],[524355,524484,1975301889643525,1975303130061553],[524355,524487,1975301889643525,1975303130061553],[524355,524488,20569300121791140,20569302596271653],[524355,524491,-1975303130061553,-1975301889643525],[524355,524673,-6623803284330947,-6623801159963560],[524355,524674,6623801159963560,6623803284330947],[524355,525441,1975301917270118,1975303102434961],[524355,525442,-1975303102434961,-1975301917270118],[524355,655369,4648499056652180,4648500367937249],[524355,655370,-6623803346277523,-6623801098016986],[524355,655432,1975301885638544,1975303134066536],[524355,655489,4648499056652180,4648500367937249],[524355,655490,-4648500367937249,-4648499056652180],[524355,1048769,-4648500337554984,-4648499087034444],[524355,1048770,4648499087034444,4648500337554984],[524355,1572993,4648499087034444,4648500337554984],[524355,1572994,-4648500337554984,-4648499087034444],[524355,268435649,-4648500364875210,-4648499059714221],[524355,268435650,4648499059714221,4648500364875210],[524355,268959873,4648499059714221,4648500364875210],[524355,268959874,-4648500364875210,-4648499059714221],[524358,129,-1975303130061553,-1975301889643525],[524358,135,-1975303130061553,-1975301889643525],[524358,136,35792205747120647,35792210879236240],[524358,142,4648494894207522,4648504530381905],[524358,204,31143706348854335,31143710852913125],[524358,131086,-6623803346277523,-6623801098016986],[524358,131148,6623801098016986,6623803346277523],[524358,524426,31143706348854335,31143710852913125],[524358,524481,-1975303130061553,-1975301889643525],[524358,524487,-1975303130061553,-1975301889643525],[524358,524488,4648494894207522,4648504530381905],[524358,524494,35792205747120647,35792210879236240],[524358,655370,6623801098016986,6623803346277523],[524358,655432,-6623803346277523,-6623801098016986],[524361,130,-6623806726760819,-6623797717533688],[524361,132,3950603932147814,3950606107262344],[524361,139,-37767513075615154,-37767508570446813],[524361,141,3950603932147814,3950606107262344],[524361,195,31143706348854335,31143710852913125],[524361,131074,6623801098016986,6623803346277523],[524361,131139,6623801098016986,6623803346277523],[524361,524426,31143706348854335,31143710852913125],[524361,524482,-37767513075615154,-37767508570446813],[524361,524484,3950603932147814,3950606107262344],[524361,524491,-6623806726760819,-6623797717533688],[524361,524493,3950603932147814,3950606107262344],[524361,655370,6623801098016986,6623803346277523],[524361,655435,6623801098016986,6623803346277523],[524362,0,33237389263734506,33237396093570758],[524362,10,-7901216811716128,-7901203267104184],[524362,66,20569295987453940,20569306730608851],[524362,72,20569290559759355,20569312158303430],[524362,129,31143705027114464,31143712174652992],[524362,132,-39742815119133304,-39742811546633741],[524362,139,39742811546633741,39742815119133304],[524362,142,-21846713211925840,-21846705140662760],[524362,195,-8599106519519277,-8599102944480312],[524362,204,-17896106405970981,-17896101907207464],[524362,384,8599102944480312,8599106519519277],[524362,450,-42416014569192714,-42416006501458678],[524362,456,51015113020977955,51015117513673026],[524362,1162,1975300959240086,1975304060464994],[524362,1218,22544602323661876,22544605414105996],[524362,1224,-24519909474570990,-24519903282901962],[524362,131073,-4648500367937249,-4648499056652180],[524362,131086,-6623803346277521,-6623801098016984],[524362,131139,-4648500367937249,-4648499056652180],[524362,131148,6623801098016984,6623803346277521],[524362,131200,-35792211597603263,-35792205028753624],[524362,131210,-13247611779979171,-13247597108609852],[524362,131266,56941019193503222,56941026400262994],[524362,131272,-79485635001138468,-79485618330395612],[524362,131328,4648499056652180,4648500367937249],[524362,131394,4648499056652180,4648500367937249],[524362,163850,1975301885638543,1975303134066535],[524362,163912,-1975303134066535,-1975301885638543],[524362,524290,20569290559759355,20569312158303430],[524362,524296,20569295987453940,20569306730608851],[524362,524352,-7901216811716128,-7901203267104184],[524362,524362,33237389263734506,33237396093570758],[524362,524422,-17896106405970981,-17896101907207464],[524362,524425,-8599106519519277,-8599102944480312],[524362,524481,39742811546633741,39742815119133304],[524362,524484,-21846713211925840,-21846705140662760],[524362,524491,31143705027114464,31143712174652992],[524362,524494,-39742815119133304,-39742811546633741],[524362,524674,51015113020977955,51015117513673026],[524362,524680,-42416014569192714,-42416006501458678],[524362,524746,8599102944480312,8599106519519277],[524362,525442,-24519909474570990,-24519903282901962],[524362,525448,22544602323661876,22544605414105996],[524362,525504,1975300959240086,1975304060464994],[524362,655366,6623801098016984,6623803346277521],[524362,655369,-4648500367937249,-4648499056652180],[524362,655428,-6623803346277521,-6623801098016984],[524362,655435,-4648500367937249,-4648499056652180],[524362,655490,-79485635001138468,-79485618330395612],[524362,655496,56941019193503222,56941026400262994],[524362,655552,-13247611779979171,-13247597108609852],[524362,655562,-35792211597603263,-35792205028753624],[524362,655624,4648499056652180,4648500367937249],[524362,655690,4648499056652180,4648500367937249],[524362,688130,-1975303134066535,-1975301885638543],[524362,688192,1975301885638543,1975303134066535],[524362,1048714,-19871408457912797,-19871404874970728],[524362,1048770,28470509608204269,28470513188678840],[524362,1048776,-8599108313708112,-8599101150291472],[524362,1179658,4648499056652179,4648500367937248],[524362,1179720,-4648500367937248,-4648499056652179],[524362,1572994,-8599108313708112,-8599101150291472],[524362,1573000,28470509608204269,28470513188678840],[524362,1573056,-19871408457912797,-19871404874970728],[524362,1703938,-4648500367937248,-4648499056652179],[524362,1704000,4648499056652179,4648500367937248],[524362,67239946,4648499019397906,4648500405191522],[524362,67240008,-4648500405191522,-4648499019397906],[524362,67764226,-4648500405191522,-4648499019397906],[524362,67764288,4648499019397906,4648500405191522],[524362,268435594,-19871408468202250,-19871404864681274],[524362,268435650,28470509652297966,28470513144585146],[524362,268435656,-8599108279903872,-8599101184095716],[524362,268566538,1975301824995317,1975303194709763],[524362,268566600,-1975303194709763,-1975301824995317],[524362,268959874,-8599108279903872,-8599101184095716],[524362,268959880,28470509652297966,28470513144585146],[524362,268959936,-19871408468202250,-19871404864681274],[524362,269090818,-1975303194709763,-1975301824995317],[524362,269090880,1975301824995317,1975303194709763],[524364,0,-18593999772903408,-18593997925454304],[524364,12,-9296999886451704,-9296998962727152],[524364,68,-4648502626375994,-4648496798213434],[524364,72,-4648502626375994,-4648496798213434],[524364,129,-3950606107262344,-3950603932147814],[524364,130,-9297001129565978,-9296997719612879],[524364,141,-3950606107262344,-3950603932147814],[524364,142,3950603932147814,3950606107262344],[524364,198,-35792210542100730,-35792206084256157],[524364,202,22544601642609286,22544606095158586],[524364,452,-11272302995044411,-11272300873839524],[524364,456,11272300873839524,11272302995044411],[524364,1220,-873779583,873779583],[524364,1224,-873779583,873779583],[524364,32896,-3950606120324188,-3950603919085972],[524364,32908,-3950606120324188,-3950603919085972],[524364,131074,-13247605067077166,-13247603821511848],[524364,131142,-6623803346277523,-6623801098016986],[524364,131146,-6623803346277521,-6623801098016984],[524364,131200,-9297001142627820,-9296997706551035],[524364,131212,3950603919085972,3950606120324188],[524364,131268,22544601642609286,22544606095158586],[524364,131272,-35792210542100730,-35792206084256157],[524364,524292,-4648502626375994,-4648496798213434],[524364,524296,-4648502626375994,-4648496798213434],[524364,524352,-9296999886451704,-9296998962727152],[524364,524364,-18593999772903408,-18593997925454304],[524364,524422,22544601642609286,22544606095158586],[524364,524426,-35792210542100730,-35792206084256157],[524364,524481,-3950606107262344,-3950603932147814],[524364,524482,3950603932147814,3950606107262344],[524364,524493,-3950606107262344,-3950603932147814],[524364,524494,-9297001129565978,-9296997719612879],[524364,524676,11272300873839524,11272302995044411],[524364,524680,-11272302995044411,-11272300873839524],[524364,525444,-873779583,873779583],[524364,525448,-873779583,873779583],[524364,557248,-3950606120324188,-3950603919085972],[524364,557260,-3950606120324188,-3950603919085972],[524364,655366,-6623803346277521,-6623801098016984],[524364,655370,-6623803346277523,-6623801098016986],[524364,655438,-13247605067077166,-13247603821511848],[524364,655492,-35792210542100730,-35792206084256157],[524364,655496,22544601642609286,22544606095158586],[524364,655552,3950603919085972,3950606120324188],[524364,655564,-9297001142627820,-9296997706551035],[524364,1048772,11272300873839524,11272302995044411],[524364,1048776,-11272302995044411,-11272300873839524],[524364,1572996,-11272302995044411,-11272300873839524],[524364,1573000,11272300873839524,11272302995044411],[524364,268435652,11272300812248450,11272303056635485],[524364,268435656,-11272303056635485,-11272300812248450],[524364,268959876,-11272303056635485,-11272300812248450],[524364,268959880,11272300812248450,11272303056635485],[524416,6,-9296999886451704,-9296998962727152],[524416,10,-63683211765177830,-63683201408715624],[524416,12,-11272305028685690,-11272298840198250],[524416,66,19173508522816278,19173515424887978],[524416,68,4648498045480101,4648501379109326],[524416,72,-168694080794423276,-168694029929332347],[524416,258,11272301474344214,11272302394539722],[524416,264,1277404472099680,1277411162426122],[524416,1026,6623798642954895,6623805801339609],[524416,1028,-15920803246405425,-15920800047067943],[524416,1032,-258754116160104515,-258754062378889847],[524416,2056,17198207753821687,17198211174177485],[524416,32776,-4795158453,4795158459],[524416,32832,4648498045480102,4648501379109327],[524416,33792,4648498108918473,4648501315670959],[524416,131074,-7901216780706716,-7901203298113598],[524416,131076,-4795158453,4795158459],[524416,131080,302754886842070856,302754970477776592],[524416,131086,11272301159430177,11272302709453757],[524416,131136,159397032038790385,159397079835786384],[524416,131146,-3950606383588294,-3950603655821866],[524416,131148,13247603826875223,13247605061713792],[524416,131328,-8599108077216494,-8599101386783086],[524416,132096,272001667572402980,272001719855180396],[524416,132106,-4648500367937249,-4648499056652180],[524416,132108,13247603851021587,13247605037567427],[524416,132168,42416007508370071,42416013562281321],[524416,133120,-13247606157000801,-13247602731588215],[524416,163840,-11272305028685690,-11272298840198250],[524416,163850,-1975303134066535,-1975301885638543],[524416,163852,-45089208874918688,-45089206600617048],[524416,163912,-22544604485915178,-22544603251852693],[524416,164872,-1975303106832961,-1975301912872117],[524416,524422,-9296999886451704,-9296998962727152],[524416,524426,-63683211765177830,-63683201408715624],[524416,524428,-11272305028685690,-11272298840198250],[524416,524482,19173508522816278,19173515424887978],[524416,524484,4648498045480101,4648501379109326],[524416,524488,-168694080794423276,-168694029929332347],[524416,524674,11272301474344214,11272302394539722],[524416,524680,1277404472099680,1277411162426122],[524416,525442,6623798642954895,6623805801339609],[524416,525444,-15920803246405425,-15920800047067943],[524416,525448,-258754116160104515,-258754062378889847],[524416,526472,17198207753821687,17198211174177485],[524416,557192,-4795158453,4795158459],[524416,557248,4648498045480102,4648501379109327],[524416,558208,4648498108918473,4648501315670959],[524416,655490,-7901216780706716,-7901203298113598],[524416,655492,-4795158453,4795158459],[524416,655496,302754886842070856,302754970477776592],[524416,655502,11272301159430177,11272302709453757],[524416,655552,159397032038790385,159397079835786384],[524416,655562,-3950606383588294,-3950603655821866],[524416,655564,13247603826875223,13247605061713792],[524416,655744,-8599108077216494,-8599101386783086],[524416,656512,272001667572402980,272001719855180396],[524416,656522,-4648500367937249,-4648499056652180],[524416,656524,13247603851021587,13247605037567427],[524416,656584,42416007508370071,42416013562281321],[524416,657536,-13247606157000801,-13247602731588215],[524416,688256,-11272305028685690,-11272298840198250],[524416,688266,-1975303134066535,-1975301885638543],[524416,688268,-45089208874918688,-45089206600617048],[524416,688328,-22544604485915178,-22544603251852693],[524416,689288,-1975303106832961,-1975301912872117],[524416,1048578,-8599108313708112,-8599101150291472],[524416,1048580,4648498108918473,4648501315670959],[524416,1048584,272001667572402980,272001719855180396],[524416,1049672,57638914684866570,57638920294078918],[524416,1049864,-1975303102468593,-1975301917236486],[524416,1051656,-1975303104304567,-1975301915400511],[524416,1081344,-15920803246405425,-15920800047067943],[524416,1179648,-258754116160104515,-258754062378889847],[524416,1179658,-4648500367937248,-4648499056652179],[524416,1179660,-1975303106832961,-1975301912872117],[524416,1179720,-33119013675829617,-33119008545642919],[524416,1180680,-58336815178304206,-58336809185820542],[524416,1180736,-53688314809080322,-53688310130455008],[524416,1180928,-1975303102434961,-1975301917270118],[524416,1182720,-1975303106832961,-1975301912872117],[524416,1212424,13247603851021587,13247605037567427],[524416,1572994,-8599108313708112,-8599101150291472],[524416,1572996,4648498108918473,4648501315670959],[524416,1573000,272001667572402980,272001719855180396],[524416,1574088,57638914684866570,57638920294078918],[524416,1574280,-1975303102468593,-1975301917236486],[524416,1576072,-1975303104304567,-1975301915400511],[524416,1605760,-15920803246405425,-15920800047067943],[524416,1704064,-258754116160104515,-258754062378889847],[524416,1704074,-4648500367937248,-4648499056652179],[524416,1704076,-1975303106832961,-1975301912872117],[524416,1704136,-33119013675829617,-33119008545642919],[524416,1705096,-58336815178304206,-58336809185820542],[524416,1705152,-53688314809080322,-53688310130455008],[524416,1705344,-1975303102434961,-1975301917270118],[524416,1707136,-1975303106832961,-1975301912872117],[524416,1736840,13247603851021587,13247605037567427],[524416,2097160,-13247606157000801,-13247602731588215],[524416,2228224,17198207753821687,17198211174177485],[524416,2621576,-13247606157000801,-13247602731588215],[524416,2752640,17198207753821687,17198211174177485],[524416,3146760,-1975303106832961,-1975301912872117],[524416,3277824,-1975303104304567,-1975301915400511],[524416,3671176,-1975303106832961,-1975301912872117],[524416,3802240,-1975303104304567,-1975301915400511],[524416,67108872,-7901216780706716,-7901203298113598],[524416,67108928,-8599108279903872,-8599101184095716],[524416,67109888,-8599108313708112,-8599101150291472],[524416,67141632,-9296999886451704,-9296998962727152],[524416,67239936,-63683211765177830,-63683201408715624],[524416,67239946,-4648500405191522,-4648499019397906],[524416,67239948,-1975303134066535,-1975301885638543],[524416,67240008,-1975303194709763,-1975301824995317],[524416,67240968,-4648500367937248,-4648499056652179],[524416,67272712,11272301159430177,11272302709453757],[524416,67633288,-7901216780706716,-7901203298113598],[524416,67633344,-8599108279903872,-8599101184095716],[524416,67634304,-8599108313708112,-8599101150291472],[524416,67666048,-9296999886451704,-9296998962727152],[524416,67764352,-63683211765177830,-63683201408715624],[524416,67764362,-4648500405191522,-4648499019397906],[524416,67764364,-1975303134066535,-1975301885638543],[524416,67764424,-1975303194709763,-1975301824995317],[524416,67765384,-4648500367937248,-4648499056652179],[524416,67797128,11272301159430177,11272302709453757],[524416,68157440,6623798642954895,6623805801339609],[524416,68288520,-4648500367937249,-4648499056652180],[524416,68681856,6623798642954895,6623805801339609],[524416,68812936,-4648500367937249,-4648499056652180],[524416,134217736,-8599108077216494,-8599101386783086],[524416,134348800,1277404472099680,1277411162426122],[524416,134742152,-8599108077216494,-8599101386783086],[524416,134873216,1277404472099680,1277411162426122],[524416,135267336,-1975303102434961,-1975301917270118],[524416,135398400,-1975303102468593,-1975301917236486],[524416,135791752,-1975303102434961,-1975301917270118],[524416,135922816,-1975303102468593,-1975301917236486],[524416,201326592,11272301474344214,11272302394539722],[524416,201851008,11272301474344214,11272302394539722],[524416,268435458,-8599108279903872,-8599101184095716],[524416,268435460,4648498045480102,4648501379109327],[524416,268435464,159397032038790385,159397079835786384],[524416,268436552,31143706687525880,31143710514241570],[524416,268468224,4648498045480101,4648501379109326],[524416,268566528,-168694080794423276,-168694029929332347],[524416,268566538,-1975303194709763,-1975301824995317],[524416,268566540,-22544604485915178,-22544603251852693],[524416,268566600,-53688315226712860,-53688309712822464],[524416,268567560,-33119013675829617,-33119008545642919],[524416,268567616,-31143710514241570,-31143706687525880],[524416,268599304,13247603826875223,13247605061713792],[524416,268959874,-8599108279903872,-8599101184095716],[524416,268959876,4648498045480102,4648501379109327],[524416,268959880,159397032038790385,159397079835786384],[524416,268960968,31143706687525880,31143710514241570],[524416,268992640,4648498045480101,4648501379109326],[524416,269090944,-168694080794423276,-168694029929332347],[524416,269090954,-1975303194709763,-1975301824995317],[524416,269090956,-22544604485915178,-22544603251852693],[524416,269091016,-53688315226712860,-53688309712822464],[524416,269091976,-33119013675829617,-33119008545642919],[524416,269092032,-31143710514241570,-31143706687525880],[524416,269123720,13247603826875223,13247605061713792],[524416,269484104,-31143710514241570,-31143706687525880],[524416,269485064,-53688314809080322,-53688310130455008],[524416,269615112,42416007508370071,42416013562281321],[524416,269615168,31143706687525880,31143710514241570],[524416,269616128,57638914684866570,57638920294078918],[524416,270008520,-31143710514241570,-31143706687525880],[524416,270009480,-53688314809080322,-53688310130455008],[524416,270139528,42416007508370071,42416013562281321],[524416,270139584,31143706687525880,31143710514241570],[524416,270140544,57638914684866570,57638920294078918],[524416,335544320,19173508522816278,19173515424887978],[524416,335675400,-3950606383588294,-3950603655821866],[524416,336068736,19173508522816278,19173515424887978],[524416,336199816,-3950606383588294,-3950603655821866],[524416,35184372088840,-13247606387717226,-13247602500871785],[524416,35184372219904,22544601914969187,22544605822798680],[524416,35184372613256,-13247606387717226,-13247602500871785],[524416,35184372744320,22544601914969187,22544605822798680],[524416,35184439197696,-9296999945106400,-9296998904072456],[524416,35184439722112,-9296999945106400,-9296998904072456],[524419,129,-6623806726760819,-6623797717533688],[524419,130,6623797717533688,6623806726760819],[524419,141,3950603932147814,3950606107262344],[524419,142,-3950606107262344,-3950603932147814],[524419,131209,6623801098016986,6623803346277523],[524419,131210,-6623803346277523,-6623801098016986],[524419,524289,6623797717533688,6623806726760819],[524419,524290,-6623806726760819,-6623797717533688],[524419,524301,-3950606107262344,-3950603932147814],[524419,524302,3950603932147814,3950606107262344],[524419,655369,-6623803346277523,-6623801098016986],[524419,655370,6623801098016986,6623803346277523],[524421,129,-1975304605835260,-1975300413869816],[524421,132,1975300413869816,1975304605835260],[524421,139,-11272302995044411,-11272300873839524],[524421,142,11272300873839524,11272302995044411],[524421,131209,-26495209977993164,-26495207799184865],[524421,131212,26495207799184865,26495209977993164],[524421,524289,1975300413869816,1975304605835260],[524421,524292,-1975304605835260,-1975300413869816],[524421,524299,11272300873839524,11272302995044411],[524421,524302,-11272302995044411,-11272300873839524],[524421,655369,26495207799184865,26495209977993164],[524421,655372,-26495209977993164,-26495207799184865],[524422,0,-18593999772903408,-18593997925454304],[524422,6,-9296999886451704,-9296998962727152],[524422,72,-6623803999983306,-6623800444311202],[524422,78,-11272303056635485,-11272300812248450],[524422,130,-1975305275431532,-1975299744273546],[524422,132,-7321699679927840,-7321694149545938],[524422,139,15222904805987338,15222909102306755],[524422,141,-15222909102306755,-15222904805987338],[524422,202,22544601642609286,22544606095158586],[524422,204,-17896106405970981,-17896101907207464],[524422,1032,-11272302995044411,-11272300873839524],[524422,1038,-11272302995044411,-11272300873839524],[524422,32906,3950603919085972,3950606120324188],[524422,32908,-3950606120324188,-3950603919085972],[524422,131080,42416007508370071,42416013562281321],[524422,131086,22544601642609286,22544606095158586],[524422,131210,11272299869063941,11272303999819992],[524422,131212,8599102631895649,8599106832103938],[524422,524290,-7321699679927840,-7321694149545938],[524422,524292,-1975305275431532,-1975299744273546],[524422,524299,-15222909102306755,-15222904805987338],[524422,524301,15222904805987338,15222909102306755],[524422,524362,-17896106405970981,-17896101907207464],[524422,524364,22544601642609286,22544606095158586],[524422,524416,-9296999886451704,-9296998962727152],[524422,524422,-18593999772903408,-18593997925454304],[524422,524488,-11272303056635485,-11272300812248450],[524422,524494,-6623803999983306,-6623800444311202],[524422,525448,-11272302995044411,-11272300873839524],[524422,525454,-11272302995044411,-11272300873839524],[524422,557066,-3950606120324188,-3950603919085972],[524422,557068,3950603919085972,3950606120324188],[524422,655370,8599102631895649,8599106832103938],[524422,655372,11272299869063941,11272303999819992],[524422,655496,22544601642609286,22544606095158586],[524422,655502,42416007508370071,42416013562281321],[524422,1048584,11272300873839524,11272302995044411],[524422,1048590,11272300873839524,11272302995044411],[524422,1573000,11272300873839524,11272302995044411],[524422,1573006,11272300873839524,11272302995044411],[524422,268435464,11272300812248450,11272303056635485],[524422,268435470,11272300812248450,11272303056635485],[524422,268959880,11272300812248450,11272303056635485],[524422,268959886,11272300812248450,11272303056635485],[524425,66,13247603792440361,13247605096148654],[524425,68,-1975303134066536,-1975301885638544],[524425,75,17896102849092541,17896105464085903],[524425,77,-1975303134066536,-1975301885638544],[524425,129,11272298596064681,11272305272819252],[524425,135,-11272305272819252,-11272298596064681],[524425,136,-11272305272819252,-11272298596064681],[524425,142,11272298596064681,11272305272819252],[524425,195,-8599106519519277,-8599102944480312],[524425,202,3950603717154982,3950606322255178],[524425,1026,13247603822433492,13247605066155522],[524425,1028,-1975303102468593,-1975301917236486],[524425,1035,13247603822433492,13247605066155522],[524425,1037,-1975303102468593,-1975301917236486],[524425,32901,13247603822461068,13247605066127948],[524425,32908,-13247605066127948,-13247603822461068],[524425,131074,-26495210186613570,-26495207590564460],[524425,131076,3950603783705734,3950606255704424],[524425,131083,-19871408457827235,-19871404875056286],[524425,131085,-22544605576438951,-22544602161328920],[524425,131203,17896101898419553,17896106414758888],[524425,131205,-2193017775,2193017774],[524425,131210,-24519907512775874,-24519905244697076],[524425,131212,26495207784975390,26495209992202640],[524425,524289,-11272305272819252,-11272298596064681],[524425,524295,11272298596064681,11272305272819252],[524425,524296,11272298596064681,11272305272819252],[524425,524302,-11272305272819252,-11272298596064681],[524425,524355,3950603717154982,3950606322255178],[524425,524362,-8599106519519277,-8599102944480312],[524425,524482,17896102849092541,17896105464085903],[524425,524484,-1975303134066536,-1975301885638544],[524425,524491,13247603792440361,13247605096148654],[524425,524493,-1975303134066536,-1975301885638544],[524425,525442,13247603822433492,13247605066155522],[524425,525444,-1975303102468593,-1975301917236486],[524425,525451,13247603822433492,13247605066155522],[524425,525453,-1975303102468593,-1975301917236486],[524425,557061,-13247605066127948,-13247603822461068],[524425,557068,13247603822461068,13247605066127948],[524425,655363,-24519907512775874,-24519905244697076],[524425,655365,26495207784975390,26495209992202640],[524425,655370,17896101898419553,17896106414758888],[524425,655372,-2193017775,2193017774],[524425,655490,-19871408457827235,-19871404875056286],[524425,655492,-22544605576438951,-22544602161328920],[524425,655499,-26495210186613570,-26495207590564460],[524425,655501,3950603783705734,3950606255704424],[524425,1048578,-13247605066155522,-13247603822433492],[524425,1048580,1975301917236486,1975303102468593],[524425,1048587,-13247605066155522,-13247603822433492],[524425,1048589,1975301917236486,1975303102468593],[524425,1572994,-13247605066155522,-13247603822433492],[524425,1572996,1975301917236486,1975303102468593],[524425,1573003,-13247605066155522,-13247603822433492],[524425,1573005,1975301917236486,1975303102468593],[524425,268435458,-13247605096148654,-13247603792440361],[524425,268435460,1975301885638544,1975303134066536],[524425,268435467,-13247605096148654,-13247603792440361],[524425,268435469,1975301885638544,1975303134066536],[524425,268959874,-13247605096148654,-13247603792440361],[524425,268959876,1975301885638544,1975303134066536],[524425,268959883,-13247605096148654,-13247603792440361],[524425,268959885,1975301885638544,1975303134066536],[524426,0,-98079630297168496,-98079620732723310],[524426,10,-63683211765177830,-63683201408715624],[524426,65,-13247605096148654,-13247603792440361],[524426,68,8599103424503113,8599106039496475],[524426,75,-17896105464085903,-17896102849092541],[524426,78,13247603792440361,13247605096148654],[524426,130,218159636069763092,218159705380447032],[524426,135,-37767512457661269,-37767509188400696],[524426,136,-252556117717993928,-252556061588214548],[524426,141,37767509188400696,37767512457661269],[524426,195,31143706348854335,31143710852913125],[524426,198,-35792210542100730,-35792206084256157],[524426,201,-26495210655649026,-26495207121529005],[524426,204,31143706348854335,31143710852913125],[524426,330,-1975303134066536,-1975301885638544],[524426,450,24519905292829457,24519907464643494],[524426,456,-22544604485915178,-22544603251852693],[524426,1025,-13247605066155522,-13247603822433492],[524426,1028,13247603822433492,13247605066155522],[524426,1035,-13247605066155522,-13247603822433492],[524426,1038,13247603822433492,13247605066155522],[524426,1088,-21846710653152227,-21846707699436376],[524426,1098,-13247606060429303,-13247602828159713],[524426,1218,-1975304719493192,-1975300300211890],[524426,1224,-6623804308921517,-6623800135372988],[524426,131073,26495207590564460,26495210186613570],[524426,131076,-21846710653066666,-21846707699521935],[524426,131083,19871404875056286,19871408457827235],[524426,131086,-13247606060429303,-13247602828159713],[524426,131136,58336806002895800,58336818361228957],[524426,131146,39742810183793936,39742816481973111],[524426,131203,-17896106414758888,-17896101898419553],[524426,131206,-1975304733296088,-1975300286408991],[524426,131209,24519905244697076,24519907512775874],[524426,131212,-6623804322724415,-6623800121570091],[524426,131266,-79485635001138468,-79485618330395612],[524426,131272,98079620672804862,98079630357086928],[524426,132096,8599103418984813,8599106045014772],[524426,132106,13247603786922062,13247605101666952],[524426,132226,-35792210542100730,-35792206084256157],[524426,132232,31143706348939894,31143710852827564],[524426,163850,-1975303134066535,-1975301885638543],[524426,163970,24519905292829456,24519907464643493],[524426,163976,-22544604485915178,-22544603251852693],[524426,524290,-252556117717993928,-252556061588214548],[524426,524295,37767509188400696,37767512457661269],[524426,524296,218159636069763092,218159705380447032],[524426,524301,-37767512457661269,-37767509188400696],[524426,524355,-26495210655649026,-26495207121529005],[524426,524358,31143706348854335,31143710852913125],[524426,524361,31143706348854335,31143710852913125],[524426,524364,-35792210542100730,-35792206084256157],[524426,524416,-63683211765177830,-63683201408715624],[524426,524426,-98079630297168496,-98079620732723310],[524426,524481,-17896105464085903,-17896102849092541],[524426,524484,13247603792440361,13247605096148654],[524426,524491,-13247605096148654,-13247603792440361],[524426,524494,8599103424503113,8599106039496475],[524426,524610,-22544604485915178,-22544603251852693],[524426,524616,24519905292829457,24519907464643494],[524426,524736,-1975303134066536,-1975301885638544],[524426,525378,-6623804308921517,-6623800135372988],[524426,525384,-1975304719493192,-1975300300211890],[524426,525441,-13247605066155522,-13247603822433492],[524426,525444,13247603822433492,13247605066155522],[524426,525451,-13247605066155522,-13247603822433492],[524426,525454,13247603822433492,13247605066155522],[524426,525504,-13247606060429303,-13247602828159713],[524426,525514,-21846710653152227,-21846707699436376],[524426,655363,24519905244697076,24519907512775874],[524426,655366,-6623804322724415,-6623800121570091],[524426,655369,-17896106414758888,-17896101898419553],[524426,655372,-1975304733296088,-1975300286408991],[524426,655426,98079620672804862,98079630357086928],[524426,655432,-79485635001138468,-79485618330395612],[524426,655489,19871404875056286,19871408457827235],[524426,655492,-13247606060429303,-13247602828159713],[524426,655499,26495207590564460,26495210186613570],[524426,655502,-21846710653066666,-21846707699521935],[524426,655552,39742810183793936,39742816481973111],[524426,655562,58336806002895800,58336818361228957],[524426,656386,31143706348939894,31143710852827564],[524426,656392,-35792210542100730,-35792206084256157],[524426,656512,13247603786922062,13247605101666952],[524426,656522,8599103418984813,8599106045014772],[524426,688130,-22544604485915178,-22544603251852693],[524426,688136,24519905292829456,24519907464643493],[524426,688256,-1975303134066535,-1975301885638543],[524426,1048577,13247603822433492,13247605066155522],[524426,1048580,-13247605066155522,-13247603822433492],[524426,1048587,13247603822433492,13247605066155522],[524426,1048590,-13247605066155522,-13247603822433492],[524426,1048640,26495207590564460,26495210186613570],[524426,1048650,19871404874970728,19871408457912797],[524426,1048770,-17896106400955991,-17896101912222451],[524426,1048776,24519905258499972,24519907498972975],[524426,1049730,-37767512457661269,-37767509188400696],[524426,1049736,37767509188400696,37767512457661269],[524426,1179648,-13247605101666952,-13247603786922062],[524426,1179658,-17896105469604200,-17896102843574241],[524426,1179778,31143706348939894,31143710852827564],[524426,1179784,-26495210655649026,-26495207121529005],[524426,1572930,24519905258499972,24519907498972975],[524426,1572936,-17896106400955991,-17896101912222451],[524426,1572993,13247603822433492,13247605066155522],[524426,1572996,-13247605066155522,-13247603822433492],[524426,1573003,13247603822433492,13247605066155522],[524426,1573006,-13247605066155522,-13247603822433492],[524426,1573056,19871404874970728,19871408457912797],[524426,1573066,26495207590564460,26495210186613570],[524426,1573890,37767509188400696,37767512457661269],[524426,1573896,-37767512457661269,-37767509188400696],[524426,1703938,-26495210655649026,-26495207121529005],[524426,1703944,31143706348939894,31143710852827564],[524426,1704064,-17896105469604200,-17896102843574241],[524426,1704074,-13247605101666952,-13247603786922062],[524426,67239946,-4648500405191522,-4648499019397906],[524426,67240066,6623801015151933,6623803429142575],[524426,67240072,-1975303194709763,-1975301824995317],[524426,67764226,-1975303194709763,-1975301824995317],[524426,67764232,6623801015151933,6623803429142575],[524426,67764352,-4648500405191522,-4648499019397906],[524426,268435457,13247603792440361,13247605096148654],[524426,268435460,-13247605096148654,-13247603792440361],[524426,268435467,13247603792440361,13247605096148654],[524426,268435470,-13247605096148654,-13247603792440361],[524426,268435520,26495207525594866,26495210251583166],[524426,268435530,19871404864681274,19871408468202250],[524426,268435650,-17896106590718401,-17896101722460043],[524426,268435656,24519905151602618,24519907605870334],[524426,268436610,-24519907498972975,-24519905258499972],[524426,268436616,24519905258499972,24519907498972975],[524426,268566528,-13247605134312055,-13247603754276960],[524426,268566538,-15222908329021818,-15222905579272277],[524426,268566658,49039810351907138,49039815163038758],[524426,268566664,-47064512135024435,-47064508360216381],[524426,268959810,24519905151602618,24519907605870334],[524426,268959816,-17896106590718401,-17896101722460043],[524426,268959873,13247603792440361,13247605096148654],[524426,268959876,-13247605096148654,-13247603792440361],[524426,268959883,13247603792440361,13247605096148654],[524426,268959886,-13247605096148654,-13247603792440361],[524426,268959936,19871404864681274,19871408468202250],[524426,268959946,26495207525594866,26495210251583166],[524426,268960770,24519905258499972,24519907498972975],[524426,268960776,-24519907498972975,-24519905258499972],[524426,269090818,-47064512135024435,-47064508360216381],[524426,269090824,49039810351907138,49039815163038758],[524426,269090944,-15222908329021818,-15222905579272277],[524426,269090954,-13247605134312055,-13247603754276960],[524426,269484162,24519905258499972,24519907498972975],[524426,269484168,-24519907498972975,-24519905258499972],[524426,270008322,-24519907498972975,-24519905258499972],[524426,270008328,24519905258499972,24519907498972975],[524428,0,-18594001036550426,-18593996661807284],[524428,12,-11272305028685690,-11272298840198250],[524428,65,1975301885638544,1975303134066536],[524428,66,-1975303134066536,-1975301885638544],[524428,77,1975301885638544,1975303134066536],[524428,78,-1975303134066536,-1975301885638544],[524428,132,-67361745915243333,-67361693124389608],[524428,135,49039811053725950,49039814461219948],[524428,136,60039999943769960,60040045266389211],[524428,139,-49039814461219948,-49039811053725950],[524428,1025,1975301917236486,1975303102468593],[524428,1026,-1975303102468593,-1975301917236486],[524428,1037,1975301917236486,1975303102468593],[524428,1038,-1975303102468593,-1975301917236486],[524428,1220,6623801159997192,6623803284297315],[524428,1224,-6623803284297315,-6623801159997192],[524428,32832,1975301885115096,1975303134589986],[524428,32844,1975301885115096,1975303134589986],[524428,32901,-26495209992202640,-26495207784975390],[524428,32902,26495207784975390,26495209992202640],[524428,32905,26495207784975390,26495209992202640],[524428,32906,-26495209992202640,-26495207784975390],[524428,33792,1975301908323058,1975303111382023],[524428,33804,1975301908323058,1975303111382023],[524428,131073,-3950606255704424,-3950603783705734],[524428,131074,-9297000814034204,-9296998035144653],[524428,131085,22544602161328920,22544605576438951],[524428,131086,1975300959240085,1975304060464993],[524428,131136,11272300692285237,11272303176598696],[524428,131148,-1975303134589986,-1975301885115096],[524428,131205,-2193017774,2193017775],[524428,131206,-19871408894185654,-19871404438697867],[524428,131209,-26495209992202640,-26495207784975390],[524428,131210,8599102661848405,8599106802151181],[524428,131268,-17896106405885420,-17896101907293023],[524428,131272,31143706348939894,31143710852827564],[524428,132096,11272300739639564,11272303129244369],[524428,132108,-1975303111382023,-1975301908323058],[524428,132228,-2124775455,2124775457],[524428,132232,13247602302125610,13247606586463402],[524428,163840,-3950606273531284,-3950603765878878],[524428,163852,-4276638122,4276638132],[524428,163972,43113898635137411,43113911820693235],[524428,163976,-47064513169575377,-47064507325665441],[524428,524292,60039999943769960,60040045266389211],[524428,524295,-49039814461219948,-49039811053725950],[524428,524296,-67361745915243333,-67361693124389608],[524428,524299,49039811053725950,49039814461219948],[524428,524416,-11272305028685690,-11272298840198250],[524428,524428,-18594001036550426,-18593996661807284],[524428,524481,1975301885638544,1975303134066536],[524428,524482,-1975303134066536,-1975301885638544],[524428,524493,1975301885638544,1975303134066536],[524428,524494,-1975303134066536,-1975301885638544],[524428,525380,-6623803284297315,-6623801159997192],[524428,525384,6623801159997192,6623803284297315],[524428,525441,1975301917236486,1975303102468593],[524428,525442,-1975303102468593,-1975301917236486],[524428,525453,1975301917236486,1975303102468593],[524428,525454,-1975303102468593,-1975301917236486],[524428,557061,26495207784975390,26495209992202640],[524428,557062,-26495209992202640,-26495207784975390],[524428,557065,-26495209992202640,-26495207784975390],[524428,557066,26495207784975390,26495209992202640],[524428,557248,1975301885115096,1975303134589986],[524428,557260,1975301885115096,1975303134589986],[524428,558208,1975301908323058,1975303111382023],[524428,558220,1975301908323058,1975303111382023],[524428,655365,-26495209992202640,-26495207784975390],[524428,655366,8599102661848405,8599106802151181],[524428,655369,-2193017774,2193017775],[524428,655370,-19871408894185654,-19871404438697867],[524428,655428,31143706348939894,31143710852827564],[524428,655432,-17896106405885420,-17896101907293023],[524428,655489,22544602161328920,22544605576438951],[524428,655490,1975300959240085,1975304060464993],[524428,655501,-3950606255704424,-3950603783705734],[524428,655502,-9297000814034204,-9296998035144653],[524428,655552,-1975303134589986,-1975301885115096],[524428,655564,11272300692285237,11272303176598696],[524428,656388,13247602302125610,13247606586463402],[524428,656392,-2124775455,2124775457],[524428,656512,-1975303111382023,-1975301908323058],[524428,656524,11272300739639564,11272303129244369],[524428,688132,-47064513169575377,-47064507325665441],[524428,688136,43113898635137411,43113911820693235],[524428,688256,-4276638122,4276638132],[524428,688268,-3950606273531284,-3950603765878878],[524428,1048577,-1975303102468593,-1975301917236486],[524428,1048578,1975301917236486,1975303102468593],[524428,1048589,-1975303102468593,-1975301917236486],[524428,1048590,1975301917236486,1975303102468593],[524428,1048772,-6623803284297315,-6623801159997192],[524428,1048776,6623801159997192,6623803284297315],[524428,1049732,-19871408102400732,-19871405230482798],[524428,1049736,19871405230482798,19871408102400732],[524428,1081344,-1975303111382023,-1975301908323058],[524428,1081356,-1975303111382023,-1975301908323058],[524428,1179648,1975301908323058,1975303111382023],[524428,1179660,-1198509903,1198509906],[524428,1179780,13247602302125610,13247606586463402],[524428,1179784,-11272303635356703,-11272300233527231],[524428,1572932,6623801159997192,6623803284297315],[524428,1572936,-6623803284297315,-6623801159997192],[524428,1572993,-1975303102468593,-1975301917236486],[524428,1572994,1975301917236486,1975303102468593],[524428,1573005,-1975303102468593,-1975301917236486],[524428,1573006,1975301917236486,1975303102468593],[524428,1573892,19871405230482798,19871408102400732],[524428,1573896,-19871408102400732,-19871405230482798],[524428,1605760,-1975303111382023,-1975301908323058],[524428,1605772,-1975303111382023,-1975301908323058],[524428,1703940,-11272303635356703,-11272300233527231],[524428,1703944,13247602302125610,13247606586463402],[524428,1704064,-1198509903,1198509906],[524428,1704076,1975301908323058,1975303111382023],[524428,67239948,-1975303134066535,-1975301885638543],[524428,67240068,6623801098016984,6623803346277521],[524428,67240072,-4648500367937248,-4648499056652179],[524428,67764228,-4648500367937248,-4648499056652179],[524428,67764232,6623801098016984,6623803346277521],[524428,67764352,-1975303134066535,-1975301885638543],[524428,268435457,-1975303134066536,-1975301885638544],[524428,268435458,1975301885638544,1975303134066536],[524428,268435469,-1975303134066536,-1975301885638544],[524428,268435470,1975301885638544,1975303134066536],[524428,268435652,-6623803364300278,-6623801079994226],[524428,268435656,6623801079994226,6623803364300278],[524428,268436612,-6623803284297315,-6623801159997192],[524428,268436616,6623801159997192,6623803284297315],[524428,268468224,-1975303134589986,-1975301885115096],[524428,268468236,-1975303134589986,-1975301885115096],[524428,268566528,1975301885115096,1975303134589986],[524428,268566540,-20569302600800082,-20569300117262707],[524428,268566660,31143706348939894,31143710852827564],[524428,268566664,-8599106519433716,-8599102944565871],[524428,268959812,6623801079994226,6623803364300278],[524428,268959816,-6623803364300278,-6623801079994226],[524428,268959873,-1975303134066536,-1975301885638544],[524428,268959874,1975301885638544,1975303134066536],[524428,268959885,-1975303134066536,-1975301885638544],[524428,268959886,1975301885638544,1975303134066536],[524428,268960772,6623801159997192,6623803284297315],[524428,268960776,-6623803284297315,-6623801159997192],[524428,268992640,-1975303134589986,-1975301885115096],[524428,268992652,-1975303134589986,-1975301885115096],[524428,269090820,-8599106519433716,-8599102944565871],[524428,269090824,31143706348939894,31143710852827564],[524428,269090944,-20569302600800082,-20569300117262707],[524428,269090956,1975301885115096,1975303134589986],[524428,269484164,6623801159997192,6623803284297315],[524428,269484168,-6623803284297315,-6623801159997192],[524428,270008324,-6623803284297315,-6623801159997192],[524428,270008328,6623801159997192,6623803284297315],[524431,129,-18594001255457720,-18593996442899990],[524431,130,-26495210066406118,-26495207710771912],[524431,132,45089206509306108,45089208966229632],[524431,139,-45089208966229632,-45089206509306108],[524431,141,26495207710771912,26495210066406118],[524431,142,18593996442899990,18594001255457720],[524431,524289,18593996442899990,18594001255457720],[524431,524290,26495207710771912,26495210066406118],[524431,524292,-45089208966229632,-45089206509306108],[524431,524299,45089206509306108,45089208966229632],[524431,524301,-26495210066406118,-26495207710771912],[524431,524302,-18594001255457720,-18593996442899990],[524481,10,-4648500367937249,-4648499056652180],[524481,75,-17896105464085903,-17896102849092541],[524481,77,1975301885638544,1975303134066536],[524481,129,-4648501379109328,-4648498045480103],[524481,135,-1975303130061553,-1975301889643525],[524481,139,39742811546633741,39742815119133304],[524481,141,-3950606107262344,-3950603932147814],[524481,192,4648498045480103,4648501379109328],[524481,198,1975301889643525,1975303130061553],[524481,202,-26495210190850288,-26495207586327742],[524481,204,1975301889643525,1975303130061553],[524481,387,6623801172992632,6623803271301876],[524481,450,-6623803271301876,-6623801172992632],[524481,1026,-4648500337554984,-4648499087034444],[524481,1091,-4648500337554984,-4648499087034444],[524481,131074,4648499056652180,4648500367937249],[524481,131139,4648499056652180,4648500367937249],[524481,524289,4648498045480103,4648501379109328],[524481,524295,1975301889643525,1975303130061553],[524481,524299,-26495210190850288,-26495207586327742],[524481,524301,1975301889643525,1975303130061553],[524481,524352,-4648501379109328,-4648498045480103],[524481,524358,-1975303130061553,-1975301889643525],[524481,524362,39742811546633741,39742815119133304],[524481,524364,-3950606107262344,-3950603932147814],[524481,524426,-17896105464085903,-17896102849092541],[524481,524428,1975301885638544,1975303134066536],[524481,524491,-4648500367937249,-4648499056652180],[524481,524547,-6623803271301876,-6623801172992632],[524481,524610,6623801172992632,6623803271301876],[524481,525442,-4648500337554984,-4648499087034444],[524481,525507,-4648500337554984,-4648499087034444],[524481,655490,4648499056652180,4648500367937249],[524481,655555,4648499056652180,4648500367937249],[524481,1048578,4648499087034444,4648500337554984],[524481,1048643,4648499087034444,4648500337554984],[524481,1572994,4648499087034444,4648500337554984],[524481,1573059,4648499087034444,4648500337554984],[524481,268435458,4648499059714221,4648500364875210],[524481,268435523,4648499059714221,4648500364875210],[524481,268959874,4648499059714221,4648500364875210],[524481,268959939,4648499059714221,4648500364875210],[524482,0,11851812660075666,11851817458154814],[524482,9,4648499056652180,4648500367937249],[524482,66,19173508522816278,19173515424887978],[524482,75,17896102849092541,17896105464085903],[524482,78,-1975303134066536,-1975301885638544],[524482,130,-85257851747913146,-85257795604898244],[524482,139,-37767513075615154,-37767508570446813],[524482,142,3950603932147814,3950606107262344],[524482,192,77936102841789496,77936150681548118],[524482,201,24519904610140814,24519908147332138],[524482,204,-1975303130061553,-1975301889643525],[524482,264,-6623803529731050,-6623800914563458],[524482,330,-4648500367937249,-4648499056652180],[524482,387,-6623803271301876,-6623801172992632],[524482,394,35792206084485028,35792210541871860],[524482,449,6623801172992632,6623803271301876],[524482,456,-37767513075615154,-37767508570446813],[524482,1025,4648499087034444,4648500337554984],[524482,1032,5925906055094245,5925909004020996],[524482,1091,4648499087034444,4648500337554984],[524482,1098,17198207846590140,17198211081409034],[524482,1162,-19871408879756524,-19871404453126997],[524482,1224,8599102641942379,8599106822057209],[524482,1280,-4648500337554984,-4648499087034444],[524482,1346,-4648500337554984,-4648499087034444],[524482,131073,-4648500367937249,-4648499056652180],[524482,131080,-3950606383588294,-3950603655821866],[524482,131139,-4648500367937249,-4648499056652180],[524482,131146,-30445818898447706,-30445808918140474],[524482,131210,-13247611732520567,-13247597156068460],[524482,131272,39742810183793936,39742816481973111],[524482,131328,4648499056652180,4648500367937249],[524482,131394,4648499056652180,4648500367937249],[524482,132226,-6623803346277521,-6623801098016984],[524482,132288,6623801098016984,6623803346277521],[524482,524290,77936102841789496,77936150681548118],[524482,524299,24519904610140814,24519908147332138],[524482,524302,-1975303130061553,-1975301889643525],[524482,524352,-85257851747913146,-85257795604898244],[524482,524361,-37767513075615154,-37767508570446813],[524482,524364,3950603932147814,3950606107262344],[524482,524416,19173508522816278,19173515424887978],[524482,524425,17896102849092541,17896105464085903],[524482,524428,-1975303134066536,-1975301885638544],[524482,524482,11851812660075666,11851817458154814],[524482,524491,4648499056652180,4648500367937249],[524482,524547,6623801172992632,6623803271301876],[524482,524554,-37767513075615154,-37767508570446813],[524482,524609,-6623803271301876,-6623801172992632],[524482,524616,35792206084485028,35792210541871860],[524482,524680,-4648500367937249,-4648499056652180],[524482,524746,-6623803529731050,-6623800914563458],[524482,525322,8599102641942379,8599106822057209],[524482,525384,-19871408879756524,-19871404453126997],[524482,525441,4648499087034444,4648500337554984],[524482,525448,17198207846590140,17198211081409034],[524482,525507,4648499087034444,4648500337554984],[524482,525514,5925906055094245,5925909004020996],[524482,525696,-4648500337554984,-4648499087034444],[524482,525762,-4648500337554984,-4648499087034444],[524482,655370,39742810183793936,39742816481973111],[524482,655432,-13247611732520567,-13247597156068460],[524482,655489,-4648500367937249,-4648499056652180],[524482,655496,-30445818898447706,-30445808918140474],[524482,655555,-4648500367937249,-4648499056652180],[524482,655562,-3950606383588294,-3950603655821866],[524482,655744,4648499056652180,4648500367937249],[524482,655810,4648499056652180,4648500367937249],[524482,656386,6623801098016984,6623803346277521],[524482,656448,-6623803346277521,-6623801098016984],[524482,1048577,-4648500337554984,-4648499087034444],[524482,1048584,-3950606317756372,-3950603721653790],[524482,1048643,-4648500337554984,-4648499087034444],[524482,1048650,-28470513188678840,-28470509608204269],[524482,1048714,17896101912222451,17896106400955991],[524482,1048776,6623801098016984,6623803346277521],[524482,1048832,4648499087034444,4648500337554984],[524482,1048898,4648499087034444,4648500337554984],[524482,1049730,-19871408304404039,-19871405028479484],[524482,1049792,19871405028479484,19871408304404039],[524482,1179778,6623801098016984,6623803346277521],[524482,1179840,-6623803346277521,-6623801098016984],[524482,1572874,6623801098016984,6623803346277521],[524482,1572936,17896101912222451,17896106400955991],[524482,1572993,-4648500337554984,-4648499087034444],[524482,1573000,-28470513188678840,-28470509608204269],[524482,1573059,-4648500337554984,-4648499087034444],[524482,1573066,-3950606317756372,-3950603721653790],[524482,1573248,4648499087034444,4648500337554984],[524482,1573314,4648499087034444,4648500337554984],[524482,1573890,19871405028479484,19871408304404039],[524482,1573952,-19871408304404039,-19871405028479484],[524482,1703938,-6623803346277521,-6623801098016984],[524482,1704000,6623801098016984,6623803346277521],[524482,268435457,-4648500364875210,-4648499059714221],[524482,268435464,-3950606396524520,-3950603642885640],[524482,268435523,-4648500364875210,-4648499059714221],[524482,268435530,-28470513144585146,-28470509652297966],[524482,268435594,17896101722460043,17896106590718401],[524482,268435656,6623801015151933,6623803429142575],[524482,268435712,4648499059714221,4648500364875210],[524482,268435778,4648499059714221,4648500364875210],[524482,268436610,-6623803341365525,-6623801102928978],[524482,268436672,6623801102928978,6623803341365525],[524482,268566658,6623801015151933,6623803429142575],[524482,268566720,-6623803429142575,-6623801015151933],[524482,268959754,6623801015151933,6623803429142575],[524482,268959816,17896101722460043,17896106590718401],[524482,268959873,-4648500364875210,-4648499059714221],[524482,268959880,-28470513144585146,-28470509652297966],[524482,268959939,-4648500364875210,-4648499059714221],[524482,268959946,-3950606396524520,-3950603642885640],[524482,268960128,4648499059714221,4648500364875210],[524482,268960194,4648499059714221,4648500364875210],[524482,268960770,6623801102928978,6623803341365525],[524482,268960832,-6623803341365525,-6623801102928978],[524482,269090818,-6623803429142575,-6623801015151933],[524482,269090880,6623801015151933,6623803429142575],[524482,269484162,6623801102928978,6623803341365525],[524482,269484224,-6623803341365525,-6623801102928978],[524482,270008322,-6623803341365525,-6623801102928978],[524482,270008384,6623801102928978,6623803341365525],[524484,0,18593997925454304,18593999772903408],[524484,10,-4648500367937248,-4648499056652179],[524484,68,4648498045480101,4648501379109326],[524484,77,-1975303134066536,-1975301885638544],[524484,78,13247603792440361,13247605096148654],[524484,132,9296996568177046,9297002281001814],[524484,135,1975301889643525,1975303130061553],[524484,141,3950603932147814,3950606107262344],[524484,142,-21846713211925840,-21846705140662760],[524484,192,4648498045480100,4648501379109325],[524484,195,-1975303130061553,-1975301889643525],[524484,201,-1975303130061553,-1975301889643525],[524484,202,3950601491169156,3950608548241002],[524484,264,-4648500337588616,-4648499087000812],[524484,396,6623801159963560,6623803284330947],[524484,456,-11272302995044411,-11272300873839524],[524484,1032,9296998645184146,9297000203994710],[524484,1100,17896103248910824,17896105064267619],[524484,1164,-26495209915574692,-26495207861603338],[524484,1224,17896103248910824,17896105064267619],[524484,32844,-1975303134589986,-1975301885115096],[524484,32908,3950603919085972,3950606120324188],[524484,32968,-1975303142599947,-1975301877105131],[524484,131080,-4648500367937249,-4648499056652180],[524484,131148,3950601481951714,3950608557458446],[524484,131212,-21846713226576023,-21846705126012580],[524484,131272,13247603786922062,13247605101666952],[524484,163908,-1975303134589986,-1975301885115096],[524484,163972,1975301885115096,1975303134589986],[524484,524292,4648498045480100,4648501379109325],[524484,524295,-1975303130061553,-1975301889643525],[524484,524301,-1975303130061553,-1975301889643525],[524484,524302,3950601491169156,3950608548241002],[524484,524352,9296996568177046,9297002281001814],[524484,524355,1975301889643525,1975303130061553],[524484,524361,3950603932147814,3950606107262344],[524484,524362,-21846713211925840,-21846705140662760],[524484,524416,4648498045480101,4648501379109326],[524484,524425,-1975303134066536,-1975301885638544],[524484,524426,13247603792440361,13247605096148654],[524484,524484,18593997925454304,18593999772903408],[524484,524494,-4648500367937248,-4648499056652179],[524484,524556,-11272302995044411,-11272300873839524],[524484,524616,6623801159963560,6623803284330947],[524484,524748,-4648500337588616,-4648499087000812],[524484,525324,17896103248910824,17896105064267619],[524484,525384,-26495209915574692,-26495207861603338],[524484,525448,17896103248910824,17896105064267619],[524484,525516,9296998645184146,9297000203994710],[524484,557068,-1975303142599947,-1975301877105131],[524484,557128,3950603919085972,3950606120324188],[524484,557192,-1975303134589986,-1975301885115096],[524484,655372,13247603786922062,13247605101666952],[524484,655432,-21846713226576023,-21846705126012580],[524484,655496,3950601481951714,3950608557458446],[524484,655564,-4648500367937249,-4648499056652180],[524484,688192,1975301885115096,1975303134589986],[524484,688256,-1975303134589986,-1975301885115096],[524484,1048584,-4648500337554984,-4648499087034444],[524484,1048652,-11272302995044411,-11272300873839524],[524484,1048716,6623801159997192,6623803284297315],[524484,1572936,6623801159997192,6623803284297315],[524484,1573000,-11272302995044411,-11272300873839524],[524484,1573068,-4648500337554984,-4648499087034444],[524484,268435464,-4648500364875210,-4648499059714221],[524484,268435532,-11272303056635485,-11272300812248450],[524484,268435596,6623801079994226,6623803364300278],[524484,268959816,6623801079994226,6623803364300278],[524484,268959880,-11272303056635485,-11272300812248450],[524484,268959948,-4648500364875210,-4648499059714221],[524487,129,-1975303130061553,-1975301889643525],[524487,132,1975301889643525,1975303130061553],[524487,195,-1975303130061553,-1975301889643525],[524487,198,1975301889643525,1975303130061553],[524487,524289,1975301889643525,1975303130061553],[524487,524292,-1975303130061553,-1975301889643525],[524487,524355,1975301889643525,1975303130061553],[524487,524358,-1975303130061553,-1975301889643525],[524488,0,-3681052522,3681052524],[524488,6,4648499056652179,4648500367937248],[524488,72,-168694080794423276,-168694029929332347],[524488,78,-11272303056635485,-11272300812248450],[524488,136,235357851276653147,235357909101556156],[524488,139,20569300121791140,20569302596271653],[524488,142,4648494894207522,4648504530381905],[524488,192,-66663850285081034,-66663799369372644],[524488,195,-20569302596271653,-20569300121791140],[524488,198,11272297936924019,11272305931959916],[524488,258,1975301857911278,1975303161793801],[524488,260,4648499087000812,4648500337588616],[524488,330,6623801098016986,6623803346277523],[524488,394,-9297003420342855,-9296995428836002],[524488,396,-6623803284330947,-6623801159963560],[524488,450,4648494894531634,4648504530057793],[524488,452,11272300873839524,11272302995044411],[524488,1026,15920798695415380,15920804598057982],[524488,1028,-9297000203994710,-9296998645184146],[524488,1098,-3950608253249321,-3950601786160837],[524488,1100,-17896105064267619,-17896103248910824],[524488,1162,8599102676277534,8599106787722050],[524488,1164,26495207861603338,26495209915574692],[524488,1218,11272299879110672,11272303989773264],[524488,1220,-17896105064267619,-17896103248910824],[524488,1280,8599103952831266,8599105511168320],[524488,1352,-13247605939232943,-13247602949356073],[524488,1416,-31143710097470678,-31143707104296780],[524488,1472,52990415723206676,52990419831149384],[524488,131074,-45089213226916902,-45089202248618840],[524488,131076,4648499056652180,4648500367937249],[524488,131146,-13247611732520567,-13247597156068460],[524488,131148,11272297923178146,11272305945705791],[524488,131210,-18594007185055848,-18593990513301844],[524488,131212,4648494866495498,4648504558093930],[524488,131266,-13247611779979171,-13247597108609852],[524488,131268,-11272303070687196,-11272300798196740],[524488,131328,-22544606469793008,-22544601267974862],[524488,131400,-6623803346277523,-6623801098016986],[524488,131464,-24519907512775874,-24519905244697076],[524488,131520,8599101131740910,8599108332258679],[524488,132096,15920798685149414,15920804608323947],[524488,132168,11272299869063941,11272303999819992],[524488,132232,8599102661848405,8599106802151181],[524488,132288,-3950608267983247,-3950601771426911],[524488,163912,-20569302600800082,-20569300117262707],[524488,163976,20569300117262707,20569302600800082],[524488,524296,-66663850285081034,-66663799369372644],[524488,524299,-20569302596271653,-20569300121791140],[524488,524302,11272297936924019,11272305931959916],[524488,524352,235357851276653147,235357909101556156],[524488,524355,20569300121791140,20569302596271653],[524488,524358,4648494894207522,4648504530381905],[524488,524416,-168694080794423276,-168694029929332347],[524488,524422,-11272303056635485,-11272300812248450],[524488,524488,-3681052522,3681052524],[524488,524494,4648499056652179,4648500367937248],[524488,524554,4648494894531634,4648504530057793],[524488,524556,11272300873839524,11272302995044411],[524488,524610,-9297003420342855,-9296995428836002],[524488,524612,-6623803284330947,-6623801159963560],[524488,524674,6623801098016986,6623803346277523],[524488,524746,1975301857911278,1975303161793801],[524488,524748,4648499087000812,4648500337588616],[524488,525322,11272299879110672,11272303989773264],[524488,525324,-17896105064267619,-17896103248910824],[524488,525378,8599102676277534,8599106787722050],[524488,525380,26495207861603338,26495209915574692],[524488,525442,-3950608253249321,-3950601786160837],[524488,525444,-17896105064267619,-17896103248910824],[524488,525514,15920798695415380,15920804598057982],[524488,525516,-9297000203994710,-9296998645184146],[524488,525576,52990415723206676,52990419831149384],[524488,525632,-31143710097470678,-31143707104296780],[524488,525696,-13247605939232943,-13247602949356073],[524488,525768,8599103952831266,8599105511168320],[524488,655370,-13247611779979171,-13247597108609852],[524488,655372,-11272303070687196,-11272300798196740],[524488,655426,-18594007185055848,-18593990513301844],[524488,655428,4648494866495498,4648504558093930],[524488,655490,-13247611732520567,-13247597156068460],[524488,655492,11272297923178146,11272305945705791],[524488,655562,-45089213226916902,-45089202248618840],[524488,655564,4648499056652180,4648500367937249],[524488,655624,8599101131740910,8599108332258679],[524488,655680,-24519907512775874,-24519905244697076],[524488,655744,-6623803346277523,-6623801098016986],[524488,655816,-22544606469793008,-22544601267974862],[524488,656392,-3950608267983247,-3950601771426911],[524488,656448,8599102661848405,8599106802151181],[524488,656512,11272299869063941,11272303999819992],[524488,656584,15920798685149414,15920804608323947],[524488,688192,20569300117262707,20569302600800082],[524488,688256,-20569302600800082,-20569300117262707],[524488,1048578,-22544606464959780,-22544601272808088],[524488,1048580,4648499087034444,4648500337554984],[524488,1048650,8599101150291472,8599108313708112],[524488,1048652,11272300873839524,11272302995044411],[524488,1048714,-24519907498972975,-24519905258499972],[524488,1048716,-6623803284297315,-6623801159997192],[524488,1048770,-6623803346277521,-6623801098016984],[524488,1048832,-13247605066155522,-13247603822433492],[524488,1048904,-6623803284297315,-6623801159997192],[524488,1049024,-6623803284297315,-6623801159997192],[524488,1049600,8599103952864898,8599105511134688],[524488,1049672,52990415723206676,52990419831149384],[524488,1049736,-31143710097437046,-31143707104330412],[524488,1049792,-13247605939232943,-13247602949356073],[524488,1179648,1975301852392980,1975303167312100],[524488,1179720,4648494875353022,4648504549236406],[524488,1179784,-9297003434088727,-9296995415090126],[524488,1179840,6623801098016984,6623803346277521],[524488,1572874,-6623803346277521,-6623801098016984],[524488,1572930,-24519907498972975,-24519905258499972],[524488,1572932,-6623803284297315,-6623801159997192],[524488,1572994,8599101150291472,8599108313708112],[524488,1572996,11272300873839524,11272302995044411],[524488,1573066,-22544606464959780,-22544601272808088],[524488,1573068,4648499087034444,4648500337554984],[524488,1573128,-6623803284297315,-6623801159997192],[524488,1573248,-6623803284297315,-6623801159997192],[524488,1573320,-13247605066155522,-13247603822433492],[524488,1573896,-13247605939232943,-13247602949356073],[524488,1573952,-31143710097437046,-31143707104330412],[524488,1574016,52990415723206676,52990419831149384],[524488,1574088,8599103952864898,8599105511134688],[524488,1703944,6623801098016984,6623803346277521],[524488,1704000,-9297003434088727,-9296995415090126],[524488,1704064,4648494875353022,4648504549236406],[524488,1704136,1975301852392980,1975303167312100],[524488,67240008,-15222908329021818,-15222905579272277],[524488,67240072,15222905579272277,15222908329021818],[524488,67764288,15222905579272277,15222908329021818],[524488,67764352,-15222908329021818,-15222905579272277],[524488,268435458,-22544606608697526,-22544601129070346],[524488,268435460,4648499059714221,4648500364875210],[524488,268435530,8599101184095716,8599108279903872],[524488,268435532,11272300812248450,11272303056635485],[524488,268435594,-24519907605870334,-24519905151602618],[524488,268435596,-6623803364300278,-6623801079994226],[524488,268435650,-6623803429142575,-6623801015151933],[524488,268435712,-13247605096148654,-13247603792440361],[524488,268435784,-6623803337001160,-6623801107293350],[524488,268435904,-6623803358085955,-6623801086208550],[524488,268436480,8599103904459875,8599105559539709],[524488,268436552,26495207799425147,26495209977752878],[524488,268436616,-17896105125322940,-17896103187855503],[524488,268436672,-964466106,964466108],[524488,268566528,1975301823150576,1975303196554503],[524488,268566600,-697899880612376,-697889504566882],[524488,268566664,-3950609326662792,-3950600712747379],[524488,268566720,6623801015151933,6623803429142575],[524488,268959754,-6623803429142575,-6623801015151933],[524488,268959810,-24519907605870334,-24519905151602618],[524488,268959812,-6623803364300278,-6623801079994226],[524488,268959874,8599101184095716,8599108279903872],[524488,268959876,11272300812248450,11272303056635485],[524488,268959946,-22544606608697526,-22544601129070346],[524488,268959948,4648499059714221,4648500364875210],[524488,268960008,-6623803358085955,-6623801086208550],[524488,268960128,-6623803337001160,-6623801107293350],[524488,268960200,-13247605096148654,-13247603792440361],[524488,268960776,-964466106,964466108],[524488,268960832,-17896105125322940,-17896103187855503],[524488,268960896,26495207799425147,26495209977752878],[524488,268960968,8599103904459875,8599105559539709],[524488,269090824,6623801015151933,6623803429142575],[524488,269090880,-3950609326662792,-3950600712747379],[524488,269090944,-697899880612376,-697889504566882],[524488,269091016,1975301823150576,1975303196554503],[524488,269484104,-31143710514241570,-31143706687525880],[524488,269484168,24519905258499972,24519907498972975],[524488,269484224,6623801102928978,6623803341365525],[524488,270008328,6623801102928978,6623803341365525],[524488,270008384,24519905258499972,24519907498972975],[524488,270008448,-31143710514241570,-31143706687525880],[524491,9,4648499056652180,4648500367937249],[524491,10,-4648500367937249,-4648499056652180],[524491,65,-13247605096148654,-13247603792440361],[524491,66,13247603792440361,13247605096148654],[524491,129,31143705027114464,31143712174652992],[524491,130,-6623806726760819,-6623797717533688],[524491,136,-1975303130061553,-1975301889643525],[524491,139,22544603251852693,22544604485915178],[524491,192,-22544604485915178,-22544603251852693],[524491,195,1975301889643525,1975303130061553],[524491,201,-1975306045508212,-1975298974196867],[524491,202,-22544606473695306,-22544601264072564],[524491,524289,-22544606473695306,-22544601264072564],[524491,524290,-1975306045508212,-1975298974196867],[524491,524296,1975301889643525,1975303130061553],[524491,524299,-22544604485915178,-22544603251852693],[524491,524352,22544603251852693,22544604485915178],[524491,524355,-1975303130061553,-1975301889643525],[524491,524361,-6623806726760819,-6623797717533688],[524491,524362,31143705027114464,31143712174652992],[524491,524425,13247603792440361,13247605096148654],[524491,524426,-13247605096148654,-13247603792440361],[524491,524481,-4648500367937249,-4648499056652180],[524491,524482,4648499056652180,4648500367937249],[524493,65,1975301885638544,1975303134066536],[524493,68,-1975303134066536,-1975301885638544],[524493,129,-3950606107262344,-3950603932147814],[524493,132,3950603932147814,3950606107262344],[524493,201,-1975303130061553,-1975301889643525],[524493,204,1975301889643525,1975303130061553],[524493,524289,1975301889643525,1975303130061553],[524493,524292,-1975303130061553,-1975301889643525],[524493,524361,3950603932147814,3950606107262344],[524493,524364,-3950606107262344,-3950603932147814],[524493,524425,-1975303134066536,-1975301885638544],[524493,524428,1975301885638544,1975303134066536],[524494,6,4648499056652179,4648500367937248],[524494,10,-4648500367937248,-4648499056652179],[524494,66,-1975303134066536,-1975301885638544],[524494,68,8599103424503113,8599106039496475],[524494,72,-6623803999983306,-6623800444311202],[524494,130,-9297001129565978,-9296997719612879],[524494,132,-39742815119133304,-39742811546633741],[524494,136,35792205747120647,35792210879236240],[524494,142,-13247605061713792,-13247603826875223],[524494,192,13247603826875223,13247605061713792],[524494,198,-24519908147332138,-24519904610140814],[524494,202,26495207586327742,26495210190850288],[524494,204,11272300696813670,11272303172070267],[524494,524290,11272300696813670,11272303172070267],[524494,524292,26495207586327742,26495210190850288],[524494,524296,-24519908147332138,-24519904610140814],[524494,524302,13247603826875223,13247605061713792],[524494,524352,-13247605061713792,-13247603826875223],[524494,524358,35792205747120647,35792210879236240],[524494,524362,-39742815119133304,-39742811546633741],[524494,524364,-9297001129565978,-9296997719612879],[524494,524422,-6623803999983306,-6623800444311202],[524494,524426,8599103424503113,8599106039496475],[524494,524428,-1975303134066536,-1975301885638544],[524494,524484,-4648500367937248,-4648499056652179],[524494,524488,4648499056652179,4648500367937248],[524544,66,-15920803457056280,-15920799836417081],[524544,72,15920798736625752,15920804556847610],[524544,130,-4648502477690436,-4648496946898994],[524544,136,3950601681274309,3950608358135846],[524544,202,-3950606322255178,-3950603717154982],[524544,706,-1975303127512529,-1975301892192548],[524544,712,-22544604485915178,-22544603251852693],[524544,1032,-1975305295452736,-1975299724252344],[524544,1218,-3950606232496514,-3950603806913643],[524544,1224,-22544606578062592,-22544601159705275],[524544,1672,13247603826875223,13247605061713792],[524544,3208,13247603827702546,13247605060886466],[524544,131136,-4648501974835595,-4648497449753834],[524544,131146,-4648500367937249,-4648499056652180],[524544,131200,8599101386783086,8599108077216494],[524544,131266,-4648500367937249,-4648499056652180],[524544,131272,26495207590564460,26495210186613570],[524544,131776,-1975303134066536,-1975301885638544],[524544,132096,-3950609227302328,-3950600812107830],[524544,132232,-3950606255704424,-3950603783705734],[524544,132288,22544601455814116,22544606281953756],[524544,132736,13247603821511848,13247605067077166],[524544,134272,13247603826875223,13247605061713792],[524544,524610,-15920803457056280,-15920799836417081],[524544,524616,15920798736625752,15920804556847610],[524544,524674,-4648502477690436,-4648496946898994],[524544,524680,3950601681274309,3950608358135846],[524544,524746,-3950606322255178,-3950603717154982],[524544,525250,-1975303127512529,-1975301892192548],[524544,525256,-22544604485915178,-22544603251852693],[524544,525576,-1975305295452736,-1975299724252344],[524544,525762,-3950606232496514,-3950603806913643],[524544,525768,-22544606578062592,-22544601159705275],[524544,526216,13247603826875223,13247605061713792],[524544,527752,13247603827702546,13247605060886466],[524544,655680,-4648501974835595,-4648497449753834],[524544,655690,-4648500367937249,-4648499056652180],[524544,655744,8599101386783086,8599108077216494],[524544,655810,-4648500367937249,-4648499056652180],[524544,655816,26495207590564460,26495210186613570],[524544,656320,-1975303134066536,-1975301885638544],[524544,656640,-3950609227302328,-3950600812107830],[524544,656776,-3950606255704424,-3950603783705734],[524544,656832,22544601455814116,22544606281953756],[524544,657280,13247603821511848,13247605067077166],[524544,658816,13247603826875223,13247605061713792],[524544,1048770,-4648500337554984,-4648499087034444],[524544,1048776,13247603822433492,13247605066155522],[524544,1049736,11272300719992475,11272303148891462],[524544,1179648,-1975304216083780,-1975300803621296],[524544,1179840,-6623803284297315,-6623801159997192],[524544,1180736,-1975303102434961,-1975301917270118],[524544,1180800,-7321700200255013,-7321693629218766],[524544,1181184,-1975303134066535,-1975301885638543],[524544,1182720,-22544604485915178,-22544603251852693],[524544,1573314,-4648500337554984,-4648499087034444],[524544,1573320,13247603822433492,13247605066155522],[524544,1574280,11272300719992475,11272303148891462],[524544,1704192,-1975304216083780,-1975300803621296],[524544,1704384,-6623803284297315,-6623801159997192],[524544,1705280,-1975303102434961,-1975301917270118],[524544,1705344,-7321700200255013,-7321693629218766],[524544,1705728,-1975303134066535,-1975301885638543],[524544,1707264,-22544604485915178,-22544603251852693],[524544,3277824,-1975303127512530,-1975301892192549],[524544,3802368,-1975303127512530,-1975301892192549],[524544,135398400,-1975303127852212,-1975301891852867],[524544,135922944,-1975303127852212,-1975301891852867],[524544,268435650,-4648500364875210,-4648499059714221],[524544,268435656,13247603792440361,13247605096148654],[524544,268436616,-1975303134066536,-1975301885638544],[524544,268566720,-6623803358085955,-6623801086208550],[524544,268567680,-24519907464403207,-24519905293069738],[524544,268960194,-4648500364875210,-4648499059714221],[524544,268960200,13247603792440361,13247605096148654],[524544,268961160,-1975303134066536,-1975301885638544],[524544,269091264,-6623803358085955,-6623801086208550],[524544,269092224,-24519907464403207,-24519905293069738],[524544,269616128,26495207799425147,26495209977752878],[524544,270140672,26495207799425147,26495209977752878],[524547,449,6623801172992632,6623803271301876],[524547,450,-6623803271301876,-6623801172992632],[524547,524481,-6623803271301876,-6623801172992632],[524547,524482,6623801172992632,6623803271301876],[524554,192,-33119013675915179,-33119008545557361],[524554,450,4648494894531634,4648504530057793],[524554,456,-37767513075615154,-37767508570446813],[524554,1410,-3950606107262344,-3950603932147814],[524554,1416,3950603932147814,3950606107262344],[524554,131136,-4648500367937249,-4648499056652180],[524554,131394,-4648500367937249,-4648499056652180],[524554,524482,-37767513075615154,-37767508570446813],[524554,524488,4648494894531634,4648504530057793],[524554,524746,-33119013675915179,-33119008545557361],[524554,525442,3950603932147814,3950606107262344],[524554,525448,-3950606107262344,-3950603932147814],[524554,655432,-4648500367937249,-4648499056652180],[524554,655690,-4648500367937249,-4648499056652180],[524556,452,11272300873839524,11272302995044411],[524556,456,-11272302995044411,-11272300873839524],[524556,1412,-24519907391505747,-24519905365967204],[524556,1416,24519905365967204,24519907391505747],[524556,524484,-11272302995044411,-11272300873839524],[524556,524488,11272300873839524,11272302995044411],[524556,525444,24519905365967204,24519907391505747],[524556,525448,-24519907391505747,-24519905365967204],[524609,130,-13247605033203059,-13247603855385956],[524609,195,-6623803284330947,-6623801159963560],[524609,387,-6623803271301876,-6623801172992632],[524609,524482,-6623803271301876,-6623801172992632],[524609,524674,-6623803284330947,-6623801159963560],[524609,524739,-13247605033203059,-13247603855385956],[524610,0,-22544604789079444,-22544602948688428],[524610,66,-15920803457056280,-15920799836417081],[524610,129,13247603855385956,13247605033203059],[524610,136,13247603826989498,13247605061599516],[524610,195,6623801159963560,6623803284330947],[524610,202,45089204212760992,45089211262774750],[524610,258,6623799170377024,6623805273917482],[524610,320,-13247606172936084,-13247602715652933],[524610,387,6623801172992632,6623803271301876],[524610,394,-9297003420342855,-9296995428836002],[524610,456,-22544604485915178,-22544603251852693],[524610,640,-1975303127512529,-1975301892192548],[524610,898,-26495209978356470,-26495207798821558],[524610,960,24519905292829457,24519907464643494],[524610,1152,-1975303130061553,-1975301889643525],[524610,1218,-1975303102434961,-1975301917270118],[524610,1410,-3950608753647640,-3950601285762513],[524610,1472,3950601743215454,3950608296194700],[524610,131146,-4648500367937249,-4648499056652180],[524610,131266,-4648500367937249,-4648499056652180],[524610,131338,4648499056652180,4648500367937249],[524610,131458,6623801098016986,6623803346277523],[524610,131520,-1975303134066536,-1975301885638544],[524610,524290,-13247606172936084,-13247602715652933],[524610,524352,6623799170377024,6623805273917482],[524610,524426,-22544604485915178,-22544603251852693],[524610,524481,6623801172992632,6623803271301876],[524610,524488,-9297003420342855,-9296995428836002],[524610,524544,-15920803457056280,-15920799836417081],[524610,524610,-22544604789079444,-22544602948688428],[524610,524673,6623801159963560,6623803284330947],[524610,524680,45089204212760992,45089211262774750],[524610,524739,13247603855385956,13247605033203059],[524610,524746,13247603826989498,13247605061599516],[524610,524930,24519905292829457,24519907464643494],[524610,524992,-26495209978356470,-26495207798821558],[524610,525250,-1975303127512529,-1975301892192548],[524610,525442,3950601743215454,3950608296194700],[524610,525504,-3950608753647640,-3950601285762513],[524610,525696,-1975303102434961,-1975301917270118],[524610,525762,-1975303130061553,-1975301889643525],[524610,655432,4648499056652180,4648500367937249],[524610,655490,-1975303134066536,-1975301885638544],[524610,655552,6623801098016986,6623803346277523],[524610,655624,-4648500367937249,-4648499056652180],[524610,655744,-4648500367937249,-4648499056652180],[524610,1048770,-4648500337554984,-4648499087034444],[524610,1048962,6623801159997192,6623803284297315],[524610,1049024,-1975303102468593,-1975301917236486],[524610,1049858,1975301917236486,1975303102468593],[524610,1049920,-1975303102468593,-1975301917236486],[524610,1572994,-1975303102468593,-1975301917236486],[524610,1573056,6623801159997192,6623803284297315],[524610,1573248,-4648500337554984,-4648499087034444],[524610,1573890,-1975303102468593,-1975301917236486],[524610,1573952,1975301917236486,1975303102468593],[524610,268435650,-4648500364875210,-4648499059714221],[524610,268435842,6623801107293350,6623803337001160],[524610,268435904,-1975303127852212,-1975301891852867],[524610,268959874,-1975303127852212,-1975301891852867],[524610,268959936,6623801107293350,6623803337001160],[524610,268960128,-4648500364875210,-4648499059714221],[524612,204,6623801159963560,6623803284330947],[524612,396,-6623803284330947,-6623801159963560],[524612,524488,-6623803284330947,-6623801159963560],[524612,524680,6623801159963560,6623803284330947],[524616,0,22544602948688428,22544604789079444],[524616,72,15920798736625752,15920804556847610],[524616,130,11272300231229941,11272303637653996],[524616,202,-49039814979929732,-49039810535016170],[524616,204,-6623803284330947,-6623801159963560],[524616,264,-4648502622318527,-4648496802270899],[524616,320,11272301474344214,11272302394539722],[524616,394,35792206084485028,35792210541871860],[524616,396,6623801159963560,6623803284330947],[524616,450,24519905292829457,24519907464643494],[524616,640,-24519907464643494,-24519905292829457],[524616,960,-24519907464643494,-24519905292829457],[524616,1152,-77510327102997542,-77510321208831459],[524616,1224,-24519908340000795,-24519904417472150],[524616,1416,-3950606982859932,-3950603056550226],[524616,1472,-49039814910578252,-49039810604367646],[524616,131272,-17896106414758888,-17896101898419553],[524616,131464,17896101898419553,17896106414758888],[524616,524296,11272301474344214,11272302394539722],[524616,524352,-4648502622318527,-4648496802270899],[524616,524426,24519905292829457,24519907464643494],[524616,524482,35792206084485028,35792210541871860],[524616,524484,6623801159963560,6623803284330947],[524616,524544,15920798736625752,15920804556847610],[524616,524616,22544602948688428,22544604789079444],[524616,524674,-49039814979929732,-49039810535016170],[524616,524676,-6623803284330947,-6623801159963560],[524616,524746,11272300231229941,11272303637653996],[524616,524936,-24519907464643494,-24519905292829457],[524616,525256,-24519907464643494,-24519905292829457],[524616,525448,-49039814910578252,-49039810604367646],[524616,525504,-3950606982859932,-3950603056550226],[524616,525696,-24519908340000795,-24519904417472150],[524616,525768,-77510327102997542,-77510321208831459],[524616,655552,17896101898419553,17896106414758888],[524616,655744,-17896106414758888,-17896101898419553],[524616,1048776,6623801159997192,6623803284297315],[524616,1048968,-6623803284297315,-6623801159997192],[524616,1573056,-6623803284297315,-6623801159997192],[524616,1573248,6623801159997192,6623803284297315],[524616,268435656,6623801107293350,6623803337001160],[524616,268435848,-6623803337001160,-6623801107293350],[524616,268959936,-6623803337001160,-6623801107293350],[524616,268960128,6623801107293350,6623803337001160],[524673,195,6623801159963560,6623803284330947],[524673,450,-6623803284330947,-6623801159963560],[524673,524355,-6623803284330947,-6623801159963560],[524673,524610,6623801159963560,6623803284330947],[524674,0,22544602948688428,22544604789079444],[524674,72,8599102955928264,8599106508071324],[524674,130,-4648502477690436,-4648496946898994],[524674,195,-6623803284330947,-6623801159963560],[524674,202,-49039814979929732,-49039810535016170],[524674,258,11272301474344214,11272302394539722],[524674,330,6623801098016986,6623803346277523],[524674,384,15920798878436957,15920804415036409],[524674,449,6623801159963560,6623803284330947],[524674,456,51015113020977955,51015117513673026],[524674,706,24519905292829457,24519907464643494],[524674,960,-24519907464643494,-24519905292829457],[524674,1032,22544603248067364,22544604489700504],[524674,1088,8599103049661346,8599106414338238],[524674,1162,26495207799404518,26495209977773508],[524674,1218,51015113107831353,51015117426819622],[524674,1346,6623801159997192,6623803284297315],[524674,1416,-3950606107262344,-3950603932147814],[524674,1472,-49039814910578252,-49039810604367646],[524674,131136,-6623803346277523,-6623801098016986],[524674,131394,-6623803346277523,-6623801098016986],[524674,524290,15920798878436957,15920804415036409],[524674,524355,6623801159963560,6623803284330947],[524674,524362,51015113020977955,51015117513673026],[524674,524416,11272301474344214,11272302394539722],[524674,524488,6623801098016986,6623803346277523],[524674,524544,-4648502477690436,-4648496946898994],[524674,524609,-6623803284330947,-6623801159963560],[524674,524616,-49039814979929732,-49039810535016170],[524674,524674,22544602948688428,22544604789079444],[524674,524746,8599102955928264,8599106508071324],[524674,524866,-24519907464643494,-24519905292829457],[524674,525120,24519905292829457,24519907464643494],[524674,525322,-3950606107262344,-3950603932147814],[524674,525378,-49039814910578252,-49039810604367646],[524674,525504,6623801159997192,6623803284297315],[524674,525576,26495207799404518,26495209977773508],[524674,525632,51015113107831353,51015117426819622],[524674,525706,22544603248067364,22544604489700504],[524674,525762,8599103049661346,8599106414338238],[524674,655552,-6623803346277523,-6623801098016986],[524674,655810,-6623803346277523,-6623801098016986],[524674,1048640,-6623803284297315,-6623801159997192],[524674,1048898,-6623803284297315,-6623801159997192],[524674,1573056,-6623803284297315,-6623801159997192],[524674,1573314,-6623803284297315,-6623801159997192],[524674,268435520,-6623803337001160,-6623801107293350],[524674,268435778,-6623803337001160,-6623801107293350],[524674,268959936,-6623803337001160,-6623801107293350],[524674,268960194,-6623803337001160,-6623801107293350],[524676,72,4648499087000812,4648500337588616],[524676,204,-6623803284330947,-6623801159963560],[524676,456,11272300873839524,11272302995044411],[524676,1032,1975301917270118,1975303102434961],[524676,1164,26495207861603338,26495209915574692],[524676,1416,-24519907391505747,-24519905365967204],[524676,524364,11272300873839524,11272302995044411],[524676,524616,-6623803284330947,-6623801159963560],[524676,524748,4648499087000812,4648500337588616],[524676,525324,-24519907391505747,-24519905365967204],[524676,525576,26495207861603338,26495209915574692],[524676,525708,1975301917270118,1975303102434961],[524680,0,-14643395680256320,-14643391978691236],[524680,66,-1975303161793801,-1975301857911278],[524680,68,-4648500337588616,-4648499087000812],[524680,136,3950601681274309,3950608358135846],[524680,202,45089204212760992,45089211262774750],[524680,204,6623801159963560,6623803284330947],[524680,264,1277404472099680,1277411162426122],[524680,330,-4648500367937249,-4648499056652180],[524680,384,-19871412418198236,-19871400914685277],[524680,450,-42416014569192714,-42416006501458678],[524680,452,-11272302995044411,-11272300873839524],[524680,712,-22544604485915178,-22544603251852693],[524680,840,-1975303134066536,-1975301885638544],[524680,960,24519905292829457,24519907464643494],[524680,1026,-22544604489700504,-22544603248067364],[524680,1028,-1975303102434961,-1975301917270118],[524680,1088,15920800086388708,15920803207084654],[524680,1162,-26495209977773508,-26495207799404518],[524680,1164,-26495209915574692,-26495207861603338],[524680,1224,8599101696810952,8599107767188634],[524680,1352,11272298892173522,11272304976710416],[524680,1410,3950603932147814,3950606107262344],[524680,1412,24519905365967204,24519907391505747],[524680,1472,-3950609226781738,-3950600812628424],[524680,1672,13247603826875223,13247605061713792],[524680,1800,13247603821511848,13247605067077166],[524680,1920,-26495209977993164,-26495207799184865],[524680,3208,13247603827702546,13247605060886466],[524680,3336,13247603826875223,13247605061713792],[524680,3456,-26495209971802464,-26495207805375563],[524680,131136,22544601267974862,22544606469793008],[524680,131272,24519905244697076,24519907512775874],[524680,131400,6623801098016986,6623803346277523],[524680,131520,-8599108332258679,-8599101131740910],[524680,132096,-49039815227304660,-49039810287641238],[524680,132232,-26495209992202640,-26495207784975390],[524680,132360,-26495209977993164,-26495207799184865],[524680,132480,3950601587495984,3950608451914177],[524680,524296,-19871412418198236,-19871400914685277],[524680,524362,-42416014569192714,-42416006501458678],[524680,524364,-11272302995044411,-11272300873839524],[524680,524416,1277404472099680,1277411162426122],[524680,524482,-4648500367937249,-4648499056652180],[524680,524544,3950601681274309,3950608358135846],[524680,524610,45089204212760992,45089211262774750],[524680,524612,6623801159963560,6623803284330947],[524680,524680,-14643395680256320,-14643391978691236],[524680,524746,-1975303161793801,-1975301857911278],[524680,524748,-4648500337588616,-4648499087000812],[524680,524872,24519905292829457,24519907464643494],[524680,524992,-1975303134066536,-1975301885638544],[524680,525120,-22544604485915178,-22544603251852693],[524680,525322,3950603932147814,3950606107262344],[524680,525324,24519905365967204,24519907391505747],[524680,525384,-3950609226781738,-3950600812628424],[524680,525504,11272298892173522,11272304976710416],[524680,525570,-26495209977773508,-26495207799404518],[524680,525572,-26495209915574692,-26495207861603338],[524680,525632,8599101696810952,8599107767188634],[524680,525706,-22544604489700504,-22544603248067364],[524680,525708,-1975303102434961,-1975301917270118],[524680,525768,15920800086388708,15920803207084654],[524680,525832,-26495209977993164,-26495207799184865],[524680,525952,13247603821511848,13247605067077166],[524680,526080,13247603826875223,13247605061713792],[524680,527368,-26495209971802464,-26495207805375563],[524680,527488,13247603826875223,13247605061713792],[524680,527616,13247603827702546,13247605060886466],[524680,655432,-8599108332258679,-8599101131740910],[524680,655552,6623801098016986,6623803346277523],[524680,655680,24519905244697076,24519907512775874],[524680,655816,22544601267974862,22544606469793008],[524680,656392,3950601587495984,3950608451914177],[524680,656512,-26495209977993164,-26495207799184865],[524680,656640,-26495209992202640,-26495207784975390],[524680,656776,-49039815227304660,-49039810287641238],[524680,1048640,13247603822433492,13247605066155522],[524680,1048904,6623801159997192,6623803284297315],[524680,1049024,6623801159997192,6623803284297315],[524680,1049600,-1975303102468593,-1975301917236486],[524680,1049736,13247603822461068,13247605066127948],[524680,1049864,-26495212182615048,-26495205594562984],[524680,1049984,11272298183630328,11272305685253609],[524680,1572936,6623801159997192,6623803284297315],[524680,1573056,6623801159997192,6623803284297315],[524680,1573320,13247603822433492,13247605066155522],[524680,1573896,11272298183630328,11272305685253609],[524680,1574016,-26495212182615048,-26495205594562984],[524680,1574144,13247603822461068,13247605066127948],[524680,1574280,-1975303102468593,-1975301917236486],[524680,268435520,13247603792440361,13247605096148654],[524680,268435784,6623801107293350,6623803337001160],[524680,268435904,6623801086208550,6623803358085955],[524680,268436480,-1975303134066536,-1975301885638544],[524680,268436744,-26495209977752878,-26495207799425147],[524680,268436864,24519905293069738,24519907464403207],[524680,268959816,6623801086208550,6623803358085955],[524680,268959936,6623801107293350,6623803337001160],[524680,268960200,13247603792440361,13247605096148654],[524680,268960776,24519905293069738,24519907464403207],[524680,268960896,-26495209977752878,-26495207799425147],[524680,268961160,-1975303134066536,-1975301885638544],[524736,10,-1975303134066536,-1975301885638544],[524736,330,-1975303134066536,-1975301885638544],[524736,520,1975301885638544,1975303134066536],[524736,706,-26495209978356470,-26495207798821558],[524736,840,1975301885638544,1975303134066536],[524736,898,26495207798821558,26495209978356470],[524736,1026,-3950606232509516,-3950603806900640],[524736,1032,5925906132510585,5925908926604650],[524736,1218,-52990419943081622,-52990415611274431],[524736,1224,-6623804212490749,-6623800231803759],[524736,1346,-1975303102468593,-1975301917236486],[524736,1352,1975300962522527,1975304057182551],[524736,1410,51015113107810724,51015117426840252],[524736,1416,10574405092145006,10574409391559659],[524736,131074,1975301885638544,1975303134066536],[524736,131272,19871404875056286,19871408457827235],[524736,131394,1975301885638544,1975303134066536],[524736,131464,-19871408457827235,-19871404875056286],[524736,131584,-1975303134066536,-1975301885638544],[524736,131904,-1975303134066536,-1975301885638544],[524736,132096,-3950606255025060,-3950603784385098],[524736,132288,6623801159997192,6623803284297315],[524736,132416,-28470513105628714,-28470509691254389],[524736,132480,17896102008772423,17896106304406015],[524736,524426,-1975303134066536,-1975301885638544],[524736,524746,-1975303134066536,-1975301885638544],[524736,524866,26495207798821558,26495209978356470],[524736,524936,1975301885638544,1975303134066536],[524736,525058,-26495209978356470,-26495207798821558],[524736,525256,1975301885638544,1975303134066536],[524736,525378,51015113107810724,51015117426840252],[524736,525384,10574405092145006,10574409391559659],[524736,525442,-1975303102468593,-1975301917236486],[524736,525448,1975300962522527,1975304057182551],[524736,525570,-52990419943081622,-52990415611274431],[524736,525576,-6623804212490749,-6623800231803759],[524736,525762,-3950606232509516,-3950603806900640],[524736,525768,5925906132510585,5925908926604650],[524736,655432,-19871408457827235,-19871404875056286],[524736,655490,1975301885638544,1975303134066536],[524736,655624,19871404875056286,19871408457827235],[524736,655810,1975301885638544,1975303134066536],[524736,656000,-1975303134066536,-1975301885638544],[524736,656320,-1975303134066536,-1975301885638544],[524736,656448,17896102008772423,17896106304406015],[524736,656512,-28470513105628714,-28470509691254389],[524736,656640,6623801159997192,6623803284297315],[524736,656832,-3950606255025060,-3950603784385098],[524736,1048578,1975301917236486,1975303102468593],[524736,1048776,6623801159997192,6623803284297315],[524736,1048898,1975301917236486,1975303102468593],[524736,1048968,-6623803284297315,-6623801159997192],[524736,1179840,-6623803284297315,-6623801159997192],[524736,1180032,6623801159997192,6623803284297315],[524736,1572936,-6623803284297315,-6623801159997192],[524736,1572994,1975301917236486,1975303102468593],[524736,1573128,6623801159997192,6623803284297315],[524736,1573314,1975301917236486,1975303102468593],[524736,1704000,6623801159997192,6623803284297315],[524736,1704192,-6623803284297315,-6623801159997192],[524736,268435458,1975301891852867,1975303127852212],[524736,268435656,6623801086208550,6623803358085955],[524736,268435778,1975301891852867,1975303127852212],[524736,268435848,-6623803358085955,-6623801086208550],[524736,268566720,-6623803358085955,-6623801086208550],[524736,268566912,6623801086208550,6623803358085955],[524736,268959816,-6623803358085955,-6623801086208550],[524736,268959874,1975301891852867,1975303127852212],[524736,268960008,6623801086208550,6623803358085955],[524736,268960194,1975301891852867,1975303127852212],[524736,269090880,6623801086208550,6623803358085955],[524736,269091072,-6623803358085955,-6623801086208550],[524739,129,13247603855385956,13247605033203059],[524739,130,-13247605033203059,-13247603855385956],[524739,449,13247603855385956,13247605033203059],[524739,450,-13247605033203059,-13247603855385956],[524739,524289,-13247605033203059,-13247603855385956],[524739,524290,13247603855385956,13247605033203059],[524739,524609,-13247605033203059,-13247603855385956],[524739,524610,13247603855385956,13247605033203059],[524746,10,-1975303134066536,-1975301885638544],[524746,66,-1975303161793801,-1975301857911278],[524746,72,8599102955928264,8599106508071324],[524746,130,11272300231229941,11272303637653996],[524746,136,13247603826989498,13247605061599516],[524746,192,-33119013675915179,-33119008545557361],[524746,202,-3950606322255178,-3950603717154982],[524746,258,1975301857911278,1975303161793801],[524746,264,-6623803529731050,-6623800914563458],[524746,384,8599102944480312,8599106519519277],[524746,394,26495207121529005,26495210655649026],[524746,450,-13247605061599516,-13247603826989498],[524746,456,-9297000658925680,-9296998190253177],[524746,524290,-9297000658925680,-9296998190253177],[524746,524296,-13247605061599516,-13247603826989498],[524746,524352,26495207121529005,26495210655649026],[524746,524362,8599102944480312,8599106519519277],[524746,524482,-6623803529731050,-6623800914563458],[524746,524488,1975301857911278,1975303161793801],[524746,524544,-3950606322255178,-3950603717154982],[524746,524554,-33119013675915179,-33119008545557361],[524746,524610,13247603826989498,13247605061599516],[524746,524616,11272300231229941,11272303637653996],[524746,524674,8599102955928264,8599106508071324],[524746,524680,-1975303161793801,-1975301857911278],[524746,524736,-1975303134066536,-1975301885638544],[524748,68,-4648500337588616,-4648499087000812],[524748,72,4648499087000812,4648500337588616],[524748,260,4648499087000812,4648500337588616],[524748,264,-4648500337588616,-4648499087000812],[524748,524484,-4648500337588616,-4648499087000812],[524748,524488,4648499087000812,4648500337588616],[524748,524676,4648499087000812,4648500337588616],[524748,524680,-4648500337588616,-4648499087000812],[524800,450,1975301892192548,1975303127512529],[524800,456,22544603251852693,22544604485915178],[524800,1416,-13247605061713792,-13247603826875223],[524800,3208,-13247605060886466,-13247603827702546],[524800,131520,1975301885638544,1975303134066536],[524800,132480,-13247605067077166,-13247603821511848],[524800,134272,-13247605061713792,-13247603826875223],[524800,525250,1975301892192548,1975303127512529],[524800,525256,22544603251852693,22544604485915178],[524800,526216,-13247605061713792,-13247603826875223],[524800,528008,-13247605060886466,-13247603827702546],[524800,656320,1975301885638544,1975303134066536],[524800,657280,-13247605067077166,-13247603821511848],[524800,659072,-13247605061713792,-13247603826875223],[524800,1180928,1975301885638543,1975303134066535],[524800,1182720,22544603251852693,22544604485915178],[524800,1705728,1975301885638543,1975303134066535],[524800,1707520,22544603251852693,22544604485915178],[524800,3278848,1975301892192549,1975303127512530],[524800,3803648,1975301892192549,1975303127512530],[524866,384,1975301892192548,1975303127512529],[524866,898,26495207798821558,26495209978356470],[524866,960,-24519907464643494,-24519905292829457],[524866,524674,-24519907464643494,-24519905292829457],[524866,524736,26495207798821558,26495209978356470],[524866,525250,1975301892192548,1975303127512529],[524872,384,24519905292829457,24519907464643494],[524872,960,24519905292829457,24519907464643494],[524872,524680,24519905292829457,24519907464643494],[524872,525256,24519905292829457,24519907464643494],[524930,450,-24519907464643494,-24519905292829457],[524930,960,24519905292829457,24519907464643494],[524930,524610,24519905292829457,24519907464643494],[524930,525120,-24519907464643494,-24519905292829457],[524936,456,22544603251852693,22544604485915178],[524936,840,1975301885638544,1975303134066536],[524936,960,-24519907464643494,-24519905292829457],[524936,1416,-13247605061713792,-13247603826875223],[524936,1800,-13247605067077166,-13247603821511848],[524936,1920,26495207799184865,26495209977993164],[524936,3208,-13247605060886466,-13247603827702546],[524936,3592,-13247605061713792,-13247603826875223],[524936,3712,26495207805375563,26495209971802464],[524936,524616,-24519907464643494,-24519905292829457],[524936,524736,1975301885638544,1975303134066536],[524936,525120,22544603251852693,22544604485915178],[524936,525576,26495207799184865,26495209977993164],[524936,525696,-13247605067077166,-13247603821511848],[524936,526080,-13247605061713792,-13247603826875223],[524936,527368,26495207805375563,26495209971802464],[524936,527488,-13247605061713792,-13247603826875223],[524936,527872,-13247605060886466,-13247603827702546],[524992,264,-1975303134066536,-1975301885638544],[524992,450,26495207798821558,26495209978356470],[524992,840,-1975303134066536,-1975301885638544],[524992,898,-26495209978356470,-26495207798821558],[524992,131328,1975301885638544,1975303134066536],[524992,131904,1975301885638544,1975303134066536],[524992,524610,-26495209978356470,-26495207798821558],[524992,524680,-1975303134066536,-1975301885638544],[524992,525058,26495207798821558,26495209978356470],[524992,525256,-1975303134066536,-1975301885638544],[524992,655744,1975301885638544,1975303134066536],[524992,656320,1975301885638544,1975303134066536],[525058,450,26495207798821558,26495209978356470],[525058,706,-26495209978356470,-26495207798821558],[525058,524736,-26495209978356470,-26495207798821558],[525058,524992,26495207798821558,26495209978356470],[525120,450,-24519907464643494,-24519905292829457],[525120,456,22544603251852693,22544604485915178],[525120,706,24519905292829457,24519907464643494],[525120,712,-22544604485915178,-22544603251852693],[525120,131520,1975301885638544,1975303134066536],[525120,131776,-1975303134066536,-1975301885638544],[525120,524674,24519905292829457,24519907464643494],[525120,524680,-22544604485915178,-22544603251852693],[525120,524930,-24519907464643494,-24519905292829457],[525120,524936,22544603251852693,22544604485915178],[525120,655744,-1975303134066536,-1975301885638544],[525120,656000,1975301885638544,1975303134066536],[525250,384,1975301892192548,1975303127512529],[525250,450,1975301892192548,1975303127512529],[525250,640,-1975303127512529,-1975301892192548],[525250,706,-1975303127512529,-1975301892192548],[525250,524544,-1975303127512529,-1975301892192548],[525250,524610,-1975303127512529,-1975301892192548],[525250,524800,1975301892192548,1975303127512529],[525250,524866,1975301892192548,1975303127512529],[525256,264,-1975303134066536,-1975301885638544],[525256,384,24519905292829457,24519907464643494],[525256,456,22544603251852693,22544604485915178],[525256,520,1975301885638544,1975303134066536],[525256,640,-24519907464643494,-24519905292829457],[525256,712,-22544604485915178,-22544603251852693],[525256,524544,-22544604485915178,-22544603251852693],[525256,524616,-24519907464643494,-24519905292829457],[525256,524736,1975301885638544,1975303134066536],[525256,524800,22544603251852693,22544604485915178],[525256,524872,24519905292829457,24519907464643494],[525256,524992,-1975303134066536,-1975301885638544],[525312,10,-9296999886451704,-9296998962727152],[525312,12,11272301510581248,11272302358302688],[525312,66,11272301474344214,11272302394539722],[525312,72,-13945502255682351,-13945496018085931],[525312,130,-4648505765491449,-4648493659097978],[525312,132,6623799524173159,6623804920121353],[525312,136,-48767744686891983,-48767696654383246],[525312,264,-1975305295486367,-1975299724218711],[525312,450,1975301889643525,1975303130061553],[525312,456,47064508855883441,47064511639357377],[525312,2056,-1975305335522788,-1975299684182287],[525312,2248,24519905600979049,24519907156493899],[525312,2440,-26495209971802464,-26495207805375563],[525312,32896,-4648501315670959,-4648498108918473],[525312,131080,-4795158453,4795158459],[525312,131136,15920798874182437,15920804419290919],[525312,131200,-245506516979052740,-245506452671352604],[525312,131210,4648499056652180,4648500367937249],[525312,131212,-13247605037567427,-13247603851021587],[525312,131272,-21846710653066666,-21846707699521935],[525312,131328,3950600812107830,3950609227302328],[525312,131464,3950603783705734,3950606255704424],[525312,131520,3950603784385098,3950606255025060],[525312,133120,3950600760736484,3950609278673694],[525312,133256,3950603763253824,3950606276156332],[525312,133312,1975301885638544,1975303134066536],[525312,133504,-26495209977993164,-26495207799184865],[525312,163976,1975301912872117,1975303106832961],[525312,525322,-9296999886451704,-9296998962727152],[525312,525324,11272301510581248,11272302358302688],[525312,525378,11272301474344214,11272302394539722],[525312,525384,-13945502255682351,-13945496018085931],[525312,525442,-4648505765491449,-4648493659097978],[525312,525444,6623799524173159,6623804920121353],[525312,525448,-48767744686891983,-48767696654383246],[525312,525576,-1975305295486367,-1975299724218711],[525312,525762,1975301889643525,1975303130061553],[525312,525768,47064508855883441,47064511639357377],[525312,527368,-1975305335522788,-1975299684182287],[525312,527560,24519905600979049,24519907156493899],[525312,527752,-26495209971802464,-26495207805375563],[525312,558208,-4648501315670959,-4648498108918473],[525312,656392,-4795158453,4795158459],[525312,656448,15920798874182437,15920804419290919],[525312,656512,-245506516979052740,-245506452671352604],[525312,656522,4648499056652180,4648500367937249],[525312,656524,-13247605037567427,-13247603851021587],[525312,656584,-21846710653066666,-21846707699521935],[525312,656640,3950600812107830,3950609227302328],[525312,656776,3950603783705734,3950606255704424],[525312,656832,3950603784385098,3950606255025060],[525312,658432,3950600760736484,3950609278673694],[525312,658568,3950603763253824,3950606276156332],[525312,658624,1975301885638544,1975303134066536],[525312,658816,-26495209977993164,-26495207799184865],[525312,689288,1975301912872117,1975303106832961],[525312,1048584,23242489006570695,23242508116376415],[525312,1048776,15920800076521641,15920803216951721],[525312,1048968,-24519908074966154,-24519904682506797],[525312,1050760,-24519908084973355,-24519904672499600],[525312,1081344,-1975304034893986,-1975300984811094],[525312,1179648,296947377306566843,296947428089998092],[525312,1179784,15222903999406109,15222909908887987],[525312,1179840,8599103045112288,8599106418887301],[525312,1180032,-3950609227302328,-3950600812107830],[525312,1181824,-3950609278673694,-3950600760736484],[525312,1181952,24519905292829456,24519907464643493],[525312,1573896,23242489006570695,23242508116376415],[525312,1574088,15920800076521641,15920803216951721],[525312,1574280,-24519908074966154,-24519904682506797],[525312,1576072,-24519908084973355,-24519904672499600],[525312,1606656,-1975304034893986,-1975300984811094],[525312,1704960,296947377306566843,296947428089998092],[525312,1705096,15222903999406109,15222909908887987],[525312,1705152,8599103045112288,8599106418887301],[525312,1705344,-3950609227302328,-3950600812107830],[525312,1707136,-3950609278673694,-3950600760736484],[525312,1707264,24519905292829456,24519907464643493],[525312,2228224,-1975305335522788,-1975299684182287],[525312,2753536,-1975305335522788,-1975299684182287],[525312,3276928,-24519908084973355,-24519904672499600],[525312,3277056,1975301892192549,1975303127512530],[525312,3278848,3950603763253824,3950606276156332],[525312,3802240,-24519908084973355,-24519904672499600],[525312,3802368,1975301892192549,1975303127512530],[525312,3804160,3950603763253824,3950606276156332],[525312,67108992,8599101150291472,8599108313708112],[525312,67240072,4648499056652179,4648500367937248],[525312,67634304,8599101150291472,8599108313708112],[525312,67765384,4648499056652179,4648500367937248],[525312,68157440,-3950608433100829,-3950601606309328],[525312,68682752,-3950608433100829,-3950601606309328],[525312,134348800,-1975305295246081,-1975299724458993],[525312,134874112,-1975305295246081,-1975299724458993],[525312,135397504,-24519908074966154,-24519904682506797],[525312,135397632,1975301891852867,1975303127852212],[525312,135399424,1975301885638544,1975303134066536],[525312,135922816,-24519908074966154,-24519904682506797],[525312,135922944,1975301891852867,1975303127852212],[525312,135924736,1975301885638544,1975303134066536],[525312,137494528,24519905600979049,24519907156493899],[525312,138019840,24519905600979049,24519907156493899],[525312,268435464,15920798873942155,15920804419531205],[525312,268435656,-8599105559539709,-8599103904459875],[525312,268435848,1975301885638544,1975303134066536],[525312,268437640,1975301892192549,1975303127512530],[525312,268566528,-19871412444254049,-19871400888629471],[525312,268566664,8599102944565871,8599106519433716],[525312,268566720,6623801086208550,6623803358085955],[525312,268566912,24519905293069738,24519907464403207],[525312,268568704,24519905292829456,24519907464643493],[525312,268960776,15920798873942155,15920804419531205],[525312,268960968,-8599105559539709,-8599103904459875],[525312,268961160,1975301885638544,1975303134066536],[525312,268962952,1975301892192549,1975303127512530],[525312,269091840,-19871412444254049,-19871400888629471],[525312,269091976,8599102944565871,8599106519433716],[525312,269092032,6623801086208550,6623803358085955],[525312,269092224,24519905293069738,24519907464403207],[525312,269094016,24519905292829456,24519907464643493],[525312,269484168,8599103045112288,8599106418887301],[525312,269615232,19871400888629471,19871412444254049],[525312,269615360,-26495209977752878,-26495207799425147],[525312,269617152,-26495209977993164,-26495207799184865],[525312,270009480,8599103045112288,8599106418887301],[525312,270140544,19871400888629471,19871412444254049],[525312,270140672,-26495209977752878,-26495207799425147],[525312,270142464,-26495209977993164,-26495207799184865],[525312,271712256,-26495209971802464,-26495207805375563],[525312,272237568,-26495209971802464,-26495207805375563],[525312,403832832,-39742815032300530,-39742811633466510],[525312,404358144,-39742815032300530,-39742811633466510],[525312,470810624,-13247605061599516,-13247603826989498],[525312,471335936,-13247605061599516,-13247603826989498],[525318,136,-13247606222252656,-13247602666336360],[525318,142,-13247606222252656,-13247602666336360],[525318,525448,-13247606222252656,-13247602666336360],[525318,525454,-13247606222252656,-13247602666336360],[525321,130,-11272302995044411,-11272300873839524],[525321,132,24519905365967204,24519907391505747],[525321,139,-11272302995044411,-11272300873839524],[525321,141,24519905365967204,24519907391505747],[525321,525442,-11272302995044411,-11272300873839524],[525321,525444,24519905365967204,24519907391505747],[525321,525451,-11272302995044411,-11272300873839524],[525321,525453,24519905365967204,24519907391505747],[525322,0,-18593999772903408,-18593997925454304],[525322,10,-9296999886451704,-9296998962727152],[525322,129,11272300873839524,11272302995044411],[525322,132,-11272302995044411,-11272300873839524],[525322,139,11272300873839524,11272302995044411],[525322,142,-11272302995044411,-11272300873839524],[525322,192,42416007508284513,42416013562366883],[525322,202,22544601642609286,22544606095158586],[525322,1026,-1975305288493376,-1975299731211704],[525322,1032,-7321699692989682,-7321694136484094],[525322,1218,11272299879110672,11272303989773264],[525322,1224,8599102641942379,8599106822057209],[525322,1410,3950603932147814,3950606107262344],[525322,1416,-3950606107262344,-3950603932147814],[525322,3202,3950603941250842,3950606098159314],[525322,3208,-3950606098159314,-3950603941250842],[525322,131200,-6623804014035016,-6623800430259491],[525322,131210,-11272303070687196,-11272300798196740],[525322,132226,22544601642609286,22544606095158586],[525322,132232,-17896106405885420,-17896101907293023],[525322,524290,-7321699692989682,-7321694136484094],[525322,524296,-1975305288493376,-1975299731211704],[525322,524482,8599102641942379,8599106822057209],[525322,524488,11272299879110672,11272303989773264],[525322,524674,-3950606107262344,-3950603932147814],[525322,524680,3950603932147814,3950606107262344],[525322,525312,-9296999886451704,-9296998962727152],[525322,525322,-18593999772903408,-18593997925454304],[525322,525441,11272300873839524,11272302995044411],[525322,525444,-11272302995044411,-11272300873839524],[525322,525451,11272300873839524,11272302995044411],[525322,525454,-11272302995044411,-11272300873839524],[525322,525504,22544601642609286,22544606095158586],[525322,525514,42416007508284513,42416013562366883],[525322,526466,-3950606098159314,-3950603941250842],[525322,526472,3950603941250842,3950606098159314],[525322,655490,-17896106405885420,-17896101907293023],[525322,655496,22544601642609286,22544606095158586],[525322,656512,-11272303070687196,-11272300798196740],[525322,656522,-6623804014035016,-6623800430259491],[525322,1049730,15222904792925496,15222909115368599],[525322,1049736,-15222909115368599,-15222904792925496],[525322,1572994,-15222909115368599,-15222904792925496],[525322,1573000,15222904792925496,15222909115368599],[525322,268436610,11272300812248450,11272303056635485],[525322,268436616,-11272303056635485,-11272300812248450],[525322,268959874,-11272303056635485,-11272300812248450],[525322,268959880,11272300812248450,11272303056635485],[525324,0,22544603021162496,22544604716605376],[525324,12,11272301510581248,11272302358302688],[525324,129,-24519907391505747,-24519905365967204],[525324,130,24519905365967204,24519907391505747],[525324,141,-24519907391505747,-24519905365967204],[525324,142,24519905365967204,24519907391505747],[525324,1028,-4648502349941046,-4648497074648383],[525324,1032,15920799005382849,15920804288090516],[525324,1220,-17896105064267619,-17896103248910824],[525324,1224,17896103248910824,17896105064267619],[525324,1412,24519905365967204,24519907391505747],[525324,1416,-24519907391505747,-24519905365967204],[525324,3204,24519905362432319,24519907395040631],[525324,3208,-24519907395040631,-24519905362432319],[525324,32896,-24519907414185673,-24519905343287280],[525324,32908,-24519907414185673,-24519905343287280],[525324,131200,11272300305719853,11272303563164086],[525324,131212,24519905343287280,24519907414185673],[525324,132228,-13247606551676524,-13247602336912492],[525324,132232,-2124775455,2124775457],[525324,524292,15920799005382849,15920804288090516],[525324,524296,-4648502349941046,-4648497074648383],[525324,524484,17896103248910824,17896105064267619],[525324,524488,-17896105064267619,-17896103248910824],[525324,524676,-24519907391505747,-24519905365967204],[525324,524680,24519905365967204,24519907391505747],[525324,525312,11272301510581248,11272302358302688],[525324,525324,22544603021162496,22544604716605376],[525324,525441,-24519907391505747,-24519905365967204],[525324,525442,24519905365967204,24519907391505747],[525324,525453,-24519907391505747,-24519905365967204],[525324,525454,24519905365967204,24519907391505747],[525324,526468,-24519907395040631,-24519905362432319],[525324,526472,24519905362432319,24519907395040631],[525324,558208,-24519907414185673,-24519905343287280],[525324,558220,-24519907414185673,-24519905343287280],[525324,655492,-2124775455,2124775457],[525324,655496,-13247606551676524,-13247602336912492],[525324,656512,24519905343287280,24519907414185673],[525324,656524,11272300305719853,11272303563164086],[525324,1049732,17896102112215810,17896106200962633],[525324,1049736,-17896106200962633,-17896102112215810],[525324,1572996,-17896106200962633,-17896102112215810],[525324,1573000,17896102112215810,17896106200962633],[525324,268436612,-6623803271301876,-6623801172992632],[525324,268436616,6623801172992632,6623803271301876],[525324,268959876,6623801172992632,6623803271301876],[525324,268959880,-6623803271301876,-6623801172992632],[525377,130,6623801159963560,6623803284330947],[525377,195,6623801159963560,6623803284330947],[525377,525442,6623801159963560,6623803284330947],[525377,525507,6623801159963560,6623803284330947],[525378,0,22544602948688428,22544604789079444],[525378,66,11272301474344214,11272302394539722],[525378,129,-6623803284330947,-6623801159963560],[525378,136,-47064513273775962,-47064507221464861],[525378,195,-6623803284330947,-6623801159963560],[525378,202,-49039814979929732,-49039810535016170],[525378,384,8599103049607085,8599106414392500],[525378,450,6623801159963560,6623803284330947],[525378,1026,-4648502490229551,-4648496934359881],[525378,1088,15920798865897844,15920804427575524],[525378,1162,8599102676277534,8599106787722050],[525378,1224,-6623804308921517,-6623800135372988],[525378,1410,51015113107810724,51015117426840252],[525378,1472,-49039814910578252,-49039810604367646],[525378,3202,24519905292829457,24519907464643494],[525378,3264,-24519907464643494,-24519905292829457],[525378,132226,-6623803346277523,-6623801098016986],[525378,132288,6623801098016986,6623803346277523],[525378,524290,15920798865897844,15920804427575524],[525378,524352,-4648502490229551,-4648496934359881],[525378,524426,-6623804308921517,-6623800135372988],[525378,524488,8599102676277534,8599106787722050],[525378,524674,-49039814910578252,-49039810604367646],[525378,524736,51015113107810724,51015117426840252],[525378,525312,11272301474344214,11272302394539722],[525378,525378,22544602948688428,22544604789079444],[525378,525441,-6623803284330947,-6623801159963560],[525378,525448,-49039814979929732,-49039810535016170],[525378,525507,-6623803284330947,-6623801159963560],[525378,525514,-47064513273775962,-47064507221464861],[525378,525696,6623801159963560,6623803284330947],[525378,525762,8599103049607085,8599106414392500],[525378,526466,-24519907464643494,-24519905292829457],[525378,526528,24519905292829457,24519907464643494],[525378,655490,6623801098016986,6623803346277523],[525378,655552,-6623803346277523,-6623801098016986],[525378,1049730,17896101995938767,17896106317239678],[525378,1049792,-17896106317239678,-17896101995938767],[525378,1572994,-17896106317239678,-17896101995938767],[525378,1573056,17896101995938767,17896106317239678],[525378,268436610,-6623803337001160,-6623801107293350],[525378,268436672,6623801107293350,6623803337001160],[525378,268959874,6623801107293350,6623803337001160],[525378,268959936,-6623803337001160,-6623801107293350],[525380,136,13247602666336360,13247606222252656],[525380,204,-6623803284330947,-6623801159963560],[525380,1164,26495207861603338,26495209915574692],[525380,1224,-6623803284297315,-6623801159997192],[525380,524428,-6623803284297315,-6623801159997192],[525380,524488,26495207861603338,26495209915574692],[525380,525448,-6623803284330947,-6623801159963560],[525380,525516,13247602666336360,13247606222252656],[525384,0,-18594002543881458,-18593995154476254],[525384,72,-13945502255682351,-13945496018085931],[525384,130,4648493659097978,4648505765491449],[525384,132,-13247606222252656,-13247602666336360],[525384,202,26495204439857584,26495213337320446],[525384,204,6623801159963560,6623803284330947],[525384,384,19871400914685277,19871412418198236],[525384,456,13247602298025327,13247606590563683],[525384,1032,9296996307740651,9297002541438203],[525384,1088,-13945502254348697,-13945496019419587],[525384,1162,-19871408879756524,-19871404453126997],[525384,1164,-26495209915574692,-26495207861603338],[525384,1218,-1975304719493192,-1975300300211890],[525384,1220,6623801159997192,6623803284297315],[525384,1416,10574405092145006,10574409391559659],[525384,1472,-3950609226781738,-3950600812628424],[525384,2176,52990415906156016,52990419648200040],[525384,2248,24519905292829456,24519907464643493],[525384,3208,3950603941250842,3950606098159314],[525384,3264,24519905292829457,24519907464643494],[525384,131200,4648493631385954,4648505793203474],[525384,131272,-1975304733296088,-1975300286408991],[525384,132232,-19871408894185654,-19871404438697867],[525384,132288,26495204430640140,26495213346537888],[525384,524296,-13945502254348697,-13945496019419587],[525384,524352,9296996307740651,9297002541438203],[525384,524426,-1975304719493192,-1975300300211890],[525384,524428,6623801159997192,6623803284297315],[525384,524482,-19871408879756524,-19871404453126997],[525384,524484,-26495209915574692,-26495207861603338],[525384,524680,-3950609226781738,-3950600812628424],[525384,524736,10574405092145006,10574409391559659],[525384,525312,-13945502255682351,-13945496018085931],[525384,525384,-18594002543881458,-18593995154476254],[525384,525442,26495204439857584,26495213337320446],[525384,525444,6623801159963560,6623803284330947],[525384,525514,4648493659097978,4648505765491449],[525384,525516,-13247606222252656,-13247602666336360],[525384,525696,13247602298025327,13247606590563683],[525384,525768,19871400914685277,19871412418198236],[525384,526472,24519905292829457,24519907464643494],[525384,526528,3950603941250842,3950606098159314],[525384,527488,24519905292829456,24519907464643493],[525384,527560,52990415906156016,52990419648200040],[525384,655496,26495204430640140,26495213346537888],[525384,655552,-19871408894185654,-19871404438697867],[525384,656512,-1975304733296088,-1975300286408991],[525384,656584,4648493631385954,4648505793203474],[525384,1048704,19871400888629471,19871412444254049],[525384,1048776,-3950609233926622,-3950600805483542],[525384,1049736,10574405079083164,10574409404621503],[525384,1049792,13247602285191671,13247606603397346],[525384,1573000,13247602285191671,13247606603397346],[525384,1573056,10574405079083164,10574409404621503],[525384,1574016,-3950609233926622,-3950600805483542],[525384,1574088,19871400888629471,19871412444254049],[525384,268435584,-31143710514241570,-31143706687525880],[525384,268435656,-26495209977752878,-26495207799425147],[525384,268436616,6623801107293350,6623803337001160],[525384,268436672,-11272303056635485,-11272300812248450],[525384,268959880,-11272303056635485,-11272300812248450],[525384,268959936,6623801107293350,6623803337001160],[525384,268960896,-26495209977752878,-26495207799425147],[525384,268960968,-31143710514241570,-31143706687525880],[525441,139,11272300873839524,11272302995044411],[525441,141,-24519907391505747,-24519905365967204],[525441,195,-6623803284330947,-6623801159963560],[525441,1035,-13247605066155522,-13247603822433492],[525441,1037,1975301917236486,1975303102468593],[525441,1091,4648499087034444,4648500337554984],[525441,1162,1975301917236486,1975303102468593],[525441,1164,22544603307191776,22544604430576096],[525441,1218,1975301917270118,1975303102434961],[525441,524299,1975301917236486,1975303102468593],[525441,524301,22544603307191776,22544604430576096],[525441,524355,1975301917270118,1975303102434961],[525441,524426,-13247605066155522,-13247603822433492],[525441,524428,1975301917236486,1975303102468593],[525441,524482,4648499087034444,4648500337554984],[525441,525322,11272300873839524,11272302995044411],[525441,525324,-24519907391505747,-24519905365967204],[525441,525378,-6623803284330947,-6623801159963560],[525442,0,-3950606863625140,-3950603175785020],[525442,72,-1975304058435710,-1975300961269370],[525442,130,-4648505765491449,-4648493659097978],[525442,139,-11272302995044411,-11272300873839524],[525442,142,24519905365967204,24519907391505747],[525442,195,6623801159963560,6623803284330947],[525442,202,26495204439857584,26495213337320446],[525442,264,-22544604489700504,-22544603248067364],[525442,320,-1975303130040923,-1975301889664154],[525442,394,-26495209977773508,-26495207799404518],[525442,450,-3950608753660642,-3950601285749510],[525442,1026,6623798642954895,6623805801339609],[525442,1035,13247603822433492,13247605066155522],[525442,1038,-1975303102468593,-1975301917236486],[525442,1091,-4648500337554984,-4648499087034444],[525442,1098,-3950608253249321,-3950601786160837],[525442,1152,-5925910945469332,-5925904113645905],[525442,1161,-1975303102468593,-1975301917236486],[525442,1164,-22544604430576096,-22544603307191776],[525442,1217,-1975303102434961,-1975301917270118],[525442,1224,-24519909474570990,-24519903282901962],[525442,1346,-1975303102468593,-1975301917236486],[525442,1416,3950603932147814,3950606107262344],[525442,1472,3950601743215454,3950608296194700],[525442,2056,-22544604485915178,-22544603251852693],[525442,2112,-1975303134066535,-1975301885638543],[525442,2186,-26495209971802464,-26495207805375563],[525442,2242,-26495209977993164,-26495207799184865],[525442,3208,3950603941250842,3950606098159314],[525442,3264,24519905292829457,24519907464643494],[525442,131080,13247603826875223,13247605061713792],[525442,131136,13247603821511848,13247605067077166],[525442,131210,11272297923178146,11272305945705791],[525442,131266,6623801098016984,6623803346277521],[525442,132106,3950601481951714,3950608557458446],[525442,132162,6623801098016986,6623803346277523],[525442,132232,-1975303134589986,-1975301885115096],[525442,524290,-5925910945469332,-5925904113645905],[525442,524299,-1975303102468593,-1975301917236486],[525442,524302,-22544604430576096,-22544603307191776],[525442,524355,-1975303102434961,-1975301917270118],[525442,524362,-24519909474570990,-24519903282901962],[525442,524416,6623798642954895,6623805801339609],[525442,524425,13247603822433492,13247605066155522],[525442,524428,-1975303102468593,-1975301917236486],[525442,524481,-4648500337554984,-4648499087034444],[525442,524488,-3950608253249321,-3950601786160837],[525442,524554,3950603932147814,3950606107262344],[525442,524610,3950601743215454,3950608296194700],[525442,524736,-1975303102468593,-1975301917236486],[525442,525312,-4648505765491449,-4648493659097978],[525442,525321,-11272302995044411,-11272300873839524],[525442,525324,24519905365967204,24519907391505747],[525442,525377,6623801159963560,6623803284330947],[525442,525384,26495204439857584,26495213337320446],[525442,525442,-3950606863625140,-3950603175785020],[525442,525514,-1975304058435710,-1975300961269370],[525442,525576,-26495209977773508,-26495207799404518],[525442,525632,-3950608753660642,-3950601285749510],[525442,525706,-22544604489700504,-22544603248067364],[525442,525762,-1975303130040923,-1975301889664154],[525442,526346,3950603941250842,3950606098159314],[525442,526402,24519905292829457,24519907464643494],[525442,527368,-26495209971802464,-26495207805375563],[525442,527424,-26495209977993164,-26495207799184865],[525442,527498,-22544604485915178,-22544603251852693],[525442,527554,-1975303134066535,-1975301885638543],[525442,655370,-1975303134589986,-1975301885115096],[525442,655496,3950601481951714,3950608557458446],[525442,655552,6623801098016986,6623803346277523],[525442,656392,11272297923178146,11272305945705791],[525442,656448,6623801098016984,6623803346277521],[525442,656522,13247603826875223,13247605061713792],[525442,656578,13247603821511848,13247605067077166],[525442,1048584,-18594001258855540,-18593996439502170],[525442,1048640,22544601452067054,22544606285700820],[525442,1048714,-11272305289278916,-11272298579605019],[525442,1048770,-8599108093729955,-8599101370269630],[525442,1049610,-11272302995044411,-11272300873839524],[525442,1049666,6623801159997192,6623803284297315],[525442,1049736,3950603919085972,3950606120324188],[525442,1049792,24519905280236082,24519907477236870],[525442,1572874,3950603919085972,3950606120324188],[525442,1572930,24519905280236082,24519907477236870],[525442,1573000,-11272302995044411,-11272300873839524],[525442,1573056,6623801159997192,6623803284297315],[525442,1573896,-11272305289278916,-11272298579605019],[525442,1573952,-8599108093729955,-8599101370269630],[525442,1574026,-18594001258855540,-18593996439502170],[525442,1574082,22544601452067054,22544606285700820],[525442,268435464,13247603821617226,13247605066971786],[525442,268435520,13247603827010127,13247605061578886],[525442,268435594,24519905258499972,24519907498972975],[525442,268435650,6623801102928978,6623803341365525],[525442,268436490,-11272303056635485,-11272300812248450],[525442,268436546,6623801107293350,6623803337001160],[525442,268959880,-11272303056635485,-11272300812248450],[525442,268959936,6623801107293350,6623803337001160],[525442,268960776,24519905258499972,24519907498972975],[525442,268960832,6623801102928978,6623803341365525],[525442,268960906,13247603821617226,13247605066971786],[525442,268960962,13247603827010127,13247605061578886],[525444,0,-22544604716605376,-22544603021162496],[525444,72,-11272302664826744,-11272301204057192],[525444,132,6623799524173159,6623804920121353],[525444,141,24519905365967204,24519907391505747],[525444,142,-11272302995044411,-11272300873839524],[525444,204,6623801159963560,6623803284330947],[525444,264,-1975303102434961,-1975301917270118],[525444,396,-26495209915574692,-26495207861603338],[525444,1028,-15920803246405425,-15920800047067943],[525444,1037,-1975303102468593,-1975301917236486],[525444,1038,13247603822433492,13247605066155522],[525444,1100,-17896105064267619,-17896103248910824],[525444,1152,-13247605973043456,-13247602915545560],[525444,1161,-22544604430576096,-22544603307191776],[525444,1162,-1975303102468593,-1975301917236486],[525444,1224,-873779583,873779583],[525444,1416,24519905365967204,24519907391505747],[525444,2056,-1975303106832961,-1975301912872117],[525444,2188,-26495209923507576,-26495207853670452],[525444,3208,24519905362432319,24519907395040631],[525444,32908,24519905343287280,24519907414185673],[525444,33804,-1975303111382023,-1975301908323058],[525444,33928,-22544604444342592,-22544603293425280],[525444,131080,13247603851021587,13247605037567427],[525444,131212,-24519910213370186,-24519902544102763],[525444,132108,39742809963298108,39742816702468936],[525444,132232,-1975303111382023,-1975301908323058],[525444,163972,1975301908323058,1975303111382023],[525444,164868,-1975303111382023,-1975301908323058],[525444,524292,-13247605973043456,-13247602915545560],[525444,524301,-22544604430576096,-22544603307191776],[525444,524302,-1975303102468593,-1975301917236486],[525444,524364,-873779583,873779583],[525444,524416,-15920803246405425,-15920800047067943],[525444,524425,-1975303102468593,-1975301917236486],[525444,524426,13247603822433492,13247605066155522],[525444,524488,-17896105064267619,-17896103248910824],[525444,524556,24519905365967204,24519907391505747],[525444,525312,6623799524173159,6623804920121353],[525444,525321,24519905365967204,24519907391505747],[525444,525322,-11272302995044411,-11272300873839524],[525444,525384,6623801159963560,6623803284330947],[525444,525444,-22544604716605376,-22544603021162496],[525444,525516,-11272302664826744,-11272301204057192],[525444,525576,-26495209915574692,-26495207861603338],[525444,525708,-1975303102434961,-1975301917270118],[525444,526348,24519905362432319,24519907395040631],[525444,527368,-26495209923507576,-26495207853670452],[525444,527500,-1975303106832961,-1975301912872117],[525444,557068,-22544604444342592,-22544603293425280],[525444,557192,-1975303111382023,-1975301908323058],[525444,558088,24519905343287280,24519907414185673],[525444,655372,-1975303111382023,-1975301908323058],[525444,655496,39742809963298108,39742816702468936],[525444,656392,-24519910213370186,-24519902544102763],[525444,656524,13247603851021587,13247605037567427],[525444,688256,-1975303111382023,-1975301908323058],[525444,689152,1975301908323058,1975303111382023],[525444,1048584,22544601541194970,22544606196572912],[525444,1048716,-8599107748829489,-8599101715170092],[525444,1049612,6623801213223040,6623803231071470],[525444,1049736,24519905343287280,24519907414185673],[525444,1572876,24519905343287280,24519907414185673],[525444,1573000,6623801213223040,6623803231071470],[525444,1573896,-8599107748829489,-8599101715170092],[525444,1574028,22544601541194970,22544606196572912],[525444,268435464,13247603855419588,13247605033169427],[525444,268435596,6623801159997192,6623803284297315],[525444,268436492,6623801172992632,6623803271301876],[525444,268959880,6623801172992632,6623803271301876],[525444,268960776,6623801159997192,6623803284297315],[525444,268960908,13247603855419588,13247605033169427],[525448,0,-3375919900,3375919900],[525448,66,-9297000198160808,-9296998651018048],[525448,68,11272301204057192,11272302664826744],[525448,136,-48767744686891983,-48767696654383246],[525448,142,-13247606222252656,-13247602666336360],[525448,202,-49039814979929732,-49039810535016170],[525448,204,-6623803284330947,-6623801159963560],[525448,258,22544603248067364,22544604489700504],[525448,260,1975301917270118,1975303102434961],[525448,320,-24519907159915920,-24519905597557028],[525448,394,26495207799404518,26495209977773508],[525448,396,26495207861603338,26495209915574692],[525448,456,22544602330282044,22544605407485828],[525448,1032,-258754116160104515,-258754062378889847],[525448,1038,-11272302995044411,-11272300873839524],[525448,1098,17198207846590140,17198211081409034],[525448,1100,17896103248910824,17896105064267619],[525448,1152,307521786696231667,307521833184037924],[525448,1158,24519905365967204,24519907391505747],[525448,1218,22544602323661876,22544605414105996],[525448,1220,-873779583,873779583],[525448,1352,1975300962522527,1975304057182551],[525448,1410,-3950606107262344,-3950603932147814],[525448,1412,-24519907391505747,-24519905365967204],[525448,1472,-49039814910578252,-49039810604367646],[525448,2050,22544603251852693,22544604485915178],[525448,2052,1975301912872117,1975303106832961],[525448,2112,-24519907156493900,-24519905600979050],[525448,2186,26495207805375563,26495209971802464],[525448,2188,26495207853670452,26495209923507576],[525448,2248,-923386045,923386045],[525448,2440,-26495209971802464,-26495207805375563],[525448,3144,-929670021,929670022],[525448,3202,-3950606098159314,-3950603941250842],[525448,3204,-24519907395040631,-24519905362432319],[525448,3264,-24519907464643494,-24519905292829457],[525448,3336,-26495209977993164,-26495207799184865],[525448,3456,52990415906156016,52990419648200040],[525448,131074,-13247605061713792,-13247603826875223],[525448,131076,-13247605037567427,-13247603851021587],[525448,131136,-22544606653723935,-22544601084043932],[525448,131210,4648494866495498,4648504558093930],[525448,131212,-13247609036357290,-13247599852231728],[525448,131272,-6623804322724415,-6623800121570091],[525448,131328,49039810287641238,49039815227304660],[525448,131464,26495207784975390,26495209992202640],[525448,132106,-21846713226576023,-21846705126012580],[525448,132108,-24519910213370186,-24519902544102763],[525448,132168,8599102631895649,8599106832103938],[525448,132226,3950603919085972,3950606120324188],[525448,132228,24519905343287280,24519907414185673],[525448,132288,-24519909487239803,-24519903270233145],[525448,132360,26495207799184865,26495209977993164],[525448,132480,-3950608451914177,-3950601587495984],[525448,133120,49039810258190782,49039815256755116],[525448,133256,26495207776804167,26495210000373866],[525448,134152,26495207769155642,26495210008022388],[525448,134272,-3950608254927041,-3950601784483124],[525448,163976,-1198509906,1198509903],[525448,164872,-1198509903,1198509906],[525448,524296,307521786696231667,307521833184037924],[525448,524302,24519905365967204,24519907391505747],[525448,524362,22544602323661876,22544605414105996],[525448,524364,-873779583,873779583],[525448,524416,-258754116160104515,-258754062378889847],[525448,524422,-11272302995044411,-11272300873839524],[525448,524482,17198207846590140,17198211081409034],[525448,524484,17896103248910824,17896105064267619],[525448,524554,-3950606107262344,-3950603932147814],[525448,524556,-24519907391505747,-24519905365967204],[525448,524616,-49039814910578252,-49039810604367646],[525448,524736,1975300962522527,1975304057182551],[525448,525312,-48767744686891983,-48767696654383246],[525448,525318,-13247606222252656,-13247602666336360],[525448,525378,-49039814979929732,-49039810535016170],[525448,525380,-6623803284330947,-6623801159963560],[525448,525448,-3375919900,3375919900],[525448,525514,-9297000198160808,-9296998651018048],[525448,525516,11272301204057192,11272302664826744],[525448,525570,26495207799404518,26495209977773508],[525448,525572,26495207861603338,26495209915574692],[525448,525632,22544602330282044,22544605407485828],[525448,525706,22544603248067364,22544604489700504],[525448,525708,1975301917270118,1975303102434961],[525448,525768,-24519907159915920,-24519905597557028],[525448,526346,-3950606098159314,-3950603941250842],[525448,526348,-24519907395040631,-24519905362432319],[525448,526408,-24519907464643494,-24519905292829457],[525448,526528,-929670021,929670022],[525448,526600,52990415906156016,52990419648200040],[525448,526720,-26495209977993164,-26495207799184865],[525448,527362,26495207805375563,26495209971802464],[525448,527364,26495207853670452,26495209923507576],[525448,527424,-923386045,923386045],[525448,527498,22544603251852693,22544604485915178],[525448,527500,1975301912872117,1975303106832961],[525448,527560,-24519907156493900,-24519905600979050],[525448,527616,-26495209971802464,-26495207805375563],[525448,655370,3950603919085972,3950606120324188],[525448,655372,24519905343287280,24519907414185673],[525448,655432,-24519909487239803,-24519903270233145],[525448,655490,-21846713226576023,-21846705126012580],[525448,655492,-24519910213370186,-24519902544102763],[525448,655552,8599102631895649,8599106832103938],[525448,655624,-3950608451914177,-3950601587495984],[525448,655744,26495207799184865,26495209977993164],[525448,656386,4648494866495498,4648504558093930],[525448,656388,-13247609036357290,-13247599852231728],[525448,656448,-6623804322724415,-6623800121570091],[525448,656522,-13247605061713792,-13247603826875223],[525448,656524,-13247605037567427,-13247603851021587],[525448,656584,-22544606653723935,-22544601084043932],[525448,656640,26495207784975390,26495209992202640],[525448,656776,49039810287641238,49039815227304660],[525448,657416,-3950608254927041,-3950601784483124],[525448,657536,26495207769155642,26495210008022388],[525448,658432,26495207776804167,26495210000373866],[525448,658568,49039810258190782,49039815256755116],[525448,688256,-1198509903,1198509906],[525448,689152,-1198509906,1198509903],[525448,1048578,18593996439502170,18594001258855540],[525448,1048580,-22544606196572912,-22544601541194970],[525448,1048640,-22544606585988845,-22544601151779026],[525448,1048714,11272298579605019,11272305289278916],[525448,1048716,8599101715170092,8599107748829489],[525448,1048776,8599101685162166,8599107778837422],[525448,1048832,1975301917236486,1975303102468593],[525448,1048968,-26495209992202640,-26495207784975390],[525448,1049610,11272300873839524,11272302995044411],[525448,1049612,-6623803231071470,-6623801213223040],[525448,1049672,-6623804221568240,-6623800222726267],[525448,1049730,-3950606120324188,-3950603919085972],[525448,1049732,-24519907414185673,-24519905343287280],[525448,1049792,-24519908352868090,-24519904404604862],[525448,1049864,11272298183630328,11272305685253609],[525448,1049984,17198204925419946,17198214002579226],[525448,1050624,1975301915400511,1975303104304567],[525448,1050760,-26495210000373866,-26495207776804167],[525448,1051656,11272298134922261,11272305733961656],[525448,1051776,17198204870376650,17198214057622544],[525448,1179648,67633806609648820,67633816603654788],[525448,1179784,7321690308104443,7321703521369331],[525448,1180680,17198202099309824,17198216828689364],[525448,1180800,43113898635137411,43113911820693235],[525448,1572874,-3950606120324188,-3950603919085972],[525448,1572876,-24519907414185673,-24519905343287280],[525448,1572936,-24519908352868090,-24519904404604862],[525448,1572994,11272300873839524,11272302995044411],[525448,1572996,-6623803231071470,-6623801213223040],[525448,1573056,-6623804221568240,-6623800222726267],[525448,1573128,17198204925419946,17198214002579226],[525448,1573248,11272298183630328,11272305685253609],[525448,1573890,11272298579605019,11272305289278916],[525448,1573892,8599101715170092,8599107748829489],[525448,1573952,8599101685162166,8599107778837422],[525448,1574026,18593996439502170,18594001258855540],[525448,1574028,-22544606196572912,-22544601541194970],[525448,1574088,-22544606585988845,-22544601151779026],[525448,1574144,-26495209992202640,-26495207784975390],[525448,1574280,1975301917236486,1975303102468593],[525448,1574920,17198204870376650,17198214057622544],[525448,1575040,11272298134922261,11272305733961656],[525448,1575936,-26495210000373866,-26495207776804167],[525448,1576072,1975301915400511,1975303104304567],[525448,1703944,43113898635137411,43113911820693235],[525448,1704064,17198202099309824,17198216828689364],[525448,1704960,7321690308104443,7321703521369331],[525448,1705096,67633806609648820,67633816603654788],[525448,3146760,-15222908177460183,-15222905730833912],[525448,3146880,15222905730833912,15222908177460183],[525448,3670024,15222905730833912,15222908177460183],[525448,3670144,-15222908177460183,-15222905730833912],[525448,67240072,17896102843574241,17896105469604200],[525448,67240968,-17896105469604200,-17896102843574241],[525448,67764352,-17896105469604200,-17896102843574241],[525448,67765248,17896102843574241,17896105469604200],[525448,135267336,-15222908168562909,-15222905739731186],[525448,135267456,15222905739731186,15222908168562909],[525448,135790600,15222905739731186,15222908168562909],[525448,135790720,-15222908168562909,-15222905739731186],[525448,268435458,-13247605066971786,-13247603821617226],[525448,268435460,-13247605033169427,-13247603855419588],[525448,268435520,11272301161387192,11272302707496740],[525448,268435594,-24519907498972975,-24519905258499972],[525448,268435596,-6623803284297315,-6623801159997192],[525448,268435656,17896103187855503,17896105125322940],[525448,268435712,1975301885638544,1975303134066536],[525448,268436490,11272300812248450,11272303056635485],[525448,268436492,-6623803271301876,-6623801172992632],[525448,268436552,-6623803337001160,-6623801107293350],[525448,268436672,-932612782,932612781],[525448,268436744,26495207799425147,26495209977752878],[525448,268436864,-24519907464403207,-24519905293069738],[525448,268437504,1975301892192549,1975303127512530],[525448,268438536,26495207798821558,26495209978356470],[525448,268438656,-24519907464643493,-24519905292829456],[525448,268566528,-13247605066127948,-13247603822461068],[525448,268566664,-42416014583842896,-42416006486808497],[525448,268567560,4648494875353022,4648504549236406],[525448,268567680,24519905292829456,24519907464643493],[525448,268959816,-932612782,932612781],[525448,268959874,11272300812248450,11272303056635485],[525448,268959876,-6623803271301876,-6623801172992632],[525448,268959936,-6623803337001160,-6623801107293350],[525448,268960008,-24519907464403207,-24519905293069738],[525448,268960128,26495207799425147,26495209977752878],[525448,268960770,-24519907498972975,-24519905258499972],[525448,268960772,-6623803284297315,-6623801159997192],[525448,268960832,17896103187855503,17896105125322940],[525448,268960906,-13247605066971786,-13247603821617226],[525448,268960908,-13247605033169427,-13247603855419588],[525448,268960968,11272301161387192,11272302707496740],[525448,268961160,1975301885638544,1975303134066536],[525448,268961800,-24519907464643493,-24519905292829456],[525448,268961920,26495207798821558,26495209978356470],[525448,268962952,1975301892192549,1975303127512530],[525448,269090824,24519905292829456,24519907464643493],[525448,269090944,4648494875353022,4648504549236406],[525448,269091840,-42416014583842896,-42416006486808497],[525448,269091976,-13247605066127948,-13247603822461068],[525448,269484032,1975301885115096,1975303134589986],[525448,269484168,6623801159997192,6623803284297315],[525448,269485064,-697899214028262,-697890171151008],[525448,269485184,-3950608765320955,-3950601274089200],[525448,270008328,-3950608765320955,-3950601274089200],[525448,270008448,-697899214028262,-697890171151008],[525448,270009344,6623801159997192,6623803284297315],[525448,270009480,1975301885115096,1975303134589986],[525451,129,11272300873839524,11272302995044411],[525451,130,-11272302995044411,-11272300873839524],[525451,1025,-13247605066155522,-13247603822433492],[525451,1026,13247603822433492,13247605066155522],[525451,1161,-1975303102468593,-1975301917236486],[525451,1162,1975301917236486,1975303102468593],[525451,524289,1975301917236486,1975303102468593],[525451,524290,-1975303102468593,-1975301917236486],[525451,524425,13247603822433492,13247605066155522],[525451,524426,-13247605066155522,-13247603822433492],[525451,525321,-11272302995044411,-11272300873839524],[525451,525322,11272300873839524,11272302995044411],[525453,129,-24519907391505747,-24519905365967204],[525453,132,24519905365967204,24519907391505747],[525453,1025,1975301917236486,1975303102468593],[525453,1028,-1975303102468593,-1975301917236486],[525453,1161,-22544604430576096,-22544603307191776],[525453,1164,22544603307191776,22544604430576096],[525453,524289,22544603307191776,22544604430576096],[525453,524292,-22544604430576096,-22544603307191776],[525453,524425,-1975303102468593,-1975301917236486],[525453,524428,1975301917236486,1975303102468593],[525453,525321,24519905365967204,24519907391505747],[525453,525324,-24519907391505747,-24519905365967204],[525454,130,24519905365967204,24519907391505747],[525454,132,-11272302995044411,-11272300873839524],[525454,136,-13247606222252656,-13247602666336360],[525454,1026,-1975303102468593,-1975301917236486],[525454,1028,13247603822433492,13247605066155522],[525454,1032,-11272302995044411,-11272300873839524],[525454,1158,24519905365967204,24519907391505747],[525454,1162,-1975303102468593,-1975301917236486],[525454,1164,-22544604430576096,-22544603307191776],[525454,524290,-22544604430576096,-22544603307191776],[525454,524292,-1975303102468593,-1975301917236486],[525454,524296,24519905365967204,24519907391505747],[525454,524422,-11272302995044411,-11272300873839524],[525454,524426,13247603822433492,13247605066155522],[525454,524428,-1975303102468593,-1975301917236486],[525454,525318,-13247606222252656,-13247602666336360],[525454,525322,-11272302995044411,-11272300873839524],[525454,525324,24519905365967204,24519907391505747],[525504,10,11272301159430178,11272302709453758],[525504,202,22544601642609286,22544606095158586],[525504,258,1975301889664154,1975303130040923],[525504,264,18593996132872130,18594001565485586],[525504,450,-697899197873155,-697890187306122],[525504,456,11272299945646091,11272303923237845],[525504,1098,-13247606060429303,-13247602828159713],[525504,1162,1975300959240086,1975304060464994],[525504,1346,6623801159997192,6623803284297315],[525504,1352,11272298892173522,11272304976710416],[525504,1410,-3950608753647640,-3950601285762513],[525504,1416,-3950606982859932,-3950603056550226],[525504,2050,1975301885638543,1975303134066535],[525504,2056,-3950605802754426,-3950604236655732],[525504,2242,26495207799184865,26495209977993164],[525504,2248,-929670022,929670021],[525504,3144,-929670022,929670021],[525504,3202,-24519907464643494,-24519905292829457],[525504,3208,-3950606098159314,-3950603941250842],[525504,131074,-13247605067077166,-13247603821511848],[525504,131080,11272301159430177,11272302709453757],[525504,131266,-6623803346277521,-6623801098016984],[525504,131272,-13247606060429303,-13247602828159713],[525504,131328,-22544606281953756,-22544601455814116],[525504,131520,-6623803284297315,-6623801159997192],[525504,132162,-6623803346277523,-6623801098016986],[525504,132168,22544601642609286,22544606095158586],[525504,132232,1975300959240085,1975304060464993],[525504,132416,8599101386783086,8599108077216494],[525504,132480,-24519907464403207,-24519905293069738],[525504,133120,1975301885638544,1975303134066536],[525504,134208,26495207799184865,26495209977993164],[525504,134272,-24519907464643493,-24519905292829456],[525504,524362,1975300959240086,1975304060464994],[525504,524426,-13247606060429303,-13247602828159713],[525504,524610,-3950608753647640,-3950601285762513],[525504,524616,-3950606982859932,-3950603056550226],[525504,524674,6623801159997192,6623803284297315],[525504,524680,11272298892173522,11272304976710416],[525504,525322,22544601642609286,22544606095158586],[525504,525514,11272301159430178,11272302709453758],[525504,525570,-697899197873155,-697890187306122],[525504,525576,11272299945646091,11272303923237845],[525504,525762,1975301889664154,1975303130040923],[525504,525768,18593996132872130,18594001565485586],[525504,526402,-24519907464643494,-24519905292829457],[525504,526408,-3950606098159314,-3950603941250842],[525504,526472,-929670022,929670021],[525504,527362,26495207799184865,26495209977993164],[525504,527368,-929670022,929670021],[525504,527554,1975301885638543,1975303134066535],[525504,527560,-3950605802754426,-3950604236655732],[525504,655432,1975300959240085,1975304060464993],[525504,655490,-6623803346277523,-6623801098016986],[525504,655496,22544601642609286,22544606095158586],[525504,655680,-24519907464403207,-24519905293069738],[525504,655744,8599101386783086,8599108077216494],[525504,656386,-6623803346277521,-6623801098016984],[525504,656392,-13247606060429303,-13247602828159713],[525504,656578,-13247605067077166,-13247603821511848],[525504,656584,11272301159430177,11272302709453757],[525504,656640,-6623803284297315,-6623801159997192],[525504,656832,-22544606281953756,-22544601455814116],[525504,657472,-24519907464643493,-24519905292829456],[525504,657536,26495207799184865,26495209977993164],[525504,658624,1975301885638544,1975303134066536],[525504,1048578,-22544606285700820,-22544601452067054],[525504,1048584,18593996124609637,18594001573748076],[525504,1048770,8599101370269630,8599108093729955],[525504,1048776,11272298879893047,11272304988990891],[525504,1049666,-6623803284297315,-6623801159997192],[525504,1049672,11272299936568599,11272303932315336],[525504,1049730,-24519907477236870,-24519905280236082],[525504,1049736,-3950606995955408,-3950603043454752],[525504,1179648,1975301885115096,1975303134589986],[525504,1179840,6623801159997192,6623803284297315],[525504,1180736,-697899214028262,-697890171151008],[525504,1180800,-3950608765320955,-3950601274089200],[525504,1572930,-24519907477236870,-24519905280236082],[525504,1572936,-3950606995955408,-3950603043454752],[525504,1572994,-6623803284297315,-6623801159997192],[525504,1573000,11272299936568599,11272303932315336],[525504,1573890,8599101370269630,8599108093729955],[525504,1573896,11272298879893047,11272304988990891],[525504,1574082,-22544606285700820,-22544601452067054],[525504,1574088,18593996124609637,18594001573748076],[525504,1704000,-3950608765320955,-3950601274089200],[525504,1704064,-697899214028262,-697890171151008],[525504,1704960,6623801159997192,6623803284297315],[525504,1705152,1975301885115096,1975303134589986],[525504,268435458,-13247605061578886,-13247603827010127],[525504,268435464,11272301161280132,11272302707603802],[525504,268435650,-6623803341365525,-6623801102928978],[525504,268435656,-964466108,964466106],[525504,268436546,-6623803337001160,-6623801107293350],[525504,268436552,11272300812248450,11272303056635485],[525504,268436616,-932612781,932612782],[525504,268566720,6623801086208550,6623803358085955],[525504,268567616,-31143710514241570,-31143706687525880],[525504,268567680,24519905293069738,24519907464403207],[525504,268959816,-932612781,932612782],[525504,268959874,-6623803337001160,-6623801107293350],[525504,268959880,11272300812248450,11272303056635485],[525504,268960770,-6623803341365525,-6623801102928978],[525504,268960776,-964466108,964466106],[525504,268960962,-13247605061578886,-13247603827010127],[525504,268960968,11272301161280132,11272302707603802],[525504,269090880,24519905293069738,24519907464403207],[525504,269090944,-31143710514241570,-31143706687525880],[525504,269091840,6623801086208550,6623803358085955],[525507,129,-6623803284330947,-6623801159963560],[525507,130,6623801159963560,6623803284330947],[525507,1025,4648499087034444,4648500337554984],[525507,1026,-4648500337554984,-4648499087034444],[525507,1217,-1975303102434961,-1975301917270118],[525507,1218,1975301917270118,1975303102434961],[525507,524289,1975301917270118,1975303102434961],[525507,524290,-1975303102434961,-1975301917270118],[525507,524481,-4648500337554984,-4648499087034444],[525507,524482,4648499087034444,4648500337554984],[525507,525377,6623801159963560,6623803284330947],[525507,525378,-6623803284330947,-6623801159963560],[525514,10,11272301159430178,11272302709453758],[525514,66,-9297000198160808,-9296998651018048],[525514,72,-1975304058435710,-1975300961269370],[525514,130,4648493659097978,4648505765491449],[525514,136,-47064513273775962,-47064507221464861],[525514,192,42416007508284513,42416013562366883],[525514,1026,15920798695415380,15920804598057982],[525514,1032,5925906055094245,5925909004020996],[525514,1088,-21846710653152227,-21846707699436376],[525514,1162,-9297000814034204,-9296998035144653],[525514,1218,31841601906990784,31841604679955942],[525514,1224,-22544606644811289,-22544601092956580],[525514,524290,-22544606644811289,-22544601092956580],[525514,524296,31841601906990784,31841604679955942],[525514,524352,-9297000814034204,-9296998035144653],[525514,524426,-21846710653152227,-21846707699436376],[525514,524482,5925906055094245,5925909004020996],[525514,524488,15920798695415380,15920804598057982],[525514,525322,42416007508284513,42416013562366883],[525514,525378,-47064513273775962,-47064507221464861],[525514,525384,4648493659097978,4648505765491449],[525514,525442,-1975304058435710,-1975300961269370],[525514,525448,-9297000198160808,-9296998651018048],[525514,525504,11272301159430178,11272302709453758],[525516,68,11272301204057192,11272302664826744],[525516,72,-11272302664826744,-11272301204057192],[525516,132,-13247606222252656,-13247602666336360],[525516,136,13247602666336360,13247606222252656],[525516,1028,-9297000203994710,-9296998645184146],[525516,1032,9296998645184146,9297000203994710],[525516,1220,-11272302664793112,-11272301204090824],[525516,1224,11272301204090824,11272302664793112],[525516,524292,11272301204090824,11272302664793112],[525516,524296,-11272302664793112,-11272301204090824],[525516,524484,9296998645184146,9297000203994710],[525516,524488,-9297000203994710,-9296998645184146],[525516,525380,13247602666336360,13247606222252656],[525516,525384,-13247606222252656,-13247602666336360],[525516,525444,-11272302664826744,-11272301204057192],[525516,525448,11272301204057192,11272302664826744],[525570,192,-53688314809147586,-53688310130387744],[525570,394,26495207799404518,26495209977773508],[525570,450,-697899197873155,-697890187306122],[525570,1162,-26495209977773508,-26495207799404518],[525570,1218,-52990419943081622,-52990415611274431],[525570,524680,-26495209977773508,-26495207799404518],[525570,524736,-52990419943081622,-52990415611274431],[525570,525448,26495207799404518,26495209977773508],[525570,525504,-697899197873155,-697890187306122],[525570,525762,-53688314809147586,-53688310130387744],[525570,1048640,-1975303102468593,-1975301917236486],[525570,1048898,-1975303102468593,-1975301917236486],[525570,1573952,-1975303102468593,-1975301917236486],[525570,1574210,-1975303102468593,-1975301917236486],[525572,396,26495207861603338,26495209915574692],[525572,1164,-26495209915574692,-26495207861603338],[525572,524680,-26495209915574692,-26495207861603338],[525572,525448,26495207861603338,26495209915574692],[525576,0,-7901210969997192,-7901209108823124],[525576,192,57638914684799306,57638920294146182],[525576,264,-1975305295486367,-1975299724218711],[525576,394,-26495209977773508,-26495207799404518],[525576,396,-26495209915574692,-26495207861603338],[525576,456,11272299945646091,11272303923237845],[525576,640,26495207799184865,26495209977993164],[525576,1032,-1975305295452736,-1975299724252344],[525576,1162,26495207799404518,26495209977773508],[525576,1164,26495207861603338,26495209915574692],[525576,1224,-6623804212490749,-6623800231803759],[525576,1280,-3950605484998596,-3950604554411562],[525576,1472,52990415723206676,52990419831149384],[525576,1920,26495207799184865,26495209977993164],[525576,2176,-26495209977993164,-26495207799184865],[525576,3456,-26495209977993164,-26495207799184865],[525576,131464,-2193017775,2193017774],[525576,132232,-2193017774,2193017775],[525576,524296,-3950605484998596,-3950604554411562],[525576,524488,52990415723206676,52990419831149384],[525576,524544,-1975305295452736,-1975299724252344],[525576,524674,26495207799404518,26495209977773508],[525576,524676,26495207861603338,26495209915574692],[525576,524736,-6623804212490749,-6623800231803759],[525576,524936,26495207799184865,26495209977993164],[525576,525312,-1975305295486367,-1975299724218711],[525576,525442,-26495209977773508,-26495207799404518],[525576,525444,-26495209915574692,-26495207861603338],[525576,525504,11272299945646091,11272303923237845],[525576,525576,-7901210969997192,-7901209108823124],[525576,525768,57638914684799306,57638920294146182],[525576,526216,26495207799184865,26495209977993164],[525576,526472,-26495209977993164,-26495207799184865],[525576,527752,-26495209977993164,-26495207799184865],[525576,655744,-2193017774,2193017775],[525576,656512,-2193017775,2193017774],[525576,1048704,-24519908074966154,-24519904682506797],[525576,1048968,52990415723206676,52990419831149384],[525576,1049736,-51015117307046807,-51015113227604174],[525576,1049984,-26495209992202640,-26495207784975390],[525576,1573000,-26495209992202640,-26495207784975390],[525576,1573248,-51015117307046807,-51015113227604174],[525576,1574016,52990415723206676,52990419831149384],[525576,1574280,-24519908074966154,-24519904682506797],[525576,268435848,26495207799425147,26495209977752878],[525576,268436616,-26495209977752878,-26495207799425147],[525576,268960128,-26495209977752878,-26495207799425147],[525576,268960896,26495207799425147,26495209977752878],[525632,130,47064508673158980,47064511822081843],[525632,450,-3950608753660642,-3950601285749510],[525632,456,22544602330282044,22544605407485828],[525632,1218,51015113107831353,51015117426819622],[525632,1224,8599101696810952,8599107767188634],[525632,1416,-31143710097470678,-31143707104296780],[525632,131520,28470509691254389,28470513105628714],[525632,132288,-8599108077216494,-8599101386783086],[525632,132480,-19871408304471303,-19871405028412220],[525632,524488,-31143710097470678,-31143707104296780],[525632,524674,51015113107831353,51015117426819622],[525632,524680,8599101696810952,8599107767188634],[525632,525442,-3950608753660642,-3950601285749510],[525632,525448,22544602330282044,22544605407485828],[525632,525762,47064508673158980,47064511822081843],[525632,655552,-19871408304471303,-19871405028412220],[525632,655744,-8599108077216494,-8599101386783086],[525632,656512,28470509691254389,28470513105628714],[525632,1048578,1975301917236486,1975303102468593],[525632,1048898,1975301917236486,1975303102468593],[525632,1180736,-1975303102434961,-1975301917270118],[525632,1180928,1975301917270118,1975303102434961],[525632,1573890,1975301917236486,1975303102468593],[525632,1574210,1975301917236486,1975303102468593],[525632,1704000,1975301917270118,1975303102434961],[525632,1704192,-1975303102434961,-1975301917270118],[525696,72,-24519907697996171,-24519905059476780],[525696,450,6623801159963560,6623803284330947],[525696,456,13247602298025327,13247606590563683],[525696,520,-13247605067077166,-13247603821511848],[525696,1218,-1975303102434961,-1975301917270118],[525696,1224,-24519908340000795,-24519904417472150],[525696,1346,-4648500337554984,-4648499087034444],[525696,1352,-13247605939232943,-13247602949356073],[525696,1800,-13247605067077166,-13247603821511848],[525696,2056,13247603821511848,13247605067077166],[525696,3336,13247603821511848,13247605067077166],[525696,131136,26495207710839176,26495210066338854],[525696,131464,-22544605576438951,-22544602161328920],[525696,131520,-17896106304406015,-17896102008772423],[525696,131584,13247603821511848,13247605067077166],[525696,132232,22544602161328920,22544605576438951],[525696,132288,24519905293069738,24519907464403207],[525696,132416,19871405028412220,19871408304471303],[525696,132864,13247603821511848,13247605067077166],[525696,133120,-13247605067077166,-13247603821511848],[525696,134400,-13247605067077166,-13247603821511848],[525696,524482,-4648500337554984,-4648499087034444],[525696,524488,-13247605939232943,-13247602949356073],[525696,524610,-1975303102434961,-1975301917270118],[525696,524616,-24519908340000795,-24519904417472150],[525696,524936,-13247605067077166,-13247603821511848],[525696,525378,6623801159963560,6623803284330947],[525696,525384,13247602298025327,13247606590563683],[525696,525768,-24519907697996171,-24519905059476780],[525696,526216,-13247605067077166,-13247603821511848],[525696,526472,13247603821511848,13247605067077166],[525696,527752,13247603821511848,13247605067077166],[525696,655552,19871405028412220,19871408304471303],[525696,655624,22544602161328920,22544605576438951],[525696,655680,24519905293069738,24519907464403207],[525696,656000,13247603821511848,13247605067077166],[525696,656392,-22544605576438951,-22544602161328920],[525696,656448,-17896106304406015,-17896102008772423],[525696,656832,26495207710839176,26495210066338854],[525696,657280,13247603821511848,13247605067077166],[525696,657536,-13247605067077166,-13247603821511848],[525696,658816,-13247605067077166,-13247603821511848],[525696,1048584,11272300719992475,11272303148891462],[525696,1048968,-51015117307046807,-51015113227604174],[525696,1049736,49039810732001672,49039814782944230],[525696,1049864,13247603822461068,13247605066127948],[525696,1179648,-13247605066127948,-13247603822461068],[525696,1180032,49039810732001672,49039814782944230],[525696,1180800,-47064511822048211,-47064508673192612],[525696,1180928,-15222908168562909,-15222905739731186],[525696,1573000,13247603822461068,13247605066127948],[525696,1573128,49039810732001672,49039814782944230],[525696,1573896,-51015117307046807,-51015113227604174],[525696,1574280,11272300719992475,11272303148891462],[525696,1704064,-15222908168562909,-15222905739731186],[525696,1704192,-47064511822048211,-47064508673192612],[525696,1704960,49039810732001672,49039814782944230],[525696,1705344,-13247605066127948,-13247603822461068],[525696,268435848,-24519907464403207,-24519905293069738],[525696,268436616,24519905293069738,24519907464403207],[525696,268566912,24519905293069738,24519907464403207],[525696,268567680,-24519907464403207,-24519905293069738],[525696,268960008,24519905293069738,24519907464403207],[525696,268960776,-24519907464403207,-24519905293069738],[525696,269091072,-24519907464403207,-24519905293069738],[525696,269091840,24519905293069738,24519907464403207],[525706,258,22544603248067364,22544604489700504],[525706,264,-22544604489700504,-22544603248067364],[525706,1026,-22544604489700504,-22544603248067364],[525706,1032,22544603248067364,22544604489700504],[525706,524674,22544603248067364,22544604489700504],[525706,524680,-22544604489700504,-22544603248067364],[525706,525442,-22544604489700504,-22544603248067364],[525706,525448,22544603248067364,22544604489700504],[525708,260,1975301917270118,1975303102434961],[525708,264,-1975303102434961,-1975301917270118],[525708,1028,-1975303102434961,-1975301917270118],[525708,1032,1975301917270118,1975303102434961],[525708,524676,1975301917270118,1975303102434961],[525708,524680,-1975303102434961,-1975301917270118],[525708,525444,-1975303102434961,-1975301917270118],[525708,525448,1975301917270118,1975303102434961],[525762,130,47064508673158980,47064511822081843],[525762,192,-53688314809147586,-53688310130387744],[525762,258,1975301889664154,1975303130040923],[525762,320,-1975303130040923,-1975301889664154],[525762,384,8599103049607085,8599106414392500],[525762,450,1975301889643525,1975303130061553],[525762,1026,-3950606232509516,-3950603806900640],[525762,1088,8599103049661346,8599106414338238],[525762,1152,-1975303130061553,-1975301889643525],[525762,1218,-3950606232496514,-3950603806913643],[525762,1280,-4648500337554984,-4648499087034444],[525762,1410,47064508673192612,47064511822048211],[525762,1472,-45089208861152192,-45089206614383552],[525762,524290,-45089208861152192,-45089206614383552],[525762,524352,47064508673192612,47064511822048211],[525762,524482,-4648500337554984,-4648499087034444],[525762,524544,-3950606232496514,-3950603806913643],[525762,524610,-1975303130061553,-1975301889643525],[525762,524674,8599103049661346,8599106414338238],[525762,524736,-3950606232509516,-3950603806900640],[525762,525312,1975301889643525,1975303130061553],[525762,525378,8599103049607085,8599106414392500],[525762,525442,-1975303130040923,-1975301889664154],[525762,525504,1975301889664154,1975303130040923],[525762,525570,-53688314809147586,-53688310130387744],[525762,525632,47064508673158980,47064511822081843],[525768,72,-24519907697996171,-24519905059476780],[525768,192,57638914684799306,57638920294146182],[525768,264,18593996132872130,18594001565485586],[525768,320,-24519907159915920,-24519905597557028],[525768,384,19871400914685277,19871412418198236],[525768,456,47064508855883441,47064511639357377],[525768,1032,5925906132510585,5925908926604650],[525768,1088,15920800086388708,15920803207084654],[525768,1152,-77510327102997542,-77510321208831459],[525768,1224,-22544606578062592,-22544601159705275],[525768,1280,8599103952831266,8599105511168320],[525768,1416,-24519907696178166,-24519905061294785],[525768,524352,-24519907696178166,-24519905061294785],[525768,524488,8599103952831266,8599105511168320],[525768,524544,-22544606578062592,-22544601159705275],[525768,524616,-77510327102997542,-77510321208831459],[525768,524680,15920800086388708,15920803207084654],[525768,524736,5925906132510585,5925908926604650],[525768,525312,47064508855883441,47064511639357377],[525768,525384,19871400914685277,19871412418198236],[525768,525448,-24519907159915920,-24519905597557028],[525768,525504,18593996132872130,18594001565485586],[525768,525576,57638914684799306,57638920294146182],[525768,525696,-24519907697996171,-24519905059476780],[525832,384,-26495209977993164,-26495207799184865],[525832,1920,-26495209977993164,-26495207799184865],[525832,2176,-26495209971802464,-26495207805375563],[525832,3712,-26495209971802464,-26495207805375563],[525832,524680,-26495209977993164,-26495207799184865],[525832,526216,-26495209977993164,-26495207799184865],[525832,526472,-26495209971802464,-26495207805375563],[525832,528008,-26495209971802464,-26495207805375563],[525952,264,13247603821511848,13247605067077166],[525952,1800,13247603821511848,13247605067077166],[525952,2056,13247603826875223,13247605061713792],[525952,3592,13247603826875223,13247605061713792],[525952,131328,-13247605067077166,-13247603821511848],[525952,132864,-13247605067077166,-13247603821511848],[525952,133120,-13247605061713792,-13247603826875223],[525952,134656,-13247605061713792,-13247603826875223],[525952,524680,13247603821511848,13247605067077166],[525952,526216,13247603821511848,13247605067077166],[525952,526472,13247603826875223,13247605061713792],[525952,528008,13247603826875223,13247605061713792],[525952,655744,-13247605067077166,-13247603821511848],[525952,657280,-13247605067077166,-13247603821511848],[525952,657536,-13247605061713792,-13247603826875223],[525952,659072,-13247605061713792,-13247603826875223],[526080,1416,-13247605061713792,-13247603826875223],[526080,1672,13247603826875223,13247605061713792],[526080,132480,-13247605067077166,-13247603821511848],[526080,132736,13247603821511848,13247605067077166],[526080,524680,13247603826875223,13247605061713792],[526080,524936,-13247605061713792,-13247603826875223],[526080,655744,13247603821511848,13247605067077166],[526080,656000,-13247605067077166,-13247603821511848],[526080,1180928,1975301885638543,1975303134066535],[526080,1181184,-1975303134066535,-1975301885638543],[526080,1704192,-1975303134066535,-1975301885638543],[526080,1704448,1975301885638543,1975303134066535],[526216,264,13247603821511848,13247605067077166],[526216,384,-26495209977993164,-26495207799184865],[526216,520,-13247605067077166,-13247603821511848],[526216,640,26495207799184865,26495209977993164],[526216,1416,-13247605061713792,-13247603826875223],[526216,1672,13247603826875223,13247605061713792],[526216,524544,13247603826875223,13247605061713792],[526216,524800,-13247605061713792,-13247603826875223],[526216,525576,26495207799184865,26495209977993164],[526216,525696,-13247605067077166,-13247603821511848],[526216,525832,-26495209977993164,-26495207799184865],[526216,525952,13247603821511848,13247605067077166],[526336,136,17198207762730769,17198211165268399],[526336,1032,-1975305338051185,-1975299681653896],[526336,1224,-24519907156493899,-24519905600979049],[526336,1416,13247603826875223,13247605061713792],[526336,1672,13247603827702546,13247605060886466],[526336,131200,13247602731588215,13247606157000801],[526336,132096,-3950609278673694,-3950600760736484],[526336,132232,-3950606276156332,-3950603763253824],[526336,132288,-1975303134066536,-1975301885638544],[526336,132480,13247603821511848,13247605067077166],[526336,132736,13247603826875223,13247605061713792],[526336,526472,17198207762730769,17198211165268399],[526336,527368,-1975305338051185,-1975299681653896],[526336,527560,-24519907156493899,-24519905600979049],[526336,527752,13247603826875223,13247605061713792],[526336,528008,13247603827702546,13247605060886466],[526336,657536,13247602731588215,13247606157000801],[526336,658432,-3950609278673694,-3950600760736484],[526336,658568,-3950606276156332,-3950603763253824],[526336,658624,-1975303134066536,-1975301885638544],[526336,658816,13247603821511848,13247605067077166],[526336,659072,13247603826875223,13247605061713792],[526336,1049736,11272300713657228,11272303155226711],[526336,1179648,-3950608254927041,-3950601784483124],[526336,1180800,-7321700242729086,-7321693586744675],[526336,1180928,-1975303134066535,-1975301885638543],[526336,1181184,-22544604485915178,-22544603251852693],[526336,1576072,11272300713657228,11272303155226711],[526336,1705984,-3950608254927041,-3950601784483124],[526336,1707136,-7321700242729086,-7321693586744675],[526336,1707264,-1975303134066535,-1975301885638543],[526336,1707520,-22544604485915178,-22544603251852693],[526336,2098312,13247603808044578,13247605080544438],[526336,2228224,-1975304632453679,-1975300387251397],[526336,2229376,13247603817961795,13247605070627222],[526336,2624648,13247603808044578,13247605080544438],[526336,2754560,-1975304632453679,-1975300387251397],[526336,2755712,13247603817961795,13247605070627222],[526336,3276928,26495207776804167,26495210000373866],[526336,3277312,-1975303127512530,-1975301892192549],[526336,3277824,-49039815256755116,-49039810258190782],[526336,3803264,26495207776804167,26495210000373866],[526336,3803648,-1975303127512530,-1975301892192549],[526336,3804160,-49039815256755116,-49039810258190782],[526336,33555592,13247603851851071,13247605036737943],[526336,33686656,13247603851021587,13247605037567427],[526336,34081928,13247603851851071,13247605036737943],[526336,34212992,13247603851021587,13247605037567427],[526336,34735104,-1975303106832961,-1975301912872117],[526336,35261440,-1975303106832961,-1975301912872117],[526336,36831232,-1975303104304567,-1975301915400511],[526336,37357568,-1975303104304567,-1975301915400511],[526336,135398400,-1975303134066536,-1975301885638544],[526336,135924736,-1975303134066536,-1975301885638544],[526336,137494528,-22544604485915178,-22544603251852693],[526336,138020864,-22544604485915178,-22544603251852693],[526336,268436616,-1975303127512530,-1975301892192549],[526336,268567680,-24519907464643493,-24519905292829456],[526336,268962952,-1975303127512530,-1975301892192549],[526336,269094016,-24519907464643493,-24519905292829456],[526336,269616128,26495207799184865,26495209977993164],[526336,270142464,26495207799184865,26495209977993164],[526336,271712256,26495207805375563,26495209971802464],[526336,272238592,26495207805375563,26495209971802464],[526336,540147712,-1975303127512529,-1975301892192548],[526336,540674048,-1975303127512529,-1975301892192548],[526336,549759090688,-22544604432275006,-22544603305492866],[526336,549759617024,-22544604432275006,-22544603305492866],[526346,3202,-3950606098159314,-3950603941250842],[526346,3208,3950603941250842,3950606098159314],[526346,525442,3950603941250842,3950606098159314],[526346,525448,-3950606098159314,-3950603941250842],[526348,3204,-24519907395040631,-24519905362432319],[526348,3208,24519905362432319,24519907395040631],[526348,525444,24519905362432319,24519907395040631],[526348,525448,-24519907395040631,-24519905362432319],[526402,3202,-24519907464643494,-24519905292829457],[526402,3264,24519905292829457,24519907464643494],[526402,525442,24519905292829457,24519907464643494],[526402,525504,-24519907464643494,-24519905292829457],[526408,1152,-52990419648200040,-52990415906156016],[526408,1224,-24519907464643493,-24519905292829456],[526408,3208,-3950606098159314,-3950603941250842],[526408,3264,-24519907464643494,-24519905292829457],[526408,525448,-24519907464643494,-24519905292829457],[526408,525504,-3950606098159314,-3950603941250842],[526408,527488,-24519907464643493,-24519905292829456],[526408,527560,-52990419648200040,-52990415906156016],[526466,1032,22544603251852693,22544604485915178],[526466,1088,1975301885638543,1975303134066535],[526466,1162,26495207805375563,26495209971802464],[526466,1218,26495207799184865,26495209977993164],[526466,3208,-3950606098159314,-3950603941250842],[526466,3264,-24519907464643494,-24519905292829457],[526466,525322,-3950606098159314,-3950603941250842],[526466,525378,-24519907464643494,-24519905292829457],[526466,527368,26495207805375563,26495209971802464],[526466,527424,26495207799184865,26495209977993164],[526466,527498,22544603251852693,22544604485915178],[526466,527554,1975301885638543,1975303134066535],[526468,1032,1975301912872117,1975303106832961],[526468,1164,26495207853670452,26495209923507576],[526468,3208,-24519907395040631,-24519905362432319],[526468,525324,-24519907395040631,-24519905362432319],[526468,527368,26495207853670452,26495209923507576],[526468,527500,1975301912872117,1975303106832961],[526472,0,7901209096355172,7901210982465140],[526472,136,17198207762730769,17198211165268399],[526472,1026,-22544604485915178,-22544603251852693],[526472,1028,-1975303106832961,-1975301912872117],[526472,1088,24519905600979050,24519907156493900],[526472,1162,-26495209971802464,-26495207805375563],[526472,1164,-26495209923507576,-26495207853670452],[526472,1224,-923386045,923386045],[526472,1416,13247603826875223,13247605061713792],[526472,1672,13247603827702546,13247605060886466],[526472,2056,17198207753821687,17198211174177485],[526472,2176,-26495211840725034,-26495205936452994],[526472,3144,-929670022,929670021],[526472,3202,3950603941250842,3950606098159314],[526472,3204,24519905362432319,24519907395040631],[526472,3264,24519905292829457,24519907464643494],[526472,3336,13247603821511848,13247605067077166],[526472,3456,-26495209977993164,-26495207799184865],[526472,3592,13247603826875223,13247605061713792],[526472,3712,-26495209971802464,-26495207805375563],[526472,132096,-49039815256755116,-49039810258190782],[526472,132232,-26495210000373866,-26495207776804167],[526472,134152,-26495210008022388,-26495207769155642],[526472,134272,3950601784483124,3950608254927041],[526472,524296,-26495211840725034,-26495205936452994],[526472,524416,17198207753821687,17198211174177485],[526472,525322,3950603941250842,3950606098159314],[526472,525324,24519905362432319,24519907395040631],[526472,525384,24519905292829457,24519907464643494],[526472,525504,-929670022,929670021],[526472,525576,-26495209977993164,-26495207799184865],[526472,525696,13247603821511848,13247605067077166],[526472,525832,-26495209971802464,-26495207805375563],[526472,525952,13247603826875223,13247605061713792],[526472,526336,17198207762730769,17198211165268399],[526472,526472,7901209096355172,7901210982465140],[526472,527362,-26495209971802464,-26495207805375563],[526472,527364,-26495209923507576,-26495207853670452],[526472,527424,-923386045,923386045],[526472,527498,-22544604485915178,-22544603251852693],[526472,527500,-1975303106832961,-1975301912872117],[526472,527560,24519905600979050,24519907156493900],[526472,527616,13247603826875223,13247605061713792],[526472,527872,13247603827702546,13247605060886466],[526472,656392,3950601784483124,3950608254927041],[526472,656512,-26495210008022388,-26495207769155642],[526472,658432,-26495210000373866,-26495207776804167],[526472,658568,-49039815256755116,-49039810258190782],[526472,1049600,-1975303104304567,-1975301915400511],[526472,1049736,13247603817961795,13247605070627222],[526472,1051656,-26495212228659796,-26495205548518216],[526472,1051776,11272298134922261,11272305733961656],[526472,1573896,11272298134922261,11272305733961656],[526472,1574016,-26495212228659796,-26495205548518216],[526472,1575936,13247603817961795,13247605070627222],[526472,1576072,-1975303104304567,-1975301915400511],[526472,2098312,13247603808044578,13247605080544438],[526472,2100232,13247603817961795,13247605070627222],[526472,2100352,-26495210000373866,-26495207776804167],[526472,2622472,-26495210000373866,-26495207776804167],[526472,2622592,13247603817961795,13247605070627222],[526472,2624512,13247603808044578,13247605080544438],[526472,3147784,13247603817961795,13247605070627222],[526472,3147904,-13247605070627222,-13247603817961795],[526472,3670024,-13247605070627222,-13247603817961795],[526472,3670144,13247603817961795,13247605070627222],[526472,33555592,13247603851851071,13247605036737943],[526472,33557512,13247603851021587,13247605037567427],[526472,33557632,-26495209923507576,-26495207853670452],[526472,34079752,-26495209923507576,-26495207853670452],[526472,34079872,13247603851021587,13247605037567427],[526472,34081792,13247603851851071,13247605036737943],[526472,268436480,-1975303127512530,-1975301892192549],[526472,268438536,-26495209978356470,-26495207798821558],[526472,268438656,24519905292829456,24519907464643493],[526472,268960776,24519905292829456,24519907464643493],[526472,268960896,-26495209978356470,-26495207798821558],[526472,268962952,-1975303127512530,-1975301892192549],[526528,1026,-1975303134066535,-1975301885638543],[526528,1032,3950604236655732,3950605802754426],[526528,1218,-26495209977993164,-26495207799184865],[526528,1224,-929670021,929670022],[526528,3144,-929670021,929670022],[526528,3202,24519905292829457,24519907464643494],[526528,3208,3950603941250842,3950606098159314],[526528,132096,-1975303134066536,-1975301885638544],[526528,134208,-26495209977993164,-26495207799184865],[526528,134272,24519905292829456,24519907464643493],[526528,525378,24519905292829457,24519907464643494],[526528,525384,3950603941250842,3950606098159314],[526528,525448,-929670021,929670022],[526528,527362,-26495209977993164,-26495207799184865],[526528,527368,-929670021,929670022],[526528,527554,-1975303134066535,-1975301885638543],[526528,527560,3950604236655732,3950605802754426],[526528,656448,24519905292829456,24519907464643493],[526528,656512,-26495209977993164,-26495207799184865],[526528,658624,-1975303134066536,-1975301885638544],[526600,1152,52990415906156016,52990419648200040],[526600,3456,52990415906156016,52990419648200040],[526600,525448,52990415906156016,52990419648200040],[526600,527752,52990415906156016,52990419648200040],[526720,1032,-26495209977993164,-26495207799184865],[526720,3336,-26495209977993164,-26495207799184865],[526720,132096,26495207799184865,26495209977993164],[526720,134400,26495207799184865,26495209977993164],[526720,525448,-26495209977993164,-26495207799184865],[526720,527752,-26495209977993164,-26495207799184865],[526720,656512,26495207799184865,26495209977993164],[526720,658816,26495207799184865,26495209977993164],[527362,1162,-26495209971802464,-26495207805375563],[527362,1218,-26495209977993164,-26495207799184865],[527362,2186,26495207805375563,26495209971802464],[527362,2242,26495207799184865,26495209977993164],[527362,525448,26495207805375563,26495209971802464],[527362,525504,26495207799184865,26495209977993164],[527362,526472,-26495209971802464,-26495207805375563],[527362,526528,-26495209977993164,-26495207799184865],[527364,1164,-26495209923507576,-26495207853670452],[527364,2188,26495207853670452,26495209923507576],[527364,525448,26495207853670452,26495209923507576],[527364,526472,-26495209923507576,-26495207853670452],[527368,0,-7901210982465140,-7901209096355172],[527368,384,-26495209971802464,-26495207805375563],[527368,640,26495207805375563,26495209971802464],[527368,1032,-1975305338051185,-1975299681653896],[527368,1162,26495207805375563,26495209971802464],[527368,1164,26495207853670452,26495209923507576],[527368,1224,-929670021,929670022],[527368,2056,-1975305335522788,-1975299684182287],[527368,2186,-26495209971802464,-26495207805375563],[527368,2188,-26495209923507576,-26495207853670452],[527368,2248,-929670022,929670021],[527368,3072,-3950605491232570,-3950604548177586],[527368,3456,-26495209971802464,-26495207805375563],[527368,3712,26495207805375563,26495209971802464],[527368,132232,-2231218221,2231218224],[527368,133256,-2231218224,2231218221],[527368,524296,-3950605491232570,-3950604548177586],[527368,524680,-26495209971802464,-26495207805375563],[527368,524936,26495207805375563,26495209971802464],[527368,525312,-1975305335522788,-1975299684182287],[527368,525442,-26495209971802464,-26495207805375563],[527368,525444,-26495209923507576,-26495207853670452],[527368,525504,-929670022,929670021],[527368,526336,-1975305338051185,-1975299681653896],[527368,526466,26495207805375563,26495209971802464],[527368,526468,26495207853670452,26495209923507576],[527368,526528,-929670021,929670022],[527368,527368,-7901210982465140,-7901209096355172],[527368,527752,-26495209971802464,-26495207805375563],[527368,528008,26495207805375563,26495209971802464],[527368,656512,-2231218224,2231218221],[527368,657536,-2231218221,2231218224],[527368,1048704,-24519908084973355,-24519904672499600],[527368,1049736,-51015117331445277,-51015113203205693],[527368,1050760,52990415696972220,52990419857383828],[527368,1051776,-26495210000373866,-26495207776804167],[527368,1573000,-26495210000373866,-26495207776804167],[527368,1574016,52990415696972220,52990419857383828],[527368,1575040,-51015117331445277,-51015113203205693],[527368,1576072,-24519908084973355,-24519904672499600],[527368,2097280,26495207776804167,26495210000373866],[527368,2100352,26495207776804167,26495210000373866],[527368,2621576,26495207776804167,26495210000373866],[527368,2624648,26495207776804167,26495210000373866],[527368,33554560,26495207853670452,26495209923507576],[527368,33557632,26495207853670452,26495209923507576],[527368,34078856,26495207853670452,26495209923507576],[527368,34081928,26495207853670452,26495209923507576],[527368,268436616,-26495209978356470,-26495207798821558],[527368,268437640,26495207798821558,26495209978356470],[527368,268960896,26495207798821558,26495209978356470],[527368,268961920,-26495209978356470,-26495207798821558],[527424,1218,26495207799184865,26495209977993164],[527424,1224,-923386045,923386045],[527424,2242,-26495209977993164,-26495207799184865],[527424,2248,-923386045,923386045],[527424,132288,-26495209977993164,-26495207799184865],[527424,133312,26495207799184865,26495209977993164],[527424,525442,-26495209977993164,-26495207799184865],[527424,525448,-923386045,923386045],[527424,526466,26495207799184865,26495209977993164],[527424,526472,-923386045,923386045],[527424,656512,26495207799184865,26495209977993164],[527424,657536,-26495209977993164,-26495207799184865],[527488,264,13247603826875223,13247605061713792],[527488,520,-13247605061713792,-13247603826875223],[527488,1224,-24519907464643493,-24519905292829456],[527488,2248,24519905292829456,24519907464643493],[527488,3336,13247603826875223,13247605061713792],[527488,3592,-13247605061713792,-13247603826875223],[527488,131328,-13247605061713792,-13247603826875223],[527488,131584,13247603826875223,13247605061713792],[527488,132232,22544602288119128,22544605449648746],[527488,132288,24519905292829456,24519907464643493],[527488,133256,-22544605449648746,-22544602288119128],[527488,133312,-24519907464643493,-24519905292829456],[527488,134400,-13247605061713792,-13247603826875223],[527488,134656,13247603826875223,13247605061713792],[527488,524680,13247603826875223,13247605061713792],[527488,524936,-13247605061713792,-13247603826875223],[527488,525384,24519905292829456,24519907464643493],[527488,526408,-24519907464643493,-24519905292829456],[527488,527752,13247603826875223,13247605061713792],[527488,528008,-13247605061713792,-13247603826875223],[527488,655744,-13247605061713792,-13247603826875223],[527488,656000,13247603826875223,13247605061713792],[527488,656392,-22544605449648746,-22544602288119128],[527488,656448,-24519907464643493,-24519905292829456],[527488,657416,22544602288119128,22544605449648746],[527488,657472,24519905292829456,24519907464643493],[527488,658816,-13247605061713792,-13247603826875223],[527488,659072,13247603826875223,13247605061713792],[527488,1048584,11272300713657228,11272303155226711],[527488,1049736,49039810709439166,49039814805506726],[527488,1050760,-51015117331445277,-51015113203205693],[527488,1051656,13247603817961795,13247605070627222],[527488,1179648,-13247605070627222,-13247603817961795],[527488,1180800,-47064511840212707,-47064508655028107],[527488,1181824,49039810709439166,49039814805506726],[527488,1182720,-15222908177460183,-15222905730833912],[527488,1573000,13247603817961795,13247605070627222],[527488,1573896,-51015117331445277,-51015113203205693],[527488,1574920,49039810709439166,49039814805506726],[527488,1576072,11272300713657228,11272303155226711],[527488,1704064,-15222908177460183,-15222905730833912],[527488,1704960,49039810709439166,49039814805506726],[527488,1705984,-47064511840212707,-47064508655028107],[527488,1707136,-13247605070627222,-13247603817961795],[527488,2097160,-13247605070627222,-13247603817961795],[527488,2100232,-13247605070627222,-13247603817961795],[527488,2228224,13247603817961795,13247605070627222],[527488,2231296,13247603817961795,13247605070627222],[527488,2621576,-13247605070627222,-13247603817961795],[527488,2624648,-13247605070627222,-13247603817961795],[527488,2752640,13247603817961795,13247605070627222],[527488,2755712,13247603817961795,13247605070627222],[527488,33554440,-13247605037567427,-13247603851021587],[527488,33557512,-13247605037567427,-13247603851021587],[527488,33685504,13247603851021587,13247605037567427],[527488,33688576,13247603851021587,13247605037567427],[527488,34078856,-13247605037567427,-13247603851021587],[527488,34081928,-13247605037567427,-13247603851021587],[527488,34209920,13247603851021587,13247605037567427],[527488,34212992,13247603851021587,13247605037567427],[527488,268436616,24519905292829456,24519907464643493],[527488,268437640,-24519907464643493,-24519905292829456],[527488,268567680,-24519907464643493,-24519905292829456],[527488,268568704,24519905292829456,24519907464643493],[527488,268960776,-24519907464643493,-24519905292829456],[527488,268961800,24519905292829456,24519907464643493],[527488,269091840,24519905292829456,24519907464643493],[527488,269092864,-24519907464643493,-24519905292829456],[527498,1026,-22544604485915178,-22544603251852693],[527498,1032,22544603251852693,22544604485915178],[527498,2050,22544603251852693,22544604485915178],[527498,2056,-22544604485915178,-22544603251852693],[527498,525442,-22544604485915178,-22544603251852693],[527498,525448,22544603251852693,22544604485915178],[527498,526466,22544603251852693,22544604485915178],[527498,526472,-22544604485915178,-22544603251852693],[527500,1028,-1975303106832961,-1975301912872117],[527500,1032,1975301912872117,1975303106832961],[527500,2052,1975301912872117,1975303106832961],[527500,2056,-1975303106832961,-1975301912872117],[527500,525444,-1975303106832961,-1975301912872117],[527500,525448,1975301912872117,1975303106832961],[527500,526468,1975301912872117,1975303106832961],[527500,526472,-1975303106832961,-1975301912872117],[527554,1026,-1975303134066535,-1975301885638543],[527554,1088,1975301885638543,1975303134066535],[527554,2050,1975301885638543,1975303134066535],[527554,2112,-1975303134066535,-1975301885638543],[527554,525442,-1975303134066535,-1975301885638543],[527554,525504,1975301885638543,1975303134066535],[527554,526466,1975301885638543,1975303134066535],[527554,526528,-1975303134066535,-1975301885638543],[527560,1032,3950604236655732,3950605802754426],[527560,1088,24519905600979050,24519907156493900],[527560,1152,-52990419648200040,-52990415906156016],[527560,1224,-24519907156493899,-24519905600979049],[527560,2056,-3950605802754426,-3950604236655732],[527560,2112,-24519907156493900,-24519905600979050],[527560,2176,52990415906156016,52990419648200040],[527560,2248,24519905600979049,24519907156493899],[527560,525312,24519905600979049,24519907156493899],[527560,525384,52990415906156016,52990419648200040],[527560,525448,-24519907156493900,-24519905600979050],[527560,525504,-3950605802754426,-3950604236655732],[527560,526336,-24519907156493899,-24519905600979049],[527560,526408,-52990419648200040,-52990415906156016],[527560,526472,24519905600979050,24519907156493900],[527560,526528,3950604236655732,3950605802754426],[527616,1416,13247603826875223,13247605061713792],[527616,2440,-26495209971802464,-26495207805375563],[527616,3208,13247603827702546,13247605060886466],[527616,132480,13247603821511848,13247605067077166],[527616,133504,-26495209977993164,-26495207799184865],[527616,134272,13247603826875223,13247605061713792],[527616,524680,13247603827702546,13247605060886466],[527616,525448,-26495209971802464,-26495207805375563],[527616,526472,13247603826875223,13247605061713792],[527616,655744,13247603826875223,13247605061713792],[527616,656512,-26495209977993164,-26495207799184865],[527616,657536,13247603821511848,13247605067077166],[527616,1180928,-1975303134066535,-1975301885638543],[527616,1181952,24519905292829456,24519907464643493],[527616,1182720,-22544604485915178,-22544603251852693],[527616,1704192,-22544604485915178,-22544603251852693],[527616,1704960,24519905292829456,24519907464643493],[527616,1705984,-1975303134066535,-1975301885638543],[527752,264,13247603826875223,13247605061713792],[527752,384,-26495209971802464,-26495207805375563],[527752,1032,-26495209977993164,-26495207799184865],[527752,1152,52990415906156016,52990419648200040],[527752,1416,13247603826875223,13247605061713792],[527752,2056,13247603821511848,13247605067077166],[527752,2176,-26495209977993164,-26495207799184865],[527752,2440,-26495209971802464,-26495207805375563],[527752,3208,13247603827702546,13247605060886466],[527752,524544,13247603827702546,13247605060886466],[527752,525312,-26495209971802464,-26495207805375563],[527752,525576,-26495209977993164,-26495207799184865],[527752,525696,13247603821511848,13247605067077166],[527752,526336,13247603826875223,13247605061713792],[527752,526600,52990415906156016,52990419648200040],[527752,526720,-26495209977993164,-26495207799184865],[527752,527368,-26495209971802464,-26495207805375563],[527752,527488,13247603826875223,13247605061713792],[527872,1672,13247603827702546,13247605060886466],[527872,3208,-13247605060886466,-13247603827702546],[527872,132736,13247603826875223,13247605061713792],[527872,134272,-13247605061713792,-13247603826875223],[527872,524936,-13247605060886466,-13247603827702546],[527872,526472,13247603827702546,13247605060886466],[527872,656000,-13247605061713792,-13247603826875223],[527872,657536,13247603826875223,13247605061713792],[527872,1181184,-22544604485915178,-22544603251852693],[527872,1182720,22544603251852693,22544604485915178],[527872,1704448,22544603251852693,22544604485915178],[527872,1705984,-22544604485915178,-22544603251852693],[528008,520,-13247605061713792,-13247603826875223],[528008,640,26495207805375563,26495209971802464],[528008,1672,13247603827702546,13247605060886466],[528008,2056,13247603826875223,13247605061713792],[528008,2176,-26495209971802464,-26495207805375563],[528008,3208,-13247605060886466,-13247603827702546],[528008,524800,-13247605060886466,-13247603827702546],[528008,525832,-26495209971802464,-26495207805375563],[528008,525952,13247603826875223,13247605061713792],[528008,526336,13247603827702546,13247605060886466],[528008,527368,26495207805375563,26495209971802464],[528008,527488,-13247605061713792,-13247603826875223],[557056,10,11272301474344213,11272302394539721],[557056,12,22544597683462214,22544610054305668],[557056,132,3950600725236988,3950609314173172],[557056,136,-18594004998888252,-18593992699469458],[557056,141,-13247605076872486,-13247603811716528],[557056,142,22544603239782766,22544604497985104],[557056,204,1975301877105131,1975303142599947],[557056,1164,22544603293425280,22544604444342592],[557056,131073,-1975304216083780,-1975300803621296],[557056,131074,6623799192952293,6623805251342207],[557056,131076,296947377306566843,296947428089998092],[557056,131080,-258754116160104515,-258754062378889847],[557056,131085,-13247605066127948,-13247603822461068],[557056,131086,1975301885115096,1975303134589986],[557056,131136,-4648501505889997,-4648497918699427],[557056,131200,-67361745915243333,-67361693124389608],[557056,131210,1975301852392980,1975303167312100],[557056,131212,67633806609648820,67633816603654788],[557056,131272,-13247605101666952,-13247603786922062],[557056,132096,8599101715170092,8599107748829489],[557056,132232,1975301908323058,1975303111382023],[557056,557066,11272301474344213,11272302394539721],[557056,557068,22544597683462214,22544610054305668],[557056,557188,3950600725236988,3950609314173172],[557056,557192,-18594004998888252,-18593992699469458],[557056,557197,-13247605076872486,-13247603811716528],[557056,557198,22544603239782766,22544604497985104],[557056,557260,1975301877105131,1975303142599947],[557056,558220,22544603293425280,22544604444342592],[557056,688129,-1975304216083780,-1975300803621296],[557056,688130,6623799192952293,6623805251342207],[557056,688132,296947377306566843,296947428089998092],[557056,688136,-258754116160104515,-258754062378889847],[557056,688141,-13247605066127948,-13247603822461068],[557056,688142,1975301885115096,1975303134589986],[557056,688192,-4648501505889997,-4648497918699427],[557056,688256,-67361745915243333,-67361693124389608],[557056,688266,1975301852392980,1975303167312100],[557056,688268,67633806609648820,67633816603654788],[557056,688328,-13247605101666952,-13247603786922062],[557056,689152,8599101715170092,8599107748829489],[557056,689288,1975301908323058,1975303111382023],[557056,1048580,1975300513283600,1975304506421476],[557056,1048584,15920799005382849,15920804288090516],[557056,1048704,6623799524173159,6623804920121353],[557056,1048716,1975301908323058,1975303111382023],[557056,1179660,3950603827053960,3950606212356198],[557056,1179780,24519905343287280,24519907414185673],[557056,1179784,-24519908088594729,-24519904668878218],[557056,1605636,1975300513283600,1975304506421476],[557056,1605640,15920799005382849,15920804288090516],[557056,1605760,6623799524173159,6623804920121353],[557056,1605772,1975301908323058,1975303111382023],[557056,1736716,3950603827053960,3950606212356198],[557056,1736836,24519905343287280,24519907414185673],[557056,1736840,-24519908088594729,-24519904668878218],[557056,67108868,-1975305281023604,-1975299738681472],[557056,67108872,9296996307740651,9297002541438203],[557056,67108992,-7321699679927840,-7321694149545938],[557056,67239948,5925906124214463,5925908934900775],[557056,67240068,22544603239782766,22544604497985104],[557056,67240072,5925906044742719,5925909014372521],[557056,67665924,-1975305281023604,-1975299738681472],[557056,67665928,9296996307740651,9297002541438203],[557056,67666048,-7321699679927840,-7321694149545938],[557056,67797004,5925906124214463,5925908934900775],[557056,67797124,22544603239782766,22544604497985104],[557056,67797128,5925906044742719,5925909014372521],[557056,68288516,1975301917270118,1975303102434961],[557056,68288520,9296998645184146,9297000203994710],[557056,68288640,-11272302995044411,-11272300873839524],[557056,68845572,1975301917270118,1975303102434961],[557056,68845576,9296998645184146,9297000203994710],[557056,68845696,-11272302995044411,-11272300873839524],[557056,268435460,1975300413869816,1975304605835260],[557056,268435464,-7321699692989682,-7321694136484094],[557056,268435584,9296996568177046,9297002281001814],[557056,268435596,1975301885115096,1975303134589986],[557056,268566540,45089206505908288,45089208969627452],[557056,268566660,3950603919085972,3950606120324188],[557056,268566664,-39742815133869046,-39742811531898000],[557056,268992516,1975300413869816,1975304605835260],[557056,268992520,-7321699692989682,-7321694136484094],[557056,268992640,9296996568177046,9297002281001814],[557056,268992652,1975301885115096,1975303134589986],[557056,269123596,45089206505908288,45089208969627452],[557056,269123716,3950603919085972,3950606120324188],[557056,269123720,-39742815133869046,-39742811531898000],[557056,269615108,24519905365967204,24519907391505747],[557056,269615112,-11272302995044411,-11272300873839524],[557056,269615232,-13247606222252656,-13247602666336360],[557056,270172164,24519905365967204,24519907391505747],[557056,270172168,-11272302995044411,-11272300873839524],[557056,270172288,-13247606222252656,-13247602666336360],[557056,335675396,45089206508319720,45089208967216020],[557056,335675400,5925906055094245,5925909004020996],[557056,335675520,-39742815119133304,-39742811546633741],[557056,336232452,45089206508319720,45089208967216020],[557056,336232456,5925906055094245,5925909004020996],[557056,336232576,-39742815119133304,-39742811546633741],[557056,1073741828,-26495211786596702,-26495205990581324],[557056,1073741832,-1975305295452736,-1975299724252344],[557056,1073741952,1975300413869816,1975304605835260],[557056,1073741964,-13247605066127948,-13247603822461068],[557056,1073872908,-39742815043973846,-39742811621793198],[557056,1073873028,-26495209992202640,-26495207784975390],[557056,1073873032,45089206503935504,45089208971600236],[557056,1074298884,-26495211786596702,-26495205990581324],[557056,1074298888,-1975305295452736,-1975299724252344],[557056,1074299008,1975300413869816,1975304605835260],[557056,1074299020,-13247605066127948,-13247603822461068],[557056,1074429964,-39742815043973846,-39742811621793198],[557056,1074430084,-26495209992202640,-26495207784975390],[557056,1074430088,45089206503935504,45089208971600236],[557056,1074921476,-26495209915574692,-26495207861603338],[557056,1074921480,1975301917270118,1975303102434961],[557056,1074921600,24519905365967204,24519907391505747],[557056,1075478532,-26495209915574692,-26495207861603338],[557056,1075478536,1975301917270118,1975303102434961],[557056,1075478656,24519905365967204,24519907391505747],[557056,1140981764,-39742815032279900,-39742811633487139],[557056,1140981768,5925906132510585,5925908926604650],[557056,1140981888,45089206509306108,45089208966229632],[557056,1141538820,-39742815032279900,-39742811633487139],[557056,1141538824,5925906132510585,5925908926604650],[557056,1141538944,45089206509306108,45089208966229632],[557056,1342308356,-26495209977773508,-26495207799404518],[557056,1342308360,22544603248067364,22544604489700504],[557056,1342308480,3950603932147814,3950606107262344],[557056,1342865412,-26495209977773508,-26495207799404518],[557056,1342865416,22544603248067364,22544604489700504],[557056,1342865536,3950603932147814,3950606107262344],[557056,1409286148,-13247605061599516,-13247603826989498],[557056,1409286272,1975301889643525,1975303130061553],[557056,1409843204,-13247605061599516,-13247603826989498],[557056,1409843328,1975301889643525,1975303130061553],[557061,141,-13247605076872486,-13247603811716528],[557061,32769,13247602765652131,13247606122936882],[557061,32772,-13247606122936882,-13247602765652131],[557061,32905,26495207784975390,26495209992202640],[557061,32908,-13247605066127948,-13247603822461068],[557061,131074,1975301917270118,1975303102434961],[557061,131079,1975301917270118,1975303102434961],[557061,131080,-1975303102434961,-1975301917270118],[557061,131085,-15222908168562909,-15222905739731186],[557061,163849,39742811621793198,39742815043973846],[557061,163852,-26495210128643692,-26495207648534336],[557061,163969,13247603822461068,13247605066127948],[557061,163972,-13247605066127948,-13247603822461068],[557061,524289,-13247606122936882,-13247602765652131],[557061,524292,13247602765652131,13247606122936882],[557061,524425,-13247605066127948,-13247603822461068],[557061,524428,26495207784975390,26495209992202640],[557061,557192,-13247605076872486,-13247603811716528],[557061,655369,-26495210128643692,-26495207648534336],[557061,655372,39742811621793198,39742815043973846],[557061,655489,-13247605066127948,-13247603822461068],[557061,655492,13247603822461068,13247605066127948],[557061,688130,1975301917270118,1975303102434961],[557061,688135,1975301917270118,1975303102434961],[557061,688136,-15222908168562909,-15222905739731186],[557061,688141,-1975303102434961,-1975301917270118],[557061,1212417,13247603855419588,13247605033169427],[557061,1212420,-13247605033169427,-13247603855419588],[557061,1703937,-13247605033169427,-13247603855419588],[557061,1703940,13247603855419588,13247605033169427],[557061,67272705,13247603827010127,13247605061578886],[557061,67272708,-13247605061578886,-13247603827010127],[557061,67764225,-13247605061578886,-13247603827010127],[557061,67764228,13247603827010127,13247605061578886],[557061,268599297,13247603821617226,13247605066971786],[557061,268599300,-13247605066971786,-13247603821617226],[557061,269090817,-13247605066971786,-13247603821617226],[557061,269090820,13247603821617226,13247605066971786],[557061,1073905665,-26495209977752878,-26495207799425147],[557061,1073905668,26495207799425147,26495209977752878],[557061,1074397185,26495207799425147,26495209977752878],[557061,1074397188,-26495209977752878,-26495207799425147],[557062,142,26495207784975390,26495209992202640],[557062,32906,-26495209992202640,-26495207784975390],[557062,131073,-1975303102434961,-1975301917270118],[557062,131079,-1975303102434961,-1975301917270118],[557062,131080,-53688314809080322,-53688310130455008],[557062,131086,-697899214028262,-697890171151008],[557062,163850,-52990419959304000,-52990415595052060],[557062,524428,-26495209992202640,-26495207784975390],[557062,557192,26495207784975390,26495209992202640],[557062,655372,-52990419959304000,-52990415595052060],[557062,688129,-1975303102434961,-1975301917270118],[557062,688135,-1975303102434961,-1975301917270118],[557062,688136,-697899214028262,-697890171151008],[557062,688142,-53688314809080322,-53688310130455008],[557065,132,-26495209992202640,-26495207784975390],[557065,32901,-26495209992202640,-26495207784975390],[557065,131074,6623801159997192,6623803284297315],[557065,131076,-3950609227302328,-3950600812107830],[557065,131083,6623801159997192,6623803284297315],[557065,131085,49039810732001672,49039814782944230],[557065,163845,-52990419959304000,-52990415595052060],[557065,524428,-26495209992202640,-26495207784975390],[557065,557197,-26495209992202640,-26495207784975390],[557065,655372,-52990419959304000,-52990415595052060],[557065,688130,6623801159997192,6623803284297315],[557065,688132,49039810732001672,49039814782944230],[557065,688139,6623801159997192,6623803284297315],[557065,688141,-3950609227302328,-3950600812107830],[557066,0,22544602948688426,22544604789079442],[557066,10,11272301474344213,11272302394539721],[557066,132,22544603239782766,22544604497985104],[557066,32770,-4648502482185233,-4648496942404193],[557066,32776,15920798873942155,15920804419531205],[557066,32902,26495207784975390,26495209992202640],[557066,32908,-3950606120324188,-3950603919085972],[557066,131073,-6623803284297315,-6623801159997192],[557066,131076,8599103045112288,8599106418887301],[557066,131083,-6623803284297315,-6623801159997192],[557066,131086,6623801159997192,6623803284297315],[557066,131136,-6623803346277521,-6623801098016984],[557066,131146,-6623803346277521,-6623801098016984],[557066,131200,8599102950409964,8599106513589621],[557066,131210,6623801098016984,6623803346277521],[557066,163846,51015113096137411,51015117438513567],[557066,163852,-49039814917723134,-49039810597222762],[557066,163970,-49039814989147174,-49039810525798726],[557066,163976,51015113006242213,51015117528408767],[557066,524290,15920798873942155,15920804419531205],[557066,524296,-4648502482185233,-4648496942404193],[557066,524422,-3950606120324188,-3950603919085972],[557066,524428,26495207784975390,26495209992202640],[557066,557056,11272301474344213,11272302394539721],[557066,557066,22544602948688426,22544604789079442],[557066,557198,22544603239782766,22544604497985104],[557066,655366,-49039814917723134,-49039810597222762],[557066,655372,51015113096137411,51015117438513567],[557066,655490,51015113006242213,51015117528408767],[557066,655496,-49039814989147174,-49039810525798726],[557066,688129,-6623803284297315,-6623801159997192],[557066,688132,6623801159997192,6623803284297315],[557066,688139,-6623803284297315,-6623801159997192],[557066,688142,8599103045112288,8599106418887301],[557066,688192,-6623803346277521,-6623801098016984],[557066,688202,-6623803346277521,-6623801098016984],[557066,688256,6623801098016984,6623803346277521],[557066,688266,8599102950409964,8599106513589621],[557066,1212418,-6623803284297315,-6623801159997192],[557066,1212424,6623801159997192,6623803284297315],[557066,1703938,6623801159997192,6623803284297315],[557066,1703944,-6623803284297315,-6623801159997192],[557066,67272706,-964466106,964466108],[557066,67272712,-964466108,964466106],[557066,67764226,-964466108,964466106],[557066,67764232,-964466106,964466108],[557066,268599298,-24519907498972975,-24519905258499972],[557066,268599304,24519905258499972,24519907498972975],[557066,269090818,24519905258499972,24519907498972975],[557066,269090824,-24519907498972975,-24519905258499972],[557066,1073905666,24519905293069738,24519907464403207],[557066,1073905672,-24519907464403207,-24519905293069738],[557066,1074397186,-24519907464403207,-24519905293069738],[557066,1074397192,24519905293069738,24519907464403207],[557068,0,33237389689794910,33237395667510356],[557068,12,22544597683462214,22544610054305668],[557068,129,13247603822461068,13247605066127948],[557068,142,-3950606120324188,-3950603919085972],[557068,204,1975301877105131,1975303142599947],[557068,1164,22544603293425280,22544604444342592],[557068,32772,-12549714288599261,-12549705214810465],[557068,32776,23242489006570695,23242508116376415],[557068,32901,13247603822461068,13247605066127948],[557068,32906,3950603919085972,3950606120324188],[557068,32968,-1975303142599947,-1975301877105131],[557068,33928,-22544604444342592,-22544603293425280],[557068,131073,-7321700200255013,-7321693629218766],[557068,131074,47064508673192612,47064511822048211],[557068,131085,-47064511822048211,-47064508673192612],[557068,131086,-3950608765320955,-3950601274089200],[557068,131200,20569298570795129,20569304147267651],[557068,131212,43113898635137411,43113911820693235],[557068,163845,39742811621793198,39742815043973846],[557068,163850,51015113096137411,51015117438513567],[557068,163972,-75535024800832972,-75535018491290962],[557068,163976,52990410196249260,52990425358106808],[557068,524292,23242489006570695,23242508116376415],[557068,524296,-12549714288599261,-12549705214810465],[557068,524422,3950603919085972,3950606120324188],[557068,524425,13247603822461068,13247605066127948],[557068,524484,-1975303142599947,-1975301877105131],[557068,525444,-22544604444342592,-22544603293425280],[557068,557056,22544597683462214,22544610054305668],[557068,557068,33237389689794910,33237395667510356],[557068,557186,-3950606120324188,-3950603919085972],[557068,557197,13247603822461068,13247605066127948],[557068,557248,1975301877105131,1975303142599947],[557068,558208,22544603293425280,22544604444342592],[557068,655366,51015113096137411,51015117438513567],[557068,655369,39742811621793198,39742815043973846],[557068,655492,52990410196249260,52990425358106808],[557068,655496,-75535024800832972,-75535018491290962],[557068,688129,-47064511822048211,-47064508673192612],[557068,688130,-3950608765320955,-3950601274089200],[557068,688141,-7321700200255013,-7321693629218766],[557068,688142,47064508673192612,47064511822048211],[557068,688256,43113898635137411,43113911820693235],[557068,688268,20569298570795129,20569304147267651],[557068,1048716,1975301908323058,1975303111382023],[557068,1081480,-1975303111382023,-1975301908323058],[557068,1179660,28470509817570824,28470512979312287],[557068,1212420,-19871408102400732,-19871405230482798],[557068,1212424,-8599107748829489,-8599101715170092],[557068,1572996,-1975303111382023,-1975301908323058],[557068,1605760,1975301908323058,1975303111382023],[557068,1703940,-8599107748829489,-8599101715170092],[557068,1703944,-19871408102400732,-19871405230482798],[557068,1736704,28470509817570824,28470512979312287],[557068,67239948,1975300950242052,1975304069463026],[557068,67272708,-13247605939232943,-13247602949356073],[557068,67272712,11272298879893047,11272304988990891],[557068,67764228,11272298879893047,11272304988990891],[557068,67764232,-13247605939232943,-13247602949356073],[557068,67796992,1975300950242052,1975304069463026],[557068,268435596,1975301885115096,1975303134589986],[557068,268468360,-1975303134589986,-1975301885115096],[557068,268566540,49039811037266288,49039814477679612],[557068,268599300,-37767512457661269,-37767509188400696],[557068,268599304,-11272305289278916,-11272298579605019],[557068,268959876,-1975303134589986,-1975301885115096],[557068,268992640,1975301885115096,1975303134589986],[557068,269090820,-11272305289278916,-11272298579605019],[557068,269090824,-37767512457661269,-37767509188400696],[557068,269123584,49039811037266288,49039814477679612],[557068,1073741952,-13247605066127948,-13247603822461068],[557068,1073774724,-13247605066127948,-13247603822461068],[557068,1073872896,-39742815043973846,-39742811621793198],[557068,1073905668,11272298183630328,11272305685253609],[557068,1073905672,-51015117307046807,-51015113227604174],[557068,1074266248,-13247605066127948,-13247603822461068],[557068,1074299020,-13247605066127948,-13247603822461068],[557068,1074397188,-51015117307046807,-51015113227604174],[557068,1074397192,11272298183630328,11272305685253609],[557068,1074429964,-39742815043973846,-39742811621793198],[557128,132,3950603919085972,3950606120324188],[557128,32908,3950603919085972,3950606120324188],[557128,131074,6623801098016984,6623803346277521],[557128,131146,6623801098016984,6623803346277521],[557128,131200,-6623806745939431,-6623797698355075],[557128,131272,31143706348939894,31143710852827564],[557128,163976,-37767513094879325,-37767508551182639],[557128,524484,3950603919085972,3950606120324188],[557128,557260,3950603919085972,3950606120324188],[557128,655552,-37767513094879325,-37767508551182639],[557128,688130,6623801098016984,6623803346277521],[557128,688202,6623801098016984,6623803346277521],[557128,688256,31143706348939894,31143710852827564],[557128,688328,-6623806745939431,-6623797698355075],[557186,142,-3950606120324188,-3950603919085972],[557186,32908,3950603919085972,3950606120324188],[557186,131080,-33119013675829617,-33119008545642919],[557186,131136,-4648500367937248,-4648499056652179],[557186,131210,4648494875353022,4648504549236406],[557186,131266,-4648500367937248,-4648499056652179],[557186,163976,-37767513094879325,-37767508551182639],[557186,524302,3950603919085972,3950606120324188],[557186,557068,-3950606120324188,-3950603919085972],[557186,655370,-37767513094879325,-37767508551182639],[557186,688136,4648494875353022,4648504549236406],[557186,688192,-4648500367937248,-4648499056652179],[557186,688266,-33119013675829617,-33119008545642919],[557186,688322,-4648500367937248,-4648499056652179],[557188,132,3950600725236988,3950609314173172],[557188,32896,-3950609314173172,-3950600725236988],[557188,131080,-58336815178304206,-58336809185820542],[557188,131212,17198202099309824,17198216828689364],[557188,163976,-75535026014509906,-75535017277614030],[557188,524292,-3950609314173172,-3950600725236988],[557188,557056,3950600725236988,3950609314173172],[557188,655372,-75535026014509906,-75535017277614030],[557188,688136,17198202099309824,17198216828689364],[557188,688268,-58336815178304206,-58336809185820542],[557192,0,-18594001977035748,-18593995721321958],[557192,68,-1975303134589986,-1975301885115096],[557192,136,-18594004998888252,-18593992699469458],[557192,141,-13247605076872486,-13247603811716528],[557192,142,26495207784975390,26495209992202640],[557192,1028,-1975303111382023,-1975301908323058],[557192,32776,-4795158453,4795158459],[557192,32844,-1975303134589986,-1975301885115096],[557192,32896,-9709549903,9709549901],[557192,32901,13247603811716528,13247605076872486],[557192,32902,-26495209992202640,-26495207784975390],[557192,33804,-1975303111382023,-1975301908323058],[557192,131074,26495207121529005,26495210655649026],[557192,131076,15222903999406109,15222909908887987],[557192,131136,-1975306059254087,-1975298960450994],[557192,131210,-9297003434088727,-9296995415090126],[557192,131212,7321690308104443,7321703521369331],[557192,131272,-26495210655649026,-26495207121529005],[557192,132096,13247601033521515,13247607855067498],[557192,132232,-11272303635356703,-11272300233527231],[557192,163852,-45089210877255180,-45089204598280566],[557192,163912,24519904596394939,24519908161078011],[557192,163970,35792206070739152,35792210555617732],[557192,163972,52990410196249260,52990425358106808],[557192,164872,24519904668878218,24519908088594729],[557192,524296,-9709549903,9709549901],[557192,524301,13247603811716528,13247605076872486],[557192,524302,-26495209992202640,-26495207784975390],[557192,524416,-4795158453,4795158459],[557192,524484,-1975303134589986,-1975301885115096],[557192,525444,-1975303111382023,-1975301908323058],[557192,557056,-18594004998888252,-18593992699469458],[557192,557061,-13247605076872486,-13247603811716528],[557192,557062,26495207784975390,26495209992202640],[557192,557192,-18594001977035748,-18593995721321958],[557192,557260,-1975303134589986,-1975301885115096],[557192,558220,-1975303111382023,-1975301908323058],[557192,655370,35792206070739152,35792210555617732],[557192,655372,52990410196249260,52990425358106808],[557192,655492,-45089210877255180,-45089204598280566],[557192,655552,24519904596394939,24519908161078011],[557192,656512,24519904668878218,24519908088594729],[557192,688130,-9297003434088727,-9296995415090126],[557192,688132,7321690308104443,7321703521369331],[557192,688192,-26495210655649026,-26495207121529005],[557192,688266,26495207121529005,26495210655649026],[557192,688268,15222903999406109,15222909908887987],[557192,688328,-1975306059254087,-1975298960450994],[557192,689152,-11272303635356703,-11272300233527231],[557192,689288,13247601033521515,13247607855067498],[557192,1048580,1975301908323058,1975303111382023],[557192,1081356,1975301908323058,1975303111382023],[557192,1179648,-24519908088594729,-24519904668878218],[557192,1212424,-24519910213370186,-24519902544102763],[557192,1212544,-2124775455,2124775457],[557192,1572996,1975301908323058,1975303111382023],[557192,1605772,1975301908323058,1975303111382023],[557192,1703944,-2124775455,2124775457],[557192,1704064,-24519910213370186,-24519902544102763],[557192,1736840,-24519908088594729,-24519904668878218],[557192,67240072,17198207831856214,17198211096142960],[557192,67272712,-13247606060429303,-13247602828159713],[557192,67272832,-3950608267983247,-3950601771426911],[557192,67764232,-3950608267983247,-3950601771426911],[557192,67764352,-13247606060429303,-13247602828159713],[557192,67796992,17198207831856214,17198211096142960],[557192,268435460,1975301885115096,1975303134589986],[557192,268468236,1975301885115096,1975303134589986],[557192,268566528,-24519908161078011,-24519904596394939],[557192,268599304,11272297923178146,11272305945705791],[557192,268599424,-35792210542100730,-35792206084256157],[557192,268959876,1975301885115096,1975303134589986],[557192,268992652,1975301885115096,1975303134589986],[557192,269090824,-35792210542100730,-35792206084256157],[557192,269090944,11272297923178146,11272305945705791],[557192,269123720,-24519908161078011,-24519904596394939],[557192,1073741964,-13247605066127948,-13247603822461068],[557192,1073774724,13247603822461068,13247605066127948],[557192,1073873032,18593997124524774,18594000573832936],[557192,1073905672,-22544605576438951,-22544602161328920],[557192,1073905792,3950601587495984,3950608451914177],[557192,1074266124,13247603822461068,13247605066127948],[557192,1074298884,-13247605066127948,-13247603822461068],[557192,1074397192,3950601587495984,3950608451914177],[557192,1074397312,-22544605576438951,-22544602161328920],[557192,1074429952,18593997124524774,18594000573832936],[557197,129,13247603822461068,13247605066127948],[557197,132,-26495209992202640,-26495207784975390],[557197,141,-13247605076872486,-13247603811716528],[557197,32896,13247603811716528,13247605076872486],[557197,32905,26495207784975390,26495209992202640],[557197,32908,-13247605066127948,-13247603822461068],[557197,524289,-13247605066127948,-13247603822461068],[557197,524292,26495207784975390,26495209992202640],[557197,524301,13247603811716528,13247605076872486],[557197,557056,-13247605076872486,-13247603811716528],[557197,557065,-26495209992202640,-26495207784975390],[557197,557068,13247603822461068,13247605066127948],[557198,132,22544603239782766,22544604497985104],[557198,142,22544603239782766,22544604497985104],[557198,32896,-22544604497985104,-22544603239782766],[557198,32906,-22544604497985104,-22544603239782766],[557198,524292,-22544604497985104,-22544603239782766],[557198,524302,-22544604497985104,-22544603239782766],[557198,557056,22544603239782766,22544604497985104],[557198,557066,22544603239782766,22544604497985104],[557248,204,1975301877105131,1975303142599947],[557248,32832,4648498045480102,4648501379109327],[557248,32844,1975301885115096,1975303134589986],[557248,32896,-4648501379109327,-4648498045480102],[557248,32908,-3950606120324188,-3950603919085972],[557248,131074,4648499056652179,4648500367937248],[557248,131080,-4648500367937248,-4648499056652179],[557248,131266,4648499056652179,4648500367937248],[557248,131272,-17896105469604200,-17896102843574241],[557248,131328,4648499087000812,4648500337588616],[557248,131520,4648499087000812,4648500337588616],[557248,132096,-4648500337588616,-4648499087000812],[557248,132288,-4648500337588616,-4648499087000812],[557248,163908,1975301885115096,1975303134589986],[557248,163912,-26495210200067732,-26495207577110300],[557248,163972,-1975303134589986,-1975301885115096],[557248,163976,39742811531898000,39742815133869046],[557248,524352,-4648501379109327,-4648498045480102],[557248,524364,-3950606120324188,-3950603919085972],[557248,524416,4648498045480102,4648501379109327],[557248,524428,1975301885115096,1975303134589986],[557248,557068,1975301877105131,1975303142599947],[557248,655428,-1975303134589986,-1975301885115096],[557248,655432,39742811531898000,39742815133869046],[557248,655492,1975301885115096,1975303134589986],[557248,655496,-26495210200067732,-26495207577110300],[557248,688130,4648499056652179,4648500367937248],[557248,688136,-17896105469604200,-17896102843574241],[557248,688322,4648499056652179,4648500367937248],[557248,688328,-4648500367937248,-4648499056652179],[557248,688384,4648499087000812,4648500337588616],[557248,688576,4648499087000812,4648500337588616],[557248,689152,-4648500337588616,-4648499087000812],[557248,689344,-4648500337588616,-4648499087000812],[557248,1212480,-6623803271301876,-6623801172992632],[557248,1212544,6623801172992632,6623803271301876],[557248,1704000,6623801172992632,6623803271301876],[557248,1704064,-6623803271301876,-6623801172992632],[557248,67272768,-13247605096148654,-13247603792440361],[557248,67272832,13247603792440361,13247605096148654],[557248,67764288,13247603792440361,13247605096148654],[557248,67764352,-13247605096148654,-13247603792440361],[557248,268599360,11272300812248450,11272303056635485],[557248,268599424,-11272303056635485,-11272300812248450],[557248,269090880,-11272303056635485,-11272300812248450],[557248,269090944,11272300812248450,11272303056635485],[557248,1073905728,1975301885638544,1975303134066536],[557248,1073905792,-1975303134066536,-1975301885638544],[557248,1074397248,-1975303134066536,-1975301885638544],[557248,1074397312,1975301885638544,1975303134066536],[557260,68,-1975303134589986,-1975301885115096],[557260,132,3950603919085972,3950606120324188],[557260,204,1975301877105131,1975303142599947],[557260,32832,1975301885115096,1975303134589986],[557260,32896,-3950606120324188,-3950603919085972],[557260,32968,-1975303142599947,-1975301877105131],[557260,524292,-1975303142599947,-1975301877105131],[557260,524364,-3950606120324188,-3950603919085972],[557260,524428,1975301885115096,1975303134589986],[557260,557056,1975301877105131,1975303142599947],[557260,557128,3950603919085972,3950606120324188],[557260,557192,-1975303134589986,-1975301885115096],[557440,131136,-4648500337588616,-4648499087000812],[557440,131520,-4648500337588616,-4648499087000812],[557440,132096,-1975303102434961,-1975301917270118],[557440,132480,-1975303102434961,-1975301917270118],[557440,688192,-4648500337588616,-4648499087000812],[557440,688576,-4648500337588616,-4648499087000812],[557440,689152,-1975303102434961,-1975301917270118],[557440,689536,-1975303102434961,-1975301917270118],[558088,132,24519905343287280,24519907414185673],[558088,32908,24519905343287280,24519907414185673],[558088,131200,-9297003724271436,-9296995124907418],[558088,132232,13247602302125610,13247606586463402],[558088,163976,-22544606026397046,-22544601711370820],[558088,525444,24519905343287280,24519907414185673],[558088,558220,24519905343287280,24519907414185673],[558088,656512,-22544606026397046,-22544601711370820],[558088,688256,13247602302125610,13247606586463402],[558088,689288,-9297003724271436,-9296995124907418],[558088,1179648,24519905343287280,24519907414185673],[558088,1212424,24519905343287280,24519907414185673],[558088,1704960,24519905343287280,24519907414185673],[558088,1737736,24519905343287280,24519907414185673],[558144,131200,6623801159997192,6623803284297315],[558144,132288,6623801159997192,6623803284297315],[558144,688256,6623801159997192,6623803284297315],[558144,689344,6623801159997192,6623803284297315],[558208,1164,22544603293425280,22544604444342592],[558208,32896,-4648501315670959,-4648498108918473],[558208,32908,-24519907414185673,-24519905343287280],[558208,33792,4648498108918473,4648501315670959],[558208,33804,1975301908323058,1975303111382023],[558208,131080,-1975303106832961,-1975301912872117],[558208,131136,-1975303102434961,-1975301917270118],[558208,131328,1975301917270118,1975303102434961],[558208,132232,-1198509903,1198509906],[558208,132288,-1975303102434961,-1975301917270118],[558208,132480,1975301917270118,1975303102434961],[558208,133120,1975301912872117,1975303106832961],[558208,134272,1975301912872117,1975303106832961],[558208,163972,-1975303111382023,-1975301908323058],[558208,163976,24519904668878218,24519908088594729],[558208,164868,1975301908323058,1975303111382023],[558208,164872,-26495210150792412,-26495207626385616],[558208,524416,4648498108918473,4648501315670959],[558208,524428,1975301908323058,1975303111382023],[558208,525312,-4648501315670959,-4648498108918473],[558208,525324,-24519907414185673,-24519905343287280],[558208,557068,22544603293425280,22544604444342592],[558208,655492,1975301908323058,1975303111382023],[558208,655496,-26495210150792412,-26495207626385616],[558208,656388,-1975303111382023,-1975301908323058],[558208,656392,24519904668878218,24519908088594729],[558208,688136,-1198509903,1198509906],[558208,688192,-1975303102434961,-1975301917270118],[558208,688384,1975301917270118,1975303102434961],[558208,689288,-1975303106832961,-1975301912872117],[558208,689344,-1975303102434961,-1975301917270118],[558208,689536,1975301917270118,1975303102434961],[558208,690176,1975301912872117,1975303106832961],[558208,691328,1975301912872117,1975303106832961],[558208,1179648,3950603827053960,3950606212356198],[558208,1180800,28470509817570824,28470512979312287],[558208,1212544,-17896106200962633,-17896102112215810],[558208,1213440,-6623803231071470,-6623801213223040],[558208,1704064,-6623803231071470,-6623801213223040],[558208,1704960,-17896106200962633,-17896102112215810],[558208,1736704,28470509817570824,28470512979312287],[558208,1737856,3950603827053960,3950606212356198],[558208,67272832,13247603822433492,13247605066155522],[558208,67273728,-13247605066155522,-13247603822433492],[558208,67764352,-13247605066155522,-13247603822433492],[558208,67765248,13247603822433492,13247605066155522],[558208,268599424,-11272302995044411,-11272300873839524],[558208,268600320,11272300873839524,11272302995044411],[558208,269090944,11272300873839524,11272302995044411],[558208,269091840,-11272302995044411,-11272300873839524],[558208,1073905792,-1975303102468593,-1975301917236486],[558208,1073906688,1975301917236486,1975303102468593],[558208,1074397312,1975301917236486,1975303102468593],[558208,1074398208,-1975303102468593,-1975301917236486],[558220,132,24519905343287280,24519907414185673],[558220,1028,-1975303111382023,-1975301908323058],[558220,1164,22544603293425280,22544604444342592],[558220,32896,-24519907414185673,-24519905343287280],[558220,33792,1975301908323058,1975303111382023],[558220,33928,-22544604444342592,-22544603293425280],[558220,524292,-22544604444342592,-22544603293425280],[558220,524428,1975301908323058,1975303111382023],[558220,525324,-24519907414185673,-24519905343287280],[558220,557056,22544603293425280,22544604444342592],[558220,557192,-1975303111382023,-1975301908323058],[558220,558088,24519905343287280,24519907414185673],[559232,132096,-1975303106832961,-1975301912872117],[559232,134272,-1975303106832961,-1975301912872117],[559232,689152,-1975303106832961,-1975301912872117],[559232,691328,-1975303106832961,-1975301912872117],[655360,6,11272301474344213,11272302394539721],[655360,10,19173508473961242,19173515473743010],[655360,12,49039808003270598,49039817511675298],[655360,72,20569295950214876,20569306767847923],[655360,130,20569295950214876,20569306767847923],[655360,132,-18594004998888252,-18593992699469458],[655360,136,-481408591344725096,-481408507031230928],[655360,142,-9297000206694220,-9296998642484636],[655360,192,19173508473961242,19173515473743010],[655360,202,26495207490199320,26495210286978712],[655360,204,-1975303142599947,-1975301877105131],[655360,1032,-18594004998888252,-18593992699469458],[655360,1088,11272301474344213,11272302394539721],[655360,1152,49039808003270598,49039817511675298],[655360,1162,-1975303142599947,-1975301877105131],[655360,1164,-22544604444342592,-22544603293425280],[655360,1224,-9297000206694220,-9296998642484636],[655360,32770,-15920803437427959,-15920799856045399],[655360,32772,-34514803440217642,-34514797551613446],[655360,32776,-48767744686891983,-48767696654383246],[655360,32832,4648497918699427,4648501505889997],[655360,32896,60039999943769960,60040045266389211],[655360,32906,-1975303167312100,-1975301852392980],[655360,32908,26495207692945056,26495210084232978],[655360,32968,13247603786922062,13247605101666952],[655360,33792,-8599107748829489,-8599101715170092],[655360,33928,-1975303111382023,-1975301908323058],[655360,655366,11272301474344213,11272302394539721],[655360,655370,19173508473961242,19173515473743010],[655360,655372,49039808003270598,49039817511675298],[655360,655432,20569295950214876,20569306767847923],[655360,655490,20569295950214876,20569306767847923],[655360,655492,-18594004998888252,-18593992699469458],[655360,655496,-481408591344725096,-481408507031230928],[655360,655502,-9297000206694220,-9296998642484636],[655360,655552,19173508473961242,19173515473743010],[655360,655562,26495207490199320,26495210286978712],[655360,655564,-1975303142599947,-1975301877105131],[655360,656392,-18594004998888252,-18593992699469458],[655360,656448,11272301474344213,11272302394539721],[655360,656512,49039808003270598,49039817511675298],[655360,656522,-1975303142599947,-1975301877105131],[655360,656524,-22544604444342592,-22544603293425280],[655360,656584,-9297000206694220,-9296998642484636],[655360,688130,-15920803437427959,-15920799856045399],[655360,688132,-34514803440217642,-34514797551613446],[655360,688136,-48767744686891983,-48767696654383246],[655360,688192,4648497918699427,4648501505889997],[655360,688256,60039999943769960,60040045266389211],[655360,688266,-1975303167312100,-1975301852392980],[655360,688268,26495207692945056,26495210084232978],[655360,688328,13247603786922062,13247605101666952],[655360,689152,-8599107748829489,-8599101715170092],[655360,689288,-1975303111382023,-1975301908323058],[655360,1048578,4648497918699427,4648501505889997],[655360,1048580,-8599107748829489,-8599101715170092],[655360,1048584,60039999943769960,60040045266389211],[655360,1048640,-15920803437427959,-15920799856045399],[655360,1048704,-48767744686891983,-48767696654383246],[655360,1048714,13247603786922062,13247605101666952],[655360,1048716,-1975303111382023,-1975301908323058],[655360,1048776,-1975303167312100,-1975301852392980],[655360,1049600,-34514803440217642,-34514797551613446],[655360,1049736,26495207692945056,26495210084232978],[655360,1081480,-2449893888,2449893882],[655360,1703938,4648497918699427,4648501505889997],[655360,1703940,-8599107748829489,-8599101715170092],[655360,1703944,60039999943769960,60040045266389211],[655360,1704000,-15920803437427959,-15920799856045399],[655360,1704064,-48767744686891983,-48767696654383246],[655360,1704074,13247603786922062,13247605101666952],[655360,1704076,-1975303111382023,-1975301908323058],[655360,1704136,-1975303167312100,-1975301852392980],[655360,1704960,-34514803440217642,-34514797551613446],[655360,1705096,26495207692945056,26495210084232978],[655360,1736840,-2449893888,2449893882],[655360,2097160,-13247606143034927,-13247602745554085],[655360,2097280,17198207762730769,17198211165268399],[655360,2098176,-3950605491232570,-3950604548177586],[655360,2752520,-13247606143034927,-13247602745554085],[655360,2752640,17198207762730769,17198211165268399],[655360,2753536,-3950605491232570,-3950604548177586],[655360,67108866,-13247606347638304,-13247602540950713],[655360,67108868,3950601664814648,3950608374595511],[655360,67108872,235357851276653147,235357909101556156],[655360,67108928,1975300603193161,1975304416511920],[655360,67108992,-252556117717993928,-252556061588214548],[655360,67109002,-1975303196554503,-1975301823150576],[655360,67109004,13247603822461068,13247605066127948],[655360,67109064,13247603754276960,13247605134312055],[655360,67109888,-11272305289278916,-11272298579605019],[655360,67110024,-1975303134589986,-1975301885115096],[655360,67141768,-47064513301573545,-47064507193667275],[655360,67764226,-13247606347638304,-13247602540950713],[655360,67764228,3950601664814648,3950608374595511],[655360,67764232,235357851276653147,235357909101556156],[655360,67764288,1975300603193161,1975304416511920],[655360,67764352,-252556117717993928,-252556061588214548],[655360,67764362,-1975303196554503,-1975301823150576],[655360,67764364,13247603822461068,13247605066127948],[655360,67764424,13247603754276960,13247605134312055],[655360,67765248,-11272305289278916,-11272298579605019],[655360,67765384,-1975303134589986,-1975301885115096],[655360,67797128,-47064513301573545,-47064507193667275],[655360,68157576,35792205719323062,35792210907033824],[655360,68190216,13247602666336360,13247606222252656],[655360,68190336,-13247606222252656,-13247602666336360],[655360,68812936,35792205719323062,35792210907033824],[655360,68845576,13247602666336360,13247606222252656],[655360,68845696,-13247606222252656,-13247602666336360],[655360,134217736,-11272305272819252,-11272298596064681],[655360,134217856,3950601681274309,3950608358135846],[655360,134218752,-3950605484998596,-3950604554411562],[655360,134873096,-11272305272819252,-11272298596064681],[655360,134873216,3950601681274309,3950608358135846],[655360,134874112,-3950605484998596,-3950604554411562],[655360,268435458,1975300603193161,1975304416511920],[655360,268435460,-11272305289278916,-11272298579605019],[655360,268435464,-252556117717993928,-252556061588214548],[655360,268435520,-13247606347638304,-13247602540950713],[655360,268435584,235357851276653147,235357909101556156],[655360,268435594,13247603754276960,13247605134312055],[655360,268435596,-1975303134589986,-1975301885115096],[655360,268435656,-1975303196554503,-1975301823150576],[655360,268436480,3950601664814648,3950608374595511],[655360,268436616,13247603822461068,13247605066127948],[655360,268468360,35792205719323062,35792210907033824],[655360,269090818,1975300603193161,1975304416511920],[655360,269090820,-11272305289278916,-11272298579605019],[655360,269090824,-252556117717993928,-252556061588214548],[655360,269090880,-13247606347638304,-13247602540950713],[655360,269090944,235357851276653147,235357909101556156],[655360,269090954,13247603754276960,13247605134312055],[655360,269090956,-1975303134589986,-1975301885115096],[655360,269091016,-1975303196554503,-1975301823150576],[655360,269091840,3950601664814648,3950608374595511],[655360,269091976,13247603822461068,13247605066127948],[655360,269123720,35792205719323062,35792210907033824],[655360,269484168,-47064513301573545,-47064507193667275],[655360,269516808,-13247606222252656,-13247602666336360],[655360,269516928,13247602666336360,13247606222252656],[655360,270139528,-47064513301573545,-47064507193667275],[655360,270172168,-13247606222252656,-13247602666336360],[655360,270172288,13247602666336360,13247606222252656],[655360,335544456,79485623172031080,79485630159503018],[655360,335577096,-47064513273775962,-47064507221464861],[655360,335577216,35792205747120647,35792210879236240],[655360,336199816,79485623172031080,79485630159503018],[655360,336232456,-47064513273775962,-47064507221464861],[655360,336232576,35792205747120647,35792210879236240],[655360,336592904,35792205747120647,35792210879236240],[655360,336593024,-47064513273775962,-47064507221464861],[655360,337248264,35792205747120647,35792210879236240],[655360,337248384,-47064513273775962,-47064507221464861],[655360,469762056,-1975303130061553,-1975301889643525],[655360,469762176,13247603826989498,13247605061599516],[655360,470417416,-1975303130061553,-1975301889643525],[655360,470417536,13247603826989498,13247605061599516],[655360,1073741828,-3950605484998596,-3950604554411562],[655360,1073741832,3950601681274309,3950608358135846],[655360,1073741952,-11272305272819252,-11272298596064681],[655360,1074397188,-3950605484998596,-3950604554411562],[655360,1074397192,3950601681274309,3950608358135846],[655360,1074397312,-11272305272819252,-11272298596064681],[655360,1409286152,13247603826989498,13247605061599516],[655360,1409286272,-1975303130061553,-1975301889643525],[655360,1409941512,13247603826989498,13247605061599516],[655360,1409941632,-1975303130061553,-1975301889643525],[655360,17592186044424,7321694955032038,7321698874441739],[655360,17592186044544,1975300539655663,1975304480049416],[655360,17592186699784,7321694955032038,7321698874441739],[655360,17592186699904,1975300539655663,1975304480049416],[655360,17592521588744,-22544604548409457,-22544603189358414],[655360,17592521588864,13247603754276960,13247605134312055],[655360,17592522244104,-22544604548409457,-22544603189358414],[655360,17592522244224,13247603754276960,13247605134312055],[655360,35184372088840,1975300539655663,1975304480049416],[655360,35184372088960,7321694955032038,7321698874441739],[655360,35184372744200,1975300539655663,1975304480049416],[655360,35184372744320,7321694955032038,7321698874441739],[655360,35184707633160,13247603754276960,13247605134312055],[655360,35184707633280,-22544604548409457,-22544603189358414],[655360,35184708288520,13247603754276960,13247605134312055],[655360,35184708288640,-22544604548409457,-22544603189358414],[655363,131073,-4648501974835595,-4648497449753834],[655363,131074,4648497449753834,4648501974835595],[655363,131085,24519905293069738,24519907464403207],[655363,131086,-24519907464403207,-24519905293069738],[655363,131209,24519905244697076,24519907512775874],[655363,131210,-24519907512775874,-24519905244697076],[655363,524289,4648497449753834,4648501974835595],[655363,524290,-4648501974835595,-4648497449753834],[655363,524301,-24519907464403207,-24519905293069738],[655363,524302,24519905293069738,24519907464403207],[655363,524425,-24519907512775874,-24519905244697076],[655363,524426,24519905244697076,24519907512775874],[655365,131073,-3950609227302328,-3950600812107830],[655365,131076,3950600812107830,3950609227302328],[655365,131083,6623801159997192,6623803284297315],[655365,131086,-6623803284297315,-6623801159997192],[655365,131209,-26495209992202640,-26495207784975390],[655365,131212,26495207784975390,26495209992202640],[655365,524289,3950600812107830,3950609227302328],[655365,524292,-3950609227302328,-3950600812107830],[655365,524299,-6623803284297315,-6623801159997192],[655365,524302,6623801159997192,6623803284297315],[655365,524425,26495207784975390,26495209992202640],[655365,524428,-26495209992202640,-26495207784975390],[655366,0,22544602948688426,22544604789079442],[655366,6,11272301474344213,11272302394539721],[655366,136,-47064513301573545,-47064507193667275],[655366,142,-49039814989147174,-49039810525798726],[655366,32776,8599103045112288,8599106418887301],[655366,32782,6623801159997192,6623803284297315],[655366,131074,-4648502481944947,-4648496942644475],[655366,131076,15920798874182437,15920804419290919],[655366,131083,17896102008772423,17896106304406015],[655366,131085,-17896106304406015,-17896102008772423],[655366,131146,-6623803346277521,-6623801098016984],[655366,131148,6623801098016984,6623803346277521],[655366,131210,8599102661848405,8599106802151181],[655366,131212,-6623804322724415,-6623800121570091],[655366,163850,51015113096137411,51015117438513567],[655366,163852,-49039814917723134,-49039810597222762],[655366,524290,15920798874182437,15920804419290919],[655366,524292,-4648502481944947,-4648496942644475],[655366,524299,-17896106304406015,-17896102008772423],[655366,524301,17896102008772423,17896106304406015],[655366,524362,6623801098016984,6623803346277521],[655366,524364,-6623803346277521,-6623801098016984],[655366,524426,-6623804322724415,-6623800121570091],[655366,524428,8599102661848405,8599106802151181],[655366,557066,-49039814917723134,-49039810597222762],[655366,557068,51015113096137411,51015117438513567],[655366,655360,11272301474344213,11272302394539721],[655366,655366,22544602948688426,22544604789079442],[655366,655496,-49039814989147174,-49039810525798726],[655366,655502,-47064513301573545,-47064507193667275],[655366,688136,6623801159997192,6623803284297315],[655366,688142,8599103045112288,8599106418887301],[655366,1048584,-6623803284297315,-6623801159997192],[655366,1048590,-6623803284297315,-6623801159997192],[655366,1703944,-6623803284297315,-6623801159997192],[655366,1703950,-6623803284297315,-6623801159997192],[655366,67108872,24519905258499972,24519907498972975],[655366,67108878,24519905258499972,24519907498972975],[655366,67764232,24519905258499972,24519907498972975],[655366,67764238,24519905258499972,24519907498972975],[655366,268435464,-24519907498972975,-24519905258499972],[655366,268435470,-24519907498972975,-24519905258499972],[655366,269090824,-24519907498972975,-24519905258499972],[655366,269090830,-24519907498972975,-24519905258499972],[655369,130,3950603716820562,3950606322589598],[655369,132,45089206503935504,45089208971600236],[655369,139,28470509589568145,28470513207314965],[655369,141,18593997124524774,18594000573832936],[655369,32770,-4648500337588616,-4648499087000812],[655369,32772,-1975303102434961,-1975301917270118],[655369,32779,-4648500337588616,-4648499087000812],[655369,32781,-15222908168562909,-15222905739731186],[655369,131073,8599101386783086,8599108077216494],[655369,131079,-8599108077216494,-8599101386783086],[655369,131080,-8599108077216494,-8599101386783086],[655369,131086,8599101386783086,8599108077216494],[655369,131139,-4648500367937249,-4648499056652180],[655369,131146,4648499056652180,4648500367937249],[655369,131203,-17896106414758888,-17896101898419553],[655369,131205,-2193017774,2193017775],[655369,131210,-6623803346277523,-6623801098016986],[655369,131212,26495207799184865,26495209977993164],[655369,163845,39742811621793198,39742815043973846],[655369,163852,-26495210128643692,-26495207648534336],[655369,524289,-8599108077216494,-8599101386783086],[655369,524295,8599101386783086,8599108077216494],[655369,524296,8599101386783086,8599108077216494],[655369,524302,-8599108077216494,-8599101386783086],[655369,524355,4648499056652180,4648500367937249],[655369,524362,-4648500367937249,-4648499056652180],[655369,524419,-6623803346277523,-6623801098016986],[655369,524421,26495207799184865,26495209977993164],[655369,524426,-17896106414758888,-17896101898419553],[655369,524428,-2193017774,2193017775],[655369,557061,-26495210128643692,-26495207648534336],[655369,557068,39742811621793198,39742815043973846],[655369,655490,28470509589568145,28470513207314965],[655369,655492,18593997124524774,18594000573832936],[655369,655499,3950603716820562,3950606322589598],[655369,655501,45089206503935504,45089208971600236],[655369,688130,-4648500337588616,-4648499087000812],[655369,688132,-15222908168562909,-15222905739731186],[655369,688139,-4648500337588616,-4648499087000812],[655369,688141,-1975303102434961,-1975301917270118],[655369,1048578,4648499087000812,4648500337588616],[655369,1048580,1975301917270118,1975303102434961],[655369,1048587,4648499087000812,4648500337588616],[655369,1048589,1975301917270118,1975303102434961],[655369,1703938,4648499087000812,4648500337588616],[655369,1703940,1975301917270118,1975303102434961],[655369,1703947,4648499087000812,4648500337588616],[655369,1703949,1975301917270118,1975303102434961],[655369,67108866,-1975303161793801,-1975301857911278],[655369,67108868,-22544604489700504,-22544603248067364],[655369,67108875,-1975303161793801,-1975301857911278],[655369,67108877,-22544604489700504,-22544603248067364],[655369,67764226,-1975303161793801,-1975301857911278],[655369,67764228,-22544604489700504,-22544603248067364],[655369,67764235,-1975303161793801,-1975301857911278],[655369,67764237,-22544604489700504,-22544603248067364],[655369,268435458,1975301857911278,1975303161793801],[655369,268435460,22544603248067364,22544604489700504],[655369,268435467,1975301857911278,1975303161793801],[655369,268435469,22544603248067364,22544604489700504],[655369,269090818,1975301857911278,1975303161793801],[655369,269090820,22544603248067364,22544604489700504],[655369,269090827,1975301857911278,1975303161793801],[655369,269090829,22544603248067364,22544604489700504],[655370,0,11851812639372616,11851817478857866],[655370,10,19173508473961242,19173515473743010],[655370,129,-3950606322589598,-3950603716820562],[655370,132,5925906044742719,5925909014372521],[655370,139,-28470513207314965,-28470509589568145],[655370,142,17198207831856214,17198211096142960],[655370,192,-3950606388421522,-3950603650988640],[655370,202,-30445818782250594,-30445809034337592],[655370,1162,-1975303142599947,-1975301877105131],[655370,32769,4648499087000812,4648500337588616],[655370,32772,-4648500337588616,-4648499087000812],[655370,32779,4648499087000812,4648500337588616],[655370,32782,-4648500337588616,-4648499087000812],[655370,32832,4648499056652179,4648500367937248],[655370,32842,4648499056652179,4648500367937248],[655370,32896,-6623803535249348,-6623800909045159],[655370,32906,-4648500367937248,-4648499056652179],[655370,131074,-166718780962043040,-166718724742007499],[655370,131079,-19871408304471303,-19871405028412220],[655370,131080,159397032038790385,159397079835786384],[655370,131085,19871405028412220,19871408304471303],[655370,131139,6623801098016986,6623803346277523],[655370,131142,-6623803346277523,-6623801098016986],[655370,131145,-6623803346277523,-6623801098016986],[655370,131148,6623801098016986,6623803346277523],[655370,131203,17896101898419553,17896106414758888],[655370,131206,-19871408894185654,-19871404438697867],[655370,131209,6623801098016986,6623803346277523],[655370,131212,8599102631895649,8599106832103938],[655370,131266,-13247611779979171,-13247597108609852],[655370,131272,39742810183793936,39742816481973111],[655370,132226,3950603919085972,3950606120324188],[655370,132232,-1975303134589986,-1975301885115096],[655370,163970,35792206070739152,35792210555617732],[655370,163976,-37767513094879325,-37767508551182639],[655370,524290,159397032038790385,159397079835786384],[655370,524295,19871405028412220,19871408304471303],[655370,524296,-166718780962043040,-166718724742007499],[655370,524301,-19871408304471303,-19871405028412220],[655370,524355,-6623803346277523,-6623801098016986],[655370,524358,6623801098016986,6623803346277523],[655370,524361,6623801098016986,6623803346277523],[655370,524364,-6623803346277523,-6623801098016986],[655370,524419,6623801098016986,6623803346277523],[655370,524422,8599102631895649,8599106832103938],[655370,524425,17896101898419553,17896106414758888],[655370,524428,-19871408894185654,-19871404438697867],[655370,524482,39742810183793936,39742816481973111],[655370,524488,-13247611779979171,-13247597108609852],[655370,525442,-1975303134589986,-1975301885115096],[655370,525448,3950603919085972,3950606120324188],[655370,557186,-37767513094879325,-37767508551182639],[655370,557192,35792206070739152,35792210555617732],[655370,655360,19173508473961242,19173515473743010],[655370,655370,11851812639372616,11851817478857866],[655370,655489,-28470513207314965,-28470509589568145],[655370,655492,17198207831856214,17198211096142960],[655370,655499,-3950606322589598,-3950603716820562],[655370,655502,5925906044742719,5925909014372521],[655370,655552,-30445818782250594,-30445809034337592],[655370,655562,-3950606388421522,-3950603650988640],[655370,656512,-1975303142599947,-1975301877105131],[655370,688129,4648499087000812,4648500337588616],[655370,688132,-4648500337588616,-4648499087000812],[655370,688139,4648499087000812,4648500337588616],[655370,688142,-4648500337588616,-4648499087000812],[655370,688192,4648499056652179,4648500367937248],[655370,688202,4648499056652179,4648500367937248],[655370,688256,-4648500367937248,-4648499056652179],[655370,688266,-6623803535249348,-6623800909045159],[655370,1048577,-4648500337588616,-4648499087000812],[655370,1048580,4648499087000812,4648500337588616],[655370,1048587,-4648500337588616,-4648499087000812],[655370,1048590,4648499087000812,4648500337588616],[655370,1048640,-4648500367937248,-4648499056652179],[655370,1048650,-4648500367937248,-4648499056652179],[655370,1048704,4648499056652179,4648500367937248],[655370,1048714,17896102843574241,17896105469604200],[655370,1179778,-37767513094879325,-37767508551182639],[655370,1179784,24519904596394939,24519908161078011],[655370,1212418,-6623803271301876,-6623801172992632],[655370,1212424,6623801172992632,6623803271301876],[655370,1572994,24519904596394939,24519908161078011],[655370,1573000,-37767513094879325,-37767508551182639],[655370,1605634,6623801172992632,6623803271301876],[655370,1605640,-6623803271301876,-6623801172992632],[655370,1703937,-4648500337588616,-4648499087000812],[655370,1703940,4648499087000812,4648500337588616],[655370,1703947,-4648500337588616,-4648499087000812],[655370,1703950,4648499087000812,4648500337588616],[655370,1704000,-4648500367937248,-4648499056652179],[655370,1704010,-4648500367937248,-4648499056652179],[655370,1704064,17896102843574241,17896105469604200],[655370,1704074,4648499056652179,4648500367937248],[655370,67108865,1975301857911278,1975303161793801],[655370,67108868,-1975303161793801,-1975301857911278],[655370,67108875,1975301857911278,1975303161793801],[655370,67108878,-1975303161793801,-1975301857911278],[655370,67108928,1975301824995317,1975303194709763],[655370,67108938,1975301824995317,1975303194709763],[655370,67108992,-3950606391264266,-3950603648145893],[655370,67109002,-1975303194709763,-1975301824995317],[655370,67240066,51015112847771814,51015117686879173],[655370,67240072,-52990420208255582,-52990415346100484],[655370,67272706,-11272303056635485,-11272300812248450],[655370,67272712,11272300812248450,11272303056635485],[655370,67633282,-52990420208255582,-52990415346100484],[655370,67633288,51015112847771814,51015117686879173],[655370,67665922,11272300812248450,11272303056635485],[655370,67665928,-11272303056635485,-11272300812248450],[655370,67764225,1975301857911278,1975303161793801],[655370,67764228,-1975303161793801,-1975301857911278],[655370,67764235,1975301857911278,1975303161793801],[655370,67764238,-1975303161793801,-1975301857911278],[655370,67764288,1975301824995317,1975303194709763],[655370,67764298,1975301824995317,1975303194709763],[655370,67764352,-1975303194709763,-1975301824995317],[655370,67764362,-3950606391264266,-3950603648145893],[655370,68288514,11272300812248450,11272303056635485],[655370,68288520,-11272303056635485,-11272300812248450],[655370,68681730,-11272303056635485,-11272300812248450],[655370,68681736,11272300812248450,11272303056635485],[655370,268435457,-1975303161793801,-1975301857911278],[655370,268435460,1975301857911278,1975303161793801],[655370,268435467,-1975303161793801,-1975301857911278],[655370,268435470,1975301857911278,1975303161793801],[655370,268435520,-1975303194709763,-1975301824995317],[655370,268435530,-1975303194709763,-1975301824995317],[655370,268435584,1975301824995317,1975303194709763],[655370,268435594,15222905579272277,15222908329021818],[655370,268566658,-52990420208255582,-52990415346100484],[655370,268566664,39742811423957886,39742815241809165],[655370,268599298,11272300812248450,11272303056635485],[655370,268599304,-11272303056635485,-11272300812248450],[655370,268959874,39742811423957886,39742815241809165],[655370,268959880,-52990420208255582,-52990415346100484],[655370,268992514,-11272303056635485,-11272300812248450],[655370,268992520,11272300812248450,11272303056635485],[655370,269090817,-1975303161793801,-1975301857911278],[655370,269090820,1975301857911278,1975303161793801],[655370,269090827,-1975303161793801,-1975301857911278],[655370,269090830,1975301857911278,1975303161793801],[655370,269090880,-1975303194709763,-1975301824995317],[655370,269090890,-1975303194709763,-1975301824995317],[655370,269090944,15222905579272277,15222908329021818],[655370,269090954,1975301824995317,1975303194709763],[655370,269615106,-11272303056635485,-11272300812248450],[655370,269615112,11272300812248450,11272303056635485],[655370,270008322,11272300812248450,11272303056635485],[655370,270008328,-11272303056635485,-11272300812248450],[655370,335675394,28470509652297966,28470513144585146],[655370,335675400,-28470513144585146,-28470509652297966],[655370,336068610,-28470513144585146,-28470509652297966],[655370,336068616,28470509652297966,28470513144585146],[655372,0,75535017304359926,75535025987764002],[655372,12,49039808003270598,49039817511675298],[655372,129,-45089208971600236,-45089206503935504],[655372,130,31841601898078136,31841604688868588],[655372,141,-18594000573832936,-18593997124524774],[655372,142,22544602310993060,22544605426774810],[655372,204,-1975303142599947,-1975301877105131],[655372,1164,-22544604444342592,-22544603293425280],[655372,32769,1975301917270118,1975303102434961],[655372,32770,-3950606237024947,-3950603802385214],[655372,32781,15222905739731186,15222908168562909],[655372,32782,-1975303102434961,-1975301917270118],[655372,32896,-69609119710487749,-69609108522520937],[655372,32908,-47064513169575377,-47064507325665441],[655372,131076,-245506516979052740,-245506452671352604],[655372,131079,28470509691254389,28470513105628714],[655372,131080,272001667572402980,272001719855180396],[655372,131083,-28470513105628714,-28470509691254389],[655372,131205,-2193017775,2193017774],[655372,131206,-1975304733296088,-1975300286408991],[655372,131209,-26495209977993164,-26495207799184865],[655372,131210,11272299869063941,11272303999819992],[655372,131268,-11272303070687196,-11272300798196740],[655372,131272,13247603786922062,13247605101666952],[655372,132228,24519905343287280,24519907414185673],[655372,132232,-1975303111382023,-1975301908323058],[655372,163845,-52990419959304000,-52990415595052060],[655372,163846,51015113096137411,51015117438513567],[655372,163849,39742811621793198,39742815043973846],[655372,163850,-52990419959304000,-52990415595052060],[655372,163972,52990410196249260,52990425358106808],[655372,163976,-75535026014509906,-75535017277614030],[655372,524292,272001667572402980,272001719855180396],[655372,524295,-28470513105628714,-28470509691254389],[655372,524296,-245506516979052740,-245506452671352604],[655372,524299,28470509691254389,28470513105628714],[655372,524421,-26495209977993164,-26495207799184865],[655372,524422,11272299869063941,11272303999819992],[655372,524425,-2193017775,2193017774],[655372,524426,-1975304733296088,-1975300286408991],[655372,524484,13247603786922062,13247605101666952],[655372,524488,-11272303070687196,-11272300798196740],[655372,525444,-1975303111382023,-1975301908323058],[655372,525448,24519905343287280,24519907414185673],[655372,557061,39742811621793198,39742815043973846],[655372,557062,-52990419959304000,-52990415595052060],[655372,557065,-52990419959304000,-52990415595052060],[655372,557066,51015113096137411,51015117438513567],[655372,557188,-75535026014509906,-75535017277614030],[655372,557192,52990410196249260,52990425358106808],[655372,655360,49039808003270598,49039817511675298],[655372,655372,75535017304359926,75535025987764002],[655372,655489,-18594000573832936,-18593997124524774],[655372,655490,22544602310993060,22544605426774810],[655372,655501,-45089208971600236,-45089206503935504],[655372,655502,31841601898078136,31841604688868588],[655372,655552,-1975303142599947,-1975301877105131],[655372,656512,-22544604444342592,-22544603293425280],[655372,688129,15222905739731186,15222908168562909],[655372,688130,-1975303102434961,-1975301917270118],[655372,688141,1975301917270118,1975303102434961],[655372,688142,-3950606237024947,-3950603802385214],[655372,688256,-47064513169575377,-47064507325665441],[655372,688268,-69609119710487749,-69609108522520937],[655372,1048577,-1975303102434961,-1975301917270118],[655372,1048578,1975301917270118,1975303102434961],[655372,1048589,-1975303102434961,-1975301917270118],[655372,1048590,1975301917270118,1975303102434961],[655372,1048704,1975301912872117,1975303106832961],[655372,1048716,-1198509906,1198509903],[655372,1081344,-3950606212356198,-3950603827053960],[655372,1081356,-28470512979312287,-28470509817570824],[655372,1179780,-22544606026397046,-22544601711370820],[655372,1179784,24519904668878218,24519908088594729],[655372,1212420,17896102112215810,17896106200962633],[655372,1212424,6623801213223040,6623803231071470],[655372,1572996,24519904668878218,24519908088594729],[655372,1573000,-22544606026397046,-22544601711370820],[655372,1605636,6623801213223040,6623803231071470],[655372,1605640,17896102112215810,17896106200962633],[655372,1703937,-1975303102434961,-1975301917270118],[655372,1703938,1975301917270118,1975303102434961],[655372,1703949,-1975303102434961,-1975301917270118],[655372,1703950,1975301917270118,1975303102434961],[655372,1704064,-1198509906,1198509903],[655372,1704076,1975301912872117,1975303106832961],[655372,1736704,-28470512979312287,-28470509817570824],[655372,1736716,-3950606212356198,-3950603827053960],[655372,67108865,22544603248067364,22544604489700504],[655372,67108866,-22544604489700504,-22544603248067364],[655372,67108877,22544603248067364,22544604489700504],[655372,67108878,-22544604489700504,-22544603248067364],[655372,67108992,-9297000663454110,-9296998185724745],[655372,67109004,-22544604485915178,-22544603251852693],[655372,67141632,47064508847957192,47064511647283630],[655372,67141644,22544602318599624,22544605419168246],[655372,67240068,51015113006242213,51015117528408767],[655372,67240072,-37767513094879325,-37767508551182639],[655372,67272708,13247602285191671,13247606603397346],[655372,67272712,11272299936568599,11272303932315336],[655372,67633284,-37767513094879325,-37767508551182639],[655372,67633288,51015113006242213,51015117528408767],[655372,67665924,11272299936568599,11272303932315336],[655372,67665928,13247602285191671,13247606603397346],[655372,67764225,22544603248067364,22544604489700504],[655372,67764226,-22544604489700504,-22544603248067364],[655372,67764237,22544603248067364,22544604489700504],[655372,67764238,-22544604489700504,-22544603248067364],[655372,67764352,-22544604485915178,-22544603251852693],[655372,67764364,-9297000663454110,-9296998185724745],[655372,67796992,22544602318599624,22544605419168246],[655372,67797004,47064508847957192,47064511647283630],[655372,68288516,11272300873839524,11272302995044411],[655372,68288520,-11272302995044411,-11272300873839524],[655372,68681732,-11272302995044411,-11272300873839524],[655372,68681736,11272300873839524,11272302995044411],[655372,268435457,-22544604489700504,-22544603248067364],[655372,268435458,22544603248067364,22544604489700504],[655372,268435469,-22544604489700504,-22544603248067364],[655372,268435470,22544603248067364,22544604489700504],[655372,268435584,22544603251852693,22544604485915178],[655372,268435596,20569300117262707,20569302600800082],[655372,268468224,-45089208969627452,-45089206505908288],[655372,268468236,-49039814477679612,-49039811037266288],[655372,268566660,-37767513094879325,-37767508551182639],[655372,268566664,39742811531898000,39742815133869046],[655372,268599300,15222904792925496,15222909115368599],[655372,268599304,-11272302995044411,-11272300873839524],[655372,268959876,39742811531898000,39742815133869046],[655372,268959880,-37767513094879325,-37767508551182639],[655372,268992516,-11272302995044411,-11272300873839524],[655372,268992520,15222904792925496,15222909115368599],[655372,269090817,-22544604489700504,-22544603248067364],[655372,269090818,22544603248067364,22544604489700504],[655372,269090829,-22544604489700504,-22544603248067364],[655372,269090830,22544603248067364,22544604489700504],[655372,269090944,20569300117262707,20569302600800082],[655372,269090956,22544603251852693,22544604485915178],[655372,269123584,-49039814477679612,-49039811037266288],[655372,269123596,-45089208969627452,-45089206505908288],[655372,269615108,-11272302995044411,-11272300873839524],[655372,269615112,11272300873839524,11272302995044411],[655372,270008324,11272300873839524,11272302995044411],[655372,270008328,-11272302995044411,-11272300873839524],[655372,335675396,28470509608204269,28470513188678840],[655372,335675400,-28470513188678840,-28470509608204269],[655372,336068612,-28470513188678840,-28470509608204269],[655372,336068616,28470509608204269,28470513188678840],[655372,1073774604,13247603811716528,13247605076872486],[655372,1073905668,-26495209992202640,-26495207784975390],[655372,1073905672,13247603822461068,13247605066127948],[655372,1074298884,13247603822461068,13247605066127948],[655372,1074298888,-26495209992202640,-26495207784975390],[655372,1074429952,13247603811716528,13247605076872486],[655375,131073,22544601455814116,22544606281953756],[655375,131074,-26495210066338854,-26495207710839176],[655375,131076,3950603784385098,3950606255025060],[655375,131083,-3950606255025060,-3950603784385098],[655375,131085,26495207710839176,26495210066338854],[655375,131086,-22544606281953756,-22544601455814116],[655375,524289,-22544606281953756,-22544601455814116],[655375,524290,26495207710839176,26495210066338854],[655375,524292,-3950606255025060,-3950603784385098],[655375,524299,3950603784385098,3950606255025060],[655375,524301,-26495210066338854,-26495207710839176],[655375,524302,22544601455814116,22544606281953756],[655426,136,79485623172031080,79485630159503018],[655426,131074,9296994579848082,9297004269330780],[655426,131136,-9297004269330780,-9296994579848082],[655426,131210,-18594007185055848,-18593990513301844],[655426,131272,98079620672804862,98079630357086928],[655426,524290,-9297004269330780,-9296994579848082],[655426,524352,9296994579848082,9297004269330780],[655426,524426,98079620672804862,98079630357086928],[655426,524488,-18594007185055848,-18593990513301844],[655426,655562,79485623172031080,79485630159503018],[655428,136,35792205719323062,35792210907033824],[655428,32896,-1975303134589986,-1975301885115096],[655428,131086,-6623803346277521,-6623801098016984],[655428,131146,6623801098016984,6623803346277521],[655428,131212,4648494866495498,4648504558093930],[655428,131272,31143706348939894,31143710852827564],[655428,163972,-1975303134589986,-1975301885115096],[655428,524302,6623801098016984,6623803346277521],[655428,524362,-6623803346277521,-6623801098016984],[655428,524428,31143706348939894,31143710852827564],[655428,524488,4648494866495498,4648504558093930],[655428,557248,-1975303134589986,-1975301885115096],[655428,655564,35792205719323062,35792210907033824],[655428,688324,-1975303134589986,-1975301885115096],[655432,0,33237389243031454,33237396114273808],[655432,72,20569295950214876,20569306767847923],[655432,130,-35792211590820525,-35792205035536364],[655432,132,-39742815133869046,-39742811531898000],[655432,202,56941019321316304,56941026272449914],[655432,456,28470509589568145,28470513207314965],[655432,1224,22544602310993060,22544605426774810],[655432,32770,-4648500367937248,-4648499056652179],[655432,32842,-4648500367937248,-4648499056652179],[655432,32896,31143705012464284,31143712189303175],[655432,32968,-8599106519433716,-8599102944565871],[655432,131080,-7901216780706716,-7901203298113598],[655432,131083,1975301885638544,1975303134066536],[655432,131086,-6623803346277523,-6623801098016986],[655432,131136,20569290552159553,20569312165903224],[655432,131139,-1975303134066536,-1975301885638544],[655432,131142,6623801098016986,6623803346277523],[655432,131210,-13247611732520567,-13247597156068460],[655432,131212,-21846713226576023,-21846705126012580],[655432,131266,-79485635001138468,-79485618330395612],[655432,131268,-17896106405885420,-17896101907293023],[655432,131338,4648499056652180,4648500367937249],[655432,131394,-4648500367937249,-4648499056652180],[655432,131464,-19871408457827235,-19871404875056286],[655432,131520,-8599108332258679,-8599101131740910],[655432,132232,1975300959240085,1975304060464993],[655432,132288,-24519909487239803,-24519903270233145],[655432,163976,39742811531898000,39742815133869046],[655432,524296,20569290552159553,20569312165903224],[655432,524299,-1975303134066536,-1975301885638544],[655432,524302,6623801098016986,6623803346277523],[655432,524352,-7901216780706716,-7901203298113598],[655432,524355,1975301885638544,1975303134066536],[655432,524358,-6623803346277523,-6623801098016986],[655432,524426,-79485635001138468,-79485618330395612],[655432,524428,-17896106405885420,-17896101907293023],[655432,524482,-13247611732520567,-13247597156068460],[655432,524484,-21846713226576023,-21846705126012580],[655432,524554,-4648500367937249,-4648499056652180],[655432,524610,4648499056652180,4648500367937249],[655432,524680,-8599108332258679,-8599101131740910],[655432,524736,-19871408457827235,-19871404875056286],[655432,525448,-24519909487239803,-24519903270233145],[655432,525504,1975300959240085,1975304060464993],[655432,557248,39742811531898000,39742815133869046],[655432,655360,20569295950214876,20569306767847923],[655432,655432,33237389243031454,33237396114273808],[655432,655490,56941019321316304,56941026272449914],[655432,655562,-35792211590820525,-35792205035536364],[655432,655564,-39742815133869046,-39742811531898000],[655432,655744,28470509589568145,28470513207314965],[655432,656512,22544602310993060,22544605426774810],[655432,688130,-4648500367937248,-4648499056652179],[655432,688202,-4648500367937248,-4648499056652179],[655432,688256,-8599106519433716,-8599102944565871],[655432,688328,31143705012464284,31143712189303175],[655432,1048578,4648499056652179,4648500367937248],[655432,1048650,4648499056652179,4648500367937248],[655432,1048704,8599102944565871,8599106519433716],[655432,1048776,-42416014583842896,-42416006486808497],[655432,1179840,51015113006242213,51015117528408767],[655432,1573000,51015113006242213,51015117528408767],[655432,1703938,4648499056652179,4648500367937248],[655432,1704010,4648499056652179,4648500367937248],[655432,1704064,-42416014583842896,-42416006486808497],[655432,1704136,8599102944565871,8599106519433716],[655432,67108866,-1975303194709763,-1975301824995317],[655432,67108938,-1975303194709763,-1975301824995317],[655432,67108992,-7321700711066549,-7321693118407216],[655432,67109064,-47064512135024435,-47064508360216381],[655432,67240072,39742811423957886,39742815241809165],[655432,67633344,39742811423957886,39742815241809165],[655432,67764226,-1975303194709763,-1975301824995317],[655432,67764298,-1975303194709763,-1975301824995317],[655432,67764352,-47064512135024435,-47064508360216381],[655432,67764424,-7321700711066549,-7321693118407216],[655432,268435458,1975301824995317,1975303194709763],[655432,268435530,1975301824995317,1975303194709763],[655432,268435584,47064508360216381,47064512135024435],[655432,268435656,-3950609326662792,-3950600712747379],[655432,268566720,51015112847771814,51015117686879173],[655432,268959880,51015112847771814,51015117686879173],[655432,269090818,1975301824995317,1975303194709763],[655432,269090890,1975301824995317,1975303194709763],[655432,269090944,-3950609326662792,-3950600712747379],[655432,269091016,47064508360216381,47064512135024435],[655435,131073,-4648500367937249,-4648499056652180],[655435,131074,6623801098016986,6623803346277523],[655435,131083,1975301885638544,1975303134066536],[655435,131136,-1975303134066536,-1975301885638544],[655435,131145,-6623803346277523,-6623801098016986],[655435,131146,4648499056652180,4648500367937249],[655435,524289,4648499056652180,4648500367937249],[655435,524290,-6623803346277523,-6623801098016986],[655435,524299,-1975303134066536,-1975301885638544],[655435,524352,1975301885638544,1975303134066536],[655435,524361,6623801098016986,6623803346277523],[655435,524362,-4648500367937249,-4648499056652180],[655438,131074,-13247605067077166,-13247603821511848],[655438,131086,-13247605067077166,-13247603821511848],[655438,131136,13247603821511848,13247605067077166],[655438,131148,13247603821511848,13247605067077166],[655438,524290,13247603821511848,13247605067077166],[655438,524302,13247603821511848,13247605067077166],[655438,524352,-13247605067077166,-13247603821511848],[655438,524364,-13247605067077166,-13247603821511848],[655489,139,-28470513207314965,-28470509589568145],[655489,141,-18594000573832936,-18593997124524774],[655489,32901,13247603822461068,13247605066127948],[655489,131083,19871404875056286,19871408457827235],[655489,131085,22544602161328920,22544605576438951],[655489,131139,-4648500367937249,-4648499056652180],[655489,131210,8599101131740910,8599108332258679],[655489,131212,-3950608451914177,-3950601587495984],[655489,131266,4648499056652180,4648500367937249],[655489,163972,-13247605066127948,-13247603822461068],[655489,524299,8599101131740910,8599108332258679],[655489,524301,-3950608451914177,-3950601587495984],[655489,524355,4648499056652180,4648500367937249],[655489,524426,19871404875056286,19871408457827235],[655489,524428,22544602161328920,22544605576438951],[655489,524482,-4648500367937249,-4648499056652180],[655489,557061,-13247605066127948,-13247603822461068],[655489,655370,-28470513207314965,-28470509589568145],[655489,655372,-18594000573832936,-18593997124524774],[655489,688132,13247603822461068,13247605066127948],[655490,0,33237389243031454,33237396114273808],[655490,72,-35792211590820525,-35792205035536364],[655490,130,20569295950214876,20569306767847923],[655490,139,28470509589568145,28470513207314965],[655490,142,22544602310993060,22544605426774810],[655490,202,56941019321316304,56941026272449914],[655490,1032,-39742815133869046,-39742811531898000],[655490,32776,8599102944565871,8599106519433716],[655490,32832,4648499056652179,4648500367937248],[655490,32906,-42416014583842896,-42416006486808497],[655490,32962,4648499056652179,4648500367937248],[655490,131074,-7901216780706716,-7901203298113598],[655490,131083,-19871408457827235,-19871404875056286],[655490,131086,1975300959240085,1975304060464993],[655490,131139,4648499056652180,4648500367937249],[655490,131146,-13247611732520567,-13247597156068460],[655490,131200,20569290552159553,20569312165903224],[655490,131209,-8599108332258679,-8599101131740910],[655490,131212,-24519909487239803,-24519903270233145],[655490,131265,-4648500367937249,-4648499056652180],[655490,131272,-79485635001138468,-79485618330395612],[655490,131394,1975301885638544,1975303134066536],[655490,131520,-1975303134066536,-1975301885638544],[655490,132106,-21846713226576023,-21846705126012580],[655490,132162,-6623803346277523,-6623801098016986],[655490,132232,-17896106405885420,-17896101907293023],[655490,132288,6623801098016986,6623803346277523],[655490,163976,51015113006242213,51015117528408767],[655490,524290,20569290552159553,20569312165903224],[655490,524299,-8599108332258679,-8599101131740910],[655490,524302,-24519909487239803,-24519903270233145],[655490,524355,-4648500367937249,-4648499056652180],[655490,524362,-79485635001138468,-79485618330395612],[655490,524416,-7901216780706716,-7901203298113598],[655490,524425,-19871408457827235,-19871404875056286],[655490,524428,1975300959240085,1975304060464993],[655490,524481,4648499056652180,4648500367937249],[655490,524488,-13247611732520567,-13247597156068460],[655490,524610,-1975303134066536,-1975301885638544],[655490,524736,1975301885638544,1975303134066536],[655490,525322,-17896106405885420,-17896101907293023],[655490,525378,6623801098016986,6623803346277523],[655490,525448,-21846713226576023,-21846705126012580],[655490,525504,-6623803346277523,-6623801098016986],[655490,557066,51015113006242213,51015117528408767],[655490,655360,20569295950214876,20569306767847923],[655490,655369,28470509589568145,28470513207314965],[655490,655372,22544602310993060,22544605426774810],[655490,655432,56941019321316304,56941026272449914],[655490,655490,33237389243031454,33237396114273808],[655490,655562,-35792211590820525,-35792205035536364],[655490,656522,-39742815133869046,-39742811531898000],[655490,688136,-42416014583842896,-42416006486808497],[655490,688192,4648499056652179,4648500367937248],[655490,688266,8599102944565871,8599106519433716],[655490,688322,4648499056652179,4648500367937248],[655490,1048584,31143705012464284,31143712189303175],[655490,1048640,-4648500367937248,-4648499056652179],[655490,1048714,-8599106519433716,-8599102944565871],[655490,1048770,-4648500367937248,-4648499056652179],[655490,1179658,39742811531898000,39742815133869046],[655490,1573000,39742811531898000,39742815133869046],[655490,1703944,-8599106519433716,-8599102944565871],[655490,1704000,-4648500367937248,-4648499056652179],[655490,1704074,31143705012464284,31143712189303175],[655490,1704130,-4648500367937248,-4648499056652179],[655490,67108872,47064508360216381,47064512135024435],[655490,67108928,1975301824995317,1975303194709763],[655490,67109002,-3950609326662792,-3950600712747379],[655490,67109058,1975301824995317,1975303194709763],[655490,67240072,51015112847771814,51015117686879173],[655490,67633162,51015112847771814,51015117686879173],[655490,67764232,-3950609326662792,-3950600712747379],[655490,67764288,1975301824995317,1975303194709763],[655490,67764362,47064508360216381,47064512135024435],[655490,67764418,1975301824995317,1975303194709763],[655490,268435464,-7321700711066549,-7321693118407216],[655490,268435520,-1975303194709763,-1975301824995317],[655490,268435594,-47064512135024435,-47064508360216381],[655490,268435650,-1975303194709763,-1975301824995317],[655490,268566538,39742811423957886,39742815241809165],[655490,268959880,39742811423957886,39742815241809165],[655490,269090824,-47064512135024435,-47064508360216381],[655490,269090880,-1975303194709763,-1975301824995317],[655490,269090954,-7321700711066549,-7321693118407216],[655490,269091010,-1975303194709763,-1975301824995317],[655492,0,-18594001977035748,-18593995721321958],[655492,72,-24519908161078011,-24519904596394939],[655492,132,-18594004998888252,-18593992699469458],[655492,141,18593997124524774,18594000573832936],[655492,142,17198207831856214,17198211096142960],[655492,1032,-24519908088594729,-24519904668878218],[655492,32776,15222903999406109,15222909908887987],[655492,32832,1975301885115096,1975303134589986],[655492,32901,-13247605066127948,-13247603822461068],[655492,32908,7321690308104443,7321703521369331],[655492,33792,1975301908323058,1975303111382023],[655492,131076,-4795158453,4795158459],[655492,131085,-22544605576438951,-22544602161328920],[655492,131086,-13247606060429303,-13247602828159713],[655492,131148,11272297923178146,11272305945705791],[655492,131200,-9709549903,9709549901],[655492,131209,3950601587495984,3950608451914177],[655492,131210,-3950608267983247,-3950601771426911],[655492,131272,-35792210542100730,-35792206084256157],[655492,132108,-24519910213370186,-24519902544102763],[655492,132232,-2124775455,2124775457],[655492,163852,-45089210877255180,-45089204598280566],[655492,163908,1975301885115096,1975303134589986],[655492,163969,13247603822461068,13247605066127948],[655492,163976,52990410196249260,52990425358106808],[655492,164868,1975301908323058,1975303111382023],[655492,524292,-9709549903,9709549901],[655492,524301,3950601587495984,3950608451914177],[655492,524302,-3950608267983247,-3950601771426911],[655492,524364,-35792210542100730,-35792206084256157],[655492,524416,-4795158453,4795158459],[655492,524425,-22544605576438951,-22544602161328920],[655492,524426,-13247606060429303,-13247602828159713],[655492,524488,11272297923178146,11272305945705791],[655492,525324,-2124775455,2124775457],[655492,525448,-24519910213370186,-24519902544102763],[655492,557061,13247603822461068,13247605066127948],[655492,557068,52990410196249260,52990425358106808],[655492,557192,-45089210877255180,-45089204598280566],[655492,557248,1975301885115096,1975303134589986],[655492,558208,1975301908323058,1975303111382023],[655492,655360,-18594004998888252,-18593992699469458],[655492,655369,18593997124524774,18594000573832936],[655492,655370,17198207831856214,17198211096142960],[655492,655492,-18594001977035748,-18593995721321958],[655492,655564,-24519908161078011,-24519904596394939],[655492,656524,-24519908088594729,-24519904668878218],[655492,688129,-13247605066127948,-13247603822461068],[655492,688136,7321690308104443,7321703521369331],[655492,688268,15222903999406109,15222909908887987],[655492,688324,1975301885115096,1975303134589986],[655492,689284,1975301908323058,1975303111382023],[655492,1048584,13247601033521515,13247607855067498],[655492,1048716,-11272303635356703,-11272300233527231],[655492,1081344,-1975303111382023,-1975301908323058],[655492,1179660,24519904668878218,24519908088594729],[655492,1212420,-1975303111382023,-1975301908323058],[655492,1573000,24519904668878218,24519908088594729],[655492,1605760,-1975303111382023,-1975301908323058],[655492,1703944,-11272303635356703,-11272300233527231],[655492,1704076,13247601033521515,13247607855067498],[655492,1736836,-1975303111382023,-1975301908323058],[655492,67108872,26495207121529005,26495210655649026],[655492,67109004,-9297003434088727,-9296995415090126],[655492,67141764,26495207784975390,26495209992202640],[655492,67240072,35792206070739152,35792210555617732],[655492,67272832,-26495209992202640,-26495207784975390],[655492,67633164,35792206070739152,35792210555617732],[655492,67665924,-26495209992202640,-26495207784975390],[655492,67764232,-9297003434088727,-9296995415090126],[655492,67764364,26495207121529005,26495210655649026],[655492,67796992,26495207784975390,26495209992202640],[655492,268435464,-1975306059254087,-1975298960450994],[655492,268435596,-26495210655649026,-26495207121529005],[655492,268468224,-1975303134589986,-1975301885115096],[655492,268566540,24519904596394939,24519908161078011],[655492,268599300,-1975303134589986,-1975301885115096],[655492,268959880,24519904596394939,24519908161078011],[655492,268992640,-1975303134589986,-1975301885115096],[655492,269090824,-26495210655649026,-26495207121529005],[655492,269090956,-1975306059254087,-1975298960450994],[655492,269123716,-1975303134589986,-1975301885115096],[655492,1073774724,-13247605076872486,-13247603811716528],[655492,1073905792,13247603811716528,13247605076872486],[655492,1074298884,13247603811716528,13247605076872486],[655492,1074429952,-13247605076872486,-13247603811716528],[655496,66,26495207501815288,26495210275362748],[655496,68,26495207577110300,26495210200067732],[655496,136,-481408591344725096,-481408507031230928],[655496,142,-49039814989147174,-49039810525798726],[655496,1026,26495207577110300,26495210200067732],[655496,1028,26495207626385616,26495210150792412],[655496,1224,-49039814989147174,-49039810525798726],[655496,32770,-3950606322255178,-3950603717154982],[655496,32772,-9297000684250004,-9296998164928852],[655496,32832,-22544606482912750,-22544601254855122],[655496,32906,45089204203543548,45089211271992192],[655496,32908,66238017807040958,66238026635904120],[655496,32968,3950603717154982,3950606322255178],[655496,33792,-17198211985863560,-17198206942135612],[655496,33928,9296998164928852,9297000684250004],[655496,131080,302754886842070856,302754970477776592],[655496,131086,22544601642609286,22544606095158586],[655496,131146,-30445818898447706,-30445808918140474],[655496,131148,3950601481951714,3950608557458446],[655496,131200,178653536553454336,178653704502654240],[655496,131206,26495204430640140,26495213346537888],[655496,131266,56941019193503222,56941026400262994],[655496,131268,22544601642609286,22544606095158586],[655496,132106,3950601481951714,3950608557458446],[655496,132108,39742809963298108,39742816702468936],[655496,132168,22544601642609286,22544606095158586],[655496,132226,22544601642609286,22544606095158586],[655496,132228,-13247606551676524,-13247602336912492],[655496,132288,26495204430640140,26495213346537888],[655496,163912,-26495210200067732,-26495207577110300],[655496,163970,-49039814989147174,-49039810525798726],[655496,163972,-75535024800832972,-75535018491290962],[655496,164872,-26495210150792412,-26495207626385616],[655496,524296,178653536553454336,178653704502654240],[655496,524302,26495204430640140,26495213346537888],[655496,524362,56941019193503222,56941026400262994],[655496,524364,22544601642609286,22544606095158586],[655496,524416,302754886842070856,302754970477776592],[655496,524422,22544601642609286,22544606095158586],[655496,524482,-30445818898447706,-30445808918140474],[655496,524484,3950601481951714,3950608557458446],[655496,525322,22544601642609286,22544606095158586],[655496,525324,-13247606551676524,-13247602336912492],[655496,525384,26495204430640140,26495213346537888],[655496,525442,3950601481951714,3950608557458446],[655496,525444,39742809963298108,39742816702468936],[655496,525504,22544601642609286,22544606095158586],[655496,557066,-49039814989147174,-49039810525798726],[655496,557068,-75535024800832972,-75535018491290962],[655496,557248,-26495210200067732,-26495207577110300],[655496,558208,-26495210150792412,-26495207626385616],[655496,655360,-481408591344725096,-481408507031230928],[655496,655366,-49039814989147174,-49039810525798726],[655496,655562,26495207501815288,26495210275362748],[655496,655564,26495207577110300,26495210200067732],[655496,656448,-49039814989147174,-49039810525798726],[655496,656522,26495207577110300,26495210200067732],[655496,656524,26495207626385616,26495210150792412],[655496,688130,45089204203543548,45089211271992192],[655496,688132,66238017807040958,66238026635904120],[655496,688192,3950603717154982,3950606322255178],[655496,688266,-3950606322255178,-3950603717154982],[655496,688268,-9297000684250004,-9296998164928852],[655496,688328,-22544606482912750,-22544601254855122],[655496,689152,9296998164928852,9297000684250004],[655496,689288,-17198211985863560,-17198206942135612],[655496,1048578,-22544606482912750,-22544601254855122],[655496,1048580,-17198211985863560,-17198206942135612],[655496,1048640,-3950606322255178,-3950603717154982],[655496,1048714,3950603717154982,3950606322255178],[655496,1048716,9296998164928852,9297000684250004],[655496,1048776,45089204203543548,45089211271992192],[655496,1049600,-9297000684250004,-9296998164928852],[655496,1049736,66238017807040958,66238026635904120],[655496,1081344,26495207626385616,26495210150792412],[655496,1179658,-26495210200067732,-26495207577110300],[655496,1179660,-26495210150792412,-26495207626385616],[655496,1179840,-49039814989147174,-49039810525798726],[655496,1180800,-75535024800832972,-75535018491290962],[655496,1212424,39742809963298108,39742816702468936],[655496,1212544,-13247606551676524,-13247602336912492],[655496,1572936,-49039814989147174,-49039810525798726],[655496,1572994,-26495210200067732,-26495207577110300],[655496,1572996,-26495210150792412,-26495207626385616],[655496,1573896,-75535024800832972,-75535018491290962],[655496,1605640,-13247606551676524,-13247602336912492],[655496,1605760,39742809963298108,39742816702468936],[655496,1703938,3950603717154982,3950606322255178],[655496,1703940,9296998164928852,9297000684250004],[655496,1704000,45089204203543548,45089211271992192],[655496,1704074,-22544606482912750,-22544601254855122],[655496,1704076,-17198211985863560,-17198206942135612],[655496,1704136,-3950606322255178,-3950603717154982],[655496,1704960,66238017807040958,66238026635904120],[655496,1705096,-9297000684250004,-9296998164928852],[655496,1736840,26495207626385616,26495210150792412],[655496,67108866,-45089209107010112,-45089206368525624],[655496,67108868,-3950606322255178,-3950603717154982],[655496,67108928,18593996093162876,18594001605194824],[655496,67109002,3950601242433032,3950608796977140],[655496,67109004,45089204203543548,45089211271992192],[655496,67109064,45089206368525624,45089209107010112],[655496,67109888,-22544606482912750,-22544601254855122],[655496,67110024,3950603717154982,3950606322255178],[655496,67141768,-49039814989147174,-49039810525798726],[655496,67240008,-26495210275362748,-26495207501815288],[655496,67240066,-49039815165502764,-49039810349443144],[655496,67240068,-49039814989147174,-49039810525798726],[655496,67240968,-26495210200067732,-26495207577110300],[655496,67272712,22544601642609286,22544606095158586],[655496,67272832,26495204430640140,26495213346537888],[655496,67633162,-49039815165502764,-49039810349443144],[655496,67633164,-49039814989147174,-49039810525798726],[655496,67633344,-26495210275362748,-26495207501815288],[655496,67634304,-26495210200067732,-26495207577110300],[655496,67665928,26495204430640140,26495213346537888],[655496,67666048,22544601642609286,22544606095158586],[655496,67764226,3950601242433032,3950608796977140],[655496,67764228,45089204203543548,45089211271992192],[655496,67764288,45089206368525624,45089209107010112],[655496,67764362,-45089209107010112,-45089206368525624],[655496,67764364,-3950606322255178,-3950603717154982],[655496,67764424,18593996093162876,18594001605194824],[655496,67765248,3950603717154982,3950606322255178],[655496,67765384,-22544606482912750,-22544601254855122],[655496,67796992,-49039814989147174,-49039810525798726],[655496,68157440,26495207577110300,26495210200067732],[655496,68288520,3950601481951714,3950608557458446],[655496,68288640,22544601642609286,22544606095158586],[655496,68681736,22544601642609286,22544606095158586],[655496,68681856,3950601481951714,3950608557458446],[655496,68812936,26495207577110300,26495210200067732],[655496,268435458,18593996093162876,18594001605194824],[655496,268435460,-22544606482912750,-22544601254855122],[655496,268435520,-45089209107010112,-45089206368525624],[655496,268435594,45089206368525624,45089209107010112],[655496,268435596,3950603717154982,3950606322255178],[655496,268435656,3950601242433032,3950608796977140],[655496,268436480,-3950606322255178,-3950603717154982],[655496,268436616,45089204203543548,45089211271992192],[655496,268468224,26495207577110300,26495210200067732],[655496,268566538,-26495210275362748,-26495207501815288],[655496,268566540,-26495210200067732,-26495207577110300],[655496,268566720,-49039815165502764,-49039810349443144],[655496,268567680,-49039814989147174,-49039810525798726],[655496,268599304,3950601481951714,3950608557458446],[655496,268599424,22544601642609286,22544606095158586],[655496,268959816,-49039815165502764,-49039810349443144],[655496,268959874,-26495210275362748,-26495207501815288],[655496,268959876,-26495210200067732,-26495207577110300],[655496,268960776,-49039814989147174,-49039810525798726],[655496,268992520,22544601642609286,22544606095158586],[655496,268992640,3950601481951714,3950608557458446],[655496,269090818,45089206368525624,45089209107010112],[655496,269090820,3950603717154982,3950606322255178],[655496,269090880,3950601242433032,3950608796977140],[655496,269090954,18593996093162876,18594001605194824],[655496,269090956,-22544606482912750,-22544601254855122],[655496,269091016,-45089209107010112,-45089206368525624],[655496,269091840,45089204203543548,45089211271992192],[655496,269091976,-3950606322255178,-3950603717154982],[655496,269123720,26495207577110300,26495210200067732],[655496,269484168,-49039814989147174,-49039810525798726],[655496,269615112,22544601642609286,22544606095158586],[655496,269615232,26495204430640140,26495213346537888],[655496,270008328,26495204430640140,26495213346537888],[655496,270008448,22544601642609286,22544606095158586],[655496,270139392,-49039814989147174,-49039810525798726],[655496,335544320,26495207501815288,26495210275362748],[655496,335675400,-30445818898447706,-30445808918140474],[655496,335675520,56941019193503222,56941026400262994],[655496,336068616,56941019193503222,56941026400262994],[655496,336068736,-30445818898447706,-30445808918140474],[655496,336199816,26495207501815288,26495210275362748],[655499,129,-3950606322589598,-3950603716820562],[655499,130,3950603716820562,3950606322589598],[655499,131073,26495207590564460,26495210186613570],[655499,131074,-26495210186613570,-26495207590564460],[655499,131209,22544601267974862,22544606469793008],[655499,131210,-22544606469793008,-22544601267974862],[655499,524289,-22544606469793008,-22544601267974862],[655499,524290,22544601267974862,22544606469793008],[655499,524425,-26495210186613570,-26495207590564460],[655499,524426,26495207590564460,26495210186613570],[655499,655369,3950603716820562,3950606322589598],[655499,655370,-3950606322589598,-3950603716820562],[655501,129,-45089208971600236,-45089206503935504],[655501,132,45089206503935504,45089208971600236],[655501,131073,-3950606255704424,-3950603783705734],[655501,131076,3950603783705734,3950606255704424],[655501,131209,-49039815227304660,-49039810287641238],[655501,131212,49039810287641238,49039815227304660],[655501,524289,49039810287641238,49039815227304660],[655501,524292,-49039815227304660,-49039810287641238],[655501,524425,3950603783705734,3950606255704424],[655501,524428,-3950606255704424,-3950603783705734],[655501,655369,45089206503935504,45089208971600236],[655501,655372,-45089208971600236,-45089206503935504],[655502,130,31841601898078136,31841604688868588],[655502,132,5925906044742719,5925909014372521],[655502,136,-47064513301573545,-47064507193667275],[655502,142,-9297000206694220,-9296998642484636],[655502,131074,-9297000814034204,-9296998035144653],[655502,131076,-21846710653066666,-21846707699521935],[655502,131080,42416007508370071,42416013562281321],[655502,131086,11272301159430177,11272302709453757],[655502,131200,-1975304066969121,-1975300952735957],[655502,131206,4648493631385954,4648505793203474],[655502,131210,15920798685149414,15920804608323947],[655502,131212,-22544606653723935,-22544601084043932],[655502,524290,-22544606653723935,-22544601084043932],[655502,524292,15920798685149414,15920804608323947],[655502,524296,4648493631385954,4648505793203474],[655502,524302,-1975304066969121,-1975300952735957],[655502,524416,11272301159430177,11272302709453757],[655502,524422,42416007508370071,42416013562281321],[655502,524426,-21846710653066666,-21846707699521935],[655502,524428,-9297000814034204,-9296998035144653],[655502,655360,-9297000206694220,-9296998642484636],[655502,655366,-47064513301573545,-47064507193667275],[655502,655370,5925906044742719,5925909014372521],[655502,655372,31841601898078136,31841604688868588],[655552,0,11851812639372616,11851817478857866],[655552,10,-3950606388421522,-3950603650988640],[655552,192,19173508473961242,19173515473743010],[655552,202,-30445818782250594,-30445809034337592],[655552,204,-1975303142599947,-1975301877105131],[655552,264,-3950606322589598,-3950603716820562],[655552,456,-28470513207314965,-28470509589568145],[655552,1032,5925906044742719,5925909014372521],[655552,1224,17198207831856214,17198211096142960],[655552,32770,-4648500367937248,-4648499056652179],[655552,32776,4648499056652179,4648500367937248],[655552,32962,-4648500367937248,-4648499056652179],[655552,32968,17896102843574241,17896105469604200],[655552,33024,-4648500337588616,-4648499087000812],[655552,33216,-4648500337588616,-4648499087000812],[655552,33792,4648499087000812,4648500337588616],[655552,33984,4648499087000812,4648500337588616],[655552,131136,159397032038790385,159397079835786384],[655552,131146,39742810183793936,39742816481973111],[655552,131148,-1975303134589986,-1975301885115096],[655552,131200,-166718780962043040,-166718724742007499],[655552,131210,-13247611779979171,-13247597108609852],[655552,131212,3950603919085972,3950606120324188],[655552,131394,-6623803346277523,-6623801098016986],[655552,131400,6623801098016986,6623803346277523],[655552,131458,6623801098016986,6623803346277523],[655552,131464,17896101898419553,17896106414758888],[655552,132162,6623801098016986,6623803346277523],[655552,132168,8599102631895649,8599106832103938],[655552,132226,-6623803346277523,-6623801098016986],[655552,132232,-19871408894185654,-19871404438697867],[655552,132416,19871405028412220,19871408304471303],[655552,132480,-19871408304471303,-19871405028412220],[655552,163912,24519904596394939,24519908161078011],[655552,163976,-37767513094879325,-37767508551182639],[655552,524352,-166718780962043040,-166718724742007499],[655552,524362,-13247611779979171,-13247597108609852],[655552,524364,3950603919085972,3950606120324188],[655552,524416,159397032038790385,159397079835786384],[655552,524426,39742810183793936,39742816481973111],[655552,524428,-1975303134589986,-1975301885115096],[655552,524610,6623801098016986,6623803346277523],[655552,524616,17896101898419553,17896106414758888],[655552,524674,-6623803346277523,-6623801098016986],[655552,524680,6623801098016986,6623803346277523],[655552,525378,-6623803346277523,-6623801098016986],[655552,525384,-19871408894185654,-19871404438697867],[655552,525442,6623801098016986,6623803346277523],[655552,525448,8599102631895649,8599106832103938],[655552,525632,-19871408304471303,-19871405028412220],[655552,525696,19871405028412220,19871408304471303],[655552,557128,-37767513094879325,-37767508551182639],[655552,557192,24519904596394939,24519908161078011],[655552,655360,19173508473961242,19173515473743010],[655552,655370,-30445818782250594,-30445809034337592],[655552,655372,-1975303142599947,-1975301877105131],[655552,655552,11851812639372616,11851817478857866],[655552,655562,-3950606388421522,-3950603650988640],[655552,655624,-28470513207314965,-28470509589568145],[655552,655816,-3950606322589598,-3950603716820562],[655552,656392,17198207831856214,17198211096142960],[655552,656584,5925906044742719,5925909014372521],[655552,688130,-4648500367937248,-4648499056652179],[655552,688136,17896102843574241,17896105469604200],[655552,688322,-4648500367937248,-4648499056652179],[655552,688328,4648499056652179,4648500367937248],[655552,688384,-4648500337588616,-4648499087000812],[655552,688576,-4648500337588616,-4648499087000812],[655552,689152,4648499087000812,4648500337588616],[655552,689344,4648499087000812,4648500337588616],[655552,1048578,4648499056652179,4648500367937248],[655552,1048584,-6623803535249348,-6623800909045159],[655552,1048770,4648499056652179,4648500367937248],[655552,1048776,-4648500367937248,-4648499056652179],[655552,1048832,4648499087000812,4648500337588616],[655552,1049024,4648499087000812,4648500337588616],[655552,1049600,-4648500337588616,-4648499087000812],[655552,1049792,-4648500337588616,-4648499087000812],[655552,1179720,-37767513094879325,-37767508551182639],[655552,1179784,35792206070739152,35792210555617732],[655552,1212480,6623801172992632,6623803271301876],[655552,1212544,-6623803271301876,-6623801172992632],[655552,1572936,35792206070739152,35792210555617732],[655552,1573000,-37767513094879325,-37767508551182639],[655552,1605696,-6623803271301876,-6623801172992632],[655552,1605760,6623801172992632,6623803271301876],[655552,1703938,4648499056652179,4648500367937248],[655552,1703944,-4648500367937248,-4648499056652179],[655552,1704130,4648499056652179,4648500367937248],[655552,1704136,-6623803535249348,-6623800909045159],[655552,1704192,4648499087000812,4648500337588616],[655552,1704384,4648499087000812,4648500337588616],[655552,1704960,-4648500337588616,-4648499087000812],[655552,1705152,-4648500337588616,-4648499087000812],[655552,67108866,-1975303194709763,-1975301824995317],[655552,67108872,1975301824995317,1975303194709763],[655552,67109058,-1975303194709763,-1975301824995317],[655552,67109064,15222905579272277,15222908329021818],[655552,67109120,-1975303161793801,-1975301857911278],[655552,67109312,-1975303161793801,-1975301857911278],[655552,67109888,1975301857911278,1975303161793801],[655552,67110080,1975301857911278,1975303161793801],[655552,67240008,39742811423957886,39742815241809165],[655552,67240072,-52990420208255582,-52990415346100484],[655552,67272768,11272300812248450,11272303056635485],[655552,67272832,-11272303056635485,-11272300812248450],[655552,67633224,-52990420208255582,-52990415346100484],[655552,67633288,39742811423957886,39742815241809165],[655552,67665984,-11272303056635485,-11272300812248450],[655552,67666048,11272300812248450,11272303056635485],[655552,67764226,-1975303194709763,-1975301824995317],[655552,67764232,15222905579272277,15222908329021818],[655552,67764418,-1975303194709763,-1975301824995317],[655552,67764424,1975301824995317,1975303194709763],[655552,67764480,-1975303161793801,-1975301857911278],[655552,67764672,-1975303161793801,-1975301857911278],[655552,67765248,1975301857911278,1975303161793801],[655552,67765440,1975301857911278,1975303161793801],[655552,68288576,-11272303056635485,-11272300812248450],[655552,68288640,11272300812248450,11272303056635485],[655552,68681792,11272300812248450,11272303056635485],[655552,68681856,-11272303056635485,-11272300812248450],[655552,268435458,1975301824995317,1975303194709763],[655552,268435464,-3950606391264266,-3950603648145893],[655552,268435650,1975301824995317,1975303194709763],[655552,268435656,-1975303194709763,-1975301824995317],[655552,268435712,1975301857911278,1975303161793801],[655552,268435904,1975301857911278,1975303161793801],[655552,268436480,-1975303161793801,-1975301857911278],[655552,268436672,-1975303161793801,-1975301857911278],[655552,268566600,-52990420208255582,-52990415346100484],[655552,268566664,51015112847771814,51015117686879173],[655552,268599360,-11272303056635485,-11272300812248450],[655552,268599424,11272300812248450,11272303056635485],[655552,268959816,51015112847771814,51015117686879173],[655552,268959880,-52990420208255582,-52990415346100484],[655552,268992576,11272300812248450,11272303056635485],[655552,268992640,-11272303056635485,-11272300812248450],[655552,269090818,1975301824995317,1975303194709763],[655552,269090824,-1975303194709763,-1975301824995317],[655552,269091010,1975301824995317,1975303194709763],[655552,269091016,-3950606391264266,-3950603648145893],[655552,269091072,1975301857911278,1975303161793801],[655552,269091264,1975301857911278,1975303161793801],[655552,269091840,-1975303161793801,-1975301857911278],[655552,269092032,-1975303161793801,-1975301857911278],[655552,269615168,11272300812248450,11272303056635485],[655552,269615232,-11272303056635485,-11272300812248450],[655552,270008384,-11272303056635485,-11272300812248450],[655552,270008448,11272300812248450,11272303056635485],[655552,335675456,-28470513144585146,-28470509652297966],[655552,335675520,28470509652297966,28470513144585146],[655552,336068672,28470509652297966,28470513144585146],[655552,336068736,-28470513144585146,-28470509652297966],[655555,131073,-4648500367937249,-4648499056652180],[655555,131074,4648499056652180,4648500367937249],[655555,131265,-4648500367937249,-4648499056652180],[655555,131266,4648499056652180,4648500367937249],[655555,524289,4648499056652180,4648500367937249],[655555,524290,-4648500367937249,-4648499056652180],[655555,524481,4648499056652180,4648500367937249],[655555,524482,-4648500367937249,-4648499056652180],[655562,10,-3950606388421522,-3950603650988640],[655562,66,26495207501815288,26495210275362748],[655562,72,-35792211590820525,-35792205035536364],[655562,130,-35792211590820525,-35792205035536364],[655562,136,79485623172031080,79485630159503018],[655562,192,-3950606388421522,-3950603650988640],[655562,202,26495207490199320,26495210286978712],[655562,131074,-45089213226916902,-45089202248618840],[655562,131080,-3950606383588294,-3950603655821866],[655562,131136,58336806002895800,58336818361228957],[655562,131146,-3950606383588294,-3950603655821866],[655562,131200,-35792211597603263,-35792205028753624],[655562,131210,-45089213226916902,-45089202248618840],[655562,131266,-35792211597603263,-35792205028753624],[655562,131272,58336806002895800,58336818361228957],[655562,524290,58336806002895800,58336818361228957],[655562,524296,-35792211597603263,-35792205028753624],[655562,524352,-45089213226916902,-45089202248618840],[655562,524362,-35792211597603263,-35792205028753624],[655562,524416,-3950606383588294,-3950603655821866],[655562,524426,58336806002895800,58336818361228957],[655562,524482,-3950606383588294,-3950603655821866],[655562,524488,-45089213226916902,-45089202248618840],[655562,655360,26495207490199320,26495210286978712],[655562,655370,-3950606388421522,-3950603650988640],[655562,655426,79485623172031080,79485630159503018],[655562,655432,-35792211590820525,-35792205035536364],[655562,655490,-35792211590820525,-35792205035536364],[655562,655496,26495207501815288,26495210275362748],[655562,655552,-3950606388421522,-3950603650988640],[655564,68,26495207577110300,26495210200067732],[655564,72,-24519908161078011,-24519904596394939],[655564,132,-39742815133869046,-39742811531898000],[655564,136,35792205719323062,35792210907033824],[655564,204,-1975303142599947,-1975301877105131],[655564,131076,4648499056652180,4648500367937249],[655564,131080,-4648500367937249,-4648499056652180],[655564,131136,11272300692285237,11272303176598696],[655564,131148,13247603826875223,13247605061713792],[655564,131200,-9297001142627820,-9296997706551035],[655564,131212,-13247605061713792,-13247603826875223],[655564,131268,-6623804014035016,-6623800430259491],[655564,131272,8599103418984813,8599106045014772],[655564,524292,8599103418984813,8599106045014772],[655564,524296,-6623804014035016,-6623800430259491],[655564,524352,-13247605061713792,-13247603826875223],[655564,524364,-9297001142627820,-9296997706551035],[655564,524416,13247603826875223,13247605061713792],[655564,524428,11272300692285237,11272303176598696],[655564,524484,-4648500367937249,-4648499056652180],[655564,524488,4648499056652180,4648500367937249],[655564,655360,-1975303142599947,-1975301877105131],[655564,655428,35792205719323062,35792210907033824],[655564,655432,-39742815133869046,-39742811531898000],[655564,655492,-24519908161078011,-24519904596394939],[655564,655496,26495207577110300,26495210200067732],[655624,456,-28470513207314965,-28470509589568145],[655624,1416,-18594000573832936,-18593997124524774],[655624,131146,-4648500367937249,-4648499056652180],[655624,131272,19871404875056286,19871408457827235],[655624,131394,4648499056652180,4648500367937249],[655624,131520,8599101131740910,8599108332258679],[655624,132232,22544602161328920,22544605576438951],[655624,132480,-3950608451914177,-3950601587495984],[655624,524362,4648499056652180,4648500367937249],[655624,524488,8599101131740910,8599108332258679],[655624,524610,-4648500367937249,-4648499056652180],[655624,524736,19871404875056286,19871408457827235],[655624,525448,-3950608451914177,-3950601587495984],[655624,525696,22544602161328920,22544605576438951],[655624,655552,-28470513207314965,-28470509589568145],[655624,656512,-18594000573832936,-18593997124524774],[655624,1049864,13247603822461068,13247605066127948],[655624,1180928,-13247605066127948,-13247603822461068],[655624,1573896,-13247605066127948,-13247603822461068],[655624,1704960,13247603822461068,13247605066127948],[655680,131136,-4648501974835595,-4648497449753834],[655680,131272,24519905244697076,24519907512775874],[655680,131328,4648497449753834,4648501974835595],[655680,131464,-24519907512775874,-24519905244697076],[655680,132288,24519905293069738,24519907464403207],[655680,132480,-24519907464403207,-24519905293069738],[655680,524352,4648497449753834,4648501974835595],[655680,524488,-24519907512775874,-24519905244697076],[655680,524544,-4648501974835595,-4648497449753834],[655680,524680,24519905244697076,24519907512775874],[655680,525504,-24519907464403207,-24519905293069738],[655680,525696,24519905293069738,24519907464403207],[655690,131136,-4648500367937249,-4648499056652180],[655690,131146,-4648500367937249,-4648499056652180],[655690,131328,4648499056652180,4648500367937249],[655690,131338,4648499056652180,4648500367937249],[655690,524352,4648499056652180,4648500367937249],[655690,524362,4648499056652180,4648500367937249],[655690,524544,-4648500367937249,-4648499056652180],[655690,524554,-4648500367937249,-4648499056652180],[655744,72,3950603716820562,3950606322589598],[655744,456,28470509589568145,28470513207314965],[655744,1032,45089206503935504,45089208971600236],[655744,1416,18593997124524774,18594000573832936],[655744,32832,4648499087000812,4648500337588616],[655744,33216,4648499087000812,4648500337588616],[655744,33792,1975301917270118,1975303102434961],[655744,34176,1975301917270118,1975303102434961],[655744,131200,8599101386783086,8599108077216494],[655744,131266,-4648500367937249,-4648499056652180],[655744,131272,-17896106414758888,-17896101898419553],[655744,131328,-8599108077216494,-8599101386783086],[655744,131394,4648499056652180,4648500367937249],[655744,131400,-6623803346277523,-6623801098016986],[655744,131776,-1975303134066536,-1975301885638544],[655744,131904,1975301885638544,1975303134066536],[655744,132232,-2193017774,2193017775],[655744,132288,-8599108077216494,-8599101386783086],[655744,132360,26495207799184865,26495209977993164],[655744,132416,8599101386783086,8599108077216494],[655744,132736,13247603821511848,13247605067077166],[655744,132864,-13247605067077166,-13247603821511848],[655744,134272,13247603826875223,13247605061713792],[655744,134400,-13247605061713792,-13247603826875223],[655744,524416,-8599108077216494,-8599101386783086],[655744,524482,4648499056652180,4648500367937249],[655744,524488,-6623803346277523,-6623801098016986],[655744,524544,8599101386783086,8599108077216494],[655744,524610,-4648500367937249,-4648499056652180],[655744,524616,-17896106414758888,-17896101898419553],[655744,524992,1975301885638544,1975303134066536],[655744,525120,-1975303134066536,-1975301885638544],[655744,525448,26495207799184865,26495209977993164],[655744,525504,8599101386783086,8599108077216494],[655744,525576,-2193017774,2193017775],[655744,525632,-8599108077216494,-8599101386783086],[655744,525952,-13247605067077166,-13247603821511848],[655744,526080,13247603821511848,13247605067077166],[655744,527488,-13247605061713792,-13247603826875223],[655744,527616,13247603826875223,13247605061713792],[655744,655432,28470509589568145,28470513207314965],[655744,655816,3950603716820562,3950606322589598],[655744,656392,18593997124524774,18594000573832936],[655744,656776,45089206503935504,45089208971600236],[655744,688192,4648499087000812,4648500337588616],[655744,688576,4648499087000812,4648500337588616],[655744,689152,1975301917270118,1975303102434961],[655744,689536,1975301917270118,1975303102434961],[655744,1048640,-4648500337588616,-4648499087000812],[655744,1049024,-4648500337588616,-4648499087000812],[655744,1049600,-1975303102434961,-1975301917270118],[655744,1049984,-15222908168562909,-15222905739731186],[655744,1180800,39742811621793198,39742815043973846],[655744,1180928,-26495210128643692,-26495207648534336],[655744,1574016,-26495210128643692,-26495207648534336],[655744,1574144,39742811621793198,39742815043973846],[655744,1704000,-4648500337588616,-4648499087000812],[655744,1704384,-4648500337588616,-4648499087000812],[655744,1704960,-15222908168562909,-15222905739731186],[655744,1705344,-1975303102434961,-1975301917270118],[655744,67108928,1975301857911278,1975303161793801],[655744,67109312,1975301857911278,1975303161793801],[655744,67109888,22544603248067364,22544604489700504],[655744,67110272,22544603248067364,22544604489700504],[655744,67764288,1975301857911278,1975303161793801],[655744,67764672,1975301857911278,1975303161793801],[655744,67765248,22544603248067364,22544604489700504],[655744,67765632,22544603248067364,22544604489700504],[655744,268435520,-1975303161793801,-1975301857911278],[655744,268435904,-1975303161793801,-1975301857911278],[655744,268436480,-22544604489700504,-22544603248067364],[655744,268436864,-22544604489700504,-22544603248067364],[655744,269090880,-1975303161793801,-1975301857911278],[655744,269091264,-1975303161793801,-1975301857911278],[655744,269091840,-22544604489700504,-22544603248067364],[655744,269092224,-22544604489700504,-22544603248067364],[655810,131074,1975301885638544,1975303134066536],[655810,131136,-6623803346277523,-6623801098016986],[655810,131266,-4648500367937249,-4648499056652180],[655810,131328,4648499056652180,4648500367937249],[655810,131458,6623801098016986,6623803346277523],[655810,131520,-1975303134066536,-1975301885638544],[655810,524290,-1975303134066536,-1975301885638544],[655810,524352,6623801098016986,6623803346277523],[655810,524482,4648499056652180,4648500367937249],[655810,524544,-4648500367937249,-4648499056652180],[655810,524674,-6623803346277523,-6623801098016986],[655810,524736,1975301885638544,1975303134066536],[655816,72,3950603716820562,3950606322589598],[655816,264,-3950606322589598,-3950603716820562],[655816,131136,22544601267974862,22544606469793008],[655816,131272,26495207590564460,26495210186613570],[655816,131328,-22544606469793008,-22544601267974862],[655816,131464,-26495210186613570,-26495207590564460],[655816,524352,-26495210186613570,-26495207590564460],[655816,524488,-22544606469793008,-22544601267974862],[655816,524544,26495207590564460,26495210186613570],[655816,524680,22544601267974862,22544606469793008],[655816,655552,-3950606322589598,-3950603716820562],[655816,655744,3950603716820562,3950606322589598],[656000,131520,1975301885638544,1975303134066536],[656000,131904,-1975303134066536,-1975301885638544],[656000,132480,-13247605067077166,-13247603821511848],[656000,132864,13247603821511848,13247605067077166],[656000,134272,-13247605061713792,-13247603826875223],[656000,134656,13247603826875223,13247605061713792],[656000,524736,-1975303134066536,-1975301885638544],[656000,525120,1975301885638544,1975303134066536],[656000,525696,13247603821511848,13247605067077166],[656000,526080,-13247605067077166,-13247603821511848],[656000,527488,13247603826875223,13247605061713792],[656000,527872,-13247605061713792,-13247603826875223],[656320,131328,1975301885638544,1975303134066536],[656320,131520,1975301885638544,1975303134066536],[656320,131584,-1975303134066536,-1975301885638544],[656320,131776,-1975303134066536,-1975301885638544],[656320,524544,-1975303134066536,-1975301885638544],[656320,524736,-1975303134066536,-1975301885638544],[656320,524800,1975301885638544,1975303134066536],[656320,524992,1975301885638544,1975303134066536],[656386,136,35792205719323062,35792210907033824],[656386,131210,4648494866495498,4648504558093930],[656386,131266,-6623803346277521,-6623801098016984],[656386,132232,31143706348939894,31143710852827564],[656386,132288,6623801098016984,6623803346277521],[656386,524426,31143706348939894,31143710852827564],[656386,524482,6623801098016984,6623803346277521],[656386,525448,4648494866495498,4648504558093930],[656386,525504,-6623803346277521,-6623801098016984],[656386,656522,35792205719323062,35792210907033824],[656386,1048584,-1975303134589986,-1975301885115096],[656386,1179658,-1975303134589986,-1975301885115096],[656386,1573896,-1975303134589986,-1975301885115096],[656386,1704970,-1975303134589986,-1975301885115096],[656388,136,-2449893888,2449893882],[656388,32896,-1975303111382023,-1975301908323058],[656388,131212,-13247609036357290,-13247599852231728],[656388,132232,13247602302125610,13247606586463402],[656388,163972,-1975303111382023,-1975301908323058],[656388,524428,13247602302125610,13247606586463402],[656388,525448,-13247609036357290,-13247599852231728],[656388,558208,-1975303111382023,-1975301908323058],[656388,656524,-2449893888,2449893882],[656388,689284,-1975303111382023,-1975301908323058],[656388,1048584,-1975303111382023,-1975301908323058],[656388,1081344,-22544604444342592,-22544603293425280],[656388,1179660,-1975303111382023,-1975301908323058],[656388,1212420,-22544604444342592,-22544603293425280],[656388,1573896,-1975303111382023,-1975301908323058],[656388,1606656,-22544604444342592,-22544603293425280],[656388,1704972,-1975303111382023,-1975301908323058],[656388,1737732,-22544604444342592,-22544603293425280],[656392,0,-18594001977035748,-18593995721321958],[656392,130,-24519908161078011,-24519904596394939],[656392,132,-24519908088594729,-24519904668878218],[656392,1032,-18594004998888252,-18593992699469458],[656392,1224,17198207831856214,17198211096142960],[656392,1416,18593997124524774,18594000573832936],[656392,3208,18593997194721705,18594000503636004],[656392,32896,13247601033521515,13247607855067498],[656392,33928,-11272303635356703,-11272300233527231],[656392,131080,-4795158453,4795158459],[656392,131210,11272297923178146,11272305945705791],[656392,131212,-24519910213370186,-24519902544102763],[656392,131272,-13247606060429303,-13247602828159713],[656392,131464,-22544605576438951,-22544602161328920],[656392,132096,-9709549903,9709549901],[656392,132226,-35792210542100730,-35792206084256157],[656392,132228,-2124775455,2124775457],[656392,132288,-3950608267983247,-3950601771426911],[656392,132480,3950601587495984,3950608451914177],[656392,133256,-22544605449648746,-22544602288119128],[656392,134272,3950601784483124,3950608254927041],[656392,163976,24519904668878218,24519908088594729],[656392,524296,-9709549903,9709549901],[656392,524426,-35792210542100730,-35792206084256157],[656392,524428,-2124775455,2124775457],[656392,524488,-3950608267983247,-3950601771426911],[656392,524680,3950601587495984,3950608451914177],[656392,525312,-4795158453,4795158459],[656392,525442,11272297923178146,11272305945705791],[656392,525444,-24519910213370186,-24519902544102763],[656392,525504,-13247606060429303,-13247602828159713],[656392,525696,-22544605576438951,-22544602161328920],[656392,526472,3950601784483124,3950608254927041],[656392,527488,-22544605449648746,-22544602288119128],[656392,558208,24519904668878218,24519908088594729],[656392,655360,-18594004998888252,-18593992699469458],[656392,655552,17198207831856214,17198211096142960],[656392,655744,18593997124524774,18594000573832936],[656392,656392,-18594001977035748,-18593995721321958],[656392,656522,-24519908161078011,-24519904596394939],[656392,656524,-24519908088594729,-24519904668878218],[656392,657536,18593997194721705,18594000503636004],[656392,688256,-11272303635356703,-11272300233527231],[656392,689288,13247601033521515,13247607855067498],[656392,1048578,1975301885115096,1975303134589986],[656392,1048580,1975301908323058,1975303111382023],[656392,1048704,15222903999406109,15222909908887987],[656392,1049736,7321690308104443,7321703521369331],[656392,1049864,-13247605066127948,-13247603822461068],[656392,1051656,-13247605070627222,-13247603817961795],[656392,1081344,-1975303111382023,-1975301908323058],[656392,1179658,1975301885115096,1975303134589986],[656392,1179660,1975301908323058,1975303111382023],[656392,1179784,-45089210877255180,-45089204598280566],[656392,1180800,52990410196249260,52990425358106808],[656392,1180928,13247603822461068,13247605066127948],[656392,1182720,13247603817961795,13247605070627222],[656392,1212424,-1975303111382023,-1975301908323058],[656392,1573000,52990410196249260,52990425358106808],[656392,1573128,13247603822461068,13247605066127948],[656392,1573890,1975301885115096,1975303134589986],[656392,1573892,1975301908323058,1975303111382023],[656392,1574016,-45089210877255180,-45089204598280566],[656392,1574920,13247603817961795,13247605070627222],[656392,1606656,-1975303111382023,-1975301908323058],[656392,1704064,7321690308104443,7321703521369331],[656392,1704192,-13247605066127948,-13247603822461068],[656392,1704970,1975301885115096,1975303134589986],[656392,1704972,1975301908323058,1975303111382023],[656392,1705096,15222903999406109,15222909908887987],[656392,1705984,-13247605070627222,-13247603817961795],[656392,1737736,-1975303111382023,-1975301908323058],[656392,3146760,-13247605080544438,-13247603808044578],[656392,3277824,13247603808044578,13247605080544438],[656392,3670024,13247603808044578,13247605080544438],[656392,3801088,-13247605080544438,-13247603808044578],[656392,67108992,-1975306059254087,-1975298960450994],[656392,67110024,-26495210655649026,-26495207121529005],[656392,67240072,24519904596394939,24519908161078011],[656392,67634304,24519904596394939,24519908161078011],[656392,67764352,-26495210655649026,-26495207121529005],[656392,67765384,-1975306059254087,-1975298960450994],[656392,68157440,-1975303134589986,-1975301885115096],[656392,68288520,-1975303134589986,-1975301885115096],[656392,68682752,-1975303134589986,-1975301885115096],[656392,68813832,-1975303134589986,-1975301885115096],[656392,135267336,-13247605076872486,-13247603811716528],[656392,135398400,13247603811716528,13247605076872486],[656392,135790600,13247603811716528,13247605076872486],[656392,135921664,-13247605076872486,-13247603811716528],[656392,268435584,26495207121529005,26495210655649026],[656392,268436616,-9297003434088727,-9296995415090126],[656392,268567680,35792206070739152,35792210555617732],[656392,268959880,35792206070739152,35792210555617732],[656392,269090944,-9297003434088727,-9296995415090126],[656392,269091976,26495207121529005,26495210655649026],[656392,269485064,26495207784975390,26495209992202640],[656392,269616128,-26495209992202640,-26495207784975390],[656392,270008328,-26495209992202640,-26495207784975390],[656392,270139392,26495207784975390,26495209992202640],[656448,0,22544602948688426,22544604789079442],[656448,136,-47064513301573545,-47064507193667275],[656448,1088,11272301474344213,11272302394539721],[656448,1224,-49039814989147174,-49039810525798726],[656448,32896,-6623803284297315,-6623801159997192],[656448,33984,-6623803284297315,-6623801159997192],[656448,131136,15920798874182437,15920804419290919],[656448,131266,6623801098016984,6623803346277521],[656448,131272,-6623804322724415,-6623800121570091],[656448,131520,-17896106304406015,-17896102008772423],[656448,132096,-4648502481944947,-4648496942644475],[656448,132226,-6623803346277521,-6623801098016984],[656448,132232,8599102661848405,8599106802151181],[656448,132480,17896102008772423,17896106304406015],[656448,133312,-24519907464643493,-24519905292829456],[656448,134272,24519905292829456,24519907464643493],[656448,524352,-4648502481944947,-4648496942644475],[656448,524482,-6623803346277521,-6623801098016984],[656448,524488,8599102661848405,8599106802151181],[656448,524736,17896102008772423,17896106304406015],[656448,525312,15920798874182437,15920804419290919],[656448,525442,6623801098016984,6623803346277521],[656448,525448,-6623804322724415,-6623800121570091],[656448,525696,-17896106304406015,-17896102008772423],[656448,526528,24519905292829456,24519907464643493],[656448,527488,-24519907464643493,-24519905292829456],[656448,655360,11272301474344213,11272302394539721],[656448,655496,-49039814989147174,-49039810525798726],[656448,656448,22544602948688426,22544604789079442],[656448,656584,-47064513301573545,-47064507193667275],[656448,688256,-6623803284297315,-6623801159997192],[656448,689344,-6623803284297315,-6623801159997192],[656448,1048704,8599103045112288,8599106418887301],[656448,1049792,6623801159997192,6623803284297315],[656448,1179840,-49039814917723134,-49039810597222762],[656448,1180800,51015113096137411,51015117438513567],[656448,1573056,51015113096137411,51015117438513567],[656448,1574016,-49039814917723134,-49039810597222762],[656448,1704064,6623801159997192,6623803284297315],[656448,1705152,8599103045112288,8599106418887301],[656448,67108992,-24519907498972975,-24519905258499972],[656448,67110080,-24519907498972975,-24519905258499972],[656448,67764352,-24519907498972975,-24519905258499972],[656448,67765440,-24519907498972975,-24519905258499972],[656448,268435584,24519905258499972,24519907498972975],[656448,268436672,24519905258499972,24519907498972975],[656448,269090944,24519905258499972,24519907498972975],[656448,269092032,24519905258499972,24519907498972975],[656512,0,75535017304359926,75535025987764002],[656512,72,31841601898078136,31841604688868588],[656512,264,-45089208971600236,-45089206503935504],[656512,1152,49039808003270598,49039817511675298],[656512,1162,-1975303142599947,-1975301877105131],[656512,1164,-22544604444342592,-22544603293425280],[656512,1224,22544602310993060,22544605426774810],[656512,1416,-18594000573832936,-18593997124524774],[656512,2056,-45089208980598784,-45089206494936958],[656512,3208,-18594000503636004,-18593997194721705],[656512,32776,1975301912872117,1975303106832961],[656512,32832,1975301917270118,1975303102434961],[656512,33024,-1975303102434961,-1975301917270118],[656512,33928,-1198509906,1198509903],[656512,33984,1975301917270118,1975303102434961],[656512,34176,-1975303102434961,-1975301917270118],[656512,34816,-1975303106832961,-1975301912872117],[656512,35968,-1975303106832961,-1975301912872117],[656512,131200,-245506516979052740,-245506452671352604],[656512,131210,-11272303070687196,-11272300798196740],[656512,131212,24519905343287280,24519907414185673],[656512,131272,-1975304733296088,-1975300286408991],[656512,131464,-2193017775,2193017774],[656512,131520,28470509691254389,28470513105628714],[656512,132096,272001667572402980,272001719855180396],[656512,132106,13247603786922062,13247605101666952],[656512,132108,-1975303111382023,-1975301908323058],[656512,132168,11272299869063941,11272303999819992],[656512,132360,-26495209977993164,-26495207799184865],[656512,132416,-28470513105628714,-28470509691254389],[656512,133256,-2231218224,2231218221],[656512,133312,26495207799184865,26495209977993164],[656512,133504,-26495209977993164,-26495207799184865],[656512,134152,-26495210008022388,-26495207769155642],[656512,134208,-26495209977993164,-26495207799184865],[656512,134400,26495207799184865,26495209977993164],[656512,163976,-22544606026397046,-22544601711370820],[656512,164872,24519904668878218,24519908088594729],[656512,524416,272001667572402980,272001719855180396],[656512,524426,13247603786922062,13247605101666952],[656512,524428,-1975303111382023,-1975301908323058],[656512,524488,11272299869063941,11272303999819992],[656512,524680,-26495209977993164,-26495207799184865],[656512,524736,-28470513105628714,-28470509691254389],[656512,525312,-245506516979052740,-245506452671352604],[656512,525322,-11272303070687196,-11272300798196740],[656512,525324,24519905343287280,24519907414185673],[656512,525384,-1975304733296088,-1975300286408991],[656512,525576,-2193017775,2193017774],[656512,525632,28470509691254389,28470513105628714],[656512,526472,-26495210008022388,-26495207769155642],[656512,526528,-26495209977993164,-26495207799184865],[656512,526720,26495207799184865,26495209977993164],[656512,527368,-2231218224,2231218221],[656512,527424,26495207799184865,26495209977993164],[656512,527616,-26495209977993164,-26495207799184865],[656512,557192,24519904668878218,24519908088594729],[656512,558088,-22544606026397046,-22544601711370820],[656512,655360,49039808003270598,49039817511675298],[656512,655370,-1975303142599947,-1975301877105131],[656512,655372,-22544604444342592,-22544603293425280],[656512,655432,22544602310993060,22544605426774810],[656512,655624,-18594000573832936,-18593997124524774],[656512,656512,75535017304359926,75535025987764002],[656512,656584,31841601898078136,31841604688868588],[656512,656776,-45089208971600236,-45089206503935504],[656512,657416,-18594000503636004,-18593997194721705],[656512,658568,-45089208980598784,-45089206494936958],[656512,688136,-1198509906,1198509903],[656512,688192,1975301917270118,1975303102434961],[656512,688384,-1975303102434961,-1975301917270118],[656512,689288,1975301912872117,1975303106832961],[656512,689344,1975301917270118,1975303102434961],[656512,689536,-1975303102434961,-1975301917270118],[656512,690176,-1975303106832961,-1975301912872117],[656512,691328,-1975303106832961,-1975301912872117],[656512,1048584,-69609119710487749,-69609108522520937],[656512,1048640,-3950606237024947,-3950603802385214],[656512,1048832,1975301917270118,1975303102434961],[656512,1049736,-47064513169575377,-47064507325665441],[656512,1049792,-1975303102434961,-1975301917270118],[656512,1049984,15222905739731186,15222908168562909],[656512,1050624,1975301912872117,1975303106832961],[656512,1051776,15222905730833912,15222908177460183],[656512,1081344,-3950606212356198,-3950603827053960],[656512,1082496,-28470512979312287,-28470509817570824],[656512,1179784,52990410196249260,52990425358106808],[656512,1179840,51015113096137411,51015117438513567],[656512,1180032,-52990419959304000,-52990415595052060],[656512,1180680,-75535026014509906,-75535017277614030],[656512,1180736,-52990419959304000,-52990415595052060],[656512,1180928,39742811621793198,39742815043973846],[656512,1181824,-52990419988112860,-52990415566243210],[656512,1182720,39742811597483621,39742815068283432],[656512,1212544,17896102112215810,17896106200962633],[656512,1213440,6623801213223040,6623803231071470],[656512,1573000,-75535026014509906,-75535017277614030],[656512,1573056,-52990419959304000,-52990415595052060],[656512,1573248,39742811621793198,39742815043973846],[656512,1573896,52990410196249260,52990425358106808],[656512,1573952,51015113096137411,51015117438513567],[656512,1574144,-52990419959304000,-52990415595052060],[656512,1575040,39742811597483621,39742815068283432],[656512,1575936,-52990419988112860,-52990415566243210],[656512,1605760,6623801213223040,6623803231071470],[656512,1606656,17896102112215810,17896106200962633],[656512,1703944,-47064513169575377,-47064507325665441],[656512,1704000,-1975303102434961,-1975301917270118],[656512,1704192,15222905739731186,15222908168562909],[656512,1705096,-69609119710487749,-69609108522520937],[656512,1705152,-3950606237024947,-3950603802385214],[656512,1705344,1975301917270118,1975303102434961],[656512,1705984,15222905730833912,15222908177460183],[656512,1707136,1975301912872117,1975303106832961],[656512,1736704,-28470512979312287,-28470509817570824],[656512,1737856,-3950606212356198,-3950603827053960],[656512,3146880,13247603808044578,13247605080544438],[656512,3276928,-26495210000373866,-26495207776804167],[656512,3277824,13247603817961795,13247605070627222],[656512,3670144,13247603817961795,13247605070627222],[656512,3671040,-26495210000373866,-26495207776804167],[656512,3801088,13247603808044578,13247605080544438],[656512,67108872,22544603251852693,22544604485915178],[656512,67108928,22544603248067364,22544604489700504],[656512,67109120,-22544604489700504,-22544603248067364],[656512,67110024,20569300117262707,20569302600800082],[656512,67110080,22544603248067364,22544604489700504],[656512,67110272,-22544604489700504,-22544603248067364],[656512,67110912,-22544604485915178,-22544603251852693],[656512,67112064,-22544604485915178,-22544603251852693],[656512,67240072,-37767513094879325,-37767508551182639],[656512,67240968,39742811531898000,39742815133869046],[656512,67272832,-11272302995044411,-11272300873839524],[656512,67273728,11272300873839524,11272302995044411],[656512,67633288,39742811531898000,39742815133869046],[656512,67634184,-37767513094879325,-37767508551182639],[656512,67666048,11272300873839524,11272302995044411],[656512,67666944,-11272302995044411,-11272300873839524],[656512,67764232,20569300117262707,20569302600800082],[656512,67764288,22544603248067364,22544604489700504],[656512,67764480,-22544604489700504,-22544603248067364],[656512,67765384,22544603251852693,22544604485915178],[656512,67765440,22544603248067364,22544604489700504],[656512,67765632,-22544604489700504,-22544603248067364],[656512,67766272,-22544604485915178,-22544603251852693],[656512,67767424,-22544604485915178,-22544603251852693],[656512,68157440,-45089208969627452,-45089206505908288],[656512,68158592,-49039814477679612,-49039811037266288],[656512,68288640,15222904792925496,15222909115368599],[656512,68289536,-11272302995044411,-11272300873839524],[656512,68681856,-11272302995044411,-11272300873839524],[656512,68682752,15222904792925496,15222909115368599],[656512,68812800,-49039814477679612,-49039811037266288],[656512,68813952,-45089208969627452,-45089206505908288],[656512,135267456,13247603811716528,13247605076872486],[656512,135397504,-26495209992202640,-26495207784975390],[656512,135398400,13247603822461068,13247605066127948],[656512,135790720,13247603822461068,13247605066127948],[656512,135791616,-26495209992202640,-26495207784975390],[656512,135921664,13247603811716528,13247605076872486],[656512,268435464,-9297000663454110,-9296998185724745],[656512,268435520,-22544604489700504,-22544603248067364],[656512,268435712,22544603248067364,22544604489700504],[656512,268436616,-22544604485915178,-22544603251852693],[656512,268436672,-22544604489700504,-22544603248067364],[656512,268436864,22544603248067364,22544604489700504],[656512,268437504,22544603251852693,22544604485915178],[656512,268438656,22544603251852693,22544604485915178],[656512,268566664,51015113006242213,51015117528408767],[656512,268567560,-37767513094879325,-37767508551182639],[656512,268599424,11272300873839524,11272302995044411],[656512,268600320,-11272302995044411,-11272300873839524],[656512,268959880,-37767513094879325,-37767508551182639],[656512,268960776,51015113006242213,51015117528408767],[656512,268992640,-11272302995044411,-11272300873839524],[656512,268993536,11272300873839524,11272302995044411],[656512,269090824,-22544604485915178,-22544603251852693],[656512,269090880,-22544604489700504,-22544603248067364],[656512,269091072,22544603248067364,22544604489700504],[656512,269091976,-9297000663454110,-9296998185724745],[656512,269092032,-22544604489700504,-22544603248067364],[656512,269092224,22544603248067364,22544604489700504],[656512,269092864,22544603251852693,22544604485915178],[656512,269094016,22544603251852693,22544604485915178],[656512,269484032,47064508847957192,47064511647283630],[656512,269485184,22544602318599624,22544605419168246],[656512,269615232,13247602285191671,13247606603397346],[656512,269616128,11272299936568599,11272303932315336],[656512,270008448,11272299936568599,11272303932315336],[656512,270009344,13247602285191671,13247606603397346],[656512,270139392,22544602318599624,22544605419168246],[656512,270140544,47064508847957192,47064511647283630],[656512,335675520,28470509608204269,28470513188678840],[656512,335676416,-28470513188678840,-28470509608204269],[656512,336068736,-28470513188678840,-28470509608204269],[656512,336069632,28470509608204269,28470513188678840],[656522,130,-24519908161078011,-24519904596394939],[656522,136,35792205719323062,35792210907033824],[656522,1026,26495207577110300,26495210200067732],[656522,1032,-39742815133869046,-39742811531898000],[656522,1162,-1975303142599947,-1975301877105131],[656522,131074,-13247605061713792,-13247603826875223],[656522,131080,13247603826875223,13247605061713792],[656522,131200,-6623804014035016,-6623800430259491],[656522,131210,4648499056652180,4648500367937249],[656522,132096,8599103418984813,8599106045014772],[656522,132106,-4648500367937249,-4648499056652180],[656522,132226,-9297001142627820,-9296997706551035],[656522,132232,11272300692285237,11272303176598696],[656522,524290,11272300692285237,11272303176598696],[656522,524296,-9297001142627820,-9296997706551035],[656522,524416,-4648500367937249,-4648499056652180],[656522,524426,8599103418984813,8599106045014772],[656522,525312,4648499056652180,4648500367937249],[656522,525322,-6623804014035016,-6623800430259491],[656522,525442,13247603826875223,13247605061713792],[656522,525448,-13247605061713792,-13247603826875223],[656522,655360,-1975303142599947,-1975301877105131],[656522,655490,-39742815133869046,-39742811531898000],[656522,655496,26495207577110300,26495210200067732],[656522,656386,35792205719323062,35792210907033824],[656522,656392,-24519908161078011,-24519904596394939],[656524,132,-24519908088594729,-24519904668878218],[656524,136,-2449893888,2449893882],[656524,1028,26495207626385616,26495210150792412],[656524,1032,-24519908088594729,-24519904668878218],[656524,1164,-22544604444342592,-22544603293425280],[656524,131076,-13247605037567427,-13247603851021587],[656524,131080,13247603851021587,13247605037567427],[656524,131200,11272300305719853,11272303563164086],[656524,131212,-13247605037567427,-13247603851021587],[656524,132096,11272300739639564,11272303129244369],[656524,132108,13247603851021587,13247605037567427],[656524,132228,11272300305719853,11272303563164086],[656524,132232,11272300739639564,11272303129244369],[656524,524292,11272300739639564,11272303129244369],[656524,524296,11272300305719853,11272303563164086],[656524,524416,13247603851021587,13247605037567427],[656524,524428,11272300739639564,11272303129244369],[656524,525312,-13247605037567427,-13247603851021587],[656524,525324,11272300305719853,11272303563164086],[656524,525444,13247603851021587,13247605037567427],[656524,525448,-13247605037567427,-13247603851021587],[656524,655360,-22544604444342592,-22544603293425280],[656524,655492,-24519908088594729,-24519904668878218],[656524,655496,26495207626385616,26495210150792412],[656524,656388,-2449893888,2449893882],[656524,656392,-24519908088594729,-24519904668878218],[656578,131074,-13247605067077166,-13247603821511848],[656578,131136,13247603821511848,13247605067077166],[656578,132226,-13247605067077166,-13247603821511848],[656578,132288,13247603821511848,13247605067077166],[656578,524290,13247603821511848,13247605067077166],[656578,524352,-13247605067077166,-13247603821511848],[656578,525442,13247603821511848,13247605067077166],[656578,525504,-13247605067077166,-13247603821511848],[656584,72,31841601898078136,31841604688868588],[656584,136,-47064513301573545,-47064507193667275],[656584,1032,5925906044742719,5925909014372521],[656584,1224,-9297000206694220,-9296998642484636],[656584,131080,11272301159430177,11272302709453757],[656584,131136,-22544606653723935,-22544601084043932],[656584,131200,4648493631385954,4648505793203474],[656584,131272,-21846710653066666,-21846707699521935],[656584,132096,15920798685149414,15920804608323947],[656584,132168,42416007508370071,42416013562281321],[656584,132232,-9297000814034204,-9296998035144653],[656584,132288,-1975304066969121,-1975300952735957],[656584,524296,-1975304066969121,-1975300952735957],[656584,524352,-9297000814034204,-9296998035144653],[656584,524416,42416007508370071,42416013562281321],[656584,524488,15920798685149414,15920804608323947],[656584,525312,-21846710653066666,-21846707699521935],[656584,525384,4648493631385954,4648505793203474],[656584,525448,-22544606653723935,-22544601084043932],[656584,525504,11272301159430177,11272302709453757],[656584,655360,-9297000206694220,-9296998642484636],[656584,655552,5925906044742719,5925909014372521],[656584,656448,-47064513301573545,-47064507193667275],[656584,656512,31841601898078136,31841604688868588],[656640,131328,3950600812107830,3950609227302328],[656640,131464,26495207784975390,26495209992202640],[656640,131520,-6623803284297315,-6623801159997192],[656640,132096,-3950609227302328,-3950600812107830],[656640,132232,-26495209992202640,-26495207784975390],[656640,132288,6623801159997192,6623803284297315],[656640,524544,-3950609227302328,-3950600812107830],[656640,524680,-26495209992202640,-26495207784975390],[656640,524736,6623801159997192,6623803284297315],[656640,525312,3950600812107830,3950609227302328],[656640,525448,26495207784975390,26495209992202640],[656640,525504,-6623803284297315,-6623801159997192],[656776,264,-45089208971600236,-45089206503935504],[656776,1032,45089206503935504,45089208971600236],[656776,131328,49039810287641238,49039815227304660],[656776,131464,3950603783705734,3950606255704424],[656776,132096,-49039815227304660,-49039810287641238],[656776,132232,-3950606255704424,-3950603783705734],[656776,524544,-3950606255704424,-3950603783705734],[656776,524680,-49039815227304660,-49039810287641238],[656776,525312,3950603783705734,3950606255704424],[656776,525448,49039810287641238,49039815227304660],[656776,655744,45089206503935504,45089208971600236],[656776,656512,-45089208971600236,-45089206503935504],[656832,131136,26495207710839176,26495210066338854],[656832,131328,-22544606281953756,-22544601455814116],[656832,131520,3950603784385098,3950606255025060],[656832,132096,-3950606255025060,-3950603784385098],[656832,132288,22544601455814116,22544606281953756],[656832,132480,-26495210066338854,-26495207710839176],[656832,524352,-26495210066338854,-26495207710839176],[656832,524544,22544601455814116,22544606281953756],[656832,524736,-3950606255025060,-3950603784385098],[656832,525312,3950603784385098,3950606255025060],[656832,525504,-22544606281953756,-22544601455814116],[656832,525696,26495207710839176,26495210066338854],[657280,131328,-13247605067077166,-13247603821511848],[657280,131584,13247603821511848,13247605067077166],[657280,132480,-13247605067077166,-13247603821511848],[657280,132736,13247603821511848,13247605067077166],[657280,524544,13247603821511848,13247605067077166],[657280,524800,-13247605067077166,-13247603821511848],[657280,525696,13247603821511848,13247605067077166],[657280,525952,-13247605067077166,-13247603821511848],[657416,3208,-18594000503636004,-18593997194721705],[657416,132232,22544602288119128,22544605449648746],[657416,134272,-3950608254927041,-3950601784483124],[657416,525448,-3950608254927041,-3950601784483124],[657416,527488,22544602288119128,22544605449648746],[657416,656512,-18594000503636004,-18593997194721705],[657416,1051656,13247603817961795,13247605070627222],[657416,1182720,-13247605070627222,-13247603817961795],[657416,1573896,-13247605070627222,-13247603817961795],[657416,1704960,13247603817961795,13247605070627222],[657416,3147784,13247603808044578,13247605080544438],[657416,3278848,-13247605080544438,-13247603808044578],[657416,3670024,-13247605080544438,-13247603808044578],[657416,3801088,13247603808044578,13247605080544438],[657472,132288,24519905292829456,24519907464643493],[657472,134272,-24519907464643493,-24519905292829456],[657472,525504,-24519907464643493,-24519905292829456],[657472,527488,24519905292829456,24519907464643493],[657536,1032,45089206494936958,45089208980598784],[657536,3208,18593997194721705,18594000503636004],[657536,33792,1975301912872117,1975303106832961],[657536,35968,1975301912872117,1975303106832961],[657536,131200,13247602731588215,13247606157000801],[657536,132232,-2231218221,2231218224],[657536,132288,-26495209977993164,-26495207799184865],[657536,132480,13247603821511848,13247605067077166],[657536,132736,13247603826875223,13247605061713792],[657536,133120,-13247606157000801,-13247602731588215],[657536,134152,26495207769155642,26495210008022388],[657536,134208,26495207799184865,26495209977993164],[657536,134400,-13247605067077166,-13247603821511848],[657536,134656,-13247605061713792,-13247603826875223],[657536,524416,-13247606157000801,-13247602731588215],[657536,525448,26495207769155642,26495210008022388],[657536,525504,26495207799184865,26495209977993164],[657536,525696,-13247605067077166,-13247603821511848],[657536,525952,-13247605061713792,-13247603826875223],[657536,526336,13247602731588215,13247606157000801],[657536,527368,-2231218221,2231218224],[657536,527424,-26495209977993164,-26495207799184865],[657536,527616,13247603821511848,13247605067077166],[657536,527872,13247603826875223,13247605061713792],[657536,656392,18593997194721705,18594000503636004],[657536,658568,45089206494936958,45089208980598784],[657536,689152,1975301912872117,1975303106832961],[657536,691328,1975301912872117,1975303106832961],[657536,1049600,-1975303106832961,-1975301912872117],[657536,1051776,-15222908177460183,-15222905730833912],[657536,1180800,39742811597483621,39742815068283432],[657536,1182720,-26495210148454004,-26495207628724032],[657536,1574016,-26495210148454004,-26495207628724032],[657536,1575936,39742811597483621,39742815068283432],[657536,1704960,-15222908177460183,-15222905730833912],[657536,1707136,-1975303106832961,-1975301912872117],[657536,2229376,13247603817961795,13247605070627222],[657536,2231296,-13247605070627222,-13247603817961795],[657536,2622592,-13247605070627222,-13247603817961795],[657536,2624512,13247603817961795,13247605070627222],[657536,3147904,-13247605080544438,-13247603808044578],[657536,3276928,26495207776804167,26495210000373866],[657536,3278848,-13247605070627222,-13247603817961795],[657536,3670144,-13247605070627222,-13247603817961795],[657536,3672064,26495207776804167,26495210000373866],[657536,3801088,-13247605080544438,-13247603808044578],[657536,33686656,13247603851021587,13247605037567427],[657536,33688576,-13247605037567427,-13247603851021587],[657536,34079872,-13247605037567427,-13247603851021587],[657536,34081792,13247603851021587,13247605037567427],[657536,67109888,22544603251852693,22544604485915178],[657536,67112064,22544603251852693,22544604485915178],[657536,67765248,22544603251852693,22544604485915178],[657536,67767424,22544603251852693,22544604485915178],[657536,268436480,-22544604485915178,-22544603251852693],[657536,268438656,-22544604485915178,-22544603251852693],[657536,269091840,-22544604485915178,-22544603251852693],[657536,269094016,-22544604485915178,-22544603251852693],[658432,132096,-3950609278673694,-3950600760736484],[658432,132232,-26495210000373866,-26495207776804167],[658432,133120,3950600760736484,3950609278673694],[658432,133256,26495207776804167,26495210000373866],[658432,525312,3950600760736484,3950609278673694],[658432,525448,26495207776804167,26495210000373866],[658432,526336,-3950609278673694,-3950600760736484],[658432,526472,-26495210000373866,-26495207776804167],[658432,3277824,-26495210000373866,-26495207776804167],[658432,3278848,26495207776804167,26495210000373866],[658432,3671040,26495207776804167,26495210000373866],[658432,3672064,-26495210000373866,-26495207776804167],[658568,1032,45089206494936958,45089208980598784],[658568,2056,-45089208980598784,-45089206494936958],[658568,132096,-49039815256755116,-49039810258190782],[658568,132232,-3950606276156332,-3950603763253824],[658568,133120,49039810258190782,49039815256755116],[658568,133256,3950603763253824,3950606276156332],[658568,525312,3950603763253824,3950606276156332],[658568,525448,49039810258190782,49039815256755116],[658568,526336,-3950606276156332,-3950603763253824],[658568,526472,-49039815256755116,-49039810258190782],[658568,656512,-45089208980598784,-45089206494936958],[658568,657536,45089206494936958,45089208980598784],[658624,132096,-1975303134066536,-1975301885638544],[658624,132288,-1975303134066536,-1975301885638544],[658624,133120,1975301885638544,1975303134066536],[658624,133312,1975301885638544,1975303134066536],[658624,525312,1975301885638544,1975303134066536],[658624,525504,1975301885638544,1975303134066536],[658624,526336,-1975303134066536,-1975301885638544],[658624,526528,-1975303134066536,-1975301885638544],[658816,131328,-13247605061713792,-13247603826875223],[658816,132096,26495207799184865,26495209977993164],[658816,132480,13247603821511848,13247605067077166],[658816,133120,-13247605067077166,-13247603821511848],[658816,133504,-26495209977993164,-26495207799184865],[658816,134272,13247603826875223,13247605061713792],[658816,524544,13247603826875223,13247605061713792],[658816,525312,-26495209977993164,-26495207799184865],[658816,525696,-13247605067077166,-13247603821511848],[658816,526336,13247603821511848,13247605067077166],[658816,526720,26495207799184865,26495209977993164],[658816,527488,-13247605061713792,-13247603826875223],[659072,131584,13247603826875223,13247605061713792],[659072,132736,13247603826875223,13247605061713792],[659072,133120,-13247605061713792,-13247603826875223],[659072,134272,-13247605061713792,-13247603826875223],[659072,524800,-13247605061713792,-13247603826875223],[659072,525952,-13247605061713792,-13247603826875223],[659072,526336,13247603826875223,13247605061713792],[659072,527488,13247603826875223,13247605061713792],[688129,12,13247603822461068,13247605066127948],[688129,132,-13247605066127948,-13247603822461068],[688129,32779,4648499087000812,4648500337588616],[688129,32781,15222905739731186,15222908168562909],[688129,32901,-13247605066127948,-13247603822461068],[688129,131073,-1975304216083780,-1975300803621296],[688129,131079,-1975303102434961,-1975301917270118],[688129,131083,-6623803284297315,-6623801159997192],[688129,131085,-47064511822048211,-47064508673192612],[688129,163840,1975300803621296,1975304216083780],[688129,163846,1975301917270118,1975303102434961],[688129,163850,1975301917270118,1975303102434961],[688129,163852,45089206614383552,45089208861152192],[688129,524289,1975300803621296,1975304216083780],[688129,524295,1975301917270118,1975303102434961],[688129,524299,1975301917270118,1975303102434961],[688129,524301,45089206614383552,45089208861152192],[688129,557056,-1975304216083780,-1975300803621296],[688129,557062,-1975303102434961,-1975301917270118],[688129,557066,-6623803284297315,-6623801159997192],[688129,557068,-47064511822048211,-47064508673192612],[688129,655370,4648499087000812,4648500337588616],[688129,655372,15222905739731186,15222908168562909],[688129,655492,-13247605066127948,-13247603822461068],[688129,688141,13247603822461068,13247605066127948],[688129,688261,-13247605066127948,-13247603822461068],[688129,1048580,-13247605033169427,-13247603855419588],[688129,1081349,-13247605033169427,-13247603855419588],[688129,1703940,-13247605033169427,-13247603855419588],[688129,1736709,-13247605033169427,-13247603855419588],[688129,67108868,13247603821617226,13247605066971786],[688129,67141637,13247603821617226,13247605066971786],[688129,67764228,13247603821617226,13247605066971786],[688129,67796997,13247603821617226,13247605066971786],[688129,268435460,-13247605066971786,-13247603821617226],[688129,268468229,-13247605066971786,-13247603821617226],[688129,269090820,-13247605066971786,-13247603821617226],[688129,269123589,-13247605066971786,-13247603821617226],[688129,1073872901,24519905289421414,24519907468051532],[688129,1073905668,-24519907468051532,-24519905289421414],[688129,1074266117,-24519907468051532,-24519905289421414],[688129,1074298884,24519905289421414,24519907468051532],[688130,0,-22544604789079442,-22544602948688426],[688130,12,-1975303134589986,-1975301885115096],[688130,136,13247603822461068,13247605066127948],[688130,32770,-15920803437427959,-15920799856045399],[688130,32779,-4648500337588616,-4648499087000812],[688130,32782,-1975303102434961,-1975301917270118],[688130,32842,-4648500367937248,-4648499056652179],[688130,32906,45089204203543548,45089211271992192],[688130,32962,-4648500367937248,-4648499056652179],[688130,131074,6623799192952293,6623805251342207],[688130,131079,1975301917270118,1975303102434961],[688130,131083,6623801159997192,6623803284297315],[688130,131086,-3950608765320955,-3950601274089200],[688130,131146,6623801098016984,6623803346277521],[688130,131210,-9297003434088727,-9296995415090126],[688130,131266,4648499056652179,4648500367937248],[688130,163840,-13247606153429752,-13247602735159258],[688130,163845,-1975303102434961,-1975301917270118],[688130,163849,-1975303102434961,-1975301917270118],[688130,163852,3950601736070570,3950608303339582],[688130,163912,-1975303134066535,-1975301885638543],[688130,163976,-22544604485915178,-22544603251852693],[688130,524290,-13247606153429752,-13247602735159258],[688130,524295,-1975303102434961,-1975301917270118],[688130,524299,-1975303102434961,-1975301917270118],[688130,524302,3950601736070570,3950608303339582],[688130,524362,-1975303134066535,-1975301885638543],[688130,524426,-22544604485915178,-22544603251852693],[688130,557056,6623799192952293,6623805251342207],[688130,557061,1975301917270118,1975303102434961],[688130,557065,6623801159997192,6623803284297315],[688130,557068,-3950608765320955,-3950601274089200],[688130,557128,6623801098016984,6623803346277521],[688130,557192,-9297003434088727,-9296995415090126],[688130,557248,4648499056652179,4648500367937248],[688130,655360,-15920803437427959,-15920799856045399],[688130,655369,-4648500337588616,-4648499087000812],[688130,655372,-1975303102434961,-1975301917270118],[688130,655432,-4648500367937248,-4648499056652179],[688130,655496,45089204203543548,45089211271992192],[688130,655552,-4648500367937248,-4648499056652179],[688130,688130,-22544604789079442,-22544602948688426],[688130,688142,-1975303134589986,-1975301885115096],[688130,688266,13247603822461068,13247605066127948],[688130,1048584,13247603855419588,13247605033169427],[688130,1081354,6623801159997192,6623803284297315],[688130,1179658,6623801172992632,6623803271301876],[688130,1605640,6623801172992632,6623803271301876],[688130,1703944,6623801159997192,6623803284297315],[688130,1736714,13247603855419588,13247605033169427],[688130,67108872,-11272302707496740,-11272301161387192],[688130,67141642,-17896105125322940,-17896103187855503],[688130,67239946,6623801107293350,6623803337001160],[688130,67272712,-932612781,932612782],[688130,67633162,-932612781,932612782],[688130,67665928,6623801107293350,6623803337001160],[688130,67764232,-17896105125322940,-17896103187855503],[688130,67797002,-11272302707496740,-11272301161387192],[688130,268435464,13247603821617226,13247605066971786],[688130,268468234,24519905258499972,24519907498972975],[688130,268566538,-11272303056635485,-11272300812248450],[688130,268992520,-11272303056635485,-11272300812248450],[688130,269090824,24519905258499972,24519907498972975],[688130,269123594,13247603821617226,13247605066971786],[688130,1073741832,-1975303134066536,-1975301885638544],[688130,1073872906,-26495209977752878,-26495207799425147],[688130,1073905672,24519905293069738,24519907464403207],[688130,1074266122,24519905293069738,24519907464403207],[688130,1074298888,-26495209977752878,-26495207799425147],[688130,1074429962,-1975303134066536,-1975301885638544],[688132,0,-49039814800838354,-49039810714107552],[688132,9,-13247605066127948,-13247603822461068],[688132,129,13247603822461068,13247605066127948],[688132,136,26495207692945056,26495210084232978],[688132,32772,-34514803440217642,-34514797551613446],[688132,32781,-15222908168562909,-15222905739731186],[688132,32782,-4648500337588616,-4648499087000812],[688132,32901,13247603822461068,13247605066127948],[688132,32908,66238017807040958,66238026635904120],[688132,131076,296947377306566843,296947428089998092],[688132,131085,49039810732001672,49039814782944230],[688132,131086,6623801159997192,6623803284297315],[688132,131212,7321690308104443,7321703521369331],[688132,163840,-311472436788867910,-311472393130811843],[688132,163849,-47064511822048211,-47064508673192612],[688132,163850,-1975303102434961,-1975301917270118],[688132,163976,-47064513169575377,-47064507325665441],[688132,524292,-311472436788867910,-311472393130811843],[688132,524301,-47064511822048211,-47064508673192612],[688132,524302,-1975303102434961,-1975301917270118],[688132,524428,-47064513169575377,-47064507325665441],[688132,557056,296947377306566843,296947428089998092],[688132,557065,49039810732001672,49039814782944230],[688132,557066,6623801159997192,6623803284297315],[688132,557192,7321690308104443,7321703521369331],[688132,655360,-34514803440217642,-34514797551613446],[688132,655369,-15222908168562909,-15222905739731186],[688132,655370,-4648500337588616,-4648499087000812],[688132,655489,13247603822461068,13247605066127948],[688132,655496,66238017807040958,66238026635904120],[688132,688132,-49039814800838354,-49039810714107552],[688132,688141,-13247605066127948,-13247603822461068],[688132,688261,13247603822461068,13247605066127948],[688132,688268,26495207692945056,26495210084232978],[688132,1048577,13247603855419588,13247605033169427],[688132,1048584,26495207753551168,26495210023626872],[688132,1081349,13247603855419588,13247605033169427],[688132,1081356,19871405230482798,19871408102400732],[688132,1179660,-17896106200962633,-17896102112215810],[688132,1179780,24519905343287280,24519907414185673],[688132,1212424,24519905343287280,24519907414185673],[688132,1212544,-24519907414185673,-24519905343287280],[688132,1572876,24519905343287280,24519907414185673],[688132,1572996,-24519907414185673,-24519905343287280],[688132,1605640,-17896106200962633,-17896102112215810],[688132,1605760,24519905343287280,24519907414185673],[688132,1703937,13247603855419588,13247605033169427],[688132,1703944,19871405230482798,19871408102400732],[688132,1736709,13247603855419588,13247605033169427],[688132,1736716,26495207753551168,26495210023626872],[688132,67108865,-13247605066971786,-13247603821617226],[688132,67108872,-24519907696178166,-24519905061294785],[688132,67141637,-13247605066971786,-13247603821617226],[688132,67141644,-31143710097437046,-31143707104330412],[688132,67239948,10574405079083164,10574409404621503],[688132,67240068,-3950606120324188,-3950603919085972],[688132,67272712,-3950606995955408,-3950603043454752],[688132,67272832,3950603919085972,3950606120324188],[688132,67633164,-3950606995955408,-3950603043454752],[688132,67633284,3950603919085972,3950606120324188],[688132,67665928,10574405079083164,10574409404621503],[688132,67666048,-3950606120324188,-3950603919085972],[688132,67764225,-13247605066971786,-13247603821617226],[688132,67764232,-31143710097437046,-31143707104330412],[688132,67796997,-13247605066971786,-13247603821617226],[688132,67797004,-24519907696178166,-24519905061294785],[688132,68288516,-24519907391505747,-24519905365967204],[688132,68321280,24519905365967204,24519907391505747],[688132,68681732,24519905365967204,24519907391505747],[688132,68714496,-24519907391505747,-24519905365967204],[688132,268435457,13247603821617226,13247605066971786],[688132,268435464,26495207710771912,26495210066406118],[688132,268468229,13247603821617226,13247605066971786],[688132,268468236,37767509188400696,37767512457661269],[688132,268566540,-15222909115368599,-15222904792925496],[688132,268566660,3950603919085972,3950606120324188],[688132,268599304,3950603919085972,3950606120324188],[688132,268599424,-3950606120324188,-3950603919085972],[688132,268959756,3950603919085972,3950606120324188],[688132,268959876,-3950606120324188,-3950603919085972],[688132,268992520,-15222909115368599,-15222904792925496],[688132,268992640,3950603919085972,3950606120324188],[688132,269090817,13247603821617226,13247605066971786],[688132,269090824,37767509188400696,37767512457661269],[688132,269123589,13247603821617226,13247605066971786],[688132,269123596,26495207710771912,26495210066406118],[688132,269615108,24519905365967204,24519907391505747],[688132,269647872,-24519907391505747,-24519905365967204],[688132,270008324,-24519907391505747,-24519905365967204],[688132,270041088,24519905365967204,24519907391505747],[688132,335675396,18593997143338122,18594000555019592],[688132,335708160,-18594000555019592,-18593997143338122],[688132,336068612,-18594000555019592,-18593997143338122],[688132,336101376,18593997143338122,18594000555019592],[688132,1073741832,11272300719992475,11272303148891462],[688132,1073741952,-13247605066127948,-13247603822461068],[688132,1073774604,13247603822461068,13247605066127948],[688132,1073774724,-13247605066127948,-13247603822461068],[688132,1073872901,-24519907468051532,-24519905289421414],[688132,1073872908,-51015117307046807,-51015113227604174],[688132,1073905665,24519905289421414,24519907468051532],[688132,1073905672,49039810732001672,49039814782944230],[688132,1074266117,24519905289421414,24519907468051532],[688132,1074266124,49039810732001672,49039814782944230],[688132,1074298881,-24519907468051532,-24519905289421414],[688132,1074298888,-51015117307046807,-51015113227604174],[688132,1074397192,13247603822461068,13247605066127948],[688132,1074397312,-13247605066127948,-13247603822461068],[688132,1074429964,11272300719992475,11272303148891462],[688132,1074430084,-13247605066127948,-13247603822461068],[688132,1074790400,-13247605033169427,-13247603855419588],[688132,1074823172,-13247605033169427,-13247603855419588],[688132,1075445760,-13247605033169427,-13247603855419588],[688132,1075478532,-13247605033169427,-13247603855419588],[688132,1140850688,13247603821617226,13247605066971786],[688132,1140883460,13247603821617226,13247605066971786],[688132,1141506048,13247603821617226,13247605066971786],[688132,1141538820,13247603821617226,13247605066971786],[688132,1342177280,-13247605066971786,-13247603821617226],[688132,1342210052,-13247605066971786,-13247603821617226],[688132,1342832640,-13247605066971786,-13247603821617226],[688132,1342865412,-13247605066971786,-13247603821617226],[688135,131073,-1975303102434961,-1975301917270118],[688135,131074,1975301917270118,1975303102434961],[688135,163845,-1975303102434961,-1975301917270118],[688135,163846,1975301917270118,1975303102434961],[688135,524289,1975301917270118,1975303102434961],[688135,524290,-1975303102434961,-1975301917270118],[688135,557061,1975301917270118,1975303102434961],[688135,557062,-1975303102434961,-1975301917270118],[688136,0,-3375919900,3375919900],[688136,6,1975301885115096,1975303134589986],[688136,130,-13247605066127948,-13247603822461068],[688136,132,67633806609648820,67633816603654788],[688136,32776,-48767744686891983,-48767696654383246],[688136,32782,6623801159997192,6623803284297315],[688136,32906,-42416014583842896,-42416006486808497],[688136,32908,7321690308104443,7321703521369331],[688136,32968,17896102843574241,17896105469604200],[688136,33928,-1198509906,1198509903],[688136,131080,-258754116160104515,-258754062378889847],[688136,131085,-15222908168562909,-15222905739731186],[688136,131086,-697899214028262,-697890171151008],[688136,131210,4648494875353022,4648504549236406],[688136,131212,17198202099309824,17198216828689364],[688136,131272,-17896105469604200,-17896102843574241],[688136,132232,-1198509903,1198509906],[688136,163840,307521786696231667,307521833184037924],[688136,163845,15222905739731186,15222908168562909],[688136,163846,-3950608765320955,-3950601274089200],[688136,163970,24519905292829456,24519907464643493],[688136,163972,43113898635137411,43113911820693235],[688136,524296,307521786696231667,307521833184037924],[688136,524301,15222905739731186,15222908168562909],[688136,524302,-3950608765320955,-3950601274089200],[688136,524426,24519905292829456,24519907464643493],[688136,524428,43113898635137411,43113911820693235],[688136,557056,-258754116160104515,-258754062378889847],[688136,557061,-15222908168562909,-15222905739731186],[688136,557062,-697899214028262,-697890171151008],[688136,557186,4648494875353022,4648504549236406],[688136,557188,17198202099309824,17198216828689364],[688136,557248,-17896105469604200,-17896102843574241],[688136,558208,-1198509903,1198509906],[688136,655360,-48767744686891983,-48767696654383246],[688136,655366,6623801159997192,6623803284297315],[688136,655490,-42416014583842896,-42416006486808497],[688136,655492,7321690308104443,7321703521369331],[688136,655552,17896102843574241,17896105469604200],[688136,656512,-1198509906,1198509903],[688136,688136,-3375919900,3375919900],[688136,688142,1975301885115096,1975303134589986],[688136,688266,-13247605066127948,-13247603822461068],[688136,688268,67633806609648820,67633816603654788],[688136,1048578,-13247605033169427,-13247603855419588],[688136,1048580,-22544606196572912,-22544601541194970],[688136,1048704,-13247605037567427,-13247603851021587],[688136,1081354,-6623803284297315,-6623801159997192],[688136,1081356,8599101715170092,8599107748829489],[688136,1081480,-13247609036357290,-13247599852231728],[688136,1179658,-6623803271301876,-6623801172992632],[688136,1179660,-6623803231071470,-6623801213223040],[688136,1179784,-24519910213370186,-24519902544102763],[688136,1212420,-24519907414185673,-24519905343287280],[688136,1212544,24519905343287280,24519907414185673],[688136,1572876,-24519907414185673,-24519905343287280],[688136,1573000,24519905343287280,24519907414185673],[688136,1605634,-6623803271301876,-6623801172992632],[688136,1605636,-6623803231071470,-6623801213223040],[688136,1605760,-24519910213370186,-24519902544102763],[688136,1703938,-6623803284297315,-6623801159997192],[688136,1703940,8599101715170092,8599107748829489],[688136,1704064,-13247609036357290,-13247599852231728],[688136,1736714,-13247605033169427,-13247603855419588],[688136,1736716,-22544606196572912,-22544601541194970],[688136,1736840,-13247605037567427,-13247603851021587],[688136,67108866,11272301161387192,11272302707496740],[688136,67108868,-22544606585988845,-22544601151779026],[688136,67108992,-22544606653723935,-22544601084043932],[688136,67141642,17896103187855503,17896105125322940],[688136,67141644,8599101685162166,8599107778837422],[688136,67141768,-6623804322724415,-6623800121570091],[688136,67239946,-6623803337001160,-6623801107293350],[688136,67239948,-6623804221568240,-6623800222726267],[688136,67240072,8599102631895649,8599106832103938],[688136,67272706,-932612782,932612781],[688136,67272708,-24519908352868090,-24519904404604862],[688136,67272832,-24519909487239803,-24519903270233145],[688136,67633162,-932612782,932612781],[688136,67633164,-24519908352868090,-24519904404604862],[688136,67633288,-24519909487239803,-24519903270233145],[688136,67665922,-6623803337001160,-6623801107293350],[688136,67665924,-6623804221568240,-6623800222726267],[688136,67666048,8599102631895649,8599106832103938],[688136,67764226,17896103187855503,17896105125322940],[688136,67764228,8599101685162166,8599107778837422],[688136,67764352,-6623804322724415,-6623800121570091],[688136,67797002,11272301161387192,11272302707496740],[688136,67797004,-22544606585988845,-22544601151779026],[688136,67797128,-22544606653723935,-22544601084043932],[688136,68157440,11272301204057192,11272302664826744],[688136,68190216,-6623803284330947,-6623801159963560],[688136,68288520,17896103248910824,17896105064267619],[688136,68321280,-873779583,873779583],[688136,68681736,-873779583,873779583],[688136,68714496,17896103248910824,17896105064267619],[688136,68812800,-6623803284330947,-6623801159963560],[688136,68845576,11272301204057192,11272302664826744],[688136,268435458,-13247605066971786,-13247603821617226],[688136,268435460,18593996439502170,18594001258855540],[688136,268435584,-13247605061713792,-13247603826875223],[688136,268468234,-24519907498972975,-24519905258499972],[688136,268468236,11272298579605019,11272305289278916],[688136,268468360,4648494866495498,4648504558093930],[688136,268566538,11272300812248450,11272303056635485],[688136,268566540,11272300873839524,11272302995044411],[688136,268566664,-21846713226576023,-21846705126012580],[688136,268599300,-3950606120324188,-3950603919085972],[688136,268599424,3950603919085972,3950606120324188],[688136,268959756,-3950606120324188,-3950603919085972],[688136,268959880,3950603919085972,3950606120324188],[688136,268992514,11272300812248450,11272303056635485],[688136,268992516,11272300873839524,11272302995044411],[688136,268992640,-21846713226576023,-21846705126012580],[688136,269090818,-24519907498972975,-24519905258499972],[688136,269090820,11272298579605019,11272305289278916],[688136,269090944,4648494866495498,4648504558093930],[688136,269123594,-13247605066971786,-13247603821617226],[688136,269123596,18593996439502170,18594001258855540],[688136,269123720,-13247605061713792,-13247603826875223],[688136,269516808,-13247606222252656,-13247602666336360],[688136,269615112,-11272302995044411,-11272300873839524],[688136,269647872,24519905365967204,24519907391505747],[688136,270008328,24519905365967204,24519907391505747],[688136,270041088,-11272302995044411,-11272300873839524],[688136,270139392,-13247606222252656,-13247602666336360],[688136,335544320,-9297000198160808,-9296998651018048],[688136,335577096,-49039814979929732,-49039810535016170],[688136,335675400,17198207846590140,17198211081409034],[688136,335708160,22544602323661876,22544605414105996],[688136,336068616,22544602323661876,22544605414105996],[688136,336101376,17198207846590140,17198211081409034],[688136,336199680,-49039814979929732,-49039810535016170],[688136,336232456,-9297000198160808,-9296998651018048],[688136,1073741826,1975301885638544,1975303134066536],[688136,1073741828,1975301917236486,1975303102468593],[688136,1073741952,49039810287641238,49039815227304660],[688136,1073774604,-26495209992202640,-26495207784975390],[688136,1073774728,26495207784975390,26495209992202640],[688136,1073872906,26495207799425147,26495209977752878],[688136,1073872908,11272298183630328,11272305685253609],[688136,1073873032,26495207799184865,26495209977993164],[688136,1073905666,-24519907464403207,-24519905293069738],[688136,1073905668,17198204925419946,17198214002579226],[688136,1073905792,-3950608451914177,-3950601587495984],[688136,1074266122,-24519907464403207,-24519905293069738],[688136,1074266124,17198204925419946,17198214002579226],[688136,1074266248,-3950608451914177,-3950601587495984],[688136,1074298882,26495207799425147,26495209977752878],[688136,1074298884,11272298183630328,11272305685253609],[688136,1074299008,26495207799184865,26495209977993164],[688136,1074397188,-26495209992202640,-26495207784975390],[688136,1074397312,26495207784975390,26495209992202640],[688136,1074429962,1975301885638544,1975303134066536],[688136,1074429964,1975301917236486,1975303102468593],[688136,1074430088,49039810287641238,49039815227304660],[688136,1074790400,1975301917270118,1975303102434961],[688136,1074823176,26495207861603338,26495209915574692],[688136,1074954240,-24519907391505747,-24519905365967204],[688136,1075314696,-24519907391505747,-24519905365967204],[688136,1075445760,26495207861603338,26495209915574692],[688136,1075478536,1975301917270118,1975303102434961],[688136,1140850688,-24519907159915920,-24519905597557028],[688136,1140883464,22544602330282044,22544605407485828],[688136,1140981768,1975300962522527,1975304057182551],[688136,1141014528,-49039814910578252,-49039810604367646],[688136,1141374984,-49039814910578252,-49039810604367646],[688136,1141407744,1975300962522527,1975304057182551],[688136,1141506048,22544602330282044,22544605407485828],[688136,1141538824,-24519907159915920,-24519905597557028],[688136,1342177280,22544603248067364,22544604489700504],[688136,1342210056,26495207799404518,26495209977773508],[688136,1342341120,-3950606107262344,-3950603932147814],[688136,1342701576,-3950606107262344,-3950603932147814],[688136,1342832640,26495207799404518,26495209977773508],[688136,1342865416,22544603248067364,22544604489700504],[688139,32769,4648499087000812,4648500337588616],[688139,32770,-4648500337588616,-4648499087000812],[688139,131073,-6623803284297315,-6623801159997192],[688139,131074,6623801159997192,6623803284297315],[688139,163849,-1975303102434961,-1975301917270118],[688139,163850,1975301917270118,1975303102434961],[688139,524289,1975301917270118,1975303102434961],[688139,524290,-1975303102434961,-1975301917270118],[688139,557065,6623801159997192,6623803284297315],[688139,557066,-6623803284297315,-6623801159997192],[688139,655369,-4648500337588616,-4648499087000812],[688139,655370,4648499087000812,4648500337588616],[688141,9,-13247605066127948,-13247603822461068],[688141,12,13247603822461068,13247605066127948],[688141,32769,1975301917270118,1975303102434961],[688141,32772,-1975303102434961,-1975301917270118],[688141,131073,-7321700200255013,-7321693629218766],[688141,131076,-3950609227302328,-3950600812107830],[688141,131080,-1975303102434961,-1975301917270118],[688141,131085,-13247605066127948,-13247603822461068],[688141,163840,13247603822461068,13247605066127948],[688141,163845,1975301917270118,1975303102434961],[688141,163849,-7321700200255013,-7321693629218766],[688141,163852,18593996485739860,18594001212617856],[688141,524289,18593996485739860,18594001212617856],[688141,524292,-7321700200255013,-7321693629218766],[688141,524296,1975301917270118,1975303102434961],[688141,524301,13247603822461068,13247605066127948],[688141,557056,-13247605066127948,-13247603822461068],[688141,557061,-1975303102434961,-1975301917270118],[688141,557065,-3950609227302328,-3950600812107830],[688141,557068,-7321700200255013,-7321693629218766],[688141,655369,-1975303102434961,-1975301917270118],[688141,655372,1975301917270118,1975303102434961],[688141,688129,13247603822461068,13247605066127948],[688141,688132,-13247605066127948,-13247603822461068],[688142,6,1975301885115096,1975303134589986],[688142,12,-1975303134589986,-1975301885115096],[688142,32770,-3950606237024947,-3950603802385214],[688142,32772,-4648500337588616,-4648499087000812],[688142,32776,8599103045112288,8599106418887301],[688142,131074,47064508673192612,47064511822048211],[688142,131076,8599103045112288,8599106418887301],[688142,131080,-53688314809080322,-53688310130455008],[688142,131086,1975301885115096,1975303134589986],[688142,163840,-1975303134589986,-1975301885115096],[688142,163846,47064508673192612,47064511822048211],[688142,163850,-3950606237024947,-3950603802385214],[688142,163852,-45089208861152192,-45089206614383552],[688142,524290,-45089208861152192,-45089206614383552],[688142,524292,-3950606237024947,-3950603802385214],[688142,524296,47064508673192612,47064511822048211],[688142,524302,-1975303134589986,-1975301885115096],[688142,557056,1975301885115096,1975303134589986],[688142,557062,-53688314809080322,-53688310130455008],[688142,557066,8599103045112288,8599106418887301],[688142,557068,47064508673192612,47064511822048211],[688142,655366,8599103045112288,8599106418887301],[688142,655370,-4648500337588616,-4648499087000812],[688142,655372,-3950606237024947,-3950603802385214],[688142,688130,-1975303134589986,-1975301885115096],[688142,688136,1975301885115096,1975303134589986],[688192,132,1975301885115096,1975303134589986],[688192,136,-1975303134589986,-1975301885115096],[688192,32832,4648497918699427,4648501505889997],[688192,32842,4648499056652179,4648500367937248],[688192,32962,4648499056652179,4648500367937248],[688192,32968,3950603717154982,3950606322255178],[688192,33216,4648499087000812,4648500337588616],[688192,33984,1975301917270118,1975303102434961],[688192,131136,-4648501505889997,-4648497918699427],[688192,131146,-6623803346277521,-6623801098016984],[688192,131266,-4648500367937248,-4648499056652179],[688192,131272,-26495210655649026,-26495207121529005],[688192,131520,-4648500337588616,-4648499087000812],[688192,132288,-1975303102434961,-1975301917270118],[688192,163850,1975301885638543,1975303134066535],[688192,163972,1975301885115096,1975303134589986],[688192,163976,20569300117262707,20569302600800082],[688192,524362,1975301885638543,1975303134066535],[688192,524484,1975301885115096,1975303134589986],[688192,524488,20569300117262707,20569302600800082],[688192,557056,-4648501505889997,-4648497918699427],[688192,557066,-6623803346277521,-6623801098016984],[688192,557186,-4648500367937248,-4648499056652179],[688192,557192,-26495210655649026,-26495207121529005],[688192,557440,-4648500337588616,-4648499087000812],[688192,558208,-1975303102434961,-1975301917270118],[688192,655360,4648497918699427,4648501505889997],[688192,655370,4648499056652179,4648500367937248],[688192,655490,4648499056652179,4648500367937248],[688192,655496,3950603717154982,3950606322255178],[688192,655744,4648499087000812,4648500337588616],[688192,656512,1975301917270118,1975303102434961],[688192,688324,1975301885115096,1975303134589986],[688192,688328,-1975303134589986,-1975301885115096],[688192,1081536,-6623803284297315,-6623801159997192],[688192,1179840,6623801159997192,6623803284297315],[688192,1605760,6623801159997192,6623803284297315],[688192,1704064,-6623803284297315,-6623801159997192],[688192,67108992,-1975303134066536,-1975301885638544],[688192,67272832,-1975303134066536,-1975301885638544],[688192,67633344,-1975303134066536,-1975301885638544],[688192,67797184,-1975303134066536,-1975301885638544],[688192,268468416,-6623803364300278,-6623801079994226],[688192,268566720,6623801079994226,6623803364300278],[688192,268992640,6623801079994226,6623803364300278],[688192,269090944,-6623803364300278,-6623801079994226],[688192,1073741952,1975301885638544,1975303134066536],[688192,1073905792,1975301885638544,1975303134066536],[688192,1074266304,1975301885638544,1975303134066536],[688192,1074430144,1975301885638544,1975303134066536],[688202,32770,-4648500367937248,-4648499056652179],[688202,32832,4648499056652179,4648500367937248],[688202,131074,6623801098016984,6623803346277521],[688202,131136,-6623803346277521,-6623801098016984],[688202,163850,1975301885638543,1975303134066535],[688202,163912,-1975303134066535,-1975301885638543],[688202,524290,-1975303134066535,-1975301885638543],[688202,524352,1975301885638543,1975303134066535],[688202,557066,-6623803346277521,-6623801098016984],[688202,557128,6623801098016984,6623803346277521],[688202,655370,4648499056652179,4648500367937248],[688202,655432,-4648500367937248,-4648499056652179],[688256,0,-18594001036550426,-18593996661807284],[688256,12,-3950606273531284,-3950603765878878],[688256,68,-1975303134589986,-1975301885115096],[688256,72,1975301885115096,1975303134589986],[688256,1028,-1975303111382023,-1975301908323058],[688256,1032,1975301908323058,1975303111382023],[688256,32896,60039999943769960,60040045266389211],[688256,32906,-4648500367937248,-4648499056652179],[688256,32908,-47064513169575377,-47064507325665441],[688256,32968,-8599106519433716,-8599102944565871],[688256,33928,-11272303635356703,-11272300233527231],[688256,33984,-6623803284297315,-6623801159997192],[688256,131200,-67361745915243333,-67361693124389608],[688256,131210,6623801098016984,6623803346277521],[688256,131212,43113898635137411,43113911820693235],[688256,131272,31143706348939894,31143710852827564],[688256,132232,13247602302125610,13247606586463402],[688256,132288,6623801159997192,6623803284297315],[688256,163840,-11272305028685690,-11272298840198250],[688256,163850,-1975303134066535,-1975301885638543],[688256,163852,-4276638122,4276638132],[688256,163908,-1975303134589986,-1975301885115096],[688256,163912,-20569302600800082,-20569300117262707],[688256,164868,-1975303111382023,-1975301908323058],[688256,164872,-1198509903,1198509906],[688256,524416,-11272305028685690,-11272298840198250],[688256,524426,-1975303134066535,-1975301885638543],[688256,524428,-4276638122,4276638132],[688256,524484,-1975303134589986,-1975301885115096],[688256,524488,-20569302600800082,-20569300117262707],[688256,525444,-1975303111382023,-1975301908323058],[688256,525448,-1198509903,1198509906],[688256,557056,-67361745915243333,-67361693124389608],[688256,557066,6623801098016984,6623803346277521],[688256,557068,43113898635137411,43113911820693235],[688256,557128,31143706348939894,31143710852827564],[688256,558088,13247602302125610,13247606586463402],[688256,558144,6623801159997192,6623803284297315],[688256,655360,60039999943769960,60040045266389211],[688256,655370,-4648500367937248,-4648499056652179],[688256,655372,-47064513169575377,-47064507325665441],[688256,655432,-8599106519433716,-8599102944565871],[688256,656392,-11272303635356703,-11272300233527231],[688256,656448,-6623803284297315,-6623801159997192],[688256,688256,-18594001036550426,-18593996661807284],[688256,688268,-3950606273531284,-3950603765878878],[688256,688324,-1975303134589986,-1975301885115096],[688256,688328,1975301885115096,1975303134589986],[688256,689284,-1975303111382023,-1975301908323058],[688256,689288,1975301908323058,1975303111382023],[688256,1048580,1975301908323058,1975303111382023],[688256,1048584,11272300739639564,11272303129244369],[688256,1081480,13247602302125610,13247606586463402],[688256,1081536,6623801159997192,6623803284297315],[688256,1082496,19871405230482798,19871408102400732],[688256,1179784,-2124775455,2124775457],[688256,1179840,-6623803284297315,-6623801159997192],[688256,1180800,-19871408102400732,-19871405230482798],[688256,1212420,1975301908323058,1975303111382023],[688256,1212424,-1975303111382023,-1975301908323058],[688256,1572996,1975301908323058,1975303111382023],[688256,1573000,-1975303111382023,-1975301908323058],[688256,1605640,-2124775455,2124775457],[688256,1605696,-6623803284297315,-6623801159997192],[688256,1606656,-19871408102400732,-19871405230482798],[688256,1703944,13247602302125610,13247606586463402],[688256,1704000,6623801159997192,6623803284297315],[688256,1704960,19871405230482798,19871408102400732],[688256,1736836,1975301908323058,1975303111382023],[688256,1736840,11272300739639564,11272303129244369],[688256,67108872,-9297000814034204,-9296998035144653],[688256,67108928,1975301885638544,1975303134066536],[688256,67109888,1975301917236486,1975303102468593],[688256,67141764,-26495209992202640,-26495207784975390],[688256,67141768,8599102661848405,8599106802151181],[688256,67240068,26495207784975390,26495209992202640],[688256,67240072,-19871408894185654,-19871404438697867],[688256,67272712,1975300959240085,1975304060464993],[688256,67272768,1975301885638544,1975303134066536],[688256,67273728,1975301917236486,1975303102468593],[688256,67633288,1975300959240085,1975304060464993],[688256,67633344,1975301885638544,1975303134066536],[688256,67634304,1975301917236486,1975303102468593],[688256,67665924,26495207784975390,26495209992202640],[688256,67665928,-19871408894185654,-19871404438697867],[688256,67764228,-26495209992202640,-26495207784975390],[688256,67764232,8599102661848405,8599106802151181],[688256,67797128,-9297000814034204,-9296998035144653],[688256,67797184,1975301885638544,1975303134066536],[688256,67798144,1975301917236486,1975303102468593],[688256,68157440,-1975303102468593,-1975301917236486],[688256,68321280,-1975303102468593,-1975301917236486],[688256,68681856,-1975303102468593,-1975301917236486],[688256,68845696,-1975303102468593,-1975301917236486],[688256,268435460,1975301885115096,1975303134589986],[688256,268435464,11272300692285237,11272303176598696],[688256,268468360,31143706348939894,31143710852827564],[688256,268468416,6623801079994226,6623803364300278],[688256,268469376,6623801159997192,6623803284297315],[688256,268566664,-17896106405885420,-17896101907293023],[688256,268566720,-6623803364300278,-6623801079994226],[688256,268567680,-6623803284297315,-6623801159997192],[688256,268599300,1975301885115096,1975303134589986],[688256,268599304,-1975303134589986,-1975301885115096],[688256,268959876,1975301885115096,1975303134589986],[688256,268959880,-1975303134589986,-1975301885115096],[688256,268992520,-17896106405885420,-17896101907293023],[688256,268992576,-6623803364300278,-6623801079994226],[688256,268993536,-6623803284297315,-6623801159997192],[688256,269090824,31143706348939894,31143710852827564],[688256,269090880,6623801079994226,6623803364300278],[688256,269091840,6623801159997192,6623803284297315],[688256,269123716,1975301885115096,1975303134589986],[688256,269123720,11272300692285237,11272303176598696],[688256,269516928,-6623803284297315,-6623801159997192],[688256,269615232,6623801159997192,6623803284297315],[688256,270041088,6623801159997192,6623803284297315],[688256,270139392,-6623803284297315,-6623801159997192],[688256,335544320,-1975303134066536,-1975301885638544],[688256,335708160,-1975303134066536,-1975301885638544],[688256,336068736,-1975303134066536,-1975301885638544],[688256,336232576,-1975303134066536,-1975301885638544],[688256,1073741832,-3950606255704424,-3950603783705734],[688256,1073741888,-1975303134066536,-1975301885638544],[688256,1073742848,-1975303102468593,-1975301917236486],[688256,1073774724,26495207784975390,26495209992202640],[688256,1073774728,-26495209992202640,-26495207784975390],[688256,1073873028,-26495209992202640,-26495207784975390],[688256,1073873032,-2193017774,2193017775],[688256,1073905672,22544602161328920,22544605576438951],[688256,1073905728,-1975303134066536,-1975301885638544],[688256,1073906688,-1975303102468593,-1975301917236486],[688256,1074266248,22544602161328920,22544605576438951],[688256,1074266304,-1975303134066536,-1975301885638544],[688256,1074267264,-1975303102468593,-1975301917236486],[688256,1074298884,-26495209992202640,-26495207784975390],[688256,1074298888,-2193017774,2193017775],[688256,1074397188,26495207784975390,26495209992202640],[688256,1074397192,-26495209992202640,-26495207784975390],[688256,1074430088,-3950606255704424,-3950603783705734],[688256,1074430144,-1975303134066536,-1975301885638544],[688256,1074431104,-1975303102468593,-1975301917236486],[688256,1074790400,1975301917236486,1975303102468593],[688256,1074954240,1975301917236486,1975303102468593],[688256,1075314816,1975301917236486,1975303102468593],[688256,1075478656,1975301917236486,1975303102468593],[688256,1140883584,-49039814461219948,-49039811053725950],[688256,1140981888,49039811053725950,49039814461219948],[688256,1141407744,49039811053725950,49039814461219948],[688256,1141506048,-49039814461219948,-49039811053725950],[688256,1342177280,1975301885638544,1975303134066536],[688256,1342341120,1975301885638544,1975303134066536],[688256,1342701696,1975301885638544,1975303134066536],[688256,1342865536,1975301885638544,1975303134066536],[688261,129,13247603822461068,13247605066127948],[688261,132,-13247605066127948,-13247603822461068],[688261,163969,13247603822461068,13247605066127948],[688261,163972,-13247605066127948,-13247603822461068],[688261,524289,-13247605066127948,-13247603822461068],[688261,524292,13247603822461068,13247605066127948],[688261,688129,-13247605066127948,-13247603822461068],[688261,688132,13247603822461068,13247605066127948],[688266,130,-13247605066127948,-13247603822461068],[688266,136,13247603822461068,13247605066127948],[688266,32770,-3950606322255178,-3950603717154982],[688266,32776,8599102944565871,8599106519433716],[688266,32896,-6623803535249348,-6623800909045159],[688266,32906,-1975303167312100,-1975301852392980],[688266,131074,26495207121529005,26495210655649026],[688266,131080,-33119013675829617,-33119008545642919],[688266,131200,8599102950409964,8599106513589621],[688266,131210,1975301852392980,1975303167312100],[688266,163850,-1975303134066535,-1975301885638543],[688266,163970,11272300226701508,11272303642182425],[688266,163976,-9297000663454110,-9296998185724745],[688266,524290,-9297000663454110,-9296998185724745],[688266,524296,11272300226701508,11272303642182425],[688266,524416,-1975303134066535,-1975301885638543],[688266,557056,1975301852392980,1975303167312100],[688266,557066,8599102950409964,8599106513589621],[688266,557186,-33119013675829617,-33119008545642919],[688266,557192,26495207121529005,26495210655649026],[688266,655360,-1975303167312100,-1975301852392980],[688266,655370,-6623803535249348,-6623800909045159],[688266,655490,8599102944565871,8599106519433716],[688266,655496,-3950606322255178,-3950603717154982],[688266,688130,13247603822461068,13247605066127948],[688266,688136,-13247605066127948,-13247603822461068],[688268,12,-3950606273531284,-3950603765878878],[688268,132,67633806609648820,67633816603654788],[688268,136,26495207692945056,26495210084232978],[688268,32772,-9297000684250004,-9296998164928852],[688268,32776,15222903999406109,15222909908887987],[688268,32896,-69609119710487749,-69609108522520937],[688268,32908,26495207692945056,26495210084232978],[688268,131076,15222903999406109,15222909908887987],[688268,131080,-58336815178304206,-58336809185820542],[688268,131200,20569298570795129,20569304147267651],[688268,131212,67633806609648820,67633816603654788],[688268,163840,-3950606273531284,-3950603765878878],[688268,163852,-45089208874918688,-45089206600617048],[688268,163972,20569298570795129,20569304147267651],[688268,163976,-69609119710487749,-69609108522520937],[688268,524292,-69609119710487749,-69609108522520937],[688268,524296,20569298570795129,20569304147267651],[688268,524416,-45089208874918688,-45089206600617048],[688268,524428,-3950606273531284,-3950603765878878],[688268,557056,67633806609648820,67633816603654788],[688268,557068,20569298570795129,20569304147267651],[688268,557188,-58336815178304206,-58336809185820542],[688268,557192,15222903999406109,15222909908887987],[688268,655360,26495207692945056,26495210084232978],[688268,655372,-69609119710487749,-69609108522520937],[688268,655492,15222903999406109,15222909908887987],[688268,655496,-9297000684250004,-9296998164928852],[688268,688132,26495207692945056,26495210084232978],[688268,688136,67633806609648820,67633816603654788],[688268,688256,-3950606273531284,-3950603765878878],[688322,32770,-4648500367937248,-4648499056652179],[688322,32832,4648499056652179,4648500367937248],[688322,131074,4648499056652179,4648500367937248],[688322,131136,-4648500367937248,-4648499056652179],[688322,557186,-4648500367937248,-4648499056652179],[688322,557248,4648499056652179,4648500367937248],[688322,655490,4648499056652179,4648500367937248],[688322,655552,-4648500367937248,-4648499056652179],[688324,68,-1975303134589986,-1975301885115096],[688324,132,1975301885115096,1975303134589986],[688324,32832,1975301885115096,1975303134589986],[688324,32896,-1975303134589986,-1975301885115096],[688324,655428,-1975303134589986,-1975301885115096],[688324,655492,1975301885115096,1975303134589986],[688324,688192,1975301885115096,1975303134589986],[688324,688256,-1975303134589986,-1975301885115096],[688328,72,1975301885115096,1975303134589986],[688328,136,-1975303134589986,-1975301885115096],[688328,32776,4648499056652179,4648500367937248],[688328,32832,-22544606482912750,-22544601254855122],[688328,32896,31143705012464284,31143712189303175],[688328,32968,13247603786922062,13247605101666952],[688328,131080,-4648500367937248,-4648499056652179],[688328,131136,-1975306059254087,-1975298960450994],[688328,131200,-6623806745939431,-6623797698355075],[688328,131272,-13247605101666952,-13247603786922062],[688328,163912,-22544604485915178,-22544603251852693],[688328,163976,22544603251852693,22544604485915178],[688328,524352,22544603251852693,22544604485915178],[688328,524416,-22544604485915178,-22544603251852693],[688328,557056,-13247605101666952,-13247603786922062],[688328,557128,-6623806745939431,-6623797698355075],[688328,557192,-1975306059254087,-1975298960450994],[688328,557248,-4648500367937248,-4648499056652179],[688328,655360,13247603786922062,13247605101666952],[688328,655432,31143705012464284,31143712189303175],[688328,655496,-22544606482912750,-22544601254855122],[688328,655552,4648499056652179,4648500367937248],[688328,688192,-1975303134589986,-1975301885115096],[688328,688256,1975301885115096,1975303134589986],[688384,33216,-4648500337588616,-4648499087000812],[688384,34176,-1975303102434961,-1975301917270118],[688384,131520,4648499087000812,4648500337588616],[688384,132480,1975301917270118,1975303102434961],[688384,557248,4648499087000812,4648500337588616],[688384,558208,1975301917270118,1975303102434961],[688384,655552,-4648500337588616,-4648499087000812],[688384,656512,-1975303102434961,-1975301917270118],[688384,1082624,13247603855419588,13247605033169427],[688384,1180928,-13247605033169427,-13247603855419588],[688384,1606656,-13247605033169427,-13247603855419588],[688384,1704960,13247603855419588,13247605033169427],[688576,32832,4648499087000812,4648500337588616],[688576,33024,-4648500337588616,-4648499087000812],[688576,131136,-4648500337588616,-4648499087000812],[688576,131328,4648499087000812,4648500337588616],[688576,557248,4648499087000812,4648500337588616],[688576,557440,-4648500337588616,-4648499087000812],[688576,655552,-4648500337588616,-4648499087000812],[688576,655744,4648499087000812,4648500337588616],[689152,132,1975301908323058,1975303111382023],[689152,136,-1975303111382023,-1975301908323058],[689152,33792,-8599107748829489,-8599101715170092],[689152,33928,9296998164928852,9297000684250004],[689152,33984,4648499087000812,4648500337588616],[689152,34176,1975301917270118,1975303102434961],[689152,35968,1975301912872117,1975303106832961],[689152,132096,8599101715170092,8599107748829489],[689152,132232,-11272303635356703,-11272300233527231],[689152,132288,-4648500337588616,-4648499087000812],[689152,132480,-1975303102434961,-1975301917270118],[689152,134272,-1975303106832961,-1975301912872117],[689152,163972,1975301908323058,1975303111382023],[689152,163976,-1198509906,1198509903],[689152,525444,1975301908323058,1975303111382023],[689152,525448,-1198509906,1198509903],[689152,557056,8599101715170092,8599107748829489],[689152,557192,-11272303635356703,-11272300233527231],[689152,557248,-4648500337588616,-4648499087000812],[689152,557440,-1975303102434961,-1975301917270118],[689152,559232,-1975303106832961,-1975301912872117],[689152,655360,-8599107748829489,-8599101715170092],[689152,655496,9296998164928852,9297000684250004],[689152,655552,4648499087000812,4648500337588616],[689152,655744,1975301917270118,1975303102434961],[689152,657536,1975301912872117,1975303106832961],[689152,689284,1975301908323058,1975303111382023],[689152,689288,-1975303111382023,-1975301908323058],[689152,1048580,22544603293425280,22544604444342592],[689152,1048584,-22544604444342592,-22544603293425280],[689152,1082496,8599101715170092,8599107748829489],[689152,1082624,-13247605033169427,-13247603855419588],[689152,1084416,-13247605037567427,-13247603851021587],[689152,1180800,-8599107748829489,-8599101715170092],[689152,1180928,13247603855419588,13247605033169427],[689152,1182720,13247603851021587,13247605037567427],[689152,1212420,22544603293425280,22544604444342592],[689152,1212424,-22544604444342592,-22544603293425280],[689152,1573892,22544603293425280,22544604444342592],[689152,1573896,-22544604444342592,-22544603293425280],[689152,1605760,-8599107748829489,-8599101715170092],[689152,1605888,13247603855419588,13247605033169427],[689152,1607680,13247603851021587,13247605037567427],[689152,1704064,8599101715170092,8599107748829489],[689152,1704192,-13247605033169427,-13247603855419588],[689152,1705984,-13247605037567427,-13247603851021587],[689152,1737732,22544603293425280,22544604444342592],[689152,1737736,-22544604444342592,-22544603293425280],[689152,3179520,-13247605036737943,-13247603851851071],[689152,3277824,13247603851851071,13247605036737943],[689152,3702784,13247603851851071,13247605036737943],[689152,3801088,-13247605036737943,-13247603851851071],[689152,67108992,-1975303102468593,-1975301917236486],[689152,67272832,-1975303102468593,-1975301917236486],[689152,67634304,-1975303102468593,-1975301917236486],[689152,67798144,-1975303102468593,-1975301917236486],[689152,68157440,-22544604430576096,-22544603307191776],[689152,68321280,-22544604430576096,-22544603307191776],[689152,68682752,-22544604430576096,-22544603307191776],[689152,68846592,-22544604430576096,-22544603307191776],[689152,135300096,-13247605033203059,-13247603855385956],[689152,135398400,13247603855385956,13247605033203059],[689152,135823360,13247603855385956,13247605033203059],[689152,135921664,-13247605033203059,-13247603855385956],[689152,268469376,-6623803284297315,-6623801159997192],[689152,268567680,6623801159997192,6623803284297315],[689152,268992640,6623801159997192,6623803284297315],[689152,269090944,-6623803284297315,-6623801159997192],[689152,269517824,26495207861603338,26495209915574692],[689152,269616128,-26495209915574692,-26495207861603338],[689152,270041088,-26495209915574692,-26495207861603338],[689152,270139392,26495207861603338,26495209915574692],[689152,1073741952,1975301917236486,1975303102468593],[689152,1073905792,1975301917236486,1975303102468593],[689152,1074267264,1975301917236486,1975303102468593],[689152,1074431104,1975301917236486,1975303102468593],[689152,1074790400,22544603307191776,22544604430576096],[689152,1074954240,22544603307191776,22544604430576096],[689152,1075315712,22544603307191776,22544604430576096],[689152,1075479552,22544603307191776,22544604430576096],[689284,132,1975301908323058,1975303111382023],[689284,1028,-1975303111382023,-1975301908323058],[689284,32896,-1975303111382023,-1975301908323058],[689284,33792,1975301908323058,1975303111382023],[689284,655492,1975301908323058,1975303111382023],[689284,656388,-1975303111382023,-1975301908323058],[689284,688256,-1975303111382023,-1975301908323058],[689284,689152,1975301908323058,1975303111382023],[689288,136,-1975303111382023,-1975301908323058],[689288,1032,1975301908323058,1975303111382023],[689288,32776,1975301912872117,1975303106832961],[689288,32896,13247601033521515,13247607855067498],[689288,33792,-17198211985863560,-17198206942135612],[689288,33928,-1975303111382023,-1975301908323058],[689288,131080,-1975303106832961,-1975301912872117],[689288,131200,-9297003724271436,-9296995124907418],[689288,132096,13247601033521515,13247607855067498],[689288,132232,1975301908323058,1975303111382023],[689288,163976,1975301912872117,1975303106832961],[689288,164872,-1975303106832961,-1975301912872117],[689288,524416,-1975303106832961,-1975301912872117],[689288,525312,1975301912872117,1975303106832961],[689288,557056,1975301908323058,1975303111382023],[689288,557192,13247601033521515,13247607855067498],[689288,558088,-9297003724271436,-9296995124907418],[689288,558208,-1975303106832961,-1975301912872117],[689288,655360,-1975303111382023,-1975301908323058],[689288,655496,-17198211985863560,-17198206942135612],[689288,656392,13247601033521515,13247607855067498],[689288,656512,1975301912872117,1975303106832961],[689288,688256,1975301908323058,1975303111382023],[689288,689152,-1975303111382023,-1975301908323058],[689344,32832,1975301917270118,1975303102434961],[689344,32896,-6623803284297315,-6623801159997192],[689344,33792,4648499087000812,4648500337588616],[689344,131136,-1975303102434961,-1975301917270118],[689344,131200,6623801159997192,6623803284297315],[689344,132096,-4648500337588616,-4648499087000812],[689344,557248,-4648500337588616,-4648499087000812],[689344,558144,6623801159997192,6623803284297315],[689344,558208,-1975303102434961,-1975301917270118],[689344,655552,4648499087000812,4648500337588616],[689344,656448,-6623803284297315,-6623801159997192],[689344,656512,1975301917270118,1975303102434961],[689536,33024,-1975303102434961,-1975301917270118],[689536,33792,1975301917270118,1975303102434961],[689536,131328,1975301917270118,1975303102434961],[689536,132096,-1975303102434961,-1975301917270118],[689536,557440,-1975303102434961,-1975301917270118],[689536,558208,1975301917270118,1975303102434961],[689536,655744,1975301917270118,1975303102434961],[689536,656512,-1975303102434961,-1975301917270118],[690176,35968,-1975303106832961,-1975301912872117],[690176,134272,1975301912872117,1975303106832961],[690176,558208,1975301912872117,1975303106832961],[690176,656512,-1975303106832961,-1975301912872117],[690176,1084416,13247603851021587,13247605037567427],[690176,1182720,-13247605037567427,-13247603851021587],[690176,1606656,-13247605037567427,-13247603851021587],[690176,1704960,13247603851021587,13247605037567427],[690176,3180544,13247603851851071,13247605036737943],[690176,3278848,-13247605036737943,-13247603851851071],[690176,3702784,-13247605036737943,-13247603851851071],[690176,3801088,13247603851851071,13247605036737943],[691328,33792,1975301912872117,1975303106832961],[691328,34816,-1975303106832961,-1975301912872117],[691328,132096,-1975303106832961,-1975301912872117],[691328,133120,1975301912872117,1975303106832961],[691328,558208,1975301912872117,1975303106832961],[691328,559232,-1975303106832961,-1975301912872117],[691328,656512,-1975303106832961,-1975301912872117],[691328,657536,1975301912872117,1975303106832961],[1048577,1162,-1975303102468593,-1975301917236486],[1048577,1164,-22544604430576096,-22544603307191776],[1048577,1218,-1975303102434961,-1975301917270118],[1048577,1346,13247603855385956,13247605033203059],[1048577,524426,13247603822433492,13247605066155522],[1048577,524428,-1975303102468593,-1975301917236486],[1048577,524482,-4648500337554984,-4648499087034444],[1048577,655370,-4648500337588616,-4648499087000812],[1048577,655372,-1975303102434961,-1975301917270118],[1048577,688132,13247603855419588,13247605033169427],[1048577,1049739,-1975303102468593,-1975301917236486],[1048577,1049741,-22544604430576096,-22544603307191776],[1048577,1049795,-1975303102434961,-1975301917270118],[1048577,1049923,13247603855385956,13247605033203059],[1048577,1573003,13247603822433492,13247605066155522],[1048577,1573005,-1975303102468593,-1975301917236486],[1048577,1573059,-4648500337554984,-4648499087034444],[1048577,1703947,-4648500337588616,-4648499087000812],[1048577,1703949,-1975303102434961,-1975301917270118],[1048577,1736709,13247603855419588,13247605033169427],[1048578,136,-11272305289278916,-11272298579605019],[1048578,192,-8599108093729955,-8599101370269630],[1048578,320,1975300784114970,1975304235590111],[1048578,1032,1975300413869816,1975304605835260],[1048578,1088,3950600828296569,3950609211113582],[1048578,1152,3950601606309328,3950608433100829],[1048578,1161,1975301917236486,1975303102468593],[1048578,1164,22544603307191776,22544604430576096],[1048578,1217,1975301917270118,1975303102434961],[1048578,1224,49039810292025454,49039815222920444],[1048578,1280,-13247606122970514,-13247602765618499],[1048578,1345,-13247605033203059,-13247603855385956],[1048578,1352,-13247605061599516,-13247603826989498],[1048578,1416,-13247605061599516,-13247603826989498],[1048578,1472,18593996492884744,18594001205472974],[1048578,1856,1975301892192548,1975303127512529],[1048578,3208,-13247605060886466,-13247603827702546],[1048578,3264,-13247605061713792,-13247603826875223],[1048578,3392,22544603251852693,22544604485915178],[1048578,131080,4648498045480102,4648501379109327],[1048578,132232,1975301885115096,1975303134589986],[1048578,524296,6623797698355075,6623806745939431],[1048578,524352,4648497448264558,4648501976324875],[1048578,524416,-8599108313708112,-8599101150291472],[1048578,524425,-13247605066155522,-13247603822433492],[1048578,524428,1975301917236486,1975303102468593],[1048578,524481,4648499087034444,4648500337554984],[1048578,524488,-22544606464959780,-22544601272808088],[1048578,524736,1975301917236486,1975303102468593],[1048578,525448,18593996439502170,18594001258855540],[1048578,525504,-22544606285700820,-22544601452067054],[1048578,525632,1975301917236486,1975303102468593],[1048578,655360,4648497918699427,4648501505889997],[1048578,655369,4648499087000812,4648500337588616],[1048578,655372,1975301917270118,1975303102434961],[1048578,655432,4648499056652179,4648500367937248],[1048578,655496,-22544606482912750,-22544601254855122],[1048578,655552,4648499056652179,4648500367937248],[1048578,656392,1975301885115096,1975303134589986],[1048578,688136,-13247605033169427,-13247603855419588],[1048578,1048714,-11272305289278916,-11272298579605019],[1048578,1048770,-8599108093729955,-8599101370269630],[1048578,1048898,1975300784114970,1975304235590111],[1048578,1049610,1975300413869816,1975304605835260],[1048578,1049666,3950600828296569,3950609211113582],[1048578,1049730,3950601606309328,3950608433100829],[1048578,1049739,1975301917236486,1975303102468593],[1048578,1049742,22544603307191776,22544604430576096],[1048578,1049795,1975301917270118,1975303102434961],[1048578,1049802,49039810292025454,49039815222920444],[1048578,1049858,-13247606122970514,-13247602765618499],[1048578,1049923,-13247605033203059,-13247603855385956],[1048578,1049930,-13247605061599516,-13247603826989498],[1048578,1049994,-13247605061599516,-13247603826989498],[1048578,1050050,18593996492884744,18594001205472974],[1048578,1050434,1975301892192548,1975303127512529],[1048578,1051786,-13247605060886466,-13247603827702546],[1048578,1051842,-13247605061713792,-13247603826875223],[1048578,1051970,22544603251852693,22544604485915178],[1048578,1179658,4648498045480102,4648501379109327],[1048578,1180810,1975301885115096,1975303134589986],[1048578,1572874,6623797698355075,6623806745939431],[1048578,1572930,4648497448264558,4648501976324875],[1048578,1572994,-8599108313708112,-8599101150291472],[1048578,1573003,-13247605066155522,-13247603822433492],[1048578,1573006,1975301917236486,1975303102468593],[1048578,1573059,4648499087034444,4648500337554984],[1048578,1573066,-22544606464959780,-22544601272808088],[1048578,1573314,1975301917236486,1975303102468593],[1048578,1574026,18593996439502170,18594001258855540],[1048578,1574082,-22544606285700820,-22544601452067054],[1048578,1574210,1975301917236486,1975303102468593],[1048578,1703938,4648497918699427,4648501505889997],[1048578,1703947,4648499087000812,4648500337588616],[1048578,1703950,1975301917270118,1975303102434961],[1048578,1704010,4648499056652179,4648500367937248],[1048578,1704074,-22544606482912750,-22544601254855122],[1048578,1704130,4648499056652179,4648500367937248],[1048578,1704970,1975301885115096,1975303134589986],[1048578,1736714,-13247605033169427,-13247603855419588],[1048578,2098312,-13247605061713792,-13247603826875223],[1048578,2098368,-13247605067077166,-13247603821511848],[1048578,2098496,1975301885638544,1975303134066536],[1048578,2621576,22544603251852693,22544604485915178],[1048578,2621632,1975301885638543,1975303134066535],[1048578,2752520,1975301892192549,1975303127512530],[1048578,3146890,-13247605061713792,-13247603826875223],[1048578,3146946,-13247605067077166,-13247603821511848],[1048578,3147074,1975301885638544,1975303134066536],[1048578,3670154,22544603251852693,22544604485915178],[1048578,3670210,1975301885638543,1975303134066535],[1048578,3801098,1975301892192549,1975303127512530],[1048578,67764232,4648499059714221,4648500364875210],[1048578,68812810,4648499059714221,4648500364875210],[1048578,134218888,-13247605066971786,-13247603821617226],[1048578,134218944,-13247605061578886,-13247603827010127],[1048578,134219072,1975301891852867,1975303127852212],[1048578,134742152,22544603248067364,22544604489700504],[1048578,134742208,1975301889664154,1975303130040923],[1048578,134873096,1975301885638544,1975303134066536],[1048578,135267466,-13247605066971786,-13247603821617226],[1048578,135267522,-13247605061578886,-13247603827010127],[1048578,135267650,1975301891852867,1975303127852212],[1048578,135790730,22544603248067364,22544604489700504],[1048578,135790786,1975301889664154,1975303130040923],[1048578,135921674,1975301885638544,1975303134066536],[1048578,268959880,1975301857911278,1975303161793801],[1048578,268959936,4648499057538562,4648500367050864],[1048578,269090824,-13247605096148654,-13247603792440361],[1048578,270008458,1975301857911278,1975303161793801],[1048578,270008514,4648499057538562,4648500367050864],[1048578,270139402,-13247605096148654,-13247603792440361],[1048580,136,-8599107748829489,-8599101715170092],[1048580,1032,1975300513283600,1975304506421476],[1048580,1152,1975300984811094,1975304034893986],[1048580,1161,22544603307191776,22544604430576096],[1048580,1162,1975301917236486,1975303102468593],[1048580,1224,1975301917270118,1975303102434961],[1048580,1416,-13247605033203059,-13247603855385956],[1048580,3208,-13247605036737943,-13247603851851071],[1048580,33928,22544603293425280,22544604444342592],[1048580,131080,4648498108918473,4648501315670959],[1048580,132232,1975301908323058,1975303111382023],[1048580,163840,1975300984811094,1975304034893986],[1048580,524296,9296995124907418,9297003724271436],[1048580,524416,4648498108918473,4648501315670959],[1048580,524425,1975301917236486,1975303102468593],[1048580,524426,-13247605066155522,-13247603822433492],[1048580,524488,4648499087034444,4648500337554984],[1048580,525448,-22544606196572912,-22544601541194970],[1048580,557056,1975300513283600,1975304506421476],[1048580,557192,1975301908323058,1975303111382023],[1048580,655360,-8599107748829489,-8599101715170092],[1048580,655369,1975301917270118,1975303102434961],[1048580,655370,4648499087000812,4648500337588616],[1048580,655496,-17198211985863560,-17198206942135612],[1048580,656392,1975301908323058,1975303111382023],[1048580,688129,-13247605033169427,-13247603855419588],[1048580,688136,-22544606196572912,-22544601541194970],[1048580,688256,1975301908323058,1975303111382023],[1048580,689152,22544603293425280,22544604444342592],[1048580,1048716,-8599107748829489,-8599101715170092],[1048580,1049612,1975300513283600,1975304506421476],[1048580,1049732,1975300984811094,1975304034893986],[1048580,1049741,22544603307191776,22544604430576096],[1048580,1049742,1975301917236486,1975303102468593],[1048580,1049804,1975301917270118,1975303102434961],[1048580,1049996,-13247605033203059,-13247603855385956],[1048580,1051788,-13247605036737943,-13247603851851071],[1048580,1082508,22544603293425280,22544604444342592],[1048580,1179660,4648498108918473,4648501315670959],[1048580,1180812,1975301908323058,1975303111382023],[1048580,1212420,1975300984811094,1975304034893986],[1048580,1572876,9296995124907418,9297003724271436],[1048580,1572996,4648498108918473,4648501315670959],[1048580,1573005,1975301917236486,1975303102468593],[1048580,1573006,-13247605066155522,-13247603822433492],[1048580,1573068,4648499087034444,4648500337554984],[1048580,1574028,-22544606196572912,-22544601541194970],[1048580,1605636,1975300513283600,1975304506421476],[1048580,1605772,1975301908323058,1975303111382023],[1048580,1703940,-8599107748829489,-8599101715170092],[1048580,1703949,1975301917270118,1975303102434961],[1048580,1703950,4648499087000812,4648500337588616],[1048580,1704076,-17198211985863560,-17198206942135612],[1048580,1704972,1975301908323058,1975303111382023],[1048580,1736709,-13247605033169427,-13247603855419588],[1048580,1736716,-22544606196572912,-22544601541194970],[1048580,1736836,1975301908323058,1975303111382023],[1048580,1737732,22544603293425280,22544604444342592],[1048580,2098312,-13247605037567427,-13247603851021587],[1048580,2621576,1975301912872117,1975303106832961],[1048580,2752520,1975301915400511,1975303104304567],[1048580,2785280,22544603305492866,22544604432275006],[1048580,3146892,-13247605037567427,-13247603851021587],[1048580,3670156,1975301912872117,1975303106832961],[1048580,3801100,1975301915400511,1975303104304567],[1048580,3833860,22544603305492866,22544604432275006],[1048580,67764232,4648499087034444,4648500337554984],[1048580,67796992,1975301917270118,1975303102434961],[1048580,68812812,4648499087034444,4648500337554984],[1048580,68845572,1975301917270118,1975303102434961],[1048580,134218888,-13247605033169427,-13247603855419588],[1048580,134742152,1975301917270118,1975303102434961],[1048580,134873096,1975301917236486,1975303102468593],[1048580,134905856,22544603307191776,22544604430576096],[1048580,135267468,-13247605033169427,-13247603855419588],[1048580,135790732,1975301917270118,1975303102434961],[1048580,135921676,1975301917236486,1975303102468593],[1048580,135954436,22544603307191776,22544604430576096],[1048580,268959880,4648499087000812,4648500337588616],[1048580,269090824,-13247605066155522,-13247603822433492],[1048580,269123584,1975301917236486,1975303102468593],[1048580,270008460,4648499087000812,4648500337588616],[1048580,270139404,-13247605066155522,-13247603822433492],[1048580,270172164,1975301917236486,1975303102468593],[1048580,1074429952,-13247605033203059,-13247603855385956],[1048580,1075478532,-13247605033203059,-13247603855385956],[1048584,0,-1395798588612732,-1395780181745792],[1048584,130,11272298579605019,11272305289278916],[1048584,132,8599101715170092,8599107748829489],[1048584,192,1277404455586225,1277411178939584],[1048584,384,-1975305295212454,-1975299724492630],[1048584,1026,-1975304605835260,-1975300413869816],[1048584,1028,-1975304506421476,-1975300513283600],[1048584,1088,-1975305281057239,-1975299738647843],[1048584,1152,-311472436788867910,-311472393130811843],[1048584,1158,-24519907391505747,-24519905365967204],[1048584,1218,-45089208967216020,-45089206508319720],[1048584,1220,-1975303102434961,-1975301917270118],[1048584,1280,17198207785357210,17198211142641961],[1048584,1346,13247603826989498,13247605061599516],[1048584,1410,13247603826989498,13247605061599516],[1048584,1412,13247603855385956,13247605033203059],[1048584,1472,26495207655679218,26495210121498808],[1048584,2176,-1975305338051185,-1975299681653896],[1048584,3072,17198207762730769,17198211165268399],[1048584,3202,13247603827702546,13247605060886466],[1048584,3204,13247603851851071,13247605036737943],[1048584,3264,13247603826875223,13247605061713792],[1048584,3456,-24519907156493899,-24519905600979049],[1048584,131074,-4648501379109327,-4648498045480102],[1048584,131076,-4648501315670959,-4648498108918473],[1048584,131200,-9709549903,9709549901],[1048584,132096,-3950609314173172,-3950600725236988],[1048584,132226,-3950606120324188,-3950603919085972],[1048584,132228,-24519907414185673,-24519905343287280],[1048584,132288,-22544604497985104,-22544603239782766],[1048584,132480,13247603811716528,13247605076872486],[1048584,134272,13247603808044578,13247605080544438],[1048584,163840,-13247605973043456,-13247602915545560],[1048584,524290,-6623806745939431,-6623797698355075],[1048584,524292,-9297003724271436,-9296995124907418],[1048584,524352,-4648502614033929,-4648496810555499],[1048584,524416,272001667572402980,272001719855180396],[1048584,524422,11272300873839524,11272302995044411],[1048584,524482,-3950606317756372,-3950603721653790],[1048584,524484,-4648500337554984,-4648499087034444],[1048584,525312,23242489006570695,23242508116376415],[1048584,525442,-18594001258855540,-18593996439502170],[1048584,525444,22544601541194970,22544606196572912],[1048584,525504,18593996124609637,18594001573748076],[1048584,525696,11272300719992475,11272303148891462],[1048584,527488,11272300713657228,11272303155226711],[1048584,557056,15920799005382849,15920804288090516],[1048584,655360,60039999943769960,60040045266389211],[1048584,655366,-6623803284297315,-6623801159997192],[1048584,655490,31143705012464284,31143712189303175],[1048584,655492,13247601033521515,13247607855067498],[1048584,655552,-6623803535249348,-6623800909045159],[1048584,656386,-1975303134589986,-1975301885115096],[1048584,656388,-1975303111382023,-1975301908323058],[1048584,656512,-69609119710487749,-69609108522520937],[1048584,688130,13247603855419588,13247605033169427],[1048584,688132,26495207753551168,26495210023626872],[1048584,688256,11272300739639564,11272303129244369],[1048584,689152,-22544604444342592,-22544603293425280],[1048584,1048584,-1395798588612732,-1395780181745792],[1048584,1048714,11272298579605019,11272305289278916],[1048584,1048716,8599101715170092,8599107748829489],[1048584,1048776,1277404455586225,1277411178939584],[1048584,1048968,-1975305295212454,-1975299724492630],[1048584,1049610,-1975304605835260,-1975300413869816],[1048584,1049612,-1975304506421476,-1975300513283600],[1048584,1049672,-1975305281057239,-1975299738647843],[1048584,1049736,-311472436788867910,-311472393130811843],[1048584,1049742,-24519907391505747,-24519905365967204],[1048584,1049802,-45089208967216020,-45089206508319720],[1048584,1049804,-1975303102434961,-1975301917270118],[1048584,1049864,17198207785357210,17198211142641961],[1048584,1049930,13247603826989498,13247605061599516],[1048584,1049994,13247603826989498,13247605061599516],[1048584,1049996,13247603855385956,13247605033203059],[1048584,1050056,26495207655679218,26495210121498808],[1048584,1050760,-1975305338051185,-1975299681653896],[1048584,1051656,17198207762730769,17198211165268399],[1048584,1051786,13247603827702546,13247605060886466],[1048584,1051788,13247603851851071,13247605036737943],[1048584,1051848,13247603826875223,13247605061713792],[1048584,1052040,-24519907156493899,-24519905600979049],[1048584,1179658,-4648501379109327,-4648498045480102],[1048584,1179660,-4648501315670959,-4648498108918473],[1048584,1179784,-9709549903,9709549901],[1048584,1180680,-3950609314173172,-3950600725236988],[1048584,1180810,-3950606120324188,-3950603919085972],[1048584,1180812,-24519907414185673,-24519905343287280],[1048584,1180872,-22544604497985104,-22544603239782766],[1048584,1181064,13247603811716528,13247605076872486],[1048584,1182856,13247603808044578,13247605080544438],[1048584,1212424,-13247605973043456,-13247602915545560],[1048584,1572874,-6623806745939431,-6623797698355075],[1048584,1572876,-9297003724271436,-9296995124907418],[1048584,1572936,-4648502614033929,-4648496810555499],[1048584,1573000,272001667572402980,272001719855180396],[1048584,1573006,11272300873839524,11272302995044411],[1048584,1573066,-3950606317756372,-3950603721653790],[1048584,1573068,-4648500337554984,-4648499087034444],[1048584,1573896,23242489006570695,23242508116376415],[1048584,1574026,-18594001258855540,-18593996439502170],[1048584,1574028,22544601541194970,22544606196572912],[1048584,1574088,18593996124609637,18594001573748076],[1048584,1574280,11272300719992475,11272303148891462],[1048584,1576072,11272300713657228,11272303155226711],[1048584,1605640,15920799005382849,15920804288090516],[1048584,1703944,60039999943769960,60040045266389211],[1048584,1703950,-6623803284297315,-6623801159997192],[1048584,1704074,31143705012464284,31143712189303175],[1048584,1704076,13247601033521515,13247607855067498],[1048584,1704136,-6623803535249348,-6623800909045159],[1048584,1704970,-1975303134589986,-1975301885115096],[1048584,1704972,-1975303111382023,-1975301908323058],[1048584,1705096,-69609119710487749,-69609108522520937],[1048584,1736714,13247603855419588,13247605033169427],[1048584,1736716,26495207753551168,26495210023626872],[1048584,1736840,11272300739639564,11272303129244369],[1048584,1737736,-22544604444342592,-22544603293425280],[1048584,2097280,-3950609278673694,-3950600760736484],[1048584,2098176,13247602731588215,13247606157000801],[1048584,2098306,13247603826875223,13247605061713792],[1048584,2098308,13247603851021587,13247605037567427],[1048584,2098368,13247603821511848,13247605067077166],[1048584,2098560,-1975303134066536,-1975301885638544],[1048584,2100352,-3950606276156332,-3950603763253824],[1048584,2228224,-1975304632453679,-1975300387251397],[1048584,2229376,13247603817961795,13247605070627222],[1048584,2621440,-3950608254927041,-3950601784483124],[1048584,2621570,-22544604485915178,-22544603251852693],[1048584,2621572,-1975303106832961,-1975301912872117],[1048584,2621632,-1975303134066535,-1975301885638543],[1048584,2622592,-7321700242729086,-7321693586744675],[1048584,2752514,-1975303127512530,-1975301892192549],[1048584,2752516,-1975303104304567,-1975301915400511],[1048584,2752640,-49039815256755116,-49039810258190782],[1048584,2753536,26495207776804167,26495210000373866],[1048584,2785280,-22544604432275006,-22544603305492866],[1048584,3145864,-3950609278673694,-3950600760736484],[1048584,3146760,13247602731588215,13247606157000801],[1048584,3146890,13247603826875223,13247605061713792],[1048584,3146892,13247603851021587,13247605037567427],[1048584,3146952,13247603821511848,13247605067077166],[1048584,3147144,-1975303134066536,-1975301885638544],[1048584,3148936,-3950606276156332,-3950603763253824],[1048584,3276808,-1975304632453679,-1975300387251397],[1048584,3277960,13247603817961795,13247605070627222],[1048584,3670024,-3950608254927041,-3950601784483124],[1048584,3670154,-22544604485915178,-22544603251852693],[1048584,3670156,-1975303106832961,-1975301912872117],[1048584,3670216,-1975303134066535,-1975301885638543],[1048584,3671176,-7321700242729086,-7321693586744675],[1048584,3801098,-1975303127512530,-1975301892192549],[1048584,3801100,-1975303104304567,-1975301915400511],[1048584,3801224,-49039815256755116,-49039810258190782],[1048584,3802120,26495207776804167,26495210000373866],[1048584,3833864,-22544604432275006,-22544603305492866],[1048584,67239936,4648498045480100,4648501379109325],[1048584,67633152,-4648502626375994,-4648496798213434],[1048584,67764226,-4648500364875210,-4648499059714221],[1048584,67764228,-4648500337554984,-4648499087034444],[1048584,67764352,8599103418984813,8599106045014772],[1048584,67765248,-1975303142599947,-1975301877105131],[1048584,67796992,11272301204090824,11272302664793112],[1048584,68288520,4648498045480100,4648501379109325],[1048584,68681736,-4648502626375994,-4648496798213434],[1048584,68812810,-4648500364875210,-4648499059714221],[1048584,68812812,-4648500337554984,-4648499087034444],[1048584,68812936,8599103418984813,8599106045014772],[1048584,68813832,-1975303142599947,-1975301877105131],[1048584,68845576,11272301204090824,11272302664793112],[1048584,69861376,-1975303127512529,-1975301892192548],[1048584,70909960,-1975303127512529,-1975301892192548],[1048584,134217856,-3950609227302328,-3950600812107830],[1048584,134218752,13247602765652131,13247606122936882],[1048584,134218882,13247603821617226,13247605066971786],[1048584,134218884,13247603855419588,13247605033169427],[1048584,134218944,13247603827010127,13247605061578886],[1048584,134219136,-1975303127852212,-1975301891852867],[1048584,134220928,-1975303127512530,-1975301892192549],[1048584,134348800,-1975304605835260,-1975300413869816],[1048584,134349952,13247603822461068,13247605066127948],[1048584,134742016,-3950608451914177,-3950601587495984],[1048584,134742146,-22544604489700504,-22544603248067364],[1048584,134742148,-1975303102434961,-1975301917270118],[1048584,134742208,-1975303130040923,-1975301889664154],[1048584,134743168,-7321700200255013,-7321693629218766],[1048584,134873090,-1975303134066536,-1975301885638544],[1048584,134873092,-1975303102468593,-1975301917236486],[1048584,134873216,-49039815227304660,-49039810287641238],[1048584,134874112,26495207784975390,26495209992202640],[1048584,134905856,-22544604430576096,-22544603307191776],[1048584,135266440,-3950609227302328,-3950600812107830],[1048584,135267336,13247602765652131,13247606122936882],[1048584,135267466,13247603821617226,13247605066971786],[1048584,135267468,13247603855419588,13247605033169427],[1048584,135267528,13247603827010127,13247605061578886],[1048584,135267720,-1975303127852212,-1975301891852867],[1048584,135269512,-1975303127512530,-1975301892192549],[1048584,135397384,-1975304605835260,-1975300413869816],[1048584,135398536,13247603822461068,13247605066127948],[1048584,135790600,-3950608451914177,-3950601587495984],[1048584,135790730,-22544604489700504,-22544603248067364],[1048584,135790732,-1975303102434961,-1975301917270118],[1048584,135790792,-1975303130040923,-1975301889664154],[1048584,135791752,-7321700200255013,-7321693629218766],[1048584,135921674,-1975303134066536,-1975301885638544],[1048584,135921676,-1975303102468593,-1975301917236486],[1048584,135921800,-49039815227304660,-49039810287641238],[1048584,135922696,26495207784975390,26495209992202640],[1048584,135954440,-22544604430576096,-22544603307191776],[1048584,136316032,-24519907464643493,-24519905292829456],[1048584,136839296,26495207799184865,26495209977993164],[1048584,136970240,26495207805375563,26495209971802464],[1048584,137364616,-24519907464643493,-24519905292829456],[1048584,137887880,26495207799184865,26495209977993164],[1048584,138018824,26495207805375563,26495209971802464],[1048584,201981952,-1975303130061553,-1975301889643525],[1048584,203030536,-1975303130061553,-1975301889643525],[1048584,268435584,-4648502481944947,-4648496942644475],[1048584,268566528,-1975305275431532,-1975299744273546],[1048584,268959744,6623798624404334,6623805819890177],[1048584,268959874,-1975303161793801,-1975301857911278],[1048584,268959876,-4648500337588616,-4648499087000812],[1048584,268959936,-4648500367050864,-4648499057538562],[1048584,268960896,-3950606237024947,-3950603802385214],[1048584,269090818,13247603792440361,13247605096148654],[1048584,269090820,13247603822433492,13247605066155522],[1048584,269090944,15920798685149414,15920804608323947],[1048584,269091840,-22544604497985104,-22544603239782766],[1048584,269123584,-1975303102468593,-1975301917236486],[1048584,269484168,-4648502481944947,-4648496942644475],[1048584,269615112,-1975305275431532,-1975299744273546],[1048584,270008328,6623798624404334,6623805819890177],[1048584,270008458,-1975303161793801,-1975301857911278],[1048584,270008460,-4648500337588616,-4648499087000812],[1048584,270008520,-4648500367050864,-4648499057538562],[1048584,270009480,-3950606237024947,-3950603802385214],[1048584,270139402,13247603792440361,13247605096148654],[1048584,270139404,13247603822433492,13247605066155522],[1048584,270139528,15920798685149414,15920804608323947],[1048584,270140424,-22544604497985104,-22544603239782766],[1048584,270172168,-1975303102468593,-1975301917236486],[1048584,271057024,-1975303134066536,-1975301885638544],[1048584,271187968,-22544604485915178,-22544603251852693],[1048584,272105608,-1975303134066536,-1975301885638544],[1048584,272236552,-22544604485915178,-22544603251852693],[1048584,336199680,26495207586327742,26495210190850288],[1048584,337248264,26495207586327742,26495210190850288],[1048584,403177600,-3950606255025060,-3950603784385098],[1048584,403308544,-45089208966229632,-45089206509306108],[1048584,404226184,-3950606255025060,-3950603784385098],[1048584,404357128,-45089208966229632,-45089206509306108],[1048584,469893120,-1975303130061553,-1975301889643525],[1048584,470941704,-1975303130061553,-1975301889643525],[1048587,1161,1975301917236486,1975303102468593],[1048587,1162,-1975303102468593,-1975301917236486],[1048587,524425,-13247605066155522,-13247603822433492],[1048587,524426,13247603822433492,13247605066155522],[1048587,655369,4648499087000812,4648500337588616],[1048587,655370,-4648500337588616,-4648499087000812],[1048587,1049729,-1975303102468593,-1975301917236486],[1048587,1049730,1975301917236486,1975303102468593],[1048587,1572993,13247603822433492,13247605066155522],[1048587,1572994,-13247605066155522,-13247603822433492],[1048587,1703937,-4648500337588616,-4648499087000812],[1048587,1703938,4648499087000812,4648500337588616],[1048589,1161,22544603307191776,22544604430576096],[1048589,1164,-22544604430576096,-22544603307191776],[1048589,524425,1975301917236486,1975303102468593],[1048589,524428,-1975303102468593,-1975301917236486],[1048589,655369,1975301917270118,1975303102434961],[1048589,655372,-1975303102434961,-1975301917270118],[1048589,1049729,-22544604430576096,-22544603307191776],[1048589,1049732,22544603307191776,22544604430576096],[1048589,1572993,-1975303102468593,-1975301917236486],[1048589,1572996,1975301917236486,1975303102468593],[1048589,1703937,-1975303102434961,-1975301917270118],[1048589,1703940,1975301917270118,1975303102434961],[1048590,1158,-24519907391505747,-24519905365967204],[1048590,1162,1975301917236486,1975303102468593],[1048590,1164,22544603307191776,22544604430576096],[1048590,524422,11272300873839524,11272302995044411],[1048590,524426,-13247605066155522,-13247603822433492],[1048590,524428,1975301917236486,1975303102468593],[1048590,655366,-6623803284297315,-6623801159997192],[1048590,655370,4648499087000812,4648500337588616],[1048590,655372,1975301917270118,1975303102434961],[1048590,1049730,22544603307191776,22544604430576096],[1048590,1049732,1975301917236486,1975303102468593],[1048590,1049736,-24519907391505747,-24519905365967204],[1048590,1572994,1975301917236486,1975303102468593],[1048590,1572996,-13247605066155522,-13247603822433492],[1048590,1573000,11272300873839524,11272302995044411],[1048590,1703938,1975301917270118,1975303102434961],[1048590,1703940,4648499087000812,4648500337588616],[1048590,1703944,-6623803284297315,-6623801159997192],[1048640,130,8599101370269630,8599108093729955],[1048640,136,3950601664814648,3950608374595511],[1048640,258,-1975304235590111,-1975300784114970],[1048640,1026,-3950609211113582,-3950600828296569],[1048640,1032,-1975305281023604,-1975299738681472],[1048640,1162,-3950606255704424,-3950603783705734],[1048640,1410,-7321700188581701,-7321693640892082],[1048640,1416,11272300724520905,11272303144363030],[1048640,1794,-1975303127512529,-1975301892192548],[1048640,3202,13247603826875223,13247605061713792],[1048640,3208,13247603827702546,13247605060886466],[1048640,3330,-22544604485915178,-22544603251852693],[1048640,131200,-4648502482185233,-4648496942404193],[1048640,524290,-4648501976324875,-4648497448264558],[1048640,524296,15920798744910351,15920804548563011],[1048640,524426,26495207590564460,26495210186613570],[1048640,524674,-6623803284297315,-6623801159997192],[1048640,524680,13247603822433492,13247605066155522],[1048640,525442,22544601452067054,22544606285700820],[1048640,525448,-22544606585988845,-22544601151779026],[1048640,525570,-1975303102468593,-1975301917236486],[1048640,655360,-15920803437427959,-15920799856045399],[1048640,655370,-4648500367937248,-4648499056652179],[1048640,655490,-4648500367937248,-4648499056652179],[1048640,655496,-3950606322255178,-3950603717154982],[1048640,655744,-4648500337588616,-4648499087000812],[1048640,656512,-3950606237024947,-3950603802385214],[1048640,1048770,8599101370269630,8599108093729955],[1048640,1048776,3950601664814648,3950608374595511],[1048640,1048898,-1975304235590111,-1975300784114970],[1048640,1049666,-3950609211113582,-3950600828296569],[1048640,1049672,-1975305281023604,-1975299738681472],[1048640,1049802,-3950606255704424,-3950603783705734],[1048640,1050050,-7321700188581701,-7321693640892082],[1048640,1050056,11272300724520905,11272303144363030],[1048640,1050434,-1975303127512529,-1975301892192548],[1048640,1051842,13247603826875223,13247605061713792],[1048640,1051848,13247603827702546,13247605060886466],[1048640,1051970,-22544604485915178,-22544603251852693],[1048640,1179840,-4648502482185233,-4648496942404193],[1048640,1572930,-4648501976324875,-4648497448264558],[1048640,1572936,15920798744910351,15920804548563011],[1048640,1573066,26495207590564460,26495210186613570],[1048640,1573314,-6623803284297315,-6623801159997192],[1048640,1573320,13247603822433492,13247605066155522],[1048640,1574082,22544601452067054,22544606285700820],[1048640,1574088,-22544606585988845,-22544601151779026],[1048640,1574210,-1975303102468593,-1975301917236486],[1048640,1704000,-15920803437427959,-15920799856045399],[1048640,1704010,-4648500367937248,-4648499056652179],[1048640,1704130,-4648500367937248,-4648499056652179],[1048640,1704136,-3950606322255178,-3950603717154982],[1048640,1704384,-4648500337588616,-4648499087000812],[1048640,1705152,-3950606237024947,-3950603802385214],[1048640,2098306,13247603821511848,13247605067077166],[1048640,2098312,13247603826875223,13247605061713792],[1048640,2098434,-1975303134066536,-1975301885638544],[1048640,2621570,-1975303134066535,-1975301885638543],[1048640,2621576,-22544604485915178,-22544603251852693],[1048640,2752640,-1975303127512530,-1975301892192549],[1048640,3146946,13247603821511848,13247605067077166],[1048640,3146952,13247603826875223,13247605061713792],[1048640,3147074,-1975303134066536,-1975301885638544],[1048640,3670210,-1975303134066535,-1975301885638543],[1048640,3670216,-22544604485915178,-22544603251852693],[1048640,3801280,-1975303127512530,-1975301892192549],[1048640,134218882,13247603827010127,13247605061578886],[1048640,134218888,13247603821617226,13247605066971786],[1048640,134219010,-1975303127852212,-1975301891852867],[1048640,134742146,-1975303130040923,-1975301889664154],[1048640,134742152,-22544604489700504,-22544603248067364],[1048640,134873216,-1975303134066536,-1975301885638544],[1048640,135267522,13247603827010127,13247605061578886],[1048640,135267528,13247603821617226,13247605066971786],[1048640,135267650,-1975303127852212,-1975301891852867],[1048640,135790786,-1975303130040923,-1975301889664154],[1048640,135790792,-22544604489700504,-22544603248067364],[1048640,135921856,-1975303134066536,-1975301885638544],[1048640,268959874,-4648500367050864,-4648499057538562],[1048640,268959880,-1975303161793801,-1975301857911278],[1048640,269090944,8599103904459875,8599105559539709],[1048640,270008514,-4648500367050864,-4648499057538562],[1048640,270008520,-1975303161793801,-1975301857911278],[1048640,270139584,8599103904459875,8599105559539709],[1048643,1217,1975301917270118,1975303102434961],[1048643,1218,-1975303102434961,-1975301917270118],[1048643,1345,-13247605033203059,-13247603855385956],[1048643,1346,13247603855385956,13247605033203059],[1048643,524481,4648499087034444,4648500337554984],[1048643,524482,-4648500337554984,-4648499087034444],[1048643,1049729,-1975303102434961,-1975301917270118],[1048643,1049730,1975301917270118,1975303102434961],[1048643,1049857,13247603855385956,13247605033203059],[1048643,1049858,-13247605033203059,-13247603855385956],[1048643,1572993,-4648500337554984,-4648499087034444],[1048643,1572994,4648499087034444,4648500337554984],[1048650,1162,22544602161328920,22544605576438951],[1048650,1218,-18594000555019592,-18593997143338122],[1048650,1224,-3950608433100829,-3950601606309328],[1048650,1346,13247603826989498,13247605061599516],[1048650,1352,-13247605061599516,-13247603826989498],[1048650,524426,19871404874970728,19871408457912797],[1048650,524482,-28470513188678840,-28470509608204269],[1048650,524488,8599101150291472,8599108313708112],[1048650,655370,-4648500367937248,-4648499056652179],[1048650,655432,4648499056652179,4648500367937248],[1048650,1049730,-3950608433100829,-3950601606309328],[1048650,1049736,-18594000555019592,-18593997143338122],[1048650,1049792,22544602161328920,22544605576438951],[1048650,1049858,-13247605061599516,-13247603826989498],[1048650,1049864,13247603826989498,13247605061599516],[1048650,1572994,8599101150291472,8599108313708112],[1048650,1573000,-28470513188678840,-28470509608204269],[1048650,1573056,19871404874970728,19871408457912797],[1048650,1703938,4648499056652179,4648500367937248],[1048650,1704000,-4648500367937248,-4648499056652179],[1048652,1220,24519905365967204,24519907391505747],[1048652,1224,-24519907391505747,-24519905365967204],[1048652,524484,-11272302995044411,-11272300873839524],[1048652,524488,11272300873839524,11272302995044411],[1048652,1049732,-24519907391505747,-24519905365967204],[1048652,1049736,24519905365967204,24519907391505747],[1048652,1572996,11272300873839524,11272302995044411],[1048652,1573000,-11272302995044411,-11272300873839524],[1048704,72,-19871412444254049,-19871400888629471],[1048704,264,-1975305295246081,-1975299724458993],[1048704,1026,-3950608433100829,-3950601606309328],[1048704,1028,-1975304034893986,-1975300984811094],[1048704,1032,296947377306566843,296947428089998092],[1048704,1346,-13247605061599516,-13247603826989498],[1048704,1352,-39742815032300530,-39742811633466510],[1048704,2056,-1975305335522788,-1975299684182287],[1048704,3144,-26495209971802464,-26495207805375563],[1048704,3336,24519905600979049,24519907156493899],[1048704,131080,-4795158453,4795158459],[1048704,131136,15920798873942155,15920804419531205],[1048704,132096,23242489006570695,23242508116376415],[1048704,163840,11272301510581248,11272302358302688],[1048704,524290,8599101150291472,8599108313708112],[1048704,524292,-4648501315670959,-4648498108918473],[1048704,524296,-245506516979052740,-245506452671352604],[1048704,525384,19871400888629471,19871412444254049],[1048704,525576,-24519908074966154,-24519904682506797],[1048704,527368,-24519908084973355,-24519904672499600],[1048704,557056,6623799524173159,6623804920121353],[1048704,655360,-48767744686891983,-48767696654383246],[1048704,655370,4648499056652179,4648500367937248],[1048704,655372,1975301912872117,1975303106832961],[1048704,655432,8599102944565871,8599106519433716],[1048704,656392,15222903999406109,15222909908887987],[1048704,656448,8599103045112288,8599106418887301],[1048704,688136,-13247605037567427,-13247603851021587],[1048704,1048776,-19871412444254049,-19871400888629471],[1048704,1048968,-1975305295246081,-1975299724458993],[1048704,1049730,-3950608433100829,-3950601606309328],[1048704,1049732,-1975304034893986,-1975300984811094],[1048704,1049736,296947377306566843,296947428089998092],[1048704,1050050,-13247605061599516,-13247603826989498],[1048704,1050056,-39742815032300530,-39742811633466510],[1048704,1050760,-1975305335522788,-1975299684182287],[1048704,1051848,-26495209971802464,-26495207805375563],[1048704,1052040,24519905600979049,24519907156493899],[1048704,1179784,-4795158453,4795158459],[1048704,1179840,15920798873942155,15920804419531205],[1048704,1180800,23242489006570695,23242508116376415],[1048704,1212544,11272301510581248,11272302358302688],[1048704,1572994,8599101150291472,8599108313708112],[1048704,1572996,-4648501315670959,-4648498108918473],[1048704,1573000,-245506516979052740,-245506452671352604],[1048704,1574088,19871400888629471,19871412444254049],[1048704,1574280,-24519908074966154,-24519904682506797],[1048704,1576072,-24519908084973355,-24519904672499600],[1048704,1605760,6623799524173159,6623804920121353],[1048704,1704064,-48767744686891983,-48767696654383246],[1048704,1704074,4648499056652179,4648500367937248],[1048704,1704076,1975301912872117,1975303106832961],[1048704,1704136,8599102944565871,8599106519433716],[1048704,1705096,15222903999406109,15222909908887987],[1048704,1705152,8599103045112288,8599106418887301],[1048704,1736840,-13247605037567427,-13247603851021587],[1048704,2097160,3950600760736484,3950609278673694],[1048704,2098248,-26495209977993164,-26495207799184865],[1048704,2098440,1975301885638544,1975303134066536],[1048704,2100232,3950603763253824,3950606276156332],[1048704,2228224,-1975305335522788,-1975299684182287],[1048704,2621512,24519905292829456,24519907464643493],[1048704,2622472,-3950609278673694,-3950600760736484],[1048704,2752520,3950603763253824,3950606276156332],[1048704,2752576,1975301892192549,1975303127512530],[1048704,2753536,-24519908084973355,-24519904672499600],[1048704,3145864,3950600760736484,3950609278673694],[1048704,3146952,-26495209977993164,-26495207799184865],[1048704,3147144,1975301885638544,1975303134066536],[1048704,3148936,3950603763253824,3950606276156332],[1048704,3276928,-1975305335522788,-1975299684182287],[1048704,3670216,24519905292829456,24519907464643493],[1048704,3671176,-3950609278673694,-3950600760736484],[1048704,3801224,3950603763253824,3950606276156332],[1048704,3801280,1975301892192549,1975303127512530],[1048704,3802240,-24519908084973355,-24519904672499600],[1048704,67239936,-9296999886451704,-9296998962727152],[1048704,67633152,-4648505765491449,-4648493659097978],[1048704,67764232,4648499056652180,4648500367937249],[1048704,68288640,-9296999886451704,-9296998962727152],[1048704,68681856,-4648505765491449,-4648493659097978],[1048704,68812936,4648499056652180,4648500367937249],[1048704,134217736,3950600812107830,3950609227302328],[1048704,134218824,-26495209977752878,-26495207799425147],[1048704,134219016,1975301891852867,1975303127852212],[1048704,134220808,1975301892192549,1975303127512530],[1048704,134348800,-1975305295486367,-1975299724218711],[1048704,134742088,24519905293069738,24519907464403207],[1048704,134743048,-3950609227302328,-3950600812107830],[1048704,134873096,3950603783705734,3950606255704424],[1048704,134873152,1975301885638544,1975303134066536],[1048704,134874112,-24519908074966154,-24519904682506797],[1048704,135266440,3950600812107830,3950609227302328],[1048704,135267528,-26495209977752878,-26495207799425147],[1048704,135267720,1975301891852867,1975303127852212],[1048704,135269512,1975301892192549,1975303127512530],[1048704,135397504,-1975305295486367,-1975299724218711],[1048704,135790792,24519905293069738,24519907464403207],[1048704,135791752,-3950609227302328,-3950600812107830],[1048704,135921800,3950603783705734,3950606255704424],[1048704,135921856,1975301885638544,1975303134066536],[1048704,135922816,-24519908074966154,-24519904682506797],[1048704,136315912,24519905292829456,24519907464643493],[1048704,136839176,-26495209977993164,-26495207799184865],[1048704,136970240,-26495209971802464,-26495207805375563],[1048704,137364616,24519905292829456,24519907464643493],[1048704,137887880,-26495209977993164,-26495207799184865],[1048704,138018944,-26495209971802464,-26495207805375563],[1048704,268435464,15920798874182437,15920804419290919],[1048704,268566528,-13945502255682351,-13945496018085931],[1048704,268959816,6623801086208550,6623803358085955],[1048704,268960776,8599103045112288,8599106418887301],[1048704,269090824,-21846710653066666,-21846707699521935],[1048704,269090880,-8599105559539709,-8599103904459875],[1048704,269091840,15920800076521641,15920803216951721],[1048704,269484168,15920798874182437,15920804419290919],[1048704,269615232,-13945502255682351,-13945496018085931],[1048704,270008520,6623801086208550,6623803358085955],[1048704,270009480,8599103045112288,8599106418887301],[1048704,270139528,-21846710653066666,-21846707699521935],[1048704,270139584,-8599105559539709,-8599103904459875],[1048704,270140544,15920800076521641,15920803216951721],[1048704,271056904,1975301885638544,1975303134066536],[1048704,271187968,24519905600979049,24519907156493899],[1048704,272105608,1975301885638544,1975303134066536],[1048704,272236672,24519905600979049,24519907156493899],[1048704,335544320,11272301474344214,11272302394539722],[1048704,336593024,11272301474344214,11272302394539722],[1048704,403177480,3950603784385098,3950606255025060],[1048704,403308544,47064508855883441,47064511639357377],[1048704,404226184,3950603784385098,3950606255025060],[1048704,404357248,47064508855883441,47064511639357377],[1048704,470286336,1975301889643525,1975303130061553],[1048704,471335040,1975301889643525,1975303130061553],[1048710,1032,24519905365967204,24519907391505747],[1048710,1038,24519905365967204,24519907391505747],[1048710,524296,-11272302995044411,-11272300873839524],[1048710,524302,-11272302995044411,-11272300873839524],[1048710,1049736,24519905365967204,24519907391505747],[1048710,1049742,24519905365967204,24519907391505747],[1048710,1573000,-11272302995044411,-11272300873839524],[1048710,1573006,-11272302995044411,-11272300873839524],[1048713,1026,-1975303102468593,-1975301917236486],[1048713,1028,-22544604430576096,-22544603307191776],[1048713,1035,-1975303102468593,-1975301917236486],[1048713,1037,-22544604430576096,-22544603307191776],[1048713,524290,13247603822433492,13247605066155522],[1048713,524292,-1975303102468593,-1975301917236486],[1048713,524299,13247603822433492,13247605066155522],[1048713,524301,-1975303102468593,-1975301917236486],[1048713,1049730,-1975303102468593,-1975301917236486],[1048713,1049732,-22544604430576096,-22544603307191776],[1048713,1049739,-1975303102468593,-1975301917236486],[1048713,1049741,-22544604430576096,-22544603307191776],[1048713,1572994,13247603822433492,13247605066155522],[1048713,1572996,-1975303102468593,-1975301917236486],[1048713,1573003,13247603822433492,13247605066155522],[1048713,1573005,-1975303102468593,-1975301917236486],[1048714,130,11272298579605019,11272305289278916],[1048714,136,-11272305289278916,-11272298579605019],[1048714,1025,1975301917236486,1975303102468593],[1048714,1028,-1975303102468593,-1975301917236486],[1048714,1035,1975301917236486,1975303102468593],[1048714,1038,-1975303102468593,-1975301917236486],[1048714,1088,3950603783705734,3950606255704424],[1048714,1098,-22544605576438951,-22544602161328920],[1048714,1218,-2178588643,2178588646],[1048714,1224,26495207799404518,26495209977773508],[1048714,1410,13247603826989498,13247605061599516],[1048714,1416,-13247605061599516,-13247603826989498],[1048714,3202,13247603827702546,13247605060886466],[1048714,3208,-13247605060886466,-13247603827702546],[1048714,132096,-1975303142599947,-1975301877105131],[1048714,132106,-1975303142599947,-1975301877105131],[1048714,524289,-13247605066155522,-13247603822433492],[1048714,524292,13247603822433492,13247605066155522],[1048714,524299,-13247605066155522,-13247603822433492],[1048714,524302,13247603822433492,13247605066155522],[1048714,524352,-26495210186613570,-26495207590564460],[1048714,524362,-19871408457912797,-19871404874970728],[1048714,524482,17896101912222451,17896106400955991],[1048714,524488,-24519907498972975,-24519905258499972],[1048714,525442,-11272305289278916,-11272298579605019],[1048714,525448,11272298579605019,11272305289278916],[1048714,655360,13247603786922062,13247605101666952],[1048714,655370,17896102843574241,17896105469604200],[1048714,655490,-8599106519433716,-8599102944565871],[1048714,655496,3950603717154982,3950606322255178],[1048714,1048578,-11272305289278916,-11272298579605019],[1048714,1048584,11272298579605019,11272305289278916],[1048714,1049666,26495207799404518,26495209977773508],[1048714,1049672,-2178588643,2178588646],[1048714,1049729,1975301917236486,1975303102468593],[1048714,1049732,-1975303102468593,-1975301917236486],[1048714,1049739,1975301917236486,1975303102468593],[1048714,1049742,-1975303102468593,-1975301917236486],[1048714,1049792,-22544605576438951,-22544602161328920],[1048714,1049802,3950603783705734,3950606255704424],[1048714,1049858,-13247605061599516,-13247603826989498],[1048714,1049864,13247603826989498,13247605061599516],[1048714,1051650,-13247605060886466,-13247603827702546],[1048714,1051656,13247603827702546,13247605060886466],[1048714,1180800,-1975303142599947,-1975301877105131],[1048714,1180810,-1975303142599947,-1975301877105131],[1048714,1572930,-24519907498972975,-24519905258499972],[1048714,1572936,17896101912222451,17896106400955991],[1048714,1572993,-13247605066155522,-13247603822433492],[1048714,1572996,13247603822433492,13247605066155522],[1048714,1573003,-13247605066155522,-13247603822433492],[1048714,1573006,13247603822433492,13247605066155522],[1048714,1573056,-19871408457912797,-19871404874970728],[1048714,1573066,-26495210186613570,-26495207590564460],[1048714,1573890,11272298579605019,11272305289278916],[1048714,1573896,-11272305289278916,-11272298579605019],[1048714,1703938,3950603717154982,3950606322255178],[1048714,1703944,-8599106519433716,-8599102944565871],[1048714,1704064,17896102843574241,17896105469604200],[1048714,1704074,13247603786922062,13247605101666952],[1048714,2098306,13247603826875223,13247605061713792],[1048714,2098312,-13247605061713792,-13247603826875223],[1048714,2621570,-22544604485915178,-22544603251852693],[1048714,2621576,22544603251852693,22544604485915178],[1048714,3146754,-13247605061713792,-13247603826875223],[1048714,3146760,13247603826875223,13247605061713792],[1048714,3670018,22544603251852693,22544604485915178],[1048714,3670024,-22544604485915178,-22544603251852693],[1048714,134218882,13247603821617226,13247605066971786],[1048714,134218888,-13247605066971786,-13247603821617226],[1048714,134742146,-22544604489700504,-22544603248067364],[1048714,134742152,22544603248067364,22544604489700504],[1048714,135267330,-13247605066971786,-13247603821617226],[1048714,135267336,13247603821617226,13247605066971786],[1048714,135790594,22544603248067364,22544604489700504],[1048714,135790600,-22544604489700504,-22544603248067364],[1048714,268959874,-1975303161793801,-1975301857911278],[1048714,268959880,1975301857911278,1975303161793801],[1048714,270008322,1975301857911278,1975303161793801],[1048714,270008328,-1975303161793801,-1975301857911278],[1048716,132,8599101715170092,8599107748829489],[1048716,136,-8599107748829489,-8599101715170092],[1048716,1025,22544603307191776,22544604430576096],[1048716,1026,-22544604430576096,-22544603307191776],[1048716,1037,22544603307191776,22544604430576096],[1048716,1038,-22544604430576096,-22544603307191776],[1048716,1220,-26495209915574692,-26495207861603338],[1048716,1224,26495207861603338,26495209915574692],[1048716,1412,13247603855385956,13247605033203059],[1048716,1416,-13247605033203059,-13247603855385956],[1048716,3204,13247603851851071,13247605036737943],[1048716,3208,-13247605036737943,-13247603851851071],[1048716,33792,22544603293425280,22544604444342592],[1048716,33804,22544603293425280,22544604444342592],[1048716,132096,-22544604444342592,-22544603293425280],[1048716,132108,-22544604444342592,-22544603293425280],[1048716,524289,1975301917236486,1975303102468593],[1048716,524290,-1975303102468593,-1975301917236486],[1048716,524301,1975301917236486,1975303102468593],[1048716,524302,-1975303102468593,-1975301917236486],[1048716,524484,6623801159997192,6623803284297315],[1048716,524488,-6623803284297315,-6623801159997192],[1048716,525444,-8599107748829489,-8599101715170092],[1048716,525448,8599101715170092,8599107748829489],[1048716,557056,1975301908323058,1975303111382023],[1048716,557068,1975301908323058,1975303111382023],[1048716,655360,-1975303111382023,-1975301908323058],[1048716,655372,-1198509906,1198509903],[1048716,655492,-11272303635356703,-11272300233527231],[1048716,655496,9296998164928852,9297000684250004],[1048716,1048580,-8599107748829489,-8599101715170092],[1048716,1048584,8599101715170092,8599107748829489],[1048716,1049668,26495207861603338,26495209915574692],[1048716,1049672,-26495209915574692,-26495207861603338],[1048716,1049729,22544603307191776,22544604430576096],[1048716,1049730,-22544604430576096,-22544603307191776],[1048716,1049741,22544603307191776,22544604430576096],[1048716,1049742,-22544604430576096,-22544603307191776],[1048716,1049860,-13247605033203059,-13247603855385956],[1048716,1049864,13247603855385956,13247605033203059],[1048716,1051652,-13247605036737943,-13247603851851071],[1048716,1051656,13247603851851071,13247605036737943],[1048716,1082496,22544603293425280,22544604444342592],[1048716,1082508,22544603293425280,22544604444342592],[1048716,1180800,-22544604444342592,-22544603293425280],[1048716,1180812,-22544604444342592,-22544603293425280],[1048716,1572932,-6623803284297315,-6623801159997192],[1048716,1572936,6623801159997192,6623803284297315],[1048716,1572993,1975301917236486,1975303102468593],[1048716,1572994,-1975303102468593,-1975301917236486],[1048716,1573005,1975301917236486,1975303102468593],[1048716,1573006,-1975303102468593,-1975301917236486],[1048716,1573892,8599101715170092,8599107748829489],[1048716,1573896,-8599107748829489,-8599101715170092],[1048716,1605760,1975301908323058,1975303111382023],[1048716,1605772,1975301908323058,1975303111382023],[1048716,1703940,9296998164928852,9297000684250004],[1048716,1703944,-11272303635356703,-11272300233527231],[1048716,1704064,-1198509906,1198509903],[1048716,1704076,-1975303111382023,-1975301908323058],[1048716,2098308,13247603851021587,13247605037567427],[1048716,2098312,-13247605037567427,-13247603851021587],[1048716,2621572,-1975303106832961,-1975301912872117],[1048716,2621576,1975301912872117,1975303106832961],[1048716,3146756,-13247605037567427,-13247603851021587],[1048716,3146760,13247603851021587,13247605037567427],[1048716,3670020,1975301912872117,1975303106832961],[1048716,3670024,-1975303106832961,-1975301912872117],[1048716,134218884,13247603855419588,13247605033169427],[1048716,134218888,-13247605033169427,-13247603855419588],[1048716,134742148,-1975303102434961,-1975301917270118],[1048716,134742152,1975301917270118,1975303102434961],[1048716,135267332,-13247605033169427,-13247603855419588],[1048716,135267336,13247603855419588,13247605033169427],[1048716,135790596,1975301917270118,1975303102434961],[1048716,135790600,-1975303102434961,-1975301917270118],[1048716,268959876,-4648500337588616,-4648499087000812],[1048716,268959880,4648499087000812,4648500337588616],[1048716,270008324,4648499087000812,4648500337588616],[1048716,270008328,-4648500337588616,-4648499087000812],[1048769,1026,-1975303102434961,-1975301917270118],[1048769,1091,-1975303102434961,-1975301917270118],[1048769,524290,-4648500337554984,-4648499087034444],[1048769,524355,-4648500337554984,-4648499087034444],[1048769,1049730,-1975303102434961,-1975301917270118],[1048769,1049795,-1975303102434961,-1975301917270118],[1048769,1572994,-4648500337554984,-4648499087034444],[1048769,1573059,-4648500337554984,-4648499087034444],[1048770,130,8599101370269630,8599108093729955],[1048770,192,-8599108093729955,-8599101370269630],[1048770,1025,1975301917270118,1975303102434961],[1048770,1032,45089206508319720,45089208967216020],[1048770,1091,1975301917270118,1975303102434961],[1048770,1098,18593997143338122,18594000555019592],[1048770,1162,-2178588646,2178588643],[1048770,1224,26495207799184865,26495209977993164],[1048770,1280,-1975303102434961,-1975301917270118],[1048770,1346,-15222908164034477,-15222905744259616],[1048770,1410,39742811633466510,39742815032300530],[1048770,1472,-26495210121498808,-26495207655679218],[1048770,3202,13247603826875223,13247605061713792],[1048770,3264,-13247605061713792,-13247603826875223],[1048770,524289,4648499087034444,4648500337554984],[1048770,524296,3950603721653790,3950606317756372],[1048770,524355,4648499087034444,4648500337554984],[1048770,524362,28470509608204269,28470513188678840],[1048770,524426,-17896106400955991,-17896101912222451],[1048770,524488,-6623803346277521,-6623801098016984],[1048770,524544,-4648500337554984,-4648499087034444],[1048770,524610,-4648500337554984,-4648499087034444],[1048770,525442,-8599108093729955,-8599101370269630],[1048770,525504,8599101370269630,8599108093729955],[1048770,655490,-4648500367937248,-4648499056652179],[1048770,655552,4648499056652179,4648500367937248],[1048770,1048578,-8599108093729955,-8599101370269630],[1048770,1048640,8599101370269630,8599108093729955],[1048770,1049610,26495207799184865,26495209977993164],[1048770,1049672,-2178588646,2178588643],[1048770,1049729,1975301917270118,1975303102434961],[1048770,1049736,18593997143338122,18594000555019592],[1048770,1049795,1975301917270118,1975303102434961],[1048770,1049802,45089206508319720,45089208967216020],[1048770,1049858,-26495210121498808,-26495207655679218],[1048770,1049920,39742811633466510,39742815032300530],[1048770,1049984,-15222908164034477,-15222905744259616],[1048770,1050050,-1975303102434961,-1975301917270118],[1048770,1051650,-13247605061713792,-13247603826875223],[1048770,1051712,13247603826875223,13247605061713792],[1048770,1572874,-6623803346277521,-6623801098016984],[1048770,1572936,-17896106400955991,-17896101912222451],[1048770,1572993,4648499087034444,4648500337554984],[1048770,1573000,28470509608204269,28470513188678840],[1048770,1573059,4648499087034444,4648500337554984],[1048770,1573066,3950603721653790,3950606317756372],[1048770,1573248,-4648500337554984,-4648499087034444],[1048770,1573314,-4648500337554984,-4648499087034444],[1048770,1573890,8599101370269630,8599108093729955],[1048770,1573952,-8599108093729955,-8599101370269630],[1048770,1703938,4648499056652179,4648500367937248],[1048770,1704000,-4648500367937248,-4648499056652179],[1048770,2098306,13247603821511848,13247605067077166],[1048770,2098368,-13247605067077166,-13247603821511848],[1048770,2621570,-1975303134066535,-1975301885638543],[1048770,2621632,1975301885638543,1975303134066535],[1048770,3146754,-13247605067077166,-13247603821511848],[1048770,3146816,13247603821511848,13247605067077166],[1048770,3670018,1975301885638543,1975303134066535],[1048770,3670080,-1975303134066535,-1975301885638543],[1048770,134218882,13247603827010127,13247605061578886],[1048770,134218944,-13247605061578886,-13247603827010127],[1048770,134742146,-1975303130040923,-1975301889664154],[1048770,134742208,1975301889664154,1975303130040923],[1048770,135267330,-13247605061578886,-13247603827010127],[1048770,135267392,13247603827010127,13247605061578886],[1048770,135790594,1975301889664154,1975303130040923],[1048770,135790656,-1975303130040923,-1975301889664154],[1048770,268959874,-4648500367050864,-4648499057538562],[1048770,268959936,4648499057538562,4648500367050864],[1048770,270008322,4648499057538562,4648500367050864],[1048770,270008384,-4648500367050864,-4648499057538562],[1048772,1032,1975301917270118,1975303102434961],[1048772,1100,-24519907391505747,-24519905365967204],[1048772,1164,26495207861603338,26495209915574692],[1048772,524296,4648499087034444,4648500337554984],[1048772,524364,11272300873839524,11272302995044411],[1048772,524428,-6623803284297315,-6623801159997192],[1048772,1049672,26495207861603338,26495209915574692],[1048772,1049736,-24519907391505747,-24519905365967204],[1048772,1049804,1975301917270118,1975303102434961],[1048772,1572936,-6623803284297315,-6623801159997192],[1048772,1573000,11272300873839524,11272302995044411],[1048772,1573068,4648499087034444,4648500337554984],[1048776,0,-14643395680256318,-14643391978691234],[1048776,72,-19871412444254049,-19871400888629471],[1048776,136,3950601664814648,3950608374595511],[1048776,192,1277404455586225,1277411178939584],[1048776,1026,-49039815222920444,-49039810292025454],[1048776,1028,-1975303102434961,-1975301917270118],[1048776,1098,3950601606309328,3950608433100829],[1048776,1100,24519905365967204,24519907391505747],[1048776,1162,-26495209977773508,-26495207799404518],[1048776,1164,-26495209915574692,-26495207861603338],[1048776,1218,-26495209977993164,-26495207799184865],[1048776,1280,-1975303102468593,-1975301917236486],[1048776,1352,11272298195303644,11272305673580297],[1048776,1416,13247603826989498,13247605061599516],[1048776,1472,-26495212175470166,-26495205601707868],[1048776,3144,-26495209971802464,-26495207805375563],[1048776,3208,13247603827702546,13247605060886466],[1048776,3264,13247603826875223,13247605061713792],[1048776,132096,-22544604497985104,-22544603239782766],[1048776,132168,3950603919085972,3950606120324188],[1048776,132232,-26495209992202640,-26495207784975390],[1048776,524290,22544601272808088,22544606464959780],[1048776,524292,-4648500337554984,-4648499087034444],[1048776,524362,-8599108313708112,-8599101150291472],[1048776,524364,-11272302995044411,-11272300873839524],[1048776,524426,24519905258499972,24519907498972975],[1048776,524428,6623801159997192,6623803284297315],[1048776,524482,6623801098016984,6623803346277521],[1048776,524544,13247603822433492,13247605066155522],[1048776,524616,6623801159997192,6623803284297315],[1048776,524736,6623801159997192,6623803284297315],[1048776,525312,15920800076521641,15920803216951721],[1048776,525384,-3950609233926622,-3950600805483542],[1048776,525448,8599101685162166,8599107778837422],[1048776,525504,11272298879893047,11272304988990891],[1048776,655360,-1975303167312100,-1975301852392980],[1048776,655432,-42416014583842896,-42416006486808497],[1048776,655496,45089204203543548,45089211271992192],[1048776,655552,-4648500367937248,-4648499056652179],[1048776,1048584,1277404455586225,1277411178939584],[1048776,1048640,3950601664814648,3950608374595511],[1048776,1048704,-19871412444254049,-19871400888629471],[1048776,1048776,-14643395680256318,-14643391978691234],[1048776,1049610,-26495209977993164,-26495207799184865],[1048776,1049666,-26495209977773508,-26495207799404518],[1048776,1049668,-26495209915574692,-26495207861603338],[1048776,1049730,3950601606309328,3950608433100829],[1048776,1049732,24519905365967204,24519907391505747],[1048776,1049802,-49039815222920444,-49039810292025454],[1048776,1049804,-1975303102434961,-1975301917270118],[1048776,1049864,-26495212175470166,-26495205601707868],[1048776,1049920,13247603826989498,13247605061599516],[1048776,1049984,11272298195303644,11272305673580297],[1048776,1050056,-1975303102468593,-1975301917236486],[1048776,1051656,13247603826875223,13247605061713792],[1048776,1051712,13247603827702546,13247605060886466],[1048776,1051776,-26495209971802464,-26495207805375563],[1048776,1180736,-26495209992202640,-26495207784975390],[1048776,1180800,3950603919085972,3950606120324188],[1048776,1180872,-22544604497985104,-22544603239782766],[1048776,1572874,6623801098016984,6623803346277521],[1048776,1572930,24519905258499972,24519907498972975],[1048776,1572932,6623801159997192,6623803284297315],[1048776,1572994,-8599108313708112,-8599101150291472],[1048776,1572996,-11272302995044411,-11272300873839524],[1048776,1573066,22544601272808088,22544606464959780],[1048776,1573068,-4648500337554984,-4648499087034444],[1048776,1573128,6623801159997192,6623803284297315],[1048776,1573248,6623801159997192,6623803284297315],[1048776,1573320,13247603822433492,13247605066155522],[1048776,1573896,11272298879893047,11272304988990891],[1048776,1573952,8599101685162166,8599107778837422],[1048776,1574016,-3950609233926622,-3950600805483542],[1048776,1574088,15920800076521641,15920803216951721],[1048776,1703944,-4648500367937248,-4648499056652179],[1048776,1704000,45089204203543548,45089211271992192],[1048776,1704064,-42416014583842896,-42416006486808497],[1048776,1704136,-1975303167312100,-1975301852392980],[1048776,2098248,-26495209977993164,-26495207799184865],[1048776,2098312,13247603826875223,13247605061713792],[1048776,2098368,13247603821511848,13247605067077166],[1048776,2621512,24519905292829456,24519907464643493],[1048776,2621576,-22544604485915178,-22544603251852693],[1048776,2621632,-1975303134066535,-1975301885638543],[1048776,3146760,13247603821511848,13247605067077166],[1048776,3146816,13247603826875223,13247605061713792],[1048776,3146880,-26495209977993164,-26495207799184865],[1048776,3670024,-1975303134066535,-1975301885638543],[1048776,3670080,-22544604485915178,-22544603251852693],[1048776,3670144,24519905292829456,24519907464643493],[1048776,134218824,-26495209977752878,-26495207799425147],[1048776,134218888,13247603821617226,13247605066971786],[1048776,134218944,13247603827010127,13247605061578886],[1048776,134742088,24519905293069738,24519907464403207],[1048776,134742152,-22544604489700504,-22544603248067364],[1048776,134742208,-1975303130040923,-1975301889664154],[1048776,135267336,13247603827010127,13247605061578886],[1048776,135267392,13247603821617226,13247605066971786],[1048776,135267456,-26495209977752878,-26495207799425147],[1048776,135790600,-1975303130040923,-1975301889664154],[1048776,135790656,-22544604489700504,-22544603248067364],[1048776,135790720,24519905293069738,24519907464403207],[1048776,268959816,6623801086208550,6623803358085955],[1048776,268959880,-1975303161793801,-1975301857911278],[1048776,268959936,-4648500367050864,-4648499057538562],[1048776,270008328,-4648500367050864,-4648499057538562],[1048776,270008384,-1975303161793801,-1975301857911278],[1048776,270008448,6623801086208550,6623803358085955],[1048832,136,-3950605484998596,-3950604554411562],[1048832,1026,13247602765618499,13247606122970514],[1048832,1032,-26495211786596702,-26495205990581324],[1048832,1218,1975301917270118,1975303102434961],[1048832,1224,1975301917236486,1975303102468593],[1048832,132096,13247602765652131,13247606122936882],[1048832,524482,4648499087034444,4648500337554984],[1048832,524488,-13247605066155522,-13247603822433492],[1048832,525448,1975301917236486,1975303102468593],[1048832,655552,4648499087000812,4648500337588616],[1048832,656512,1975301917270118,1975303102434961],[1048832,1048968,-3950605484998596,-3950604554411562],[1048832,1049858,13247602765618499,13247606122970514],[1048832,1049864,-26495211786596702,-26495205990581324],[1048832,1050050,1975301917270118,1975303102434961],[1048832,1050056,1975301917236486,1975303102468593],[1048832,1180928,13247602765652131,13247606122936882],[1048832,1573314,4648499087034444,4648500337554984],[1048832,1573320,-13247605066155522,-13247603822433492],[1048832,1574280,1975301917236486,1975303102468593],[1048832,1704384,4648499087000812,4648500337588616],[1048832,1705344,1975301917270118,1975303102434961],[1048897,1026,13247603855385956,13247605033203059],[1048897,1091,13247603855385956,13247605033203059],[1048897,1049858,13247603855385956,13247605033203059],[1048897,1049923,13247603855385956,13247605033203059],[1048898,258,-1975304235590111,-1975300784114970],[1048898,320,1975300784114970,1975304235590111],[1048898,1025,-13247605033203059,-13247603855385956],[1048898,1032,-13247605061599516,-13247603826989498],[1048898,1091,-13247605033203059,-13247603855385956],[1048898,1098,-13247605061599516,-13247603826989498],[1048898,1152,13247603826989498,13247605061599516],[1048898,1218,15222905744259616,15222908164034477],[1048898,1410,-47064511822048211,-47064508673192612],[1048898,1472,45089206614383552,45089208861152192],[1048898,1794,24519905292829457,24519907464643494],[1048898,1856,-24519907464643494,-24519905292829457],[1048898,3330,-22544604485915178,-22544603251852693],[1048898,3392,22544603251852693,22544604485915178],[1048898,524482,4648499087034444,4648500337554984],[1048898,524674,-6623803284297315,-6623801159997192],[1048898,524736,1975301917236486,1975303102468593],[1048898,525570,-1975303102468593,-1975301917236486],[1048898,525632,1975301917236486,1975303102468593],[1048898,1048578,1975300784114970,1975304235590111],[1048898,1048640,-1975304235590111,-1975300784114970],[1048898,1049730,45089206614383552,45089208861152192],[1048898,1049792,-47064511822048211,-47064508673192612],[1048898,1049857,-13247605033203059,-13247603855385956],[1048898,1049864,-13247605061599516,-13247603826989498],[1048898,1049923,-13247605033203059,-13247603855385956],[1048898,1049930,-13247605061599516,-13247603826989498],[1048898,1049984,15222905744259616,15222908164034477],[1048898,1050050,13247603826989498,13247605061599516],[1048898,1050114,-24519907464643494,-24519905292829457],[1048898,1050176,24519905292829457,24519907464643494],[1048898,1051650,22544603251852693,22544604485915178],[1048898,1051712,-22544604485915178,-22544603251852693],[1048898,1572994,1975301917236486,1975303102468593],[1048898,1573056,-6623803284297315,-6623801159997192],[1048898,1573248,4648499087034444,4648500337554984],[1048898,1573890,1975301917236486,1975303102468593],[1048898,1573952,-1975303102468593,-1975301917236486],[1048898,2098434,-1975303134066536,-1975301885638544],[1048898,2098496,1975301885638544,1975303134066536],[1048898,3146754,1975301885638544,1975303134066536],[1048898,3146816,-1975303134066536,-1975301885638544],[1048898,134219010,-1975303127852212,-1975301891852867],[1048898,134219072,1975301891852867,1975303127852212],[1048898,135267330,1975301891852867,1975303127852212],[1048898,135267392,-1975303127852212,-1975301891852867],[1048904,1026,13247603826989498,13247605061599516],[1048904,1098,13247603826989498,13247605061599516],[1048904,1152,66238019734487245,66238024708457820],[1048904,1224,17198204951509383,17198213976489780],[1048904,1416,49039810731968040,49039814782977862],[1048904,524488,-6623803284297315,-6623801159997192],[1048904,524680,6623801159997192,6623803284297315],[1048904,1049792,49039810731968040,49039814782977862],[1048904,1049858,13247603826989498,13247605061599516],[1048904,1049930,13247603826989498,13247605061599516],[1048904,1049984,17198204951509383,17198213976489780],[1048904,1050056,66238019734487245,66238024708457820],[1048904,1573056,6623801159997192,6623803284297315],[1048904,1573248,-6623803284297315,-6623801159997192],[1048962,1032,-26495209977773508,-26495207799404518],[1048962,1088,-3950609211113582,-3950600828296569],[1048962,1162,-26495209977773508,-26495207799404518],[1048962,1218,-52990419943081622,-52990415611274431],[1048962,1346,49039810731968040,49039814782977862],[1048962,524352,6623801159997192,6623803284297315],[1048962,524610,6623801159997192,6623803284297315],[1048962,1049792,49039810731968040,49039814782977862],[1048962,1049864,-26495209977773508,-26495207799404518],[1048962,1049920,-52990419943081622,-52990415611274431],[1048962,1049994,-26495209977773508,-26495207799404518],[1048962,1050050,-3950609211113582,-3950600828296569],[1048962,1573056,6623801159997192,6623803284297315],[1048962,1573314,6623801159997192,6623803284297315],[1048964,1032,-26495209915574692,-26495207861603338],[1048964,1164,-26495209915574692,-26495207861603338],[1048964,1049864,-26495209915574692,-26495207861603338],[1048964,1049996,-26495209915574692,-26495207861603338],[1048968,0,-7901210969997192,-7901209108823124],[1048968,136,-3950605484998596,-3950604554411562],[1048968,264,-1975305295246081,-1975299724458993],[1048968,384,-1975305295212454,-1975299724492630],[1048968,1026,26495207799404518,26495209977773508],[1048968,1028,26495207861603338,26495209915574692],[1048968,1088,-24519908060537022,-24519904696935925],[1048968,1162,26495207799404518,26495209977773508],[1048968,1164,26495207861603338,26495209915574692],[1048968,1224,-26495209977773508,-26495207799404518],[1048968,1352,-51015117307046807,-51015113227604174],[1048968,1472,52990415723206676,52990419831149384],[1048968,1800,-26495209977993164,-26495207799184865],[1048968,1920,26495207799184865,26495209977993164],[1048968,3336,-923386045,923386045],[1048968,3456,-923386045,923386045],[1048968,132096,26495207784975390,26495209992202640],[1048968,132232,26495207784975390,26495209992202640],[1048968,524352,-13247605066155522,-13247603822433492],[1048968,524616,-6623803284297315,-6623801159997192],[1048968,524736,-6623803284297315,-6623801159997192],[1048968,525312,-24519908074966154,-24519904682506797],[1048968,525448,-26495209992202640,-26495207784975390],[1048968,525576,52990415723206676,52990419831149384],[1048968,525696,-51015117307046807,-51015113227604174],[1048968,1048584,-1975305295212454,-1975299724492630],[1048968,1048704,-1975305295246081,-1975299724458993],[1048968,1048832,-3950605484998596,-3950604554411562],[1048968,1048968,-7901210969997192,-7901209108823124],[1048968,1049672,52990415723206676,52990419831149384],[1048968,1049792,-51015117307046807,-51015113227604174],[1048968,1049858,26495207799404518,26495209977773508],[1048968,1049860,26495207861603338,26495209915574692],[1048968,1049920,-26495209977773508,-26495207799404518],[1048968,1049994,26495207799404518,26495209977773508],[1048968,1049996,26495207861603338,26495209915574692],[1048968,1050056,-24519908060537022,-24519904696935925],[1048968,1050120,26495207799184865,26495209977993164],[1048968,1050240,-26495209977993164,-26495207799184865],[1048968,1051656,-923386045,923386045],[1048968,1051776,-923386045,923386045],[1048968,1180928,26495207784975390,26495209992202640],[1048968,1181064,26495207784975390,26495209992202640],[1048968,1572936,-6623803284297315,-6623801159997192],[1048968,1573056,-6623803284297315,-6623801159997192],[1048968,1573320,-13247605066155522,-13247603822433492],[1048968,1573896,-51015117307046807,-51015113227604174],[1048968,1574016,52990415723206676,52990419831149384],[1048968,1574144,-26495209992202640,-26495207784975390],[1048968,1574280,-24519908074966154,-24519904682506797],[1048968,2098440,26495207799184865,26495209977993164],[1048968,2098560,-26495209977993164,-26495207799184865],[1048968,3146760,-26495209977993164,-26495207799184865],[1048968,3146880,26495207799184865,26495209977993164],[1048968,134219016,26495207799425147,26495209977752878],[1048968,134219136,-26495209977752878,-26495207799425147],[1048968,135267336,-26495209977752878,-26495207799425147],[1048968,135267456,26495207799425147,26495209977752878],[1049024,1026,-7321700188594704,-7321693640879080],[1049024,1032,-39742815032279900,-39742811633487139],[1049024,1218,39742811633487139,39742815032279900],[1049024,1224,11272298195290642,11272305673593300],[1049024,1346,-47064511822081843,-47064508673158980],[1049024,1416,-51015117307080439,-51015113227570542],[1049024,524290,-1975303102468593,-1975301917236486],[1049024,524488,-6623803284297315,-6623801159997192],[1049024,524610,-1975303102468593,-1975301917236486],[1049024,524680,6623801159997192,6623803284297315],[1049024,655552,4648499087000812,4648500337588616],[1049024,655744,-4648500337588616,-4648499087000812],[1049024,1049672,-51015117307080439,-51015113227570542],[1049024,1049730,-47064511822081843,-47064508673158980],[1049024,1049858,39742811633487139,39742815032279900],[1049024,1049864,11272298195290642,11272305673593300],[1049024,1050050,-7321700188594704,-7321693640879080],[1049024,1050056,-39742815032279900,-39742811633487139],[1049024,1572936,6623801159997192,6623803284297315],[1049024,1572994,-1975303102468593,-1975301917236486],[1049024,1573128,-6623803284297315,-6623801159997192],[1049024,1573314,-1975303102468593,-1975301917236486],[1049024,1704000,-4648500337588616,-4648499087000812],[1049024,1704192,4648499087000812,4648500337588616],[1049154,1794,-26495209978356470,-26495207798821558],[1049154,1856,26495207798821558,26495209978356470],[1049154,1049858,26495207798821558,26495209978356470],[1049154,1049920,-26495209978356470,-26495207798821558],[1049224,1800,26495207799184865,26495209977993164],[1049224,1920,-26495209977993164,-26495207799184865],[1049224,3592,26495207805375563,26495209971802464],[1049224,3712,-26495209971802464,-26495207805375563],[1049224,1049864,-26495209977993164,-26495207799184865],[1049224,1049984,26495207799184865,26495209977993164],[1049224,1051656,-26495209971802464,-26495207805375563],[1049224,1051776,26495207805375563,26495209971802464],[1049346,1088,1975301892192548,1975303127512529],[1049346,1346,-24519907464643494,-24519905292829457],[1049346,1602,26495207798821558,26495209978356470],[1049346,1049920,26495207798821558,26495209978356470],[1049346,1050176,-24519907464643494,-24519905292829457],[1049346,1050434,1975301892192548,1975303127512529],[1049352,1416,24519905292829457,24519907464643494],[1049352,1672,-24519907464643494,-24519905292829457],[1049352,1049984,-24519907464643494,-24519905292829457],[1049352,1050240,24519905292829457,24519907464643494],[1049408,1026,-1975303127512529,-1975301892192548],[1049408,1346,24519905292829457,24519907464643494],[1049408,1602,-26495209978356470,-26495207798821558],[1049408,1049858,-26495209978356470,-26495207798821558],[1049408,1050114,24519905292829457,24519907464643494],[1049408,1050434,-1975303127512529,-1975301892192548],[1049472,1416,-24519907464643494,-24519905292829457],[1049472,1672,24519905292829457,24519907464643494],[1049472,1049864,24519905292829457,24519907464643494],[1049472,1050120,-24519907464643494,-24519905292829457],[1049600,72,-3950605484998596,-3950604554411562],[1049600,136,-34514803440217642,-34514797551613446],[1049600,264,17198207785323578,17198211142675593],[1049600,2056,17198207753821687,17198211174177485],[1049600,131200,-12549714288599261,-12549705214810465],[1049600,131328,-13247606122936882,-13247602765652131],[1049600,133120,-13247606157000801,-13247602731588215],[1049600,524296,-12549714288599261,-12549705214810465],[1049600,524488,8599103952864898,8599105511134688],[1049600,524680,-1975303102468593,-1975301917236486],[1049600,526472,-1975303104304567,-1975301915400511],[1049600,655360,-34514803440217642,-34514797551613446],[1049600,655496,-9297000684250004,-9296998164928852],[1049600,655552,-4648500337588616,-4648499087000812],[1049600,655744,-1975303102434961,-1975301917270118],[1049600,657536,-1975303106832961,-1975301912872117],[1049600,1049672,-3950605484998596,-3950604554411562],[1049600,1049736,-34514803440217642,-34514797551613446],[1049600,1049864,17198207785323578,17198211142675593],[1049600,1051656,17198207753821687,17198211174177485],[1049600,1180800,-12549714288599261,-12549705214810465],[1049600,1180928,-13247606122936882,-13247602765652131],[1049600,1182720,-13247606157000801,-13247602731588215],[1049600,1573896,-12549714288599261,-12549705214810465],[1049600,1574088,8599103952864898,8599105511134688],[1049600,1574280,-1975303102468593,-1975301917236486],[1049600,1576072,-1975303104304567,-1975301915400511],[1049600,1704960,-34514803440217642,-34514797551613446],[1049600,1705096,-9297000684250004,-9296998164928852],[1049600,1705152,-4648500337588616,-4648499087000812],[1049600,1705344,-1975303102434961,-1975301917270118],[1049600,1707136,-1975303106832961,-1975301912872117],[1049600,2097160,-13247606157000801,-13247602731588215],[1049600,2228224,17198207753821687,17198211174177485],[1049600,2621576,-1975303106832961,-1975301912872117],[1049600,2752640,-1975303104304567,-1975301915400511],[1049600,3146760,-13247606157000801,-13247602731588215],[1049600,3277824,17198207753821687,17198211174177485],[1049600,3671176,-1975303106832961,-1975301912872117],[1049600,3802240,-1975303104304567,-1975301915400511],[1049600,134217736,-13247606122936882,-13247602765652131],[1049600,134348800,17198207785323578,17198211142675593],[1049600,134742152,-1975303102434961,-1975301917270118],[1049600,134873216,-1975303102468593,-1975301917236486],[1049600,135267336,-13247606122936882,-13247602765652131],[1049600,135398400,17198207785323578,17198211142675593],[1049600,135791752,-1975303102434961,-1975301917270118],[1049600,135922816,-1975303102468593,-1975301917236486],[1049600,268566528,-3950605484998596,-3950604554411562],[1049600,268959880,-4648500337588616,-4648499087000812],[1049600,269090944,8599103952864898,8599105511134688],[1049600,269616128,-3950605484998596,-3950604554411562],[1049600,270009480,-4648500337588616,-4648499087000812],[1049600,270140544,8599103952864898,8599105511134688],[1049610,1026,-1975304605835260,-1975300413869816],[1049610,1032,1975300413869816,1975304605835260],[1049610,1218,-26495209977993164,-26495207799184865],[1049610,1224,26495207799184865,26495209977993164],[1049610,525442,-11272302995044411,-11272300873839524],[1049610,525448,11272300873839524,11272302995044411],[1049610,1048578,1975300413869816,1975304605835260],[1049610,1048584,-1975304605835260,-1975300413869816],[1049610,1048770,26495207799184865,26495209977993164],[1049610,1048776,-26495209977993164,-26495207799184865],[1049610,1572994,11272300873839524,11272302995044411],[1049610,1573000,-11272302995044411,-11272300873839524],[1049612,1028,-1975304506421476,-1975300513283600],[1049612,1032,1975300513283600,1975304506421476],[1049612,525444,6623801213223040,6623803231071470],[1049612,525448,-6623803231071470,-6623801213223040],[1049612,1048580,1975300513283600,1975304506421476],[1049612,1048584,-1975304506421476,-1975300513283600],[1049612,1572996,-6623803231071470,-6623801213223040],[1049612,1573000,6623801213223040,6623803231071470],[1049666,1026,-3950609211113582,-3950600828296569],[1049666,1088,3950600828296569,3950609211113582],[1049666,1162,-26495209977773508,-26495207799404518],[1049666,1224,26495207799404518,26495209977773508],[1049666,525442,6623801159997192,6623803284297315],[1049666,525504,-6623803284297315,-6623801159997192],[1049666,1048578,3950600828296569,3950609211113582],[1049666,1048640,-3950609211113582,-3950600828296569],[1049666,1048714,26495207799404518,26495209977773508],[1049666,1048776,-26495209977773508,-26495207799404518],[1049666,1572994,-6623803284297315,-6623801159997192],[1049666,1573056,6623801159997192,6623803284297315],[1049668,1164,-26495209915574692,-26495207861603338],[1049668,1224,26495207861603338,26495209915574692],[1049668,1048716,26495207861603338,26495209915574692],[1049668,1048776,-26495209915574692,-26495207861603338],[1049672,0,-7901210969997192,-7901209108823124],[1049672,72,-3950605484998596,-3950604554411562],[1049672,384,-24519908060482760,-24519904696990186],[1049672,456,-26495209977752878,-26495207799425147],[1049672,1032,-1975305281023604,-1975299738681472],[1049672,1088,-1975305281057239,-1975299738647843],[1049672,1162,-2178588646,2178588643],[1049672,1164,26495207861603338,26495209915574692],[1049672,1218,-2178588643,2178588646],[1049672,1220,-26495209915574692,-26495207861603338],[1049672,1416,-51015117307080439,-51015113227570542],[1049672,1472,52990415723206676,52990419831149384],[1049672,2176,-26495209977993164,-26495207799184865],[1049672,2248,-26495209977993164,-26495207799184865],[1049672,132232,26495207784975390,26495209992202640],[1049672,132288,-26495209992202640,-26495207784975390],[1049672,524416,57638914684866570,57638920294078918],[1049672,524488,52990415723206676,52990419831149384],[1049672,525448,-6623804221568240,-6623800222726267],[1049672,525504,11272299936568599,11272303932315336],[1049672,1048584,-1975305281057239,-1975299738647843],[1049672,1048640,-1975305281023604,-1975299738681472],[1049672,1048714,-2178588643,2178588646],[1049672,1048716,-26495209915574692,-26495207861603338],[1049672,1048770,-2178588646,2178588643],[1049672,1048772,26495207861603338,26495209915574692],[1049672,1048968,52990415723206676,52990419831149384],[1049672,1049024,-51015117307080439,-51015113227570542],[1049672,1049600,-3950605484998596,-3950604554411562],[1049672,1049672,-7901210969997192,-7901209108823124],[1049672,1049984,-26495209977752878,-26495207799425147],[1049672,1050056,-24519908060482760,-24519904696990186],[1049672,1051776,-26495209977993164,-26495207799184865],[1049672,1051848,-26495209977993164,-26495207799184865],[1049672,1179784,-26495209992202640,-26495207784975390],[1049672,1179840,26495207784975390,26495209992202640],[1049672,1573000,11272299936568599,11272303932315336],[1049672,1573056,-6623804221568240,-6623800222726267],[1049672,1574016,52990415723206676,52990419831149384],[1049672,1574088,57638914684866570,57638920294078918],[1049672,2097280,26495207799184865,26495209977993164],[1049672,2097352,26495207799184865,26495209977993164],[1049672,3146880,26495207799184865,26495209977993164],[1049672,3146952,26495207799184865,26495209977993164],[1049672,134217856,26495207799425147,26495209977752878],[1049672,134217928,26495207799425147,26495209977752878],[1049672,135267456,26495207799425147,26495209977752878],[1049672,135267528,26495207799425147,26495209977752878],[1049729,1035,1975301917236486,1975303102468593],[1049729,1037,22544603307191776,22544604430576096],[1049729,1091,1975301917270118,1975303102434961],[1049729,1162,-1975303102468593,-1975301917236486],[1049729,1164,-22544604430576096,-22544603307191776],[1049729,1218,-1975303102434961,-1975301917270118],[1049729,1048587,-1975303102468593,-1975301917236486],[1049729,1048589,-22544604430576096,-22544603307191776],[1049729,1048643,-1975303102434961,-1975301917270118],[1049729,1048714,1975301917236486,1975303102468593],[1049729,1048716,22544603307191776,22544604430576096],[1049729,1048770,1975301917270118,1975303102434961],[1049730,264,13247603821617226,13247605066971786],[1049730,320,13247603827010127,13247605061578886],[1049730,394,13247603821617226,13247605066971786],[1049730,450,15222905744246613,15222908164047479],[1049730,1026,-3950608433100829,-3950601606309328],[1049730,1035,-1975303102468593,-1975301917236486],[1049730,1038,-22544604430576096,-22544603307191776],[1049730,1091,-1975303102434961,-1975301917270118],[1049730,1098,3950601606309328,3950608433100829],[1049730,1152,3950601606309328,3950608433100829],[1049730,1161,1975301917236486,1975303102468593],[1049730,1164,22544603307191776,22544604430576096],[1049730,1217,1975301917270118,1975303102434961],[1049730,1224,-3950608433100829,-3950601606309328],[1049730,1346,-47064511822081843,-47064508673158980],[1049730,1472,45089206614383552,45089208861152192],[1049730,2056,13247603826875223,13247605061713792],[1049730,2112,13247603821511848,13247605067077166],[1049730,2186,13247603826875223,13247605061713792],[1049730,2242,13247603821511848,13247605067077166],[1049730,132106,-1975303134589986,-1975301885115096],[1049730,132232,1975301885115096,1975303134589986],[1049730,524296,-26495210066406118,-26495207710771912],[1049730,524352,-26495210066338854,-26495207710839176],[1049730,524426,-37767512457661269,-37767509188400696],[1049730,524482,-19871408304404039,-19871405028479484],[1049730,525322,15222904792925496,15222909115368599],[1049730,525378,17896101995938767,17896106317239678],[1049730,525448,-3950606120324188,-3950603919085972],[1049730,525504,-24519907477236870,-24519905280236082],[1049730,1048578,3950601606309328,3950608433100829],[1049730,1048587,1975301917236486,1975303102468593],[1049730,1048590,22544603307191776,22544604430576096],[1049730,1048643,1975301917270118,1975303102434961],[1049730,1048650,-3950608433100829,-3950601606309328],[1049730,1048704,-3950608433100829,-3950601606309328],[1049730,1048713,-1975303102468593,-1975301917236486],[1049730,1048716,-22544604430576096,-22544603307191776],[1049730,1048769,-1975303102434961,-1975301917270118],[1049730,1048776,3950601606309328,3950608433100829],[1049730,1048898,45089206614383552,45089208861152192],[1049730,1049024,-47064511822081843,-47064508673158980],[1049730,1049864,13247603821617226,13247605066971786],[1049730,1049920,15222905744246613,15222908164047479],[1049730,1049994,13247603821617226,13247605066971786],[1049730,1050050,13247603827010127,13247605061578886],[1049730,1051656,13247603826875223,13247605061713792],[1049730,1051712,13247603821511848,13247605067077166],[1049730,1051786,13247603826875223,13247605061713792],[1049730,1051842,13247603821511848,13247605067077166],[1049730,1179658,1975301885115096,1975303134589986],[1049730,1179784,-1975303134589986,-1975301885115096],[1049730,1572874,-3950606120324188,-3950603919085972],[1049730,1572930,-24519907477236870,-24519905280236082],[1049730,1573000,15222904792925496,15222909115368599],[1049730,1573056,17896101995938767,17896106317239678],[1049730,1573896,-37767512457661269,-37767509188400696],[1049730,1573952,-19871408304404039,-19871405028479484],[1049730,1574026,-26495210066406118,-26495207710771912],[1049730,1574082,-26495210066338854,-26495207710839176],[1049730,2097160,-13247605061713792,-13247603826875223],[1049730,2097216,-13247605067077166,-13247603821511848],[1049730,2097290,-13247605061713792,-13247603826875223],[1049730,2097346,-13247605067077166,-13247603821511848],[1049730,3146760,-13247605061713792,-13247603826875223],[1049730,3146816,-13247605067077166,-13247603821511848],[1049730,3146890,-13247605061713792,-13247603826875223],[1049730,3146946,-13247605067077166,-13247603821511848],[1049730,134217736,-13247605066971786,-13247603821617226],[1049730,134217792,-13247605061578886,-13247603827010127],[1049730,134217866,-13247605066971786,-13247603821617226],[1049730,134217922,-13247605061578886,-13247603827010127],[1049730,135267336,-13247605066971786,-13247603821617226],[1049730,135267392,-13247605061578886,-13247603827010127],[1049730,135267466,-13247605066971786,-13247603821617226],[1049730,135267522,-13247605061578886,-13247603827010127],[1049732,264,13247603855419588,13247605033169427],[1049732,396,13247603855419588,13247605033169427],[1049732,1028,-1975304034893986,-1975300984811094],[1049732,1037,-22544604430576096,-22544603307191776],[1049732,1038,-1975303102468593,-1975301917236486],[1049732,1100,24519905365967204,24519907391505747],[1049732,1152,1975300984811094,1975304034893986],[1049732,1161,22544603307191776,22544604430576096],[1049732,1162,1975301917236486,1975303102468593],[1049732,1224,-24519907391505747,-24519905365967204],[1049732,2056,13247603851021587,13247605037567427],[1049732,2188,13247603851021587,13247605037567427],[1049732,33804,-22544604444342592,-22544603293425280],[1049732,33928,22544603293425280,22544604444342592],[1049732,132108,-1975303111382023,-1975301908323058],[1049732,132232,1975301908323058,1975303111382023],[1049732,524296,-26495210023626872,-26495207753551168],[1049732,524428,-19871408102400732,-19871405230482798],[1049732,525324,17896102112215810,17896106200962633],[1049732,525448,-24519907414185673,-24519905343287280],[1049732,1048580,1975300984811094,1975304034893986],[1049732,1048589,22544603307191776,22544604430576096],[1049732,1048590,1975301917236486,1975303102468593],[1049732,1048652,-24519907391505747,-24519905365967204],[1049732,1048704,-1975304034893986,-1975300984811094],[1049732,1048713,-22544604430576096,-22544603307191776],[1049732,1048714,-1975303102468593,-1975301917236486],[1049732,1048776,24519905365967204,24519907391505747],[1049732,1049864,13247603855419588,13247605033169427],[1049732,1049996,13247603855419588,13247605033169427],[1049732,1051656,13247603851021587,13247605037567427],[1049732,1051788,13247603851021587,13247605037567427],[1049732,1081356,22544603293425280,22544604444342592],[1049732,1081480,-22544604444342592,-22544603293425280],[1049732,1179660,1975301908323058,1975303111382023],[1049732,1179784,-1975303111382023,-1975301908323058],[1049732,1572876,-24519907414185673,-24519905343287280],[1049732,1573000,17896102112215810,17896106200962633],[1049732,1573896,-19871408102400732,-19871405230482798],[1049732,1574028,-26495210023626872,-26495207753551168],[1049732,2097160,-13247605037567427,-13247603851021587],[1049732,2097292,-13247605037567427,-13247603851021587],[1049732,3146760,-13247605037567427,-13247603851021587],[1049732,3146892,-13247605037567427,-13247603851021587],[1049732,134217736,-13247605033169427,-13247603855419588],[1049732,134217868,-13247605033169427,-13247603855419588],[1049732,135267336,-13247605033169427,-13247603855419588],[1049732,135267468,-13247605033169427,-13247603855419588],[1049736,0,-49039814800838354,-49039810714107552],[1049736,136,-34514803440217642,-34514797551613446],[1049736,258,-13247605066971786,-13247603821617226],[1049736,260,-13247605033169427,-13247603855419588],[1049736,320,13247603821617226,13247605066971786],[1049736,394,-13247605066971786,-13247603821617226],[1049736,396,-13247605033169427,-13247603855419588],[1049736,456,13247603821617226,13247605066971786],[1049736,1032,296947377306566843,296947428089998092],[1049736,1038,24519905365967204,24519907391505747],[1049736,1098,18593997143338122,18594000555019592],[1049736,1100,-24519907391505747,-24519905365967204],[1049736,1152,-311472436788867910,-311472393130811843],[1049736,1158,-24519907391505747,-24519905365967204],[1049736,1218,-18594000555019592,-18593997143338122],[1049736,1220,24519905365967204,24519907391505747],[1049736,2050,-13247605061713792,-13247603826875223],[1049736,2052,-13247605037567427,-13247603851021587],[1049736,2112,13247603826875223,13247605061713792],[1049736,2186,-13247605061713792,-13247603826875223],[1049736,2188,-13247605037567427,-13247603851021587],[1049736,2248,13247603826875223,13247605061713792],[1049736,3336,24519905292829456,24519907464643493],[1049736,3456,-24519907464643493,-24519905292829456],[1049736,131328,-13247605066127948,-13247603822461068],[1049736,131464,-13247605066127948,-13247603822461068],[1049736,132106,3950603919085972,3950606120324188],[1049736,132108,24519905343287280,24519907414185673],[1049736,132168,-3950606120324188,-3950603919085972],[1049736,132226,-3950606120324188,-3950603919085972],[1049736,132228,-24519907414185673,-24519905343287280],[1049736,132288,3950603919085972,3950606120324188],[1049736,133120,-13247605070627222,-13247603817961795],[1049736,133256,-13247605070627222,-13247603817961795],[1049736,524290,26495207710771912,26495210066406118],[1049736,524292,26495207753551168,26495210023626872],[1049736,524352,-24519907696178166,-24519905061294785],[1049736,524426,37767509188400696,37767512457661269],[1049736,524428,19871405230482798,19871408102400732],[1049736,524488,-31143710097437046,-31143707104330412],[1049736,524544,11272300719992475,11272303148891462],[1049736,524680,13247603822461068,13247605066127948],[1049736,525322,-15222909115368599,-15222904792925496],[1049736,525324,-17896106200962633,-17896102112215810],[1049736,525384,10574405079083164,10574409404621503],[1049736,525442,3950603919085972,3950606120324188],[1049736,525444,24519905343287280,24519907414185673],[1049736,525504,-3950606995955408,-3950603043454752],[1049736,525576,-51015117307046807,-51015113227604174],[1049736,525696,49039810732001672,49039814782944230],[1049736,526336,11272300713657228,11272303155226711],[1049736,526472,13247603817961795,13247605070627222],[1049736,527368,-51015117331445277,-51015113203205693],[1049736,527488,49039810709439166,49039814805506726],[1049736,655360,26495207692945056,26495210084232978],[1049736,655496,66238017807040958,66238026635904120],[1049736,656392,7321690308104443,7321703521369331],[1049736,656512,-47064513169575377,-47064507325665441],[1049736,1048584,-311472436788867910,-311472393130811843],[1049736,1048590,-24519907391505747,-24519905365967204],[1049736,1048650,-18594000555019592,-18593997143338122],[1049736,1048652,24519905365967204,24519907391505747],[1049736,1048704,296947377306566843,296947428089998092],[1049736,1048710,24519905365967204,24519907391505747],[1049736,1048770,18593997143338122,18594000555019592],[1049736,1048772,-24519907391505747,-24519905365967204],[1049736,1049600,-34514803440217642,-34514797551613446],[1049736,1049736,-49039814800838354,-49039810714107552],[1049736,1049858,-13247605066971786,-13247603821617226],[1049736,1049860,-13247605033169427,-13247603855419588],[1049736,1049920,13247603821617226,13247605066971786],[1049736,1049994,-13247605066971786,-13247603821617226],[1049736,1049996,-13247605033169427,-13247603855419588],[1049736,1050056,13247603821617226,13247605066971786],[1049736,1050888,-24519907464643493,-24519905292829456],[1049736,1051008,24519905292829456,24519907464643493],[1049736,1051650,-13247605061713792,-13247603826875223],[1049736,1051652,-13247605037567427,-13247603851021587],[1049736,1051712,13247603826875223,13247605061713792],[1049736,1051786,-13247605061713792,-13247603826875223],[1049736,1051788,-13247605037567427,-13247603851021587],[1049736,1051848,13247603826875223,13247605061713792],[1049736,1179658,-3950606120324188,-3950603919085972],[1049736,1179660,-24519907414185673,-24519905343287280],[1049736,1179720,3950603919085972,3950606120324188],[1049736,1179778,3950603919085972,3950606120324188],[1049736,1179780,24519905343287280,24519907414185673],[1049736,1179840,-3950606120324188,-3950603919085972],[1049736,1180928,-13247605066127948,-13247603822461068],[1049736,1181064,-13247605066127948,-13247603822461068],[1049736,1182720,-13247605070627222,-13247603817961795],[1049736,1182856,-13247605070627222,-13247603817961795],[1049736,1572874,3950603919085972,3950606120324188],[1049736,1572876,24519905343287280,24519907414185673],[1049736,1572936,-3950606995955408,-3950603043454752],[1049736,1572994,-15222909115368599,-15222904792925496],[1049736,1572996,-17896106200962633,-17896102112215810],[1049736,1573056,10574405079083164,10574409404621503],[1049736,1573128,49039810732001672,49039814782944230],[1049736,1573248,-51015117307046807,-51015113227604174],[1049736,1573890,37767509188400696,37767512457661269],[1049736,1573892,19871405230482798,19871408102400732],[1049736,1573952,-31143710097437046,-31143707104330412],[1049736,1574026,26495207710771912,26495210066406118],[1049736,1574028,26495207753551168,26495210023626872],[1049736,1574088,-24519907696178166,-24519905061294785],[1049736,1574144,13247603822461068,13247605066127948],[1049736,1574280,11272300719992475,11272303148891462],[1049736,1574920,49039810709439166,49039814805506726],[1049736,1575040,-51015117331445277,-51015113203205693],[1049736,1575936,13247603817961795,13247605070627222],[1049736,1576072,11272300713657228,11272303155226711],[1049736,1703944,-47064513169575377,-47064507325665441],[1049736,1704064,7321690308104443,7321703521369331],[1049736,1704960,66238017807040958,66238026635904120],[1049736,1705096,26495207692945056,26495210084232978],[1049736,2097154,13247603826875223,13247605061713792],[1049736,2097156,13247603851021587,13247605037567427],[1049736,2097216,-13247605061713792,-13247603826875223],[1049736,2097290,13247603826875223,13247605061713792],[1049736,2097292,13247603851021587,13247605037567427],[1049736,2097352,-13247605061713792,-13247603826875223],[1049736,2098440,-24519907464643493,-24519905292829456],[1049736,2098560,24519905292829456,24519907464643493],[1049736,2100232,-22544605449648746,-22544602288119128],[1049736,2100352,22544602288119128,22544605449648746],[1049736,2228224,13247603817961795,13247605070627222],[1049736,2228360,13247603817961795,13247605070627222],[1049736,2621440,-13247605070627222,-13247603817961795],[1049736,2621576,-15222908177460183,-15222905730833912],[1049736,2622472,49039810709439166,49039814805506726],[1049736,2622592,-47064511840212707,-47064508655028107],[1049736,3145992,24519905292829456,24519907464643493],[1049736,3146112,-24519907464643493,-24519905292829456],[1049736,3146754,13247603826875223,13247605061713792],[1049736,3146756,13247603851021587,13247605037567427],[1049736,3146816,-13247605061713792,-13247603826875223],[1049736,3146890,13247603826875223,13247605061713792],[1049736,3146892,13247603851021587,13247605037567427],[1049736,3146952,-13247605061713792,-13247603826875223],[1049736,3147784,22544602288119128,22544605449648746],[1049736,3147904,-22544605449648746,-22544602288119128],[1049736,3277824,13247603817961795,13247605070627222],[1049736,3277960,13247603817961795,13247605070627222],[1049736,3670024,-47064511840212707,-47064508655028107],[1049736,3670144,49039810709439166,49039814805506726],[1049736,3671040,-15222908177460183,-15222905730833912],[1049736,3671176,-13247605070627222,-13247603817961795],[1049736,134217730,13247603821617226,13247605066971786],[1049736,134217732,13247603855419588,13247605033169427],[1049736,134217792,-13247605066971786,-13247603821617226],[1049736,134217866,13247603821617226,13247605066971786],[1049736,134217868,13247603855419588,13247605033169427],[1049736,134217928,-13247605066971786,-13247603821617226],[1049736,134219016,-24519907468051532,-24519905289421414],[1049736,134219136,24519905289421414,24519907468051532],[1049736,134220808,-24519907464643493,-24519905292829456],[1049736,134220928,24519905292829456,24519907464643493],[1049736,134348800,13247603822461068,13247605066127948],[1049736,134348936,13247603822461068,13247605066127948],[1049736,134742016,-13247605066127948,-13247603822461068],[1049736,134742152,-15222908168562909,-15222905739731186],[1049736,134743048,49039810732001672,49039814782944230],[1049736,134743168,-47064511822048211,-47064508673192612],[1049736,135266568,24519905289421414,24519907468051532],[1049736,135266688,-24519907468051532,-24519905289421414],[1049736,135267330,13247603821617226,13247605066971786],[1049736,135267332,13247603855419588,13247605033169427],[1049736,135267392,-13247605066971786,-13247603821617226],[1049736,135267466,13247603821617226,13247605066971786],[1049736,135267468,13247603855419588,13247605033169427],[1049736,135267528,-13247605066971786,-13247603821617226],[1049736,135268360,24519905292829456,24519907464643493],[1049736,135268480,-24519907464643493,-24519905292829456],[1049736,135398400,13247603822461068,13247605066127948],[1049736,135398536,13247603822461068,13247605066127948],[1049736,135790600,-47064511822048211,-47064508673192612],[1049736,135790720,49039810732001672,49039814782944230],[1049736,135791616,-15222908168562909,-15222905739731186],[1049736,135791752,-13247605066127948,-13247603822461068],[1049736,136315912,24519905292829456,24519907464643493],[1049736,136316032,-24519907464643493,-24519905292829456],[1049736,137363464,-24519907464643493,-24519905292829456],[1049736,137363584,24519905292829456,24519907464643493],[1049736,268959880,-4648500337588616,-4648499087000812],[1049736,268960776,6623801159997192,6623803284297315],[1049736,268960896,-1975303102434961,-1975301917270118],[1049736,270008328,-1975303102434961,-1975301917270118],[1049736,270008448,6623801159997192,6623803284297315],[1049736,270009344,-4648500337588616,-4648499087000812],[1049739,1025,1975301917236486,1975303102468593],[1049739,1026,-1975303102468593,-1975301917236486],[1049739,1161,1975301917236486,1975303102468593],[1049739,1162,-1975303102468593,-1975301917236486],[1049739,1048577,-1975303102468593,-1975301917236486],[1049739,1048578,1975301917236486,1975303102468593],[1049739,1048713,-1975303102468593,-1975301917236486],[1049739,1048714,1975301917236486,1975303102468593],[1049741,1025,22544603307191776,22544604430576096],[1049741,1028,-22544604430576096,-22544603307191776],[1049741,1161,22544603307191776,22544604430576096],[1049741,1164,-22544604430576096,-22544603307191776],[1049741,1048577,-22544604430576096,-22544603307191776],[1049741,1048580,22544603307191776,22544604430576096],[1049741,1048713,-22544604430576096,-22544603307191776],[1049741,1048716,22544603307191776,22544604430576096],[1049742,1026,-22544604430576096,-22544603307191776],[1049742,1028,-1975303102468593,-1975301917236486],[1049742,1032,24519905365967204,24519907391505747],[1049742,1158,-24519907391505747,-24519905365967204],[1049742,1162,1975301917236486,1975303102468593],[1049742,1164,22544603307191776,22544604430576096],[1049742,1048578,22544603307191776,22544604430576096],[1049742,1048580,1975301917236486,1975303102468593],[1049742,1048584,-24519907391505747,-24519905365967204],[1049742,1048710,24519905365967204,24519907391505747],[1049742,1048714,-1975303102468593,-1975301917236486],[1049742,1048716,-22544604430576096,-22544603307191776],[1049792,258,-13247605061578886,-13247603827010127],[1049792,264,11272300724575166,11272303144308768],[1049792,450,-15222908164047479,-15222905744246613],[1049792,456,13247603827010127,13247605061578886],[1049792,1098,-22544605576438951,-22544602161328920],[1049792,1162,22544602161328920,22544605576438951],[1049792,1346,49039810731968040,49039814782977862],[1049792,1352,-51015117307046807,-51015113227604174],[1049792,1410,-47064511822048211,-47064508673192612],[1049792,1416,49039810731968040,49039814782977862],[1049792,2050,-13247605067077166,-13247603821511848],[1049792,2056,13247603821511848,13247605067077166],[1049792,2242,-13247605067077166,-13247603821511848],[1049792,2248,13247603821511848,13247605067077166],[1049792,524290,26495207710839176,26495210066338854],[1049792,524296,-24519907697962539,-24519905059510412],[1049792,524482,19871405028479484,19871408304404039],[1049792,524488,-13247605939232943,-13247602949356073],[1049792,525378,-17896106317239678,-17896101995938767],[1049792,525384,13247602285191671,13247606603397346],[1049792,525442,24519905280236082,24519907477236870],[1049792,525448,-24519908352868090,-24519904404604862],[1049792,655552,-4648500337588616,-4648499087000812],[1049792,656448,6623801159997192,6623803284297315],[1049792,656512,-1975303102434961,-1975301917270118],[1049792,1048650,22544602161328920,22544605576438951],[1049792,1048714,-22544605576438951,-22544602161328920],[1049792,1048898,-47064511822048211,-47064508673192612],[1049792,1048904,49039810731968040,49039814782977862],[1049792,1048962,49039810731968040,49039814782977862],[1049792,1048968,-51015117307046807,-51015113227604174],[1049792,1049858,-15222908164047479,-15222905744246613],[1049792,1049864,13247603827010127,13247605061578886],[1049792,1050050,-13247605061578886,-13247603827010127],[1049792,1050056,11272300724575166,11272303144308768],[1049792,1051650,-13247605067077166,-13247603821511848],[1049792,1051656,13247603821511848,13247605067077166],[1049792,1051842,-13247605067077166,-13247603821511848],[1049792,1051848,13247603821511848,13247605067077166],[1049792,1572930,24519905280236082,24519907477236870],[1049792,1572936,-24519908352868090,-24519904404604862],[1049792,1572994,-17896106317239678,-17896101995938767],[1049792,1573000,13247602285191671,13247606603397346],[1049792,1573890,19871405028479484,19871408304404039],[1049792,1573896,-13247605939232943,-13247602949356073],[1049792,1574082,26495207710839176,26495210066338854],[1049792,1574088,-24519907697962539,-24519905059510412],[1049792,1704000,-1975303102434961,-1975301917270118],[1049792,1704064,6623801159997192,6623803284297315],[1049792,1704960,-4648500337588616,-4648499087000812],[1049792,2097154,13247603821511848,13247605067077166],[1049792,2097160,-13247605067077166,-13247603821511848],[1049792,2097346,13247603821511848,13247605067077166],[1049792,2097352,-13247605067077166,-13247603821511848],[1049792,3146754,13247603821511848,13247605067077166],[1049792,3146760,-13247605067077166,-13247603821511848],[1049792,3146946,13247603821511848,13247605067077166],[1049792,3146952,-13247605067077166,-13247603821511848],[1049792,134217730,13247603827010127,13247605061578886],[1049792,134217736,-13247605061578886,-13247603827010127],[1049792,134217922,13247603827010127,13247605061578886],[1049792,134217928,-13247605061578886,-13247603827010127],[1049792,135267330,13247603827010127,13247605061578886],[1049792,135267336,-13247605061578886,-13247603827010127],[1049792,135267522,13247603827010127,13247605061578886],[1049792,135267528,-13247605061578886,-13247603827010127],[1049795,1025,1975301917270118,1975303102434961],[1049795,1026,-1975303102434961,-1975301917270118],[1049795,1217,1975301917270118,1975303102434961],[1049795,1218,-1975303102434961,-1975301917270118],[1049795,1048577,-1975303102434961,-1975301917270118],[1049795,1048578,1975301917270118,1975303102434961],[1049795,1048769,-1975303102434961,-1975301917270118],[1049795,1048770,1975301917270118,1975303102434961],[1049802,1026,-49039815222920444,-49039810292025454],[1049802,1032,45089206508319720,45089208967216020],[1049802,1088,3950603783705734,3950606255704424],[1049802,1162,-3950606255704424,-3950603783705734],[1049802,1218,-45089208967216020,-45089206508319720],[1049802,1224,49039810292025454,49039815222920444],[1049802,1048578,49039810292025454,49039815222920444],[1049802,1048584,-45089208967216020,-45089206508319720],[1049802,1048640,-3950606255704424,-3950603783705734],[1049802,1048714,3950603783705734,3950606255704424],[1049802,1048770,45089206508319720,45089208967216020],[1049802,1048776,-49039815222920444,-49039810292025454],[1049804,1028,-1975303102434961,-1975301917270118],[1049804,1032,1975301917270118,1975303102434961],[1049804,1220,-1975303102434961,-1975301917270118],[1049804,1224,1975301917270118,1975303102434961],[1049804,1048580,1975301917270118,1975303102434961],[1049804,1048584,-1975303102434961,-1975301917270118],[1049804,1048772,1975301917270118,1975303102434961],[1049804,1048776,-1975303102434961,-1975301917270118],[1049857,1091,-13247605033203059,-13247603855385956],[1049857,1346,13247603855385956,13247605033203059],[1049857,1048643,13247603855385956,13247605033203059],[1049857,1048898,-13247605033203059,-13247603855385956],[1049858,192,-1975303102468593,-1975301917236486],[1049858,394,-13247605066971786,-13247603821617226],[1049858,450,-15222908164047479,-15222905744246613],[1049858,1026,13247602765618499,13247606122970514],[1049858,1091,13247603855385956,13247605033203059],[1049858,1098,13247603826989498,13247605061599516],[1049858,1162,26495207799404518,26495209977773508],[1049858,1218,39742811633487139,39742815032279900],[1049858,1280,-13247606122970514,-13247602765618499],[1049858,1345,-13247605033203059,-13247603855385956],[1049858,1352,-13247605061599516,-13247603826989498],[1049858,1416,-13247605061599516,-13247603826989498],[1049858,1472,-26495210121498808,-26495207655679218],[1049858,1602,-26495209978356470,-26495207798821558],[1049858,1856,26495207798821558,26495209978356470],[1049858,2112,-1975303134066536,-1975301885638544],[1049858,2370,-1975303134066536,-1975301885638544],[1049858,524352,1975301917236486,1975303102468593],[1049858,524610,1975301917236486,1975303102468593],[1049858,1048578,-13247606122970514,-13247602765618499],[1049858,1048643,-13247605033203059,-13247603855385956],[1049858,1048650,-13247605061599516,-13247603826989498],[1049858,1048714,-13247605061599516,-13247603826989498],[1049858,1048770,-26495210121498808,-26495207655679218],[1049858,1048832,13247602765618499,13247606122970514],[1049858,1048897,13247603855385956,13247605033203059],[1049858,1048904,13247603826989498,13247605061599516],[1049858,1048968,26495207799404518,26495209977773508],[1049858,1049024,39742811633487139,39742815032279900],[1049858,1049154,26495207798821558,26495209978356470],[1049858,1049408,-26495209978356470,-26495207798821558],[1049858,1049736,-13247605066971786,-13247603821617226],[1049858,1049792,-15222908164047479,-15222905744246613],[1049858,1050050,-1975303102468593,-1975301917236486],[1049858,1051712,-1975303134066536,-1975301885638544],[1049858,1051970,-1975303134066536,-1975301885638544],[1049858,1573952,1975301917236486,1975303102468593],[1049858,1574210,1975301917236486,1975303102468593],[1049858,2097216,1975301885638544,1975303134066536],[1049858,2097474,1975301885638544,1975303134066536],[1049858,3146816,1975301885638544,1975303134066536],[1049858,3147074,1975301885638544,1975303134066536],[1049858,134217792,1975301891852867,1975303127852212],[1049858,134218050,1975301891852867,1975303127852212],[1049858,135267392,1975301891852867,1975303127852212],[1049858,135267650,1975301891852867,1975303127852212],[1049860,396,-13247605033169427,-13247603855419588],[1049860,1164,26495207861603338,26495209915574692],[1049860,1416,-13247605033203059,-13247603855385956],[1049860,1048716,-13247605033203059,-13247603855385956],[1049860,1048968,26495207861603338,26495209915574692],[1049860,1049736,-13247605033169427,-13247603855419588],[1049864,0,7901209108823124,7901210969997192],[1049864,192,-1975303102434961,-1975301917270118],[1049864,264,17198207785323578,17198211142675593],[1049864,394,13247603821617226,13247605066971786],[1049864,396,13247603855419588,13247605033169427],[1049864,456,13247603827010127,13247605061578886],[1049864,640,-1975303134066535,-1975301885638543],[1049864,1032,-26495211786596702,-26495205990581324],[1049864,1098,-13247605061599516,-13247603826989498],[1049864,1162,-26495209977773508,-26495207799404518],[1049864,1164,-26495209915574692,-26495207861603338],[1049864,1224,11272298195290642,11272305673593300],[1049864,1280,17198207785357210,17198211142641961],[1049864,1346,13247603826989498,13247605061599516],[1049864,1410,13247603826989498,13247605061599516],[1049864,1412,13247603855385956,13247605033203059],[1049864,1472,-26495212175470166,-26495205601707868],[1049864,1672,24519905292829457,24519907464643494],[1049864,1920,-26495209977993164,-26495207799184865],[1049864,2176,3950604236655732,3950605802754426],[1049864,2440,-929670021,929670022],[1049864,3208,3950603941250842,3950606098159314],[1049864,3456,-929670021,929670022],[1049864,131464,13247603822461068,13247605066127948],[1049864,132232,-26495209992202640,-26495207784975390],[1049864,132480,13247603811716528,13247605076872486],[1049864,524416,-1975303102468593,-1975301917236486],[1049864,524680,-26495212182615048,-26495205594562984],[1049864,525448,11272298183630328,11272305685253609],[1049864,525696,13247603822461068,13247605066127948],[1049864,655624,13247603822461068,13247605066127948],[1049864,656392,-13247605066127948,-13247603822461068],[1049864,1048584,17198207785357210,17198211142641961],[1049864,1048650,13247603826989498,13247605061599516],[1049864,1048714,13247603826989498,13247605061599516],[1049864,1048716,13247603855385956,13247605033203059],[1049864,1048776,-26495212175470166,-26495205601707868],[1049864,1048832,-26495211786596702,-26495205990581324],[1049864,1048898,-13247605061599516,-13247603826989498],[1049864,1048962,-26495209977773508,-26495207799404518],[1049864,1048964,-26495209915574692,-26495207861603338],[1049864,1049024,11272298195290642,11272305673593300],[1049864,1049224,-26495209977993164,-26495207799184865],[1049864,1049472,24519905292829457,24519907464643494],[1049864,1049600,17198207785323578,17198211142675593],[1049864,1049730,13247603821617226,13247605066971786],[1049864,1049732,13247603855419588,13247605033169427],[1049864,1049792,13247603827010127,13247605061578886],[1049864,1049864,7901209108823124,7901210969997192],[1049864,1050056,-1975303102434961,-1975301917270118],[1049864,1050504,-1975303134066535,-1975301885638543],[1049864,1050760,-929670021,929670022],[1049864,1051008,3950603941250842,3950606098159314],[1049864,1051776,-929670021,929670022],[1049864,1052040,3950604236655732,3950605802754426],[1049864,1179784,13247603811716528,13247605076872486],[1049864,1180032,-26495209992202640,-26495207784975390],[1049864,1180800,13247603822461068,13247605066127948],[1049864,1573000,13247603822461068,13247605066127948],[1049864,1573248,11272298183630328,11272305685253609],[1049864,1574016,-26495212182615048,-26495205594562984],[1049864,1574280,-1975303102468593,-1975301917236486],[1049864,1704192,-13247605066127948,-13247603822461068],[1049864,1704960,13247603822461068,13247605066127948],[1049864,2097280,-1975303134066536,-1975301885638544],[1049864,2097544,-26495209977993164,-26495207799184865],[1049864,2098312,24519905292829456,24519907464643493],[1049864,3146112,24519905292829456,24519907464643493],[1049864,3146880,-26495209977993164,-26495207799184865],[1049864,3147144,-1975303134066536,-1975301885638544],[1049864,134217856,-1975303127852212,-1975301891852867],[1049864,134218120,-26495209977752878,-26495207799425147],[1049864,134218888,24519905289421414,24519907468051532],[1049864,135266688,24519905289421414,24519907468051532],[1049864,135267456,-26495209977752878,-26495207799425147],[1049864,135267720,-1975303127852212,-1975301891852867],[1049920,130,1975301917236486,1975303102468593],[1049920,450,15222905744246613,15222908164047479],[1049920,456,13247603821617226,13247605066971786],[1049920,1218,-52990419943081622,-52990415611274431],[1049920,1224,-26495209977773508,-26495207799404518],[1049920,1410,39742811633466510,39742815032300530],[1049920,1416,13247603826989498,13247605061599516],[1049920,1602,26495207798821558,26495209978356470],[1049920,1794,-26495209978356470,-26495207798821558],[1049920,2050,1975301885638544,1975303134066536],[1049920,2370,1975301885638544,1975303134066536],[1049920,524290,-1975303102468593,-1975301917236486],[1049920,524610,-1975303102468593,-1975301917236486],[1049920,1048770,39742811633466510,39742815032300530],[1049920,1048776,13247603826989498,13247605061599516],[1049920,1048962,-52990419943081622,-52990415611274431],[1049920,1048968,-26495209977773508,-26495207799404518],[1049920,1049154,-26495209978356470,-26495207798821558],[1049920,1049346,26495207798821558,26495209978356470],[1049920,1049730,15222905744246613,15222908164047479],[1049920,1049736,13247603821617226,13247605066971786],[1049920,1050050,1975301917236486,1975303102468593],[1049920,1051650,1975301885638544,1975303134066536],[1049920,1051970,1975301885638544,1975303134066536],[1049920,1573890,-1975303102468593,-1975301917236486],[1049920,1574210,-1975303102468593,-1975301917236486],[1049920,2097154,-1975303134066536,-1975301885638544],[1049920,2097474,-1975303134066536,-1975301885638544],[1049920,3146754,-1975303134066536,-1975301885638544],[1049920,3147074,-1975303134066536,-1975301885638544],[1049920,134217730,-1975303127852212,-1975301891852867],[1049920,134218050,-1975303127852212,-1975301891852867],[1049920,135267330,-1975303127852212,-1975301891852867],[1049920,135267650,-1975303127852212,-1975301891852867],[1049923,1025,-13247605033203059,-13247603855385956],[1049923,1026,13247603855385956,13247605033203059],[1049923,1345,-13247605033203059,-13247603855385956],[1049923,1346,13247603855385956,13247605033203059],[1049923,1048577,13247603855385956,13247605033203059],[1049923,1048578,-13247605033203059,-13247603855385956],[1049923,1048897,13247603855385956,13247605033203059],[1049923,1048898,-13247605033203059,-13247603855385956],[1049930,1026,13247603826989498,13247605061599516],[1049930,1032,-13247605061599516,-13247603826989498],[1049930,1346,13247603826989498,13247605061599516],[1049930,1352,-13247605061599516,-13247603826989498],[1049930,1048578,-13247605061599516,-13247603826989498],[1049930,1048584,13247603826989498,13247605061599516],[1049930,1048898,-13247605061599516,-13247603826989498],[1049930,1048904,13247603826989498,13247605061599516],[1049984,72,1975301917270118,1975303102434961],[1049984,456,-26495209977752878,-26495207799425147],[1049984,520,1975301885638543,1975303134066535],[1049984,1218,15222905744259616,15222908164034477],[1049984,1224,17198204951509383,17198213976489780],[1049984,1346,-15222908164034477,-15222905744259616],[1049984,1352,11272298195303644,11272305673580297],[1049984,1672,-24519907464643494,-24519905292829457],[1049984,1800,26495207799184865,26495209977993164],[1049984,2056,-3950605802754426,-3950604236655732],[1049984,2440,-929670022,929670021],[1049984,3208,-3950606098159314,-3950603941250842],[1049984,3336,-929670022,929670021],[1049984,524296,1975301917236486,1975303102468593],[1049984,524680,11272298183630328,11272305685253609],[1049984,525448,17198204925419946,17198214002579226],[1049984,525576,-26495209992202640,-26495207784975390],[1049984,655744,-15222908168562909,-15222905739731186],[1049984,656512,15222905739731186,15222908168562909],[1049984,1048770,-15222908164034477,-15222905744259616],[1049984,1048776,11272298195303644,11272305673580297],[1049984,1048898,15222905744259616,15222908164034477],[1049984,1048904,17198204951509383,17198213976489780],[1049984,1049224,26495207799184865,26495209977993164],[1049984,1049352,-24519907464643494,-24519905292829457],[1049984,1049672,-26495209977752878,-26495207799425147],[1049984,1050056,1975301917270118,1975303102434961],[1049984,1050504,1975301885638543,1975303134066535],[1049984,1050760,-929670022,929670021],[1049984,1050888,-3950606098159314,-3950603941250842],[1049984,1051656,-929670022,929670021],[1049984,1052040,-3950605802754426,-3950604236655732],[1049984,1573000,-26495209992202640,-26495207784975390],[1049984,1573128,17198204925419946,17198214002579226],[1049984,1573896,11272298183630328,11272305685253609],[1049984,1574280,1975301917236486,1975303102468593],[1049984,1704192,15222905739731186,15222908168562909],[1049984,1704960,-15222908168562909,-15222905739731186],[1049984,2097160,1975301885638544,1975303134066536],[1049984,2097544,26495207799184865,26495209977993164],[1049984,2098312,-24519907464643493,-24519905292829456],[1049984,3145992,-24519907464643493,-24519905292829456],[1049984,3146760,26495207799184865,26495209977993164],[1049984,3147144,1975301885638544,1975303134066536],[1049984,134217736,1975301891852867,1975303127852212],[1049984,134218120,26495207799425147,26495209977752878],[1049984,134218888,-24519907468051532,-24519905289421414],[1049984,135266568,-24519907468051532,-24519905289421414],[1049984,135267336,26495207799425147,26495209977752878],[1049984,135267720,1975301891852867,1975303127852212],[1049994,258,-13247605066971786,-13247603821617226],[1049994,264,13247603821617226,13247605066971786],[1049994,1026,26495207799404518,26495209977773508],[1049994,1032,-26495209977773508,-26495207799404518],[1049994,1410,13247603826989498,13247605061599516],[1049994,1416,-13247605061599516,-13247603826989498],[1049994,1048578,-13247605061599516,-13247603826989498],[1049994,1048584,13247603826989498,13247605061599516],[1049994,1048962,-26495209977773508,-26495207799404518],[1049994,1048968,26495207799404518,26495209977773508],[1049994,1049730,13247603821617226,13247605066971786],[1049994,1049736,-13247605066971786,-13247603821617226],[1049996,260,-13247605033169427,-13247603855419588],[1049996,264,13247603855419588,13247605033169427],[1049996,1028,26495207861603338,26495209915574692],[1049996,1032,-26495209915574692,-26495207861603338],[1049996,1412,13247603855385956,13247605033203059],[1049996,1416,-13247605033203059,-13247603855385956],[1049996,1048580,-13247605033203059,-13247603855385956],[1049996,1048584,13247603855385956,13247605033203059],[1049996,1048964,-26495209915574692,-26495207861603338],[1049996,1048968,26495207861603338,26495209915574692],[1049996,1049732,13247603855419588,13247605033169427],[1049996,1049736,-13247605033169427,-13247603855419588],[1050050,130,1975301917236486,1975303102468593],[1050050,192,-1975303102468593,-1975301917236486],[1050050,258,-13247605061578886,-13247603827010127],[1050050,320,13247603827010127,13247605061578886],[1050050,1026,-7321700188594704,-7321693640879080],[1050050,1088,-3950609211113582,-3950600828296569],[1050050,1152,13247603826989498,13247605061599516],[1050050,1218,1975301917270118,1975303102434961],[1050050,1280,-1975303102434961,-1975301917270118],[1050050,1346,-13247605061599516,-13247603826989498],[1050050,1410,-7321700188581701,-7321693640892082],[1050050,1472,18593996492884744,18594001205472974],[1050050,1048578,18593996492884744,18594001205472974],[1050050,1048640,-7321700188581701,-7321693640892082],[1050050,1048704,-13247605061599516,-13247603826989498],[1050050,1048770,-1975303102434961,-1975301917270118],[1050050,1048832,1975301917270118,1975303102434961],[1050050,1048898,13247603826989498,13247605061599516],[1050050,1048962,-3950609211113582,-3950600828296569],[1050050,1049024,-7321700188594704,-7321693640879080],[1050050,1049730,13247603827010127,13247605061578886],[1050050,1049792,-13247605061578886,-13247603827010127],[1050050,1049858,-1975303102468593,-1975301917236486],[1050050,1049920,1975301917236486,1975303102468593],[1050056,72,1975301917270118,1975303102434961],[1050056,192,-1975303102434961,-1975301917270118],[1050056,264,11272300724575166,11272303144308768],[1050056,320,13247603821617226,13247605066971786],[1050056,384,-24519908060482760,-24519904696990186],[1050056,1032,-39742815032279900,-39742811633487139],[1050056,1088,-24519908060537022,-24519904696935925],[1050056,1152,66238019734487245,66238024708457820],[1050056,1224,1975301917236486,1975303102468593],[1050056,1280,-1975303102468593,-1975301917236486],[1050056,1352,-39742815032300530,-39742811633466510],[1050056,1416,11272300724520905,11272303144363030],[1050056,1472,26495207655679218,26495210121498808],[1050056,1048584,26495207655679218,26495210121498808],[1050056,1048640,11272300724520905,11272303144363030],[1050056,1048704,-39742815032300530,-39742811633466510],[1050056,1048776,-1975303102468593,-1975301917236486],[1050056,1048832,1975301917236486,1975303102468593],[1050056,1048904,66238019734487245,66238024708457820],[1050056,1048968,-24519908060537022,-24519904696935925],[1050056,1049024,-39742815032279900,-39742811633487139],[1050056,1049672,-24519908060482760,-24519904696990186],[1050056,1049736,13247603821617226,13247605066971786],[1050056,1049792,11272300724575166,11272303144308768],[1050056,1049864,-1975303102434961,-1975301917270118],[1050056,1049984,1975301917270118,1975303102434961],[1050114,1346,24519905292829457,24519907464643494],[1050114,1856,-24519907464643494,-24519905292829457],[1050114,1048898,-24519907464643494,-24519905292829457],[1050114,1049408,24519905292829457,24519907464643494],[1050120,384,1975301885638543,1975303134066535],[1050120,1416,-24519907464643494,-24519905292829457],[1050120,1920,26495207799184865,26495209977993164],[1050120,2176,22544603251852693,22544604485915178],[1050120,3208,-3950606098159314,-3950603941250842],[1050120,3712,26495207805375563,26495209971802464],[1050120,1048968,26495207799184865,26495209977993164],[1050120,1049472,-24519907464643494,-24519905292829457],[1050120,1050504,1975301885638543,1975303134066535],[1050120,1050760,26495207805375563,26495209971802464],[1050120,1051264,-3950606098159314,-3950603941250842],[1050120,1052296,22544603251852693,22544604485915178],[1050176,1346,-24519907464643494,-24519905292829457],[1050176,1794,24519905292829457,24519907464643494],[1050176,1048898,24519905292829457,24519907464643494],[1050176,1049346,-24519907464643494,-24519905292829457],[1050240,264,-1975303134066535,-1975301885638543],[1050240,1416,24519905292829457,24519907464643494],[1050240,1800,-26495209977993164,-26495207799184865],[1050240,2056,-22544604485915178,-22544603251852693],[1050240,3208,3950603941250842,3950606098159314],[1050240,3592,-26495209971802464,-26495207805375563],[1050240,1048968,-26495209977993164,-26495207799184865],[1050240,1049352,24519905292829457,24519907464643494],[1050240,1050504,-1975303134066535,-1975301885638543],[1050240,1050760,-26495209971802464,-26495207805375563],[1050240,1051144,3950603941250842,3950606098159314],[1050240,1052296,-22544604485915178,-22544603251852693],[1050434,1026,-1975303127512529,-1975301892192548],[1050434,1088,1975301892192548,1975303127512529],[1050434,1794,-1975303127512529,-1975301892192548],[1050434,1856,1975301892192548,1975303127512529],[1050434,1048578,1975301892192548,1975303127512529],[1050434,1048640,-1975303127512529,-1975301892192548],[1050434,1049346,1975301892192548,1975303127512529],[1050434,1049408,-1975303127512529,-1975301892192548],[1050504,264,-1975303134066535,-1975301885638543],[1050504,384,1975301885638543,1975303134066535],[1050504,520,1975301885638543,1975303134066535],[1050504,640,-1975303134066535,-1975301885638543],[1050504,1049864,-1975303134066535,-1975301885638543],[1050504,1049984,1975301885638543,1975303134066535],[1050504,1050120,1975301885638543,1975303134066535],[1050504,1050240,-1975303134066535,-1975301885638543],[1050624,136,-3950605491232570,-3950604548177586],[1050624,1032,-26495211840725034,-26495205936452994],[1050624,132096,13247602731588215,13247606157000801],[1050624,525448,1975301915400511,1975303104304567],[1050624,656512,1975301912872117,1975303106832961],[1050624,1050760,-3950605491232570,-3950604548177586],[1050624,1051656,-26495211840725034,-26495205936452994],[1050624,1182720,13247602731588215,13247606157000801],[1050624,1576072,1975301915400511,1975303104304567],[1050624,1707136,1975301912872117,1975303106832961],[1050624,2228224,13247602745554085,13247606143034927],[1050624,3278848,13247602745554085,13247606143034927],[1050696,1152,52990415906156016,52990419648200040],[1050696,1224,52990415906156016,52990419648200040],[1050696,1051776,52990415906156016,52990419648200040],[1050696,1051848,52990415906156016,52990419648200040],[1050754,1032,-26495209971802464,-26495207805375563],[1050754,1088,-26495209977993164,-26495207799184865],[1050754,1162,-26495209971802464,-26495207805375563],[1050754,1218,-26495209977993164,-26495207799184865],[1050754,1051656,-26495209971802464,-26495207805375563],[1050754,1051712,-26495209977993164,-26495207799184865],[1050754,1051786,-26495209971802464,-26495207805375563],[1050754,1051842,-26495209977993164,-26495207799184865],[1050756,1032,-26495209923507576,-26495207853670452],[1050756,1164,-26495209923507576,-26495207853670452],[1050756,1051656,-26495209923507576,-26495207853670452],[1050756,1051788,-26495209923507576,-26495207853670452],[1050760,0,-7901210982465140,-7901209096355172],[1050760,136,-3950605491232570,-3950604548177586],[1050760,1026,26495207805375563,26495209971802464],[1050760,1028,26495207853670452,26495209923507576],[1050760,1088,-26495209971802464,-26495207805375563],[1050760,1162,26495207805375563,26495209971802464],[1050760,1164,26495207853670452,26495209923507576],[1050760,1224,-26495209971802464,-26495207805375563],[1050760,2056,-1975305335522788,-1975299684182287],[1050760,2176,-1975305338051185,-1975299681653896],[1050760,3336,-929670022,929670021],[1050760,3456,-929670021,929670022],[1050760,3592,-26495209971802464,-26495207805375563],[1050760,3712,26495207805375563,26495209971802464],[1050760,132096,26495207776804167,26495210000373866],[1050760,132232,26495207776804167,26495210000373866],[1050760,525312,-24519908084973355,-24519904672499600],[1050760,525448,-26495210000373866,-26495207776804167],[1050760,527368,52990415696972220,52990419857383828],[1050760,527488,-51015117331445277,-51015113203205693],[1050760,1048584,-1975305338051185,-1975299681653896],[1050760,1048704,-1975305335522788,-1975299684182287],[1050760,1049864,-929670021,929670022],[1050760,1049984,-929670022,929670021],[1050760,1050120,26495207805375563,26495209971802464],[1050760,1050240,-26495209971802464,-26495207805375563],[1050760,1050624,-3950605491232570,-3950604548177586],[1050760,1050760,-7901210982465140,-7901209096355172],[1050760,1051650,26495207805375563,26495209971802464],[1050760,1051652,26495207853670452,26495209923507576],[1050760,1051712,-26495209971802464,-26495207805375563],[1050760,1051786,26495207805375563,26495209971802464],[1050760,1051788,26495207853670452,26495209923507576],[1050760,1051848,-26495209971802464,-26495207805375563],[1050760,1182720,26495207776804167,26495210000373866],[1050760,1182856,26495207776804167,26495210000373866],[1050760,1573896,-51015117331445277,-51015113203205693],[1050760,1574016,52990415696972220,52990419857383828],[1050760,1575936,-26495210000373866,-26495207776804167],[1050760,1576072,-24519908084973355,-24519904672499600],[1050760,2100232,-2231218224,2231218221],[1050760,2100352,-2231218221,2231218224],[1050760,3146760,-2231218221,2231218224],[1050760,3146880,-2231218224,2231218221],[1050760,33557512,-26495209923507576,-26495207853670452],[1050760,33557632,26495207853670452,26495209923507576],[1050760,34604040,26495207853670452,26495209923507576],[1050760,34604160,-26495209923507576,-26495207853670452],[1050760,134220808,26495207798821558,26495209978356470],[1050760,134220928,-26495209978356470,-26495207798821558],[1050760,135267336,-26495209978356470,-26495207798821558],[1050760,135267456,26495207798821558,26495209978356470],[1050816,1026,26495207799184865,26495209977993164],[1050816,1032,-26495209977993164,-26495207799184865],[1050816,1218,26495207799184865,26495209977993164],[1050816,1224,-26495209977993164,-26495207799184865],[1050816,1051650,26495207799184865,26495209977993164],[1050816,1051656,-26495209977993164,-26495207799184865],[1050816,1051842,26495207799184865,26495209977993164],[1050816,1051848,-26495209977993164,-26495207799184865],[1050882,1088,24519905292829457,24519907464643494],[1050882,1346,24519905292829457,24519907464643494],[1050882,1051712,24519905292829457,24519907464643494],[1050882,1051970,24519905292829457,24519907464643494],[1050888,1152,-52990419648200040,-52990415906156016],[1050888,1416,-24519907464643494,-24519905292829457],[1050888,3208,-3950606098159314,-3950603941250842],[1050888,3456,-24519907464643493,-24519905292829456],[1050888,1049736,-24519907464643493,-24519905292829456],[1050888,1049984,-3950606098159314,-3950603941250842],[1050888,1051776,-24519907464643494,-24519905292829457],[1050888,1052040,-52990419648200040,-52990415906156016],[1050944,1026,-24519907464643494,-24519905292829457],[1050944,1346,-24519907464643494,-24519905292829457],[1050944,1051650,-24519907464643494,-24519905292829457],[1050944,1051970,-24519907464643494,-24519905292829457],[1051008,1032,52990415906156016,52990419648200040],[1051008,1416,24519905292829457,24519907464643494],[1051008,3208,3950603941250842,3950606098159314],[1051008,3336,24519905292829456,24519907464643493],[1051008,1049736,24519905292829456,24519907464643493],[1051008,1049864,3950603941250842,3950606098159314],[1051008,1051656,24519905292829457,24519907464643494],[1051008,1052040,52990415906156016,52990419648200040],[1051144,1672,-3950606098159314,-3950603941250842],[1051144,3208,3950603941250842,3950606098159314],[1051144,1050240,3950603941250842,3950606098159314],[1051144,1051776,-3950606098159314,-3950603941250842],[1051264,1672,3950603941250842,3950606098159314],[1051264,3208,-3950606098159314,-3950603941250842],[1051264,1050120,-3950606098159314,-3950603941250842],[1051264,1051656,3950603941250842,3950606098159314],[1051650,1162,26495207805375563,26495209971802464],[1051650,1218,26495207799184865,26495209977993164],[1051650,1346,-24519907464643494,-24519905292829457],[1051650,2186,-13247605061713792,-13247603826875223],[1051650,2242,-13247605067077166,-13247603821511848],[1051650,2370,1975301885638544,1975303134066536],[1051650,3208,-13247605060886466,-13247603827702546],[1051650,3264,-13247605061713792,-13247603826875223],[1051650,3392,22544603251852693,22544604485915178],[1051650,1048714,-13247605060886466,-13247603827702546],[1051650,1048770,-13247605061713792,-13247603826875223],[1051650,1048898,22544603251852693,22544604485915178],[1051650,1049736,-13247605061713792,-13247603826875223],[1051650,1049792,-13247605067077166,-13247603821511848],[1051650,1049920,1975301885638544,1975303134066536],[1051650,1050760,26495207805375563,26495209971802464],[1051650,1050816,26495207799184865,26495209977993164],[1051650,1050944,-24519907464643494,-24519905292829457],[1051652,1164,26495207853670452,26495209923507576],[1051652,2188,-13247605037567427,-13247603851021587],[1051652,3208,-13247605036737943,-13247603851851071],[1051652,1048716,-13247605036737943,-13247603851851071],[1051652,1049736,-13247605037567427,-13247603851021587],[1051652,1050760,26495207853670452,26495209923507576],[1051656,0,7901209096355172,7901210982465140],[1051656,384,24519905600979050,24519907156493900],[1051656,640,-22544604485915178,-22544603251852693],[1051656,1032,-26495211840725034,-26495205936452994],[1051656,1162,-26495209971802464,-26495207805375563],[1051656,1164,-26495209923507576,-26495207853670452],[1051656,1224,-26495209977993164,-26495207799184865],[1051656,1416,24519905292829457,24519907464643494],[1051656,1672,3950603941250842,3950606098159314],[1051656,2056,17198207753821687,17198211174177485],[1051656,2186,13247603826875223,13247605061713792],[1051656,2188,13247603851021587,13247605037567427],[1051656,2248,13247603821511848,13247605067077166],[1051656,2440,-929670022,929670021],[1051656,3072,17198207762730769,17198211165268399],[1051656,3202,13247603827702546,13247605060886466],[1051656,3204,13247603851851071,13247605036737943],[1051656,3264,13247603826875223,13247605061713792],[1051656,3456,-923386045,923386045],[1051656,3712,-26495209971802464,-26495207805375563],[1051656,132232,-26495210000373866,-26495207776804167],[1051656,133256,13247603817961795,13247605070627222],[1051656,134272,13247603808044578,13247605080544438],[1051656,524416,-1975303104304567,-1975301915400511],[1051656,525448,11272298134922261,11272305733961656],[1051656,526472,-26495212228659796,-26495205548518216],[1051656,527488,13247603817961795,13247605070627222],[1051656,656392,-13247605070627222,-13247603817961795],[1051656,657416,13247603817961795,13247605070627222],[1051656,1048584,17198207762730769,17198211165268399],[1051656,1048714,13247603827702546,13247605060886466],[1051656,1048716,13247603851851071,13247605036737943],[1051656,1048776,13247603826875223,13247605061713792],[1051656,1048968,-923386045,923386045],[1051656,1049224,-26495209971802464,-26495207805375563],[1051656,1049600,17198207753821687,17198211174177485],[1051656,1049730,13247603826875223,13247605061713792],[1051656,1049732,13247603851021587,13247605037567427],[1051656,1049792,13247603821511848,13247605067077166],[1051656,1049984,-929670022,929670021],[1051656,1050624,-26495211840725034,-26495205936452994],[1051656,1050754,-26495209971802464,-26495207805375563],[1051656,1050756,-26495209923507576,-26495207853670452],[1051656,1050816,-26495209977993164,-26495207799184865],[1051656,1051008,24519905292829457,24519907464643494],[1051656,1051264,3950603941250842,3950606098159314],[1051656,1051656,7901209096355172,7901210982465140],[1051656,1052040,24519905600979050,24519907156493900],[1051656,1052296,-22544604485915178,-22544603251852693],[1051656,1179784,13247603808044578,13247605080544438],[1051656,1180800,13247603817961795,13247605070627222],[1051656,1181824,-26495210000373866,-26495207776804167],[1051656,1573000,13247603817961795,13247605070627222],[1051656,1574016,-26495212228659796,-26495205548518216],[1051656,1575040,11272298134922261,11272305733961656],[1051656,1576072,-1975303104304567,-1975301915400511],[1051656,1704960,13247603817961795,13247605070627222],[1051656,1705984,-13247605070627222,-13247603817961795],[1051656,2097280,-49039815256755116,-49039810258190782],[1051656,2098312,3950601784483124,3950608254927041],[1051656,2099336,-26495210008022388,-26495207769155642],[1051656,2100352,-26495210000373866,-26495207776804167],[1051656,3145864,-26495210000373866,-26495207776804167],[1051656,3146880,-26495210008022388,-26495207769155642],[1051656,3147904,3950601784483124,3950608254927041],[1051656,3148936,-49039815256755116,-49039810258190782],[1051656,33554560,-1975303106832961,-1975301912872117],[1051656,33555592,24519905362432319,24519907395040631],[1051656,33557632,-26495209923507576,-26495207853670452],[1051656,34603144,-26495209923507576,-26495207853670452],[1051656,34605184,24519905362432319,24519907395040631],[1051656,34606216,-1975303106832961,-1975301912872117],[1051656,134217856,-1975303127512530,-1975301892192549],[1051656,134218888,24519905292829456,24519907464643493],[1051656,134219912,-26495209978356470,-26495207798821558],[1051656,135267456,-26495209978356470,-26495207798821558],[1051656,135268480,24519905292829456,24519907464643493],[1051656,135269512,-1975303127512530,-1975301892192549],[1051712,1218,-26495209977993164,-26495207799184865],[1051712,1224,-26495209971802464,-26495207805375563],[1051712,1346,24519905292829457,24519907464643494],[1051712,2242,13247603821511848,13247605067077166],[1051712,2248,13247603826875223,13247605061713792],[1051712,2370,-1975303134066536,-1975301885638544],[1051712,3202,13247603826875223,13247605061713792],[1051712,3208,13247603827702546,13247605060886466],[1051712,3330,-22544604485915178,-22544603251852693],[1051712,1048770,13247603826875223,13247605061713792],[1051712,1048776,13247603827702546,13247605060886466],[1051712,1048898,-22544604485915178,-22544603251852693],[1051712,1049730,13247603821511848,13247605067077166],[1051712,1049736,13247603826875223,13247605061713792],[1051712,1049858,-1975303134066536,-1975301885638544],[1051712,1050754,-26495209977993164,-26495207799184865],[1051712,1050760,-26495209971802464,-26495207805375563],[1051712,1050882,24519905292829457,24519907464643494],[1051776,264,-24519907156493900,-24519905600979050],[1051776,520,22544603251852693,22544604485915178],[1051776,1224,52990415906156016,52990419648200040],[1051776,1416,-24519907464643494,-24519905292829457],[1051776,1672,-3950606098159314,-3950603941250842],[1051776,2248,-26495209977993164,-26495207799184865],[1051776,2440,-929670021,929670022],[1051776,3144,-26495209971802464,-26495207805375563],[1051776,3336,-923386045,923386045],[1051776,3592,26495207805375563,26495209971802464],[1051776,524296,1975301915400511,1975303104304567],[1051776,525448,17198204870376650,17198214057622544],[1051776,526472,11272298134922261,11272305733961656],[1051776,527368,-26495210000373866,-26495207776804167],[1051776,656512,15222905730833912,15222908177460183],[1051776,657536,-15222908177460183,-15222905730833912],[1051776,1048776,-26495209971802464,-26495207805375563],[1051776,1048968,-923386045,923386045],[1051776,1049224,26495207805375563,26495209971802464],[1051776,1049672,-26495209977993164,-26495207799184865],[1051776,1049864,-929670021,929670022],[1051776,1050696,52990415906156016,52990419648200040],[1051776,1050888,-24519907464643494,-24519905292829457],[1051776,1051144,-3950606098159314,-3950603941250842],[1051776,1052040,-24519907156493900,-24519905600979050],[1051776,1052296,22544603251852693,22544604485915178],[1051776,1573000,-26495210000373866,-26495207776804167],[1051776,1573896,11272298134922261,11272305733961656],[1051776,1574920,17198204870376650,17198214057622544],[1051776,1576072,1975301915400511,1975303104304567],[1051776,1704960,-15222908177460183,-15222905730833912],[1051776,1705984,15222905730833912,15222908177460183],[1051776,2097160,49039810258190782,49039815256755116],[1051776,2098312,-3950608254927041,-3950601784483124],[1051776,2099336,26495207769155642,26495210008022388],[1051776,2100232,26495207776804167,26495210000373866],[1051776,3145864,26495207776804167,26495210000373866],[1051776,3146760,26495207769155642,26495210008022388],[1051776,3147784,-3950608254927041,-3950601784483124],[1051776,3148936,49039810258190782,49039815256755116],[1051776,33554440,1975301912872117,1975303106832961],[1051776,33555592,-24519907395040631,-24519905362432319],[1051776,33557512,26495207853670452,26495209923507576],[1051776,34603144,26495207853670452,26495209923507576],[1051776,34605064,-24519907395040631,-24519905362432319],[1051776,34606216,1975301912872117,1975303106832961],[1051776,134217736,1975301892192549,1975303127512530],[1051776,134218888,-24519907464643493,-24519905292829456],[1051776,134219912,26495207798821558,26495209978356470],[1051776,135267336,26495207798821558,26495209978356470],[1051776,135268360,-24519907464643493,-24519905292829456],[1051776,135269512,1975301892192549,1975303127512530],[1051786,1026,26495207805375563,26495209971802464],[1051786,1032,-26495209971802464,-26495207805375563],[1051786,2050,-13247605061713792,-13247603826875223],[1051786,2056,13247603826875223,13247605061713792],[1051786,3202,13247603827702546,13247605060886466],[1051786,3208,-13247605060886466,-13247603827702546],[1051786,1048578,-13247605060886466,-13247603827702546],[1051786,1048584,13247603827702546,13247605060886466],[1051786,1049730,13247603826875223,13247605061713792],[1051786,1049736,-13247605061713792,-13247603826875223],[1051786,1050754,-26495209971802464,-26495207805375563],[1051786,1050760,26495207805375563,26495209971802464],[1051788,1028,26495207853670452,26495209923507576],[1051788,1032,-26495209923507576,-26495207853670452],[1051788,2052,-13247605037567427,-13247603851021587],[1051788,2056,13247603851021587,13247605037567427],[1051788,3204,13247603851851071,13247605036737943],[1051788,3208,-13247605036737943,-13247603851851071],[1051788,1048580,-13247605036737943,-13247603851851071],[1051788,1048584,13247603851851071,13247605036737943],[1051788,1049732,13247603851021587,13247605037567427],[1051788,1049736,-13247605037567427,-13247603851021587],[1051788,1050756,-26495209923507576,-26495207853670452],[1051788,1050760,26495207853670452,26495209923507576],[1051842,1026,26495207799184865,26495209977993164],[1051842,1088,-26495209977993164,-26495207799184865],[1051842,2050,-13247605067077166,-13247603821511848],[1051842,2112,13247603821511848,13247605067077166],[1051842,3202,13247603826875223,13247605061713792],[1051842,3264,-13247605061713792,-13247603826875223],[1051842,1048578,-13247605061713792,-13247603826875223],[1051842,1048640,13247603826875223,13247605061713792],[1051842,1049730,13247603821511848,13247605067077166],[1051842,1049792,-13247605067077166,-13247603821511848],[1051842,1050754,-26495209977993164,-26495207799184865],[1051842,1050816,26495207799184865,26495209977993164],[1051848,1032,-26495209977993164,-26495207799184865],[1051848,1088,-26495209971802464,-26495207805375563],[1051848,1152,52990415906156016,52990419648200040],[1051848,2056,13247603821511848,13247605067077166],[1051848,2112,13247603826875223,13247605061713792],[1051848,2176,-26495209977993164,-26495207799184865],[1051848,3144,-26495209971802464,-26495207805375563],[1051848,3208,13247603827702546,13247605060886466],[1051848,3264,13247603826875223,13247605061713792],[1051848,1048584,13247603826875223,13247605061713792],[1051848,1048640,13247603827702546,13247605060886466],[1051848,1048704,-26495209971802464,-26495207805375563],[1051848,1049672,-26495209977993164,-26495207799184865],[1051848,1049736,13247603826875223,13247605061713792],[1051848,1049792,13247603821511848,13247605067077166],[1051848,1050696,52990415906156016,52990419648200040],[1051848,1050760,-26495209971802464,-26495207805375563],[1051848,1050816,-26495209977993164,-26495207799184865],[1051970,1026,-24519907464643494,-24519905292829457],[1051970,1088,24519905292829457,24519907464643494],[1051970,2050,1975301885638544,1975303134066536],[1051970,2112,-1975303134066536,-1975301885638544],[1051970,3330,-22544604485915178,-22544603251852693],[1051970,3392,22544603251852693,22544604485915178],[1051970,1048578,22544603251852693,22544604485915178],[1051970,1048640,-22544604485915178,-22544603251852693],[1051970,1049858,-1975303134066536,-1975301885638544],[1051970,1049920,1975301885638544,1975303134066536],[1051970,1050882,24519905292829457,24519907464643494],[1051970,1050944,-24519907464643494,-24519905292829457],[1052040,264,-24519907156493900,-24519905600979050],[1052040,384,24519905600979050,24519907156493900],[1052040,1032,52990415906156016,52990419648200040],[1052040,1152,-52990419648200040,-52990415906156016],[1052040,2056,-3950605802754426,-3950604236655732],[1052040,2176,3950604236655732,3950605802754426],[1052040,3336,24519905600979049,24519907156493899],[1052040,3456,-24519907156493899,-24519905600979049],[1052040,1048584,-24519907156493899,-24519905600979049],[1052040,1048704,24519905600979049,24519907156493899],[1052040,1049864,3950604236655732,3950605802754426],[1052040,1049984,-3950605802754426,-3950604236655732],[1052040,1050888,-52990419648200040,-52990415906156016],[1052040,1051008,52990415906156016,52990419648200040],[1052040,1051656,24519905600979050,24519907156493900],[1052040,1051776,-24519907156493900,-24519905600979050],[1052296,520,22544603251852693,22544604485915178],[1052296,640,-22544604485915178,-22544603251852693],[1052296,2056,-22544604485915178,-22544603251852693],[1052296,2176,22544603251852693,22544604485915178],[1052296,1050120,22544603251852693,22544604485915178],[1052296,1050240,-22544604485915178,-22544603251852693],[1052296,1051656,-22544604485915178,-22544603251852693],[1052296,1051776,22544603251852693,22544604485915178],[1081344,1164,-22544604444342592,-22544603293425280],[1081344,131076,-1975304034893986,-1975300984811094],[1081344,131080,-15920803246405425,-15920800047067943],[1081344,131200,-4648502349941046,-4648497074648383],[1081344,132096,-1975304506421476,-1975300513283600],[1081344,132232,-1975303111382023,-1975301908323058],[1081344,524292,-1975304506421476,-1975300513283600],[1081344,524296,-4648502349941046,-4648497074648383],[1081344,524416,-15920803246405425,-15920800047067943],[1081344,524428,-1975303111382023,-1975301908323058],[1081344,525312,-1975304034893986,-1975300984811094],[1081344,655372,-3950606212356198,-3950603827053960],[1081344,655492,-1975303111382023,-1975301908323058],[1081344,655496,26495207626385616,26495210150792412],[1081344,656388,-22544604444342592,-22544603293425280],[1081344,656392,-1975303111382023,-1975301908323058],[1081344,656512,-3950606212356198,-3950603827053960],[1081344,1082508,-22544604444342592,-22544603293425280],[1081344,1212420,-1975304034893986,-1975300984811094],[1081344,1212424,-15920803246405425,-15920800047067943],[1081344,1212544,-4648502349941046,-4648497074648383],[1081344,1213440,-1975304506421476,-1975300513283600],[1081344,1213576,-1975303111382023,-1975301908323058],[1081344,1605636,-1975304506421476,-1975300513283600],[1081344,1605640,-4648502349941046,-4648497074648383],[1081344,1605760,-15920803246405425,-15920800047067943],[1081344,1605772,-1975303111382023,-1975301908323058],[1081344,1606656,-1975304034893986,-1975300984811094],[1081344,1736716,-3950606212356198,-3950603827053960],[1081344,1736836,-1975303111382023,-1975301908323058],[1081344,1736840,26495207626385616,26495210150792412],[1081344,1737732,-22544604444342592,-22544603293425280],[1081344,1737736,-1975303111382023,-1975301908323058],[1081344,1737856,-3950606212356198,-3950603827053960],[1081344,2752516,-22544604432275006,-22544603305492866],[1081344,2752520,-1975303104304567,-1975301915400511],[1081344,2752640,-1975303106832961,-1975301912872117],[1081344,2753536,26495207853670452,26495209923507576],[1081344,3833860,-22544604432275006,-22544603305492866],[1081344,3833864,-1975303104304567,-1975301915400511],[1081344,3833984,-1975303106832961,-1975301912872117],[1081344,3834880,26495207853670452,26495209923507576],[1081344,67764228,-1975303102434961,-1975301917270118],[1081344,67764232,-9297000203994710,-9296998645184146],[1081344,67764352,13247603822433492,13247605066155522],[1081344,67765248,-1975303102468593,-1975301917236486],[1081344,68845572,-1975303102434961,-1975301917270118],[1081344,68845576,-9297000203994710,-9296998645184146],[1081344,68845696,13247603822433492,13247605066155522],[1081344,68846592,-1975303102468593,-1975301917236486],[1081344,134873092,-22544604430576096,-22544603307191776],[1081344,134873096,-1975303102468593,-1975301917236486],[1081344,134873216,-1975303102434961,-1975301917270118],[1081344,134874112,26495207861603338,26495209915574692],[1081344,135954436,-22544604430576096,-22544603307191776],[1081344,135954440,-1975303102468593,-1975301917236486],[1081344,135954560,-1975303102434961,-1975301917270118],[1081344,135955456,26495207861603338,26495209915574692],[1081344,269090820,-1975303102468593,-1975301917236486],[1081344,269090824,13247603822433492,13247605066155522],[1081344,269090944,-9297000203994710,-9296998645184146],[1081344,269091840,-1975303102434961,-1975301917270118],[1081344,270172164,-1975303102468593,-1975301917236486],[1081344,270172168,13247603822433492,13247605066155522],[1081344,270172288,-9297000203994710,-9296998645184146],[1081344,270173184,-1975303102434961,-1975301917270118],[1081344,1074397188,26495207861603338,26495209915574692],[1081344,1074397192,-1975303102434961,-1975301917270118],[1081344,1074397312,-1975303102468593,-1975301917236486],[1081344,1074398208,-22544604430576096,-22544603307191776],[1081344,1075478532,26495207861603338,26495209915574692],[1081344,1075478536,-1975303102434961,-1975301917270118],[1081344,1075478656,-1975303102468593,-1975301917236486],[1081344,1075479552,-22544604430576096,-22544603307191776],[1081349,688129,-13247605033169427,-13247603855419588],[1081349,688132,13247603855419588,13247605033169427],[1081349,1703937,13247603855419588,13247605033169427],[1081349,1703940,-13247605033169427,-13247603855419588],[1081354,688130,6623801159997192,6623803284297315],[1081354,688136,-6623803284297315,-6623801159997192],[1081354,1703938,-6623803284297315,-6623801159997192],[1081354,1703944,6623801159997192,6623803284297315],[1081356,1164,-22544604444342592,-22544603293425280],[1081356,33928,22544603293425280,22544604444342592],[1081356,524428,-1975303111382023,-1975301908323058],[1081356,557192,1975301908323058,1975303111382023],[1081356,655372,-28470512979312287,-28470509817570824],[1081356,688132,19871405230482798,19871408102400732],[1081356,688136,8599101715170092,8599107748829489],[1081356,1049732,22544603293425280,22544604444342592],[1081356,1082496,-22544604444342592,-22544603293425280],[1081356,1572996,1975301908323058,1975303111382023],[1081356,1605760,-1975303111382023,-1975301908323058],[1081356,1703940,8599101715170092,8599107748829489],[1081356,1703944,19871405230482798,19871408102400732],[1081356,1736704,-28470512979312287,-28470509817570824],[1081480,1028,-22544604444342592,-22544603293425280],[1081480,33804,-22544604444342592,-22544603293425280],[1081480,132096,-1975303111382023,-1975301908323058],[1081480,164872,-1975303111382023,-1975301908323058],[1081480,524292,-1975303111382023,-1975301908323058],[1081480,557068,-1975303111382023,-1975301908323058],[1081480,655360,-2449893888,2449893882],[1081480,688136,-13247609036357290,-13247599852231728],[1081480,688256,13247602302125610,13247606586463402],[1081480,1049732,-22544604444342592,-22544603293425280],[1081480,1082508,-22544604444342592,-22544603293425280],[1081480,1180800,-1975303111382023,-1975301908323058],[1081480,1213576,-1975303111382023,-1975301908323058],[1081480,1572996,-1975303111382023,-1975301908323058],[1081480,1605772,-1975303111382023,-1975301908323058],[1081480,1703944,13247602302125610,13247606586463402],[1081480,1704064,-13247609036357290,-13247599852231728],[1081480,1736840,-2449893888,2449893882],[1081536,688192,-6623803284297315,-6623801159997192],[1081536,688256,6623801159997192,6623803284297315],[1081536,1704000,6623801159997192,6623803284297315],[1081536,1704064,-6623803284297315,-6623801159997192],[1082496,1164,-22544604444342592,-22544603293425280],[1082496,33804,22544603293425280,22544604444342592],[1082496,132232,-1975303111382023,-1975301908323058],[1082496,164872,1975301908323058,1975303111382023],[1082496,656512,-28470512979312287,-28470509817570824],[1082496,688256,19871405230482798,19871408102400732],[1082496,689152,8599101715170092,8599107748829489],[1082496,1048716,22544603293425280,22544604444342592],[1082496,1081356,-22544604444342592,-22544603293425280],[1082496,1179784,1975301908323058,1975303111382023],[1082496,1212424,-1975303111382023,-1975301908323058],[1082496,1704064,8599101715170092,8599107748829489],[1082496,1704960,19871405230482798,19871408102400732],[1082496,1736704,-28470512979312287,-28470509817570824],[1082508,1028,-22544604444342592,-22544603293425280],[1082508,1164,-22544604444342592,-22544603293425280],[1082508,33792,22544603293425280,22544604444342592],[1082508,33928,22544603293425280,22544604444342592],[1082508,1048580,22544603293425280,22544604444342592],[1082508,1048716,22544603293425280,22544604444342592],[1082508,1081344,-22544604444342592,-22544603293425280],[1082508,1081480,-22544604444342592,-22544603293425280],[1082624,688384,13247603855419588,13247605033169427],[1082624,689152,-13247605033169427,-13247603855419588],[1082624,1704192,-13247605033169427,-13247603855419588],[1082624,1704960,13247603855419588,13247605033169427],[1084416,689152,-13247605037567427,-13247603851021587],[1084416,690176,13247603851021587,13247605037567427],[1084416,1704960,13247603851021587,13247605037567427],[1084416,1705984,-13247605037567427,-13247603851021587],[1179648,136,-18594004998888252,-18593992699469458],[1179648,192,11272301474344213,11272302394539721],[1179648,1032,3950600725236988,3950609314173172],[1179648,1152,22544597683462214,22544610054305668],[1179648,1162,1975301877105131,1975303142599947],[1179648,1164,22544603293425280,22544604444342592],[1179648,1224,22544603239782766,22544604497985104],[1179648,1416,-13247605076872486,-13247603811716528],[1179648,3208,-13247605080544438,-13247603808044578],[1179648,32776,6623799524173159,6623804920121353],[1179648,32896,15920799005382849,15920804288090516],[1179648,33792,1975300513283600,1975304506421476],[1179648,33928,1975301908323058,1975303111382023],[1179648,524290,-4648501505889997,-4648497918699427],[1179648,524292,8599101715170092,8599107748829489],[1179648,524296,-67361745915243333,-67361693124389608],[1179648,524352,6623799192952293,6623805251342207],[1179648,524416,-258754116160104515,-258754062378889847],[1179648,524426,-13247605101666952,-13247603786922062],[1179648,524428,1975301908323058,1975303111382023],[1179648,524488,1975301852392980,1975303167312100],[1179648,524544,-1975304216083780,-1975300803621296],[1179648,525312,296947377306566843,296947428089998092],[1179648,525448,67633806609648820,67633816603654788],[1179648,525504,1975301885115096,1975303134589986],[1179648,525696,-13247605066127948,-13247603822461068],[1179648,526336,-3950608254927041,-3950601784483124],[1179648,527488,-13247605070627222,-13247603817961795],[1179648,557192,-24519908088594729,-24519904668878218],[1179648,558088,24519905343287280,24519907414185673],[1179648,558208,3950603827053960,3950606212356198],[1179648,1179784,-18594004998888252,-18593992699469458],[1179648,1179840,11272301474344213,11272302394539721],[1179648,1180680,3950600725236988,3950609314173172],[1179648,1180800,22544597683462214,22544610054305668],[1179648,1180810,1975301877105131,1975303142599947],[1179648,1180812,22544603293425280,22544604444342592],[1179648,1180872,22544603239782766,22544604497985104],[1179648,1181064,-13247605076872486,-13247603811716528],[1179648,1182856,-13247605080544438,-13247603808044578],[1179648,1212424,6623799524173159,6623804920121353],[1179648,1212544,15920799005382849,15920804288090516],[1179648,1213440,1975300513283600,1975304506421476],[1179648,1213576,1975301908323058,1975303111382023],[1179648,1703938,-4648501505889997,-4648497918699427],[1179648,1703940,8599101715170092,8599107748829489],[1179648,1703944,-67361745915243333,-67361693124389608],[1179648,1704000,6623799192952293,6623805251342207],[1179648,1704064,-258754116160104515,-258754062378889847],[1179648,1704074,-13247605101666952,-13247603786922062],[1179648,1704076,1975301908323058,1975303111382023],[1179648,1704136,1975301852392980,1975303167312100],[1179648,1704192,-1975304216083780,-1975300803621296],[1179648,1704960,296947377306566843,296947428089998092],[1179648,1705096,67633806609648820,67633816603654788],[1179648,1705152,1975301885115096,1975303134589986],[1179648,1705344,-13247605066127948,-13247603822461068],[1179648,1705984,-3950608254927041,-3950601784483124],[1179648,1707136,-13247605070627222,-13247603817961795],[1179648,1736840,-24519908088594729,-24519904668878218],[1179648,1737736,24519905343287280,24519907414185673],[1179648,1737856,3950603827053960,3950606212356198],[1179648,2097160,1975300387251397,1975304632453679],[1179648,2097280,-1975305338051185,-1975299681653896],[1179648,2098176,-26495211840725034,-26495205936452994],[1179648,2098312,-13247605070627222,-13247603817961795],[1179648,2621576,45089206494936958,45089208980598784],[1179648,2622472,-26495210000373866,-26495207776804167],[1179648,2622592,-39742815068283432,-39742811597483621],[1179648,2654216,24519905362432319,24519907395040631],[1179648,2654336,1975301912872117,1975303106832961],[1179648,2655232,-26495209923507576,-26495207853670452],[1179648,3276808,1975300387251397,1975304632453679],[1179648,3276928,-1975305338051185,-1975299681653896],[1179648,3277824,-26495211840725034,-26495205936452994],[1179648,3277960,-13247605070627222,-13247603817961795],[1179648,3801224,45089206494936958,45089208980598784],[1179648,3802120,-26495210000373866,-26495207776804167],[1179648,3802240,-39742815068283432,-39742811597483621],[1179648,3833864,24519905362432319,24519907395040631],[1179648,3833984,1975301912872117,1975303106832961],[1179648,3834880,-26495209923507576,-26495207853670452],[1179648,67108872,9296996568177046,9297002281001814],[1179648,67108992,-7321699692989682,-7321694136484094],[1179648,67109888,1975300413869816,1975304605835260],[1179648,67110024,1975301885115096,1975303134589986],[1179648,67633288,-39742815133869046,-39742811531898000],[1179648,67634184,3950603919085972,3950606120324188],[1179648,67634304,45089206505908288,45089208969627452],[1179648,67665928,-13247606222252656,-13247602666336360],[1179648,67666048,-11272302995044411,-11272300873839524],[1179648,67666944,24519905365967204,24519907391505747],[1179648,68288520,9296996568177046,9297002281001814],[1179648,68288640,-7321699692989682,-7321694136484094],[1179648,68289536,1975300413869816,1975304605835260],[1179648,68289672,1975301885115096,1975303134589986],[1179648,68812936,-39742815133869046,-39742811531898000],[1179648,68813832,3950603919085972,3950606120324188],[1179648,68813952,45089206505908288,45089208969627452],[1179648,68845576,-13247606222252656,-13247602666336360],[1179648,68845696,-11272302995044411,-11272300873839524],[1179648,68846592,24519905365967204,24519907391505747],[1179648,69730312,3950603941250842,3950606098159314],[1179648,69730432,22544603251852693,22544604485915178],[1179648,69731328,-26495209971802464,-26495207805375563],[1179648,70909960,3950603941250842,3950606098159314],[1179648,70910080,22544603251852693,22544604485915178],[1179648,70910976,-26495209971802464,-26495207805375563],[1179648,134217736,1975300413869816,1975304605835260],[1179648,134217856,-1975305295452736,-1975299724252344],[1179648,134218752,-26495211786596702,-26495205990581324],[1179648,134218888,-13247605066127948,-13247603822461068],[1179648,134742152,45089206503935504,45089208971600236],[1179648,134743048,-26495209992202640,-26495207784975390],[1179648,134743168,-39742815043973846,-39742811621793198],[1179648,134774792,24519905365967204,24519907391505747],[1179648,134774912,1975301917270118,1975303102434961],[1179648,134775808,-26495209915574692,-26495207861603338],[1179648,135397384,1975300413869816,1975304605835260],[1179648,135397504,-1975305295452736,-1975299724252344],[1179648,135398400,-26495211786596702,-26495205990581324],[1179648,135398536,-13247605066127948,-13247603822461068],[1179648,135921800,45089206503935504,45089208971600236],[1179648,135922696,-26495209992202640,-26495207784975390],[1179648,135922816,-39742815043973846,-39742811621793198],[1179648,135954440,24519905365967204,24519907391505747],[1179648,135954560,1975301917270118,1975303102434961],[1179648,135955456,-26495209915574692,-26495207861603338],[1179648,136839176,-26495209971802464,-26495207805375563],[1179648,136839296,-26495209977993164,-26495207799184865],[1179648,136840192,52990415906156016,52990419648200040],[1179648,138018824,-26495209971802464,-26495207805375563],[1179648,138018944,-26495209977993164,-26495207799184865],[1179648,138019840,52990415906156016,52990419648200040],[1179648,201850888,3950603932147814,3950606107262344],[1179648,201851008,22544603248067364,22544604489700504],[1179648,201851904,-26495209977773508,-26495207799404518],[1179648,203030536,3950603932147814,3950606107262344],[1179648,203030656,22544603248067364,22544604489700504],[1179648,203031552,-26495209977773508,-26495207799404518],[1179648,268435464,-7321699679927840,-7321694149545938],[1179648,268435584,9296996307740651,9297002541438203],[1179648,268436480,-1975305281023604,-1975299738681472],[1179648,268959880,5925906044742719,5925909014372521],[1179648,268960776,22544603239782766,22544604497985104],[1179648,268960896,5925906124214463,5925908934900775],[1179648,268992520,-11272302995044411,-11272300873839524],[1179648,268992640,9296998645184146,9297000203994710],[1179648,268993536,1975301917270118,1975303102434961],[1179648,269615112,-7321699679927840,-7321694149545938],[1179648,269615232,9296996307740651,9297002541438203],[1179648,269616128,-1975305281023604,-1975299738681472],[1179648,270139528,5925906044742719,5925909014372521],[1179648,270140424,22544603239782766,22544604497985104],[1179648,270140544,5925906124214463,5925908934900775],[1179648,270172168,-11272302995044411,-11272300873839524],[1179648,270172288,9296998645184146,9297000203994710],[1179648,270173184,1975301917270118,1975303102434961],[1179648,271056904,22544603251852693,22544604485915178],[1179648,271057024,3950604236655732,3950605802754426],[1179648,271057920,-26495209977993164,-26495207799184865],[1179648,272236552,22544603251852693,22544604485915178],[1179648,272236672,3950604236655732,3950605802754426],[1179648,272237568,-26495209977993164,-26495207799184865],[1179648,336068616,-39742815119133304,-39742811546633741],[1179648,336068736,5925906055094245,5925909004020996],[1179648,336069632,45089206508319720,45089208967216020],[1179648,337248264,-39742815119133304,-39742811546633741],[1179648,337248384,5925906055094245,5925909004020996],[1179648,337249280,45089206508319720,45089208967216020],[1179648,403177480,45089206509306108,45089208966229632],[1179648,403177600,5925906132510585,5925908926604650],[1179648,403178496,-39742815032279900,-39742811633487139],[1179648,404357128,45089206509306108,45089208966229632],[1179648,404357248,5925906132510585,5925908926604650],[1179648,404358144,-39742815032279900,-39742811633487139],[1179648,469762056,1975301889643525,1975303130061553],[1179648,469763072,-13247605061599516,-13247603826989498],[1179648,470941704,1975301889643525,1975303130061553],[1179648,470942720,-13247605061599516,-13247603826989498],[1179654,524296,6623801159997192,6623803284297315],[1179654,524302,6623801159997192,6623803284297315],[1179654,1703944,6623801159997192,6623803284297315],[1179654,1703950,6623801159997192,6623803284297315],[1179657,524290,-4648500337588616,-4648499087000812],[1179657,524292,-1975303102434961,-1975301917270118],[1179657,524299,-4648500337588616,-4648499087000812],[1179657,524301,-1975303102434961,-1975301917270118],[1179657,1703938,-4648500337588616,-4648499087000812],[1179657,1703940,-1975303102434961,-1975301917270118],[1179657,1703947,-4648500337588616,-4648499087000812],[1179657,1703949,-1975303102434961,-1975301917270118],[1179658,1162,1975301877105131,1975303142599947],[1179658,131074,-4648501379109327,-4648498045480102],[1179658,131080,4648498045480102,4648501379109327],[1179658,132226,-3950606120324188,-3950603919085972],[1179658,132232,1975301885115096,1975303134589986],[1179658,524289,4648499087000812,4648500337588616],[1179658,524292,-4648500337588616,-4648499087000812],[1179658,524299,4648499087000812,4648500337588616],[1179658,524302,-4648500337588616,-4648499087000812],[1179658,524352,4648499056652179,4648500367937248],[1179658,524362,4648499056652179,4648500367937248],[1179658,524416,-4648500367937248,-4648499056652179],[1179658,524426,-17896105469604200,-17896102843574241],[1179658,655490,39742811531898000,39742815133869046],[1179658,655496,-26495210200067732,-26495207577110300],[1179658,656386,-1975303134589986,-1975301885115096],[1179658,656392,1975301885115096,1975303134589986],[1179658,688130,6623801172992632,6623803271301876],[1179658,688136,-6623803271301876,-6623801172992632],[1179658,1048578,4648498045480102,4648501379109327],[1179658,1048584,-4648501379109327,-4648498045480102],[1179658,1049730,1975301885115096,1975303134589986],[1179658,1049736,-3950606120324188,-3950603919085972],[1179658,1180800,1975301877105131,1975303142599947],[1179658,1572994,-26495210200067732,-26495207577110300],[1179658,1573000,39742811531898000,39742815133869046],[1179658,1573890,1975301885115096,1975303134589986],[1179658,1573896,-1975303134589986,-1975301885115096],[1179658,1605634,-6623803271301876,-6623801172992632],[1179658,1605640,6623801172992632,6623803271301876],[1179658,1703937,4648499087000812,4648500337588616],[1179658,1703940,-4648500337588616,-4648499087000812],[1179658,1703947,4648499087000812,4648500337588616],[1179658,1703950,-4648500337588616,-4648499087000812],[1179658,1704000,4648499056652179,4648500367937248],[1179658,1704010,4648499056652179,4648500367937248],[1179658,1704064,-17896105469604200,-17896102843574241],[1179658,1704074,-4648500367937248,-4648499056652179],[1179658,2752514,-1975303127512530,-1975301892192549],[1179658,2752520,1975301892192549,1975303127512530],[1179658,3670018,1975301892192549,1975303127512530],[1179658,3670024,-1975303127512530,-1975301892192549],[1179658,67764226,-11272303056635485,-11272300812248450],[1179658,67764232,11272300812248450,11272303056635485],[1179658,68681730,11272300812248450,11272303056635485],[1179658,68681736,-11272303056635485,-11272300812248450],[1179658,134873090,-1975303134066536,-1975301885638544],[1179658,134873096,1975301885638544,1975303134066536],[1179658,135790594,1975301885638544,1975303134066536],[1179658,135790600,-1975303134066536,-1975301885638544],[1179658,269090818,13247603792440361,13247605096148654],[1179658,269090824,-13247605096148654,-13247603792440361],[1179658,270008322,-13247605096148654,-13247603792440361],[1179658,270008328,13247603792440361,13247605096148654],[1179660,1164,22544603293425280,22544604444342592],[1179660,131076,-4648501315670959,-4648498108918473],[1179660,131080,4648498108918473,4648501315670959],[1179660,132228,-24519907414185673,-24519905343287280],[1179660,132232,1975301908323058,1975303111382023],[1179660,524289,1975301917270118,1975303102434961],[1179660,524290,-1975303102434961,-1975301917270118],[1179660,524301,1975301917270118,1975303102434961],[1179660,524302,-1975303102434961,-1975301917270118],[1179660,524416,-1975303106832961,-1975301912872117],[1179660,524428,-1198509903,1198509906],[1179660,557056,3950603827053960,3950606212356198],[1179660,557068,28470509817570824,28470512979312287],[1179660,655492,24519904668878218,24519908088594729],[1179660,655496,-26495210150792412,-26495207626385616],[1179660,656388,-1975303111382023,-1975301908323058],[1179660,656392,1975301908323058,1975303111382023],[1179660,688132,-17896106200962633,-17896102112215810],[1179660,688136,-6623803231071470,-6623801213223040],[1179660,1048580,4648498108918473,4648501315670959],[1179660,1048584,-4648501315670959,-4648498108918473],[1179660,1049732,1975301908323058,1975303111382023],[1179660,1049736,-24519907414185673,-24519905343287280],[1179660,1180800,22544603293425280,22544604444342592],[1179660,1572996,-26495210150792412,-26495207626385616],[1179660,1573000,24519904668878218,24519908088594729],[1179660,1573892,1975301908323058,1975303111382023],[1179660,1573896,-1975303111382023,-1975301908323058],[1179660,1605636,-6623803231071470,-6623801213223040],[1179660,1605640,-17896106200962633,-17896102112215810],[1179660,1703937,1975301917270118,1975303102434961],[1179660,1703938,-1975303102434961,-1975301917270118],[1179660,1703949,1975301917270118,1975303102434961],[1179660,1703950,-1975303102434961,-1975301917270118],[1179660,1704064,-1198509903,1198509906],[1179660,1704076,-1975303106832961,-1975301912872117],[1179660,1736704,28470509817570824,28470512979312287],[1179660,1736716,3950603827053960,3950606212356198],[1179660,2752516,-1975303104304567,-1975301915400511],[1179660,2752520,1975301915400511,1975303104304567],[1179660,3670020,1975301915400511,1975303104304567],[1179660,3670024,-1975303104304567,-1975301915400511],[1179660,67764228,-11272302995044411,-11272300873839524],[1179660,67764232,11272300873839524,11272302995044411],[1179660,68681732,11272300873839524,11272302995044411],[1179660,68681736,-11272302995044411,-11272300873839524],[1179660,134873092,-1975303102468593,-1975301917236486],[1179660,134873096,1975301917236486,1975303102468593],[1179660,135790596,1975301917236486,1975303102468593],[1179660,135790600,-1975303102468593,-1975301917236486],[1179660,269090820,13247603822433492,13247605066155522],[1179660,269090824,-13247605066155522,-13247603822433492],[1179660,270008324,-13247605066155522,-13247603822433492],[1179660,270008328,13247603822433492,13247605066155522],[1179720,1224,-3950606120324188,-3950603919085972],[1179720,132288,3950603919085972,3950606120324188],[1179720,524290,-4648500367937248,-4648499056652179],[1179720,524362,-4648500367937248,-4648499056652179],[1179720,524416,-33119013675829617,-33119008545642919],[1179720,524488,4648494875353022,4648504549236406],[1179720,655552,-37767513094879325,-37767508551182639],[1179720,1049736,3950603919085972,3950606120324188],[1179720,1180800,-3950606120324188,-3950603919085972],[1179720,1573000,-37767513094879325,-37767508551182639],[1179720,1703938,-4648500367937248,-4648499056652179],[1179720,1704010,-4648500367937248,-4648499056652179],[1179720,1704064,4648494875353022,4648504549236406],[1179720,1704136,-33119013675829617,-33119008545642919],[1179778,1032,3950603919085972,3950606120324188],[1179778,132106,3950603919085972,3950606120324188],[1179778,524296,-6623806745939431,-6623797698355075],[1179778,524352,6623801098016984,6623803346277521],[1179778,524426,31143706348939894,31143710852827564],[1179778,524482,6623801098016984,6623803346277521],[1179778,655370,-37767513094879325,-37767508551182639],[1179778,1049736,3950603919085972,3950606120324188],[1179778,1180810,3950603919085972,3950606120324188],[1179778,1573000,-37767513094879325,-37767508551182639],[1179778,1703944,31143706348939894,31143710852827564],[1179778,1704000,6623801098016984,6623803346277521],[1179778,1704074,-6623806745939431,-6623797698355075],[1179778,1704130,6623801098016984,6623803346277521],[1179780,1032,24519905343287280,24519907414185673],[1179780,132108,24519905343287280,24519907414185673],[1179780,524296,-9297003724271436,-9296995124907418],[1179780,524428,13247602302125610,13247606586463402],[1179780,557056,24519905343287280,24519907414185673],[1179780,655372,-22544606026397046,-22544601711370820],[1179780,688132,24519905343287280,24519907414185673],[1179780,1049736,24519905343287280,24519907414185673],[1179780,1180812,24519905343287280,24519907414185673],[1179780,1573000,-22544606026397046,-22544601711370820],[1179780,1605760,24519905343287280,24519907414185673],[1179780,1703944,13247602302125610,13247606586463402],[1179780,1704076,-9297003724271436,-9296995124907418],[1179780,1736836,24519905343287280,24519907414185673],[1179784,0,-18594001977035748,-18593995721321958],[1179784,136,-18594004998888252,-18593992699469458],[1179784,1026,-1975303134589986,-1975301885115096],[1179784,1028,-1975303111382023,-1975301908323058],[1179784,1224,26495207784975390,26495209992202640],[1179784,1416,-13247605076872486,-13247603811716528],[1179784,3208,-13247605080544438,-13247603808044578],[1179784,33792,1975301908323058,1975303111382023],[1179784,131080,-4795158453,4795158459],[1179784,131200,-9709549903,9709549901],[1179784,132106,-1975303134589986,-1975301885115096],[1179784,132108,-1975303111382023,-1975301908323058],[1179784,132288,-26495209992202640,-26495207784975390],[1179784,132480,13247603811716528,13247605076872486],[1179784,134272,13247603808044578,13247605080544438],[1179784,164872,1975301908323058,1975303111382023],[1179784,524290,-1975306059254087,-1975298960450994],[1179784,524292,13247601033521515,13247607855067498],[1179784,524352,26495207121529005,26495210655649026],[1179784,524426,-26495210655649026,-26495207121529005],[1179784,524428,-11272303635356703,-11272300233527231],[1179784,524488,-9297003434088727,-9296995415090126],[1179784,525312,15222903999406109,15222909908887987],[1179784,525448,7321690308104443,7321703521369331],[1179784,557056,-24519908088594729,-24519904668878218],[1179784,655370,24519904596394939,24519908161078011],[1179784,655372,24519904668878218,24519908088594729],[1179784,655552,35792206070739152,35792210555617732],[1179784,656392,-45089210877255180,-45089204598280566],[1179784,656512,52990410196249260,52990425358106808],[1179784,688136,-24519910213370186,-24519902544102763],[1179784,688256,-2124775455,2124775457],[1179784,1048584,-9709549903,9709549901],[1179784,1048704,-4795158453,4795158459],[1179784,1049672,-26495209992202640,-26495207784975390],[1179784,1049730,-1975303134589986,-1975301885115096],[1179784,1049732,-1975303111382023,-1975301908323058],[1179784,1049864,13247603811716528,13247605076872486],[1179784,1051656,13247603808044578,13247605080544438],[1179784,1082496,1975301908323058,1975303111382023],[1179784,1179648,-18594004998888252,-18593992699469458],[1179784,1179784,-18594001977035748,-18593995721321958],[1179784,1180736,26495207784975390,26495209992202640],[1179784,1180810,-1975303134589986,-1975301885115096],[1179784,1180812,-1975303111382023,-1975301908323058],[1179784,1180928,-13247605076872486,-13247603811716528],[1179784,1182720,-13247605080544438,-13247603808044578],[1179784,1213576,1975301908323058,1975303111382023],[1179784,1572936,35792206070739152,35792210555617732],[1179784,1572994,24519904596394939,24519908161078011],[1179784,1572996,24519904668878218,24519908088594729],[1179784,1573896,52990410196249260,52990425358106808],[1179784,1574016,-45089210877255180,-45089204598280566],[1179784,1605640,-2124775455,2124775457],[1179784,1605760,-24519910213370186,-24519902544102763],[1179784,1703938,-26495210655649026,-26495207121529005],[1179784,1703940,-11272303635356703,-11272300233527231],[1179784,1704000,-9297003434088727,-9296995415090126],[1179784,1704074,-1975306059254087,-1975298960450994],[1179784,1704076,13247601033521515,13247607855067498],[1179784,1704136,26495207121529005,26495210655649026],[1179784,1704960,7321690308104443,7321703521369331],[1179784,1705096,15222903999406109,15222909908887987],[1179784,1736840,-24519908088594729,-24519904668878218],[1179784,2098312,-13247605070627222,-13247603817961795],[1179784,2229376,13247603817961795,13247605070627222],[1179784,2621576,18593997194721705,18594000503636004],[1179784,2752520,-22544605449648746,-22544602288119128],[1179784,2752640,3950601784483124,3950608254927041],[1179784,3146760,13247603817961795,13247605070627222],[1179784,3277824,-13247605070627222,-13247603817961795],[1179784,3670024,3950601784483124,3950608254927041],[1179784,3670144,-22544605449648746,-22544602288119128],[1179784,3801088,18593997194721705,18594000503636004],[1179784,67109888,1975301885115096,1975303134589986],[1179784,67240968,1975301885115096,1975303134589986],[1179784,67633152,-24519908161078011,-24519904596394939],[1179784,67764232,11272297923178146,11272305945705791],[1179784,67764352,-35792210542100730,-35792206084256157],[1179784,68158592,1975301885115096,1975303134589986],[1179784,68289672,1975301885115096,1975303134589986],[1179784,68681736,-35792210542100730,-35792206084256157],[1179784,68681856,11272297923178146,11272305945705791],[1179784,68812936,-24519908161078011,-24519904596394939],[1179784,134218888,-13247605066127948,-13247603822461068],[1179784,134349952,13247603822461068,13247605066127948],[1179784,134742152,18593997124524774,18594000573832936],[1179784,134873096,-22544605576438951,-22544602161328920],[1179784,134873216,3950601587495984,3950608451914177],[1179784,135267336,13247603822461068,13247605066127948],[1179784,135398400,-13247605066127948,-13247603822461068],[1179784,135790600,3950601587495984,3950608451914177],[1179784,135790720,-22544605576438951,-22544602161328920],[1179784,135921664,18593997124524774,18594000573832936],[1179784,268959880,17198207831856214,17198211096142960],[1179784,269090824,-13247606060429303,-13247602828159713],[1179784,269090944,-3950608267983247,-3950601771426911],[1179784,270008328,-3950608267983247,-3950601771426911],[1179784,270008448,-13247606060429303,-13247602828159713],[1179784,270139392,17198207831856214,17198211096142960],[1179840,0,22544602948688426,22544604789079442],[1179840,192,11272301474344213,11272302394539721],[1179840,1032,22544603239782766,22544604497985104],[1179840,131136,15920798873942155,15920804419531205],[1179840,131200,-4648502482185233,-4648496942404193],[1179840,132168,-3950606120324188,-3950603919085972],[1179840,132232,26495207784975390,26495209992202640],[1179840,524290,-6623803346277521,-6623801098016984],[1179840,524296,8599102950409964,8599106513589621],[1179840,524482,-6623803346277521,-6623801098016984],[1179840,524488,6623801098016984,6623803346277521],[1179840,524544,-6623803284297315,-6623801159997192],[1179840,524736,-6623803284297315,-6623801159997192],[1179840,525312,8599103045112288,8599106418887301],[1179840,525504,6623801159997192,6623803284297315],[1179840,655432,51015113006242213,51015117528408767],[1179840,655496,-49039814989147174,-49039810525798726],[1179840,656448,-49039814917723134,-49039810597222762],[1179840,656512,51015113096137411,51015117438513567],[1179840,688192,6623801159997192,6623803284297315],[1179840,688256,-6623803284297315,-6623801159997192],[1179840,1048640,-4648502482185233,-4648496942404193],[1179840,1048704,15920798873942155,15920804419531205],[1179840,1049672,26495207784975390,26495209992202640],[1179840,1049736,-3950606120324188,-3950603919085972],[1179840,1179648,11272301474344213,11272302394539721],[1179840,1179840,22544602948688426,22544604789079442],[1179840,1180872,22544603239782766,22544604497985104],[1179840,1572936,-49039814989147174,-49039810525798726],[1179840,1573000,51015113006242213,51015117528408767],[1179840,1573952,51015113096137411,51015117438513567],[1179840,1574016,-49039814917723134,-49039810597222762],[1179840,1605696,-6623803284297315,-6623801159997192],[1179840,1605760,6623801159997192,6623803284297315],[1179840,1703938,-6623803346277521,-6623801098016984],[1179840,1703944,6623801098016984,6623803346277521],[1179840,1704130,-6623803346277521,-6623801098016984],[1179840,1704136,8599102950409964,8599106513589621],[1179840,1704192,-6623803284297315,-6623801159997192],[1179840,1704384,-6623803284297315,-6623801159997192],[1179840,1704960,6623801159997192,6623803284297315],[1179840,1705152,8599103045112288,8599106418887301],[1179840,2752576,-24519907464643493,-24519905292829456],[1179840,2752640,24519905292829456,24519907464643493],[1179840,3670080,24519905292829456,24519907464643493],[1179840,3670144,-24519907464643493,-24519905292829456],[1179840,67764288,24519905258499972,24519907498972975],[1179840,67764352,-24519907498972975,-24519905258499972],[1179840,68681792,-24519907498972975,-24519905258499972],[1179840,68681856,24519905258499972,24519907498972975],[1179840,134873152,-24519907464403207,-24519905293069738],[1179840,134873216,24519905293069738,24519907464403207],[1179840,135790656,24519905293069738,24519907464403207],[1179840,135790720,-24519907464403207,-24519905293069738],[1179840,269090880,-964466108,964466106],[1179840,269090944,-964466106,964466108],[1179840,270008384,-964466106,964466108],[1179840,270008448,-964466108,964466106],[1180032,1032,-26495209992202640,-26495207784975390],[1180032,132232,-26495209992202640,-26495207784975390],[1180032,524352,6623801159997192,6623803284297315],[1180032,524736,6623801159997192,6623803284297315],[1180032,525312,-3950609227302328,-3950600812107830],[1180032,525696,49039810732001672,49039814782944230],[1180032,656512,-52990419959304000,-52990415595052060],[1180032,1049864,-26495209992202640,-26495207784975390],[1180032,1181064,-26495209992202640,-26495207784975390],[1180032,1574144,-52990419959304000,-52990415595052060],[1180032,1704000,6623801159997192,6623803284297315],[1180032,1704384,6623801159997192,6623803284297315],[1180032,1704960,49039810732001672,49039814782944230],[1180032,1705344,-3950609227302328,-3950600812107830],[1180680,1032,3950600725236988,3950609314173172],[1180680,132096,-3950609314173172,-3950600725236988],[1180680,524416,-58336815178304206,-58336809185820542],[1180680,525448,17198202099309824,17198216828689364],[1180680,656512,-75535026014509906,-75535017277614030],[1180680,1048584,-3950609314173172,-3950600725236988],[1180680,1179648,3950600725236988,3950609314173172],[1180680,1573000,-75535026014509906,-75535017277614030],[1180680,1704064,17198202099309824,17198216828689364],[1180680,1705096,-58336815178304206,-58336809185820542],[1180736,1224,26495207784975390,26495209992202640],[1180736,132232,-26495209992202640,-26495207784975390],[1180736,524416,-53688314809080322,-53688310130455008],[1180736,524544,-1975303102434961,-1975301917270118],[1180736,525504,-697899214028262,-697890171151008],[1180736,525632,-1975303102434961,-1975301917270118],[1180736,656512,-52990419959304000,-52990415595052060],[1180736,1048776,-26495209992202640,-26495207784975390],[1180736,1179784,26495207784975390,26495209992202640],[1180736,1573056,-52990419959304000,-52990415595052060],[1180736,1704064,-697899214028262,-697890171151008],[1180736,1704192,-1975303102434961,-1975301917270118],[1180736,1705152,-53688314809080322,-53688310130455008],[1180736,1705280,-1975303102434961,-1975301917270118],[1180800,0,33237389689794910,33237395667510356],[1180800,264,13247603822461068,13247605066127948],[1180800,1152,22544597683462214,22544610054305668],[1180800,1162,1975301877105131,1975303142599947],[1180800,1164,22544603293425280,22544604444342592],[1180800,1224,-3950606120324188,-3950603919085972],[1180800,2056,13247603817961795,13247605070627222],[1180800,33928,1975301908323058,1975303111382023],[1180800,131200,-12549714288599261,-12549705214810465],[1180800,131464,13247603822461068,13247605066127948],[1180800,132096,23242489006570695,23242508116376415],[1180800,132106,-1975303142599947,-1975301877105131],[1180800,132108,-22544604444342592,-22544603293425280],[1180800,132168,3950603919085972,3950606120324188],[1180800,133256,13247603817961795,13247605070627222],[1180800,164872,-1975303111382023,-1975301908323058],[1180800,524296,20569298570795129,20569304147267651],[1180800,524352,47064508673192612,47064511822048211],[1180800,524544,-7321700200255013,-7321693629218766],[1180800,525448,43113898635137411,43113911820693235],[1180800,525504,-3950608765320955,-3950601274089200],[1180800,525696,-47064511822048211,-47064508673192612],[1180800,526336,-7321700242729086,-7321693586744675],[1180800,527488,-47064511840212707,-47064508655028107],[1180800,558208,28470509817570824,28470512979312287],[1180800,655496,-75535024800832972,-75535018491290962],[1180800,655744,39742811621793198,39742815043973846],[1180800,656392,52990410196249260,52990425358106808],[1180800,656448,51015113096137411,51015117438513567],[1180800,657536,39742811597483621,39742815068283432],[1180800,688256,-19871408102400732,-19871405230482798],[1180800,689152,-8599107748829489,-8599101715170092],[1180800,1048704,23242489006570695,23242508116376415],[1180800,1048714,-1975303142599947,-1975301877105131],[1180800,1048716,-22544604444342592,-22544603293425280],[1180800,1048776,3950603919085972,3950606120324188],[1180800,1049600,-12549714288599261,-12549705214810465],[1180800,1049864,13247603822461068,13247605066127948],[1180800,1051656,13247603817961795,13247605070627222],[1180800,1081480,-1975303111382023,-1975301908323058],[1180800,1179648,22544597683462214,22544610054305668],[1180800,1179658,1975301877105131,1975303142599947],[1180800,1179660,22544603293425280,22544604444342592],[1180800,1179720,-3950606120324188,-3950603919085972],[1180800,1180800,33237389689794910,33237395667510356],[1180800,1181064,13247603822461068,13247605066127948],[1180800,1182856,13247603817961795,13247605070627222],[1180800,1212424,1975301908323058,1975303111382023],[1180800,1573000,52990410196249260,52990425358106808],[1180800,1573056,51015113096137411,51015117438513567],[1180800,1573896,-75535024800832972,-75535018491290962],[1180800,1574144,39742811621793198,39742815043973846],[1180800,1575936,39742811597483621,39742815068283432],[1180800,1605760,-8599107748829489,-8599101715170092],[1180800,1606656,-19871408102400732,-19871405230482798],[1180800,1703944,43113898635137411,43113911820693235],[1180800,1704000,-3950608765320955,-3950601274089200],[1180800,1704192,-47064511822048211,-47064508673192612],[1180800,1705096,20569298570795129,20569304147267651],[1180800,1705152,47064508673192612,47064511822048211],[1180800,1705344,-7321700200255013,-7321693629218766],[1180800,1705984,-47064511840212707,-47064508655028107],[1180800,1707136,-7321700242729086,-7321693586744675],[1180800,1736704,28470509817570824,28470512979312287],[1180800,2097160,-13247605070627222,-13247603817961795],[1180800,2228360,-13247605070627222,-13247603817961795],[1180800,2621440,-39742815068283432,-39742811597483621],[1180800,2752640,11272298134922261,11272305733961656],[1180800,2753536,-51015117331445277,-51015113203205693],[1180800,3146760,-13247605070627222,-13247603817961795],[1180800,3277960,-13247605070627222,-13247603817961795],[1180800,3670144,-51015117331445277,-51015113203205693],[1180800,3671040,11272298134922261,11272305733961656],[1180800,3802240,-39742815068283432,-39742811597483621],[1180800,67110024,1975301885115096,1975303134589986],[1180800,67240968,-1975303134589986,-1975301885115096],[1180800,67634304,49039811037266288,49039814477679612],[1180800,67764352,-37767512457661269,-37767509188400696],[1180800,67765248,-11272305289278916,-11272298579605019],[1180800,68157576,-1975303134589986,-1975301885115096],[1180800,68288520,1975301885115096,1975303134589986],[1180800,68681856,-11272305289278916,-11272298579605019],[1180800,68682752,-37767512457661269,-37767509188400696],[1180800,68812800,49039811037266288,49039814477679612],[1180800,134217736,-13247605066127948,-13247603822461068],[1180800,134348936,-13247605066127948,-13247603822461068],[1180800,134742016,-39742815043973846,-39742811621793198],[1180800,134873216,11272298183630328,11272305685253609],[1180800,134874112,-51015117307046807,-51015113227604174],[1180800,135267336,-13247605066127948,-13247603822461068],[1180800,135398536,-13247605066127948,-13247603822461068],[1180800,135790720,-51015117307046807,-51015113227604174],[1180800,135791616,11272298183630328,11272305685253609],[1180800,135922816,-39742815043973846,-39742811621793198],[1180800,268960896,1975300950242052,1975304069463026],[1180800,269090944,-13247605939232943,-13247602949356073],[1180800,269091840,11272298879893047,11272304988990891],[1180800,270008448,11272298879893047,11272304988990891],[1180800,270009344,-13247605939232943,-13247602949356073],[1180800,270139392,1975300950242052,1975304069463026],[1180810,1026,-1975303134589986,-1975301885115096],[1180810,1032,3950603919085972,3950606120324188],[1180810,1162,1975301877105131,1975303142599947],[1180810,132096,-1975303142599947,-1975301877105131],[1180810,132226,-3950606120324188,-3950603919085972],[1180810,132232,1975301885115096,1975303134589986],[1180810,1048578,1975301885115096,1975303134589986],[1180810,1048584,-3950606120324188,-3950603919085972],[1180810,1048714,-1975303142599947,-1975301877105131],[1180810,1179648,1975301877105131,1975303142599947],[1180810,1179778,3950603919085972,3950606120324188],[1180810,1179784,-1975303134589986,-1975301885115096],[1180812,1028,-1975303111382023,-1975301908323058],[1180812,1032,24519905343287280,24519907414185673],[1180812,1164,22544603293425280,22544604444342592],[1180812,132096,-22544604444342592,-22544603293425280],[1180812,132228,-24519907414185673,-24519905343287280],[1180812,132232,1975301908323058,1975303111382023],[1180812,1048580,1975301908323058,1975303111382023],[1180812,1048584,-24519907414185673,-24519905343287280],[1180812,1048716,-22544604444342592,-22544603293425280],[1180812,1179648,22544603293425280,22544604444342592],[1180812,1179780,24519905343287280,24519907414185673],[1180812,1179784,-1975303111382023,-1975301908323058],[1180872,1032,22544603239782766,22544604497985104],[1180872,1224,22544603239782766,22544604497985104],[1180872,132096,-22544604497985104,-22544603239782766],[1180872,132288,-22544604497985104,-22544603239782766],[1180872,1048584,-22544604497985104,-22544603239782766],[1180872,1048776,-22544604497985104,-22544603239782766],[1180872,1179648,22544603239782766,22544604497985104],[1180872,1179840,22544603239782766,22544604497985104],[1180928,1416,-13247605076872486,-13247603811716528],[1180928,131328,-13247606122936882,-13247602765652131],[1180928,131464,-13247605066127948,-13247603822461068],[1180928,132096,13247602765652131,13247606122936882],[1180928,132232,26495207784975390,26495209992202640],[1180928,524352,1975301917270118,1975303102434961],[1180928,524416,-1975303102434961,-1975301917270118],[1180928,524800,1975301885638543,1975303134066535],[1180928,525632,1975301917270118,1975303102434961],[1180928,525696,-15222908168562909,-15222905739731186],[1180928,526080,1975301885638543,1975303134066535],[1180928,526336,-1975303134066535,-1975301885638543],[1180928,527616,-1975303134066535,-1975301885638543],[1180928,655624,-13247605066127948,-13247603822461068],[1180928,655744,-26495210128643692,-26495207648534336],[1180928,656392,13247603822461068,13247605066127948],[1180928,656512,39742811621793198,39742815043973846],[1180928,688384,-13247605033169427,-13247603855419588],[1180928,689152,13247603855419588,13247605033169427],[1180928,1048832,13247602765652131,13247606122936882],[1180928,1048968,26495207784975390,26495209992202640],[1180928,1049600,-13247606122936882,-13247602765652131],[1180928,1049736,-13247605066127948,-13247603822461068],[1180928,1179784,-13247605076872486,-13247603811716528],[1180928,1573128,13247603822461068,13247605066127948],[1180928,1573248,39742811621793198,39742815043973846],[1180928,1573896,-13247605066127948,-13247603822461068],[1180928,1574016,-26495210128643692,-26495207648534336],[1180928,1605888,13247603855419588,13247605033169427],[1180928,1606656,-13247605033169427,-13247603855419588],[1180928,1704000,1975301917270118,1975303102434961],[1180928,1704064,-15222908168562909,-15222905739731186],[1180928,1704448,1975301885638543,1975303134066535],[1180928,1705280,1975301917270118,1975303102434961],[1180928,1705344,-1975303102434961,-1975301917270118],[1180928,1705728,1975301885638543,1975303134066535],[1180928,1705984,-1975303134066535,-1975301885638543],[1180928,1707264,-1975303134066535,-1975301885638543],[1180928,2752768,26495207798821558,26495209978356470],[1180928,2753536,-26495209978356470,-26495207798821558],[1180928,3670272,-26495209978356470,-26495207798821558],[1180928,3671040,26495207798821558,26495209978356470],[1180928,67764480,-13247605066971786,-13247603821617226],[1180928,67765248,13247603821617226,13247605066971786],[1180928,68681984,13247603821617226,13247605066971786],[1180928,68682752,-13247605066971786,-13247603821617226],[1180928,134873344,26495207799425147,26495209977752878],[1180928,134874112,-26495209977752878,-26495207799425147],[1180928,135790848,-26495209977752878,-26495207799425147],[1180928,135791616,26495207799425147,26495209977752878],[1180928,269091072,-13247605061578886,-13247603827010127],[1180928,269091840,13247603827010127,13247605061578886],[1180928,270008576,13247603827010127,13247605061578886],[1180928,270009344,-13247605061578886,-13247603827010127],[1181064,264,13247603822461068,13247605066127948],[1181064,1032,-26495209992202640,-26495207784975390],[1181064,1416,-13247605076872486,-13247603811716528],[1181064,131328,-13247605066127948,-13247603822461068],[1181064,132096,26495207784975390,26495209992202640],[1181064,132480,13247603811716528,13247605076872486],[1181064,1048584,13247603811716528,13247605076872486],[1181064,1048968,26495207784975390,26495209992202640],[1181064,1049736,-13247605066127948,-13247603822461068],[1181064,1179648,-13247605076872486,-13247603811716528],[1181064,1180032,-26495209992202640,-26495207784975390],[1181064,1180800,13247603822461068,13247605066127948],[1181184,524544,-1975303134066535,-1975301885638543],[1181184,526080,-1975303134066535,-1975301885638543],[1181184,526336,-22544604485915178,-22544603251852693],[1181184,527872,-22544604485915178,-22544603251852693],[1181184,1704192,-1975303134066535,-1975301885638543],[1181184,1705728,-1975303134066535,-1975301885638543],[1181184,1705984,-22544604485915178,-22544603251852693],[1181184,1707520,-22544604485915178,-22544603251852693],[1181824,1032,-26495210000373866,-26495207776804167],[1181824,132232,-26495210000373866,-26495207776804167],[1181824,525312,-3950609278673694,-3950600760736484],[1181824,527488,49039810709439166,49039814805506726],[1181824,656512,-52990419988112860,-52990415566243210],[1181824,1051656,-26495210000373866,-26495207776804167],[1181824,1182856,-26495210000373866,-26495207776804167],[1181824,1575936,-52990419988112860,-52990415566243210],[1181824,1704960,49039810709439166,49039814805506726],[1181824,1707136,-3950609278673694,-3950600760736484],[1181824,2621440,-26495210000373866,-26495207776804167],[1181824,2752640,-26495210000373866,-26495207776804167],[1181824,3672064,-26495210000373866,-26495207776804167],[1181824,3803264,-26495210000373866,-26495207776804167],[1181952,525312,24519905292829456,24519907464643493],[1181952,527616,24519905292829456,24519907464643493],[1181952,1704960,24519905292829456,24519907464643493],[1181952,1707264,24519905292829456,24519907464643493],[1182720,3208,-13247605080544438,-13247603808044578],[1182720,132096,13247602731588215,13247606157000801],[1182720,132232,26495207776804167,26495210000373866],[1182720,133120,-13247606157000801,-13247602731588215],[1182720,133256,-13247605070627222,-13247603817961795],[1182720,524416,-1975303106832961,-1975301912872117],[1182720,524544,-22544604485915178,-22544603251852693],[1182720,524800,22544603251852693,22544604485915178],[1182720,527488,-15222908177460183,-15222905730833912],[1182720,527616,-22544604485915178,-22544603251852693],[1182720,527872,22544603251852693,22544604485915178],[1182720,656392,13247603817961795,13247605070627222],[1182720,656512,39742811597483621,39742815068283432],[1182720,657416,-13247605070627222,-13247603817961795],[1182720,657536,-26495210148454004,-26495207628724032],[1182720,689152,13247603851021587,13247605037567427],[1182720,690176,-13247605037567427,-13247603851021587],[1182720,1049600,-13247606157000801,-13247602731588215],[1182720,1049736,-13247605070627222,-13247603817961795],[1182720,1050624,13247602731588215,13247606157000801],[1182720,1050760,26495207776804167,26495210000373866],[1182720,1179784,-13247605080544438,-13247603808044578],[1182720,1573896,-13247605070627222,-13247603817961795],[1182720,1574016,-26495210148454004,-26495207628724032],[1182720,1574920,13247603817961795,13247605070627222],[1182720,1575040,39742811597483621,39742815068283432],[1182720,1606656,-13247605037567427,-13247603851021587],[1182720,1607680,13247603851021587,13247605037567427],[1182720,1704064,-15222908177460183,-15222905730833912],[1182720,1704192,-22544604485915178,-22544603251852693],[1182720,1704448,22544603251852693,22544604485915178],[1182720,1707136,-1975303106832961,-1975301912872117],[1182720,1707264,-22544604485915178,-22544603251852693],[1182720,1707520,22544603251852693,22544604485915178],[1182720,2621440,45089206494936958,45089208980598784],[1182720,2624512,18593997194721705,18594000503636004],[1182720,2753536,-2231218221,2231218224],[1182720,2754560,26495207769155642,26495210008022388],[1182720,3671040,26495207769155642,26495210008022388],[1182720,3672064,-2231218221,2231218224],[1182720,3801088,18593997194721705,18594000503636004],[1182720,3804160,45089206494936958,45089208980598784],[1182720,34078720,1975301912872117,1975303106832961],[1182720,34081792,1975301912872117,1975303106832961],[1182720,35258368,1975301912872117,1975303106832961],[1182720,35261440,1975301912872117,1975303106832961],[1182720,67765248,13247603826875223,13247605061713792],[1182720,67766272,-13247605061713792,-13247603826875223],[1182720,68682752,-13247605061713792,-13247603826875223],[1182720,68683776,13247603826875223,13247605061713792],[1182720,134874112,-26495209977993164,-26495207799184865],[1182720,134875136,26495207799184865,26495209977993164],[1182720,135791616,26495207799184865,26495209977993164],[1182720,135792640,-26495209977993164,-26495207799184865],[1182720,269091840,13247603821511848,13247605067077166],[1182720,269092864,-13247605067077166,-13247603821511848],[1182720,270009344,-13247605067077166,-13247603821511848],[1182720,270010368,13247603821511848,13247605067077166],[1182856,1032,-26495210000373866,-26495207776804167],[1182856,2056,13247603817961795,13247605070627222],[1182856,3208,-13247605080544438,-13247603808044578],[1182856,132096,26495207776804167,26495210000373866],[1182856,133120,-13247605070627222,-13247603817961795],[1182856,134272,13247603808044578,13247605080544438],[1182856,1048584,13247603808044578,13247605080544438],[1182856,1049736,-13247605070627222,-13247603817961795],[1182856,1050760,26495207776804167,26495210000373866],[1182856,1179648,-13247605080544438,-13247603808044578],[1182856,1180800,13247603817961795,13247605070627222],[1182856,1181824,-26495210000373866,-26495207776804167],[1212417,524292,13247603855419588,13247605033169427],[1212417,557061,13247603855419588,13247605033169427],[1212417,1703940,13247603855419588,13247605033169427],[1212417,1736709,13247603855419588,13247605033169427],[1212418,524296,-13247605033169427,-13247603855419588],[1212418,557066,-6623803284297315,-6623801159997192],[1212418,655370,-6623803271301876,-6623801172992632],[1212418,1605640,-6623803271301876,-6623801172992632],[1212418,1703944,-6623803284297315,-6623801159997192],[1212418,1736714,-13247605033169427,-13247603855419588],[1212420,131076,-1975304034893986,-1975300984811094],[1212420,163840,1975300984811094,1975304034893986],[1212420,524289,-13247605033169427,-13247603855419588],[1212420,524296,-26495210023626872,-26495207753551168],[1212420,557061,-13247605033169427,-13247603855419588],[1212420,557068,-19871408102400732,-19871405230482798],[1212420,655372,17896102112215810,17896106200962633],[1212420,655492,-1975303111382023,-1975301908323058],[1212420,656388,-22544604444342592,-22544603293425280],[1212420,688136,-24519907414185673,-24519905343287280],[1212420,688256,1975301908323058,1975303111382023],[1212420,689152,22544603293425280,22544604444342592],[1212420,1048580,1975300984811094,1975304034893986],[1212420,1081344,-1975304034893986,-1975300984811094],[1212420,1572876,-24519907414185673,-24519905343287280],[1212420,1572996,1975301908323058,1975303111382023],[1212420,1573892,22544603293425280,22544604444342592],[1212420,1605640,17896102112215810,17896106200962633],[1212420,1605760,-1975303111382023,-1975301908323058],[1212420,1606656,-22544604444342592,-22544603293425280],[1212420,1703937,-13247605033169427,-13247603855419588],[1212420,1703944,-19871408102400732,-19871405230482798],[1212420,1736709,-13247605033169427,-13247603855419588],[1212420,1736716,-26495210023626872,-26495207753551168],[1212420,2752516,-22544604432275006,-22544603305492866],[1212420,2785280,22544603305492866,22544604432275006],[1212420,3670020,22544603305492866,22544604432275006],[1212420,3702784,-22544604432275006,-22544603305492866],[1212420,67764228,24519905365967204,24519907391505747],[1212420,67796992,-24519907391505747,-24519905365967204],[1212420,68681732,-24519907391505747,-24519905365967204],[1212420,68714496,24519905365967204,24519907391505747],[1212420,134873092,-22544604430576096,-22544603307191776],[1212420,134905856,22544603307191776,22544604430576096],[1212420,135790596,22544603307191776,22544604430576096],[1212420,135823360,-22544604430576096,-22544603307191776],[1212420,269090820,-1975303102468593,-1975301917236486],[1212420,269123584,1975301917236486,1975303102468593],[1212420,270008324,1975301917236486,1975303102468593],[1212420,270041088,-1975303102468593,-1975301917236486],[1212420,1074266112,13247603855419588,13247605033169427],[1212420,1074298884,13247603855419588,13247605033169427],[1212420,1075445760,13247603855419588,13247605033169427],[1212420,1075478532,13247603855419588,13247605033169427],[1212424,0,-22544604716605376,-22544603021162496],[1212424,32776,6623799524173159,6623804920121353],[1212424,33928,1975301908323058,1975303111382023],[1212424,131080,-15920803246405425,-15920800047067943],[1212424,132232,-1975303111382023,-1975301908323058],[1212424,163840,-13247605973043456,-13247602915545560],[1212424,524290,13247603855419588,13247605033169427],[1212424,524292,22544601541194970,22544606196572912],[1212424,524416,13247603851021587,13247605037567427],[1212424,557066,6623801159997192,6623803284297315],[1212424,557068,-8599107748829489,-8599101715170092],[1212424,557192,-24519910213370186,-24519902544102763],[1212424,558088,24519905343287280,24519907414185673],[1212424,655370,6623801172992632,6623803271301876],[1212424,655372,6623801213223040,6623803231071470],[1212424,655496,39742809963298108,39742816702468936],[1212424,656392,-1975303111382023,-1975301908323058],[1212424,688132,24519905343287280,24519907414185673],[1212424,688256,-1975303111382023,-1975301908323058],[1212424,689152,-22544604444342592,-22544603293425280],[1212424,1048584,-13247605973043456,-13247602915545560],[1212424,1081344,-15920803246405425,-15920800047067943],[1212424,1082496,-1975303111382023,-1975301908323058],[1212424,1179648,6623799524173159,6623804920121353],[1212424,1180800,1975301908323058,1975303111382023],[1212424,1212424,-22544604716605376,-22544603021162496],[1212424,1572876,24519905343287280,24519907414185673],[1212424,1573000,-1975303111382023,-1975301908323058],[1212424,1573896,-22544604444342592,-22544603293425280],[1212424,1605634,6623801172992632,6623803271301876],[1212424,1605636,6623801213223040,6623803231071470],[1212424,1605760,39742809963298108,39742816702468936],[1212424,1606656,-1975303111382023,-1975301908323058],[1212424,1703938,6623801159997192,6623803284297315],[1212424,1703940,-8599107748829489,-8599101715170092],[1212424,1704064,-24519910213370186,-24519902544102763],[1212424,1704960,24519905343287280,24519907414185673],[1212424,1736714,13247603855419588,13247605033169427],[1212424,1736716,22544601541194970,22544606196572912],[1212424,1736840,13247603851021587,13247605037567427],[1212424,2654216,24519905362432319,24519907395040631],[1212424,2752520,-1975303104304567,-1975301915400511],[1212424,2785280,-22544604432275006,-22544603305492866],[1212424,3670024,-22544604432275006,-22544603305492866],[1212424,3702784,-1975303104304567,-1975301915400511],[1212424,3801088,24519905362432319,24519907395040631],[1212424,67633152,-11272302664826744,-11272301204057192],[1212424,67665928,6623801159963560,6623803284330947],[1212424,67764232,-17896105064267619,-17896103248910824],[1212424,67796992,-873779583,873779583],[1212424,68681736,-873779583,873779583],[1212424,68714496,-17896105064267619,-17896103248910824],[1212424,68812800,6623801159963560,6623803284330947],[1212424,68845576,-11272302664826744,-11272301204057192],[1212424,134774792,24519905365967204,24519907391505747],[1212424,134873096,-1975303102468593,-1975301917236486],[1212424,134905856,-22544604430576096,-22544603307191776],[1212424,135790600,-22544604430576096,-22544603307191776],[1212424,135823360,-1975303102468593,-1975301917236486],[1212424,135921664,24519905365967204,24519907391505747],[1212424,268992520,-11272302995044411,-11272300873839524],[1212424,269090824,13247603822433492,13247605066155522],[1212424,269123584,-1975303102468593,-1975301917236486],[1212424,270008328,-1975303102468593,-1975301917236486],[1212424,270041088,13247603822433492,13247605066155522],[1212424,270139392,-11272302995044411,-11272300873839524],[1212424,1074266112,-1975303102434961,-1975301917270118],[1212424,1074298888,-26495209915574692,-26495207861603338],[1212424,1074429952,24519905365967204,24519907391505747],[1212424,1075314696,24519905365967204,24519907391505747],[1212424,1075445760,-26495209915574692,-26495207861603338],[1212424,1075478536,-1975303102434961,-1975301917270118],[1212480,557248,-6623803271301876,-6623801172992632],[1212480,655552,6623801172992632,6623803271301876],[1212480,1605760,6623801172992632,6623803271301876],[1212480,1704064,-6623803271301876,-6623801172992632],[1212544,0,22544603021162496,22544604716605376],[1212544,32896,15920799005382849,15920804288090516],[1212544,131200,-4648502349941046,-4648497074648383],[1212544,163840,11272301510581248,11272302358302688],[1212544,524292,-24519907414185673,-24519905343287280],[1212544,524296,11272300305719853,11272303563164086],[1212544,557192,-2124775455,2124775457],[1212544,557248,6623801172992632,6623803271301876],[1212544,558208,-17896106200962633,-17896102112215810],[1212544,655496,-13247606551676524,-13247602336912492],[1212544,655552,-6623803271301876,-6623801172992632],[1212544,656512,17896102112215810,17896106200962633],[1212544,688132,-24519907414185673,-24519905343287280],[1212544,688136,24519905343287280,24519907414185673],[1212544,1048704,11272301510581248,11272302358302688],[1212544,1081344,-4648502349941046,-4648497074648383],[1212544,1179648,15920799005382849,15920804288090516],[1212544,1212544,22544603021162496,22544604716605376],[1212544,1572996,-24519907414185673,-24519905343287280],[1212544,1573000,24519905343287280,24519907414185673],[1212544,1605640,-13247606551676524,-13247602336912492],[1212544,1605696,-6623803271301876,-6623801172992632],[1212544,1606656,17896102112215810,17896106200962633],[1212544,1703944,-2124775455,2124775457],[1212544,1704000,6623801172992632,6623803271301876],[1212544,1704960,-17896106200962633,-17896102112215810],[1212544,1736836,-24519907414185673,-24519905343287280],[1212544,1736840,11272300305719853,11272303563164086],[1212544,2654336,-24519907395040631,-24519905362432319],[1212544,2752640,24519905362432319,24519907395040631],[1212544,3702784,24519905362432319,24519907395040631],[1212544,3801088,-24519907395040631,-24519905362432319],[1212544,67633152,24519905365967204,24519907391505747],[1212544,67796992,24519905365967204,24519907391505747],[1212544,68681856,24519905365967204,24519907391505747],[1212544,68845696,24519905365967204,24519907391505747],[1212544,134774912,-24519907391505747,-24519905365967204],[1212544,134873216,24519905365967204,24519907391505747],[1212544,135823360,24519905365967204,24519907391505747],[1212544,135921664,-24519907391505747,-24519905365967204],[1212544,268992640,17896103248910824,17896105064267619],[1212544,269090944,-17896105064267619,-17896103248910824],[1212544,270041088,-17896105064267619,-17896103248910824],[1212544,270139392,17896103248910824,17896105064267619],[1212544,1074266112,-24519907391505747,-24519905365967204],[1212544,1074429952,-24519907391505747,-24519905365967204],[1212544,1075314816,-24519907391505747,-24519905365967204],[1212544,1075478656,-24519907391505747,-24519905365967204],[1213440,33792,1975300513283600,1975304506421476],[1213440,132096,-1975304506421476,-1975300513283600],[1213440,558208,-6623803231071470,-6623801213223040],[1213440,656512,6623801213223040,6623803231071470],[1213440,1081344,-1975304506421476,-1975300513283600],[1213440,1179648,1975300513283600,1975304506421476],[1213440,1605760,6623801213223040,6623803231071470],[1213440,1704064,-6623803231071470,-6623801213223040],[1213576,33792,1975301908323058,1975303111382023],[1213576,33928,1975301908323058,1975303111382023],[1213576,132096,-1975303111382023,-1975301908323058],[1213576,132232,-1975303111382023,-1975301908323058],[1213576,1081344,-1975303111382023,-1975301908323058],[1213576,1081480,-1975303111382023,-1975301908323058],[1213576,1179648,1975301908323058,1975303111382023],[1213576,1179784,1975301908323058,1975303111382023],[1572864,72,11272301474344213,11272302394539721],[1572864,136,49039808003270598,49039817511675298],[1572864,1032,22544597683462214,22544610054305668],[1572864,1224,-24519907169816619,-24519905587656329],[1572864,1416,13247603811716528,13247605076872486],[1572864,3208,13247603808044578,13247605080544438],[1572864,32776,11272301510581248,11272302358302688],[1572864,32896,-13247605973043456,-13247602915545560],[1572864,33792,1975300984811094,1975304034893986],[1572864,131080,-11272305028685690,-11272298840198250],[1572864,131136,-13247606153429752,-13247602735159258],[1572864,131200,307521786696231667,307521833184037924],[1572864,131328,1975300803621296,1975304216083780],[1572864,132096,-311472436788867910,-311472393130811843],[1572864,132232,-3950606273531284,-3950603765878878],[1572864,132288,-1975303134589986,-1975301885115096],[1572864,132480,13247603822461068,13247605066127948],[1572864,133120,3950601784483124,3950608254927041],[1572864,134272,13247603817961795,13247605070627222],[1572864,1572936,11272301474344213,11272302394539721],[1572864,1573000,49039808003270598,49039817511675298],[1572864,1573896,22544597683462214,22544610054305668],[1572864,1574088,-24519907169816619,-24519905587656329],[1572864,1574280,13247603811716528,13247605076872486],[1572864,1576072,13247603808044578,13247605080544438],[1572864,1605640,11272301510581248,11272302358302688],[1572864,1605760,-13247605973043456,-13247602915545560],[1572864,1606656,1975300984811094,1975304034893986],[1572864,1703944,-11272305028685690,-11272298840198250],[1572864,1704000,-13247606153429752,-13247602735159258],[1572864,1704064,307521786696231667,307521833184037924],[1572864,1704192,1975300803621296,1975304216083780],[1572864,1704960,-311472436788867910,-311472393130811843],[1572864,1705096,-3950606273531284,-3950603765878878],[1572864,1705152,-1975303134589986,-1975301885115096],[1572864,1705344,13247603822461068,13247605066127948],[1572864,1705984,3950601784483124,3950608254927041],[1572864,1707136,13247603817961795,13247605070627222],[1572864,2097160,3950601784483124,3950608254927041],[1572864,2098312,13247603817961795,13247605070627222],[1572864,2229376,66238019675883376,66238024767061710],[1572864,3670024,3950601784483124,3950608254927041],[1572864,3671176,13247603817961795,13247605070627222],[1572864,3802240,66238019675883376,66238024767061710],[1572864,67108872,-9296999886451704,-9296998962727152],[1572864,67108992,-5925910945469332,-5925904113645905],[1572864,67109888,3950601606309328,3950608433100829],[1572864,68681736,-9296999886451704,-9296998962727152],[1572864,68681856,-5925910945469332,-5925904113645905],[1572864,68682752,3950601606309328,3950608433100829],[1572864,134217736,3950601587495984,3950608451914177],[1572864,134218888,13247603822461068,13247605066127948],[1572864,134349952,66238019708364176,66238024734580898],[1572864,135790600,3950601587495984,3950608451914177],[1572864,135791752,13247603822461068,13247605066127948],[1572864,135922816,66238019708364176,66238024734580898],[1572864,136446080,52990415906156016,52990419648200040],[1572864,136446976,-52990419648200040,-52990415906156016],[1572864,138018944,52990415906156016,52990419648200040],[1572864,138019840,-52990419648200040,-52990415906156016],[1572864,268435464,-5925910964282679,-5925904094832560],[1572864,268436616,-1975303134589986,-1975301885115096],[1572864,268567680,-77510327129120619,-77510321182708389],[1572864,270008328,-5925910964282679,-5925904094832560],[1572864,270009480,-1975303134589986,-1975301885115096],[1572864,270140544,-77510327129120619,-77510321182708389],[1572864,270663808,-52990419648200040,-52990415906156016],[1572864,270664704,52990415906156016,52990419648200040],[1572864,272236672,-52990419648200040,-52990415906156016],[1572864,272237568,52990415906156016,52990419648200040],[1572864,402784384,-77510327102997542,-77510321208831459],[1572864,402785280,66238019734487245,66238024708457820],[1572864,404357248,-77510327102997542,-77510321208831459],[1572864,404358144,66238019734487245,66238024708457820],[1572864,469762176,-1975303130061553,-1975301889643525],[1572864,469763072,13247603826989498,13247605061599516],[1572864,471335040,-1975303130061553,-1975301889643525],[1572864,471335936,13247603826989498,13247605061599516],[1572874,524290,-6623806745939431,-6623797698355075],[1572874,524296,6623797698355075,6623806745939431],[1572874,524482,6623801098016984,6623803346277521],[1572874,524488,-6623803346277521,-6623801098016984],[1572874,525442,3950603919085972,3950606120324188],[1572874,525448,-3950606120324188,-3950603919085972],[1572874,1048578,6623797698355075,6623806745939431],[1572874,1048584,-6623806745939431,-6623797698355075],[1572874,1048770,-6623803346277521,-6623801098016984],[1572874,1048776,6623801098016984,6623803346277521],[1572874,1049730,-3950606120324188,-3950603919085972],[1572874,1049736,3950603919085972,3950606120324188],[1572876,524292,-9297003724271436,-9296995124907418],[1572876,524296,9296995124907418,9297003724271436],[1572876,525444,24519905343287280,24519907414185673],[1572876,525448,-24519907414185673,-24519905343287280],[1572876,688132,24519905343287280,24519907414185673],[1572876,688136,-24519907414185673,-24519905343287280],[1572876,1048580,9296995124907418,9297003724271436],[1572876,1048584,-9297003724271436,-9296995124907418],[1572876,1049732,-24519907414185673,-24519905343287280],[1572876,1049736,24519905343287280,24519907414185673],[1572876,1212420,-24519907414185673,-24519905343287280],[1572876,1212424,24519905343287280,24519907414185673],[1572930,524290,-4648501976324875,-4648497448264558],[1572930,524352,4648497448264558,4648501976324875],[1572930,524426,24519905258499972,24519907498972975],[1572930,524488,-24519907498972975,-24519905258499972],[1572930,525442,24519905280236082,24519907477236870],[1572930,525504,-24519907477236870,-24519905280236082],[1572930,1048578,4648497448264558,4648501976324875],[1572930,1048640,-4648501976324875,-4648497448264558],[1572930,1048714,-24519907498972975,-24519905258499972],[1572930,1048776,24519905258499972,24519907498972975],[1572930,1049730,-24519907477236870,-24519905280236082],[1572930,1049792,24519905280236082,24519907477236870],[1572932,524428,6623801159997192,6623803284297315],[1572932,524488,-6623803284297315,-6623801159997192],[1572932,1048716,-6623803284297315,-6623801159997192],[1572932,1048776,6623801159997192,6623803284297315],[1572936,0,22544602948688426,22544604789079442],[1572936,72,11272301474344213,11272302394539721],[1572936,1152,-77510327129120619,-77510321182708389],[1572936,1224,-49039814917723134,-49039810597222762],[1572936,131200,11272300226701508,11272303642182425],[1572936,131272,24519905292829456,24519907464643493],[1572936,524296,15920798744910351,15920804548563011],[1572936,524352,-4648502614033929,-4648496810555499],[1572936,524426,-17896106400955991,-17896101912222451],[1572936,524428,-6623803284297315,-6623801159997192],[1572936,524482,17896101912222451,17896106400955991],[1572936,524484,6623801159997192,6623803284297315],[1572936,524680,6623801159997192,6623803284297315],[1572936,524736,-6623803284297315,-6623801159997192],[1572936,525448,-24519908352868090,-24519904404604862],[1572936,525504,-3950606995955408,-3950603043454752],[1572936,655496,-49039814989147174,-49039810525798726],[1572936,655552,35792206070739152,35792210555617732],[1572936,1048584,-4648502614033929,-4648496810555499],[1572936,1048640,15920798744910351,15920804548563011],[1572936,1048714,17896101912222451,17896106400955991],[1572936,1048716,6623801159997192,6623803284297315],[1572936,1048770,-17896106400955991,-17896101912222451],[1572936,1048772,-6623803284297315,-6623801159997192],[1572936,1048968,-6623803284297315,-6623801159997192],[1572936,1049024,6623801159997192,6623803284297315],[1572936,1049736,-3950606995955408,-3950603043454752],[1572936,1049792,-24519908352868090,-24519904404604862],[1572936,1179784,35792206070739152,35792210555617732],[1572936,1179840,-49039814989147174,-49039810525798726],[1572936,1572864,11272301474344213,11272302394539721],[1572936,1572936,22544602948688426,22544604789079442],[1572936,1574016,-49039814917723134,-49039810597222762],[1572936,1574088,-77510327129120619,-77510321182708389],[1572936,1704064,24519905292829456,24519907464643493],[1572936,1704136,11272300226701508,11272303642182425],[1572936,2097280,-24519907464643493,-24519905292829456],[1572936,2097352,-24519907464643493,-24519905292829456],[1572936,3670144,-24519907464643493,-24519905292829456],[1572936,3670216,-24519907464643493,-24519905292829456],[1572936,134217856,-24519907464403207,-24519905293069738],[1572936,134217928,-24519907464403207,-24519905293069738],[1572936,135790720,-24519907464403207,-24519905293069738],[1572936,135790792,-24519907464403207,-24519905293069738],[1572936,268435584,24519905293069738,24519907464403207],[1572936,268435656,24519905293069738,24519907464403207],[1572936,270008448,24519905293069738,24519907464403207],[1572936,270008520,24519905293069738,24519907464403207],[1572993,524299,-13247605066155522,-13247603822433492],[1572993,524301,1975301917236486,1975303102468593],[1572993,524355,4648499087034444,4648500337554984],[1572993,524426,13247603822433492,13247605066155522],[1572993,524428,-1975303102468593,-1975301917236486],[1572993,524482,-4648500337554984,-4648499087034444],[1572993,1048587,13247603822433492,13247605066155522],[1572993,1048589,-1975303102468593,-1975301917236486],[1572993,1048643,-4648500337554984,-4648499087034444],[1572993,1048714,-13247605066155522,-13247603822433492],[1572993,1048716,1975301917236486,1975303102468593],[1572993,1048770,4648499087034444,4648500337554984],[1572994,1032,45089206505908288,45089208969627452],[1572994,1088,3950603780638034,3950606258772122],[1572994,1162,49039811037266288,49039814477679612],[1572994,1218,28470509674673669,28470513122209439],[1572994,131080,-22544604485915178,-22544603251852693],[1572994,131136,-1975303134066535,-1975301885638543],[1572994,131210,-20569302600800082,-20569300117262707],[1572994,131266,-1975303134066535,-1975301885638543],[1572994,524290,8599101150291472,8599108313708112],[1572994,524299,13247603822433492,13247605066155522],[1572994,524302,-1975303102468593,-1975301917236486],[1572994,524355,-4648500337554984,-4648499087034444],[1572994,524362,-8599108313708112,-8599101150291472],[1572994,524416,-8599108313708112,-8599101150291472],[1572994,524425,-13247605066155522,-13247603822433492],[1572994,524428,1975301917236486,1975303102468593],[1572994,524481,4648499087034444,4648500337554984],[1572994,524488,8599101150291472,8599108313708112],[1572994,524610,-1975303102468593,-1975301917236486],[1572994,524736,1975301917236486,1975303102468593],[1572994,525322,-15222909115368599,-15222904792925496],[1572994,525378,-17896106317239678,-17896101995938767],[1572994,525448,11272300873839524,11272302995044411],[1572994,525504,-6623803284297315,-6623801159997192],[1572994,655370,24519904596394939,24519908161078011],[1572994,655496,-26495210200067732,-26495207577110300],[1572994,1048578,-8599108313708112,-8599101150291472],[1572994,1048587,-13247605066155522,-13247603822433492],[1572994,1048590,1975301917236486,1975303102468593],[1572994,1048643,4648499087034444,4648500337554984],[1572994,1048650,8599101150291472,8599108313708112],[1572994,1048704,8599101150291472,8599108313708112],[1572994,1048713,13247603822433492,13247605066155522],[1572994,1048716,-1975303102468593,-1975301917236486],[1572994,1048769,-4648500337554984,-4648499087034444],[1572994,1048776,-8599108313708112,-8599101150291472],[1572994,1048898,1975301917236486,1975303102468593],[1572994,1049024,-1975303102468593,-1975301917236486],[1572994,1049610,11272300873839524,11272302995044411],[1572994,1049666,-6623803284297315,-6623801159997192],[1572994,1049736,-15222909115368599,-15222904792925496],[1572994,1049792,-17896106317239678,-17896101995938767],[1572994,1179658,-26495210200067732,-26495207577110300],[1572994,1179784,24519904596394939,24519908161078011],[1572994,1573896,49039811037266288,49039814477679612],[1572994,1573952,28470509674673669,28470513122209439],[1572994,1574026,45089206505908288,45089208969627452],[1572994,1574082,3950603780638034,3950606258772122],[1572994,1703944,-20569302600800082,-20569300117262707],[1572994,1704000,-1975303134066535,-1975301885638543],[1572994,1704074,-22544604485915178,-22544603251852693],[1572994,1704130,-1975303134066535,-1975301885638543],[1572994,2097160,22544603251852693,22544604485915178],[1572994,2097216,1975301885638543,1975303134066535],[1572994,2097290,22544603251852693,22544604485915178],[1572994,2097346,1975301885638543,1975303134066535],[1572994,3670024,22544603251852693,22544604485915178],[1572994,3670080,1975301885638543,1975303134066535],[1572994,3670154,22544603251852693,22544604485915178],[1572994,3670210,1975301885638543,1975303134066535],[1572994,134217736,22544603248067364,22544604489700504],[1572994,134217792,1975301889664154,1975303130040923],[1572994,134217866,22544603248067364,22544604489700504],[1572994,134217922,1975301889664154,1975303130040923],[1572994,135790600,22544603248067364,22544604489700504],[1572994,135790656,1975301889664154,1975303130040923],[1572994,135790730,22544603248067364,22544604489700504],[1572994,135790786,1975301889664154,1975303130040923],[1572994,268435464,-22544604489700504,-22544603248067364],[1572994,268435520,-1975303130040923,-1975301889664154],[1572994,268435594,-22544604489700504,-22544603248067364],[1572994,268435650,-1975303130040923,-1975301889664154],[1572994,270008328,-22544604489700504,-22544603248067364],[1572994,270008384,-1975303130040923,-1975301889664154],[1572994,270008458,-22544604489700504,-22544603248067364],[1572994,270008514,-1975303130040923,-1975301889664154],[1572996,1032,3950603827053960,3950606212356198],[1572996,1164,28470509817570824,28470512979312287],[1572996,131080,-1975303106832961,-1975301912872117],[1572996,131212,-1198509903,1198509906],[1572996,163972,22544603293425280,22544604444342592],[1572996,524292,-4648501315670959,-4648498108918473],[1572996,524301,-1975303102468593,-1975301917236486],[1572996,524302,13247603822433492,13247605066155522],[1572996,524364,-11272302995044411,-11272300873839524],[1572996,524416,4648498108918473,4648501315670959],[1572996,524425,1975301917236486,1975303102468593],[1572996,524426,-13247605066155522,-13247603822433492],[1572996,524488,11272300873839524,11272302995044411],[1572996,525324,-17896106200962633,-17896102112215810],[1572996,525448,-6623803231071470,-6623801213223040],[1572996,557068,-1975303111382023,-1975301908323058],[1572996,557192,1975301908323058,1975303111382023],[1572996,655372,24519904668878218,24519908088594729],[1572996,655496,-26495210150792412,-26495207626385616],[1572996,688132,-24519907414185673,-24519905343287280],[1572996,688256,1975301908323058,1975303111382023],[1572996,1048580,4648498108918473,4648501315670959],[1572996,1048589,1975301917236486,1975303102468593],[1572996,1048590,-13247605066155522,-13247603822433492],[1572996,1048652,11272300873839524,11272302995044411],[1572996,1048704,-4648501315670959,-4648498108918473],[1572996,1048713,-1975303102468593,-1975301917236486],[1572996,1048714,13247603822433492,13247605066155522],[1572996,1048776,-11272302995044411,-11272300873839524],[1572996,1049612,-6623803231071470,-6623801213223040],[1572996,1049736,-17896106200962633,-17896102112215810],[1572996,1081356,1975301908323058,1975303111382023],[1572996,1081480,-1975303111382023,-1975301908323058],[1572996,1179660,-26495210150792412,-26495207626385616],[1572996,1179784,24519904668878218,24519908088594729],[1572996,1212420,1975301908323058,1975303111382023],[1572996,1212544,-24519907414185673,-24519905343287280],[1572996,1573896,28470509817570824,28470512979312287],[1572996,1574028,3950603827053960,3950606212356198],[1572996,1703944,-1198509903,1198509906],[1572996,1704076,-1975303106832961,-1975301912872117],[1572996,1736704,22544603293425280,22544604444342592],[1572996,2097160,1975301912872117,1975303106832961],[1572996,2097292,1975301912872117,1975303106832961],[1572996,3670024,1975301912872117,1975303106832961],[1572996,3670156,1975301912872117,1975303106832961],[1572996,134217736,1975301917270118,1975303102434961],[1572996,134217868,1975301917270118,1975303102434961],[1572996,135790600,1975301917270118,1975303102434961],[1572996,135790732,1975301917270118,1975303102434961],[1572996,268435464,-1975303102434961,-1975301917270118],[1572996,268435596,-1975303102434961,-1975301917270118],[1572996,270008328,-1975303102434961,-1975301917270118],[1572996,270008460,-1975303102434961,-1975301917270118],[1573000,0,75535017304359926,75535025987764002],[1573000,136,49039808003270598,49039817511675298],[1573000,1026,-45089208969627452,-45089206505908288],[1573000,1028,-3950606212356198,-3950603827053960],[1573000,1088,47064508847957192,47064511647283630],[1573000,1162,-49039814477679612,-49039811037266288],[1573000,1164,-28470512979312287,-28470509817570824],[1573000,1224,22544602318599624,22544605419168246],[1573000,1416,13247603811716528,13247605076872486],[1573000,3208,13247603808044578,13247605080544438],[1573000,131074,22544603251852693,22544604485915178],[1573000,131076,1975301912872117,1975303106832961],[1573000,131136,-9297000663454110,-9296998185724745],[1573000,131210,20569300117262707,20569302600800082],[1573000,131212,-1198509906,1198509903],[1573000,131272,-22544604485915178,-22544603251852693],[1573000,132096,-69609119710487749,-69609108522520937],[1573000,132232,-47064513169575377,-47064507325665441],[1573000,163976,-22544604444342592,-22544603293425280],[1573000,524296,-245506516979052740,-245506452671352604],[1573000,524302,-11272302995044411,-11272300873839524],[1573000,524362,28470509608204269,28470513188678840],[1573000,524364,11272300873839524,11272302995044411],[1573000,524416,272001667572402980,272001719855180396],[1573000,524422,11272300873839524,11272302995044411],[1573000,524482,-28470513188678840,-28470509608204269],[1573000,524484,-11272302995044411,-11272300873839524],[1573000,525322,15222904792925496,15222909115368599],[1573000,525324,17896102112215810,17896106200962633],[1573000,525384,13247602285191671,13247606603397346],[1573000,525442,-11272302995044411,-11272300873839524],[1573000,525444,6623801213223040,6623803231071470],[1573000,525504,11272299936568599,11272303932315336],[1573000,525576,-26495209992202640,-26495207784975390],[1573000,525696,13247603822461068,13247605066127948],[1573000,527368,-26495210000373866,-26495207776804167],[1573000,527488,13247603817961795,13247605070627222],[1573000,655370,-37767513094879325,-37767508551182639],[1573000,655372,-22544606026397046,-22544601711370820],[1573000,655432,51015113006242213,51015117528408767],[1573000,655490,39742811531898000,39742815133869046],[1573000,655492,24519904668878218,24519908088594729],[1573000,655552,-37767513094879325,-37767508551182639],[1573000,656392,52990410196249260,52990425358106808],[1573000,656512,-75535026014509906,-75535017277614030],[1573000,688136,24519905343287280,24519907414185673],[1573000,688256,-1975303111382023,-1975301908323058],[1573000,1048584,272001667572402980,272001719855180396],[1573000,1048590,11272300873839524,11272302995044411],[1573000,1048650,-28470513188678840,-28470509608204269],[1573000,1048652,-11272302995044411,-11272300873839524],[1573000,1048704,-245506516979052740,-245506452671352604],[1573000,1048710,-11272302995044411,-11272300873839524],[1573000,1048770,28470509608204269,28470513188678840],[1573000,1048772,11272300873839524,11272302995044411],[1573000,1049610,-11272302995044411,-11272300873839524],[1573000,1049612,6623801213223040,6623803231071470],[1573000,1049672,11272299936568599,11272303932315336],[1573000,1049730,15222904792925496,15222909115368599],[1573000,1049732,17896102112215810,17896106200962633],[1573000,1049792,13247602285191671,13247606603397346],[1573000,1049864,13247603822461068,13247605066127948],[1573000,1049984,-26495209992202640,-26495207784975390],[1573000,1051656,13247603817961795,13247605070627222],[1573000,1051776,-26495210000373866,-26495207776804167],[1573000,1179658,39742811531898000,39742815133869046],[1573000,1179660,24519904668878218,24519908088594729],[1573000,1179720,-37767513094879325,-37767508551182639],[1573000,1179778,-37767513094879325,-37767508551182639],[1573000,1179780,-22544606026397046,-22544601711370820],[1573000,1179840,51015113006242213,51015117528408767],[1573000,1180680,-75535026014509906,-75535017277614030],[1573000,1180800,52990410196249260,52990425358106808],[1573000,1212424,-1975303111382023,-1975301908323058],[1573000,1212544,24519905343287280,24519907414185673],[1573000,1572864,49039808003270598,49039817511675298],[1573000,1573000,75535017304359926,75535025987764002],[1573000,1573890,-49039814477679612,-49039811037266288],[1573000,1573892,-28470512979312287,-28470509817570824],[1573000,1573952,22544602318599624,22544605419168246],[1573000,1574026,-45089208969627452,-45089206505908288],[1573000,1574028,-3950606212356198,-3950603827053960],[1573000,1574088,47064508847957192,47064511647283630],[1573000,1574144,13247603811716528,13247605076872486],[1573000,1575936,13247603808044578,13247605080544438],[1573000,1703938,20569300117262707,20569302600800082],[1573000,1703940,-1198509906,1198509903],[1573000,1704000,-22544604485915178,-22544603251852693],[1573000,1704074,22544603251852693,22544604485915178],[1573000,1704076,1975301912872117,1975303106832961],[1573000,1704136,-9297000663454110,-9296998185724745],[1573000,1704960,-47064513169575377,-47064507325665441],[1573000,1705096,-69609119710487749,-69609108522520937],[1573000,1736704,-22544604444342592,-22544603293425280],[1573000,2097154,-22544604485915178,-22544603251852693],[1573000,2097156,-1975303106832961,-1975301912872117],[1573000,2097216,22544603251852693,22544604485915178],[1573000,2097290,-22544604485915178,-22544603251852693],[1573000,2097292,-1975303106832961,-1975301912872117],[1573000,2097352,22544603251852693,22544604485915178],[1573000,2098176,1975301912872117,1975303106832961],[1573000,2098312,15222905730833912,15222908177460183],[1573000,2228224,-45089208980598784,-45089206494936958],[1573000,2228360,-18594000503636004,-18593997194721705],[1573000,2622472,-52990419988112860,-52990415566243210],[1573000,2622592,39742811597483621,39742815068283432],[1573000,2752520,-2231218224,2231218221],[1573000,2752640,-26495210008022388,-26495207769155642],[1573000,3146760,39742811597483621,39742815068283432],[1573000,3146880,-52990419988112860,-52990415566243210],[1573000,3276808,-26495210008022388,-26495207769155642],[1573000,3276928,-2231218224,2231218221],[1573000,3670018,-22544604485915178,-22544603251852693],[1573000,3670020,-1975303106832961,-1975301912872117],[1573000,3670080,22544603251852693,22544604485915178],[1573000,3670154,-22544604485915178,-22544603251852693],[1573000,3670156,-1975303106832961,-1975301912872117],[1573000,3670216,22544603251852693,22544604485915178],[1573000,3671040,15222905730833912,15222908177460183],[1573000,3671176,1975301912872117,1975303106832961],[1573000,3801088,-18594000503636004,-18593997194721705],[1573000,3801224,-45089208980598784,-45089206494936958],[1573000,67240072,-1975303142599947,-1975301877105131],[1573000,67764232,-11272303070687196,-11272300798196740],[1573000,67764352,13247603786922062,13247605101666952],[1573000,68288520,13247603786922062,13247605101666952],[1573000,68288640,-11272303070687196,-11272300798196740],[1573000,68812800,-1975303142599947,-1975301877105131],[1573000,134217730,-22544604489700504,-22544603248067364],[1573000,134217732,-1975303102434961,-1975301917270118],[1573000,134217792,22544603248067364,22544604489700504],[1573000,134217866,-22544604489700504,-22544603248067364],[1573000,134217868,-1975303102434961,-1975301917270118],[1573000,134217928,22544603248067364,22544604489700504],[1573000,134218752,1975301917270118,1975303102434961],[1573000,134218888,15222905739731186,15222908168562909],[1573000,134348800,-45089208971600236,-45089206503935504],[1573000,134348936,-18594000573832936,-18593997124524774],[1573000,134743048,-52990419959304000,-52990415595052060],[1573000,134743168,39742811621793198,39742815043973846],[1573000,134873096,-2193017775,2193017774],[1573000,134873216,-26495209977993164,-26495207799184865],[1573000,135267336,39742811621793198,39742815043973846],[1573000,135267456,-52990419959304000,-52990415595052060],[1573000,135397384,-26495209977993164,-26495207799184865],[1573000,135397504,-2193017775,2193017774],[1573000,135790594,-22544604489700504,-22544603248067364],[1573000,135790596,-1975303102434961,-1975301917270118],[1573000,135790656,22544603248067364,22544604489700504],[1573000,135790730,-22544604489700504,-22544603248067364],[1573000,135790732,-1975303102434961,-1975301917270118],[1573000,135790792,22544603248067364,22544604489700504],[1573000,135791616,15222905739731186,15222908168562909],[1573000,135791752,1975301917270118,1975303102434961],[1573000,135921664,-18594000573832936,-18593997124524774],[1573000,135921800,-45089208971600236,-45089206503935504],[1573000,136839176,-26495209977993164,-26495207799184865],[1573000,136839296,26495207799184865,26495209977993164],[1573000,137363464,26495207799184865,26495209977993164],[1573000,137363584,-26495209977993164,-26495207799184865],[1573000,268435458,22544603248067364,22544604489700504],[1573000,268435460,1975301917270118,1975303102434961],[1573000,268435520,-22544604489700504,-22544603248067364],[1573000,268435594,22544603248067364,22544604489700504],[1573000,268435596,1975301917270118,1975303102434961],[1573000,268435656,-22544604489700504,-22544603248067364],[1573000,268436480,-3950606237024947,-3950603802385214],[1573000,268436616,-1975303102434961,-1975301917270118],[1573000,268566528,31841601898078136,31841604688868588],[1573000,268566664,22544602310993060,22544605426774810],[1573000,268960776,51015113096137411,51015117438513567],[1573000,268960896,-52990419959304000,-52990415595052060],[1573000,269090824,-1975304733296088,-1975300286408991],[1573000,269090944,11272299869063941,11272303999819992],[1573000,269485064,-52990419959304000,-52990415595052060],[1573000,269485184,51015113096137411,51015117438513567],[1573000,269615112,11272299869063941,11272303999819992],[1573000,269615232,-1975304733296088,-1975300286408991],[1573000,270008322,22544603248067364,22544604489700504],[1573000,270008324,1975301917270118,1975303102434961],[1573000,270008384,-22544604489700504,-22544603248067364],[1573000,270008458,22544603248067364,22544604489700504],[1573000,270008460,1975301917270118,1975303102434961],[1573000,270008520,-22544604489700504,-22544603248067364],[1573000,270009344,-1975303102434961,-1975301917270118],[1573000,270009480,-3950606237024947,-3950603802385214],[1573000,270139392,22544602310993060,22544605426774810],[1573000,270139528,31841601898078136,31841604688868588],[1573000,271056904,26495207799184865,26495209977993164],[1573000,271057024,-26495209977993164,-26495207799184865],[1573000,271581192,-26495209977993164,-26495207799184865],[1573000,271581312,26495207799184865,26495209977993164],[1573000,403177480,28470509691254389,28470513105628714],[1573000,403177600,-28470513105628714,-28470509691254389],[1573000,403701768,-28470513105628714,-28470509691254389],[1573000,403701888,28470509691254389,28470513105628714],[1573003,524289,-13247605066155522,-13247603822433492],[1573003,524290,13247603822433492,13247605066155522],[1573003,524425,-13247605066155522,-13247603822433492],[1573003,524426,13247603822433492,13247605066155522],[1573003,1048577,13247603822433492,13247605066155522],[1573003,1048578,-13247605066155522,-13247603822433492],[1573003,1048713,13247603822433492,13247605066155522],[1573003,1048714,-13247605066155522,-13247603822433492],[1573005,524289,1975301917236486,1975303102468593],[1573005,524292,-1975303102468593,-1975301917236486],[1573005,524425,1975301917236486,1975303102468593],[1573005,524428,-1975303102468593,-1975301917236486],[1573005,1048577,-1975303102468593,-1975301917236486],[1573005,1048580,1975301917236486,1975303102468593],[1573005,1048713,-1975303102468593,-1975301917236486],[1573005,1048716,1975301917236486,1975303102468593],[1573006,524290,-1975303102468593,-1975301917236486],[1573006,524292,13247603822433492,13247605066155522],[1573006,524296,-11272302995044411,-11272300873839524],[1573006,524422,11272300873839524,11272302995044411],[1573006,524426,-13247605066155522,-13247603822433492],[1573006,524428,1975301917236486,1975303102468593],[1573006,1048578,1975301917236486,1975303102468593],[1573006,1048580,-13247605066155522,-13247603822433492],[1573006,1048584,11272300873839524,11272302995044411],[1573006,1048710,-11272302995044411,-11272300873839524],[1573006,1048714,13247603822433492,13247605066155522],[1573006,1048716,-1975303102468593,-1975301917236486],[1573056,1026,-3950606258772122,-3950603780638034],[1573056,1032,5925906124214463,5925908934900775],[1573056,1218,-28470513122209439,-28470509674673669],[1573056,1224,1975300950242052,1975304069463026],[1573056,131074,1975301885638543,1975303134066535],[1573056,131080,-1975303134066535,-1975301885638543],[1573056,131266,1975301885638543,1975303134066535],[1573056,131272,-1975303134066535,-1975301885638543],[1573056,131328,1975301917270118,1975303102434961],[1573056,131520,1975301917270118,1975303102434961],[1573056,132096,-3950606237024947,-3950603802385214],[1573056,132288,-1975303102434961,-1975301917270118],[1573056,524362,-19871408457912797,-19871404874970728],[1573056,524426,19871404874970728,19871408457912797],[1573056,524610,6623801159997192,6623803284297315],[1573056,524616,-6623803284297315,-6623801159997192],[1573056,524674,-6623803284297315,-6623801159997192],[1573056,524680,6623801159997192,6623803284297315],[1573056,525378,17896101995938767,17896106317239678],[1573056,525384,10574405079083164,10574409404621503],[1573056,525442,6623801159997192,6623803284297315],[1573056,525448,-6623804221568240,-6623800222726267],[1573056,656448,51015113096137411,51015117438513567],[1573056,656512,-52990419959304000,-52990415595052060],[1573056,1048650,19871404874970728,19871408457912797],[1573056,1048714,-19871408457912797,-19871404874970728],[1573056,1048898,-6623803284297315,-6623801159997192],[1573056,1048904,6623801159997192,6623803284297315],[1573056,1048962,6623801159997192,6623803284297315],[1573056,1048968,-6623803284297315,-6623801159997192],[1573056,1049666,6623801159997192,6623803284297315],[1573056,1049672,-6623804221568240,-6623800222726267],[1573056,1049730,17896101995938767,17896106317239678],[1573056,1049736,10574405079083164,10574409404621503],[1573056,1180736,-52990419959304000,-52990415595052060],[1573056,1180800,51015113096137411,51015117438513567],[1573056,1573890,-28470513122209439,-28470509674673669],[1573056,1573896,1975300950242052,1975304069463026],[1573056,1574082,-3950606258772122,-3950603780638034],[1573056,1574088,5925906124214463,5925908934900775],[1573056,1703938,1975301885638543,1975303134066535],[1573056,1703944,-1975303134066535,-1975301885638543],[1573056,1704130,1975301885638543,1975303134066535],[1573056,1704136,-1975303134066535,-1975301885638543],[1573056,1704192,1975301917270118,1975303102434961],[1573056,1704384,1975301917270118,1975303102434961],[1573056,1704960,-1975303102434961,-1975301917270118],[1573056,1705152,-3950606237024947,-3950603802385214],[1573056,2097154,-1975303134066535,-1975301885638543],[1573056,2097160,1975301885638543,1975303134066535],[1573056,2097346,-1975303134066535,-1975301885638543],[1573056,2097352,1975301885638543,1975303134066535],[1573056,2752576,26495207798821558,26495209978356470],[1573056,2752640,-26495209978356470,-26495207798821558],[1573056,3276864,-26495209978356470,-26495207798821558],[1573056,3276928,26495207798821558,26495209978356470],[1573056,3670018,-1975303134066535,-1975301885638543],[1573056,3670024,1975301885638543,1975303134066535],[1573056,3670210,-1975303134066535,-1975301885638543],[1573056,3670216,1975301885638543,1975303134066535],[1573056,134217730,-1975303130040923,-1975301889664154],[1573056,134217736,1975301889664154,1975303130040923],[1573056,134217922,-1975303130040923,-1975301889664154],[1573056,134217928,1975301889664154,1975303130040923],[1573056,134873152,26495207799425147,26495209977752878],[1573056,134873216,-26495209977752878,-26495207799425147],[1573056,135397440,-26495209977752878,-26495207799425147],[1573056,135397504,26495207799425147,26495209977752878],[1573056,135790594,-1975303130040923,-1975301889664154],[1573056,135790600,1975301889664154,1975303130040923],[1573056,135790786,-1975303130040923,-1975301889664154],[1573056,135790792,1975301889664154,1975303130040923],[1573056,268435458,1975301889664154,1975303130040923],[1573056,268435464,-1975303130040923,-1975301889664154],[1573056,268435650,1975301889664154,1975303130040923],[1573056,268435656,-1975303130040923,-1975301889664154],[1573056,269090880,-26495209977752878,-26495207799425147],[1573056,269090944,26495207799425147,26495209977752878],[1573056,269615168,26495207799425147,26495209977752878],[1573056,269615232,-26495209977752878,-26495207799425147],[1573056,270008322,1975301889664154,1975303130040923],[1573056,270008328,-1975303130040923,-1975301889664154],[1573056,270008514,1975301889664154,1975303130040923],[1573056,270008520,-1975303130040923,-1975301889664154],[1573059,524289,4648499087034444,4648500337554984],[1573059,524290,-4648500337554984,-4648499087034444],[1573059,524481,4648499087034444,4648500337554984],[1573059,524482,-4648500337554984,-4648499087034444],[1573059,1048577,-4648500337554984,-4648499087034444],[1573059,1048578,4648499087034444,4648500337554984],[1573059,1048769,-4648500337554984,-4648499087034444],[1573059,1048770,4648499087034444,4648500337554984],[1573066,524290,22544601272808088,22544606464959780],[1573066,524296,3950603721653790,3950606317756372],[1573066,524352,-26495210186613570,-26495207590564460],[1573066,524426,26495207590564460,26495210186613570],[1573066,524482,-3950606317756372,-3950603721653790],[1573066,524488,-22544606464959780,-22544601272808088],[1573066,1048578,-22544606464959780,-22544601272808088],[1573066,1048584,-3950606317756372,-3950603721653790],[1573066,1048640,26495207590564460,26495210186613570],[1573066,1048714,-26495210186613570,-26495207590564460],[1573066,1048770,3950603721653790,3950606317756372],[1573066,1048776,22544601272808088,22544606464959780],[1573068,524292,-4648500337554984,-4648499087034444],[1573068,524296,4648499087034444,4648500337554984],[1573068,524484,-4648500337554984,-4648499087034444],[1573068,524488,4648499087034444,4648500337554984],[1573068,1048580,4648499087034444,4648500337554984],[1573068,1048584,-4648500337554984,-4648499087034444],[1573068,1048772,4648499087034444,4648500337554984],[1573068,1048776,-4648500337554984,-4648499087034444],[1573128,1152,66238019708364176,66238024734580898],[1573128,132096,13247603822461068,13247605066127948],[1573128,524488,-6623803284297315,-6623801159997192],[1573128,524736,6623801159997192,6623803284297315],[1573128,525448,17198204925419946,17198214002579226],[1573128,525696,49039810732001672,49039814782944230],[1573128,656392,13247603822461068,13247605066127948],[1573128,1048776,6623801159997192,6623803284297315],[1573128,1049024,-6623803284297315,-6623801159997192],[1573128,1049736,49039810732001672,49039814782944230],[1573128,1049984,17198204925419946,17198214002579226],[1573128,1180928,13247603822461068,13247605066127948],[1573128,1574280,66238019708364176,66238024734580898],[1573128,1705224,13247603822461068,13247605066127948],[1573248,1032,-39742815043973846,-39742811621793198],[1573248,131136,-1975303102434961,-1975301917270118],[1573248,131520,-1975303102434961,-1975301917270118],[1573248,132096,-7321700200255013,-7321693629218766],[1573248,132480,-47064511822048211,-47064508673192612],[1573248,524482,4648499087034444,4648500337554984],[1573248,524488,-6623803284297315,-6623801159997192],[1573248,524610,-4648500337554984,-4648499087034444],[1573248,524616,6623801159997192,6623803284297315],[1573248,525448,11272298183630328,11272305685253609],[1573248,525576,-51015117307046807,-51015113227604174],[1573248,656512,39742811621793198,39742815043973846],[1573248,1048770,-4648500337554984,-4648499087034444],[1573248,1048776,6623801159997192,6623803284297315],[1573248,1048898,4648499087034444,4648500337554984],[1573248,1048904,-6623803284297315,-6623801159997192],[1573248,1049736,-51015117307046807,-51015113227604174],[1573248,1049864,11272298183630328,11272305685253609],[1573248,1180928,39742811621793198,39742815043973846],[1573248,1574280,-39742815043973846,-39742811621793198],[1573248,1704000,-1975303102434961,-1975301917270118],[1573248,1704384,-1975303102434961,-1975301917270118],[1573248,1704960,-47064511822048211,-47064508673192612],[1573248,1705344,-7321700200255013,-7321693629218766],[1573314,524290,-1975303102468593,-1975301917236486],[1573314,524352,6623801159997192,6623803284297315],[1573314,524482,4648499087034444,4648500337554984],[1573314,524544,-4648500337554984,-4648499087034444],[1573314,524674,-6623803284297315,-6623801159997192],[1573314,524736,1975301917236486,1975303102468593],[1573314,1048578,1975301917236486,1975303102468593],[1573314,1048640,-6623803284297315,-6623801159997192],[1573314,1048770,-4648500337554984,-4648499087034444],[1573314,1048832,4648499087034444,4648500337554984],[1573314,1048962,6623801159997192,6623803284297315],[1573314,1049024,-1975303102468593,-1975301917236486],[1573320,524352,-13247605066155522,-13247603822433492],[1573320,524488,-13247605066155522,-13247603822433492],[1573320,524544,13247603822433492,13247605066155522],[1573320,524680,13247603822433492,13247605066155522],[1573320,1048640,13247603822433492,13247605066155522],[1573320,1048776,13247603822433492,13247605066155522],[1573320,1048832,-13247605066155522,-13247603822433492],[1573320,1048968,-13247605066155522,-13247603822433492],[1573890,1162,-49039814477679612,-49039811037266288],[1573890,1218,-28470513122209439,-28470509674673669],[1573890,132106,-1975303134589986,-1975301885115096],[1573890,524426,37767509188400696,37767512457661269],[1573890,524482,19871405028479484,19871408304404039],[1573890,524610,-1975303102468593,-1975301917236486],[1573890,525448,11272298579605019,11272305289278916],[1573890,525504,8599101370269630,8599108093729955],[1573890,525632,1975301917236486,1975303102468593],[1573890,656392,1975301885115096,1975303134589986],[1573890,1048714,11272298579605019,11272305289278916],[1573890,1048770,8599101370269630,8599108093729955],[1573890,1048898,1975301917236486,1975303102468593],[1573890,1049736,37767509188400696,37767512457661269],[1573890,1049792,19871405028479484,19871408304404039],[1573890,1049920,-1975303102468593,-1975301917236486],[1573890,1179658,1975301885115096,1975303134589986],[1573890,1573000,-49039814477679612,-49039811037266288],[1573890,1573056,-28470513122209439,-28470509674673669],[1573890,1703944,-1975303134589986,-1975301885115096],[1573892,1164,-28470512979312287,-28470509817570824],[1573892,132108,-1975303111382023,-1975301908323058],[1573892,164868,-22544604444342592,-22544603293425280],[1573892,524428,19871405230482798,19871408102400732],[1573892,525448,8599101715170092,8599107748829489],[1573892,656392,1975301908323058,1975303111382023],[1573892,689152,22544603293425280,22544604444342592],[1573892,1048716,8599101715170092,8599107748829489],[1573892,1049736,19871405230482798,19871408102400732],[1573892,1179660,1975301908323058,1975303111382023],[1573892,1212420,22544603293425280,22544604444342592],[1573892,1573000,-28470512979312287,-28470509817570824],[1573892,1703944,-1975303111382023,-1975301908323058],[1573892,1736704,-22544604444342592,-22544603293425280],[1573896,0,33237389689794910,33237395667510356],[1573896,384,-39742815043973846,-39742811621793198],[1573896,1032,22544597683462214,22544610054305668],[1573896,1162,49039811037266288,49039814477679612],[1573896,1164,28470509817570824,28470512979312287],[1573896,1224,1975300950242052,1975304069463026],[1573896,2176,-39742815068283432,-39742811597483621],[1573896,131200,20569298570795129,20569304147267651],[1573896,131328,-13247605066127948,-13247603822461068],[1573896,132106,1975301885115096,1975303134589986],[1573896,132108,1975301908323058,1975303111382023],[1573896,132232,43113898635137411,43113911820693235],[1573896,133120,-13247605070627222,-13247603817961795],[1573896,164872,22544603293425280,22544604444342592],[1573896,524296,-12549714288599261,-12549705214810465],[1573896,524426,-37767512457661269,-37767509188400696],[1573896,524428,-19871408102400732,-19871405230482798],[1573896,524488,-13247605939232943,-13247602949356073],[1573896,524680,11272298183630328,11272305685253609],[1573896,525312,23242489006570695,23242508116376415],[1573896,525442,-11272305289278916,-11272298579605019],[1573896,525444,-8599107748829489,-8599101715170092],[1573896,525504,11272298879893047,11272304988990891],[1573896,525696,-51015117307046807,-51015113227604174],[1573896,526472,11272298134922261,11272305733961656],[1573896,527488,-51015117331445277,-51015113203205693],[1573896,655496,-75535024800832972,-75535018491290962],[1573896,655624,-13247605066127948,-13247603822461068],[1573896,656386,-1975303134589986,-1975301885115096],[1573896,656388,-1975303111382023,-1975301908323058],[1573896,656512,52990410196249260,52990425358106808],[1573896,657416,-13247605070627222,-13247603817961795],[1573896,689152,-22544604444342592,-22544603293425280],[1573896,1048584,23242489006570695,23242508116376415],[1573896,1048714,-11272305289278916,-11272298579605019],[1573896,1048716,-8599107748829489,-8599101715170092],[1573896,1048776,11272298879893047,11272304988990891],[1573896,1048968,-51015117307046807,-51015113227604174],[1573896,1049600,-12549714288599261,-12549705214810465],[1573896,1049730,-37767512457661269,-37767509188400696],[1573896,1049732,-19871408102400732,-19871405230482798],[1573896,1049792,-13247605939232943,-13247602949356073],[1573896,1049984,11272298183630328,11272305685253609],[1573896,1050760,-51015117331445277,-51015113203205693],[1573896,1051776,11272298134922261,11272305733961656],[1573896,1179658,-1975303134589986,-1975301885115096],[1573896,1179660,-1975303111382023,-1975301908323058],[1573896,1179784,52990410196249260,52990425358106808],[1573896,1180800,-75535024800832972,-75535018491290962],[1573896,1180928,-13247605066127948,-13247603822461068],[1573896,1182720,-13247605070627222,-13247603817961795],[1573896,1212424,-22544604444342592,-22544603293425280],[1573896,1572864,22544597683462214,22544610054305668],[1573896,1572994,49039811037266288,49039814477679612],[1573896,1572996,28470509817570824,28470512979312287],[1573896,1573056,1975300950242052,1975304069463026],[1573896,1573896,33237389689794910,33237395667510356],[1573896,1574280,-39742815043973846,-39742811621793198],[1573896,1576072,-39742815068283432,-39742811597483621],[1573896,1703938,1975301885115096,1975303134589986],[1573896,1703940,1975301908323058,1975303111382023],[1573896,1704064,43113898635137411,43113911820693235],[1573896,1705096,20569298570795129,20569304147267651],[1573896,1705224,-13247605066127948,-13247603822461068],[1573896,1707016,-13247605070627222,-13247603817961795],[1573896,1736704,22544603293425280,22544604444342592],[1573896,2097280,-7321700242729086,-7321693586744675],[1573896,2098312,-47064511840212707,-47064508655028107],[1573896,2228224,13247603817961795,13247605070627222],[1573896,2621576,39742811597483621,39742815068283432],[1573896,2752520,13247603817961795,13247605070627222],[1573896,3146880,39742811597483621,39742815068283432],[1573896,3277824,13247603817961795,13247605070627222],[1573896,3670144,-47064511840212707,-47064508655028107],[1573896,3671176,-7321700242729086,-7321693586744675],[1573896,3802120,13247603817961795,13247605070627222],[1573896,67240968,1975301877105131,1975303142599947],[1573896,67765248,-1975303142599947,-1975301877105131],[1573896,68288520,-1975303142599947,-1975301877105131],[1573896,68812800,1975301877105131,1975303142599947],[1573896,134217856,-7321700200255013,-7321693629218766],[1573896,134218888,-47064511822048211,-47064508673192612],[1573896,134348800,13247603822461068,13247605066127948],[1573896,134742152,39742811621793198,39742815043973846],[1573896,134873096,13247603822461068,13247605066127948],[1573896,135267456,39742811621793198,39742815043973846],[1573896,135398400,13247603822461068,13247605066127948],[1573896,135790720,-47064511822048211,-47064508673192612],[1573896,135791752,-7321700200255013,-7321693629218766],[1573896,135922696,13247603822461068,13247605066127948],[1573896,268435584,47064508673192612,47064511822048211],[1573896,268436616,-3950608765320955,-3950601274089200],[1573896,268567560,-3950606120324188,-3950603919085972],[1573896,268960896,51015113096137411,51015117438513567],[1573896,269091840,3950603919085972,3950606120324188],[1573896,269484168,51015113096137411,51015117438513567],[1573896,269615112,3950603919085972,3950606120324188],[1573896,270008448,-3950608765320955,-3950601274089200],[1573896,270009480,47064508673192612,47064511822048211],[1573896,270139392,-3950606120324188,-3950603919085972],[1573952,1218,28470509674673669,28470513122209439],[1573952,1224,22544602318599624,22544605419168246],[1573952,131200,47064508673192612,47064511822048211],[1573952,131328,1975301917270118,1975303102434961],[1573952,132288,-3950608765320955,-3950601274089200],[1573952,132416,1975301917270118,1975303102434961],[1573952,524482,-19871408304404039,-19871405028479484],[1573952,524488,-31143710097437046,-31143707104330412],[1573952,524610,1975301917236486,1975303102468593],[1573952,525442,-8599108093729955,-8599101370269630],[1573952,525448,8599101685162166,8599107778837422],[1573952,525570,-1975303102468593,-1975301917236486],[1573952,656512,51015113096137411,51015117438513567],[1573952,1048770,-8599108093729955,-8599101370269630],[1573952,1048776,8599101685162166,8599107778837422],[1573952,1048898,-1975303102468593,-1975301917236486],[1573952,1049730,-19871408304404039,-19871405028479484],[1573952,1049736,-31143710097437046,-31143707104330412],[1573952,1049858,1975301917236486,1975303102468593],[1573952,1179840,51015113096137411,51015117438513567],[1573952,1572994,28470509674673669,28470513122209439],[1573952,1573000,22544602318599624,22544605419168246],[1573952,1704064,-3950608765320955,-3950601274089200],[1573952,1704192,1975301917270118,1975303102434961],[1573952,1705152,47064508673192612,47064511822048211],[1573952,1705280,1975301917270118,1975303102434961],[1574016,264,26495207648534336,26495210128643692],[1574016,1224,-49039814917723134,-49039810597222762],[1574016,2056,26495207628724032,26495210148454004],[1574016,131080,-45089208874918688,-45089206600617048],[1574016,131136,-45089208861152192,-45089206614383552],[1574016,131328,18593996485739860,18594001212617856],[1574016,132232,-4276638122,4276638132],[1574016,132288,3950601736070570,3950608303339582],[1574016,132480,45089206614383552,45089208861152192],[1574016,133120,18593996452163044,18594001246194656],[1574016,134272,45089206600617048,45089208874918688],[1574016,524488,52990415723206676,52990419831149384],[1574016,524680,-26495212182615048,-26495205594562984],[1574016,525384,-3950609233926622,-3950600805483542],[1574016,525576,52990415723206676,52990419831149384],[1574016,526472,-26495212228659796,-26495205548518216],[1574016,527368,52990415696972220,52990419857383828],[1574016,655744,-26495210128643692,-26495207648534336],[1574016,656392,-45089210877255180,-45089204598280566],[1574016,656448,-49039814917723134,-49039810597222762],[1574016,657536,-26495210148454004,-26495207628724032],[1574016,1048776,-3950609233926622,-3950600805483542],[1574016,1048968,52990415723206676,52990419831149384],[1574016,1049672,52990415723206676,52990419831149384],[1574016,1049864,-26495212182615048,-26495205594562984],[1574016,1050760,52990415696972220,52990419857383828],[1574016,1051656,-26495212228659796,-26495205548518216],[1574016,1179784,-45089210877255180,-45089204598280566],[1574016,1179840,-49039814917723134,-49039810597222762],[1574016,1180928,-26495210128643692,-26495207648534336],[1574016,1182720,-26495210148454004,-26495207628724032],[1574016,1572936,-49039814917723134,-49039810597222762],[1574016,1574280,26495207648534336,26495210128643692],[1574016,1576072,26495207628724032,26495210148454004],[1574016,1703944,-4276638122,4276638132],[1574016,1704000,3950601736070570,3950608303339582],[1574016,1704192,45089206614383552,45089208861152192],[1574016,1705096,-45089208874918688,-45089206600617048],[1574016,1705152,-45089208861152192,-45089206614383552],[1574016,1705344,18593996485739860,18594001212617856],[1574016,1705984,45089206600617048,45089208874918688],[1574016,1707136,18593996452163044,18594001246194656],[1574016,2097160,18593996452163044,18594001246194656],[1574016,2098312,45089206600617048,45089208874918688],[1574016,2228224,26495207628724032,26495210148454004],[1574016,2621576,-26495210148454004,-26495207628724032],[1574016,2752640,-26495212228659796,-26495205548518216],[1574016,2753536,52990415696972220,52990419857383828],[1574016,3146760,-26495210148454004,-26495207628724032],[1574016,3276928,52990415696972220,52990419857383828],[1574016,3277824,-26495212228659796,-26495205548518216],[1574016,3670024,45089206600617048,45089208874918688],[1574016,3671176,18593996452163044,18594001246194656],[1574016,3802240,26495207628724032,26495210148454004],[1574016,134217736,18593996485739860,18594001212617856],[1574016,134218888,45089206614383552,45089208861152192],[1574016,134348800,26495207648534336,26495210128643692],[1574016,134742152,-26495210128643692,-26495207648534336],[1574016,134873216,-26495212182615048,-26495205594562984],[1574016,134874112,52990415723206676,52990419831149384],[1574016,135267336,-26495210128643692,-26495207648534336],[1574016,135397504,52990415723206676,52990419831149384],[1574016,135398400,-26495212182615048,-26495205594562984],[1574016,135790600,45089206614383552,45089208861152192],[1574016,135791752,18593996485739860,18594001212617856],[1574016,135922816,26495207648534336,26495210128643692],[1574016,268435464,-45089208861152192,-45089206614383552],[1574016,268436616,3950601736070570,3950608303339582],[1574016,268567680,-49039814917723134,-49039810597222762],[1574016,268960776,-49039814917723134,-49039810597222762],[1574016,269090944,52990415723206676,52990419831149384],[1574016,269091840,-3950609233926622,-3950600805483542],[1574016,269484168,-49039814917723134,-49039810597222762],[1574016,269615232,-3950609233926622,-3950600805483542],[1574016,269616128,52990415723206676,52990419831149384],[1574016,270008328,3950601736070570,3950608303339582],[1574016,270009480,-45089208861152192,-45089206614383552],[1574016,270139392,-49039814917723134,-49039810597222762],[1574026,1026,-45089208969627452,-45089206505908288],[1574026,1032,45089206505908288,45089208969627452],[1574026,524290,26495207710771912,26495210066406118],[1574026,524296,-26495210066406118,-26495207710771912],[1574026,525442,-18594001258855540,-18593996439502170],[1574026,525448,18593996439502170,18594001258855540],[1574026,1048578,18593996439502170,18594001258855540],[1574026,1048584,-18594001258855540,-18593996439502170],[1574026,1049730,-26495210066406118,-26495207710771912],[1574026,1049736,26495207710771912,26495210066406118],[1574026,1572994,45089206505908288,45089208969627452],[1574026,1573000,-45089208969627452,-45089206505908288],[1574028,1028,-3950606212356198,-3950603827053960],[1574028,1032,3950603827053960,3950606212356198],[1574028,524292,26495207753551168,26495210023626872],[1574028,524296,-26495210023626872,-26495207753551168],[1574028,525444,22544601541194970,22544606196572912],[1574028,525448,-22544606196572912,-22544601541194970],[1574028,1048580,-22544606196572912,-22544601541194970],[1574028,1048584,22544601541194970,22544606196572912],[1574028,1049732,-26495210023626872,-26495207753551168],[1574028,1049736,26495207753551168,26495210023626872],[1574028,1572996,3950603827053960,3950606212356198],[1574028,1573000,-3950606212356198,-3950603827053960],[1574082,1026,-3950606258772122,-3950603780638034],[1574082,1088,3950603780638034,3950606258772122],[1574082,524290,26495207710839176,26495210066338854],[1574082,524352,-26495210066338854,-26495207710839176],[1574082,525442,22544601452067054,22544606285700820],[1574082,525504,-22544606285700820,-22544601452067054],[1574082,1048578,-22544606285700820,-22544601452067054],[1574082,1048640,22544601452067054,22544606285700820],[1574082,1049730,-26495210066338854,-26495207710839176],[1574082,1049792,26495207710839176,26495210066338854],[1574082,1572994,3950603780638034,3950606258772122],[1574082,1573056,-3950606258772122,-3950603780638034],[1574088,1032,5925906124214463,5925908934900775],[1574088,1088,47064508847957192,47064511647283630],[1574088,1152,-77510327129120619,-77510321182708389],[1574088,1224,-24519907169816619,-24519905587656329],[1574088,524296,-24519907697962539,-24519905059510412],[1574088,524352,-24519907696178166,-24519905061294785],[1574088,524416,57638914684866570,57638920294078918],[1574088,524488,8599103952864898,8599105511134688],[1574088,525312,15920800076521641,15920803216951721],[1574088,525384,19871400888629471,19871412444254049],[1574088,525448,-22544606585988845,-22544601151779026],[1574088,525504,18593996124609637,18594001573748076],[1574088,1048584,18593996124609637,18594001573748076],[1574088,1048640,-22544606585988845,-22544601151779026],[1574088,1048704,19871400888629471,19871412444254049],[1574088,1048776,15920800076521641,15920803216951721],[1574088,1049600,8599103952864898,8599105511134688],[1574088,1049672,57638914684866570,57638920294078918],[1574088,1049736,-24519907696178166,-24519905061294785],[1574088,1049792,-24519907697962539,-24519905059510412],[1574088,1572864,-24519907169816619,-24519905587656329],[1574088,1572936,-77510327129120619,-77510321182708389],[1574088,1573000,47064508847957192,47064511647283630],[1574088,1573056,5925906124214463,5925908934900775],[1574144,1416,13247603811716528,13247605076872486],[1574144,131136,-1975303102434961,-1975301917270118],[1574144,131200,1975301917270118,1975303102434961],[1574144,131584,-1975303134066535,-1975301885638543],[1574144,132416,-1975303102434961,-1975301917270118],[1574144,132480,15222905739731186,15222908168562909],[1574144,132864,-1975303134066535,-1975301885638543],[1574144,133120,1975301885638543,1975303134066535],[1574144,134400,1975301885638543,1975303134066535],[1574144,524680,13247603822461068,13247605066127948],[1574144,525448,-26495209992202640,-26495207784975390],[1574144,655744,39742811621793198,39742815043973846],[1574144,656512,-52990419959304000,-52990415595052060],[1574144,1048968,-26495209992202640,-26495207784975390],[1574144,1049736,13247603822461068,13247605066127948],[1574144,1180032,-52990419959304000,-52990415595052060],[1574144,1180800,39742811621793198,39742815043973846],[1574144,1573000,13247603811716528,13247605076872486],[1574144,1704000,-1975303102434961,-1975301917270118],[1574144,1704064,15222905739731186,15222908168562909],[1574144,1704448,-1975303134066535,-1975301885638543],[1574144,1705280,-1975303102434961,-1975301917270118],[1574144,1705344,1975301917270118,1975303102434961],[1574144,1705728,-1975303134066535,-1975301885638543],[1574144,1705984,1975301885638543,1975303134066535],[1574144,1707264,1975301885638543,1975303134066535],[1574144,2752768,-26495209978356470,-26495207798821558],[1574144,2753536,26495207798821558,26495209978356470],[1574144,3277056,26495207798821558,26495209978356470],[1574144,3277824,-26495209978356470,-26495207798821558],[1574144,134873344,-26495209977752878,-26495207799425147],[1574144,134874112,26495207799425147,26495209977752878],[1574144,135397632,26495207799425147,26495209977752878],[1574144,135398400,-26495209977752878,-26495207799425147],[1574144,269091072,26495207799425147,26495209977752878],[1574144,269091840,-26495209977752878,-26495207799425147],[1574144,269615360,-26495209977752878,-26495207799425147],[1574144,269616128,26495207799425147,26495209977752878],[1574210,524290,-1975303102468593,-1975301917236486],[1574210,524352,1975301917236486,1975303102468593],[1574210,525570,-1975303102468593,-1975301917236486],[1574210,525632,1975301917236486,1975303102468593],[1574210,1048578,1975301917236486,1975303102468593],[1574210,1048640,-1975303102468593,-1975301917236486],[1574210,1049858,1975301917236486,1975303102468593],[1574210,1049920,-1975303102468593,-1975301917236486],[1574280,264,26495207648534336,26495210128643692],[1574280,384,-39742815043973846,-39742811621793198],[1574280,1032,-39742815043973846,-39742811621793198],[1574280,1152,66238019708364176,66238024734580898],[1574280,1416,13247603811716528,13247605076872486],[1574280,524296,1975301917236486,1975303102468593],[1574280,524416,-1975303102468593,-1975301917236486],[1574280,524544,11272300719992475,11272303148891462],[1574280,524680,-1975303102468593,-1975301917236486],[1574280,525312,-24519908074966154,-24519904682506797],[1574280,525448,1975301917236486,1975303102468593],[1574280,525576,-24519908074966154,-24519904682506797],[1574280,525696,11272300719992475,11272303148891462],[1574280,1048584,11272300719992475,11272303148891462],[1574280,1048704,-24519908074966154,-24519904682506797],[1574280,1048832,1975301917236486,1975303102468593],[1574280,1048968,-24519908074966154,-24519904682506797],[1574280,1049600,-1975303102468593,-1975301917236486],[1574280,1049736,11272300719992475,11272303148891462],[1574280,1049864,-1975303102468593,-1975301917236486],[1574280,1049984,1975301917236486,1975303102468593],[1574280,1572864,13247603811716528,13247605076872486],[1574280,1573128,66238019708364176,66238024734580898],[1574280,1573248,-39742815043973846,-39742811621793198],[1574280,1573896,-39742815043973846,-39742811621793198],[1574280,1574016,26495207648534336,26495210128643692],[1574400,131328,1975301885638543,1975303134066535],[1574400,132864,1975301885638543,1975303134066535],[1574400,133120,22544603251852693,22544604485915178],[1574400,134656,22544603251852693,22544604485915178],[1574400,1704192,1975301885638543,1975303134066535],[1574400,1705728,1975301885638543,1975303134066535],[1574400,1705984,22544603251852693,22544604485915178],[1574400,1707520,22544603251852693,22544604485915178],[1574920,1152,66238019675883376,66238024767061710],[1574920,132096,13247603817961795,13247605070627222],[1574920,525448,17198204870376650,17198214057622544],[1574920,527488,49039810709439166,49039814805506726],[1574920,656392,13247603817961795,13247605070627222],[1574920,1049736,49039810709439166,49039814805506726],[1574920,1051776,17198204870376650,17198214057622544],[1574920,1182720,13247603817961795,13247605070627222],[1574920,1576072,66238019675883376,66238024767061710],[1574920,1707016,13247603817961795,13247605070627222],[1574920,2097280,13247603817961795,13247605070627222],[1574920,2228224,13247603808044578,13247605080544438],[1574920,2621576,13247603817961795,13247605070627222],[1574920,2752520,13247603808044578,13247605080544438],[1574920,3147904,13247603817961795,13247605070627222],[1574920,3278848,13247603808044578,13247605080544438],[1574920,3672200,13247603817961795,13247605070627222],[1574920,3803144,13247603808044578,13247605080544438],[1575040,1032,-39742815068283432,-39742811597483621],[1575040,132096,-7321700242729086,-7321693586744675],[1575040,134272,-47064511840212707,-47064508655028107],[1575040,525448,11272298134922261,11272305733961656],[1575040,527368,-51015117331445277,-51015113203205693],[1575040,656512,39742811597483621,39742815068283432],[1575040,1049736,-51015117331445277,-51015113203205693],[1575040,1051656,11272298134922261,11272305733961656],[1575040,1182720,39742811597483621,39742815068283432],[1575040,1576072,-39742815068283432,-39742811597483621],[1575040,1704960,-47064511840212707,-47064508655028107],[1575040,1707136,-7321700242729086,-7321693586744675],[1575040,2097160,-13247605070627222,-13247603817961795],[1575040,2228224,13247603817961795,13247605070627222],[1575040,2621576,-13247605070627222,-13247603817961795],[1575040,2752640,13247603817961795,13247605070627222],[1575040,3147784,-13247605070627222,-13247603817961795],[1575040,3278848,13247603817961795,13247605070627222],[1575040,3672200,-13247605070627222,-13247603817961795],[1575040,3803264,13247603817961795,13247605070627222],[1575168,132096,-24519907464643493,-24519905292829456],[1575168,134400,-24519907464643493,-24519905292829456],[1575168,1704960,-24519907464643493,-24519905292829456],[1575168,1707264,-24519907464643493,-24519905292829456],[1575936,3208,13247603808044578,13247605080544438],[1575936,131200,1975301912872117,1975303106832961],[1575936,131328,22544603251852693,22544604485915178],[1575936,131584,-22544604485915178,-22544603251852693],[1575936,134272,15222905730833912,15222908177460183],[1575936,134400,22544603251852693,22544604485915178],[1575936,134656,-22544604485915178,-22544603251852693],[1575936,525448,-26495210000373866,-26495207776804167],[1575936,526472,13247603817961795,13247605070627222],[1575936,656512,-52990419988112860,-52990415566243210],[1575936,657536,39742811597483621,39742815068283432],[1575936,1049736,13247603817961795,13247605070627222],[1575936,1050760,-26495210000373866,-26495207776804167],[1575936,1180800,39742811597483621,39742815068283432],[1575936,1181824,-52990419988112860,-52990415566243210],[1575936,1573000,13247603808044578,13247605080544438],[1575936,1704064,15222905730833912,15222908177460183],[1575936,1704192,22544603251852693,22544604485915178],[1575936,1704448,-22544604485915178,-22544603251852693],[1575936,1707136,1975301912872117,1975303106832961],[1575936,1707264,22544603251852693,22544604485915178],[1575936,1707520,-22544604485915178,-22544603251852693],[1575936,2228224,-45089208980598784,-45089206494936958],[1575936,2231296,-18594000503636004,-18593997194721705],[1575936,2753536,-2231218224,2231218221],[1575936,2754560,-26495210008022388,-26495207769155642],[1575936,3277824,-26495210008022388,-26495207769155642],[1575936,3278848,-2231218224,2231218221],[1575936,3801088,-18594000503636004,-18593997194721705],[1575936,3804160,-45089208980598784,-45089206494936958],[1575936,33685504,-1975303106832961,-1975301912872117],[1575936,33688576,-1975303106832961,-1975301912872117],[1575936,35258368,-1975303106832961,-1975301912872117],[1575936,35261440,-1975303106832961,-1975301912872117],[1575936,134874112,26495207799184865,26495209977993164],[1575936,134875136,-26495209977993164,-26495207799184865],[1575936,135398400,-26495209977993164,-26495207799184865],[1575936,135399424,26495207799184865,26495209977993164],[1575936,269091840,-26495209977993164,-26495207799184865],[1575936,269092864,26495207799184865,26495209977993164],[1575936,269616128,26495207799184865,26495209977993164],[1575936,269617152,-26495209977993164,-26495207799184865],[1576072,1032,-39742815068283432,-39742811597483621],[1576072,1152,66238019675883376,66238024767061710],[1576072,2056,26495207628724032,26495210148454004],[1576072,2176,-39742815068283432,-39742811597483621],[1576072,3208,13247603808044578,13247605080544438],[1576072,524296,1975301915400511,1975303104304567],[1576072,524416,-1975303104304567,-1975301915400511],[1576072,525312,-24519908084973355,-24519904672499600],[1576072,525448,1975301915400511,1975303104304567],[1576072,526336,11272300713657228,11272303155226711],[1576072,526472,-1975303104304567,-1975301915400511],[1576072,527368,-24519908084973355,-24519904672499600],[1576072,527488,11272300713657228,11272303155226711],[1576072,1048584,11272300713657228,11272303155226711],[1576072,1048704,-24519908084973355,-24519904672499600],[1576072,1049600,-1975303104304567,-1975301915400511],[1576072,1049736,11272300713657228,11272303155226711],[1576072,1050624,1975301915400511,1975303104304567],[1576072,1050760,-24519908084973355,-24519904672499600],[1576072,1051656,-1975303104304567,-1975301915400511],[1576072,1051776,1975301915400511,1975303104304567],[1576072,1572864,13247603808044578,13247605080544438],[1576072,1573896,-39742815068283432,-39742811597483621],[1576072,1574016,26495207628724032,26495210148454004],[1576072,1574920,66238019675883376,66238024767061710],[1576072,1575040,-39742815068283432,-39742811597483621],[1605634,655370,6623801172992632,6623803271301876],[1605634,688136,-6623803271301876,-6623801172992632],[1605634,1179658,-6623803271301876,-6623801172992632],[1605634,1212424,6623801172992632,6623803271301876],[1605636,524292,-1975304506421476,-1975300513283600],[1605636,557056,1975300513283600,1975304506421476],[1605636,655372,6623801213223040,6623803231071470],[1605636,688136,-6623803231071470,-6623801213223040],[1605636,1048580,1975300513283600,1975304506421476],[1605636,1081344,-1975304506421476,-1975300513283600],[1605636,1179660,-6623803231071470,-6623801213223040],[1605636,1212424,6623801213223040,6623803231071470],[1605640,0,22544603021162496,22544604716605376],[1605640,32776,11272301510581248,11272302358302688],[1605640,131200,11272300305719853,11272303563164086],[1605640,132096,-24519907414185673,-24519905343287280],[1605640,163976,24519905343287280,24519907414185673],[1605640,164872,-24519907414185673,-24519905343287280],[1605640,524296,-4648502349941046,-4648497074648383],[1605640,557056,15920799005382849,15920804288090516],[1605640,655370,-6623803271301876,-6623801172992632],[1605640,655372,17896102112215810,17896106200962633],[1605640,655496,-13247606551676524,-13247602336912492],[1605640,688130,6623801172992632,6623803271301876],[1605640,688132,-17896106200962633,-17896102112215810],[1605640,688256,-2124775455,2124775457],[1605640,1048584,15920799005382849,15920804288090516],[1605640,1081344,-4648502349941046,-4648497074648383],[1605640,1179658,6623801172992632,6623803271301876],[1605640,1179660,-17896106200962633,-17896102112215810],[1605640,1179784,-2124775455,2124775457],[1605640,1212418,-6623803271301876,-6623801172992632],[1605640,1212420,17896102112215810,17896106200962633],[1605640,1212544,-13247606551676524,-13247602336912492],[1605640,1572864,11272301510581248,11272302358302688],[1605640,1605640,22544603021162496,22544604716605376],[1605640,1704064,24519905343287280,24519907414185673],[1605640,1704960,-24519907414185673,-24519905343287280],[1605640,1736840,11272300305719853,11272303563164086],[1605640,1737736,-24519907414185673,-24519905343287280],[1605640,2228224,-24519907395040631,-24519905362432319],[1605640,2261000,-24519907395040631,-24519905362432319],[1605640,3801088,-24519907395040631,-24519905362432319],[1605640,3833864,-24519907395040631,-24519905362432319],[1605640,67764232,-17896105064267619,-17896103248910824],[1605640,67796992,17896103248910824,17896105064267619],[1605640,68288520,17896103248910824,17896105064267619],[1605640,68321280,-17896105064267619,-17896103248910824],[1605640,134348800,-24519907391505747,-24519905365967204],[1605640,134381576,-24519907391505747,-24519905365967204],[1605640,135921664,-24519907391505747,-24519905365967204],[1605640,135954440,-24519907391505747,-24519905365967204],[1605640,268566528,24519905365967204,24519907391505747],[1605640,268599304,24519905365967204,24519907391505747],[1605640,270139392,24519905365967204,24519907391505747],[1605640,270172168,24519905365967204,24519907391505747],[1605640,1074397192,24519905365967204,24519907391505747],[1605640,1074429952,-24519907391505747,-24519905365967204],[1605640,1074921480,-24519907391505747,-24519905365967204],[1605640,1074954240,24519905365967204,24519907391505747],[1605696,131200,-13247605033169427,-13247603855419588],[1605696,655552,-6623803271301876,-6623801172992632],[1605696,688256,-6623803284297315,-6623801159997192],[1605696,1179840,-6623803284297315,-6623801159997192],[1605696,1212544,-6623803271301876,-6623801172992632],[1605696,1736896,-13247605033169427,-13247603855419588],[1605760,0,-22544604716605376,-22544603021162496],[1605760,32896,-13247605973043456,-13247602915545560],[1605760,131080,13247603851021587,13247605037567427],[1605760,131136,13247603855419588,13247605033169427],[1605760,132096,22544601541194970,22544606196572912],[1605760,163972,-22544604444342592,-22544603293425280],[1605760,163976,-1975303111382023,-1975301908323058],[1605760,164992,24519905343287280,24519907414185673],[1605760,524416,-15920803246405425,-15920800047067943],[1605760,524428,-1975303111382023,-1975301908323058],[1605760,557056,6623799524173159,6623804920121353],[1605760,557068,1975301908323058,1975303111382023],[1605760,655492,-1975303111382023,-1975301908323058],[1605760,655496,39742809963298108,39742816702468936],[1605760,655552,6623801172992632,6623803271301876],[1605760,656512,6623801213223040,6623803231071470],[1605760,688132,24519905343287280,24519907414185673],[1605760,688136,-24519910213370186,-24519902544102763],[1605760,688192,6623801159997192,6623803284297315],[1605760,689152,-8599107748829489,-8599101715170092],[1605760,1048704,6623799524173159,6623804920121353],[1605760,1048716,1975301908323058,1975303111382023],[1605760,1081344,-15920803246405425,-15920800047067943],[1605760,1081356,-1975303111382023,-1975301908323058],[1605760,1179780,24519905343287280,24519907414185673],[1605760,1179784,-24519910213370186,-24519902544102763],[1605760,1179840,6623801159997192,6623803284297315],[1605760,1180800,-8599107748829489,-8599101715170092],[1605760,1212420,-1975303111382023,-1975301908323058],[1605760,1212424,39742809963298108,39742816702468936],[1605760,1212480,6623801172992632,6623803271301876],[1605760,1213440,6623801213223040,6623803231071470],[1605760,1572864,-13247605973043456,-13247602915545560],[1605760,1605760,-22544604716605376,-22544603021162496],[1605760,1703940,-22544604444342592,-22544603293425280],[1605760,1703944,-1975303111382023,-1975301908323058],[1605760,1704960,24519905343287280,24519907414185673],[1605760,1736840,13247603851021587,13247605037567427],[1605760,1736896,13247603855419588,13247605033169427],[1605760,1737856,22544601541194970,22544606196572912],[1605760,2228224,-1975303106832961,-1975301912872117],[1605760,2261120,24519905362432319,24519907395040631],[1605760,2785280,-26495209923507576,-26495207853670452],[1605760,3276928,-26495209923507576,-26495207853670452],[1605760,3801088,24519905362432319,24519907395040631],[1605760,3833984,-1975303106832961,-1975301912872117],[1605760,67272832,-1975303102468593,-1975301917236486],[1605760,67764352,13247603822433492,13247605066155522],[1605760,67796992,-11272302995044411,-11272300873839524],[1605760,68288640,-11272302995044411,-11272300873839524],[1605760,68321280,13247603822433492,13247605066155522],[1605760,68812800,-1975303102468593,-1975301917236486],[1605760,134348800,-1975303102434961,-1975301917270118],[1605760,134381696,24519905365967204,24519907391505747],[1605760,134905856,-26495209915574692,-26495207861603338],[1605760,135397504,-26495209915574692,-26495207861603338],[1605760,135921664,24519905365967204,24519907391505747],[1605760,135954560,-1975303102434961,-1975301917270118],[1605760,268566528,-11272302664826744,-11272301204057192],[1605760,268599424,-873779583,873779583],[1605760,269090944,-17896105064267619,-17896103248910824],[1605760,269123584,6623801159963560,6623803284330947],[1605760,269615232,6623801159963560,6623803284330947],[1605760,269647872,-17896105064267619,-17896103248910824],[1605760,270139392,-873779583,873779583],[1605760,270172288,-11272302664826744,-11272301204057192],[1605760,1073905792,-22544604430576096,-22544603307191776],[1605760,1074397312,-1975303102468593,-1975301917236486],[1605760,1074429952,24519905365967204,24519907391505747],[1605760,1074921600,24519905365967204,24519907391505747],[1605760,1074954240,-1975303102468593,-1975301917236486],[1605760,1075445760,-22544604430576096,-22544603307191776],[1605772,524292,-1975303111382023,-1975301908323058],[1605772,524428,-1975303111382023,-1975301908323058],[1605772,557056,1975301908323058,1975303111382023],[1605772,557192,1975301908323058,1975303111382023],[1605772,1048580,1975301908323058,1975303111382023],[1605772,1048716,1975301908323058,1975303111382023],[1605772,1081344,-1975303111382023,-1975301908323058],[1605772,1081480,-1975303111382023,-1975301908323058],[1605888,132096,13247603855419588,13247605033169427],[1605888,689152,13247603855419588,13247605033169427],[1605888,1180928,13247603855419588,13247605033169427],[1605888,1737984,13247603855419588,13247605033169427],[1606656,33792,1975300984811094,1975304034893986],[1606656,131200,-26495210023626872,-26495207753551168],[1606656,131328,-13247605033169427,-13247603855419588],[1606656,133120,-13247605037567427,-13247603851021587],[1606656,164868,22544603293425280,22544604444342592],[1606656,164872,1975301908323058,1975303111382023],[1606656,164992,-24519907414185673,-24519905343287280],[1606656,525312,-1975304034893986,-1975300984811094],[1606656,656388,-22544604444342592,-22544603293425280],[1606656,656392,-1975303111382023,-1975301908323058],[1606656,656512,17896102112215810,17896106200962633],[1606656,688256,-19871408102400732,-19871405230482798],[1606656,688384,-13247605033169427,-13247603855419588],[1606656,690176,-13247605037567427,-13247603851021587],[1606656,1081344,-1975304034893986,-1975300984811094],[1606656,1180800,-19871408102400732,-19871405230482798],[1606656,1180928,-13247605033169427,-13247603855419588],[1606656,1182720,-13247605037567427,-13247603851021587],[1606656,1212420,-22544604444342592,-22544603293425280],[1606656,1212424,-1975303111382023,-1975301908323058],[1606656,1212544,17896102112215810,17896106200962633],[1606656,1572864,1975300984811094,1975304034893986],[1606656,1703940,22544603293425280,22544604444342592],[1606656,1703944,1975301908323058,1975303111382023],[1606656,1704064,-24519907414185673,-24519905343287280],[1606656,1737856,-26495210023626872,-26495207753551168],[1606656,1737984,-13247605033169427,-13247603855419588],[1606656,1739776,-13247605037567427,-13247603851021587],[1606656,2228224,13247603851021587,13247605037567427],[1606656,2785280,13247603851021587,13247605037567427],[1606656,3277824,13247603851021587,13247605037567427],[1606656,3834880,13247603851021587,13247605037567427],[1606656,67273728,1975301917236486,1975303102468593],[1606656,67765248,-1975303102468593,-1975301917236486],[1606656,68321280,-1975303102468593,-1975301917236486],[1606656,68812800,1975301917236486,1975303102468593],[1606656,134348800,13247603855419588,13247605033169427],[1606656,134905856,13247603855419588,13247605033169427],[1606656,135398400,13247603855419588,13247605033169427],[1606656,135955456,13247603855419588,13247605033169427],[1606656,268600320,-24519907391505747,-24519905365967204],[1606656,269091840,24519905365967204,24519907391505747],[1606656,269647872,24519905365967204,24519907391505747],[1606656,270139392,-24519907391505747,-24519905365967204],[1606656,1073906688,22544603307191776,22544604430576096],[1606656,1074398208,-22544604430576096,-22544603307191776],[1606656,1074954240,-22544604430576096,-22544603307191776],[1606656,1075445760,22544603307191776,22544604430576096],[1607680,132096,13247603851021587,13247605037567427],[1607680,689152,13247603851021587,13247605037567427],[1607680,1182720,13247603851021587,13247605037567427],[1607680,1739776,13247603851021587,13247605037567427],[1607680,2228224,13247603851851071,13247605036737943],[1607680,2785280,13247603851851071,13247605036737943],[1607680,3278848,13247603851851071,13247605036737943],[1607680,3835904,13247603851851071,13247605036737943],[1703937,524299,4648499087000812,4648500337588616],[1703937,524301,1975301917270118,1975303102434961],[1703937,557061,-13247605033169427,-13247603855419588],[1703937,655370,-4648500337588616,-4648499087000812],[1703937,655372,-1975303102434961,-1975301917270118],[1703937,688132,13247603855419588,13247605033169427],[1703937,1048587,-4648500337588616,-4648499087000812],[1703937,1048589,-1975303102434961,-1975301917270118],[1703937,1081349,13247603855419588,13247605033169427],[1703937,1179658,4648499087000812,4648500337588616],[1703937,1179660,1975301917270118,1975303102434961],[1703937,1212420,-13247605033169427,-13247603855419588],[1703938,136,-1975303134589986,-1975301885115096],[1703938,1032,1975301885115096,1975303134589986],[1703938,131210,20569300117262707,20569302600800082],[1703938,131266,1975301885638543,1975303134066535],[1703938,132106,1975301885115096,1975303134589986],[1703938,524290,-4648501505889997,-4648497918699427],[1703938,524299,-4648500337588616,-4648499087000812],[1703938,524302,-1975303102434961,-1975301917270118],[1703938,524362,-4648500367937248,-4648499056652179],[1703938,524426,-26495210655649026,-26495207121529005],[1703938,524482,-6623803346277521,-6623801098016984],[1703938,557066,6623801159997192,6623803284297315],[1703938,655360,4648497918699427,4648501505889997],[1703938,655369,4648499087000812,4648500337588616],[1703938,655372,1975301917270118,1975303102434961],[1703938,655432,4648499056652179,4648500367937248],[1703938,655496,3950603717154982,3950606322255178],[1703938,655552,4648499056652179,4648500367937248],[1703938,688136,-6623803284297315,-6623801159997192],[1703938,1048578,4648497918699427,4648501505889997],[1703938,1048587,4648499087000812,4648500337588616],[1703938,1048590,1975301917270118,1975303102434961],[1703938,1048650,4648499056652179,4648500367937248],[1703938,1048714,3950603717154982,3950606322255178],[1703938,1048770,4648499056652179,4648500367937248],[1703938,1081354,-6623803284297315,-6623801159997192],[1703938,1179648,-4648501505889997,-4648497918699427],[1703938,1179657,-4648500337588616,-4648499087000812],[1703938,1179660,-1975303102434961,-1975301917270118],[1703938,1179720,-4648500367937248,-4648499056652179],[1703938,1179784,-26495210655649026,-26495207121529005],[1703938,1179840,-6623803346277521,-6623801098016984],[1703938,1212424,6623801159997192,6623803284297315],[1703938,1573000,20569300117262707,20569302600800082],[1703938,1573056,1975301885638543,1975303134066535],[1703938,1573896,1975301885115096,1975303134589986],[1703938,1704074,-1975303134589986,-1975301885115096],[1703938,1704970,1975301885115096,1975303134589986],[1703938,2097160,1975301892192549,1975303127512530],[1703938,2228234,1975301892192549,1975303127512530],[1703938,3670024,1975301892192549,1975303127512530],[1703938,3801098,1975301892192549,1975303127512530],[1703938,67633162,6623801079994226,6623803364300278],[1703938,67764232,-6623803364300278,-6623801079994226],[1703938,68157450,-6623803364300278,-6623801079994226],[1703938,68288520,6623801079994226,6623803364300278],[1703938,134217736,1975301885638544,1975303134066536],[1703938,134348810,1975301885638544,1975303134066536],[1703938,135790600,1975301885638544,1975303134066536],[1703938,135921674,1975301885638544,1975303134066536],[1703938,268435464,-1975303134066536,-1975301885638544],[1703938,268566538,-1975303134066536,-1975301885638544],[1703938,270008328,-1975303134066536,-1975301885638544],[1703938,270139402,-1975303134066536,-1975301885638544],[1703940,136,-1975303111382023,-1975301908323058],[1703940,1032,1975301908323058,1975303111382023],[1703940,32896,-22544604444342592,-22544603293425280],[1703940,33792,22544603293425280,22544604444342592],[1703940,131212,-1198509906,1198509903],[1703940,132108,1975301908323058,1975303111382023],[1703940,163972,-22544604444342592,-22544603293425280],[1703940,164868,22544603293425280,22544604444342592],[1703940,524292,8599101715170092,8599107748829489],[1703940,524301,-1975303102434961,-1975301917270118],[1703940,524302,-4648500337588616,-4648499087000812],[1703940,524428,-11272303635356703,-11272300233527231],[1703940,557061,13247603855419588,13247605033169427],[1703940,557068,-8599107748829489,-8599101715170092],[1703940,655360,-8599107748829489,-8599101715170092],[1703940,655369,1975301917270118,1975303102434961],[1703940,655370,4648499087000812,4648500337588616],[1703940,655496,9296998164928852,9297000684250004],[1703940,688129,-13247605033169427,-13247603855419588],[1703940,688136,8599101715170092,8599107748829489],[1703940,1048580,-8599107748829489,-8599101715170092],[1703940,1048589,1975301917270118,1975303102434961],[1703940,1048590,4648499087000812,4648500337588616],[1703940,1048716,9296998164928852,9297000684250004],[1703940,1081349,-13247605033169427,-13247603855419588],[1703940,1081356,8599101715170092,8599107748829489],[1703940,1179648,8599101715170092,8599107748829489],[1703940,1179657,-1975303102434961,-1975301917270118],[1703940,1179658,-4648500337588616,-4648499087000812],[1703940,1179784,-11272303635356703,-11272300233527231],[1703940,1212417,13247603855419588,13247605033169427],[1703940,1212424,-8599107748829489,-8599101715170092],[1703940,1573000,-1198509906,1198509903],[1703940,1573896,1975301908323058,1975303111382023],[1703940,1605760,-22544604444342592,-22544603293425280],[1703940,1606656,22544603293425280,22544604444342592],[1703940,1704076,-1975303111382023,-1975301908323058],[1703940,1704972,1975301908323058,1975303111382023],[1703940,1736836,-22544604444342592,-22544603293425280],[1703940,1737732,22544603293425280,22544604444342592],[1703940,2097160,1975301915400511,1975303104304567],[1703940,2129920,22544603305492866,22544604432275006],[1703940,2228236,1975301915400511,1975303104304567],[1703940,2260996,22544603305492866,22544604432275006],[1703940,3670024,1975301915400511,1975303104304567],[1703940,3702784,22544603305492866,22544604432275006],[1703940,3801100,1975301915400511,1975303104304567],[1703940,3833860,22544603305492866,22544604432275006],[1703940,67633164,6623801159997192,6623803284297315],[1703940,67665924,-26495209915574692,-26495207861603338],[1703940,67764232,-6623803284297315,-6623801159997192],[1703940,67796992,26495207861603338,26495209915574692],[1703940,68157452,-6623803284297315,-6623801159997192],[1703940,68190212,26495207861603338,26495209915574692],[1703940,68288520,6623801159997192,6623803284297315],[1703940,68321280,-26495209915574692,-26495207861603338],[1703940,134217736,1975301917236486,1975303102468593],[1703940,134250496,22544603307191776,22544604430576096],[1703940,134348812,1975301917236486,1975303102468593],[1703940,134381572,22544603307191776,22544604430576096],[1703940,135790600,1975301917236486,1975303102468593],[1703940,135823360,22544603307191776,22544604430576096],[1703940,135921676,1975301917236486,1975303102468593],[1703940,135954436,22544603307191776,22544604430576096],[1703940,268435464,-1975303102468593,-1975301917236486],[1703940,268468224,-22544604430576096,-22544603307191776],[1703940,268566540,-1975303102468593,-1975301917236486],[1703940,268599300,-22544604430576096,-22544603307191776],[1703940,270008328,-1975303102468593,-1975301917236486],[1703940,270041088,-22544604430576096,-22544603307191776],[1703940,270139404,-1975303102468593,-1975301917236486],[1703940,270172164,-22544604430576096,-22544603307191776],[1703940,1074298884,13247603855385956,13247605033203059],[1703940,1074429952,-13247605033203059,-13247603855385956],[1703940,1074823172,-13247605033203059,-13247603855385956],[1703940,1074954240,13247603855385956,13247605033203059],[1703944,0,-18594001036550426,-18593996661807284],[1703944,130,1975301885115096,1975303134589986],[1703944,132,1975301908323058,1975303111382023],[1703944,1026,-1975303134589986,-1975301885115096],[1703944,1028,-1975303111382023,-1975301908323058],[1703944,1152,-3950606273531284,-3950603765878878],[1703944,32896,11272300739639564,11272303129244369],[1703944,33792,1975301908323058,1975303111382023],[1703944,131080,-11272305028685690,-11272298840198250],[1703944,131210,-20569302600800082,-20569300117262707],[1703944,131212,-1198509903,1198509906],[1703944,131272,-1975303134066535,-1975301885638543],[1703944,132106,-1975303134589986,-1975301885115096],[1703944,132108,-1975303111382023,-1975301908323058],[1703944,132232,-4276638122,4276638132],[1703944,163976,-1975303111382023,-1975301908323058],[1703944,164872,1975301908323058,1975303111382023],[1703944,524296,-67361745915243333,-67361693124389608],[1703944,524302,6623801159997192,6623803284297315],[1703944,524426,31143706348939894,31143710852827564],[1703944,524428,13247602302125610,13247606586463402],[1703944,524488,6623801098016984,6623803346277521],[1703944,525448,43113898635137411,43113911820693235],[1703944,557066,-6623803284297315,-6623801159997192],[1703944,557068,-19871408102400732,-19871405230482798],[1703944,557192,-2124775455,2124775457],[1703944,655360,60039999943769960,60040045266389211],[1703944,655366,-6623803284297315,-6623801159997192],[1703944,655490,-8599106519433716,-8599102944565871],[1703944,655492,-11272303635356703,-11272300233527231],[1703944,655552,-4648500367937248,-4648499056652179],[1703944,656512,-47064513169575377,-47064507325665441],[1703944,688130,6623801159997192,6623803284297315],[1703944,688132,19871405230482798,19871408102400732],[1703944,688256,13247602302125610,13247606586463402],[1703944,1048584,60039999943769960,60040045266389211],[1703944,1048590,-6623803284297315,-6623801159997192],[1703944,1048714,-8599106519433716,-8599102944565871],[1703944,1048716,-11272303635356703,-11272300233527231],[1703944,1048776,-4648500367937248,-4648499056652179],[1703944,1049736,-47064513169575377,-47064507325665441],[1703944,1081354,6623801159997192,6623803284297315],[1703944,1081356,19871405230482798,19871408102400732],[1703944,1081480,13247602302125610,13247606586463402],[1703944,1179648,-67361745915243333,-67361693124389608],[1703944,1179654,6623801159997192,6623803284297315],[1703944,1179778,31143706348939894,31143710852827564],[1703944,1179780,13247602302125610,13247606586463402],[1703944,1179840,6623801098016984,6623803346277521],[1703944,1180800,43113898635137411,43113911820693235],[1703944,1212418,-6623803284297315,-6623801159997192],[1703944,1212420,-19871408102400732,-19871405230482798],[1703944,1212544,-2124775455,2124775457],[1703944,1572864,-11272305028685690,-11272298840198250],[1703944,1572994,-20569302600800082,-20569300117262707],[1703944,1572996,-1198509903,1198509906],[1703944,1573056,-1975303134066535,-1975301885638543],[1703944,1573890,-1975303134589986,-1975301885115096],[1703944,1573892,-1975303111382023,-1975301908323058],[1703944,1574016,-4276638122,4276638132],[1703944,1605760,-1975303111382023,-1975301908323058],[1703944,1606656,1975301908323058,1975303111382023],[1703944,1703944,-18594001036550426,-18593996661807284],[1703944,1704074,1975301885115096,1975303134589986],[1703944,1704076,1975301908323058,1975303111382023],[1703944,1704970,-1975303134589986,-1975301885115096],[1703944,1704972,-1975303111382023,-1975301908323058],[1703944,1705096,-3950606273531284,-3950603765878878],[1703944,1736840,11272300739639564,11272303129244369],[1703944,1737736,1975301908323058,1975303111382023],[1703944,2097154,-1975303127512530,-1975301892192549],[1703944,2097156,-1975303104304567,-1975301915400511],[1703944,2097280,-3950606276156332,-3950603763253824],[1703944,2129920,1975301915400511,1975303104304567],[1703944,2228234,-1975303127512530,-1975301892192549],[1703944,2228236,-1975303104304567,-1975301915400511],[1703944,2228360,22544602288119128,22544605449648746],[1703944,2261000,1975301915400511,1975303104304567],[1703944,2621576,-2231218221,2231218224],[1703944,2622472,-26495210000373866,-26495207776804167],[1703944,2752640,-26495210000373866,-26495207776804167],[1703944,2753536,26495207776804167,26495210000373866],[1703944,3145864,-26495210000373866,-26495207776804167],[1703944,3146760,26495207776804167,26495210000373866],[1703944,3276928,-2231218221,2231218224],[1703944,3277824,-26495210000373866,-26495207776804167],[1703944,3670018,-1975303127512530,-1975301892192549],[1703944,3670020,-1975303104304567,-1975301915400511],[1703944,3670144,22544602288119128,22544605449648746],[1703944,3702784,1975301915400511,1975303104304567],[1703944,3801098,-1975303127512530,-1975301892192549],[1703944,3801100,-1975303104304567,-1975301915400511],[1703944,3801224,-3950606276156332,-3950603763253824],[1703944,3833864,1975301915400511,1975303104304567],[1703944,67108992,11272300692285237,11272303176598696],[1703944,67109888,1975301885115096,1975303134589986],[1703944,67240072,-1975303134589986,-1975301885115096],[1703944,67240968,1975301885115096,1975303134589986],[1703944,67633162,-6623803364300278,-6623801079994226],[1703944,67633164,-6623803284297315,-6623801159997192],[1703944,67633288,-17896106405885420,-17896101907293023],[1703944,67665928,6623801159997192,6623803284297315],[1703944,67764226,6623801079994226,6623803364300278],[1703944,67764228,6623801159997192,6623803284297315],[1703944,67764352,31143706348939894,31143710852827564],[1703944,67796992,-6623803284297315,-6623801159997192],[1703944,68157450,6623801079994226,6623803364300278],[1703944,68157452,6623801159997192,6623803284297315],[1703944,68157576,31143706348939894,31143710852827564],[1703944,68190216,-6623803284297315,-6623801159997192],[1703944,68288514,-6623803364300278,-6623801079994226],[1703944,68288516,-6623803284297315,-6623801159997192],[1703944,68288640,-17896106405885420,-17896101907293023],[1703944,68321280,6623801159997192,6623803284297315],[1703944,68681856,-1975303134589986,-1975301885115096],[1703944,68682752,1975301885115096,1975303134589986],[1703944,68812936,11272300692285237,11272303176598696],[1703944,68813832,1975301885115096,1975303134589986],[1703944,69206016,1975301892192549,1975303127512530],[1703944,69337096,1975301892192549,1975303127512530],[1703944,70778880,1975301892192549,1975303127512530],[1703944,70909960,1975301892192549,1975303127512530],[1703944,134217730,-1975303134066536,-1975301885638544],[1703944,134217732,-1975303102468593,-1975301917236486],[1703944,134217856,-3950606255704424,-3950603783705734],[1703944,134250496,1975301917236486,1975303102468593],[1703944,134348810,-1975303134066536,-1975301885638544],[1703944,134348812,-1975303102468593,-1975301917236486],[1703944,134348936,22544602161328920,22544605576438951],[1703944,134381576,1975301917236486,1975303102468593],[1703944,134742152,-2193017774,2193017775],[1703944,134743048,-26495209992202640,-26495207784975390],[1703944,134873216,-26495209992202640,-26495207784975390],[1703944,134874112,26495207784975390,26495209992202640],[1703944,135266440,-26495209992202640,-26495207784975390],[1703944,135267336,26495207784975390,26495209992202640],[1703944,135397504,-2193017774,2193017775],[1703944,135398400,-26495209992202640,-26495207784975390],[1703944,135790594,-1975303134066536,-1975301885638544],[1703944,135790596,-1975303102468593,-1975301917236486],[1703944,135790720,22544602161328920,22544605576438951],[1703944,135823360,1975301917236486,1975303102468593],[1703944,135921674,-1975303134066536,-1975301885638544],[1703944,135921676,-1975303102468593,-1975301917236486],[1703944,135921800,-3950606255704424,-3950603783705734],[1703944,135954440,1975301917236486,1975303102468593],[1703944,136839176,-26495209971802464,-26495207805375563],[1703944,136970240,26495207805375563,26495209971802464],[1703944,137363464,26495207805375563,26495209971802464],[1703944,137494528,-26495209971802464,-26495207805375563],[1703944,201326592,1975301885638544,1975303134066536],[1703944,201457672,1975301885638544,1975303134066536],[1703944,202899456,1975301885638544,1975303134066536],[1703944,203030536,1975301885638544,1975303134066536],[1703944,268435458,1975301885638544,1975303134066536],[1703944,268435460,1975301917236486,1975303102468593],[1703944,268435584,-9297000814034204,-9296998035144653],[1703944,268468224,-1975303102468593,-1975301917236486],[1703944,268566538,1975301885638544,1975303134066536],[1703944,268566540,1975301917236486,1975303102468593],[1703944,268566664,1975300959240085,1975304060464993],[1703944,268599304,-1975303102468593,-1975301917236486],[1703944,268959880,-19871408894185654,-19871404438697867],[1703944,268960776,26495207784975390,26495209992202640],[1703944,269090944,8599102661848405,8599106802151181],[1703944,269091840,-26495209992202640,-26495207784975390],[1703944,269484168,8599102661848405,8599106802151181],[1703944,269485064,-26495209992202640,-26495207784975390],[1703944,269615232,-19871408894185654,-19871404438697867],[1703944,269616128,26495207784975390,26495209992202640],[1703944,270008322,1975301885638544,1975303134066536],[1703944,270008324,1975301917236486,1975303102468593],[1703944,270008448,1975300959240085,1975304060464993],[1703944,270041088,-1975303102468593,-1975301917236486],[1703944,270139402,1975301885638544,1975303134066536],[1703944,270139404,1975301917236486,1975303102468593],[1703944,270139528,-9297000814034204,-9296998035144653],[1703944,270172168,-1975303102468593,-1975301917236486],[1703944,271056904,26495207805375563,26495209971802464],[1703944,271187968,-26495209971802464,-26495207805375563],[1703944,271581192,-26495209971802464,-26495207805375563],[1703944,271712256,26495207805375563,26495209971802464],[1703944,335544320,-1975303134066536,-1975301885638544],[1703944,335675400,-1975303134066536,-1975301885638544],[1703944,337117184,-1975303134066536,-1975301885638544],[1703944,337248264,-1975303134066536,-1975301885638544],[1703944,403177480,49039811053725950,49039814461219948],[1703944,403308544,-49039814461219948,-49039811053725950],[1703944,403701768,-49039814461219948,-49039811053725950],[1703944,403832832,49039811053725950,49039814461219948],[1703947,524289,4648499087000812,4648500337588616],[1703947,524290,-4648500337588616,-4648499087000812],[1703947,655369,4648499087000812,4648500337588616],[1703947,655370,-4648500337588616,-4648499087000812],[1703947,1048577,-4648500337588616,-4648499087000812],[1703947,1048578,4648499087000812,4648500337588616],[1703947,1179657,-4648500337588616,-4648499087000812],[1703947,1179658,4648499087000812,4648500337588616],[1703949,524289,1975301917270118,1975303102434961],[1703949,524292,-1975303102434961,-1975301917270118],[1703949,655369,1975301917270118,1975303102434961],[1703949,655372,-1975303102434961,-1975301917270118],[1703949,1048577,-1975303102434961,-1975301917270118],[1703949,1048580,1975301917270118,1975303102434961],[1703949,1179657,-1975303102434961,-1975301917270118],[1703949,1179660,1975301917270118,1975303102434961],[1703950,524290,-1975303102434961,-1975301917270118],[1703950,524292,-4648500337588616,-4648499087000812],[1703950,524296,6623801159997192,6623803284297315],[1703950,655366,-6623803284297315,-6623801159997192],[1703950,655370,4648499087000812,4648500337588616],[1703950,655372,1975301917270118,1975303102434961],[1703950,1048578,1975301917270118,1975303102434961],[1703950,1048580,4648499087000812,4648500337588616],[1703950,1048584,-6623803284297315,-6623801159997192],[1703950,1179654,6623801159997192,6623803284297315],[1703950,1179658,-4648500337588616,-4648499087000812],[1703950,1179660,-1975303102434961,-1975301917270118],[1704000,0,-22544604789079442,-22544602948688426],[1704000,136,13247603822461068,13247605066127948],[1704000,1152,-1975303134589986,-1975301885115096],[1704000,32896,13247603855419588,13247605033169427],[1704000,131136,-13247606153429752,-13247602735159258],[1704000,131266,-1975303134066535,-1975301885638543],[1704000,131272,-22544604485915178,-22544603251852693],[1704000,131520,-1975303102434961,-1975301917270118],[1704000,132288,3950601736070570,3950608303339582],[1704000,132416,-1975303102434961,-1975301917270118],[1704000,524352,6623799192952293,6623805251342207],[1704000,524362,4648499056652179,4648500367937248],[1704000,524482,6623801098016984,6623803346277521],[1704000,524488,-9297003434088727,-9296995415090126],[1704000,524736,6623801159997192,6623803284297315],[1704000,525504,-3950608765320955,-3950601274089200],[1704000,525632,1975301917270118,1975303102434961],[1704000,557248,6623801172992632,6623803271301876],[1704000,655360,-15920803437427959,-15920799856045399],[1704000,655370,-4648500367937248,-4648499056652179],[1704000,655490,-4648500367937248,-4648499056652179],[1704000,655496,45089204203543548,45089211271992192],[1704000,655744,-4648500337588616,-4648499087000812],[1704000,656512,-1975303102434961,-1975301917270118],[1704000,688256,6623801159997192,6623803284297315],[1704000,1048640,-15920803437427959,-15920799856045399],[1704000,1048650,-4648500367937248,-4648499056652179],[1704000,1048770,-4648500367937248,-4648499056652179],[1704000,1048776,45089204203543548,45089211271992192],[1704000,1049024,-4648500337588616,-4648499087000812],[1704000,1049792,-1975303102434961,-1975301917270118],[1704000,1081536,6623801159997192,6623803284297315],[1704000,1179648,6623799192952293,6623805251342207],[1704000,1179658,4648499056652179,4648500367937248],[1704000,1179778,6623801098016984,6623803346277521],[1704000,1179784,-9297003434088727,-9296995415090126],[1704000,1180032,6623801159997192,6623803284297315],[1704000,1180800,-3950608765320955,-3950601274089200],[1704000,1180928,1975301917270118,1975303102434961],[1704000,1212544,6623801172992632,6623803271301876],[1704000,1572864,-13247606153429752,-13247602735159258],[1704000,1572994,-1975303134066535,-1975301885638543],[1704000,1573000,-22544604485915178,-22544603251852693],[1704000,1573248,-1975303102434961,-1975301917270118],[1704000,1574016,3950601736070570,3950608303339582],[1704000,1574144,-1975303102434961,-1975301917270118],[1704000,1704000,-22544604789079442,-22544602948688426],[1704000,1704136,13247603822461068,13247605066127948],[1704000,1705152,-1975303134589986,-1975301885115096],[1704000,1736896,13247603855419588,13247605033169427],[1704000,2097280,-1975303127512530,-1975301892192549],[1704000,2228416,24519905292829456,24519907464643493],[1704000,2621632,-26495209978356470,-26495207798821558],[1704000,3276928,-26495209978356470,-26495207798821558],[1704000,3670144,24519905292829456,24519907464643493],[1704000,3801280,-1975303127512530,-1975301892192549],[1704000,67108992,13247603821617226,13247605066971786],[1704000,67633344,-11272303056635485,-11272300812248450],[1704000,67764352,24519905258499972,24519907498972975],[1704000,68157632,24519905258499972,24519907498972975],[1704000,68288640,-11272303056635485,-11272300812248450],[1704000,68812992,13247603821617226,13247605066971786],[1704000,134217856,-1975303134066536,-1975301885638544],[1704000,134348992,24519905293069738,24519907464403207],[1704000,134742208,-26495209977752878,-26495207799425147],[1704000,135397504,-26495209977752878,-26495207799425147],[1704000,135790720,24519905293069738,24519907464403207],[1704000,135921856,-1975303134066536,-1975301885638544],[1704000,268435584,-11272302707496740,-11272301161387192],[1704000,268566720,-932612781,932612782],[1704000,268959936,6623801107293350,6623803337001160],[1704000,269090944,-17896105125322940,-17896103187855503],[1704000,269484224,-17896105125322940,-17896103187855503],[1704000,269615232,6623801107293350,6623803337001160],[1704000,270008448,-932612781,932612782],[1704000,270139584,-11272302707496740,-11272301161387192],[1704010,524290,-4648500367937248,-4648499056652179],[1704010,524352,4648499056652179,4648500367937248],[1704010,655370,-4648500367937248,-4648499056652179],[1704010,655432,4648499056652179,4648500367937248],[1704010,1048578,4648499056652179,4648500367937248],[1704010,1048640,-4648500367937248,-4648499056652179],[1704010,1179658,4648499056652179,4648500367937248],[1704010,1179720,-4648500367937248,-4648499056652179],[1704064,0,-3375919900,3375919900],[1704064,72,-13247605066127948,-13247603822461068],[1704064,1032,67633806609648820,67633816603654788],[1704064,1088,1975301885115096,1975303134589986],[1704064,32776,-13247605037567427,-13247603851021587],[1704064,32832,-13247605033169427,-13247603855419588],[1704064,33792,-22544606196572912,-22544601541194970],[1704064,131200,307521786696231667,307521833184037924],[1704064,131272,24519905292829456,24519907464643493],[1704064,132232,43113898635137411,43113911820693235],[1704064,132288,-3950608765320955,-3950601274089200],[1704064,132480,15222905739731186,15222908168562909],[1704064,134272,15222905730833912,15222908177460183],[1704064,163976,24519905343287280,24519907414185673],[1704064,164992,-24519907414185673,-24519905343287280],[1704064,524416,-258754116160104515,-258754062378889847],[1704064,524426,-17896105469604200,-17896102843574241],[1704064,524428,-1198509903,1198509906],[1704064,524488,4648494875353022,4648504549236406],[1704064,525448,17198202099309824,17198216828689364],[1704064,525504,-697899214028262,-697890171151008],[1704064,525696,-15222908168562909,-15222905739731186],[1704064,527488,-15222908177460183,-15222905730833912],[1704064,557192,-24519910213370186,-24519902544102763],[1704064,557248,-6623803271301876,-6623801172992632],[1704064,558208,-6623803231071470,-6623801213223040],[1704064,655360,-48767744686891983,-48767696654383246],[1704064,655370,17896102843574241,17896105469604200],[1704064,655372,-1198509906,1198509903],[1704064,655432,-42416014583842896,-42416006486808497],[1704064,656392,7321690308104443,7321703521369331],[1704064,656448,6623801159997192,6623803284297315],[1704064,688136,-13247609036357290,-13247599852231728],[1704064,688192,-6623803284297315,-6623801159997192],[1704064,689152,8599101715170092,8599107748829489],[1704064,1048704,-48767744686891983,-48767696654383246],[1704064,1048714,17896102843574241,17896105469604200],[1704064,1048716,-1198509906,1198509903],[1704064,1048776,-42416014583842896,-42416006486808497],[1704064,1049736,7321690308104443,7321703521369331],[1704064,1049792,6623801159997192,6623803284297315],[1704064,1081480,-13247609036357290,-13247599852231728],[1704064,1081536,-6623803284297315,-6623801159997192],[1704064,1082496,8599101715170092,8599107748829489],[1704064,1179648,-258754116160104515,-258754062378889847],[1704064,1179658,-17896105469604200,-17896102843574241],[1704064,1179660,-1198509903,1198509906],[1704064,1179720,4648494875353022,4648504549236406],[1704064,1180680,17198202099309824,17198216828689364],[1704064,1180736,-697899214028262,-697890171151008],[1704064,1180928,-15222908168562909,-15222905739731186],[1704064,1182720,-15222908177460183,-15222905730833912],[1704064,1212424,-24519910213370186,-24519902544102763],[1704064,1212480,-6623803271301876,-6623801172992632],[1704064,1213440,-6623803231071470,-6623801213223040],[1704064,1572864,307521786696231667,307521833184037924],[1704064,1572936,24519905292829456,24519907464643493],[1704064,1573896,43113898635137411,43113911820693235],[1704064,1573952,-3950608765320955,-3950601274089200],[1704064,1574144,15222905739731186,15222908168562909],[1704064,1575936,15222905730833912,15222908177460183],[1704064,1605640,24519905343287280,24519907414185673],[1704064,1606656,-24519907414185673,-24519905343287280],[1704064,1704064,-3375919900,3375919900],[1704064,1704136,-13247605066127948,-13247603822461068],[1704064,1705096,67633806609648820,67633816603654788],[1704064,1705152,1975301885115096,1975303134589986],[1704064,1736840,-13247605037567427,-13247603851021587],[1704064,1736896,-13247605033169427,-13247603855419588],[1704064,1737856,-22544606196572912,-22544601541194970],[1704064,2097160,49039810258190782,49039815256755116],[1704064,2097216,1975301892192549,1975303127512530],[1704064,2098176,1975301915400511,1975303104304567],[1704064,2129920,1975301912872117,1975303106832961],[1704064,2228360,-3950608254927041,-3950601784483124],[1704064,2228416,-24519907464643493,-24519905292829456],[1704064,2229376,17198204870376650,17198214057622544],[1704064,2261120,-24519907395040631,-24519905362432319],[1704064,2621576,26495207769155642,26495210008022388],[1704064,2621632,26495207798821558,26495209978356470],[1704064,2622592,11272298134922261,11272305733961656],[1704064,2752520,26495207776804167,26495210000373866],[1704064,2753536,-26495210000373866,-26495207776804167],[1704064,2785280,26495207853670452,26495209923507576],[1704064,3145864,26495207776804167,26495210000373866],[1704064,3146880,-26495210000373866,-26495207776804167],[1704064,3178624,26495207853670452,26495209923507576],[1704064,3276808,26495207769155642,26495210008022388],[1704064,3276864,26495207798821558,26495209978356470],[1704064,3277824,11272298134922261,11272305733961656],[1704064,3670024,-3950608254927041,-3950601784483124],[1704064,3670080,-24519907464643493,-24519905292829456],[1704064,3671040,17198204870376650,17198214057622544],[1704064,3702784,-24519907395040631,-24519905362432319],[1704064,3801224,49039810258190782,49039815256755116],[1704064,3801280,1975301892192549,1975303127512530],[1704064,3802240,1975301915400511,1975303104304567],[1704064,3833984,1975301912872117,1975303106832961],[1704064,67108872,-13247605061713792,-13247603826875223],[1704064,67108928,-13247605066971786,-13247603821617226],[1704064,67109888,18593996439502170,18594001258855540],[1704064,67240072,3950603919085972,3950606120324188],[1704064,67241088,-3950606120324188,-3950603919085972],[1704064,67272832,24519905365967204,24519907391505747],[1704064,67633288,-21846713226576023,-21846705126012580],[1704064,67633344,11272300812248450,11272303056635485],[1704064,67634304,11272300873839524,11272302995044411],[1704064,67666048,-11272302995044411,-11272300873839524],[1704064,67764232,4648494866495498,4648504558093930],[1704064,67764288,-24519907498972975,-24519905258499972],[1704064,67765248,11272298579605019,11272305289278916],[1704064,67796992,-13247606222252656,-13247602666336360],[1704064,68157576,4648494866495498,4648504558093930],[1704064,68157632,-24519907498972975,-24519905258499972],[1704064,68158592,11272298579605019,11272305289278916],[1704064,68190336,-13247606222252656,-13247602666336360],[1704064,68288520,-21846713226576023,-21846705126012580],[1704064,68288576,11272300812248450,11272303056635485],[1704064,68289536,11272300873839524,11272302995044411],[1704064,68321280,-11272302995044411,-11272300873839524],[1704064,68681736,3950603919085972,3950606120324188],[1704064,68682752,-3950606120324188,-3950603919085972],[1704064,68714496,24519905365967204,24519907391505747],[1704064,68812936,-13247605061713792,-13247603826875223],[1704064,68812992,-13247605066971786,-13247603821617226],[1704064,68813952,18593996439502170,18594001258855540],[1704064,69206016,22544603251852693,22544604485915178],[1704064,69337216,-3950606098159314,-3950603941250842],[1704064,69861376,26495207805375563,26495209971802464],[1704064,70254720,26495207805375563,26495209971802464],[1704064,70778880,-3950606098159314,-3950603941250842],[1704064,70910080,22544603251852693,22544604485915178],[1704064,134217736,49039810287641238,49039815227304660],[1704064,134217792,1975301885638544,1975303134066536],[1704064,134218752,1975301917236486,1975303102468593],[1704064,134250496,1975301917270118,1975303102434961],[1704064,134348936,-3950608451914177,-3950601587495984],[1704064,134348992,-24519907464403207,-24519905293069738],[1704064,134349952,17198204925419946,17198214002579226],[1704064,134381696,-24519907391505747,-24519905365967204],[1704064,134742152,26495207799184865,26495209977993164],[1704064,134742208,26495207799425147,26495209977752878],[1704064,134743168,11272298183630328,11272305685253609],[1704064,134873096,26495207784975390,26495209992202640],[1704064,134874112,-26495209992202640,-26495207784975390],[1704064,134905856,26495207861603338,26495209915574692],[1704064,135266440,26495207784975390,26495209992202640],[1704064,135267456,-26495209992202640,-26495207784975390],[1704064,135299200,26495207861603338,26495209915574692],[1704064,135397384,26495207799184865,26495209977993164],[1704064,135397440,26495207799425147,26495209977752878],[1704064,135398400,11272298183630328,11272305685253609],[1704064,135790600,-3950608451914177,-3950601587495984],[1704064,135790656,-24519907464403207,-24519905293069738],[1704064,135791616,17198204925419946,17198214002579226],[1704064,135823360,-24519907391505747,-24519905365967204],[1704064,135921800,49039810287641238,49039815227304660],[1704064,135921856,1975301885638544,1975303134066536],[1704064,135922816,1975301917236486,1975303102468593],[1704064,135954560,1975301917270118,1975303102434961],[1704064,136446080,52990415906156016,52990419648200040],[1704064,136839296,-26495209977993164,-26495207799184865],[1704064,136970240,-26495209971802464,-26495207805375563],[1704064,137363584,-26495209971802464,-26495207805375563],[1704064,137494528,-26495209977993164,-26495207799184865],[1704064,137887744,52990415906156016,52990419648200040],[1704064,201326592,22544603248067364,22544604489700504],[1704064,201457792,-3950606107262344,-3950603932147814],[1704064,201981952,26495207799404518,26495209977773508],[1704064,202375296,26495207799404518,26495209977773508],[1704064,202899456,-3950606107262344,-3950603932147814],[1704064,203030656,22544603248067364,22544604489700504],[1704064,268435464,-22544606653723935,-22544601084043932],[1704064,268435520,11272301161387192,11272302707496740],[1704064,268436480,-22544606585988845,-22544601151779026],[1704064,268468224,11272301204057192,11272302664826744],[1704064,268566664,-24519909487239803,-24519903270233145],[1704064,268566720,-932612782,932612781],[1704064,268567680,-24519908352868090,-24519904404604862],[1704064,268599424,-873779583,873779583],[1704064,268959880,8599102631895649,8599106832103938],[1704064,268959936,-6623803337001160,-6623801107293350],[1704064,268960896,-6623804221568240,-6623800222726267],[1704064,268992640,17896103248910824,17896105064267619],[1704064,269090824,-6623804322724415,-6623800121570091],[1704064,269090880,17896103187855503,17896105125322940],[1704064,269091840,8599101685162166,8599107778837422],[1704064,269123584,-6623803284330947,-6623801159963560],[1704064,269484168,-6623804322724415,-6623800121570091],[1704064,269484224,17896103187855503,17896105125322940],[1704064,269485184,8599101685162166,8599107778837422],[1704064,269516928,-6623803284330947,-6623801159963560],[1704064,269615112,8599102631895649,8599106832103938],[1704064,269615168,-6623803337001160,-6623801107293350],[1704064,269616128,-6623804221568240,-6623800222726267],[1704064,269647872,17896103248910824,17896105064267619],[1704064,270008328,-24519909487239803,-24519903270233145],[1704064,270008384,-932612782,932612781],[1704064,270009344,-24519908352868090,-24519904404604862],[1704064,270041088,-873779583,873779583],[1704064,270139528,-22544606653723935,-22544601084043932],[1704064,270139584,11272301161387192,11272302707496740],[1704064,270140544,-22544606585988845,-22544601151779026],[1704064,270172288,11272301204057192,11272302664826744],[1704064,270532608,-24519907156493900,-24519905600979050],[1704064,270663808,-24519907464643494,-24519905292829457],[1704064,271057024,-929670021,929670022],[1704064,271187968,-923386045,923386045],[1704064,271581312,-923386045,923386045],[1704064,271712256,-929670021,929670022],[1704064,272105472,-24519907464643494,-24519905292829457],[1704064,272236672,-24519907156493900,-24519905600979050],[1704064,335544320,-9297000198160808,-9296998651018048],[1704064,335675520,22544602323661876,22544605414105996],[1704064,336068736,17198207846590140,17198211081409034],[1704064,336199680,-49039814979929732,-49039810535016170],[1704064,336593024,-49039814979929732,-49039810535016170],[1704064,336723968,17198207846590140,17198211081409034],[1704064,337117184,22544602323661876,22544605414105996],[1704064,337248384,-9297000198160808,-9296998651018048],[1704064,402653184,-24519907159915920,-24519905597557028],[1704064,402784384,-49039814910578252,-49039810604367646],[1704064,403177600,1975300962522527,1975304057182551],[1704064,403308544,22544602330282044,22544605407485828],[1704064,403701888,22544602330282044,22544605407485828],[1704064,403832832,1975300962522527,1975304057182551],[1704064,404226048,-49039814910578252,-49039810604367646],[1704064,404357248,-24519907159915920,-24519905597557028],[1704074,130,1975301885115096,1975303134589986],[1704074,136,-1975303134589986,-1975301885115096],[1704074,131074,22544603251852693,22544604485915178],[1704074,131080,-22544604485915178,-22544603251852693],[1704074,524290,-1975306059254087,-1975298960450994],[1704074,524296,-6623806745939431,-6623797698355075],[1704074,524416,-4648500367937248,-4648499056652179],[1704074,524426,-13247605101666952,-13247603786922062],[1704074,655360,13247603786922062,13247605101666952],[1704074,655370,4648499056652179,4648500367937248],[1704074,655490,31143705012464284,31143712189303175],[1704074,655496,-22544606482912750,-22544601254855122],[1704074,1048578,-22544606482912750,-22544601254855122],[1704074,1048584,31143705012464284,31143712189303175],[1704074,1048704,4648499056652179,4648500367937248],[1704074,1048714,13247603786922062,13247605101666952],[1704074,1179648,-13247605101666952,-13247603786922062],[1704074,1179658,-4648500367937248,-4648499056652179],[1704074,1179778,-6623806745939431,-6623797698355075],[1704074,1179784,-1975306059254087,-1975298960450994],[1704074,1572994,-22544604485915178,-22544603251852693],[1704074,1573000,22544603251852693,22544604485915178],[1704074,1703938,-1975303134589986,-1975301885115096],[1704074,1703944,1975301885115096,1975303134589986],[1704076,132,1975301908323058,1975303111382023],[1704076,136,-1975303111382023,-1975301908323058],[1704076,131076,1975301912872117,1975303106832961],[1704076,131080,-1975303106832961,-1975301912872117],[1704076,524292,13247601033521515,13247607855067498],[1704076,524296,-9297003724271436,-9296995124907418],[1704076,524416,-1975303106832961,-1975301912872117],[1704076,524428,1975301908323058,1975303111382023],[1704076,655360,-1975303111382023,-1975301908323058],[1704076,655372,1975301912872117,1975303106832961],[1704076,655492,13247601033521515,13247607855067498],[1704076,655496,-17198211985863560,-17198206942135612],[1704076,1048580,-17198211985863560,-17198206942135612],[1704076,1048584,13247601033521515,13247607855067498],[1704076,1048704,1975301912872117,1975303106832961],[1704076,1048716,-1975303111382023,-1975301908323058],[1704076,1179648,1975301908323058,1975303111382023],[1704076,1179660,-1975303106832961,-1975301912872117],[1704076,1179780,-9297003724271436,-9296995124907418],[1704076,1179784,13247601033521515,13247607855067498],[1704076,1572996,-1975303106832961,-1975301912872117],[1704076,1573000,1975301912872117,1975303106832961],[1704076,1703940,-1975303111382023,-1975301908323058],[1704076,1703944,1975301908323058,1975303111382023],[1704130,131074,1975301885638543,1975303134066535],[1704130,131136,-1975303134066535,-1975301885638543],[1704130,524290,-6623803346277521,-6623801098016984],[1704130,524352,6623801098016984,6623803346277521],[1704130,655490,-4648500367937248,-4648499056652179],[1704130,655552,4648499056652179,4648500367937248],[1704130,1048578,4648499056652179,4648500367937248],[1704130,1048640,-4648500367937248,-4648499056652179],[1704130,1179778,6623801098016984,6623803346277521],[1704130,1179840,-6623803346277521,-6623801098016984],[1704130,1572994,-1975303134066535,-1975301885638543],[1704130,1573056,1975301885638543,1975303134066535],[1704136,72,-13247605066127948,-13247603822461068],[1704136,136,13247603822461068,13247605066127948],[1704136,131080,-1975303134066535,-1975301885638543],[1704136,131136,-9297000663454110,-9296998185724745],[1704136,131200,11272300226701508,11272303642182425],[1704136,524296,8599102950409964,8599106513589621],[1704136,524352,26495207121529005,26495210655649026],[1704136,524416,-33119013675829617,-33119008545642919],[1704136,524488,1975301852392980,1975303167312100],[1704136,655360,-1975303167312100,-1975301852392980],[1704136,655432,8599102944565871,8599106519433716],[1704136,655496,-3950606322255178,-3950603717154982],[1704136,655552,-6623803535249348,-6623800909045159],[1704136,1048584,-6623803535249348,-6623800909045159],[1704136,1048640,-3950606322255178,-3950603717154982],[1704136,1048704,8599102944565871,8599106519433716],[1704136,1048776,-1975303167312100,-1975301852392980],[1704136,1179648,1975301852392980,1975303167312100],[1704136,1179720,-33119013675829617,-33119008545642919],[1704136,1179784,26495207121529005,26495210655649026],[1704136,1179840,8599102950409964,8599106513589621],[1704136,1572936,11272300226701508,11272303642182425],[1704136,1573000,-9297000663454110,-9296998185724745],[1704136,1573056,-1975303134066535,-1975301885638543],[1704136,1704000,13247603822461068,13247605066127948],[1704136,1704064,-13247605066127948,-13247603822461068],[1704192,1032,-13247605066127948,-13247603822461068],[1704192,1152,13247603822461068,13247605066127948],[1704192,33792,-13247605033169427,-13247603855419588],[1704192,131328,1975300803621296,1975304216083780],[1704192,131520,1975301917270118,1975303102434961],[1704192,132416,1975301917270118,1975303102434961],[1704192,132480,45089206614383552,45089208861152192],[1704192,132864,1975301885638543,1975303134066535],[1704192,134400,22544603251852693,22544604485915178],[1704192,524544,-1975304216083780,-1975300803621296],[1704192,524736,-6623803284297315,-6623801159997192],[1704192,525632,-1975303102434961,-1975301917270118],[1704192,525696,-47064511822048211,-47064508673192612],[1704192,526080,-1975303134066535,-1975301885638543],[1704192,527616,-22544604485915178,-22544603251852693],[1704192,655552,4648499087000812,4648500337588616],[1704192,656392,-13247605066127948,-13247603822461068],[1704192,656512,15222905739731186,15222908168562909],[1704192,689152,-13247605033169427,-13247603855419588],[1704192,1049024,4648499087000812,4648500337588616],[1704192,1049864,-13247605066127948,-13247603822461068],[1704192,1049984,15222905739731186,15222908168562909],[1704192,1082624,-13247605033169427,-13247603855419588],[1704192,1179648,-1975304216083780,-1975300803621296],[1704192,1179840,-6623803284297315,-6623801159997192],[1704192,1180736,-1975303102434961,-1975301917270118],[1704192,1180800,-47064511822048211,-47064508673192612],[1704192,1181184,-1975303134066535,-1975301885638543],[1704192,1182720,-22544604485915178,-22544603251852693],[1704192,1572864,1975300803621296,1975304216083780],[1704192,1573056,1975301917270118,1975303102434961],[1704192,1573952,1975301917270118,1975303102434961],[1704192,1574016,45089206614383552,45089208861152192],[1704192,1574400,1975301885638543,1975303134066535],[1704192,1575936,22544603251852693,22544604485915178],[1704192,1705224,-13247605066127948,-13247603822461068],[1704192,1705344,13247603822461068,13247605066127948],[1704192,1737984,-13247605033169427,-13247603855419588],[1704192,2229504,-24519907464643493,-24519905292829456],[1704192,2622720,24519905292829456,24519907464643493],[1704192,3277824,24519905292829456,24519907464643493],[1704192,3671040,-24519907464643493,-24519905292829456],[1704192,67109888,-13247605066971786,-13247603821617226],[1704192,67765248,-13247605066971786,-13247603821617226],[1704192,68158720,-13247605066971786,-13247603821617226],[1704192,68814080,-13247605066971786,-13247603821617226],[1704192,134350080,-24519907468051532,-24519905289421414],[1704192,134743296,24519905289421414,24519907468051532],[1704192,135398400,24519905289421414,24519907468051532],[1704192,135791616,-24519907468051532,-24519905289421414],[1704192,268436480,13247603821617226,13247605066971786],[1704192,269091840,13247603821617226,13247605066971786],[1704192,269485312,13247603821617226,13247605066971786],[1704192,270140672,13247603821617226,13247605066971786],[1704384,131136,-1975303102434961,-1975301917270118],[1704384,131328,1975301917270118,1975303102434961],[1704384,524352,6623801159997192,6623803284297315],[1704384,524544,-6623803284297315,-6623801159997192],[1704384,655552,4648499087000812,4648500337588616],[1704384,655744,-4648500337588616,-4648499087000812],[1704384,1048640,-4648500337588616,-4648499087000812],[1704384,1048832,4648499087000812,4648500337588616],[1704384,1179840,-6623803284297315,-6623801159997192],[1704384,1180032,6623801159997192,6623803284297315],[1704384,1573056,1975301917270118,1975303102434961],[1704384,1573248,-1975303102434961,-1975301917270118],[1704448,132864,-1975303134066535,-1975301885638543],[1704448,134656,-22544604485915178,-22544603251852693],[1704448,526080,1975301885638543,1975303134066535],[1704448,527872,22544603251852693,22544604485915178],[1704448,1180928,1975301885638543,1975303134066535],[1704448,1182720,22544603251852693,22544604485915178],[1704448,1574144,-1975303134066535,-1975301885638543],[1704448,1575936,-22544604485915178,-22544603251852693],[1704448,2230784,-1975303127512530,-1975301892192549],[1704448,2624000,1975301892192549,1975303127512530],[1704448,3278848,1975301892192549,1975303127512530],[1704448,3672064,-1975303127512530,-1975301892192549],[1704960,0,-49039814800838354,-49039810714107552],[1704960,136,26495207692945056,26495210084232978],[1704960,264,13247603822461068,13247605066127948],[1704960,384,-13247605066127948,-13247603822461068],[1704960,2056,13247603817961795,13247605070627222],[1704960,2176,-13247605070627222,-13247603817961795],[1704960,32896,26495207753551168,26495210023626872],[1704960,33024,13247603855419588,13247605033169427],[1704960,34816,13247603851021587,13247605037567427],[1704960,132096,-311472436788867910,-311472393130811843],[1704960,132232,-47064513169575377,-47064507325665441],[1704960,132288,-1975303102434961,-1975301917270118],[1704960,132480,-47064511822048211,-47064508673192612],[1704960,134272,-47064511840212707,-47064508655028107],[1704960,134400,-24519907464643493,-24519905292829456],[1704960,164872,-24519907414185673,-24519905343287280],[1704960,164992,24519905343287280,24519907414185673],[1704960,525312,296947377306566843,296947428089998092],[1704960,525448,7321690308104443,7321703521369331],[1704960,525504,6623801159997192,6623803284297315],[1704960,525696,49039810732001672,49039814782944230],[1704960,527488,49039810709439166,49039814805506726],[1704960,527616,24519905292829456,24519907464643493],[1704960,558088,24519905343287280,24519907414185673],[1704960,558208,-17896106200962633,-17896102112215810],[1704960,655360,-34514803440217642,-34514797551613446],[1704960,655496,66238017807040958,66238026635904120],[1704960,655552,-4648500337588616,-4648499087000812],[1704960,655624,13247603822461068,13247605066127948],[1704960,655744,-15222908168562909,-15222905739731186],[1704960,657416,13247603817961795,13247605070627222],[1704960,657536,-15222908177460183,-15222905730833912],[1704960,688256,19871405230482798,19871408102400732],[1704960,688384,13247603855419588,13247605033169427],[1704960,690176,13247603851021587,13247605037567427],[1704960,1049600,-34514803440217642,-34514797551613446],[1704960,1049736,66238017807040958,66238026635904120],[1704960,1049792,-4648500337588616,-4648499087000812],[1704960,1049864,13247603822461068,13247605066127948],[1704960,1049984,-15222908168562909,-15222905739731186],[1704960,1051656,13247603817961795,13247605070627222],[1704960,1051776,-15222908177460183,-15222905730833912],[1704960,1082496,19871405230482798,19871408102400732],[1704960,1082624,13247603855419588,13247605033169427],[1704960,1084416,13247603851021587,13247605037567427],[1704960,1179648,296947377306566843,296947428089998092],[1704960,1179784,7321690308104443,7321703521369331],[1704960,1179840,6623801159997192,6623803284297315],[1704960,1180032,49039810732001672,49039814782944230],[1704960,1181824,49039810709439166,49039814805506726],[1704960,1181952,24519905292829456,24519907464643493],[1704960,1212424,24519905343287280,24519907414185673],[1704960,1212544,-17896106200962633,-17896102112215810],[1704960,1572864,-311472436788867910,-311472393130811843],[1704960,1573000,-47064513169575377,-47064507325665441],[1704960,1573056,-1975303102434961,-1975301917270118],[1704960,1573248,-47064511822048211,-47064508673192612],[1704960,1575040,-47064511840212707,-47064508655028107],[1704960,1575168,-24519907464643493,-24519905292829456],[1704960,1605640,-24519907414185673,-24519905343287280],[1704960,1605760,24519905343287280,24519907414185673],[1704960,1704960,-49039814800838354,-49039810714107552],[1704960,1705096,26495207692945056,26495210084232978],[1704960,1705224,13247603822461068,13247605066127948],[1704960,1705344,-13247605066127948,-13247603822461068],[1704960,1707016,13247603817961795,13247605070627222],[1704960,1707136,-13247605070627222,-13247603817961795],[1704960,1737856,26495207753551168,26495210023626872],[1704960,1737984,13247603855419588,13247605033169427],[1704960,1739776,13247603851021587,13247605037567427],[1704960,2097160,-13247605070627222,-13247603817961795],[1704960,2097280,11272300713657228,11272303155226711],[1704960,2129920,-13247605037567427,-13247603851021587],[1704960,2229376,49039810709439166,49039814805506726],[1704960,2229504,24519905292829456,24519907464643493],[1704960,2231296,22544602288119128,22544605449648746],[1704960,2622592,-51015117331445277,-51015113203205693],[1704960,2622720,-24519907464643493,-24519905292829456],[1704960,2624512,-22544605449648746,-22544602288119128],[1704960,2752520,-13247605070627222,-13247603817961795],[1704960,2752640,13247603817961795,13247605070627222],[1704960,2785280,-13247605037567427,-13247603851021587],[1704960,3146760,-13247605070627222,-13247603817961795],[1704960,3146880,13247603817961795,13247605070627222],[1704960,3179520,-13247605037567427,-13247603851021587],[1704960,3276928,-51015117331445277,-51015113203205693],[1704960,3277056,-24519907464643493,-24519905292829456],[1704960,3278848,-22544605449648746,-22544602288119128],[1704960,3670144,49039810709439166,49039814805506726],[1704960,3670272,24519905292829456,24519907464643493],[1704960,3672064,22544602288119128,22544605449648746],[1704960,3802120,-13247605070627222,-13247603817961795],[1704960,3802240,11272300713657228,11272303155226711],[1704960,3834880,-13247605037567427,-13247603851021587],[1704960,67108992,26495207710771912,26495210066406118],[1704960,67109120,13247603821617226,13247605066971786],[1704960,67110912,13247603826875223,13247605061713792],[1704960,67240968,-3950606120324188,-3950603919085972],[1704960,67241088,3950603919085972,3950606120324188],[1704960,67273728,-24519907391505747,-24519905365967204],[1704960,67634184,3950603919085972,3950606120324188],[1704960,67634304,-15222909115368599,-15222904792925496],[1704960,67666944,24519905365967204,24519907391505747],[1704960,67764352,37767509188400696,37767512457661269],[1704960,67764480,13247603821617226,13247605066971786],[1704960,67766272,13247603826875223,13247605061713792],[1704960,68158592,37767509188400696,37767512457661269],[1704960,68158720,13247603821617226,13247605066971786],[1704960,68160512,13247603826875223,13247605061713792],[1704960,68288520,3950603919085972,3950606120324188],[1704960,68288640,-15222909115368599,-15222904792925496],[1704960,68321280,24519905365967204,24519907391505747],[1704960,68681736,-3950606120324188,-3950603919085972],[1704960,68681856,3950603919085972,3950606120324188],[1704960,68714496,-24519907391505747,-24519905365967204],[1704960,68813952,26495207710771912,26495210066406118],[1704960,68814080,13247603821617226,13247605066971786],[1704960,68815872,13247603826875223,13247605061713792],[1704960,69206016,-13247605061713792,-13247603826875223],[1704960,69861376,-13247605061713792,-13247603826875223],[1704960,70255616,-13247605061713792,-13247603826875223],[1704960,70910976,-13247605061713792,-13247603826875223],[1704960,134217736,-13247605066127948,-13247603822461068],[1704960,134217856,11272300719992475,11272303148891462],[1704960,134250496,-13247605033169427,-13247603855419588],[1704960,134349952,49039810732001672,49039814782944230],[1704960,134350080,24519905289421414,24519907468051532],[1704960,134351872,24519905292829456,24519907464643493],[1704960,134743168,-51015117307046807,-51015113227604174],[1704960,134743296,-24519907468051532,-24519905289421414],[1704960,134745088,-24519907464643493,-24519905292829456],[1704960,134873096,-13247605066127948,-13247603822461068],[1704960,134873216,13247603822461068,13247605066127948],[1704960,134905856,-13247605033169427,-13247603855419588],[1704960,135267336,-13247605066127948,-13247603822461068],[1704960,135267456,13247603822461068,13247605066127948],[1704960,135300096,-13247605033169427,-13247603855419588],[1704960,135397504,-51015117307046807,-51015113227604174],[1704960,135397632,-24519907468051532,-24519905289421414],[1704960,135399424,-24519907464643493,-24519905292829456],[1704960,135790720,49039810732001672,49039814782944230],[1704960,135790848,24519905289421414,24519907468051532],[1704960,135792640,24519905292829456,24519907464643493],[1704960,135922696,-13247605066127948,-13247603822461068],[1704960,135922816,11272300719992475,11272303148891462],[1704960,135955456,-13247605033169427,-13247603855419588],[1704960,136446976,-24519907464643493,-24519905292829456],[1704960,136840192,24519905292829456,24519907464643493],[1704960,137494528,24519905292829456,24519907464643493],[1704960,137887744,-24519907464643493,-24519905292829456],[1704960,201326592,-13247605066971786,-13247603821617226],[1704960,201981952,-13247605066971786,-13247603821617226],[1704960,202376192,-13247605066971786,-13247603821617226],[1704960,203031552,-13247605066971786,-13247603821617226],[1704960,268435584,-24519907696178166,-24519905061294785],[1704960,268435712,-13247605066971786,-13247603821617226],[1704960,268437504,-13247605061713792,-13247603826875223],[1704960,268567560,3950603919085972,3950606120324188],[1704960,268567680,-3950606995955408,-3950603043454752],[1704960,268600320,24519905365967204,24519907391505747],[1704960,268960776,-3950606120324188,-3950603919085972],[1704960,268960896,10574405079083164,10574409404621503],[1704960,268993536,-24519907391505747,-24519905365967204],[1704960,269090944,-31143710097437046,-31143707104330412],[1704960,269091072,-13247605066971786,-13247603821617226],[1704960,269092864,-13247605061713792,-13247603826875223],[1704960,269485184,-31143710097437046,-31143707104330412],[1704960,269485312,-13247605066971786,-13247603821617226],[1704960,269487104,-13247605061713792,-13247603826875223],[1704960,269615112,-3950606120324188,-3950603919085972],[1704960,269615232,10574405079083164,10574409404621503],[1704960,269647872,-24519907391505747,-24519905365967204],[1704960,270008328,3950603919085972,3950606120324188],[1704960,270008448,-3950606995955408,-3950603043454752],[1704960,270041088,24519905365967204,24519907391505747],[1704960,270140544,-24519907696178166,-24519905061294785],[1704960,270140672,-13247605066971786,-13247603821617226],[1704960,270142464,-13247605061713792,-13247603826875223],[1704960,270532608,13247603826875223,13247605061713792],[1704960,271187968,13247603826875223,13247605061713792],[1704960,271582208,13247603826875223,13247605061713792],[1704960,272237568,13247603826875223,13247605061713792],[1704960,335676416,-18594000555019592,-18593997143338122],[1704960,336069632,18593997143338122,18594000555019592],[1704960,336723968,18593997143338122,18594000555019592],[1704960,337117184,-18594000555019592,-18593997143338122],[1704960,402653184,13247603821617226,13247605066971786],[1704960,403308544,13247603821617226,13247605066971786],[1704960,403702784,13247603821617226,13247605066971786],[1704960,404358144,13247603821617226,13247605066971786],[1704970,1026,-1975303134589986,-1975301885115096],[1704970,1032,1975301885115096,1975303134589986],[1704970,656386,-1975303134589986,-1975301885115096],[1704970,656392,1975301885115096,1975303134589986],[1704970,1048578,1975301885115096,1975303134589986],[1704970,1048584,-1975303134589986,-1975301885115096],[1704970,1703938,1975301885115096,1975303134589986],[1704970,1703944,-1975303134589986,-1975301885115096],[1704972,1028,-1975303111382023,-1975301908323058],[1704972,1032,1975301908323058,1975303111382023],[1704972,656388,-1975303111382023,-1975301908323058],[1704972,656392,1975301908323058,1975303111382023],[1704972,1048580,1975301908323058,1975303111382023],[1704972,1048584,-1975303111382023,-1975301908323058],[1704972,1703940,1975301908323058,1975303111382023],[1704972,1703944,-1975303111382023,-1975301908323058],[1705096,136,26495207692945056,26495210084232978],[1705096,1032,67633806609648820,67633816603654788],[1705096,1152,-3950606273531284,-3950603765878878],[1705096,131080,-45089208874918688,-45089206600617048],[1705096,131200,20569298570795129,20569304147267651],[1705096,132096,-69609119710487749,-69609108522520937],[1705096,132232,-3950606273531284,-3950603765878878],[1705096,524296,20569298570795129,20569304147267651],[1705096,524416,-58336815178304206,-58336809185820542],[1705096,525312,15222903999406109,15222909908887987],[1705096,525448,67633806609648820,67633816603654788],[1705096,655360,26495207692945056,26495210084232978],[1705096,655496,-9297000684250004,-9296998164928852],[1705096,656392,15222903999406109,15222909908887987],[1705096,656512,-69609119710487749,-69609108522520937],[1705096,1048584,-69609119710487749,-69609108522520937],[1705096,1048704,15222903999406109,15222909908887987],[1705096,1049600,-9297000684250004,-9296998164928852],[1705096,1049736,26495207692945056,26495210084232978],[1705096,1179648,67633806609648820,67633816603654788],[1705096,1179784,15222903999406109,15222909908887987],[1705096,1180680,-58336815178304206,-58336809185820542],[1705096,1180800,20569298570795129,20569304147267651],[1705096,1572864,-3950606273531284,-3950603765878878],[1705096,1573000,-69609119710487749,-69609108522520937],[1705096,1573896,20569298570795129,20569304147267651],[1705096,1574016,-45089208874918688,-45089206600617048],[1705096,1703944,-3950606273531284,-3950603765878878],[1705096,1704064,67633806609648820,67633816603654788],[1705096,1704960,26495207692945056,26495210084232978],[1705152,1088,1975301885115096,1975303134589986],[1705152,1152,-1975303134589986,-1975301885115096],[1705152,131136,-45089208861152192,-45089206614383552],[1705152,131200,47064508673192612,47064511822048211],[1705152,132096,-3950606237024947,-3950603802385214],[1705152,132288,-1975303134589986,-1975301885115096],[1705152,524352,47064508673192612,47064511822048211],[1705152,524416,-53688314809080322,-53688310130455008],[1705152,525312,8599103045112288,8599106418887301],[1705152,525504,1975301885115096,1975303134589986],[1705152,655552,-4648500337588616,-4648499087000812],[1705152,656448,8599103045112288,8599106418887301],[1705152,656512,-3950606237024947,-3950603802385214],[1705152,1048640,-3950606237024947,-3950603802385214],[1705152,1048704,8599103045112288,8599106418887301],[1705152,1049600,-4648500337588616,-4648499087000812],[1705152,1179648,1975301885115096,1975303134589986],[1705152,1179840,8599103045112288,8599106418887301],[1705152,1180736,-53688314809080322,-53688310130455008],[1705152,1180800,47064508673192612,47064511822048211],[1705152,1572864,-1975303134589986,-1975301885115096],[1705152,1573056,-3950606237024947,-3950603802385214],[1705152,1573952,47064508673192612,47064511822048211],[1705152,1574016,-45089208861152192,-45089206614383552],[1705152,1704000,-1975303134589986,-1975301885115096],[1705152,1704064,1975301885115096,1975303134589986],[1705224,264,13247603822461068,13247605066127948],[1705224,1032,-13247605066127948,-13247603822461068],[1705224,131328,-13247605066127948,-13247603822461068],[1705224,132096,13247603822461068,13247605066127948],[1705224,1573128,13247603822461068,13247605066127948],[1705224,1573896,-13247605066127948,-13247603822461068],[1705224,1704192,-13247605066127948,-13247603822461068],[1705224,1704960,13247603822461068,13247605066127948],[1705280,131136,-1975303102434961,-1975301917270118],[1705280,131328,1975301917270118,1975303102434961],[1705280,524352,1975301917270118,1975303102434961],[1705280,524544,-1975303102434961,-1975301917270118],[1705280,1180736,-1975303102434961,-1975301917270118],[1705280,1180928,1975301917270118,1975303102434961],[1705280,1573952,1975301917270118,1975303102434961],[1705280,1574144,-1975303102434961,-1975301917270118],[1705344,384,-13247605066127948,-13247603822461068],[1705344,1152,13247603822461068,13247605066127948],[1705344,131200,1975301917270118,1975303102434961],[1705344,131328,18593996485739860,18594001212617856],[1705344,132096,-7321700200255013,-7321693629218766],[1705344,132480,13247603822461068,13247605066127948],[1705344,524416,-1975303102434961,-1975301917270118],[1705344,524544,-7321700200255013,-7321693629218766],[1705344,525312,-3950609227302328,-3950600812107830],[1705344,525696,-13247605066127948,-13247603822461068],[1705344,655744,-1975303102434961,-1975301917270118],[1705344,656512,1975301917270118,1975303102434961],[1705344,1048832,1975301917270118,1975303102434961],[1705344,1049600,-1975303102434961,-1975301917270118],[1705344,1179648,-13247605066127948,-13247603822461068],[1705344,1180032,-3950609227302328,-3950600812107830],[1705344,1180800,-7321700200255013,-7321693629218766],[1705344,1180928,-1975303102434961,-1975301917270118],[1705344,1572864,13247603822461068,13247605066127948],[1705344,1573248,-7321700200255013,-7321693629218766],[1705344,1574016,18593996485739860,18594001212617856],[1705344,1574144,1975301917270118,1975303102434961],[1705344,1704192,13247603822461068,13247605066127948],[1705344,1704960,-13247605066127948,-13247603822461068],[1705728,131328,1975301885638543,1975303134066535],[1705728,131584,-1975303134066535,-1975301885638543],[1705728,524544,-1975303134066535,-1975301885638543],[1705728,524800,1975301885638543,1975303134066535],[1705728,1180928,1975301885638543,1975303134066535],[1705728,1181184,-1975303134066535,-1975301885638543],[1705728,1574144,-1975303134066535,-1975301885638543],[1705728,1574400,1975301885638543,1975303134066535],[1705984,1032,-13247605070627222,-13247603817961795],[1705984,1152,13247603817961795,13247605070627222],[1705984,33792,-13247605037567427,-13247603851021587],[1705984,133120,3950601784483124,3950608254927041],[1705984,134272,45089206600617048,45089208874918688],[1705984,134400,1975301885638543,1975303134066535],[1705984,134656,22544603251852693,22544604485915178],[1705984,526336,-3950608254927041,-3950601784483124],[1705984,527488,-47064511840212707,-47064508655028107],[1705984,527616,-1975303134066535,-1975301885638543],[1705984,527872,-22544604485915178,-22544603251852693],[1705984,656392,-13247605070627222,-13247603817961795],[1705984,656512,15222905730833912,15222908177460183],[1705984,689152,-13247605037567427,-13247603851021587],[1705984,1051656,-13247605070627222,-13247603817961795],[1705984,1051776,15222905730833912,15222908177460183],[1705984,1084416,-13247605037567427,-13247603851021587],[1705984,1179648,-3950608254927041,-3950601784483124],[1705984,1180800,-47064511840212707,-47064508655028107],[1705984,1180928,-1975303134066535,-1975301885638543],[1705984,1181184,-22544604485915178,-22544603251852693],[1705984,1572864,3950601784483124,3950608254927041],[1705984,1574016,45089206600617048,45089208874918688],[1705984,1574144,1975301885638543,1975303134066535],[1705984,1574400,22544603251852693,22544604485915178],[1705984,1707016,-13247605070627222,-13247603817961795],[1705984,1707136,13247603817961795,13247605070627222],[1705984,1739776,-13247605037567427,-13247603851021587],[1705984,2097160,-13247605080544438,-13247603808044578],[1705984,2097280,13247603808044578,13247605080544438],[1705984,2129920,-13247605036737943,-13247603851851071],[1705984,2230784,1975301892192549,1975303127512530],[1705984,2231296,-3950608254927041,-3950601784483124],[1705984,2624000,-1975303127512530,-1975301892192549],[1705984,2624512,3950601784483124,3950608254927041],[1705984,2752520,-13247605080544438,-13247603808044578],[1705984,2752640,13247603808044578,13247605080544438],[1705984,2785280,-13247605036737943,-13247603851851071],[1705984,3147784,-13247605080544438,-13247603808044578],[1705984,3147904,13247603808044578,13247605080544438],[1705984,3180544,-13247605036737943,-13247603851851071],[1705984,3277312,-1975303127512530,-1975301892192549],[1705984,3277824,3950601784483124,3950608254927041],[1705984,3670528,1975301892192549,1975303127512530],[1705984,3671040,-3950608254927041,-3950601784483124],[1705984,3803144,-13247605080544438,-13247603808044578],[1705984,3803264,13247603808044578,13247605080544438],[1705984,3835904,-13247605036737943,-13247603851851071],[1705984,33688576,1975301912872117,1975303106832961],[1705984,34081792,-1975303106832961,-1975301912872117],[1705984,34735104,-1975303106832961,-1975301912872117],[1705984,35128320,1975301912872117,1975303106832961],[1705984,35784704,1975301915400511,1975303104304567],[1705984,36177920,-1975303104304567,-1975301915400511],[1705984,36831232,-1975303104304567,-1975301915400511],[1705984,37224448,1975301915400511,1975303104304567],[1705984,67109888,-13247605061713792,-13247603826875223],[1705984,67765248,-13247605061713792,-13247603826875223],[1705984,68160512,-13247605061713792,-13247603826875223],[1705984,68815872,-13247605061713792,-13247603826875223],[1705984,69206016,-13247605060886466,-13247603827702546],[1705984,69861376,-13247605060886466,-13247603827702546],[1705984,70256640,-13247605060886466,-13247603827702546],[1705984,70912000,-13247605060886466,-13247603827702546],[1705984,134351872,-24519907464643493,-24519905292829456],[1705984,134745088,24519905292829456,24519907464643493],[1705984,135398400,24519905292829456,24519907464643493],[1705984,135791616,-24519907464643493,-24519905292829456],[1705984,136448000,-3950606098159314,-3950603941250842],[1705984,136841216,3950603941250842,3950606098159314],[1705984,137494528,3950603941250842,3950606098159314],[1705984,137887744,-3950606098159314,-3950603941250842],[1705984,268436480,13247603826875223,13247605061713792],[1705984,269091840,13247603826875223,13247605061713792],[1705984,269487104,13247603826875223,13247605061713792],[1705984,270142464,13247603826875223,13247605061713792],[1705984,270532608,13247603827702546,13247605060886466],[1705984,271187968,13247603827702546,13247605060886466],[1705984,271583232,13247603827702546,13247605060886466],[1705984,272238592,13247603827702546,13247605060886466],[1705984,539101184,1975301892192548,1975303127512529],[1705984,539494400,-1975303127512529,-1975301892192548],[1705984,540147712,-1975303127512529,-1975301892192548],[1705984,540540928,1975301892192548,1975303127512529],[1705984,549758044160,22544603305492866,22544604432275006],[1705984,549758437376,-22544604432275006,-22544603305492866],[1705984,549759090688,-22544604432275006,-22544603305492866],[1705984,549759483904,22544603305492866,22544604432275006],[1707016,1032,-13247605070627222,-13247603817961795],[1707016,2056,13247603817961795,13247605070627222],[1707016,132096,13247603817961795,13247605070627222],[1707016,133120,-13247605070627222,-13247603817961795],[1707016,1573896,-13247605070627222,-13247603817961795],[1707016,1574920,13247603817961795,13247605070627222],[1707016,1704960,13247603817961795,13247605070627222],[1707016,1705984,-13247605070627222,-13247603817961795],[1707136,1152,13247603817961795,13247605070627222],[1707136,2176,-13247605070627222,-13247603817961795],[1707136,131200,1975301912872117,1975303106832961],[1707136,132096,-7321700242729086,-7321693586744675],[1707136,133120,18593996452163044,18594001246194656],[1707136,134272,13247603817961795,13247605070627222],[1707136,524416,-1975303106832961,-1975301912872117],[1707136,525312,-3950609278673694,-3950600760736484],[1707136,526336,-7321700242729086,-7321693586744675],[1707136,527488,-13247605070627222,-13247603817961795],[1707136,656512,1975301912872117,1975303106832961],[1707136,657536,-1975303106832961,-1975301912872117],[1707136,1049600,-1975303106832961,-1975301912872117],[1707136,1050624,1975301912872117,1975303106832961],[1707136,1179648,-13247605070627222,-13247603817961795],[1707136,1180800,-7321700242729086,-7321693586744675],[1707136,1181824,-3950609278673694,-3950600760736484],[1707136,1182720,-1975303106832961,-1975301912872117],[1707136,1572864,13247603817961795,13247605070627222],[1707136,1574016,18593996452163044,18594001246194656],[1707136,1575040,-7321700242729086,-7321693586744675],[1707136,1575936,1975301912872117,1975303106832961],[1707136,1704960,-13247605070627222,-13247603817961795],[1707136,1705984,13247603817961795,13247605070627222],[1707264,131328,22544603251852693,22544604485915178],[1707264,132096,-24519907464643493,-24519905292829456],[1707264,133120,1975301885638543,1975303134066535],[1707264,524544,-22544604485915178,-22544603251852693],[1707264,525312,24519905292829456,24519907464643493],[1707264,526336,-1975303134066535,-1975301885638543],[1707264,1180928,-1975303134066535,-1975301885638543],[1707264,1181952,24519905292829456,24519907464643493],[1707264,1182720,-22544604485915178,-22544603251852693],[1707264,1574144,1975301885638543,1975303134066535],[1707264,1575168,-24519907464643493,-24519905292829456],[1707264,1575936,22544603251852693,22544604485915178],[1707520,131584,-22544604485915178,-22544603251852693],[1707520,133120,22544603251852693,22544604485915178],[1707520,524800,22544603251852693,22544604485915178],[1707520,526336,-22544604485915178,-22544603251852693],[1707520,1181184,-22544604485915178,-22544603251852693],[1707520,1182720,22544603251852693,22544604485915178],[1707520,1574400,22544603251852693,22544604485915178],[1707520,1575936,-22544604485915178,-22544603251852693],[1736704,132,22544603293425280,22544604444342592],[1736704,136,-22544604444342592,-22544603293425280],[1736704,1028,-22544604444342592,-22544603293425280],[1736704,1032,22544603293425280,22544604444342592],[1736704,163972,22544603293425280,22544604444342592],[1736704,163976,-22544604444342592,-22544603293425280],[1736704,164868,-22544604444342592,-22544603293425280],[1736704,164872,22544603293425280,22544604444342592],[1736704,557068,28470509817570824,28470512979312287],[1736704,558208,28470509817570824,28470512979312287],[1736704,655372,-28470512979312287,-28470509817570824],[1736704,656512,-28470512979312287,-28470509817570824],[1736704,1081356,-28470512979312287,-28470509817570824],[1736704,1082496,-28470512979312287,-28470509817570824],[1736704,1179660,28470509817570824,28470512979312287],[1736704,1180800,28470509817570824,28470512979312287],[1736704,1572996,22544603293425280,22544604444342592],[1736704,1573000,-22544604444342592,-22544603293425280],[1736704,1573892,-22544604444342592,-22544603293425280],[1736704,1573896,22544603293425280,22544604444342592],[1736704,1736836,22544603293425280,22544604444342592],[1736704,1736840,-22544604444342592,-22544603293425280],[1736704,1737732,-22544604444342592,-22544603293425280],[1736704,1737736,22544603293425280,22544604444342592],[1736704,2097156,-22544604432275006,-22544603305492866],[1736704,2097160,22544603305492866,22544604432275006],[1736704,2260996,-22544604432275006,-22544603305492866],[1736704,2261000,22544603305492866,22544604432275006],[1736704,2654336,26495207853670452,26495209923507576],[1736704,2655232,-26495209923507576,-26495207853670452],[1736704,2752640,-26495209923507576,-26495207853670452],[1736704,2753536,26495207853670452,26495209923507576],[1736704,3178624,-26495209923507576,-26495207853670452],[1736704,3179520,26495207853670452,26495209923507576],[1736704,3276928,26495207853670452,26495209923507576],[1736704,3277824,-26495209923507576,-26495207853670452],[1736704,3670020,-22544604432275006,-22544603305492866],[1736704,3670024,22544603305492866,22544604432275006],[1736704,3833860,-22544604432275006,-22544603305492866],[1736704,3833864,22544603305492866,22544604432275006],[1736704,67108992,-22544604430576096,-22544603307191776],[1736704,67109888,22544603307191776,22544604430576096],[1736704,67272832,-22544604430576096,-22544603307191776],[1736704,67273728,22544603307191776,22544604430576096],[1736704,67665924,26495207861603338,26495209915574692],[1736704,67665928,-26495209915574692,-26495207861603338],[1736704,67764228,-26495209915574692,-26495207861603338],[1736704,67764232,26495207861603338,26495209915574692],[1736704,68190212,-26495209915574692,-26495207861603338],[1736704,68190216,26495207861603338,26495209915574692],[1736704,68288516,26495207861603338,26495209915574692],[1736704,68288520,-26495209915574692,-26495207861603338],[1736704,68681856,-22544604430576096,-22544603307191776],[1736704,68682752,22544603307191776,22544604430576096],[1736704,68845696,-22544604430576096,-22544603307191776],[1736704,68846592,22544603307191776,22544604430576096],[1736704,134217732,-22544604430576096,-22544603307191776],[1736704,134217736,22544603307191776,22544604430576096],[1736704,134381572,-22544604430576096,-22544603307191776],[1736704,134381576,22544603307191776,22544604430576096],[1736704,134774912,26495207861603338,26495209915574692],[1736704,134775808,-26495209915574692,-26495207861603338],[1736704,134873216,-26495209915574692,-26495207861603338],[1736704,134874112,26495207861603338,26495209915574692],[1736704,135299200,-26495209915574692,-26495207861603338],[1736704,135300096,26495207861603338,26495209915574692],[1736704,135397504,26495207861603338,26495209915574692],[1736704,135398400,-26495209915574692,-26495207861603338],[1736704,135790596,-22544604430576096,-22544603307191776],[1736704,135790600,22544603307191776,22544604430576096],[1736704,135954436,-22544604430576096,-22544603307191776],[1736704,135954440,22544603307191776,22544604430576096],[1736704,268435460,22544603307191776,22544604430576096],[1736704,268435464,-22544604430576096,-22544603307191776],[1736704,268599300,22544603307191776,22544604430576096],[1736704,268599304,-22544604430576096,-22544603307191776],[1736704,268992640,-26495209915574692,-26495207861603338],[1736704,268993536,26495207861603338,26495209915574692],[1736704,269090944,26495207861603338,26495209915574692],[1736704,269091840,-26495209915574692,-26495207861603338],[1736704,269516928,26495207861603338,26495209915574692],[1736704,269517824,-26495209915574692,-26495207861603338],[1736704,269615232,-26495209915574692,-26495207861603338],[1736704,269616128,26495207861603338,26495209915574692],[1736704,270008324,22544603307191776,22544604430576096],[1736704,270008328,-22544604430576096,-22544603307191776],[1736704,270172164,22544603307191776,22544604430576096],[1736704,270172168,-22544604430576096,-22544603307191776],[1736704,1073741952,22544603307191776,22544604430576096],[1736704,1073742848,-22544604430576096,-22544603307191776],[1736704,1073905792,22544603307191776,22544604430576096],[1736704,1073906688,-22544604430576096,-22544603307191776],[1736704,1074298884,-26495209915574692,-26495207861603338],[1736704,1074298888,26495207861603338,26495209915574692],[1736704,1074397188,26495207861603338,26495209915574692],[1736704,1074397192,-26495209915574692,-26495207861603338],[1736704,1074823172,26495207861603338,26495209915574692],[1736704,1074823176,-26495209915574692,-26495207861603338],[1736704,1074921476,-26495209915574692,-26495207861603338],[1736704,1074921480,26495207861603338,26495209915574692],[1736704,1075314816,22544603307191776,22544604430576096],[1736704,1075315712,-22544604430576096,-22544603307191776],[1736704,1075478656,22544603307191776,22544604430576096],[1736704,1075479552,-22544604430576096,-22544603307191776],[1736709,524289,-13247605033169427,-13247603855419588],[1736709,524292,13247603855419588,13247605033169427],[1736709,688129,-13247605033169427,-13247603855419588],[1736709,688132,13247603855419588,13247605033169427],[1736709,1048577,13247603855419588,13247605033169427],[1736709,1048580,-13247605033169427,-13247603855419588],[1736709,1212417,13247603855419588,13247605033169427],[1736709,1212420,-13247605033169427,-13247603855419588],[1736714,524290,13247603855419588,13247605033169427],[1736714,524296,-13247605033169427,-13247603855419588],[1736714,688130,13247603855419588,13247605033169427],[1736714,688136,-13247605033169427,-13247603855419588],[1736714,1048578,-13247605033169427,-13247603855419588],[1736714,1048584,13247603855419588,13247605033169427],[1736714,1212418,-13247605033169427,-13247603855419588],[1736714,1212424,13247603855419588,13247605033169427],[1736716,524292,22544601541194970,22544606196572912],[1736716,524296,-26495210023626872,-26495207753551168],[1736716,557056,3950603827053960,3950606212356198],[1736716,655372,-3950606212356198,-3950603827053960],[1736716,688132,26495207753551168,26495210023626872],[1736716,688136,-22544606196572912,-22544601541194970],[1736716,1048580,-22544606196572912,-22544601541194970],[1736716,1048584,26495207753551168,26495210023626872],[1736716,1081344,-3950606212356198,-3950603827053960],[1736716,1179660,3950603827053960,3950606212356198],[1736716,1212420,-26495210023626872,-26495207753551168],[1736716,1212424,22544601541194970,22544606196572912],[1736836,132,22544603293425280,22544604444342592],[1736836,32896,-22544604444342592,-22544603293425280],[1736836,524292,-24519907414185673,-24519905343287280],[1736836,557056,24519905343287280,24519907414185673],[1736836,655492,-1975303111382023,-1975301908323058],[1736836,688256,1975301908323058,1975303111382023],[1736836,1048580,1975301908323058,1975303111382023],[1736836,1081344,-1975303111382023,-1975301908323058],[1736836,1179780,24519905343287280,24519907414185673],[1736836,1212544,-24519907414185673,-24519905343287280],[1736836,1703940,-22544604444342592,-22544603293425280],[1736836,1736704,22544603293425280,22544604444342592],[1736840,136,-22544604444342592,-22544603293425280],[1736840,32776,-13247605037567427,-13247603851021587],[1736840,32896,11272300739639564,11272303129244369],[1736840,131080,13247603851021587,13247605037567427],[1736840,131200,11272300305719853,11272303563164086],[1736840,524296,11272300305719853,11272303563164086],[1736840,524416,13247603851021587,13247605037567427],[1736840,557056,-24519908088594729,-24519904668878218],[1736840,557192,-24519908088594729,-24519904668878218],[1736840,655360,-2449893888,2449893882],[1736840,655496,26495207626385616,26495210150792412],[1736840,688136,-13247605037567427,-13247603851021587],[1736840,688256,11272300739639564,11272303129244369],[1736840,1048584,11272300739639564,11272303129244369],[1736840,1048704,-13247605037567427,-13247603851021587],[1736840,1081344,26495207626385616,26495210150792412],[1736840,1081480,-2449893888,2449893882],[1736840,1179648,-24519908088594729,-24519904668878218],[1736840,1179784,-24519908088594729,-24519904668878218],[1736840,1212424,13247603851021587,13247605037567427],[1736840,1212544,11272300305719853,11272303563164086],[1736840,1605640,11272300305719853,11272303563164086],[1736840,1605760,13247603851021587,13247605037567427],[1736840,1703944,11272300739639564,11272303129244369],[1736840,1704064,-13247605037567427,-13247603851021587],[1736840,1736704,-22544604444342592,-22544603293425280],[1736896,32832,-13247605033169427,-13247603855419588],[1736896,32896,13247603855419588,13247605033169427],[1736896,131136,13247603855419588,13247605033169427],[1736896,131200,-13247605033169427,-13247603855419588],[1736896,1605696,-13247605033169427,-13247603855419588],[1736896,1605760,13247603855419588,13247605033169427],[1736896,1704000,13247603855419588,13247605033169427],[1736896,1704064,-13247605033169427,-13247603855419588],[1737732,1028,-22544604444342592,-22544603293425280],[1737732,33792,22544603293425280,22544604444342592],[1737732,656388,-22544604444342592,-22544603293425280],[1737732,689152,22544603293425280,22544604444342592],[1737732,1048580,22544603293425280,22544604444342592],[1737732,1081344,-22544604444342592,-22544603293425280],[1737732,1703940,22544603293425280,22544604444342592],[1737732,1736704,-22544604444342592,-22544603293425280],[1737736,1032,22544603293425280,22544604444342592],[1737736,33792,1975301908323058,1975303111382023],[1737736,132096,-24519907414185673,-24519905343287280],[1737736,558088,24519905343287280,24519907414185673],[1737736,656392,-1975303111382023,-1975301908323058],[1737736,689152,-22544604444342592,-22544603293425280],[1737736,1048584,-22544604444342592,-22544603293425280],[1737736,1081344,-1975303111382023,-1975301908323058],[1737736,1179648,24519905343287280,24519907414185673],[1737736,1605640,-24519907414185673,-24519905343287280],[1737736,1703944,1975301908323058,1975303111382023],[1737736,1736704,22544603293425280,22544604444342592],[1737856,32896,26495207753551168,26495210023626872],[1737856,33792,-22544606196572912,-22544601541194970],[1737856,131200,-26495210023626872,-26495207753551168],[1737856,132096,22544601541194970,22544606196572912],[1737856,558208,3950603827053960,3950606212356198],[1737856,656512,-3950606212356198,-3950603827053960],[1737856,1081344,-3950606212356198,-3950603827053960],[1737856,1179648,3950603827053960,3950606212356198],[1737856,1605760,22544601541194970,22544606196572912],[1737856,1606656,-26495210023626872,-26495207753551168],[1737856,1704064,-22544606196572912,-22544601541194970],[1737856,1704960,26495207753551168,26495210023626872],[1737984,33024,13247603855419588,13247605033169427],[1737984,33792,-13247605033169427,-13247603855419588],[1737984,131328,-13247605033169427,-13247603855419588],[1737984,132096,13247603855419588,13247605033169427],[1737984,1605888,13247603855419588,13247605033169427],[1737984,1606656,-13247605033169427,-13247603855419588],[1737984,1704192,-13247605033169427,-13247603855419588],[1737984,1704960,13247603855419588,13247605033169427],[1739776,33792,-13247605037567427,-13247603851021587],[1739776,34816,13247603851021587,13247605037567427],[1739776,132096,13247603851021587,13247605037567427],[1739776,133120,-13247605037567427,-13247603851021587],[1739776,1606656,-13247605037567427,-13247603851021587],[1739776,1607680,13247603851021587,13247605037567427],[1739776,1704960,13247603851021587,13247605037567427],[1739776,1705984,-13247605037567427,-13247603851021587],[2097154,2880,-1975303127512529,-1975301892192548],[2097154,3208,13247603827702546,13247605060886466],[2097154,3264,13247603826875223,13247605061713792],[2097154,3392,-22544604485915178,-22544603251852693],[2097154,1049736,13247603826875223,13247605061713792],[2097154,1049792,13247603821511848,13247605067077166],[2097154,1049920,-1975303134066536,-1975301885638544],[2097154,1573000,-22544604485915178,-22544603251852693],[2097154,1573056,-1975303134066535,-1975301885638543],[2097154,1703944,-1975303127512530,-1975301892192549],[2097154,2100034,-1975303127512529,-1975301892192548],[2097154,2100362,13247603827702546,13247605060886466],[2097154,2100418,13247603826875223,13247605061713792],[2097154,2100546,-22544604485915178,-22544603251852693],[2097154,3146890,13247603826875223,13247605061713792],[2097154,3146946,13247603821511848,13247605067077166],[2097154,3147074,-1975303134066536,-1975301885638544],[2097154,3670154,-22544604485915178,-22544603251852693],[2097154,3670210,-1975303134066535,-1975301885638543],[2097154,3801098,-1975303127512530,-1975301892192549],[2097156,3208,13247603851851071,13247605036737943],[2097156,1049736,13247603851021587,13247605037567427],[2097156,1573000,-1975303106832961,-1975301912872117],[2097156,1703944,-1975303104304567,-1975301915400511],[2097156,1736704,-22544604432275006,-22544603305492866],[2097156,2100364,13247603851851071,13247605036737943],[2097156,3146892,13247603851021587,13247605037567427],[2097156,3670156,-1975303106832961,-1975301912872117],[2097156,3801100,-1975303104304567,-1975301915400511],[2097156,3833860,-22544604432275006,-22544603305492866],[2097160,1152,3950601784483124,3950608254927041],[2097160,2176,1975300387251397,1975304632453679],[2097160,3072,-13247606143034927,-13247602745554085],[2097160,3202,-13247605060886466,-13247603827702546],[2097160,3204,-13247605036737943,-13247603851851071],[2097160,3264,-13247605061713792,-13247603826875223],[2097160,3456,22544603251852693,22544604485915178],[2097160,3712,1975301892192548,1975303127512529],[2097160,134272,-13247605080544438,-13247603808044578],[2097160,524416,-13247606157000801,-13247602731588215],[2097160,527488,-13247605070627222,-13247603817961795],[2097160,655360,-13247606143034927,-13247602745554085],[2097160,1048704,3950600760736484,3950609278673694],[2097160,1049600,-13247606157000801,-13247602731588215],[2097160,1049730,-13247605061713792,-13247603826875223],[2097160,1049732,-13247605037567427,-13247603851021587],[2097160,1049792,-13247605067077166,-13247603821511848],[2097160,1049984,1975301885638544,1975303134066536],[2097160,1051776,49039810258190782,49039815256755116],[2097160,1179648,1975300387251397,1975304632453679],[2097160,1180800,-13247605070627222,-13247603817961795],[2097160,1572864,3950601784483124,3950608254927041],[2097160,1572994,22544603251852693,22544604485915178],[2097160,1572996,1975301912872117,1975303106832961],[2097160,1573056,1975301885638543,1975303134066535],[2097160,1574016,18593996452163044,18594001246194656],[2097160,1575040,-13247605070627222,-13247603817961795],[2097160,1703938,1975301892192549,1975303127512530],[2097160,1703940,1975301915400511,1975303104304567],[2097160,1704064,49039810258190782,49039815256755116],[2097160,1704960,-13247605070627222,-13247603817961795],[2097160,1705984,-13247605080544438,-13247603808044578],[2097160,1736704,22544603305492866,22544604432275006],[2097160,2098312,3950601784483124,3950608254927041],[2097160,2099336,1975300387251397,1975304632453679],[2097160,2100232,-13247606143034927,-13247602745554085],[2097160,2100362,-13247605060886466,-13247603827702546],[2097160,2100364,-13247605036737943,-13247603851851071],[2097160,2100424,-13247605061713792,-13247603826875223],[2097160,2100616,22544603251852693,22544604485915178],[2097160,2100872,1975301892192548,1975303127512529],[2097160,2231432,-13247605080544438,-13247603808044578],[2097160,2621576,-13247606157000801,-13247602731588215],[2097160,2624648,-13247605070627222,-13247603817961795],[2097160,2752520,-13247606143034927,-13247602745554085],[2097160,3145864,3950600760736484,3950609278673694],[2097160,3146760,-13247606157000801,-13247602731588215],[2097160,3146890,-13247605061713792,-13247603826875223],[2097160,3146892,-13247605037567427,-13247603851021587],[2097160,3146952,-13247605067077166,-13247603821511848],[2097160,3147144,1975301885638544,1975303134066536],[2097160,3148936,49039810258190782,49039815256755116],[2097160,3276808,1975300387251397,1975304632453679],[2097160,3277960,-13247605070627222,-13247603817961795],[2097160,3670024,3950601784483124,3950608254927041],[2097160,3670154,22544603251852693,22544604485915178],[2097160,3670156,1975301912872117,1975303106832961],[2097160,3670216,1975301885638543,1975303134066535],[2097160,3671176,18593996452163044,18594001246194656],[2097160,3672200,-13247605070627222,-13247603817961795],[2097160,3801098,1975301892192549,1975303127512530],[2097160,3801100,1975301915400511,1975303104304567],[2097160,3801224,49039810258190782,49039815256755116],[2097160,3802120,-13247605070627222,-13247603817961795],[2097160,3803144,-13247605080544438,-13247603808044578],[2097160,3833864,22544603305492866,22544604432275006],[2097160,33557632,22544603305492866,22544604432275006],[2097160,35654792,22544603305492866,22544604432275006],[2097160,68812800,1975301892192548,1975303127512529],[2097160,70909960,1975301892192548,1975303127512529],[2097160,135267456,1975301885638543,1975303134066535],[2097160,135790720,-13247605067077166,-13247603821511848],[2097160,135921664,-13247605061713792,-13247603826875223],[2097160,137364616,1975301885638543,1975303134066535],[2097160,137887880,-13247605067077166,-13247603821511848],[2097160,138018824,-13247605061713792,-13247603826875223],[2097160,270008448,1975301885638544,1975303134066536],[2097160,270139392,22544603251852693,22544604485915178],[2097160,272105608,1975301885638544,1975303134066536],[2097160,272236552,22544603251852693,22544604485915178],[2097160,536874112,1975301892192549,1975303127512530],[2097160,537920640,22544603251852693,22544604485915178],[2097160,538443904,-13247605061713792,-13247603826875223],[2097160,538574848,-13247605060886466,-13247603827702546],[2097160,538971272,1975301892192549,1975303127512530],[2097160,540017800,22544603251852693,22544604485915178],[2097160,540541064,-13247605061713792,-13247603826875223],[2097160,540672008,-13247605060886466,-13247603827702546],[2097160,549755817088,1975301915400511,1975303104304567],[2097160,549756863616,1975301912872117,1975303106832961],[2097160,549757386880,-13247605037567427,-13247603851021587],[2097160,549757517824,-13247605036737943,-13247603851851071],[2097160,549757914248,1975301915400511,1975303104304567],[2097160,549758960776,1975301912872117,1975303106832961],[2097160,549759484040,-13247605037567427,-13247603851021587],[2097160,549759614984,-13247605036737943,-13247603851851071],[2097216,2818,1975301892192548,1975303127512529],[2097216,3202,-13247605061713792,-13247603826875223],[2097216,3208,-13247605060886466,-13247603827702546],[2097216,3330,22544603251852693,22544604485915178],[2097216,1049730,-13247605067077166,-13247603821511848],[2097216,1049736,-13247605061713792,-13247603826875223],[2097216,1049858,1975301885638544,1975303134066536],[2097216,1572994,1975301885638543,1975303134066535],[2097216,1573000,22544603251852693,22544604485915178],[2097216,1704064,1975301892192549,1975303127512530],[2097216,2100034,1975301892192548,1975303127512529],[2097216,2100418,-13247605061713792,-13247603826875223],[2097216,2100424,-13247605060886466,-13247603827702546],[2097216,2100546,22544603251852693,22544604485915178],[2097216,3146946,-13247605067077166,-13247603821511848],[2097216,3146952,-13247605061713792,-13247603826875223],[2097216,3147074,1975301885638544,1975303134066536],[2097216,3670210,1975301885638543,1975303134066535],[2097216,3670216,22544603251852693,22544604485915178],[2097216,3801280,1975301892192549,1975303127512530],[2097280,1032,-3950608254927041,-3950601784483124],[2097280,2056,-1975304632453679,-1975300387251397],[2097280,3144,26495207805375563,26495209971802464],[2097280,3336,-22544604485915178,-22544603251852693],[2097280,3592,-1975303127512529,-1975301892192548],[2097280,524296,13247602731588215,13247606157000801],[2097280,527368,26495207776804167,26495210000373866],[2097280,655360,17198207762730769,17198211165268399],[2097280,1048584,-3950609278673694,-3950600760736484],[2097280,1049672,26495207799184865,26495209977993164],[2097280,1049864,-1975303134066536,-1975301885638544],[2097280,1051656,-49039815256755116,-49039810258190782],[2097280,1179648,-1975305338051185,-1975299681653896],[2097280,1572936,-24519907464643493,-24519905292829456],[2097280,1573896,-7321700242729086,-7321693586744675],[2097280,1574920,13247603817961795,13247605070627222],[2097280,1703944,-3950606276156332,-3950603763253824],[2097280,1704000,-1975303127512530,-1975301892192549],[2097280,1704960,11272300713657228,11272303155226711],[2097280,1705984,13247603808044578,13247605080544438],[2097280,2098312,-3950608254927041,-3950601784483124],[2097280,2099336,-1975304632453679,-1975300387251397],[2097280,2100424,26495207805375563,26495209971802464],[2097280,2100616,-22544604485915178,-22544603251852693],[2097280,2100872,-1975303127512529,-1975301892192548],[2097280,2621576,13247602731588215,13247606157000801],[2097280,2624648,26495207776804167,26495210000373866],[2097280,2752640,17198207762730769,17198211165268399],[2097280,3145864,-3950609278673694,-3950600760736484],[2097280,3146952,26495207799184865,26495209977993164],[2097280,3147144,-1975303134066536,-1975301885638544],[2097280,3148936,-49039815256755116,-49039810258190782],[2097280,3276928,-1975305338051185,-1975299681653896],[2097280,3670216,-24519907464643493,-24519905292829456],[2097280,3671176,-7321700242729086,-7321693586744675],[2097280,3672200,13247603817961795,13247605070627222],[2097280,3801224,-3950606276156332,-3950603763253824],[2097280,3801280,-1975303127512530,-1975301892192549],[2097280,3802240,11272300713657228,11272303155226711],[2097280,3803264,13247603808044578,13247605080544438],[2097280,33557512,-22544604432275006,-22544603305492866],[2097280,35654792,-22544604432275006,-22544603305492866],[2097280,135267336,-1975303134066535,-1975301885638543],[2097280,135790600,13247603821511848,13247605067077166],[2097280,135921664,13247603826875223,13247605061713792],[2097280,137364616,-1975303134066535,-1975301885638543],[2097280,137887880,13247603821511848,13247605067077166],[2097280,138018944,13247603826875223,13247605061713792],[2097280,270008328,-1975303134066536,-1975301885638544],[2097280,270139392,-24519907156493899,-24519905600979049],[2097280,272105608,-1975303134066536,-1975301885638544],[2097280,272236672,-24519907156493899,-24519905600979049],[2097280,536873992,-1975303127512530,-1975301892192549],[2097280,537920520,-22544604485915178,-22544603251852693],[2097280,538443784,13247603826875223,13247605061713792],[2097280,538574848,13247603827702546,13247605060886466],[2097280,538971272,-1975303127512530,-1975301892192549],[2097280,540017800,-22544604485915178,-22544603251852693],[2097280,540541064,13247603826875223,13247605061713792],[2097280,540672128,13247603827702546,13247605060886466],[2097280,549755816968,-1975303104304567,-1975301915400511],[2097280,549756863496,-1975303106832961,-1975301912872117],[2097280,549757386760,13247603851021587,13247605037567427],[2097280,549757517824,13247603851851071,13247605036737943],[2097280,549757914248,-1975303104304567,-1975301915400511],[2097280,549758960776,-1975303106832961,-1975301912872117],[2097280,549759484040,13247603851021587,13247605037567427],[2097280,549759615104,13247603851851071,13247605036737943],[2097290,3202,-13247605060886466,-13247603827702546],[2097290,3208,13247603827702546,13247605060886466],[2097290,1049730,-13247605061713792,-13247603826875223],[2097290,1049736,13247603826875223,13247605061713792],[2097290,1572994,22544603251852693,22544604485915178],[2097290,1573000,-22544604485915178,-22544603251852693],[2097290,2100226,13247603827702546,13247605060886466],[2097290,2100232,-13247605060886466,-13247603827702546],[2097290,3146754,13247603826875223,13247605061713792],[2097290,3146760,-13247605061713792,-13247603826875223],[2097290,3670018,-22544604485915178,-22544603251852693],[2097290,3670024,22544603251852693,22544604485915178],[2097292,3204,-13247605036737943,-13247603851851071],[2097292,3208,13247603851851071,13247605036737943],[2097292,1049732,-13247605037567427,-13247603851021587],[2097292,1049736,13247603851021587,13247605037567427],[2097292,1572996,1975301912872117,1975303106832961],[2097292,1573000,-1975303106832961,-1975301912872117],[2097292,2100228,13247603851851071,13247605036737943],[2097292,2100232,-13247605036737943,-13247603851851071],[2097292,3146756,13247603851021587,13247605037567427],[2097292,3146760,-13247605037567427,-13247603851021587],[2097292,3670020,-1975303106832961,-1975301912872117],[2097292,3670024,1975301912872117,1975303106832961],[2097346,3202,-13247605061713792,-13247603826875223],[2097346,3264,13247603826875223,13247605061713792],[2097346,1049730,-13247605067077166,-13247603821511848],[2097346,1049792,13247603821511848,13247605067077166],[2097346,1572994,1975301885638543,1975303134066535],[2097346,1573056,-1975303134066535,-1975301885638543],[2097346,2100226,13247603826875223,13247605061713792],[2097346,2100288,-13247605061713792,-13247603826875223],[2097346,3146754,13247603821511848,13247605067077166],[2097346,3146816,-13247605067077166,-13247603821511848],[2097346,3670018,-1975303134066535,-1975301885638543],[2097346,3670080,1975301885638543,1975303134066535],[2097352,3144,26495207805375563,26495209971802464],[2097352,3208,-13247605060886466,-13247603827702546],[2097352,3264,-13247605061713792,-13247603826875223],[2097352,1049672,26495207799184865,26495209977993164],[2097352,1049736,-13247605061713792,-13247603826875223],[2097352,1049792,-13247605067077166,-13247603821511848],[2097352,1572936,-24519907464643493,-24519905292829456],[2097352,1573000,22544603251852693,22544604485915178],[2097352,1573056,1975301885638543,1975303134066535],[2097352,2100232,-13247605061713792,-13247603826875223],[2097352,2100288,-13247605060886466,-13247603827702546],[2097352,2100352,26495207805375563,26495209971802464],[2097352,3146760,-13247605067077166,-13247603821511848],[2097352,3146816,-13247605061713792,-13247603826875223],[2097352,3146880,26495207799184865,26495209977993164],[2097352,3670024,1975301885638543,1975303134066535],[2097352,3670080,22544603251852693,22544604485915178],[2097352,3670144,-24519907464643493,-24519905292829456],[2097474,2818,1975301892192548,1975303127512529],[2097474,2880,-1975303127512529,-1975301892192548],[2097474,3330,22544603251852693,22544604485915178],[2097474,3392,-22544604485915178,-22544603251852693],[2097474,1049858,1975301885638544,1975303134066536],[2097474,1049920,-1975303134066536,-1975301885638544],[2097474,2099714,-1975303127512529,-1975301892192548],[2097474,2099776,1975301892192548,1975303127512529],[2097474,2100226,-22544604485915178,-22544603251852693],[2097474,2100288,22544603251852693,22544604485915178],[2097474,3146754,-1975303134066536,-1975301885638544],[2097474,3146816,1975301885638544,1975303134066536],[2097544,3336,-26495209971802464,-26495207805375563],[2097544,3456,26495207805375563,26495209971802464],[2097544,1049864,-26495209977993164,-26495207799184865],[2097544,1049984,26495207799184865,26495209977993164],[2097544,2100232,26495207805375563,26495209971802464],[2097544,2100352,-26495209971802464,-26495207805375563],[2097544,3146760,26495207799184865,26495209977993164],[2097544,3146880,-26495209977993164,-26495207799184865],[2097922,2112,-1975303127512529,-1975301892192548],[2097922,2370,-1975303127512529,-1975301892192548],[2097922,2099776,-1975303127512529,-1975301892192548],[2097922,2100034,-1975303127512529,-1975301892192548],[2097984,2050,1975301892192548,1975303127512529],[2097984,2370,1975301892192548,1975303127512529],[2097984,2099714,1975301892192548,1975303127512529],[2097984,2100034,1975301892192548,1975303127512529],[2098176,2056,13247602745554085,13247606143034927],[2098176,655360,-3950605491232570,-3950604548177586],[2098176,1048584,13247602731588215,13247606157000801],[2098176,1179648,-26495211840725034,-26495205936452994],[2098176,1573000,1975301912872117,1975303106832961],[2098176,1704064,1975301915400511,1975303104304567],[2098176,2100232,13247602745554085,13247606143034927],[2098176,2753536,-3950605491232570,-3950604548177586],[2098176,3146760,13247602731588215,13247606157000801],[2098176,3277824,-26495211840725034,-26495205936452994],[2098176,3671176,1975301912872117,1975303106832961],[2098176,3802240,1975301915400511,1975303104304567],[2098248,2176,-26495209971802464,-26495207805375563],[2098248,2248,-26495209971802464,-26495207805375563],[2098248,1048704,-26495209977993164,-26495207799184865],[2098248,1048776,-26495209977993164,-26495207799184865],[2098248,2100352,-26495209971802464,-26495207805375563],[2098248,2100424,-26495209971802464,-26495207805375563],[2098248,3146880,-26495209977993164,-26495207799184865],[2098248,3146952,-26495209977993164,-26495207799184865],[2098306,2056,13247603827702546,13247605060886466],[2098306,2112,13247603826875223,13247605061713792],[2098306,2186,13247603827702546,13247605060886466],[2098306,2242,13247603826875223,13247605061713792],[2098306,1048584,13247603826875223,13247605061713792],[2098306,1048640,13247603821511848,13247605067077166],[2098306,1048714,13247603826875223,13247605061713792],[2098306,1048770,13247603821511848,13247605067077166],[2098306,2100232,13247603827702546,13247605060886466],[2098306,2100288,13247603826875223,13247605061713792],[2098306,2100362,13247603827702546,13247605060886466],[2098306,2100418,13247603826875223,13247605061713792],[2098306,3146760,13247603826875223,13247605061713792],[2098306,3146816,13247603821511848,13247605067077166],[2098306,3146890,13247603826875223,13247605061713792],[2098306,3146946,13247603821511848,13247605067077166],[2098308,2056,13247603851851071,13247605036737943],[2098308,2188,13247603851851071,13247605036737943],[2098308,1048584,13247603851021587,13247605037567427],[2098308,1048716,13247603851021587,13247605037567427],[2098308,2100232,13247603851851071,13247605036737943],[2098308,2100364,13247603851851071,13247605036737943],[2098308,3146760,13247603851021587,13247605037567427],[2098308,3146892,13247603851021587,13247605037567427],[2098312,1032,-3950608254927041,-3950601784483124],[2098312,1152,3950601784483124,3950608254927041],[2098312,2050,-13247605060886466,-13247603827702546],[2098312,2052,-13247605036737943,-13247603851851071],[2098312,2112,13247603827702546,13247605060886466],[2098312,2186,-13247605060886466,-13247603827702546],[2098312,2188,-13247605036737943,-13247603851851071],[2098312,2248,13247603827702546,13247605060886466],[2098312,3336,3950603941250842,3950606098159314],[2098312,3456,-3950606098159314,-3950603941250842],[2098312,3592,-1975303127512529,-1975301892192548],[2098312,3712,1975301892192548,1975303127512529],[2098312,133120,-13247605080544438,-13247603808044578],[2098312,133256,-13247605080544438,-13247603808044578],[2098312,526336,13247603808044578,13247605080544438],[2098312,526472,13247603808044578,13247605080544438],[2098312,1048578,-13247605061713792,-13247603826875223],[2098312,1048580,-13247605037567427,-13247603851021587],[2098312,1048640,13247603826875223,13247605061713792],[2098312,1048714,-13247605061713792,-13247603826875223],[2098312,1048716,-13247605037567427,-13247603851021587],[2098312,1048776,13247603826875223,13247605061713792],[2098312,1049864,24519905292829456,24519907464643493],[2098312,1049984,-24519907464643493,-24519905292829456],[2098312,1051656,3950601784483124,3950608254927041],[2098312,1051776,-3950608254927041,-3950601784483124],[2098312,1179648,-13247605070627222,-13247603817961795],[2098312,1179784,-13247605070627222,-13247603817961795],[2098312,1572864,13247603817961795,13247605070627222],[2098312,1573000,15222905730833912,15222908177460183],[2098312,1573896,-47064511840212707,-47064508655028107],[2098312,1574016,45089206600617048,45089208874918688],[2098312,2097160,3950601784483124,3950608254927041],[2098312,2097280,-3950608254927041,-3950601784483124],[2098312,2099464,-3950606098159314,-3950603941250842],[2098312,2099584,3950603941250842,3950606098159314],[2098312,2099720,1975301892192548,1975303127512529],[2098312,2099840,-1975303127512529,-1975301892192548],[2098312,2100226,-13247605060886466,-13247603827702546],[2098312,2100228,-13247605036737943,-13247603851851071],[2098312,2100288,13247603827702546,13247605060886466],[2098312,2100362,-13247605060886466,-13247603827702546],[2098312,2100364,-13247605036737943,-13247603851851071],[2098312,2100424,13247603827702546,13247605060886466],[2098312,2231296,-13247605080544438,-13247603808044578],[2098312,2231432,-13247605080544438,-13247603808044578],[2098312,2624512,13247603808044578,13247605080544438],[2098312,2624648,13247603808044578,13247605080544438],[2098312,3145992,-24519907464643493,-24519905292829456],[2098312,3146112,24519905292829456,24519907464643493],[2098312,3146754,-13247605061713792,-13247603826875223],[2098312,3146756,-13247605037567427,-13247603851021587],[2098312,3146816,13247603826875223,13247605061713792],[2098312,3146890,-13247605061713792,-13247603826875223],[2098312,3146892,-13247605037567427,-13247603851021587],[2098312,3146952,13247603826875223,13247605061713792],[2098312,3147784,-3950608254927041,-3950601784483124],[2098312,3147904,3950601784483124,3950608254927041],[2098312,3277824,-13247605070627222,-13247603817961795],[2098312,3277960,-13247605070627222,-13247603817961795],[2098312,3670024,45089206600617048,45089208874918688],[2098312,3670144,-47064511840212707,-47064508655028107],[2098312,3671040,15222905730833912,15222908177460183],[2098312,3671176,13247603817961795,13247605070627222],[2098312,33557512,-22544604432275006,-22544603305492866],[2098312,33557632,22544603305492866,22544604432275006],[2098312,35653640,22544603305492866,22544604432275006],[2098312,35653760,-22544604432275006,-22544603305492866],[2098312,135267336,-1975303134066535,-1975301885638543],[2098312,135267456,1975301885638543,1975303134066535],[2098312,137363464,1975301885638543,1975303134066535],[2098312,137363584,-1975303134066535,-1975301885638543],[2098312,536873992,-1975303127512530,-1975301892192549],[2098312,536874112,1975301892192549,1975303127512530],[2098312,537920520,-22544604485915178,-22544603251852693],[2098312,537920640,22544603251852693,22544604485915178],[2098312,538970120,1975301892192549,1975303127512530],[2098312,538970240,-1975303127512530,-1975301892192549],[2098312,540016648,22544603251852693,22544604485915178],[2098312,540016768,-22544604485915178,-22544603251852693],[2098312,549755816968,-1975303104304567,-1975301915400511],[2098312,549755817088,1975301915400511,1975303104304567],[2098312,549756863496,-1975303106832961,-1975301912872117],[2098312,549756863616,1975301912872117,1975303106832961],[2098312,549757913096,1975301915400511,1975303104304567],[2098312,549757913216,-1975303104304567,-1975301915400511],[2098312,549758959624,1975301912872117,1975303106832961],[2098312,549758959744,-1975303106832961,-1975301912872117],[2098368,2050,-13247605061713792,-13247603826875223],[2098368,2056,13247603826875223,13247605061713792],[2098368,2242,-13247605061713792,-13247603826875223],[2098368,2248,13247603826875223,13247605061713792],[2098368,1048578,-13247605067077166,-13247603821511848],[2098368,1048584,13247603821511848,13247605067077166],[2098368,1048770,-13247605067077166,-13247603821511848],[2098368,1048776,13247603821511848,13247605067077166],[2098368,2100226,-13247605061713792,-13247603826875223],[2098368,2100232,13247603826875223,13247605061713792],[2098368,2100418,-13247605061713792,-13247603826875223],[2098368,2100424,13247603826875223,13247605061713792],[2098368,3146754,-13247605067077166,-13247603821511848],[2098368,3146760,13247603821511848,13247605067077166],[2098368,3146946,-13247605067077166,-13247603821511848],[2098368,3146952,13247603821511848,13247605067077166],[2098434,2112,-22544604485915178,-22544603251852693],[2098434,2370,-22544604485915178,-22544603251852693],[2098434,1048640,-1975303134066536,-1975301885638544],[2098434,1048898,-1975303134066536,-1975301885638544],[2098434,2100288,-22544604485915178,-22544603251852693],[2098434,2100546,-22544604485915178,-22544603251852693],[2098434,3146816,-1975303134066536,-1975301885638544],[2098434,3147074,-1975303134066536,-1975301885638544],[2098440,2176,22544603251852693,22544604485915178],[2098440,2440,26495207805375563,26495209971802464],[2098440,3208,-3950606098159314,-3950603941250842],[2098440,1048704,1975301885638544,1975303134066536],[2098440,1048968,26495207799184865,26495209977993164],[2098440,1049736,-24519907464643493,-24519905292829456],[2098440,2099584,-3950606098159314,-3950603941250842],[2098440,2100352,26495207805375563,26495209971802464],[2098440,2100616,22544603251852693,22544604485915178],[2098440,3146112,-24519907464643493,-24519905292829456],[2098440,3146880,26495207799184865,26495209977993164],[2098440,3147144,1975301885638544,1975303134066536],[2098496,2050,22544603251852693,22544604485915178],[2098496,2370,22544603251852693,22544604485915178],[2098496,1048578,1975301885638544,1975303134066536],[2098496,1048898,1975301885638544,1975303134066536],[2098496,2100226,22544603251852693,22544604485915178],[2098496,2100546,22544603251852693,22544604485915178],[2098496,3146754,1975301885638544,1975303134066536],[2098496,3147074,1975301885638544,1975303134066536],[2098560,2056,-22544604485915178,-22544603251852693],[2098560,2440,-26495209971802464,-26495207805375563],[2098560,3208,3950603941250842,3950606098159314],[2098560,1048584,-1975303134066536,-1975301885638544],[2098560,1048968,-26495209977993164,-26495207799184865],[2098560,1049736,24519905292829456,24519907464643493],[2098560,2099464,3950603941250842,3950606098159314],[2098560,2100232,-26495209971802464,-26495207805375563],[2098560,2100616,-22544604485915178,-22544603251852693],[2098560,3145992,24519905292829456,24519907464643493],[2098560,3146760,-26495209977993164,-26495207799184865],[2098560,3147144,-1975303134066536,-1975301885638544],[2098696,2176,3950603941250842,3950606098159314],[2098696,3208,3950603941250842,3950606098159314],[2098696,2099840,3950603941250842,3950606098159314],[2098696,2100872,3950603941250842,3950606098159314],[2098816,2056,-3950606098159314,-3950603941250842],[2098816,3208,-3950606098159314,-3950603941250842],[2098816,2099720,-3950606098159314,-3950603941250842],[2098816,2100872,-3950606098159314,-3950603941250842],[2099336,2056,-1975304632453679,-1975300387251397],[2099336,2176,1975300387251397,1975304632453679],[2099336,1051656,-26495210008022388,-26495207769155642],[2099336,1051776,26495207769155642,26495210008022388],[2099336,2097160,1975300387251397,1975304632453679],[2099336,2097280,-1975304632453679,-1975300387251397],[2099336,3146760,26495207769155642,26495210008022388],[2099336,3146880,-26495210008022388,-26495207769155642],[2099464,3208,3950603941250842,3950606098159314],[2099464,3456,-3950606098159314,-3950603941250842],[2099464,2098312,-3950606098159314,-3950603941250842],[2099464,2098560,3950603941250842,3950606098159314],[2099584,3208,-3950606098159314,-3950603941250842],[2099584,3336,3950603941250842,3950606098159314],[2099584,2098312,3950603941250842,3950606098159314],[2099584,2098440,-3950606098159314,-3950603941250842],[2099714,2370,1975301892192548,1975303127512529],[2099714,2880,-1975303127512529,-1975301892192548],[2099714,2097474,-1975303127512529,-1975301892192548],[2099714,2097984,1975301892192548,1975303127512529],[2099720,1672,1975301892192549,1975303127512530],[2099720,3208,-3950606098159314,-3950603941250842],[2099720,3712,1975301892192548,1975303127512529],[2099720,2098312,1975301892192548,1975303127512529],[2099720,2098816,-3950606098159314,-3950603941250842],[2099720,2100352,1975301892192549,1975303127512530],[2099776,2370,-1975303127512529,-1975301892192548],[2099776,2818,1975301892192548,1975303127512529],[2099776,2097474,1975301892192548,1975303127512529],[2099776,2097922,-1975303127512529,-1975301892192548],[2099840,1672,-1975303127512530,-1975301892192549],[2099840,3208,3950603941250842,3950606098159314],[2099840,3592,-1975303127512529,-1975301892192548],[2099840,2098312,-1975303127512529,-1975301892192548],[2099840,2098696,3950603941250842,3950606098159314],[2099840,2100232,-1975303127512530,-1975301892192549],[2100034,2050,1975301892192548,1975303127512529],[2100034,2112,-1975303127512529,-1975301892192548],[2100034,2818,1975301892192548,1975303127512529],[2100034,2880,-1975303127512529,-1975301892192548],[2100034,2097154,-1975303127512529,-1975301892192548],[2100034,2097216,1975301892192548,1975303127512529],[2100034,2097922,-1975303127512529,-1975301892192548],[2100034,2097984,1975301892192548,1975303127512529],[2100226,2186,-13247605060886466,-13247603827702546],[2100226,2242,-13247605061713792,-13247603826875223],[2100226,2370,22544603251852693,22544604485915178],[2100226,3208,13247603827702546,13247605060886466],[2100226,3264,13247603826875223,13247605061713792],[2100226,3392,-22544604485915178,-22544603251852693],[2100226,2097290,13247603827702546,13247605060886466],[2100226,2097346,13247603826875223,13247605061713792],[2100226,2097474,-22544604485915178,-22544603251852693],[2100226,2098312,-13247605060886466,-13247603827702546],[2100226,2098368,-13247605061713792,-13247603826875223],[2100226,2098496,22544603251852693,22544604485915178],[2100228,2188,-13247605036737943,-13247603851851071],[2100228,3208,13247603851851071,13247605036737943],[2100228,2097292,13247603851851071,13247605036737943],[2100228,2098312,-13247605036737943,-13247603851851071],[2100232,640,-1975303127512530,-1975301892192549],[2100232,1672,-1975303127512530,-1975301892192549],[2100232,2056,13247602745554085,13247606143034927],[2100232,2186,13247603827702546,13247605060886466],[2100232,2188,13247603851851071,13247605036737943],[2100232,2248,13247603826875223,13247605061713792],[2100232,2440,-26495209971802464,-26495207805375563],[2100232,3072,-13247606143034927,-13247602745554085],[2100232,3202,-13247605060886466,-13247603827702546],[2100232,3204,-13247605036737943,-13247603851851071],[2100232,3264,-13247605061713792,-13247603826875223],[2100232,3456,26495207805375563,26495209971802464],[2100232,133256,13247603808044578,13247605080544438],[2100232,134272,-13247605080544438,-13247603808044578],[2100232,526472,13247603817961795,13247605070627222],[2100232,527488,-13247605070627222,-13247603817961795],[2100232,1048704,3950603763253824,3950606276156332],[2100232,1049736,-22544605449648746,-22544602288119128],[2100232,1050760,-2231218224,2231218221],[2100232,1051776,26495207776804167,26495210000373866],[2100232,2097160,-13247606143034927,-13247602745554085],[2100232,2097290,-13247605060886466,-13247603827702546],[2100232,2097292,-13247605036737943,-13247603851851071],[2100232,2097352,-13247605061713792,-13247603826875223],[2100232,2097544,26495207805375563,26495209971802464],[2100232,2098176,13247602745554085,13247606143034927],[2100232,2098306,13247603827702546,13247605060886466],[2100232,2098308,13247603851851071,13247605036737943],[2100232,2098368,13247603826875223,13247605061713792],[2100232,2098560,-26495209971802464,-26495207805375563],[2100232,2099840,-1975303127512530,-1975301892192549],[2100232,2100872,-1975303127512530,-1975301892192549],[2100232,2228360,-13247605080544438,-13247603808044578],[2100232,2229376,13247603808044578,13247605080544438],[2100232,2621576,-13247605070627222,-13247603817961795],[2100232,2622592,13247603817961795,13247605070627222],[2100232,3145864,26495207776804167,26495210000373866],[2100232,3146880,-2231218224,2231218221],[2100232,3147904,-22544605449648746,-22544602288119128],[2100232,3148936,3950603763253824,3950606276156332],[2100232,33554560,-1975303104304567,-1975301915400511],[2100232,33555592,-1975303104304567,-1975301915400511],[2100232,35653760,-1975303104304567,-1975301915400511],[2100232,35654792,-1975303104304567,-1975301915400511],[2100232,536871040,1975301892192549,1975303127512530],[2100232,536872072,1975301892192549,1975303127512530],[2100232,538970240,1975301892192549,1975303127512530],[2100232,538971272,1975301892192549,1975303127512530],[2100232,549755814016,1975301915400511,1975303104304567],[2100232,549755815048,1975301915400511,1975303104304567],[2100232,549757913216,1975301915400511,1975303104304567],[2100232,549757914248,1975301915400511,1975303104304567],[2100288,2242,13247603826875223,13247605061713792],[2100288,2248,13247603827702546,13247605060886466],[2100288,2370,-22544604485915178,-22544603251852693],[2100288,3202,-13247605061713792,-13247603826875223],[2100288,3208,-13247605060886466,-13247603827702546],[2100288,3330,22544603251852693,22544604485915178],[2100288,2097346,-13247605061713792,-13247603826875223],[2100288,2097352,-13247605060886466,-13247603827702546],[2100288,2097474,22544603251852693,22544604485915178],[2100288,2098306,13247603826875223,13247605061713792],[2100288,2098312,13247603827702546,13247605060886466],[2100288,2098434,-22544604485915178,-22544603251852693],[2100352,520,1975301892192549,1975303127512530],[2100352,1672,1975301892192549,1975303127512530],[2100352,2248,-26495209971802464,-26495207805375563],[2100352,2440,26495207805375563,26495209971802464],[2100352,3144,26495207805375563,26495209971802464],[2100352,3336,-26495209971802464,-26495207805375563],[2100352,526472,-26495210000373866,-26495207776804167],[2100352,527368,26495207776804167,26495210000373866],[2100352,1048584,-3950606276156332,-3950603763253824],[2100352,1049736,22544602288119128,22544605449648746],[2100352,1050760,-2231218221,2231218224],[2100352,1051656,-26495210000373866,-26495207776804167],[2100352,2097352,26495207805375563,26495209971802464],[2100352,2097544,-26495209971802464,-26495207805375563],[2100352,2098248,-26495209971802464,-26495207805375563],[2100352,2098440,26495207805375563,26495209971802464],[2100352,2099720,1975301892192549,1975303127512530],[2100352,2100872,1975301892192549,1975303127512530],[2100352,2621576,26495207776804167,26495210000373866],[2100352,2622472,-26495210000373866,-26495207776804167],[2100352,3145864,-26495210000373866,-26495207776804167],[2100352,3146760,-2231218221,2231218224],[2100352,3147784,22544602288119128,22544605449648746],[2100352,3148936,-3950606276156332,-3950603763253824],[2100352,33554440,1975301915400511,1975303104304567],[2100352,33555592,1975301915400511,1975303104304567],[2100352,35653640,1975301915400511,1975303104304567],[2100352,35654792,1975301915400511,1975303104304567],[2100352,536870920,-1975303127512530,-1975301892192549],[2100352,536872072,-1975303127512530,-1975301892192549],[2100352,538970120,-1975303127512530,-1975301892192549],[2100352,538971272,-1975303127512530,-1975301892192549],[2100352,549755813896,-1975303104304567,-1975301915400511],[2100352,549755815048,-1975303104304567,-1975301915400511],[2100352,549757913096,-1975303104304567,-1975301915400511],[2100352,549757914248,-1975303104304567,-1975301915400511],[2100362,2050,-13247605060886466,-13247603827702546],[2100362,2056,13247603827702546,13247605060886466],[2100362,3202,-13247605060886466,-13247603827702546],[2100362,3208,13247603827702546,13247605060886466],[2100362,2097154,13247603827702546,13247605060886466],[2100362,2097160,-13247605060886466,-13247603827702546],[2100362,2098306,13247603827702546,13247605060886466],[2100362,2098312,-13247605060886466,-13247603827702546],[2100364,2052,-13247605036737943,-13247603851851071],[2100364,2056,13247603851851071,13247605036737943],[2100364,3204,-13247605036737943,-13247603851851071],[2100364,3208,13247603851851071,13247605036737943],[2100364,2097156,13247603851851071,13247605036737943],[2100364,2097160,-13247605036737943,-13247603851851071],[2100364,2098308,13247603851851071,13247605036737943],[2100364,2098312,-13247605036737943,-13247603851851071],[2100418,2050,-13247605061713792,-13247603826875223],[2100418,2112,13247603826875223,13247605061713792],[2100418,3202,-13247605061713792,-13247603826875223],[2100418,3264,13247603826875223,13247605061713792],[2100418,2097154,13247603826875223,13247605061713792],[2100418,2097216,-13247605061713792,-13247603826875223],[2100418,2098306,13247603826875223,13247605061713792],[2100418,2098368,-13247605061713792,-13247603826875223],[2100424,2056,13247603826875223,13247605061713792],[2100424,2112,13247603827702546,13247605060886466],[2100424,2176,-26495209971802464,-26495207805375563],[2100424,3144,26495207805375563,26495209971802464],[2100424,3208,-13247605060886466,-13247603827702546],[2100424,3264,-13247605061713792,-13247603826875223],[2100424,2097160,-13247605061713792,-13247603826875223],[2100424,2097216,-13247605060886466,-13247603827702546],[2100424,2097280,26495207805375563,26495209971802464],[2100424,2098248,-26495209971802464,-26495207805375563],[2100424,2098312,13247603827702546,13247605060886466],[2100424,2098368,13247603826875223,13247605061713792],[2100546,2050,22544603251852693,22544604485915178],[2100546,2112,-22544604485915178,-22544603251852693],[2100546,3330,22544603251852693,22544604485915178],[2100546,3392,-22544604485915178,-22544603251852693],[2100546,2097154,-22544604485915178,-22544603251852693],[2100546,2097216,22544603251852693,22544604485915178],[2100546,2098434,-22544604485915178,-22544603251852693],[2100546,2098496,22544603251852693,22544604485915178],[2100616,2056,-22544604485915178,-22544603251852693],[2100616,2176,22544603251852693,22544604485915178],[2100616,3336,-22544604485915178,-22544603251852693],[2100616,3456,22544603251852693,22544604485915178],[2100616,2097160,22544603251852693,22544604485915178],[2100616,2097280,-22544604485915178,-22544603251852693],[2100616,2098440,22544603251852693,22544604485915178],[2100616,2098560,-22544604485915178,-22544603251852693],[2100872,520,1975301892192549,1975303127512530],[2100872,640,-1975303127512530,-1975301892192549],[2100872,2056,-3950606098159314,-3950603941250842],[2100872,2176,3950603941250842,3950606098159314],[2100872,3592,-1975303127512529,-1975301892192548],[2100872,3712,1975301892192548,1975303127512529],[2100872,2097160,1975301892192548,1975303127512529],[2100872,2097280,-1975303127512529,-1975301892192548],[2100872,2098696,3950603941250842,3950606098159314],[2100872,2098816,-3950606098159314,-3950603941250842],[2100872,2100232,-1975303127512530,-1975301892192549],[2100872,2100352,1975301892192549,1975303127512530],[2129920,1703940,22544603305492866,22544604432275006],[2129920,1703944,1975301915400511,1975303104304567],[2129920,1704064,1975301912872117,1975303106832961],[2129920,1704960,-13247605037567427,-13247603851021587],[2129920,1705984,-13247605036737943,-13247603851851071],[2129920,3833860,22544603305492866,22544604432275006],[2129920,3833864,1975301915400511,1975303104304567],[2129920,3833984,1975301912872117,1975303106832961],[2129920,3834880,-13247605037567427,-13247603851021587],[2129920,3835904,-13247605036737943,-13247603851851071],[2228224,3208,13247603808044578,13247605080544438],[2228224,524296,13247602745554085,13247606143034927],[2228224,524416,17198207753821687,17198211174177485],[2228224,525312,-1975305335522788,-1975299684182287],[2228224,526336,-1975304632453679,-1975300387251397],[2228224,527488,13247603817961795,13247605070627222],[2228224,1048584,-1975304632453679,-1975300387251397],[2228224,1048704,-1975305335522788,-1975299684182287],[2228224,1049600,17198207753821687,17198211174177485],[2228224,1049736,13247603817961795,13247605070627222],[2228224,1050624,13247602745554085,13247606143034927],[2228224,1573000,-45089208980598784,-45089206494936958],[2228224,1573896,13247603817961795,13247605070627222],[2228224,1574016,26495207628724032,26495210148454004],[2228224,1574920,13247603808044578,13247605080544438],[2228224,1575040,13247603817961795,13247605070627222],[2228224,1575936,-45089208980598784,-45089206494936958],[2228224,1605640,-24519907395040631,-24519905362432319],[2228224,1605760,-1975303106832961,-1975301912872117],[2228224,1606656,13247603851021587,13247605037567427],[2228224,1607680,13247603851851071,13247605036737943],[2228224,2231432,13247603808044578,13247605080544438],[2228224,2752520,13247602745554085,13247606143034927],[2228224,2752640,17198207753821687,17198211174177485],[2228224,2753536,-1975305335522788,-1975299684182287],[2228224,2754560,-1975304632453679,-1975300387251397],[2228224,2755712,13247603817961795,13247605070627222],[2228224,3276808,-1975304632453679,-1975300387251397],[2228224,3276928,-1975305335522788,-1975299684182287],[2228224,3277824,17198207753821687,17198211174177485],[2228224,3277960,13247603817961795,13247605070627222],[2228224,3278848,13247602745554085,13247606143034927],[2228224,3801224,-45089208980598784,-45089206494936958],[2228224,3802120,13247603817961795,13247605070627222],[2228224,3802240,26495207628724032,26495210148454004],[2228224,3803144,13247603808044578,13247605080544438],[2228224,3803264,13247603817961795,13247605070627222],[2228224,3804160,-45089208980598784,-45089206494936958],[2228224,3833864,-24519907395040631,-24519905362432319],[2228224,3833984,-1975303106832961,-1975301912872117],[2228224,3834880,13247603851021587,13247605037567427],[2228224,3835904,13247603851851071,13247605036737943],[2228224,68681736,-3950606098159314,-3950603941250842],[2228224,68681856,-22544604485915178,-22544603251852693],[2228224,68682752,13247603826875223,13247605061713792],[2228224,68683776,13247603827702546,13247605060886466],[2228224,70909960,-3950606098159314,-3950603941250842],[2228224,70910080,-22544604485915178,-22544603251852693],[2228224,70910976,13247603826875223,13247605061713792],[2228224,70912000,13247603827702546,13247605060886466],[2228224,135790600,13247603826875223,13247605061713792],[2228224,135790720,13247603821511848,13247605067077166],[2228224,135791616,-3950605802754426,-3950604236655732],[2228224,135792640,-22544604485915178,-22544603251852693],[2228224,138018824,13247603826875223,13247605061713792],[2228224,138018944,13247603821511848,13247605067077166],[2228224,138019840,-3950605802754426,-3950604236655732],[2228224,138020864,-22544604485915178,-22544603251852693],[2228224,270008328,-22544604485915178,-22544603251852693],[2228224,270008448,-3950605802754426,-3950604236655732],[2228224,270009344,13247603821511848,13247605067077166],[2228224,270010368,13247603826875223,13247605061713792],[2228224,272236552,-22544604485915178,-22544603251852693],[2228224,272236672,-3950605802754426,-3950604236655732],[2228224,272237568,13247603821511848,13247605067077166],[2228224,272238592,13247603826875223,13247605061713792],[2228224,538443784,13247603827702546,13247605060886466],[2228224,538443904,13247603826875223,13247605061713792],[2228224,538444800,-22544604485915178,-22544603251852693],[2228224,538445824,-3950606098159314,-3950603941250842],[2228224,540672008,13247603827702546,13247605060886466],[2228224,540672128,13247603826875223,13247605061713792],[2228224,540673024,-22544604485915178,-22544603251852693],[2228224,540674048,-3950606098159314,-3950603941250842],[2228224,549757386760,13247603851851071,13247605036737943],[2228224,549757386880,13247603851021587,13247605037567427],[2228224,549757387776,-1975303106832961,-1975301912872117],[2228224,549757388800,-24519907395040631,-24519905362432319],[2228224,549759614984,13247603851851071,13247605036737943],[2228224,549759615104,13247603851021587,13247605037567427],[2228224,549759616000,-1975303106832961,-1975301912872117],[2228224,549759617024,-24519907395040631,-24519905362432319],[2228234,1703938,1975301892192549,1975303127512530],[2228234,1703944,-1975303127512530,-1975301892192549],[2228234,3670018,-1975303127512530,-1975301892192549],[2228234,3670024,1975301892192549,1975303127512530],[2228236,1703940,1975301915400511,1975303104304567],[2228236,1703944,-1975303104304567,-1975301915400511],[2228236,3670020,-1975303104304567,-1975301915400511],[2228236,3670024,1975301915400511,1975303104304567],[2228360,3208,13247603808044578,13247605080544438],[2228360,134272,-13247605080544438,-13247603808044578],[2228360,1049736,13247603817961795,13247605070627222],[2228360,1180800,-13247605070627222,-13247603817961795],[2228360,1573000,-18594000503636004,-18593997194721705],[2228360,1703944,22544602288119128,22544605449648746],[2228360,1704064,-3950608254927041,-3950601784483124],[2228360,2100232,-13247605080544438,-13247603808044578],[2228360,2231296,13247603808044578,13247605080544438],[2228360,3146760,-13247605070627222,-13247603817961795],[2228360,3277824,13247603817961795,13247605070627222],[2228360,3670024,-3950608254927041,-3950601784483124],[2228360,3670144,22544602288119128,22544605449648746],[2228360,3801088,-18594000503636004,-18593997194721705],[2228416,1704000,24519905292829456,24519907464643493],[2228416,1704064,-24519907464643493,-24519905292829456],[2228416,3670080,-24519907464643493,-24519905292829456],[2228416,3670144,24519905292829456,24519907464643493],[2229376,2056,13247603808044578,13247605080544438],[2229376,133256,13247603808044578,13247605080544438],[2229376,526336,13247603817961795,13247605070627222],[2229376,657536,13247603817961795,13247605070627222],[2229376,1048584,13247603817961795,13247605070627222],[2229376,1179784,13247603817961795,13247605070627222],[2229376,1572864,66238019675883376,66238024767061710],[2229376,1704064,17198204870376650,17198214057622544],[2229376,1704960,49039810709439166,49039814805506726],[2229376,2100232,13247603808044578,13247605080544438],[2229376,2231432,13247603808044578,13247605080544438],[2229376,2624512,13247603817961795,13247605070627222],[2229376,2755712,13247603817961795,13247605070627222],[2229376,3146760,13247603817961795,13247605070627222],[2229376,3277960,13247603817961795,13247605070627222],[2229376,3670144,49039810709439166,49039814805506726],[2229376,3671040,17198204870376650,17198214057622544],[2229376,3802240,66238019675883376,66238024767061710],[2229504,1704192,-24519907464643493,-24519905292829456],[2229504,1704960,24519905292829456,24519907464643493],[2229504,3670272,24519905292829456,24519907464643493],[2229504,3671040,-24519907464643493,-24519905292829456],[2230784,1704448,-1975303127512530,-1975301892192549],[2230784,1705984,1975301892192549,1975303127512530],[2230784,3670528,1975301892192549,1975303127512530],[2230784,3672064,-1975303127512530,-1975301892192549],[2231296,3208,13247603808044578,13247605080544438],[2231296,133256,-13247605080544438,-13247603808044578],[2231296,527488,13247603817961795,13247605070627222],[2231296,657536,-13247605070627222,-13247603817961795],[2231296,1575936,-18594000503636004,-18593997194721705],[2231296,1704960,22544602288119128,22544605449648746],[2231296,1705984,-3950608254927041,-3950601784483124],[2231296,2098312,-13247605080544438,-13247603808044578],[2231296,2228360,13247603808044578,13247605080544438],[2231296,2622592,-13247605070627222,-13247603817961795],[2231296,2752640,13247603817961795,13247605070627222],[2231296,3671040,-3950608254927041,-3950601784483124],[2231296,3672064,22544602288119128,22544605449648746],[2231296,3801088,-18594000503636004,-18593997194721705],[2231432,2056,13247603808044578,13247605080544438],[2231432,3208,13247603808044578,13247605080544438],[2231432,133120,-13247605080544438,-13247603808044578],[2231432,134272,-13247605080544438,-13247603808044578],[2231432,2097160,-13247605080544438,-13247603808044578],[2231432,2098312,-13247605080544438,-13247603808044578],[2231432,2228224,13247603808044578,13247605080544438],[2231432,2229376,13247603808044578,13247605080544438],[2260996,1703940,22544603305492866,22544604432275006],[2260996,1736704,-22544604432275006,-22544603305492866],[2260996,3670020,-22544604432275006,-22544603305492866],[2260996,3702784,22544603305492866,22544604432275006],[2261000,1605640,-24519907395040631,-24519905362432319],[2261000,1703944,1975301915400511,1975303104304567],[2261000,1736704,22544603305492866,22544604432275006],[2261000,3670024,22544603305492866,22544604432275006],[2261000,3702784,1975301915400511,1975303104304567],[2261000,3801088,-24519907395040631,-24519905362432319],[2261120,1605760,24519905362432319,24519907395040631],[2261120,1704064,-24519907395040631,-24519905362432319],[2261120,3702784,-24519907395040631,-24519905362432319],[2261120,3801088,24519905362432319,24519907395040631],[2621440,3208,-13247605080544438,-13247603808044578],[2621440,131200,-26495211840725034,-26495205936452994],[2621440,132096,-1975305338051185,-1975299681653896],[2621440,133120,1975300387251397,1975304632453679],[2621440,134272,-13247605070627222,-13247603817961795],[2621440,1048584,-3950608254927041,-3950601784483124],[2621440,1049736,-13247605070627222,-13247603817961795],[2621440,1180800,-39742815068283432,-39742811597483621],[2621440,1181824,-26495210000373866,-26495207776804167],[2621440,1182720,45089206494936958,45089208980598784],[2621440,2624648,-13247605080544438,-13247603808044578],[2621440,2752640,-26495211840725034,-26495205936452994],[2621440,2753536,-1975305338051185,-1975299681653896],[2621440,2754560,1975300387251397,1975304632453679],[2621440,2755712,-13247605070627222,-13247603817961795],[2621440,3670024,-3950608254927041,-3950601784483124],[2621440,3671176,-13247605070627222,-13247603817961795],[2621440,3802240,-39742815068283432,-39742811597483621],[2621440,3803264,-26495210000373866,-26495207776804167],[2621440,3804160,45089206494936958,45089208980598784],[2621440,135397504,-26495209977993164,-26495207799184865],[2621440,135398400,3950604236655732,3950605802754426],[2621440,135399424,22544603251852693,22544604485915178],[2621440,138018944,-26495209977993164,-26495207799184865],[2621440,138019840,3950604236655732,3950605802754426],[2621440,138020864,22544603251852693,22544604485915178],[2621440,269615232,52990415906156016,52990419648200040],[2621440,269616128,-26495209977993164,-26495207799184865],[2621440,269617152,-26495209971802464,-26495207805375563],[2621440,272236672,52990415906156016,52990419648200040],[2621440,272237568,-26495209977993164,-26495207799184865],[2621440,272238592,-26495209971802464,-26495207805375563],[2621440,538050688,-26495209971802464,-26495207805375563],[2621440,538051584,22544603251852693,22544604485915178],[2621440,538052608,3950603941250842,3950606098159314],[2621440,540672128,-26495209971802464,-26495207805375563],[2621440,540673024,22544603251852693,22544604485915178],[2621440,540674048,3950603941250842,3950606098159314],[2621440,549756993664,-26495209923507576,-26495207853670452],[2621440,549756994560,1975301912872117,1975303106832961],[2621440,549756995584,24519905362432319,24519907395040631],[2621440,549759615104,-26495209923507576,-26495207853670452],[2621440,549759616000,1975301912872117,1975303106832961],[2621440,549759617024,24519905362432319,24519907395040631],[2621512,1048704,24519905292829456,24519907464643493],[2621512,1048776,24519905292829456,24519907464643493],[2621512,3670144,24519905292829456,24519907464643493],[2621512,3670216,24519905292829456,24519907464643493],[2621570,1048584,-22544604485915178,-22544603251852693],[2621570,1048640,-1975303134066535,-1975301885638543],[2621570,1048714,-22544604485915178,-22544603251852693],[2621570,1048770,-1975303134066535,-1975301885638543],[2621570,3670024,-22544604485915178,-22544603251852693],[2621570,3670080,-1975303134066535,-1975301885638543],[2621570,3670154,-22544604485915178,-22544603251852693],[2621570,3670210,-1975303134066535,-1975301885638543],[2621572,1048584,-1975303106832961,-1975301912872117],[2621572,1048716,-1975303106832961,-1975301912872117],[2621572,3670024,-1975303106832961,-1975301912872117],[2621572,3670156,-1975303106832961,-1975301912872117],[2621576,3208,-13247605080544438,-13247603808044578],[2621576,524296,13247602731588215,13247606157000801],[2621576,524416,-13247606157000801,-13247602731588215],[2621576,527368,26495207776804167,26495210000373866],[2621576,527488,-13247605070627222,-13247603817961795],[2621576,1048578,22544603251852693,22544604485915178],[2621576,1048580,1975301912872117,1975303106832961],[2621576,1048640,-22544604485915178,-22544603251852693],[2621576,1048714,22544603251852693,22544604485915178],[2621576,1048716,1975301912872117,1975303106832961],[2621576,1048776,-22544604485915178,-22544603251852693],[2621576,1049600,-1975303106832961,-1975301912872117],[2621576,1049736,-15222908177460183,-15222905730833912],[2621576,1179648,45089206494936958,45089208980598784],[2621576,1179784,18593997194721705,18594000503636004],[2621576,1573896,39742811597483621,39742815068283432],[2621576,1574016,-26495210148454004,-26495207628724032],[2621576,1574920,13247603817961795,13247605070627222],[2621576,1575040,-13247605070627222,-13247603817961795],[2621576,1703944,-2231218221,2231218224],[2621576,1704064,26495207769155642,26495210008022388],[2621576,2097160,-13247606157000801,-13247602731588215],[2621576,2097280,13247602731588215,13247606157000801],[2621576,2100232,-13247605070627222,-13247603817961795],[2621576,2100352,26495207776804167,26495210000373866],[2621576,2624512,-13247605080544438,-13247603808044578],[2621576,3146760,-26495210148454004,-26495207628724032],[2621576,3146880,39742811597483621,39742815068283432],[2621576,3147784,-13247605070627222,-13247603817961795],[2621576,3147904,13247603817961795,13247605070627222],[2621576,3276808,26495207769155642,26495210008022388],[2621576,3276928,-2231218221,2231218224],[2621576,3670018,22544603251852693,22544604485915178],[2621576,3670020,1975301912872117,1975303106832961],[2621576,3670080,-22544604485915178,-22544603251852693],[2621576,3670154,22544603251852693,22544604485915178],[2621576,3670156,1975301912872117,1975303106832961],[2621576,3670216,-22544604485915178,-22544603251852693],[2621576,3671040,-15222908177460183,-15222905730833912],[2621576,3671176,-1975303106832961,-1975301912872117],[2621576,3801088,18593997194721705,18594000503636004],[2621576,3801224,45089206494936958,45089208980598784],[2621576,135790600,13247603821511848,13247605067077166],[2621576,135790720,-13247605067077166,-13247603821511848],[2621576,137363464,-13247605067077166,-13247603821511848],[2621576,137363584,13247603821511848,13247605067077166],[2621576,270008328,-26495209977993164,-26495207799184865],[2621576,270008448,26495207799184865,26495209977993164],[2621576,271581192,26495207799184865,26495209977993164],[2621576,271581312,-26495209977993164,-26495207799184865],[2621576,538443784,13247603826875223,13247605061713792],[2621576,538443904,-13247605061713792,-13247603826875223],[2621576,540016648,-13247605061713792,-13247603826875223],[2621576,540016768,13247603826875223,13247605061713792],[2621576,549757386760,13247603851021587,13247605037567427],[2621576,549757386880,-13247605037567427,-13247603851021587],[2621576,549758959624,-13247605037567427,-13247603851021587],[2621576,549758959744,13247603851021587,13247605037567427],[2621632,1048578,1975301885638543,1975303134066535],[2621632,1048584,-1975303134066535,-1975301885638543],[2621632,1048770,1975301885638543,1975303134066535],[2621632,1048776,-1975303134066535,-1975301885638543],[2621632,1704000,-26495209978356470,-26495207798821558],[2621632,1704064,26495207798821558,26495209978356470],[2621632,3276864,26495207798821558,26495209978356470],[2621632,3276928,-26495209978356470,-26495207798821558],[2621632,3670018,1975301885638543,1975303134066535],[2621632,3670024,-1975303134066535,-1975301885638543],[2621632,3670210,1975301885638543,1975303134066535],[2621632,3670216,-1975303134066535,-1975301885638543],[2622472,2176,-26495210000373866,-26495207776804167],[2622472,526472,-26495210000373866,-26495207776804167],[2622472,1048704,-3950609278673694,-3950600760736484],[2622472,1049736,49039810709439166,49039814805506726],[2622472,1179648,-26495210000373866,-26495207776804167],[2622472,1573000,-52990419988112860,-52990415566243210],[2622472,1703944,-26495210000373866,-26495207776804167],[2622472,2100352,-26495210000373866,-26495207776804167],[2622472,2624648,-26495210000373866,-26495207776804167],[2622472,3146880,-52990419988112860,-52990415566243210],[2622472,3277824,-26495210000373866,-26495207776804167],[2622472,3670144,49039810709439166,49039814805506726],[2622472,3671176,-3950609278673694,-3950600760736484],[2622472,3802120,-26495210000373866,-26495207776804167],[2622592,2056,13247603817961795,13247605070627222],[2622592,133120,-13247605070627222,-13247603817961795],[2622592,526472,13247603817961795,13247605070627222],[2622592,657536,-13247605070627222,-13247603817961795],[2622592,1048584,-7321700242729086,-7321693586744675],[2622592,1049736,-47064511840212707,-47064508655028107],[2622592,1179648,-39742815068283432,-39742811597483621],[2622592,1573000,39742811597483621,39742815068283432],[2622592,1704064,11272298134922261,11272305733961656],[2622592,1704960,-51015117331445277,-51015113203205693],[2622592,2100232,13247603817961795,13247605070627222],[2622592,2231296,-13247605070627222,-13247603817961795],[2622592,2624648,13247603817961795,13247605070627222],[2622592,2755712,-13247605070627222,-13247603817961795],[2622592,3146760,39742811597483621,39742815068283432],[2622592,3276928,-51015117331445277,-51015113203205693],[2622592,3277824,11272298134922261,11272305733961656],[2622592,3670024,-47064511840212707,-47064508655028107],[2622592,3671176,-7321700242729086,-7321693586744675],[2622592,3802240,-39742815068283432,-39742811597483621],[2622720,1704192,24519905292829456,24519907464643493],[2622720,1704960,-24519907464643493,-24519905292829456],[2622720,3277056,-24519907464643493,-24519905292829456],[2622720,3277824,24519905292829456,24519907464643493],[2624000,1704448,1975301892192549,1975303127512530],[2624000,1705984,-1975303127512530,-1975301892192549],[2624000,3277312,-1975303127512530,-1975301892192549],[2624000,3278848,1975301892192549,1975303127512530],[2624512,3208,-13247605080544438,-13247603808044578],[2624512,134272,-13247605070627222,-13247603817961795],[2624512,526472,13247603808044578,13247605080544438],[2624512,657536,13247603817961795,13247605070627222],[2624512,1182720,18593997194721705,18594000503636004],[2624512,1704960,-22544605449648746,-22544602288119128],[2624512,1705984,3950601784483124,3950608254927041],[2624512,2098312,13247603808044578,13247605080544438],[2624512,2229376,13247603817961795,13247605070627222],[2624512,2621576,-13247605080544438,-13247603808044578],[2624512,2752640,-13247605070627222,-13247603817961795],[2624512,3277824,3950601784483124,3950608254927041],[2624512,3278848,-22544605449648746,-22544602288119128],[2624512,3801088,18593997194721705,18594000503636004],[2624648,2056,13247603817961795,13247605070627222],[2624648,2176,-26495210000373866,-26495207776804167],[2624648,3208,-13247605080544438,-13247603808044578],[2624648,526336,13247603808044578,13247605080544438],[2624648,527368,26495207776804167,26495210000373866],[2624648,527488,-13247605070627222,-13247603817961795],[2624648,2097160,-13247605070627222,-13247603817961795],[2624648,2097280,26495207776804167,26495210000373866],[2624648,2098312,13247603808044578,13247605080544438],[2624648,2621440,-13247605080544438,-13247603808044578],[2624648,2622472,-26495210000373866,-26495207776804167],[2624648,2622592,13247603817961795,13247605070627222],[2654216,1179648,24519905362432319,24519907395040631],[2654216,1212424,24519905362432319,24519907395040631],[2654216,3801088,24519905362432319,24519907395040631],[2654216,3833864,24519905362432319,24519907395040631],[2654336,1179648,1975301912872117,1975303106832961],[2654336,1212544,-24519907395040631,-24519905362432319],[2654336,1736704,26495207853670452,26495209923507576],[2654336,3276928,26495207853670452,26495209923507576],[2654336,3801088,-24519907395040631,-24519905362432319],[2654336,3833984,1975301912872117,1975303106832961],[2655232,1179648,-26495209923507576,-26495207853670452],[2655232,1736704,-26495209923507576,-26495207853670452],[2655232,3277824,-26495209923507576,-26495207853670452],[2655232,3834880,-26495209923507576,-26495207853670452],[2752514,1048584,-1975303127512530,-1975301892192549],[2752514,1179658,-1975303127512530,-1975301892192549],[2752514,3670024,-1975303127512530,-1975301892192549],[2752514,3801098,-1975303127512530,-1975301892192549],[2752516,1048584,-1975303104304567,-1975301915400511],[2752516,1081344,-22544604432275006,-22544603305492866],[2752516,1179660,-1975303104304567,-1975301915400511],[2752516,1212420,-22544604432275006,-22544603305492866],[2752516,3670024,-1975303104304567,-1975301915400511],[2752516,3702784,-22544604432275006,-22544603305492866],[2752516,3801100,-1975303104304567,-1975301915400511],[2752516,3833860,-22544604432275006,-22544603305492866],[2752520,524296,13247602745554085,13247606143034927],[2752520,655360,-13247606143034927,-13247602745554085],[2752520,1048578,1975301892192549,1975303127512530],[2752520,1048580,1975301915400511,1975303104304567],[2752520,1048704,3950603763253824,3950606276156332],[2752520,1081344,-1975303104304567,-1975301915400511],[2752520,1179658,1975301892192549,1975303127512530],[2752520,1179660,1975301915400511,1975303104304567],[2752520,1179784,-22544605449648746,-22544602288119128],[2752520,1212424,-1975303104304567,-1975301915400511],[2752520,1573000,-2231218224,2231218221],[2752520,1573896,13247603817961795,13247605070627222],[2752520,1574920,13247603808044578,13247605080544438],[2752520,1704064,26495207776804167,26495210000373866],[2752520,1704960,-13247605070627222,-13247603817961795],[2752520,1705984,-13247605080544438,-13247603808044578],[2752520,2097160,-13247606143034927,-13247602745554085],[2752520,2228224,13247602745554085,13247606143034927],[2752520,3145864,26495207776804167,26495210000373866],[2752520,3146760,-13247605070627222,-13247603817961795],[2752520,3147784,-13247605080544438,-13247603808044578],[2752520,3276928,-2231218224,2231218221],[2752520,3277824,13247603817961795,13247605070627222],[2752520,3278848,13247603808044578,13247605080544438],[2752520,3670018,1975301892192549,1975303127512530],[2752520,3670020,1975301915400511,1975303104304567],[2752520,3670144,-22544605449648746,-22544602288119128],[2752520,3702784,-1975303104304567,-1975301915400511],[2752520,3801098,1975301892192549,1975303127512530],[2752520,3801100,1975301915400511,1975303104304567],[2752520,3801224,3950603763253824,3950606276156332],[2752520,3833864,-1975303104304567,-1975301915400511],[2752520,68157440,-1975303127512530,-1975301892192549],[2752520,68288520,-1975303127512530,-1975301892192549],[2752520,70778880,-1975303127512530,-1975301892192549],[2752520,70909960,-1975303127512530,-1975301892192549],[2752520,135790600,13247603826875223,13247605061713792],[2752520,135921664,-13247605061713792,-13247603826875223],[2752520,137363464,-13247605061713792,-13247603826875223],[2752520,137494528,13247603826875223,13247605061713792],[2752520,270008328,-26495209971802464,-26495207805375563],[2752520,270139392,26495207805375563,26495209971802464],[2752520,271581192,26495207805375563,26495209971802464],[2752520,271712256,-26495209971802464,-26495207805375563],[2752520,538443784,13247603827702546,13247605060886466],[2752520,538574848,-13247605060886466,-13247603827702546],[2752520,540016648,-13247605060886466,-13247603827702546],[2752520,540147712,13247603827702546,13247605060886466],[2752520,549757386760,13247603851851071,13247605036737943],[2752520,549757517824,-13247605036737943,-13247603851851071],[2752520,549758959624,-13247605036737943,-13247603851851071],[2752520,549759090688,13247603851851071,13247605036737943],[2752576,1048704,1975301892192549,1975303127512530],[2752576,1179840,-24519907464643493,-24519905292829456],[2752576,1573056,26495207798821558,26495209978356470],[2752576,3276928,26495207798821558,26495209978356470],[2752576,3670144,-24519907464643493,-24519905292829456],[2752576,3801280,1975301892192549,1975303127512530],[2752640,0,7901209096355172,7901210982465140],[2752640,131200,-26495211840725034,-26495205936452994],[2752640,134272,-13247605070627222,-13247603817961795],[2752640,524416,17198207753821687,17198211174177485],[2752640,527488,13247603817961795,13247605070627222],[2752640,655360,17198207762730769,17198211165268399],[2752640,1048584,-49039815256755116,-49039810258190782],[2752640,1048640,-1975303127512530,-1975301892192549],[2752640,1049600,-1975303104304567,-1975301915400511],[2752640,1081344,-1975303106832961,-1975301912872117],[2752640,1179784,3950601784483124,3950608254927041],[2752640,1179840,24519905292829456,24519907464643493],[2752640,1180800,11272298134922261,11272305733961656],[2752640,1181824,-26495210000373866,-26495207776804167],[2752640,1212544,24519905362432319,24519907395040631],[2752640,1573000,-26495210008022388,-26495207769155642],[2752640,1573056,-26495209978356470,-26495207798821558],[2752640,1574016,-26495212228659796,-26495205548518216],[2752640,1575040,13247603817961795,13247605070627222],[2752640,1703944,-26495210000373866,-26495207776804167],[2752640,1704960,13247603817961795,13247605070627222],[2752640,1705984,13247603808044578,13247605080544438],[2752640,1736704,-26495209923507576,-26495207853670452],[2752640,2097280,17198207762730769,17198211165268399],[2752640,2228224,17198207753821687,17198211174177485],[2752640,2231296,13247603817961795,13247605070627222],[2752640,2621440,-26495211840725034,-26495205936452994],[2752640,2624512,-13247605070627222,-13247603817961795],[2752640,2752640,7901209096355172,7901210982465140],[2752640,3145864,-26495210000373866,-26495207776804167],[2752640,3146880,13247603817961795,13247605070627222],[2752640,3147904,13247603808044578,13247605080544438],[2752640,3178624,-26495209923507576,-26495207853670452],[2752640,3276808,-26495210008022388,-26495207769155642],[2752640,3276864,-26495209978356470,-26495207798821558],[2752640,3277824,-26495212228659796,-26495205548518216],[2752640,3278848,13247603817961795,13247605070627222],[2752640,3670024,3950601784483124,3950608254927041],[2752640,3670080,24519905292829456,24519907464643493],[2752640,3671040,11272298134922261,11272305733961656],[2752640,3672064,-26495210000373866,-26495207776804167],[2752640,3702784,24519905362432319,24519907395040631],[2752640,3801224,-49039815256755116,-49039810258190782],[2752640,3801280,-1975303127512530,-1975301892192549],[2752640,3802240,-1975303104304567,-1975301915400511],[2752640,3833984,-1975303106832961,-1975301912872117],[2752640,68157440,-22544604485915178,-22544603251852693],[2752640,68288640,3950603941250842,3950606098159314],[2752640,68812800,-26495209971802464,-26495207805375563],[2752640,70254720,-26495209971802464,-26495207805375563],[2752640,70778880,3950603941250842,3950606098159314],[2752640,70910080,-22544604485915178,-22544603251852693],[2752640,135397504,-26495209977993164,-26495207799184865],[2752640,135790720,13247603821511848,13247605067077166],[2752640,135921664,13247603826875223,13247605061713792],[2752640,137363584,13247603826875223,13247605061713792],[2752640,137494528,13247603821511848,13247605067077166],[2752640,137887744,-26495209977993164,-26495207799184865],[2752640,269484032,24519905600979050,24519907156493900],[2752640,269615232,24519905292829457,24519907464643494],[2752640,270008448,-929670022,929670021],[2752640,270139392,-923386045,923386045],[2752640,271581312,-923386045,923386045],[2752640,271712256,-929670022,929670021],[2752640,272105472,24519905292829457,24519907464643494],[2752640,272236672,24519905600979050,24519907156493900],[2752640,538050688,-26495209971802464,-26495207805375563],[2752640,538443904,13247603826875223,13247605061713792],[2752640,538574848,13247603827702546,13247605060886466],[2752640,540016768,13247603827702546,13247605060886466],[2752640,540147712,13247603826875223,13247605061713792],[2752640,540540928,-26495209971802464,-26495207805375563],[2752640,549756993664,-26495209923507576,-26495207853670452],[2752640,549757386880,13247603851021587,13247605037567427],[2752640,549757517824,13247603851851071,13247605036737943],[2752640,549758959744,13247603851851071,13247605036737943],[2752640,549759090688,13247603851021587,13247605037567427],[2752640,549759483904,-26495209923507576,-26495207853670452],[2752768,1180928,26495207798821558,26495209978356470],[2752768,1574144,-26495209978356470,-26495207798821558],[2752768,3277824,-26495209978356470,-26495207798821558],[2752768,3671040,26495207798821558,26495209978356470],[2753536,0,-7901210982465140,-7901209096355172],[2753536,132096,-1975305338051185,-1975299681653896],[2753536,525312,-1975305335522788,-1975299684182287],[2753536,655360,-3950605491232570,-3950604548177586],[2753536,1048584,26495207776804167,26495210000373866],[2753536,1048704,-24519908084973355,-24519904672499600],[2753536,1081344,26495207853670452,26495209923507576],[2753536,1180800,-51015117331445277,-51015113203205693],[2753536,1180928,-26495209978356470,-26495207798821558],[2753536,1182720,-2231218221,2231218224],[2753536,1574016,52990415696972220,52990419857383828],[2753536,1574144,26495207798821558,26495209978356470],[2753536,1575936,-2231218224,2231218221],[2753536,1703944,26495207776804167,26495210000373866],[2753536,1704064,-26495210000373866,-26495207776804167],[2753536,1736704,26495207853670452,26495209923507576],[2753536,2098176,-3950605491232570,-3950604548177586],[2753536,2228224,-1975305335522788,-1975299684182287],[2753536,2621440,-1975305338051185,-1975299681653896],[2753536,2753536,-7901210982465140,-7901209096355172],[2753536,3146760,26495207776804167,26495210000373866],[2753536,3146880,-26495210000373866,-26495207776804167],[2753536,3179520,26495207853670452,26495209923507576],[2753536,3276928,52990415696972220,52990419857383828],[2753536,3277056,26495207798821558,26495209978356470],[2753536,3278848,-2231218224,2231218221],[2753536,3670144,-51015117331445277,-51015113203205693],[2753536,3670272,-26495209978356470,-26495207798821558],[2753536,3672064,-2231218221,2231218224],[2753536,3802120,26495207776804167,26495210000373866],[2753536,3802240,-24519908084973355,-24519904672499600],[2753536,3834880,26495207853670452,26495209923507576],[2753536,68157440,26495207805375563,26495209971802464],[2753536,68812800,26495207805375563,26495209971802464],[2753536,70255616,26495207805375563,26495209971802464],[2753536,70910976,26495207805375563,26495209971802464],[2753536,135398400,-929670021,929670022],[2753536,135791616,-929670022,929670021],[2753536,137494528,-929670022,929670021],[2753536,137887744,-929670021,929670022],[2753536,269484032,-26495209971802464,-26495207805375563],[2753536,270139392,-26495209971802464,-26495207805375563],[2753536,271582208,-26495209971802464,-26495207805375563],[2753536,272237568,-26495209971802464,-26495207805375563],[2753536,538051584,26495207805375563,26495209971802464],[2753536,538444800,-26495209971802464,-26495207805375563],[2753536,540147712,-26495209971802464,-26495207805375563],[2753536,540540928,26495207805375563,26495209971802464],[2753536,549756994560,26495207853670452,26495209923507576],[2753536,549757387776,-26495209923507576,-26495207853670452],[2753536,549759090688,-26495209923507576,-26495207853670452],[2753536,549759483904,26495207853670452,26495209923507576],[2754560,133120,1975300387251397,1975304632453679],[2754560,526336,-1975304632453679,-1975300387251397],[2754560,1182720,26495207769155642,26495210008022388],[2754560,1575936,-26495210008022388,-26495207769155642],[2754560,2228224,-1975304632453679,-1975300387251397],[2754560,2621440,1975300387251397,1975304632453679],[2754560,3277824,-26495210008022388,-26495207769155642],[2754560,3671040,26495207769155642,26495210008022388],[2755712,133120,-13247605070627222,-13247603817961795],[2755712,134272,-13247605070627222,-13247603817961795],[2755712,526336,13247603817961795,13247605070627222],[2755712,527488,13247603817961795,13247605070627222],[2755712,2228224,13247603817961795,13247605070627222],[2755712,2229376,13247603817961795,13247605070627222],[2755712,2621440,-13247605070627222,-13247603817961795],[2755712,2622592,-13247605070627222,-13247603817961795],[2785280,1048580,22544603305492866,22544604432275006],[2785280,1048584,-22544604432275006,-22544603305492866],[2785280,1212420,22544603305492866,22544604432275006],[2785280,1212424,-22544604432275006,-22544603305492866],[2785280,1605760,-26495209923507576,-26495207853670452],[2785280,1606656,13247603851021587,13247605037567427],[2785280,1607680,13247603851851071,13247605036737943],[2785280,1704064,26495207853670452,26495209923507576],[2785280,1704960,-13247605037567427,-13247603851021587],[2785280,1705984,-13247605036737943,-13247603851851071],[2785280,3178624,26495207853670452,26495209923507576],[2785280,3179520,-13247605037567427,-13247603851021587],[2785280,3180544,-13247605036737943,-13247603851851071],[2785280,3276928,-26495209923507576,-26495207853670452],[2785280,3277824,13247603851021587,13247605037567427],[2785280,3278848,13247603851851071,13247605036737943],[2785280,3670020,22544603305492866,22544604432275006],[2785280,3670024,-22544604432275006,-22544603305492866],[2785280,3833860,22544603305492866,22544604432275006],[2785280,3833864,-22544604432275006,-22544603305492866],[3145728,131200,-3950605491232570,-3950604548177586],[3145728,132096,17198207762730769,17198211165268399],[3145728,133120,-13247606143034927,-13247602745554085],[3145728,3276928,-3950605491232570,-3950604548177586],[3145728,3277824,17198207762730769,17198211165268399],[3145728,3278848,-13247606143034927,-13247602745554085],[3145864,1048584,-3950609278673694,-3950600760736484],[3145864,1048704,3950600760736484,3950609278673694],[3145864,1051656,-26495210000373866,-26495207776804167],[3145864,1051776,26495207776804167,26495210000373866],[3145864,1703944,-26495210000373866,-26495207776804167],[3145864,1704064,26495207776804167,26495210000373866],[3145864,2097160,3950600760736484,3950609278673694],[3145864,2097280,-3950609278673694,-3950600760736484],[3145864,2100232,26495207776804167,26495210000373866],[3145864,2100352,-26495210000373866,-26495207776804167],[3145864,2752520,26495207776804167,26495210000373866],[3145864,2752640,-26495210000373866,-26495207776804167],[3145992,1049736,24519905292829456,24519907464643493],[3145992,1049984,-24519907464643493,-24519905292829456],[3145992,2098312,-24519907464643493,-24519905292829456],[3145992,2098560,24519905292829456,24519907464643493],[3146112,1049736,-24519907464643493,-24519905292829456],[3146112,1049864,24519905292829456,24519907464643493],[3146112,2098312,24519905292829456,24519907464643493],[3146112,2098440,-24519907464643493,-24519905292829456],[3146754,1048714,-13247605061713792,-13247603826875223],[3146754,1048770,-13247605067077166,-13247603821511848],[3146754,1048898,1975301885638544,1975303134066536],[3146754,1049736,13247603826875223,13247605061713792],[3146754,1049792,13247603821511848,13247605067077166],[3146754,1049920,-1975303134066536,-1975301885638544],[3146754,2097290,13247603826875223,13247605061713792],[3146754,2097346,13247603821511848,13247605067077166],[3146754,2097474,-1975303134066536,-1975301885638544],[3146754,2098312,-13247605061713792,-13247603826875223],[3146754,2098368,-13247605067077166,-13247603821511848],[3146754,2098496,1975301885638544,1975303134066536],[3146756,1048716,-13247605037567427,-13247603851021587],[3146756,1049736,13247603851021587,13247605037567427],[3146756,2097292,13247603851021587,13247605037567427],[3146756,2098312,-13247605037567427,-13247603851021587],[3146760,2176,45089206494936958,45089208980598784],[3146760,3208,18593997194721705,18594000503636004],[3146760,524416,-1975303106832961,-1975301912872117],[3146760,525448,-15222908177460183,-15222905730833912],[3146760,656392,-13247605080544438,-13247603808044578],[3146760,1048584,13247602731588215,13247606157000801],[3146760,1048714,13247603826875223,13247605061713792],[3146760,1048716,13247603851021587,13247605037567427],[3146760,1048776,13247603821511848,13247605067077166],[3146760,1048968,-26495209977993164,-26495207799184865],[3146760,1049600,-13247606157000801,-13247602731588215],[3146760,1049730,-13247605061713792,-13247603826875223],[3146760,1049732,-13247605037567427,-13247603851021587],[3146760,1049792,-13247605067077166,-13247603821511848],[3146760,1049984,26495207799184865,26495209977993164],[3146760,1050760,-2231218221,2231218224],[3146760,1051776,26495207769155642,26495210008022388],[3146760,1179784,13247603817961795,13247605070627222],[3146760,1180800,-13247605070627222,-13247603817961795],[3146760,1573000,39742811597483621,39742815068283432],[3146760,1574016,-26495210148454004,-26495207628724032],[3146760,1703944,26495207776804167,26495210000373866],[3146760,1704960,-13247605070627222,-13247603817961795],[3146760,2097160,-13247606157000801,-13247602731588215],[3146760,2097290,-13247605061713792,-13247603826875223],[3146760,2097292,-13247605037567427,-13247603851021587],[3146760,2097352,-13247605067077166,-13247603821511848],[3146760,2097544,26495207799184865,26495209977993164],[3146760,2098176,13247602731588215,13247606157000801],[3146760,2098306,13247603826875223,13247605061713792],[3146760,2098308,13247603851021587,13247605037567427],[3146760,2098368,13247603821511848,13247605067077166],[3146760,2098560,-26495209977993164,-26495207799184865],[3146760,2099336,26495207769155642,26495210008022388],[3146760,2100352,-2231218221,2231218224],[3146760,2228360,-13247605070627222,-13247603817961795],[3146760,2229376,13247603817961795,13247605070627222],[3146760,2621576,-26495210148454004,-26495207628724032],[3146760,2622592,39742811597483621,39742815068283432],[3146760,2752520,-13247605070627222,-13247603817961795],[3146760,2753536,26495207776804167,26495210000373866],[3146760,3147904,18593997194721705,18594000503636004],[3146760,3148936,45089206494936958,45089208980598784],[3146760,3670144,-15222908177460183,-15222905730833912],[3146760,3671176,-1975303106832961,-1975301912872117],[3146760,3801088,-13247605080544438,-13247603808044578],[3146760,134217856,-22544604485915178,-22544603251852693],[3146760,134218888,-22544604485915178,-22544603251852693],[3146760,137363584,-22544604485915178,-22544603251852693],[3146760,137364616,-22544604485915178,-22544603251852693],[3146760,536871040,22544603251852693,22544604485915178],[3146760,536872072,22544603251852693,22544604485915178],[3146760,540016768,22544603251852693,22544604485915178],[3146760,540017800,22544603251852693,22544604485915178],[3146760,549755814016,1975301912872117,1975303106832961],[3146760,549755815048,1975301912872117,1975303106832961],[3146760,549758959744,1975301912872117,1975303106832961],[3146760,549758960776,1975301912872117,1975303106832961],[3146816,1048770,13247603821511848,13247605067077166],[3146816,1048776,13247603826875223,13247605061713792],[3146816,1048898,-1975303134066536,-1975301885638544],[3146816,1049730,-13247605067077166,-13247603821511848],[3146816,1049736,-13247605061713792,-13247603826875223],[3146816,1049858,1975301885638544,1975303134066536],[3146816,2097346,-13247605067077166,-13247603821511848],[3146816,2097352,-13247605061713792,-13247603826875223],[3146816,2097474,1975301885638544,1975303134066536],[3146816,2098306,13247603821511848,13247605067077166],[3146816,2098312,13247603826875223,13247605061713792],[3146816,2098434,-1975303134066536,-1975301885638544],[3146880,2056,-45089208980598784,-45089206494936958],[3146880,3208,-18594000503636004,-18593997194721705],[3146880,524296,1975301912872117,1975303106832961],[3146880,525448,15222905730833912,15222908177460183],[3146880,656512,13247603808044578,13247605080544438],[3146880,1048776,-26495209977993164,-26495207799184865],[3146880,1048968,26495207799184865,26495209977993164],[3146880,1049672,26495207799184865,26495209977993164],[3146880,1049864,-26495209977993164,-26495207799184865],[3146880,1050760,-2231218224,2231218221],[3146880,1051656,-26495210008022388,-26495207769155642],[3146880,1573000,-52990419988112860,-52990415566243210],[3146880,1573896,39742811597483621,39742815068283432],[3146880,1704064,-26495210000373866,-26495207776804167],[3146880,1704960,13247603817961795,13247605070627222],[3146880,2097352,26495207799184865,26495209977993164],[3146880,2097544,-26495209977993164,-26495207799184865],[3146880,2098248,-26495209977993164,-26495207799184865],[3146880,2098440,26495207799184865,26495209977993164],[3146880,2099336,-26495210008022388,-26495207769155642],[3146880,2100232,-2231218224,2231218221],[3146880,2621576,39742811597483621,39742815068283432],[3146880,2622472,-52990419988112860,-52990415566243210],[3146880,2752640,13247603817961795,13247605070627222],[3146880,2753536,-26495210000373866,-26495207776804167],[3146880,3147784,-18594000503636004,-18593997194721705],[3146880,3148936,-45089208980598784,-45089206494936958],[3146880,3670024,15222905730833912,15222908177460183],[3146880,3671176,1975301912872117,1975303106832961],[3146880,3801088,13247603808044578,13247605080544438],[3146880,134217736,22544603251852693,22544604485915178],[3146880,134218888,22544603251852693,22544604485915178],[3146880,137363464,22544603251852693,22544604485915178],[3146880,137364616,22544603251852693,22544604485915178],[3146880,536870920,-22544604485915178,-22544603251852693],[3146880,536872072,-22544604485915178,-22544603251852693],[3146880,540016648,-22544604485915178,-22544603251852693],[3146880,540017800,-22544604485915178,-22544603251852693],[3146880,549755813896,-1975303106832961,-1975301912872117],[3146880,549755815048,-1975303106832961,-1975301912872117],[3146880,549758959624,-1975303106832961,-1975301912872117],[3146880,549758960776,-1975303106832961,-1975301912872117],[3146890,1048578,-13247605061713792,-13247603826875223],[3146890,1048584,13247603826875223,13247605061713792],[3146890,1049730,-13247605061713792,-13247603826875223],[3146890,1049736,13247603826875223,13247605061713792],[3146890,2097154,13247603826875223,13247605061713792],[3146890,2097160,-13247605061713792,-13247603826875223],[3146890,2098306,13247603826875223,13247605061713792],[3146890,2098312,-13247605061713792,-13247603826875223],[3146892,1048580,-13247605037567427,-13247603851021587],[3146892,1048584,13247603851021587,13247605037567427],[3146892,1049732,-13247605037567427,-13247603851021587],[3146892,1049736,13247603851021587,13247605037567427],[3146892,2097156,13247603851021587,13247605037567427],[3146892,2097160,-13247605037567427,-13247603851021587],[3146892,2098308,13247603851021587,13247605037567427],[3146892,2098312,-13247605037567427,-13247603851021587],[3146946,1048578,-13247605067077166,-13247603821511848],[3146946,1048640,13247603821511848,13247605067077166],[3146946,1049730,-13247605067077166,-13247603821511848],[3146946,1049792,13247603821511848,13247605067077166],[3146946,2097154,13247603821511848,13247605067077166],[3146946,2097216,-13247605067077166,-13247603821511848],[3146946,2098306,13247603821511848,13247605067077166],[3146946,2098368,-13247605067077166,-13247603821511848],[3146952,1048584,13247603821511848,13247605067077166],[3146952,1048640,13247603826875223,13247605061713792],[3146952,1048704,-26495209977993164,-26495207799184865],[3146952,1049672,26495207799184865,26495209977993164],[3146952,1049736,-13247605061713792,-13247603826875223],[3146952,1049792,-13247605067077166,-13247603821511848],[3146952,2097160,-13247605067077166,-13247603821511848],[3146952,2097216,-13247605061713792,-13247603826875223],[3146952,2097280,26495207799184865,26495209977993164],[3146952,2098248,-26495209977993164,-26495207799184865],[3146952,2098312,13247603826875223,13247605061713792],[3146952,2098368,13247603821511848,13247605067077166],[3147074,1048578,1975301885638544,1975303134066536],[3147074,1048640,-1975303134066536,-1975301885638544],[3147074,1049858,1975301885638544,1975303134066536],[3147074,1049920,-1975303134066536,-1975301885638544],[3147074,2097154,-1975303134066536,-1975301885638544],[3147074,2097216,1975301885638544,1975303134066536],[3147074,2098434,-1975303134066536,-1975301885638544],[3147074,2098496,1975301885638544,1975303134066536],[3147144,1048584,-1975303134066536,-1975301885638544],[3147144,1048704,1975301885638544,1975303134066536],[3147144,1049864,-1975303134066536,-1975301885638544],[3147144,1049984,1975301885638544,1975303134066536],[3147144,2097160,1975301885638544,1975303134066536],[3147144,2097280,-1975303134066536,-1975301885638544],[3147144,2098440,1975301885638544,1975303134066536],[3147144,2098560,-1975303134066536,-1975301885638544],[3147784,3208,-18594000503636004,-18593997194721705],[3147784,526472,13247603817961795,13247605070627222],[3147784,657416,13247603808044578,13247605080544438],[3147784,1049736,22544602288119128,22544605449648746],[3147784,1051776,-3950608254927041,-3950601784483124],[3147784,1575040,-13247605070627222,-13247603817961795],[3147784,1705984,-13247605080544438,-13247603808044578],[3147784,2098312,-3950608254927041,-3950601784483124],[3147784,2100352,22544602288119128,22544605449648746],[3147784,2621576,-13247605070627222,-13247603817961795],[3147784,2752520,-13247605080544438,-13247603808044578],[3147784,3146880,-18594000503636004,-18593997194721705],[3147784,3670144,13247603817961795,13247605070627222],[3147784,3801088,13247603808044578,13247605080544438],[3147904,3208,18593997194721705,18594000503636004],[3147904,526472,-13247605070627222,-13247603817961795],[3147904,657536,-13247605080544438,-13247603808044578],[3147904,1049736,-22544605449648746,-22544602288119128],[3147904,1051656,3950601784483124,3950608254927041],[3147904,1574920,13247603817961795,13247605070627222],[3147904,1705984,13247603808044578,13247605080544438],[3147904,2098312,3950601784483124,3950608254927041],[3147904,2100232,-22544605449648746,-22544602288119128],[3147904,2621576,13247603817961795,13247605070627222],[3147904,2752640,13247603808044578,13247605080544438],[3147904,3146760,18593997194721705,18594000503636004],[3147904,3670024,-13247605070627222,-13247603817961795],[3147904,3801088,-13247605080544438,-13247603808044578],[3148936,2056,-45089208980598784,-45089206494936958],[3148936,2176,45089206494936958,45089208980598784],[3148936,1048584,-3950606276156332,-3950603763253824],[3148936,1048704,3950603763253824,3950606276156332],[3148936,1051656,-49039815256755116,-49039810258190782],[3148936,1051776,49039810258190782,49039815256755116],[3148936,2097160,49039810258190782,49039815256755116],[3148936,2097280,-49039815256755116,-49039810258190782],[3148936,2100232,3950603763253824,3950606276156332],[3148936,2100352,-3950606276156332,-3950603763253824],[3148936,3146760,45089206494936958,45089208980598784],[3148936,3146880,-45089208980598784,-45089206494936958],[3178624,1704064,26495207853670452,26495209923507576],[3178624,1736704,-26495209923507576,-26495207853670452],[3178624,2752640,-26495209923507576,-26495207853670452],[3178624,2785280,26495207853670452,26495209923507576],[3179520,689152,-13247605036737943,-13247603851851071],[3179520,1704960,-13247605037567427,-13247603851021587],[3179520,1736704,26495207853670452,26495209923507576],[3179520,2753536,26495207853670452,26495209923507576],[3179520,2785280,-13247605037567427,-13247603851021587],[3179520,3801088,-13247605036737943,-13247603851851071],[3180544,690176,13247603851851071,13247605036737943],[3180544,1705984,-13247605036737943,-13247603851851071],[3180544,2785280,-13247605036737943,-13247603851851071],[3180544,3801088,13247603851851071,13247605036737943],[3276808,1048584,-1975304632453679,-1975300387251397],[3276808,1179648,1975300387251397,1975304632453679],[3276808,1573000,-26495210008022388,-26495207769155642],[3276808,1704064,26495207769155642,26495210008022388],[3276808,2097160,1975300387251397,1975304632453679],[3276808,2228224,-1975304632453679,-1975300387251397],[3276808,2621576,26495207769155642,26495210008022388],[3276808,2752640,-26495210008022388,-26495207769155642],[3276864,1573056,-26495209978356470,-26495207798821558],[3276864,1704064,26495207798821558,26495209978356470],[3276864,2621632,26495207798821558,26495209978356470],[3276864,2752640,-26495209978356470,-26495207798821558],[3276928,0,-7901210982465140,-7901209096355172],[3276928,131200,-3950605491232570,-3950604548177586],[3276928,525312,-24519908084973355,-24519904672499600],[3276928,526336,26495207776804167,26495210000373866],[3276928,656512,-26495210000373866,-26495207776804167],[3276928,657536,26495207776804167,26495210000373866],[3276928,1048704,-1975305335522788,-1975299684182287],[3276928,1179648,-1975305338051185,-1975299681653896],[3276928,1573000,-2231218224,2231218221],[3276928,1573056,26495207798821558,26495209978356470],[3276928,1574016,52990415696972220,52990419857383828],[3276928,1605760,-26495209923507576,-26495207853670452],[3276928,1703944,-2231218221,2231218224],[3276928,1704000,-26495209978356470,-26495207798821558],[3276928,1704960,-51015117331445277,-51015113203205693],[3276928,1736704,26495207853670452,26495209923507576],[3276928,2097280,-1975305338051185,-1975299681653896],[3276928,2228224,-1975305335522788,-1975299684182287],[3276928,2621576,-2231218221,2231218224],[3276928,2621632,-26495209978356470,-26495207798821558],[3276928,2622592,-51015117331445277,-51015113203205693],[3276928,2654336,26495207853670452,26495209923507576],[3276928,2752520,-2231218224,2231218221],[3276928,2752576,26495207798821558,26495209978356470],[3276928,2753536,52990415696972220,52990419857383828],[3276928,2785280,-26495209923507576,-26495207853670452],[3276928,3145728,-3950605491232570,-3950604548177586],[3276928,3276928,-7901210982465140,-7901209096355172],[3276928,3671040,-26495210000373866,-26495207776804167],[3276928,3672064,26495207776804167,26495210000373866],[3276928,3802240,-24519908084973355,-24519904672499600],[3276928,3803264,26495207776804167,26495210000373866],[3276928,68681856,-26495209971802464,-26495207805375563],[3276928,68812800,26495207805375563,26495209971802464],[3276928,69730432,26495207805375563,26495209971802464],[3276928,69861376,-26495209971802464,-26495207805375563],[3276928,134742016,-26495209971802464,-26495207805375563],[3276928,134873216,-26495209971802464,-26495207805375563],[3276928,137887744,-26495209971802464,-26495207805375563],[3276928,138018944,-26495209971802464,-26495207805375563],[3276928,270008448,-929670022,929670021],[3276928,270139392,-929670021,929670022],[3276928,271057024,-929670021,929670022],[3276928,271187968,-929670022,929670021],[3276928,537395200,26495207805375563,26495209971802464],[3276928,537526400,26495207805375563,26495209971802464],[3276928,540540928,26495207805375563,26495209971802464],[3276928,540672128,26495207805375563,26495209971802464],[3276928,549756338176,26495207853670452,26495209923507576],[3276928,549756469376,26495207853670452,26495209923507576],[3276928,549759483904,26495207853670452,26495209923507576],[3276928,549759615104,26495207853670452,26495209923507576],[3277056,525312,1975301892192549,1975303127512530],[3277056,1574144,26495207798821558,26495209978356470],[3277056,1704960,-24519907464643493,-24519905292829456],[3277056,2622720,-24519907464643493,-24519905292829456],[3277056,2753536,26495207798821558,26495209978356470],[3277056,3802368,1975301892192549,1975303127512530],[3277312,526336,-1975303127512530,-1975301892192549],[3277312,1705984,-1975303127512530,-1975301892192549],[3277312,2624000,-1975303127512530,-1975301892192549],[3277312,3803648,-1975303127512530,-1975301892192549],[3277824,0,7901209096355172,7901210982465140],[3277824,132096,17198207762730769,17198211165268399],[3277824,524416,-1975303104304567,-1975301915400511],[3277824,524544,-1975303127512530,-1975301892192549],[3277824,526336,-49039815256755116,-49039810258190782],[3277824,656392,13247603808044578,13247605080544438],[3277824,656512,13247603817961795,13247605070627222],[3277824,658432,-26495210000373866,-26495207776804167],[3277824,689152,13247603851851071,13247605036737943],[3277824,1049600,17198207753821687,17198211174177485],[3277824,1049736,13247603817961795,13247605070627222],[3277824,1179648,-26495211840725034,-26495205936452994],[3277824,1179784,-13247605070627222,-13247603817961795],[3277824,1573896,13247603817961795,13247605070627222],[3277824,1574016,-26495212228659796,-26495205548518216],[3277824,1574144,-26495209978356470,-26495207798821558],[3277824,1575936,-26495210008022388,-26495207769155642],[3277824,1606656,13247603851021587,13247605037567427],[3277824,1703944,-26495210000373866,-26495207776804167],[3277824,1704064,11272298134922261,11272305733961656],[3277824,1704192,24519905292829456,24519907464643493],[3277824,1705984,3950601784483124,3950608254927041],[3277824,1736704,-26495209923507576,-26495207853670452],[3277824,2098176,-26495211840725034,-26495205936452994],[3277824,2098312,-13247605070627222,-13247603817961795],[3277824,2228224,17198207753821687,17198211174177485],[3277824,2228360,13247603817961795,13247605070627222],[3277824,2622472,-26495210000373866,-26495207776804167],[3277824,2622592,11272298134922261,11272305733961656],[3277824,2622720,24519905292829456,24519907464643493],[3277824,2624512,3950601784483124,3950608254927041],[3277824,2655232,-26495209923507576,-26495207853670452],[3277824,2752520,13247603817961795,13247605070627222],[3277824,2752640,-26495212228659796,-26495205548518216],[3277824,2752768,-26495209978356470,-26495207798821558],[3277824,2754560,-26495210008022388,-26495207769155642],[3277824,2785280,13247603851021587,13247605037567427],[3277824,3145728,17198207762730769,17198211165268399],[3277824,3277824,7901209096355172,7901210982465140],[3277824,3670024,13247603808044578,13247605080544438],[3277824,3670144,13247603817961795,13247605070627222],[3277824,3672064,-26495210000373866,-26495207776804167],[3277824,3702784,13247603851851071,13247605036737943],[3277824,3802240,-1975303104304567,-1975301915400511],[3277824,3802368,-1975303127512530,-1975301892192549],[3277824,3804160,-49039815256755116,-49039810258190782],[3277824,67765248,13247603827702546,13247605060886466],[3277824,68682752,13247603826875223,13247605061713792],[3277824,68812800,-26495209971802464,-26495207805375563],[3277824,69731328,-26495209971802464,-26495207805375563],[3277824,69861376,13247603826875223,13247605061713792],[3277824,70778880,13247603827702546,13247605060886466],[3277824,134742016,24519905600979050,24519907156493900],[3277824,134874112,-923386045,923386045],[3277824,135791616,-929670022,929670021],[3277824,135921664,24519905292829457,24519907464643494],[3277824,136840192,24519905292829457,24519907464643494],[3277824,136970240,-929670022,929670021],[3277824,137887744,-923386045,923386045],[3277824,138019840,24519905600979050,24519907156493900],[3277824,269091840,13247603826875223,13247605061713792],[3277824,270009344,13247603821511848,13247605067077166],[3277824,270139392,-26495209977993164,-26495207799184865],[3277824,271057920,-26495209977993164,-26495207799184865],[3277824,271187968,13247603821511848,13247605067077166],[3277824,272105472,13247603826875223,13247605061713792],[3277824,537395200,-22544604485915178,-22544603251852693],[3277824,537527296,-26495209971802464,-26495207805375563],[3277824,538574848,3950603941250842,3950606098159314],[3277824,539493376,3950603941250842,3950606098159314],[3277824,540540928,-26495209971802464,-26495207805375563],[3277824,540673024,-22544604485915178,-22544603251852693],[3277824,549756338176,-1975303106832961,-1975301912872117],[3277824,549756470272,-26495209923507576,-26495207853670452],[3277824,549757517824,24519905362432319,24519907395040631],[3277824,549758436352,24519905362432319,24519907395040631],[3277824,549759483904,-26495209923507576,-26495207853670452],[3277824,549759616000,-1975303106832961,-1975301912872117],[3277960,1048584,13247603817961795,13247605070627222],[3277960,1049736,13247603817961795,13247605070627222],[3277960,1179648,-13247605070627222,-13247603817961795],[3277960,1180800,-13247605070627222,-13247603817961795],[3277960,2097160,-13247605070627222,-13247603817961795],[3277960,2098312,-13247605070627222,-13247603817961795],[3277960,2228224,13247603817961795,13247605070627222],[3277960,2229376,13247603817961795,13247605070627222],[3278848,133120,-13247606143034927,-13247602745554085],[3278848,524800,1975301892192549,1975303127512530],[3278848,525312,3950603763253824,3950606276156332],[3278848,657416,-13247605080544438,-13247603808044578],[3278848,657536,-13247605070627222,-13247603817961795],[3278848,658432,26495207776804167,26495210000373866],[3278848,690176,-13247605036737943,-13247603851851071],[3278848,1050624,13247602745554085,13247606143034927],[3278848,1574920,13247603808044578,13247605080544438],[3278848,1575040,13247603817961795,13247605070627222],[3278848,1575936,-2231218224,2231218221],[3278848,1607680,13247603851851071,13247605036737943],[3278848,1704448,1975301892192549,1975303127512530],[3278848,1704960,-22544605449648746,-22544602288119128],[3278848,2228224,13247602745554085,13247606143034927],[3278848,2624000,1975301892192549,1975303127512530],[3278848,2624512,-22544605449648746,-22544602288119128],[3278848,2752520,13247603808044578,13247605080544438],[3278848,2752640,13247603817961795,13247605070627222],[3278848,2753536,-2231218224,2231218221],[3278848,2785280,13247603851851071,13247605036737943],[3278848,3145728,-13247606143034927,-13247602745554085],[3278848,3670024,-13247605080544438,-13247603808044578],[3278848,3670144,-13247605070627222,-13247603817961795],[3278848,3671040,26495207776804167,26495210000373866],[3278848,3702784,-13247605036737943,-13247603851851071],[3278848,3803648,1975301892192549,1975303127512530],[3278848,3804160,3950603763253824,3950606276156332],[3278848,34078720,1975301915400511,1975303104304567],[3278848,35258368,1975301915400511,1975303104304567],[3278848,36177920,1975301915400511,1975303104304567],[3278848,37357568,1975301915400511,1975303104304567],[3278848,67766272,-13247605060886466,-13247603827702546],[3278848,68683776,13247603827702546,13247605060886466],[3278848,69861376,13247603827702546,13247605060886466],[3278848,70778880,-13247605060886466,-13247603827702546],[3278848,134875136,26495207805375563,26495209971802464],[3278848,135792640,-26495209971802464,-26495207805375563],[3278848,136970240,-26495209971802464,-26495207805375563],[3278848,137887744,26495207805375563,26495209971802464],[3278848,269092864,-13247605061713792,-13247603826875223],[3278848,270010368,13247603826875223,13247605061713792],[3278848,271187968,13247603826875223,13247605061713792],[3278848,272105472,-13247605061713792,-13247603826875223],[3278848,537395200,-1975303127512530,-1975301892192549],[3278848,538574848,-1975303127512530,-1975301892192549],[3278848,539494400,-1975303127512530,-1975301892192549],[3278848,540674048,-1975303127512530,-1975301892192549],[3278848,549756338176,-1975303104304567,-1975301915400511],[3278848,549757517824,-1975303104304567,-1975301915400511],[3278848,549758437376,-1975303104304567,-1975301915400511],[3278848,549759617024,-1975303104304567,-1975301915400511],[3670018,1048714,22544603251852693,22544604485915178],[3670018,1048770,1975301885638543,1975303134066535],[3670018,1179658,1975301892192549,1975303127512530],[3670018,1573000,-22544604485915178,-22544603251852693],[3670018,1573056,-1975303134066535,-1975301885638543],[3670018,1703944,-1975303127512530,-1975301892192549],[3670018,2097290,-22544604485915178,-22544603251852693],[3670018,2097346,-1975303134066535,-1975301885638543],[3670018,2228234,-1975303127512530,-1975301892192549],[3670018,2621576,22544603251852693,22544604485915178],[3670018,2621632,1975301885638543,1975303134066535],[3670018,2752520,1975301892192549,1975303127512530],[3670020,1048716,1975301912872117,1975303106832961],[3670020,1179660,1975301915400511,1975303104304567],[3670020,1212420,22544603305492866,22544604432275006],[3670020,1573000,-1975303106832961,-1975301912872117],[3670020,1703944,-1975303104304567,-1975301915400511],[3670020,1736704,-22544604432275006,-22544603305492866],[3670020,2097292,-1975303106832961,-1975301912872117],[3670020,2228236,-1975303104304567,-1975301915400511],[3670020,2260996,-22544604432275006,-22544603305492866],[3670020,2621576,1975301912872117,1975303106832961],[3670020,2752520,1975301915400511,1975303104304567],[3670020,2785280,22544603305492866,22544604432275006],[3670024,1152,13247603817961795,13247605070627222],[3670024,2176,-13247605070627222,-13247603817961795],[3670024,132096,13247603808044578,13247605080544438],[3670024,133120,-13247605080544438,-13247603808044578],[3670024,525448,15222905730833912,15222908177460183],[3670024,526472,-13247605070627222,-13247603817961795],[3670024,656392,13247603808044578,13247605080544438],[3670024,657416,-13247605080544438,-13247603808044578],[3670024,1048584,-3950608254927041,-3950601784483124],[3670024,1048714,-22544604485915178,-22544603251852693],[3670024,1048716,-1975303106832961,-1975301912872117],[3670024,1048776,-1975303134066535,-1975301885638543],[3670024,1049736,-47064511840212707,-47064508655028107],[3670024,1179658,-1975303127512530,-1975301892192549],[3670024,1179660,-1975303104304567,-1975301915400511],[3670024,1179784,3950601784483124,3950608254927041],[3670024,1212424,-22544604432275006,-22544603305492866],[3670024,1572864,3950601784483124,3950608254927041],[3670024,1572994,22544603251852693,22544604485915178],[3670024,1572996,1975301912872117,1975303106832961],[3670024,1573056,1975301885638543,1975303134066535],[3670024,1574016,45089206600617048,45089208874918688],[3670024,1703938,1975301892192549,1975303127512530],[3670024,1703940,1975301915400511,1975303104304567],[3670024,1704064,-3950608254927041,-3950601784483124],[3670024,1736704,22544603305492866,22544604432275006],[3670024,2097160,3950601784483124,3950608254927041],[3670024,2097290,22544603251852693,22544604485915178],[3670024,2097292,1975301912872117,1975303106832961],[3670024,2097352,1975301885638543,1975303134066535],[3670024,2098312,45089206600617048,45089208874918688],[3670024,2228234,1975301892192549,1975303127512530],[3670024,2228236,1975301915400511,1975303104304567],[3670024,2228360,-3950608254927041,-3950601784483124],[3670024,2261000,22544603305492866,22544604432275006],[3670024,2621440,-3950608254927041,-3950601784483124],[3670024,2621570,-22544604485915178,-22544603251852693],[3670024,2621572,-1975303106832961,-1975301912872117],[3670024,2621632,-1975303134066535,-1975301885638543],[3670024,2622592,-47064511840212707,-47064508655028107],[3670024,2752514,-1975303127512530,-1975301892192549],[3670024,2752516,-1975303104304567,-1975301915400511],[3670024,2752640,3950601784483124,3950608254927041],[3670024,2785280,-22544604432275006,-22544603305492866],[3670024,3146880,15222905730833912,15222908177460183],[3670024,3147904,-13247605070627222,-13247603817961795],[3670024,3277824,13247603808044578,13247605080544438],[3670024,3278848,-13247605080544438,-13247603808044578],[3670024,3671176,13247603817961795,13247605070627222],[3670024,3672200,-13247605070627222,-13247603817961795],[3670024,3802120,13247603808044578,13247605080544438],[3670024,3803144,-13247605080544438,-13247603808044578],[3670024,68288520,-1975303127512529,-1975301892192548],[3670024,68812800,1975301892192548,1975303127512529],[3670024,69337096,1975301892192548,1975303127512529],[3670024,69861376,-1975303127512529,-1975301892192548],[3670024,134217856,13247603826875223,13247605061713792],[3670024,134348800,13247603827702546,13247605060886466],[3670024,134742152,13247603826875223,13247605061713792],[3670024,134873096,13247603827702546,13247605060886466],[3670024,137363584,13247603826875223,13247605061713792],[3670024,137494528,13247603827702546,13247605060886466],[3670024,137887880,13247603826875223,13247605061713792],[3670024,138018824,13247603827702546,13247605060886466],[3670024,269484168,24519905292829456,24519907464643493],[3670024,269615112,3950603941250842,3950606098159314],[3670024,270008448,-24519907464643493,-24519905292829456],[3670024,270139392,-3950606098159314,-3950603941250842],[3670024,270532744,-24519907464643493,-24519905292829456],[3670024,270663688,-3950606098159314,-3950603941250842],[3670024,271057024,24519905292829456,24519907464643493],[3670024,271187968,3950603941250842,3950606098159314],[3670024,536871040,-13247605061713792,-13247603826875223],[3670024,537001984,-13247605060886466,-13247603827702546],[3670024,537395336,-13247605061713792,-13247603826875223],[3670024,537526280,-13247605060886466,-13247603827702546],[3670024,540016768,-13247605061713792,-13247603826875223],[3670024,540147712,-13247605060886466,-13247603827702546],[3670024,540541064,-13247605061713792,-13247603826875223],[3670024,540672008,-13247605060886466,-13247603827702546],[3670024,549755814016,-13247605037567427,-13247603851021587],[3670024,549755944960,-13247605036737943,-13247603851851071],[3670024,549756338312,-13247605037567427,-13247603851021587],[3670024,549756469256,-13247605036737943,-13247603851851071],[3670024,549758959744,-13247605037567427,-13247603851021587],[3670024,549759090688,-13247605036737943,-13247603851851071],[3670024,549759484040,-13247605037567427,-13247603851021587],[3670024,549759614984,-13247605036737943,-13247603851851071],[3670080,1048770,-1975303134066535,-1975301885638543],[3670080,1048776,-22544604485915178,-22544603251852693],[3670080,1179840,24519905292829456,24519907464643493],[3670080,1572994,1975301885638543,1975303134066535],[3670080,1573000,22544603251852693,22544604485915178],[3670080,1704064,-24519907464643493,-24519905292829456],[3670080,2097346,1975301885638543,1975303134066535],[3670080,2097352,22544603251852693,22544604485915178],[3670080,2228416,-24519907464643493,-24519905292829456],[3670080,2621570,-1975303134066535,-1975301885638543],[3670080,2621576,-22544604485915178,-22544603251852693],[3670080,2752640,24519905292829456,24519907464643493],[3670144,1032,-13247605070627222,-13247603817961795],[3670144,2056,13247603817961795,13247605070627222],[3670144,132096,11272300713657228,11272303155226711],[3670144,133120,-13247605070627222,-13247603817961795],[3670144,525448,-15222908177460183,-15222905730833912],[3670144,526472,13247603817961795,13247605070627222],[3670144,656512,13247603817961795,13247605070627222],[3670144,657536,-13247605070627222,-13247603817961795],[3670144,1048776,24519905292829456,24519907464643493],[3670144,1049736,49039810709439166,49039814805506726],[3670144,1179784,-22544605449648746,-22544602288119128],[3670144,1179840,-24519907464643493,-24519905292829456],[3670144,1180800,-51015117331445277,-51015113203205693],[3670144,1572936,-24519907464643493,-24519905292829456],[3670144,1573896,-47064511840212707,-47064508655028107],[3670144,1703944,22544602288119128,22544605449648746],[3670144,1704000,24519905292829456,24519907464643493],[3670144,1704960,49039810709439166,49039814805506726],[3670144,2097352,-24519907464643493,-24519905292829456],[3670144,2098312,-47064511840212707,-47064508655028107],[3670144,2228360,22544602288119128,22544605449648746],[3670144,2228416,24519905292829456,24519907464643493],[3670144,2229376,49039810709439166,49039814805506726],[3670144,2621512,24519905292829456,24519907464643493],[3670144,2622472,49039810709439166,49039814805506726],[3670144,2752520,-22544605449648746,-22544602288119128],[3670144,2752576,-24519907464643493,-24519905292829456],[3670144,2753536,-51015117331445277,-51015113203205693],[3670144,3146760,-15222908177460183,-15222905730833912],[3670144,3147784,13247603817961795,13247605070627222],[3670144,3277824,13247603817961795,13247605070627222],[3670144,3278848,-13247605070627222,-13247603817961795],[3670144,3671176,-13247605070627222,-13247603817961795],[3670144,3672200,13247603817961795,13247605070627222],[3670144,3802240,11272300713657228,11272303155226711],[3670144,3803264,-13247605070627222,-13247603817961795],[3670144,134217736,-13247605061713792,-13247603826875223],[3670144,134348800,13247603826875223,13247605061713792],[3670144,134742152,-13247605061713792,-13247603826875223],[3670144,134873216,13247603826875223,13247605061713792],[3670144,137363464,-13247605061713792,-13247603826875223],[3670144,137494528,13247603826875223,13247605061713792],[3670144,137887880,-13247605061713792,-13247603826875223],[3670144,138018944,13247603826875223,13247605061713792],[3670144,269484168,-24519907464643493,-24519905292829456],[3670144,269615232,24519905292829456,24519907464643493],[3670144,270008328,24519905292829456,24519907464643493],[3670144,270139392,-24519907464643493,-24519905292829456],[3670144,270532744,24519905292829456,24519907464643493],[3670144,270663808,-24519907464643493,-24519905292829456],[3670144,271056904,-24519907464643493,-24519905292829456],[3670144,271187968,24519905292829456,24519907464643493],[3670144,536870920,13247603826875223,13247605061713792],[3670144,537001984,-13247605061713792,-13247603826875223],[3670144,537395336,13247603826875223,13247605061713792],[3670144,537526400,-13247605061713792,-13247603826875223],[3670144,540016648,13247603826875223,13247605061713792],[3670144,540147712,-13247605061713792,-13247603826875223],[3670144,540541064,13247603826875223,13247605061713792],[3670144,540672128,-13247605061713792,-13247603826875223],[3670144,549755813896,13247603851021587,13247605037567427],[3670144,549755944960,-13247605037567427,-13247603851021587],[3670144,549756338312,13247603851021587,13247605037567427],[3670144,549756469376,-13247605037567427,-13247603851021587],[3670144,549758959624,13247603851021587,13247605037567427],[3670144,549759090688,-13247605037567427,-13247603851021587],[3670144,549759484040,13247603851021587,13247605037567427],[3670144,549759615104,-13247605037567427,-13247603851021587],[3670154,1048578,22544603251852693,22544604485915178],[3670154,1048584,-22544604485915178,-22544603251852693],[3670154,1572994,22544603251852693,22544604485915178],[3670154,1573000,-22544604485915178,-22544603251852693],[3670154,2097154,-22544604485915178,-22544603251852693],[3670154,2097160,22544603251852693,22544604485915178],[3670154,2621570,-22544604485915178,-22544603251852693],[3670154,2621576,22544603251852693,22544604485915178],[3670156,1048580,1975301912872117,1975303106832961],[3670156,1048584,-1975303106832961,-1975301912872117],[3670156,1572996,1975301912872117,1975303106832961],[3670156,1573000,-1975303106832961,-1975301912872117],[3670156,2097156,-1975303106832961,-1975301912872117],[3670156,2097160,1975301912872117,1975303106832961],[3670156,2621572,-1975303106832961,-1975301912872117],[3670156,2621576,1975301912872117,1975303106832961],[3670210,1048578,1975301885638543,1975303134066535],[3670210,1048640,-1975303134066535,-1975301885638543],[3670210,1572994,1975301885638543,1975303134066535],[3670210,1573056,-1975303134066535,-1975301885638543],[3670210,2097154,-1975303134066535,-1975301885638543],[3670210,2097216,1975301885638543,1975303134066535],[3670210,2621570,-1975303134066535,-1975301885638543],[3670210,2621632,1975301885638543,1975303134066535],[3670216,1048584,-1975303134066535,-1975301885638543],[3670216,1048640,-22544604485915178,-22544603251852693],[3670216,1048704,24519905292829456,24519907464643493],[3670216,1572936,-24519907464643493,-24519905292829456],[3670216,1573000,22544603251852693,22544604485915178],[3670216,1573056,1975301885638543,1975303134066535],[3670216,2097160,1975301885638543,1975303134066535],[3670216,2097216,22544603251852693,22544604485915178],[3670216,2097280,-24519907464643493,-24519905292829456],[3670216,2621512,24519905292829456,24519907464643493],[3670216,2621576,-22544604485915178,-22544603251852693],[3670216,2621632,-1975303134066535,-1975301885638543],[3670272,132096,-1975303127512530,-1975301892192549],[3670272,1180928,-26495209978356470,-26495207798821558],[3670272,1704960,24519905292829456,24519907464643493],[3670272,2229504,24519905292829456,24519907464643493],[3670272,2753536,-26495209978356470,-26495207798821558],[3670272,3802368,-1975303127512530,-1975301892192549],[3670528,133120,1975301892192549,1975303127512530],[3670528,1705984,1975301892192549,1975303127512530],[3670528,2230784,1975301892192549,1975303127512530],[3670528,3803648,1975301892192549,1975303127512530],[3671040,131200,1975301915400511,1975303104304567],[3671040,131328,1975301892192549,1975303127512530],[3671040,133120,49039810258190782,49039815256755116],[3671040,656512,-26495210000373866,-26495207776804167],[3671040,658432,26495207776804167,26495210000373866],[3671040,1049736,-15222908177460183,-15222905730833912],[3671040,1180800,11272298134922261,11272305733961656],[3671040,1180928,26495207798821558,26495209978356470],[3671040,1182720,26495207769155642,26495210008022388],[3671040,1573000,15222905730833912,15222908177460183],[3671040,1704064,17198204870376650,17198214057622544],[3671040,1704192,-24519907464643493,-24519905292829456],[3671040,1705984,-3950608254927041,-3950601784483124],[3671040,2098312,15222905730833912,15222908177460183],[3671040,2229376,17198204870376650,17198214057622544],[3671040,2229504,-24519907464643493,-24519905292829456],[3671040,2231296,-3950608254927041,-3950601784483124],[3671040,2621576,-15222908177460183,-15222905730833912],[3671040,2752640,11272298134922261,11272305733961656],[3671040,2752768,26495207798821558,26495209978356470],[3671040,2754560,26495207769155642,26495210008022388],[3671040,3276928,-26495210000373866,-26495207776804167],[3671040,3278848,26495207776804167,26495210000373866],[3671040,3802240,1975301915400511,1975303104304567],[3671040,3802368,1975301892192549,1975303127512530],[3671040,3804160,49039810258190782,49039815256755116],[3671040,134348800,-24519907156493900,-24519905600979050],[3671040,134874112,-923386045,923386045],[3671040,135398400,-929670021,929670022],[3671040,135921664,-24519907464643494,-24519905292829457],[3671040,136446976,-24519907464643494,-24519905292829457],[3671040,136970240,-929670021,929670022],[3671040,137494528,-923386045,923386045],[3671040,138019840,-24519907156493900,-24519905600979050],[3671040,269091840,-26495209971802464,-26495207805375563],[3671040,269616128,-26495209977993164,-26495207799184865],[3671040,270139392,52990415906156016,52990419648200040],[3671040,270664704,52990415906156016,52990419648200040],[3671040,271187968,-26495209977993164,-26495207799184865],[3671040,271712256,-26495209971802464,-26495207805375563],[3671040,537001984,22544603251852693,22544604485915178],[3671040,537527296,26495207805375563,26495209971802464],[3671040,538574848,-3950606098159314,-3950603941250842],[3671040,539100160,-3950606098159314,-3950603941250842],[3671040,540147712,26495207805375563,26495209971802464],[3671040,540673024,22544603251852693,22544604485915178],[3671040,549755944960,1975301912872117,1975303106832961],[3671040,549756470272,26495207853670452,26495209923507576],[3671040,549757517824,-24519907395040631,-24519905362432319],[3671040,549758043136,-24519907395040631,-24519905362432319],[3671040,549759090688,26495207853670452,26495209923507576],[3671040,549759616000,1975301912872117,1975303106832961],[3671176,1032,-13247605070627222,-13247603817961795],[3671176,1152,13247603817961795,13247605070627222],[3671176,524296,1975301912872117,1975303106832961],[3671176,524416,-1975303106832961,-1975301912872117],[3671176,1048584,-7321700242729086,-7321693586744675],[3671176,1048704,-3950609278673694,-3950600760736484],[3671176,1049600,-1975303106832961,-1975301912872117],[3671176,1049736,-13247605070627222,-13247603817961795],[3671176,1572864,13247603817961795,13247605070627222],[3671176,1573000,1975301912872117,1975303106832961],[3671176,1573896,-7321700242729086,-7321693586744675],[3671176,1574016,18593996452163044,18594001246194656],[3671176,2097160,18593996452163044,18594001246194656],[3671176,2097280,-7321700242729086,-7321693586744675],[3671176,2098176,1975301912872117,1975303106832961],[3671176,2098312,13247603817961795,13247605070627222],[3671176,2621440,-13247605070627222,-13247603817961795],[3671176,2621576,-1975303106832961,-1975301912872117],[3671176,2622472,-3950609278673694,-3950600760736484],[3671176,2622592,-7321700242729086,-7321693586744675],[3671176,3146760,-1975303106832961,-1975301912872117],[3671176,3146880,1975301912872117,1975303106832961],[3671176,3670024,13247603817961795,13247605070627222],[3671176,3670144,-13247605070627222,-13247603817961795],[3672064,131584,-1975303127512530,-1975301892192549],[3672064,132096,-3950606276156332,-3950603763253824],[3672064,657536,26495207776804167,26495210000373866],[3672064,658432,-26495210000373866,-26495207776804167],[3672064,1181824,-26495210000373866,-26495207776804167],[3672064,1182720,-2231218221,2231218224],[3672064,1704448,-1975303127512530,-1975301892192549],[3672064,1704960,22544602288119128,22544605449648746],[3672064,2230784,-1975303127512530,-1975301892192549],[3672064,2231296,22544602288119128,22544605449648746],[3672064,2752640,-26495210000373866,-26495207776804167],[3672064,2753536,-2231218221,2231218224],[3672064,3276928,26495207776804167,26495210000373866],[3672064,3277824,-26495210000373866,-26495207776804167],[3672064,3803648,-1975303127512530,-1975301892192549],[3672064,3804160,-3950606276156332,-3950603763253824],[3672064,33685504,-1975303104304567,-1975301915400511],[3672064,35258368,-1975303104304567,-1975301915400511],[3672064,35784704,-1975303104304567,-1975301915400511],[3672064,37357568,-1975303104304567,-1975301915400511],[3672064,134875136,-26495209971802464,-26495207805375563],[3672064,135399424,26495207805375563,26495209971802464],[3672064,136970240,26495207805375563,26495209971802464],[3672064,137494528,-26495209971802464,-26495207805375563],[3672064,269092864,26495207805375563,26495209971802464],[3672064,269617152,-26495209971802464,-26495207805375563],[3672064,271187968,-26495209971802464,-26495207805375563],[3672064,271712256,26495207805375563,26495209971802464],[3672064,537001984,1975301892192549,1975303127512530],[3672064,538574848,1975301892192549,1975303127512530],[3672064,539101184,1975301892192549,1975303127512530],[3672064,540674048,1975301892192549,1975303127512530],[3672064,549755944960,1975301915400511,1975303104304567],[3672064,549757517824,1975301915400511,1975303104304567],[3672064,549758044160,1975301915400511,1975303104304567],[3672064,549759617024,1975301915400511,1975303104304567],[3672200,2056,13247603817961795,13247605070627222],[3672200,2176,-13247605070627222,-13247603817961795],[3672200,1574920,13247603817961795,13247605070627222],[3672200,1575040,-13247605070627222,-13247603817961795],[3672200,2097160,-13247605070627222,-13247603817961795],[3672200,2097280,13247603817961795,13247605070627222],[3672200,3670024,-13247605070627222,-13247603817961795],[3672200,3670144,13247603817961795,13247605070627222],[3702784,132096,13247603851851071,13247605036737943],[3702784,133120,-13247605036737943,-13247603851851071],[3702784,689152,13247603851851071,13247605036737943],[3702784,690176,-13247605036737943,-13247603851851071],[3702784,1212420,-22544604432275006,-22544603305492866],[3702784,1212424,-1975303104304567,-1975301915400511],[3702784,1212544,24519905362432319,24519907395040631],[3702784,1703940,22544603305492866,22544604432275006],[3702784,1703944,1975301915400511,1975303104304567],[3702784,1704064,-24519907395040631,-24519905362432319],[3702784,2260996,22544603305492866,22544604432275006],[3702784,2261000,1975301915400511,1975303104304567],[3702784,2261120,-24519907395040631,-24519905362432319],[3702784,2752516,-22544604432275006,-22544603305492866],[3702784,2752520,-1975303104304567,-1975301915400511],[3702784,2752640,24519905362432319,24519907395040631],[3702784,3277824,13247603851851071,13247605036737943],[3702784,3278848,-13247605036737943,-13247603851851071],[3702784,3834880,13247603851851071,13247605036737943],[3702784,3835904,-13247605036737943,-13247603851851071],[3801088,1032,-13247605080544438,-13247603808044578],[3801088,1152,13247603808044578,13247605080544438],[3801088,2056,13247603808044578,13247605080544438],[3801088,2176,-13247605080544438,-13247603808044578],[3801088,33792,-13247605036737943,-13247603851851071],[3801088,34816,13247603851851071,13247605036737943],[3801088,656392,-13247605080544438,-13247603808044578],[3801088,656512,13247603808044578,13247605080544438],[3801088,657416,13247603808044578,13247605080544438],[3801088,657536,-13247605080544438,-13247603808044578],[3801088,689152,-13247605036737943,-13247603851851071],[3801088,690176,13247603851851071,13247605036737943],[3801088,1179784,18593997194721705,18594000503636004],[3801088,1182720,18593997194721705,18594000503636004],[3801088,1212424,24519905362432319,24519907395040631],[3801088,1212544,-24519907395040631,-24519905362432319],[3801088,1573000,-18594000503636004,-18593997194721705],[3801088,1575936,-18594000503636004,-18593997194721705],[3801088,1605640,-24519907395040631,-24519905362432319],[3801088,1605760,24519905362432319,24519907395040631],[3801088,2228360,-18594000503636004,-18593997194721705],[3801088,2231296,-18594000503636004,-18593997194721705],[3801088,2261000,-24519907395040631,-24519905362432319],[3801088,2261120,24519905362432319,24519907395040631],[3801088,2621576,18593997194721705,18594000503636004],[3801088,2624512,18593997194721705,18594000503636004],[3801088,2654216,24519905362432319,24519907395040631],[3801088,2654336,-24519907395040631,-24519905362432319],[3801088,3146760,-13247605080544438,-13247603808044578],[3801088,3146880,13247603808044578,13247605080544438],[3801088,3147784,13247603808044578,13247605080544438],[3801088,3147904,-13247605080544438,-13247603808044578],[3801088,3179520,-13247605036737943,-13247603851851071],[3801088,3180544,13247603851851071,13247605036737943],[3801088,3802120,-13247605080544438,-13247603808044578],[3801088,3802240,13247603808044578,13247605080544438],[3801088,3803144,13247603808044578,13247605080544438],[3801088,3803264,-13247605080544438,-13247603808044578],[3801088,3834880,-13247605036737943,-13247603851851071],[3801088,3835904,13247603851851071,13247605036737943],[3801088,67109888,-13247605060886466,-13247603827702546],[3801088,67110912,13247603827702546,13247605060886466],[3801088,67765248,-13247605060886466,-13247603827702546],[3801088,67766272,13247603827702546,13247605060886466],[3801088,68288520,3950603941250842,3950606098159314],[3801088,68288640,-3950606098159314,-3950603941250842],[3801088,68681736,-3950606098159314,-3950603941250842],[3801088,68681856,3950603941250842,3950606098159314],[3801088,69337096,-3950606098159314,-3950603941250842],[3801088,69337216,3950603941250842,3950606098159314],[3801088,69730312,3950603941250842,3950606098159314],[3801088,69730432,-3950606098159314,-3950603941250842],[3801088,70255616,-13247605060886466,-13247603827702546],[3801088,70256640,13247603827702546,13247605060886466],[3801088,70910976,-13247605060886466,-13247603827702546],[3801088,70912000,13247603827702546,13247605060886466],[3801088,134217736,-13247605060886466,-13247603827702546],[3801088,134217856,13247603827702546,13247605060886466],[3801088,134873096,-13247605060886466,-13247603827702546],[3801088,134873216,13247603827702546,13247605060886466],[3801088,135398400,3950603941250842,3950606098159314],[3801088,135399424,-3950606098159314,-3950603941250842],[3801088,135791616,-3950606098159314,-3950603941250842],[3801088,135792640,3950603941250842,3950606098159314],[3801088,136446976,-3950606098159314,-3950603941250842],[3801088,136448000,3950603941250842,3950606098159314],[3801088,136840192,3950603941250842,3950606098159314],[3801088,136841216,-3950606098159314,-3950603941250842],[3801088,137363464,-13247605060886466,-13247603827702546],[3801088,137363584,13247603827702546,13247605060886466],[3801088,138018824,-13247605060886466,-13247603827702546],[3801088,138018944,13247603827702546,13247605060886466],[3801088,268436480,13247603827702546,13247605060886466],[3801088,268437504,-13247605060886466,-13247603827702546],[3801088,269091840,13247603827702546,13247605060886466],[3801088,269092864,-13247605060886466,-13247603827702546],[3801088,269615112,-3950606098159314,-3950603941250842],[3801088,269615232,3950603941250842,3950606098159314],[3801088,270008328,3950603941250842,3950606098159314],[3801088,270008448,-3950606098159314,-3950603941250842],[3801088,270663688,3950603941250842,3950606098159314],[3801088,270663808,-3950606098159314,-3950603941250842],[3801088,271056904,-3950606098159314,-3950603941250842],[3801088,271057024,3950603941250842,3950606098159314],[3801088,271582208,13247603827702546,13247605060886466],[3801088,271583232,-13247605060886466,-13247603827702546],[3801088,272237568,13247603827702546,13247605060886466],[3801088,272238592,-13247605060886466,-13247603827702546],[3801088,536870920,13247603827702546,13247605060886466],[3801088,536871040,-13247605060886466,-13247603827702546],[3801088,537526280,13247603827702546,13247605060886466],[3801088,537526400,-13247605060886466,-13247603827702546],[3801088,538051584,-3950606098159314,-3950603941250842],[3801088,538052608,3950603941250842,3950606098159314],[3801088,538444800,3950603941250842,3950606098159314],[3801088,538445824,-3950606098159314,-3950603941250842],[3801088,539100160,3950603941250842,3950606098159314],[3801088,539101184,-3950606098159314,-3950603941250842],[3801088,539493376,-3950606098159314,-3950603941250842],[3801088,539494400,3950603941250842,3950606098159314],[3801088,540016648,13247603827702546,13247605060886466],[3801088,540016768,-13247605060886466,-13247603827702546],[3801088,540672008,13247603827702546,13247605060886466],[3801088,540672128,-13247605060886466,-13247603827702546],[3801088,549755813896,13247603851851071,13247605036737943],[3801088,549755814016,-13247605036737943,-13247603851851071],[3801088,549756469256,13247603851851071,13247605036737943],[3801088,549756469376,-13247605036737943,-13247603851851071],[3801088,549756994560,-24519907395040631,-24519905362432319],[3801088,549756995584,24519905362432319,24519907395040631],[3801088,549757387776,24519905362432319,24519907395040631],[3801088,549757388800,-24519907395040631,-24519905362432319],[3801088,549758043136,24519905362432319,24519907395040631],[3801088,549758044160,-24519907395040631,-24519905362432319],[3801088,549758436352,-24519907395040631,-24519905362432319],[3801088,549758437376,24519905362432319,24519907395040631],[3801088,549758959624,13247603851851071,13247605036737943],[3801088,549758959744,-13247605036737943,-13247603851851071],[3801088,549759614984,13247603851851071,13247605036737943],[3801088,549759615104,-13247605036737943,-13247603851851071],[3801098,1048578,1975301892192549,1975303127512530],[3801098,1048584,-1975303127512530,-1975301892192549],[3801098,1703938,1975301892192549,1975303127512530],[3801098,1703944,-1975303127512530,-1975301892192549],[3801098,2097154,-1975303127512530,-1975301892192549],[3801098,2097160,1975301892192549,1975303127512530],[3801098,2752514,-1975303127512530,-1975301892192549],[3801098,2752520,1975301892192549,1975303127512530],[3801100,1048580,1975301915400511,1975303104304567],[3801100,1048584,-1975303104304567,-1975301915400511],[3801100,1703940,1975301915400511,1975303104304567],[3801100,1703944,-1975303104304567,-1975301915400511],[3801100,2097156,-1975303104304567,-1975301915400511],[3801100,2097160,1975301915400511,1975303104304567],[3801100,2752516,-1975303104304567,-1975301915400511],[3801100,2752520,1975301915400511,1975303104304567],[3801224,1048584,-49039815256755116,-49039810258190782],[3801224,1048704,3950603763253824,3950606276156332],[3801224,1179648,45089206494936958,45089208980598784],[3801224,1573000,-45089208980598784,-45089206494936958],[3801224,1703944,-3950606276156332,-3950603763253824],[3801224,1704064,49039810258190782,49039815256755116],[3801224,2097160,49039810258190782,49039815256755116],[3801224,2097280,-3950606276156332,-3950603763253824],[3801224,2228224,-45089208980598784,-45089206494936958],[3801224,2621576,45089206494936958,45089208980598784],[3801224,2752520,3950603763253824,3950606276156332],[3801224,2752640,-49039815256755116,-49039810258190782],[3801280,1048640,-1975303127512530,-1975301892192549],[3801280,1048704,1975301892192549,1975303127512530],[3801280,1704000,-1975303127512530,-1975301892192549],[3801280,1704064,1975301892192549,1975303127512530],[3801280,2097216,1975301892192549,1975303127512530],[3801280,2097280,-1975303127512530,-1975301892192549],[3801280,2752576,1975301892192549,1975303127512530],[3801280,2752640,-1975303127512530,-1975301892192549],[3802120,1032,-13247605080544438,-13247603808044578],[3802120,132096,13247603808044578,13247605080544438],[3802120,1048584,26495207776804167,26495210000373866],[3802120,1179648,-26495210000373866,-26495207776804167],[3802120,1573896,13247603817961795,13247605070627222],[3802120,1704960,-13247605070627222,-13247603817961795],[3802120,2097160,-13247605070627222,-13247603817961795],[3802120,2228224,13247603817961795,13247605070627222],[3802120,2622472,-26495210000373866,-26495207776804167],[3802120,2753536,26495207776804167,26495210000373866],[3802120,3670024,13247603808044578,13247605080544438],[3802120,3801088,-13247605080544438,-13247603808044578],[3802240,1152,13247603808044578,13247605080544438],[3802240,131200,1975301915400511,1975303104304567],[3802240,132096,11272300713657228,11272303155226711],[3802240,524416,-1975303104304567,-1975301915400511],[3802240,525312,-24519908084973355,-24519904672499600],[3802240,1048704,-24519908084973355,-24519904672499600],[3802240,1049600,-1975303104304567,-1975301915400511],[3802240,1179648,-39742815068283432,-39742811597483621],[3802240,1180800,-39742815068283432,-39742811597483621],[3802240,1572864,66238019675883376,66238024767061710],[3802240,1574016,26495207628724032,26495210148454004],[3802240,1704064,1975301915400511,1975303104304567],[3802240,1704960,11272300713657228,11272303155226711],[3802240,2097280,11272300713657228,11272303155226711],[3802240,2098176,1975301915400511,1975303104304567],[3802240,2228224,26495207628724032,26495210148454004],[3802240,2229376,66238019675883376,66238024767061710],[3802240,2621440,-39742815068283432,-39742811597483621],[3802240,2622592,-39742815068283432,-39742811597483621],[3802240,2752640,-1975303104304567,-1975301915400511],[3802240,2753536,-24519908084973355,-24519904672499600],[3802240,3276928,-24519908084973355,-24519904672499600],[3802240,3277824,-1975303104304567,-1975301915400511],[3802240,3670144,11272300713657228,11272303155226711],[3802240,3671040,1975301915400511,1975303104304567],[3802240,3801088,13247603808044578,13247605080544438],[3802368,131328,1975301892192549,1975303127512530],[3802368,132096,-1975303127512530,-1975301892192549],[3802368,524544,-1975303127512530,-1975301892192549],[3802368,525312,1975301892192549,1975303127512530],[3802368,3277056,1975301892192549,1975303127512530],[3802368,3277824,-1975303127512530,-1975301892192549],[3802368,3670272,-1975303127512530,-1975301892192549],[3802368,3671040,1975301892192549,1975303127512530],[3803144,2056,13247603808044578,13247605080544438],[3803144,133120,-13247605080544438,-13247603808044578],[3803144,1574920,13247603808044578,13247605080544438],[3803144,1705984,-13247605080544438,-13247603808044578],[3803144,2097160,-13247605080544438,-13247603808044578],[3803144,2228224,13247603808044578,13247605080544438],[3803144,3670024,-13247605080544438,-13247603808044578],[3803144,3801088,13247603808044578,13247605080544438],[3803264,2176,-13247605080544438,-13247603808044578],[3803264,133120,-13247605070627222,-13247603817961795],[3803264,526336,26495207776804167,26495210000373866],[3803264,1181824,-26495210000373866,-26495207776804167],[3803264,1575040,13247603817961795,13247605070627222],[3803264,1705984,13247603808044578,13247605080544438],[3803264,2097280,13247603808044578,13247605080544438],[3803264,2228224,13247603817961795,13247605070627222],[3803264,2621440,-26495210000373866,-26495207776804167],[3803264,3276928,26495207776804167,26495210000373866],[3803264,3670144,-13247605070627222,-13247603817961795],[3803264,3801088,-13247605080544438,-13247603808044578],[3803648,131584,-1975303127512530,-1975301892192549],[3803648,133120,1975301892192549,1975303127512530],[3803648,524800,1975301892192549,1975303127512530],[3803648,526336,-1975303127512530,-1975301892192549],[3803648,3277312,-1975303127512530,-1975301892192549],[3803648,3278848,1975301892192549,1975303127512530],[3803648,3670528,1975301892192549,1975303127512530],[3803648,3672064,-1975303127512530,-1975301892192549],[3804160,132096,-3950606276156332,-3950603763253824],[3804160,133120,49039810258190782,49039815256755116],[3804160,525312,3950603763253824,3950606276156332],[3804160,526336,-49039815256755116,-49039810258190782],[3804160,1182720,45089206494936958,45089208980598784],[3804160,1575936,-45089208980598784,-45089206494936958],[3804160,2228224,-45089208980598784,-45089206494936958],[3804160,2621440,45089206494936958,45089208980598784],[3804160,3277824,-49039815256755116,-49039810258190782],[3804160,3278848,3950603763253824,3950606276156332],[3804160,3671040,49039810258190782,49039815256755116],[3804160,3672064,-3950606276156332,-3950603763253824],[3833860,1048580,22544603305492866,22544604432275006],[3833860,1081344,-22544604432275006,-22544603305492866],[3833860,1703940,22544603305492866,22544604432275006],[3833860,1736704,-22544604432275006,-22544603305492866],[3833860,2097156,-22544604432275006,-22544603305492866],[3833860,2129920,22544603305492866,22544604432275006],[3833860,2752516,-22544604432275006,-22544603305492866],[3833860,2785280,22544603305492866,22544604432275006],[3833864,1048584,-22544604432275006,-22544603305492866],[3833864,1081344,-1975303104304567,-1975301915400511],[3833864,1179648,24519905362432319,24519907395040631],[3833864,1605640,-24519907395040631,-24519905362432319],[3833864,1703944,1975301915400511,1975303104304567],[3833864,1736704,22544603305492866,22544604432275006],[3833864,2097160,22544603305492866,22544604432275006],[3833864,2129920,1975301915400511,1975303104304567],[3833864,2228224,-24519907395040631,-24519905362432319],[3833864,2654216,24519905362432319,24519907395040631],[3833864,2752520,-1975303104304567,-1975301915400511],[3833864,2785280,-22544604432275006,-22544603305492866],[3833984,1081344,-1975303106832961,-1975301912872117],[3833984,1179648,1975301912872117,1975303106832961],[3833984,1605760,-1975303106832961,-1975301912872117],[3833984,1704064,1975301912872117,1975303106832961],[3833984,2129920,1975301912872117,1975303106832961],[3833984,2228224,-1975303106832961,-1975301912872117],[3833984,2654336,1975301912872117,1975303106832961],[3833984,2752640,-1975303106832961,-1975301912872117],[3834880,33792,-13247605036737943,-13247603851851071],[3834880,132096,13247603851851071,13247605036737943],[3834880,1081344,26495207853670452,26495209923507576],[3834880,1179648,-26495209923507576,-26495207853670452],[3834880,1606656,13247603851021587,13247605037567427],[3834880,1704960,-13247605037567427,-13247603851021587],[3834880,2129920,-13247605037567427,-13247603851021587],[3834880,2228224,13247603851021587,13247605037567427],[3834880,2655232,-26495209923507576,-26495207853670452],[3834880,2753536,26495207853670452,26495209923507576],[3834880,3702784,13247603851851071,13247605036737943],[3834880,3801088,-13247605036737943,-13247603851851071],[3835904,34816,13247603851851071,13247605036737943],[3835904,133120,-13247605036737943,-13247603851851071],[3835904,1607680,13247603851851071,13247605036737943],[3835904,1705984,-13247605036737943,-13247603851851071],[3835904,2129920,-13247605036737943,-13247603851851071],[3835904,2228224,13247603851851071,13247605036737943],[3835904,3702784,-13247605036737943,-13247603851851071],[3835904,3801088,13247603851851071,13247605036737943],[16777217,834,13247603873200664,13247605015388352],[16777217,16778051,13247603873200664,13247605015388352],[16777218,320,1975300972654016,1975304047051064],[16777218,576,1975300488006682,1975304531698390],[16777218,768,-13247606072008906,-13247602816580098],[16777218,833,-13247605015388352,-13247603873200664],[16777218,840,-13247605036737943,-13247603851851071],[16777218,960,-13247605037567427,-13247603851021587],[16777218,1856,1975301912872117,1975303106832961],[16777218,2880,1975301915400511,1975303104304567],[16777218,16777538,1975300972654016,1975304047051064],[16777218,16777794,1975300488006682,1975304531698390],[16777218,16777986,-13247606072008906,-13247602816580098],[16777218,16778051,-13247605015388352,-13247603873200664],[16777218,16778058,-13247605036737943,-13247603851851071],[16777218,16778178,-13247605037567427,-13247603851021587],[16777218,16779074,1975301912872117,1975303106832961],[16777218,16780098,1975301915400511,1975303104304567],[16777218,33555264,22544603305492866,22544604432275006],[16777218,50332482,22544603305492866,22544604432275006],[16777218,4398046511936,22544603296910704,22544604440857164],[16777218,4398063289154,22544603296910704,22544604440857164],[16777224,834,13247603851851071,13247605036737943],[16777224,960,13247603851021587,13247605037567427],[16777224,1920,-1975303106832961,-1975301912872117],[16777224,3712,-1975303104304567,-1975301915400511],[16777224,16778058,13247603851851071,13247605036737943],[16777224,16778184,13247603851021587,13247605037567427],[16777224,16779144,-1975303106832961,-1975301912872117],[16777224,16780936,-1975303104304567,-1975301915400511],[16777224,33557632,-22544604432275006,-22544603305492866],[16777224,50334856,-22544604432275006,-22544603305492866],[16777280,258,-1975304047051064,-1975300972654016],[16777280,514,-1975304531698390,-1975300488006682],[16777280,898,26495207853670452,26495209923507576],[16777280,1794,-1975303106832961,-1975301912872117],[16777280,2818,-1975303104304567,-1975301915400511],[16777280,16777538,-1975304047051064,-1975300972654016],[16777280,16777794,-1975304531698390,-1975300488006682],[16777280,16778178,26495207853670452,26495209923507576],[16777280,16779074,-1975303106832961,-1975301912872117],[16777280,16780098,-1975303104304567,-1975301915400511],[16777280,33555202,-22544604432275006,-22544603305492866],[16777280,50332482,-22544604432275006,-22544603305492866],[16777280,4398046511874,-22544604440857164,-22544603296910704],[16777280,4398063289154,-22544604440857164,-22544603296910704],[16777283,833,-13247605015388352,-13247603873200664],[16777283,834,13247603873200664,13247605015388352],[16777283,16777985,13247603873200664,13247605015388352],[16777283,16777986,-13247605015388352,-13247603873200664],[16777290,834,13247603851851071,13247605036737943],[16777290,840,-13247605036737943,-13247603851851071],[16777290,16777986,-13247605036737943,-13247603851851071],[16777290,16777992,13247603851851071,13247605036737943],[16777344,834,-13247605036737943,-13247603851851071],[16777344,840,-13247605037567427,-13247603851021587],[16777344,1800,1975301912872117,1975303106832961],[16777344,3592,1975301915400511,1975303104304567],[16777344,16778178,-13247605036737943,-13247603851851071],[16777344,16778184,-13247605037567427,-13247603851021587],[16777344,16779144,1975301912872117,1975303106832961],[16777344,16780936,1975301915400511,1975303104304567],[16777344,33557512,22544603305492866,22544604432275006],[16777344,50334856,22544603305492866,22544604432275006],[16777410,834,-13247605036737943,-13247603851851071],[16777410,898,26495207853670452,26495209923507576],[16777410,960,-13247605037567427,-13247603851021587],[16777410,16777986,-13247605037567427,-13247603851021587],[16777410,16778048,26495207853670452,26495209923507576],[16777410,16778112,-13247605036737943,-13247603851851071],[16777416,840,-13247605037567427,-13247603851021587],[16777416,960,13247603851021587,13247605037567427],[16777416,16777992,13247603851021587,13247605037567427],[16777416,16778112,-13247605037567427,-13247603851021587],[16777472,514,13247602816580098,13247606072008906],[16777472,16777986,13247602816580098,13247606072008906],[16777537,514,13247603873200664,13247605015388352],[16777537,579,13247603873200664,13247605015388352],[16777537,16777986,13247603873200664,13247605015388352],[16777537,16778051,13247603873200664,13247605015388352],[16777538,258,-1975304047051064,-1975300972654016],[16777538,320,1975300972654016,1975304047051064],[16777538,513,-13247605015388352,-13247603873200664],[16777538,520,-13247605036737943,-13247603851851071],[16777538,579,-13247605015388352,-13247603873200664],[16777538,586,-13247605036737943,-13247603851851071],[16777538,640,13247603851851071,13247605036737943],[16777538,706,13247603851851071,13247605036737943],[16777538,1794,24519905362432319,24519907395040631],[16777538,1856,-24519907395040631,-24519905362432319],[16777538,2818,-1975303104304567,-1975301915400511],[16777538,2880,1975301915400511,1975303104304567],[16777538,16777218,1975300972654016,1975304047051064],[16777538,16777280,-1975304047051064,-1975300972654016],[16777538,16777985,-13247605015388352,-13247603873200664],[16777538,16777992,-13247605036737943,-13247603851851071],[16777538,16778051,-13247605015388352,-13247603873200664],[16777538,16778058,-13247605036737943,-13247603851851071],[16777538,16778112,13247603851851071,13247605036737943],[16777538,16778178,13247603851851071,13247605036737943],[16777538,16778754,-24519907395040631,-24519905362432319],[16777538,16778816,24519905362432319,24519907395040631],[16777538,16779778,1975301915400511,1975303104304567],[16777538,16779840,-1975303104304567,-1975301915400511],[16777538,33555202,-22544604432275006,-22544603305492866],[16777538,33555264,22544603305492866,22544604432275006],[16777538,50332162,22544603305492866,22544604432275006],[16777538,50332224,-22544604432275006,-22544603305492866],[16777538,4398046511874,-22544604440857164,-22544603296910704],[16777538,4398046511936,22544603296910704,22544604440857164],[16777538,4398063288834,22544603296910704,22544604440857164],[16777538,4398063288896,-22544604440857164,-22544603296910704],[16777544,514,13247603851851071,13247605036737943],[16777544,586,13247603851851071,13247605036737943],[16777544,640,13247603851021587,13247605037567427],[16777544,712,13247603851021587,13247605037567427],[16777544,16777986,13247603851851071,13247605036737943],[16777544,16778058,13247603851851071,13247605036737943],[16777544,16778112,13247603851021587,13247605037567427],[16777544,16778184,13247603851021587,13247605037567427],[16777602,576,-26495209923507576,-26495207853670452],[16777602,706,-26495209923507576,-26495207853670452],[16777602,16778048,-26495209923507576,-26495207853670452],[16777602,16778178,-26495209923507576,-26495207853670452],[16777664,514,13247603851021587,13247605037567427],[16777664,520,-13247605037567427,-13247603851021587],[16777664,706,13247603851021587,13247605037567427],[16777664,712,-13247605037567427,-13247603851021587],[16777664,16777986,13247603851021587,13247605037567427],[16777664,16777992,-13247605037567427,-13247603851021587],[16777664,16778178,13247603851021587,13247605037567427],[16777664,16778184,-13247605037567427,-13247603851021587],[16777794,514,-1975304531698390,-1975300488006682],[16777794,576,1975300488006682,1975304531698390],[16777794,16777218,1975300488006682,1975304531698390],[16777794,16777280,-1975304531698390,-1975300488006682],[16777985,579,-13247605015388352,-13247603873200664],[16777985,834,13247603873200664,13247605015388352],[16777985,16777283,13247603873200664,13247605015388352],[16777985,16777538,-13247605015388352,-13247603873200664],[16777986,514,13247602816580098,13247606072008906],[16777986,579,13247603873200664,13247605015388352],[16777986,586,13247603851851071,13247605036737943],[16777986,706,13247603851021587,13247605037567427],[16777986,768,-13247606072008906,-13247602816580098],[16777986,833,-13247605015388352,-13247603873200664],[16777986,840,-13247605036737943,-13247603851851071],[16777986,960,-13247605037567427,-13247603851021587],[16777986,1602,-26495209923507576,-26495207853670452],[16777986,1856,26495207853670452,26495209923507576],[16777986,2112,-22544604432275006,-22544603305492866],[16777986,2370,-22544604432275006,-22544603305492866],[16777986,16777218,-13247606072008906,-13247602816580098],[16777986,16777283,-13247605015388352,-13247603873200664],[16777986,16777290,-13247605036737943,-13247603851851071],[16777986,16777410,-13247605037567427,-13247603851021587],[16777986,16777472,13247602816580098,13247606072008906],[16777986,16777537,13247603873200664,13247605015388352],[16777986,16777544,13247603851851071,13247605036737943],[16777986,16777664,13247603851021587,13247605037567427],[16777986,16778306,26495207853670452,26495209923507576],[16777986,16778560,-26495209923507576,-26495207853670452],[16777986,16779840,-22544604432275006,-22544603305492866],[16777986,16780098,-22544604432275006,-22544603305492866],[16777986,33554496,22544603305492866,22544604432275006],[16777986,33554754,22544603305492866,22544604432275006],[16777986,50332224,22544603305492866,22544604432275006],[16777986,50332482,22544603305492866,22544604432275006],[16777986,4398046511168,22544603296910704,22544604440857164],[16777986,4398046511426,22544603296910704,22544604440857164],[16777986,4398063288896,22544603296910704,22544604440857164],[16777986,4398063289154,22544603296910704,22544604440857164],[16777992,586,-13247605036737943,-13247603851851071],[16777992,712,-13247605037567427,-13247603851021587],[16777992,834,13247603851851071,13247605036737943],[16777992,960,13247603851021587,13247605037567427],[16777992,1672,1975301912872117,1975303106832961],[16777992,1920,-1975303106832961,-1975301912872117],[16777992,16777290,13247603851851071,13247605036737943],[16777992,16777416,13247603851021587,13247605037567427],[16777992,16777538,-13247605036737943,-13247603851851071],[16777992,16777664,-13247605037567427,-13247603851021587],[16777992,16778376,-1975303106832961,-1975301912872117],[16777992,16778624,1975301912872117,1975303106832961],[16778048,706,-26495209923507576,-26495207853670452],[16778048,898,26495207853670452,26495209923507576],[16778048,1602,26495207853670452,26495209923507576],[16778048,1794,-26495209923507576,-26495207853670452],[16778048,2050,22544603305492866,22544604432275006],[16778048,2370,22544603305492866,22544604432275006],[16778048,16777410,26495207853670452,26495209923507576],[16778048,16777602,-26495209923507576,-26495207853670452],[16778048,16778306,-26495209923507576,-26495207853670452],[16778048,16778498,26495207853670452,26495209923507576],[16778048,16779778,22544603305492866,22544604432275006],[16778048,16780098,22544603305492866,22544604432275006],[16778048,33554434,-22544604432275006,-22544603305492866],[16778048,33554754,-22544604432275006,-22544603305492866],[16778048,50332162,-22544604432275006,-22544603305492866],[16778048,50332482,-22544604432275006,-22544603305492866],[16778048,4398046511106,-22544604440857164,-22544603296910704],[16778048,4398046511426,-22544604440857164,-22544603296910704],[16778048,4398063288834,-22544604440857164,-22544603296910704],[16778048,4398063289154,-22544604440857164,-22544603296910704],[16778051,513,-13247605015388352,-13247603873200664],[16778051,514,13247603873200664,13247605015388352],[16778051,833,-13247605015388352,-13247603873200664],[16778051,834,13247603873200664,13247605015388352],[16778051,16777217,13247603873200664,13247605015388352],[16778051,16777218,-13247605015388352,-13247603873200664],[16778051,16777537,13247603873200664,13247605015388352],[16778051,16777538,-13247605015388352,-13247603873200664],[16778058,514,13247603851851071,13247605036737943],[16778058,520,-13247605036737943,-13247603851851071],[16778058,834,13247603851851071,13247605036737943],[16778058,840,-13247605036737943,-13247603851851071],[16778058,16777218,-13247605036737943,-13247603851851071],[16778058,16777224,13247603851851071,13247605036737943],[16778058,16777538,-13247605036737943,-13247603851851071],[16778058,16777544,13247603851851071,13247605036737943],[16778112,706,13247603851851071,13247605036737943],[16778112,712,13247603851021587,13247605037567427],[16778112,834,-13247605036737943,-13247603851851071],[16778112,840,-13247605037567427,-13247603851021587],[16778112,1672,-1975303106832961,-1975301912872117],[16778112,1800,1975301912872117,1975303106832961],[16778112,16777410,-13247605036737943,-13247603851851071],[16778112,16777416,-13247605037567427,-13247603851021587],[16778112,16777538,13247603851851071,13247605036737943],[16778112,16777544,13247603851021587,13247605037567427],[16778112,16778376,1975301912872117,1975303106832961],[16778112,16778504,-1975303106832961,-1975301912872117],[16778178,514,13247603851021587,13247605037567427],[16778178,576,-26495209923507576,-26495207853670452],[16778178,640,13247603851851071,13247605036737943],[16778178,834,-13247605036737943,-13247603851851071],[16778178,898,26495207853670452,26495209923507576],[16778178,960,-13247605037567427,-13247603851021587],[16778178,16777218,-13247605037567427,-13247603851021587],[16778178,16777280,26495207853670452,26495209923507576],[16778178,16777344,-13247605036737943,-13247603851851071],[16778178,16777538,13247603851851071,13247605036737943],[16778178,16777602,-26495209923507576,-26495207853670452],[16778178,16777664,13247603851021587,13247605037567427],[16778184,520,-13247605037567427,-13247603851021587],[16778184,640,13247603851021587,13247605037567427],[16778184,840,-13247605037567427,-13247603851021587],[16778184,960,13247603851021587,13247605037567427],[16778184,16777224,13247603851021587,13247605037567427],[16778184,16777344,-13247605037567427,-13247603851021587],[16778184,16777544,13247603851021587,13247605037567427],[16778184,16777664,-13247605037567427,-13247603851021587],[16778306,1794,-26495209923507576,-26495207853670452],[16778306,1856,26495207853670452,26495209923507576],[16778306,16777986,26495207853670452,26495209923507576],[16778306,16778048,-26495209923507576,-26495207853670452],[16778376,1800,1975301912872117,1975303106832961],[16778376,1920,-1975303106832961,-1975301912872117],[16778376,3592,1975301915400511,1975303104304567],[16778376,3712,-1975303104304567,-1975301915400511],[16778376,16777992,-1975303106832961,-1975301912872117],[16778376,16778112,1975301912872117,1975303106832961],[16778376,16779784,-1975303104304567,-1975301915400511],[16778376,16779904,1975301915400511,1975303104304567],[16778376,33557512,22544603305492866,22544604432275006],[16778376,33557632,-22544604432275006,-22544603305492866],[16778376,50333704,-22544604432275006,-22544603305492866],[16778376,50333824,22544603305492866,22544604432275006],[16778498,576,1975301912872117,1975303106832961],[16778498,834,-24519907395040631,-24519905362432319],[16778498,1602,26495207853670452,26495209923507576],[16778498,16778048,26495207853670452,26495209923507576],[16778498,16778816,-24519907395040631,-24519905362432319],[16778498,16779074,1975301912872117,1975303106832961],[16778504,640,-1975303106832961,-1975301912872117],[16778504,1672,-1975303106832961,-1975301912872117],[16778504,16778112,-1975303106832961,-1975301912872117],[16778504,16779144,-1975303106832961,-1975301912872117],[16778560,514,-1975303106832961,-1975301912872117],[16778560,834,24519905362432319,24519907395040631],[16778560,1602,-26495209923507576,-26495207853670452],[16778560,16777986,-26495209923507576,-26495207853670452],[16778560,16778754,24519905362432319,24519907395040631],[16778560,16779074,-1975303106832961,-1975301912872117],[16778624,520,1975301912872117,1975303106832961],[16778624,1672,1975301912872117,1975303106832961],[16778624,16777992,1975301912872117,1975303106832961],[16778624,16779144,1975301912872117,1975303106832961],[16778754,834,24519905362432319,24519907395040631],[16778754,1856,-24519907395040631,-24519905362432319],[16778754,16777538,-24519907395040631,-24519905362432319],[16778754,16778560,24519905362432319,24519907395040631],[16778816,834,-24519907395040631,-24519905362432319],[16778816,1794,24519905362432319,24519907395040631],[16778816,16777538,24519905362432319,24519907395040631],[16778816,16778498,-24519907395040631,-24519905362432319],[16779074,514,-1975303106832961,-1975301912872117],[16779074,576,1975301912872117,1975303106832961],[16779074,1794,-1975303106832961,-1975301912872117],[16779074,1856,1975301912872117,1975303106832961],[16779074,16777218,1975301912872117,1975303106832961],[16779074,16777280,-1975303106832961,-1975301912872117],[16779074,16778498,1975301912872117,1975303106832961],[16779074,16778560,-1975303106832961,-1975301912872117],[16779144,520,1975301912872117,1975303106832961],[16779144,640,-1975303106832961,-1975301912872117],[16779144,1800,1975301912872117,1975303106832961],[16779144,1920,-1975303106832961,-1975301912872117],[16779144,16777224,-1975303106832961,-1975301912872117],[16779144,16777344,1975301912872117,1975303106832961],[16779144,16778504,-1975303106832961,-1975301912872117],[16779144,16778624,1975301912872117,1975303106832961],[16779522,576,24519905362432319,24519907395040631],[16779522,834,24519905362432319,24519907395040631],[16779522,16779840,24519905362432319,24519907395040631],[16779522,16780098,24519905362432319,24519907395040631],[16779584,514,-24519907395040631,-24519905362432319],[16779584,834,-24519907395040631,-24519905362432319],[16779584,16779778,-24519907395040631,-24519905362432319],[16779584,16780098,-24519907395040631,-24519905362432319],[16779778,834,-24519907395040631,-24519905362432319],[16779778,2370,22544603305492866,22544604432275006],[16779778,2880,1975301915400511,1975303104304567],[16779778,16777538,1975301915400511,1975303104304567],[16779778,16778048,22544603305492866,22544604432275006],[16779778,16779584,-24519907395040631,-24519905362432319],[16779784,1672,1975301915400511,1975303104304567],[16779784,3712,-1975303104304567,-1975301915400511],[16779784,16778376,-1975303104304567,-1975301915400511],[16779784,16780416,1975301915400511,1975303104304567],[16779840,834,24519905362432319,24519907395040631],[16779840,2370,-22544604432275006,-22544603305492866],[16779840,2818,-1975303104304567,-1975301915400511],[16779840,16777538,-1975303104304567,-1975301915400511],[16779840,16777986,-22544604432275006,-22544603305492866],[16779840,16779522,24519905362432319,24519907395040631],[16779904,1672,-1975303104304567,-1975301915400511],[16779904,3592,1975301915400511,1975303104304567],[16779904,16778376,1975301915400511,1975303104304567],[16779904,16780296,-1975303104304567,-1975301915400511],[16780098,514,-24519907395040631,-24519905362432319],[16780098,576,24519905362432319,24519907395040631],[16780098,2050,22544603305492866,22544604432275006],[16780098,2112,-22544604432275006,-22544603305492866],[16780098,2818,-1975303104304567,-1975301915400511],[16780098,2880,1975301915400511,1975303104304567],[16780098,16777218,1975301915400511,1975303104304567],[16780098,16777280,-1975303104304567,-1975301915400511],[16780098,16777986,-22544604432275006,-22544603305492866],[16780098,16778048,22544603305492866,22544604432275006],[16780098,16779522,24519905362432319,24519907395040631],[16780098,16779584,-24519907395040631,-24519905362432319],[16780296,640,-1975303104304567,-1975301915400511],[16780296,1672,-1975303104304567,-1975301915400511],[16780296,16779904,-1975303104304567,-1975301915400511],[16780296,16780936,-1975303104304567,-1975301915400511],[16780296,33554560,-22544604432275006,-22544603305492866],[16780296,33555592,-22544604432275006,-22544603305492866],[16780296,50333824,-22544604432275006,-22544603305492866],[16780296,50334856,-22544604432275006,-22544603305492866],[16780416,520,1975301915400511,1975303104304567],[16780416,1672,1975301915400511,1975303104304567],[16780416,16779784,1975301915400511,1975303104304567],[16780416,16780936,1975301915400511,1975303104304567],[16780416,33554440,22544603305492866,22544604432275006],[16780416,33555592,22544603305492866,22544604432275006],[16780416,50333704,22544603305492866,22544604432275006],[16780416,50334856,22544603305492866,22544604432275006],[16780936,520,1975301915400511,1975303104304567],[16780936,640,-1975303104304567,-1975301915400511],[16780936,3592,1975301915400511,1975303104304567],[16780936,3712,-1975303104304567,-1975301915400511],[16780936,16777224,-1975303104304567,-1975301915400511],[16780936,16777344,1975301915400511,1975303104304567],[16780936,16780296,-1975303104304567,-1975301915400511],[16780936,16780416,1975301915400511,1975303104304567],[33554434,2880,-1975303104304567,-1975301915400511],[33554434,3208,13247603851851071,13247605036737943],[33554434,3264,13247603851021587,13247605037567427],[33554434,3392,-1975303106832961,-1975301912872117],[33554434,16778048,-22544604432275006,-22544603305492866],[33554434,33557314,-1975303104304567,-1975301915400511],[33554434,33557642,13247603851851071,13247605036737943],[33554434,33557698,13247603851021587,13247605037567427],[33554434,33557826,-1975303106832961,-1975301912872117],[33554434,50332482,-22544604432275006,-22544603305492866],[33554436,3208,13247603873200664,13247605015388352],[33554436,33557644,13247603873200664,13247605015388352],[33554440,1152,1975300972654016,1975304047051064],[33554440,2176,1975300488006682,1975304531698390],[33554440,3072,-13247606072008906,-13247602816580098],[33554440,3202,-13247605036737943,-13247603851851071],[33554440,3204,-13247605015388352,-13247603873200664],[33554440,3264,-13247605037567427,-13247603851021587],[33554440,3456,1975301912872117,1975303106832961],[33554440,3712,1975301915400511,1975303104304567],[33554440,134272,-13247605036737943,-13247603851851071],[33554440,527488,-13247605037567427,-13247603851021587],[33554440,1051776,1975301912872117,1975303106832961],[33554440,2100352,1975301915400511,1975303104304567],[33554440,16780416,22544603305492866,22544604432275006],[33554440,33555592,1975300972654016,1975304047051064],[33554440,33556616,1975300488006682,1975304531698390],[33554440,33557512,-13247606072008906,-13247602816580098],[33554440,33557642,-13247605036737943,-13247603851851071],[33554440,33557644,-13247605015388352,-13247603873200664],[33554440,33557704,-13247605037567427,-13247603851021587],[33554440,33557896,1975301912872117,1975303106832961],[33554440,33558152,1975301915400511,1975303104304567],[33554440,33688712,-13247605036737943,-13247603851851071],[33554440,34081928,-13247605037567427,-13247603851021587],[33554440,34606216,1975301912872117,1975303106832961],[33554440,35654792,1975301915400511,1975303104304567],[33554440,50334856,22544603305492866,22544604432275006],[33554440,549755817088,22544603305492866,22544604432275006],[33554440,549789371528,22544603305492866,22544604432275006],[33554440,8796093025408,22544603296910704,22544604440857164],[33554440,8796126579848,22544603296910704,22544604440857164],[33554496,2818,1975301915400511,1975303104304567],[33554496,3202,-13247605037567427,-13247603851021587],[33554496,3208,-13247605036737943,-13247603851851071],[33554496,3330,1975301912872117,1975303106832961],[33554496,16777986,22544603305492866,22544604432275006],[33554496,33557314,1975301915400511,1975303104304567],[33554496,33557698,-13247605037567427,-13247603851021587],[33554496,33557704,-13247605036737943,-13247603851851071],[33554496,33557826,1975301912872117,1975303106832961],[33554496,50332482,22544603305492866,22544604432275006],[33554560,1032,-1975304047051064,-1975300972654016],[33554560,2056,-1975304531698390,-1975300488006682],[33554560,3144,26495207853670452,26495209923507576],[33554560,3336,-1975303106832961,-1975301912872117],[33554560,3592,-1975303104304567,-1975301915400511],[33554560,527368,26495207853670452,26495209923507576],[33554560,1051656,-1975303106832961,-1975301912872117],[33554560,2100232,-1975303104304567,-1975301915400511],[33554560,16780296,-22544604432275006,-22544603305492866],[33554560,33555592,-1975304047051064,-1975300972654016],[33554560,33556616,-1975304531698390,-1975300488006682],[33554560,33557704,26495207853670452,26495209923507576],[33554560,33557896,-1975303106832961,-1975301912872117],[33554560,33558152,-1975303104304567,-1975301915400511],[33554560,34081928,26495207853670452,26495209923507576],[33554560,34606216,-1975303106832961,-1975301912872117],[33554560,35654792,-1975303104304567,-1975301915400511],[33554560,50334856,-22544604432275006,-22544603305492866],[33554560,549755816968,-22544604432275006,-22544603305492866],[33554560,549789371528,-22544604432275006,-22544603305492866],[33554560,8796093025288,-22544604440857164,-22544603296910704],[33554560,8796126579848,-22544604440857164,-22544603296910704],[33554570,3202,-13247605036737943,-13247603851851071],[33554570,3208,13247603851851071,13247605036737943],[33554570,33557506,13247603851851071,13247605036737943],[33554570,33557512,-13247605036737943,-13247603851851071],[33554572,3204,-13247605015388352,-13247603873200664],[33554572,3208,13247603873200664,13247605015388352],[33554572,33557508,13247603873200664,13247605015388352],[33554572,33557512,-13247605015388352,-13247603873200664],[33554626,3202,-13247605037567427,-13247603851021587],[33554626,3264,13247603851021587,13247605037567427],[33554626,33557506,13247603851021587,13247605037567427],[33554626,33557568,-13247605037567427,-13247603851021587],[33554632,3144,26495207853670452,26495209923507576],[33554632,3208,-13247605036737943,-13247603851851071],[33554632,3264,-13247605037567427,-13247603851021587],[33554632,33557512,-13247605037567427,-13247603851021587],[33554632,33557568,-13247605036737943,-13247603851851071],[33554632,33557632,26495207853670452,26495209923507576],[33554754,2818,1975301915400511,1975303104304567],[33554754,2880,-1975303104304567,-1975301915400511],[33554754,3330,1975301912872117,1975303106832961],[33554754,3392,-1975303106832961,-1975301912872117],[33554754,16777986,22544603305492866,22544604432275006],[33554754,16778048,-22544604432275006,-22544603305492866],[33554754,33556994,-1975303104304567,-1975301915400511],[33554754,33557056,1975301915400511,1975303104304567],[33554754,33557506,-1975303106832961,-1975301912872117],[33554754,33557568,1975301912872117,1975303106832961],[33554754,50332162,-22544604432275006,-22544603305492866],[33554754,50332224,22544603305492866,22544604432275006],[33554824,3336,-26495209923507576,-26495207853670452],[33554824,3456,26495207853670452,26495209923507576],[33554824,33557512,26495207853670452,26495209923507576],[33554824,33557632,-26495209923507576,-26495207853670452],[33555202,2112,-1975303104304567,-1975301915400511],[33555202,2370,-1975303104304567,-1975301915400511],[33555202,16777280,-22544604432275006,-22544603305492866],[33555202,16777538,-22544604432275006,-22544603305492866],[33555202,33557056,-1975303104304567,-1975301915400511],[33555202,33557314,-1975303104304567,-1975301915400511],[33555202,50332224,-22544604432275006,-22544603305492866],[33555202,50332482,-22544604432275006,-22544603305492866],[33555264,2050,1975301915400511,1975303104304567],[33555264,2370,1975301915400511,1975303104304567],[33555264,16777218,22544603305492866,22544604432275006],[33555264,16777538,22544603305492866,22544604432275006],[33555264,33556994,1975301915400511,1975303104304567],[33555264,33557314,1975301915400511,1975303104304567],[33555264,50332162,22544603305492866,22544604432275006],[33555264,50332482,22544603305492866,22544604432275006],[33555456,2056,13247602816580098,13247606072008906],[33555456,33557512,13247602816580098,13247606072008906],[33555528,2176,-26495209923507576,-26495207853670452],[33555528,2248,-26495209923507576,-26495207853670452],[33555528,33557632,-26495209923507576,-26495207853670452],[33555528,33557704,-26495209923507576,-26495207853670452],[33555586,2056,13247603851851071,13247605036737943],[33555586,2112,13247603851021587,13247605037567427],[33555586,2186,13247603851851071,13247605036737943],[33555586,2242,13247603851021587,13247605037567427],[33555586,33557512,13247603851851071,13247605036737943],[33555586,33557568,13247603851021587,13247605037567427],[33555586,33557642,13247603851851071,13247605036737943],[33555586,33557698,13247603851021587,13247605037567427],[33555588,2056,13247603873200664,13247605015388352],[33555588,2188,13247603873200664,13247605015388352],[33555588,33557512,13247603873200664,13247605015388352],[33555588,33557644,13247603873200664,13247605015388352],[33555592,1032,-1975304047051064,-1975300972654016],[33555592,1152,1975300972654016,1975304047051064],[33555592,2050,-13247605036737943,-13247603851851071],[33555592,2052,-13247605015388352,-13247603873200664],[33555592,2112,13247603851851071,13247605036737943],[33555592,2186,-13247605036737943,-13247603851851071],[33555592,2188,-13247605015388352,-13247603873200664],[33555592,2248,13247603851851071,13247605036737943],[33555592,3336,24519905362432319,24519907395040631],[33555592,3456,-24519907395040631,-24519905362432319],[33555592,3592,-1975303104304567,-1975301915400511],[33555592,3712,1975301915400511,1975303104304567],[33555592,133120,-13247605036737943,-13247603851851071],[33555592,133256,-13247605036737943,-13247603851851071],[33555592,526336,13247603851851071,13247605036737943],[33555592,526472,13247603851851071,13247605036737943],[33555592,1051656,24519905362432319,24519907395040631],[33555592,1051776,-24519907395040631,-24519905362432319],[33555592,2100232,-1975303104304567,-1975301915400511],[33555592,2100352,1975301915400511,1975303104304567],[33555592,16780296,-22544604432275006,-22544603305492866],[33555592,16780416,22544603305492866,22544604432275006],[33555592,33554440,1975300972654016,1975304047051064],[33555592,33554560,-1975304047051064,-1975300972654016],[33555592,33556744,-24519907395040631,-24519905362432319],[33555592,33556864,24519905362432319,24519907395040631],[33555592,33557000,1975301915400511,1975303104304567],[33555592,33557120,-1975303104304567,-1975301915400511],[33555592,33557506,-13247605036737943,-13247603851851071],[33555592,33557508,-13247605015388352,-13247603873200664],[33555592,33557568,13247603851851071,13247605036737943],[33555592,33557642,-13247605036737943,-13247603851851071],[33555592,33557644,-13247605015388352,-13247603873200664],[33555592,33557704,13247603851851071,13247605036737943],[33555592,33688576,-13247605036737943,-13247603851851071],[33555592,33688712,-13247605036737943,-13247603851851071],[33555592,34081792,13247603851851071,13247605036737943],[33555592,34081928,13247603851851071,13247605036737943],[33555592,34605064,-24519907395040631,-24519905362432319],[33555592,34605184,24519905362432319,24519907395040631],[33555592,35653640,1975301915400511,1975303104304567],[33555592,35653760,-1975303104304567,-1975301915400511],[33555592,50333704,22544603305492866,22544604432275006],[33555592,50333824,-22544604432275006,-22544603305492866],[33555592,549755816968,-22544604432275006,-22544603305492866],[33555592,549755817088,22544603305492866,22544604432275006],[33555592,549789370376,22544603305492866,22544604432275006],[33555592,549789370496,-22544604432275006,-22544603305492866],[33555592,8796093025288,-22544604440857164,-22544603296910704],[33555592,8796093025408,22544603296910704,22544604440857164],[33555592,8796126578696,22544603296910704,22544604440857164],[33555592,8796126578816,-22544604440857164,-22544603296910704],[33555648,2050,-13247605037567427,-13247603851021587],[33555648,2056,13247603851021587,13247605037567427],[33555648,2242,-13247605037567427,-13247603851021587],[33555648,2248,13247603851021587,13247605037567427],[33555648,33557506,-13247605037567427,-13247603851021587],[33555648,33557512,13247603851021587,13247605037567427],[33555648,33557698,-13247605037567427,-13247603851021587],[33555648,33557704,13247603851021587,13247605037567427],[33555714,2112,-1975303106832961,-1975301912872117],[33555714,2370,-1975303106832961,-1975301912872117],[33555714,33557568,-1975303106832961,-1975301912872117],[33555714,33557826,-1975303106832961,-1975301912872117],[33555720,2176,1975301912872117,1975303106832961],[33555720,2440,26495207853670452,26495209923507576],[33555720,3208,-24519907395040631,-24519905362432319],[33555720,33556864,-24519907395040631,-24519905362432319],[33555720,33557632,26495207853670452,26495209923507576],[33555720,33557896,1975301912872117,1975303106832961],[33555776,2050,1975301912872117,1975303106832961],[33555776,2370,1975301912872117,1975303106832961],[33555776,33557506,1975301912872117,1975303106832961],[33555776,33557826,1975301912872117,1975303106832961],[33555840,2056,-1975303106832961,-1975301912872117],[33555840,2440,-26495209923507576,-26495207853670452],[33555840,3208,24519905362432319,24519907395040631],[33555840,33556744,24519905362432319,24519907395040631],[33555840,33557512,-26495209923507576,-26495207853670452],[33555840,33557896,-1975303106832961,-1975301912872117],[33555976,2176,24519905362432319,24519907395040631],[33555976,3208,24519905362432319,24519907395040631],[33555976,33557120,24519905362432319,24519907395040631],[33555976,33558152,24519905362432319,24519907395040631],[33556096,2056,-24519907395040631,-24519905362432319],[33556096,3208,-24519907395040631,-24519905362432319],[33556096,33557000,-24519907395040631,-24519905362432319],[33556096,33558152,-24519907395040631,-24519905362432319],[33556616,2056,-1975304531698390,-1975300488006682],[33556616,2176,1975300488006682,1975304531698390],[33556616,33554440,1975300488006682,1975304531698390],[33556616,33554560,-1975304531698390,-1975300488006682],[33556744,3208,24519905362432319,24519907395040631],[33556744,3456,-24519907395040631,-24519905362432319],[33556744,33555592,-24519907395040631,-24519905362432319],[33556744,33555840,24519905362432319,24519907395040631],[33556864,3208,-24519907395040631,-24519905362432319],[33556864,3336,24519905362432319,24519907395040631],[33556864,33555592,24519905362432319,24519907395040631],[33556864,33555720,-24519907395040631,-24519905362432319],[33556994,2370,1975301915400511,1975303104304567],[33556994,2880,-1975303104304567,-1975301915400511],[33556994,33554754,-1975303104304567,-1975301915400511],[33556994,33555264,1975301915400511,1975303104304567],[33557000,1672,22544603305492866,22544604432275006],[33557000,3208,-24519907395040631,-24519905362432319],[33557000,3712,1975301915400511,1975303104304567],[33557000,33555592,1975301915400511,1975303104304567],[33557000,33556096,-24519907395040631,-24519905362432319],[33557000,33557632,22544603305492866,22544604432275006],[33557056,2370,-1975303104304567,-1975301915400511],[33557056,2818,1975301915400511,1975303104304567],[33557056,33554754,1975301915400511,1975303104304567],[33557056,33555202,-1975303104304567,-1975301915400511],[33557120,1672,-22544604432275006,-22544603305492866],[33557120,3208,24519905362432319,24519907395040631],[33557120,3592,-1975303104304567,-1975301915400511],[33557120,33555592,-1975303104304567,-1975301915400511],[33557120,33555976,24519905362432319,24519907395040631],[33557120,33557512,-22544604432275006,-22544603305492866],[33557314,2050,1975301915400511,1975303104304567],[33557314,2112,-1975303104304567,-1975301915400511],[33557314,2818,1975301915400511,1975303104304567],[33557314,2880,-1975303104304567,-1975301915400511],[33557314,33554434,-1975303104304567,-1975301915400511],[33557314,33554496,1975301915400511,1975303104304567],[33557314,33555202,-1975303104304567,-1975301915400511],[33557314,33555264,1975301915400511,1975303104304567],[33557506,2186,-13247605036737943,-13247603851851071],[33557506,2242,-13247605037567427,-13247603851021587],[33557506,2370,1975301912872117,1975303106832961],[33557506,3208,13247603851851071,13247605036737943],[33557506,3264,13247603851021587,13247605037567427],[33557506,3392,-1975303106832961,-1975301912872117],[33557506,33554570,13247603851851071,13247605036737943],[33557506,33554626,13247603851021587,13247605037567427],[33557506,33554754,-1975303106832961,-1975301912872117],[33557506,33555592,-13247605036737943,-13247603851851071],[33557506,33555648,-13247605037567427,-13247603851021587],[33557506,33555776,1975301912872117,1975303106832961],[33557508,2188,-13247605015388352,-13247603873200664],[33557508,3208,13247603873200664,13247605015388352],[33557508,33554572,13247603873200664,13247605015388352],[33557508,33555592,-13247605015388352,-13247603873200664],[33557512,640,-22544604432275006,-22544603305492866],[33557512,1672,-22544604432275006,-22544603305492866],[33557512,2056,13247602816580098,13247606072008906],[33557512,2186,13247603851851071,13247605036737943],[33557512,2188,13247603873200664,13247605015388352],[33557512,2248,13247603851021587,13247605037567427],[33557512,2440,-26495209923507576,-26495207853670452],[33557512,3072,-13247606072008906,-13247602816580098],[33557512,3202,-13247605036737943,-13247603851851071],[33557512,3204,-13247605015388352,-13247603873200664],[33557512,3264,-13247605037567427,-13247603851021587],[33557512,3456,26495207853670452,26495209923507576],[33557512,133256,13247603851851071,13247605036737943],[33557512,134272,-13247605036737943,-13247603851851071],[33557512,526472,13247603851021587,13247605037567427],[33557512,527488,-13247605037567427,-13247603851021587],[33557512,1050760,-26495209923507576,-26495207853670452],[33557512,1051776,26495207853670452,26495209923507576],[33557512,2097280,-22544604432275006,-22544603305492866],[33557512,2098312,-22544604432275006,-22544603305492866],[33557512,16777344,22544603305492866,22544604432275006],[33557512,16778376,22544603305492866,22544604432275006],[33557512,33554440,-13247606072008906,-13247602816580098],[33557512,33554570,-13247605036737943,-13247603851851071],[33557512,33554572,-13247605015388352,-13247603873200664],[33557512,33554632,-13247605037567427,-13247603851021587],[33557512,33554824,26495207853670452,26495209923507576],[33557512,33555456,13247602816580098,13247606072008906],[33557512,33555586,13247603851851071,13247605036737943],[33557512,33555588,13247603873200664,13247605015388352],[33557512,33555648,13247603851021587,13247605037567427],[33557512,33555840,-26495209923507576,-26495207853670452],[33557512,33557120,-22544604432275006,-22544603305492866],[33557512,33558152,-22544604432275006,-22544603305492866],[33557512,33685640,-13247605036737943,-13247603851851071],[33557512,33686656,13247603851851071,13247605036737943],[33557512,34078856,-13247605037567427,-13247603851021587],[33557512,34079872,13247603851021587,13247605037567427],[33557512,34603144,26495207853670452,26495209923507576],[33557512,34604160,-26495209923507576,-26495207853670452],[33557512,35653760,-22544604432275006,-22544603305492866],[33557512,35654792,-22544604432275006,-22544603305492866],[33557512,50333824,22544603305492866,22544604432275006],[33557512,50334856,22544603305492866,22544604432275006],[33557512,549755814016,22544603305492866,22544604432275006],[33557512,549755815048,22544603305492866,22544604432275006],[33557512,549789370496,22544603305492866,22544604432275006],[33557512,549789371528,22544603305492866,22544604432275006],[33557512,8796093022336,22544603296910704,22544604440857164],[33557512,8796093023368,22544603296910704,22544604440857164],[33557512,8796126578816,22544603296910704,22544604440857164],[33557512,8796126579848,22544603296910704,22544604440857164],[33557568,2242,13247603851021587,13247605037567427],[33557568,2248,13247603851851071,13247605036737943],[33557568,2370,-1975303106832961,-1975301912872117],[33557568,3202,-13247605037567427,-13247603851021587],[33557568,3208,-13247605036737943,-13247603851851071],[33557568,3330,1975301912872117,1975303106832961],[33557568,33554626,-13247605037567427,-13247603851021587],[33557568,33554632,-13247605036737943,-13247603851851071],[33557568,33554754,1975301912872117,1975303106832961],[33557568,33555586,13247603851021587,13247605037567427],[33557568,33555592,13247603851851071,13247605036737943],[33557568,33555714,-1975303106832961,-1975301912872117],[33557632,520,22544603305492866,22544604432275006],[33557632,1672,22544603305492866,22544604432275006],[33557632,2248,-26495209923507576,-26495207853670452],[33557632,2440,26495207853670452,26495209923507576],[33557632,3144,26495207853670452,26495209923507576],[33557632,3336,-26495209923507576,-26495207853670452],[33557632,526472,-26495209923507576,-26495207853670452],[33557632,527368,26495207853670452,26495209923507576],[33557632,1050760,26495207853670452,26495209923507576],[33557632,1051656,-26495209923507576,-26495207853670452],[33557632,2097160,22544603305492866,22544604432275006],[33557632,2098312,22544603305492866,22544604432275006],[33557632,16777224,-22544604432275006,-22544603305492866],[33557632,16778376,-22544604432275006,-22544603305492866],[33557632,33554632,26495207853670452,26495209923507576],[33557632,33554824,-26495209923507576,-26495207853670452],[33557632,33555528,-26495209923507576,-26495207853670452],[33557632,33555720,26495207853670452,26495209923507576],[33557632,33557000,22544603305492866,22544604432275006],[33557632,33558152,22544603305492866,22544604432275006],[33557632,34078856,26495207853670452,26495209923507576],[33557632,34079752,-26495209923507576,-26495207853670452],[33557632,34603144,-26495209923507576,-26495207853670452],[33557632,34604040,26495207853670452,26495209923507576],[33557632,35653640,22544603305492866,22544604432275006],[33557632,35654792,22544603305492866,22544604432275006],[33557632,50333704,-22544604432275006,-22544603305492866],[33557632,50334856,-22544604432275006,-22544603305492866],[33557632,549755813896,-22544604432275006,-22544603305492866],[33557632,549755815048,-22544604432275006,-22544603305492866],[33557632,549789370376,-22544604432275006,-22544603305492866],[33557632,549789371528,-22544604432275006,-22544603305492866],[33557632,8796093022216,-22544604440857164,-22544603296910704],[33557632,8796093023368,-22544604440857164,-22544603296910704],[33557632,8796126578696,-22544604440857164,-22544603296910704],[33557632,8796126579848,-22544604440857164,-22544603296910704],[33557642,2050,-13247605036737943,-13247603851851071],[33557642,2056,13247603851851071,13247605036737943],[33557642,3202,-13247605036737943,-13247603851851071],[33557642,3208,13247603851851071,13247605036737943],[33557642,33554434,13247603851851071,13247605036737943],[33557642,33554440,-13247605036737943,-13247603851851071],[33557642,33555586,13247603851851071,13247605036737943],[33557642,33555592,-13247605036737943,-13247603851851071],[33557644,2052,-13247605015388352,-13247603873200664],[33557644,2056,13247603873200664,13247605015388352],[33557644,3204,-13247605015388352,-13247603873200664],[33557644,3208,13247603873200664,13247605015388352],[33557644,33554436,13247603873200664,13247605015388352],[33557644,33554440,-13247605015388352,-13247603873200664],[33557644,33555588,13247603873200664,13247605015388352],[33557644,33555592,-13247605015388352,-13247603873200664],[33557698,2050,-13247605037567427,-13247603851021587],[33557698,2112,13247603851021587,13247605037567427],[33557698,3202,-13247605037567427,-13247603851021587],[33557698,3264,13247603851021587,13247605037567427],[33557698,33554434,13247603851021587,13247605037567427],[33557698,33554496,-13247605037567427,-13247603851021587],[33557698,33555586,13247603851021587,13247605037567427],[33557698,33555648,-13247605037567427,-13247603851021587],[33557704,2056,13247603851021587,13247605037567427],[33557704,2112,13247603851851071,13247605036737943],[33557704,2176,-26495209923507576,-26495207853670452],[33557704,3144,26495207853670452,26495209923507576],[33557704,3208,-13247605036737943,-13247603851851071],[33557704,3264,-13247605037567427,-13247603851021587],[33557704,33554440,-13247605037567427,-13247603851021587],[33557704,33554496,-13247605036737943,-13247603851851071],[33557704,33554560,26495207853670452,26495209923507576],[33557704,33555528,-26495209923507576,-26495207853670452],[33557704,33555592,13247603851851071,13247605036737943],[33557704,33555648,13247603851021587,13247605037567427],[33557826,2050,1975301912872117,1975303106832961],[33557826,2112,-1975303106832961,-1975301912872117],[33557826,3330,1975301912872117,1975303106832961],[33557826,3392,-1975303106832961,-1975301912872117],[33557826,33554434,-1975303106832961,-1975301912872117],[33557826,33554496,1975301912872117,1975303106832961],[33557826,33555714,-1975303106832961,-1975301912872117],[33557826,33555776,1975301912872117,1975303106832961],[33557896,2056,-1975303106832961,-1975301912872117],[33557896,2176,1975301912872117,1975303106832961],[33557896,3336,-1975303106832961,-1975301912872117],[33557896,3456,1975301912872117,1975303106832961],[33557896,33554440,1975301912872117,1975303106832961],[33557896,33554560,-1975303106832961,-1975301912872117],[33557896,33555720,1975301912872117,1975303106832961],[33557896,33555840,-1975303106832961,-1975301912872117],[33558152,520,22544603305492866,22544604432275006],[33558152,640,-22544604432275006,-22544603305492866],[33558152,2056,-24519907395040631,-24519905362432319],[33558152,2176,24519905362432319,24519907395040631],[33558152,3592,-1975303104304567,-1975301915400511],[33558152,3712,1975301915400511,1975303104304567],[33558152,33554440,1975301915400511,1975303104304567],[33558152,33554560,-1975303104304567,-1975301915400511],[33558152,33555976,24519905362432319,24519907395040631],[33558152,33556096,-24519907395040631,-24519905362432319],[33558152,33557512,-22544604432275006,-22544603305492866],[33558152,33557632,22544603305492866,22544604432275006],[33685504,3208,13247603851851071,13247605036737943],[33685504,527488,13247603851021587,13247605037567427],[33685504,1575936,-1975303106832961,-1975301912872117],[33685504,3672064,-1975303104304567,-1975301915400511],[33685504,33688712,13247603851851071,13247605036737943],[33685504,34212992,13247603851021587,13247605037567427],[33685504,35261440,-1975303106832961,-1975301912872117],[33685504,37357568,-1975303104304567,-1975301915400511],[33685504,549759483904,-22544604432275006,-22544603305492866],[33685504,549793169408,-22544604432275006,-22544603305492866],[33685640,3208,13247603851851071,13247605036737943],[33685640,134272,-13247605036737943,-13247603851851071],[33685640,33557512,-13247605036737943,-13247603851851071],[33685640,33688576,13247603851851071,13247605036737943],[33686656,2056,13247603851851071,13247605036737943],[33686656,133256,13247603851851071,13247605036737943],[33686656,526336,13247603851021587,13247605037567427],[33686656,657536,13247603851021587,13247605037567427],[33686656,33557512,13247603851851071,13247605036737943],[33686656,33688712,13247603851851071,13247605036737943],[33686656,34081792,13247603851021587,13247605037567427],[33686656,34212992,13247603851021587,13247605037567427],[33688576,3208,13247603851851071,13247605036737943],[33688576,133256,-13247605036737943,-13247603851851071],[33688576,527488,13247603851021587,13247605037567427],[33688576,657536,-13247605037567427,-13247603851021587],[33688576,1575936,-1975303106832961,-1975301912872117],[33688576,1705984,1975301912872117,1975303106832961],[33688576,33555592,-13247605036737943,-13247603851851071],[33688576,33685640,13247603851851071,13247605036737943],[33688576,34079872,-13247605037567427,-13247603851021587],[33688576,34209920,13247603851021587,13247605037567427],[33688576,35128320,1975301912872117,1975303106832961],[33688576,35258368,-1975303106832961,-1975301912872117],[33688712,2056,13247603851851071,13247605036737943],[33688712,3208,13247603851851071,13247605036737943],[33688712,133120,-13247605036737943,-13247603851851071],[33688712,134272,-13247605036737943,-13247603851851071],[33688712,33554440,-13247605036737943,-13247603851851071],[33688712,33555592,-13247605036737943,-13247603851851071],[33688712,33685504,13247603851851071,13247605036737943],[33688712,33686656,13247603851851071,13247605036737943],[34078720,3208,-13247605036737943,-13247603851851071],[34078720,134272,-13247605037567427,-13247603851021587],[34078720,1182720,1975301912872117,1975303106832961],[34078720,3278848,1975301915400511,1975303104304567],[34078720,34081928,-13247605036737943,-13247603851851071],[34078720,34212992,-13247605037567427,-13247603851021587],[34078720,35261440,1975301912872117,1975303106832961],[34078720,37357568,1975301915400511,1975303104304567],[34078720,549759090688,22544603305492866,22544604432275006],[34078720,549793169408,22544603305492866,22544604432275006],[34078856,3208,-13247605036737943,-13247603851851071],[34078856,527368,26495207853670452,26495209923507576],[34078856,527488,-13247605037567427,-13247603851021587],[34078856,33557512,-13247605037567427,-13247603851021587],[34078856,33557632,26495207853670452,26495209923507576],[34078856,34081792,-13247605036737943,-13247603851851071],[34079752,2176,-26495209923507576,-26495207853670452],[34079752,526472,-26495209923507576,-26495207853670452],[34079752,33557632,-26495209923507576,-26495207853670452],[34079752,34081928,-26495209923507576,-26495207853670452],[34079872,2056,13247603851021587,13247605037567427],[34079872,133120,-13247605037567427,-13247603851021587],[34079872,526472,13247603851021587,13247605037567427],[34079872,657536,-13247605037567427,-13247603851021587],[34079872,33557512,13247603851021587,13247605037567427],[34079872,33688576,-13247605037567427,-13247603851021587],[34079872,34081928,13247603851021587,13247605037567427],[34079872,34212992,-13247605037567427,-13247603851021587],[34081792,3208,-13247605036737943,-13247603851851071],[34081792,134272,-13247605037567427,-13247603851021587],[34081792,526472,13247603851851071,13247605036737943],[34081792,657536,13247603851021587,13247605037567427],[34081792,1182720,1975301912872117,1975303106832961],[34081792,1705984,-1975303106832961,-1975301912872117],[34081792,33555592,13247603851851071,13247605036737943],[34081792,33686656,13247603851021587,13247605037567427],[34081792,34078856,-13247605036737943,-13247603851851071],[34081792,34209920,-13247605037567427,-13247603851021587],[34081792,34735104,-1975303106832961,-1975301912872117],[34081792,35258368,1975301912872117,1975303106832961],[34081928,2056,13247603851021587,13247605037567427],[34081928,2176,-26495209923507576,-26495207853670452],[34081928,3208,-13247605036737943,-13247603851851071],[34081928,526336,13247603851851071,13247605036737943],[34081928,527368,26495207853670452,26495209923507576],[34081928,527488,-13247605037567427,-13247603851021587],[34081928,33554440,-13247605037567427,-13247603851021587],[34081928,33554560,26495207853670452,26495209923507576],[34081928,33555592,13247603851851071,13247605036737943],[34081928,34078720,-13247605036737943,-13247603851851071],[34081928,34079752,-26495209923507576,-26495207853670452],[34081928,34079872,13247603851021587,13247605037567427],[34209920,134272,-13247605037567427,-13247603851021587],[34209920,527488,13247603851021587,13247605037567427],[34209920,33688576,13247603851021587,13247605037567427],[34209920,34081792,-13247605037567427,-13247603851021587],[34212992,133120,-13247605037567427,-13247603851021587],[34212992,134272,-13247605037567427,-13247603851021587],[34212992,526336,13247603851021587,13247605037567427],[34212992,527488,13247603851021587,13247605037567427],[34212992,33685504,13247603851021587,13247605037567427],[34212992,33686656,13247603851021587,13247605037567427],[34212992,34078720,-13247605037567427,-13247603851021587],[34212992,34079872,-13247605037567427,-13247603851021587],[34603144,1051656,-26495209923507576,-26495207853670452],[34603144,1051776,26495207853670452,26495209923507576],[34603144,33557512,26495207853670452,26495209923507576],[34603144,33557632,-26495209923507576,-26495207853670452],[34604040,2176,1975301912872117,1975303106832961],[34604040,3208,-24519907395040631,-24519905362432319],[34604040,1050760,26495207853670452,26495209923507576],[34604040,33557632,26495207853670452,26495209923507576],[34604040,34605184,-24519907395040631,-24519905362432319],[34604040,34606216,1975301912872117,1975303106832961],[34604160,2056,-1975303106832961,-1975301912872117],[34604160,3208,24519905362432319,24519907395040631],[34604160,1050760,-26495209923507576,-26495207853670452],[34604160,33557512,-26495209923507576,-26495207853670452],[34604160,34605064,24519905362432319,24519907395040631],[34604160,34606216,-1975303106832961,-1975301912872117],[34605064,3208,24519905362432319,24519907395040631],[34605064,1051776,-24519907395040631,-24519905362432319],[34605064,33555592,-24519907395040631,-24519905362432319],[34605064,34604160,24519905362432319,24519907395040631],[34605184,3208,-24519907395040631,-24519905362432319],[34605184,1051656,24519905362432319,24519907395040631],[34605184,33555592,24519905362432319,24519907395040631],[34605184,34604040,-24519907395040631,-24519905362432319],[34606216,2056,-1975303106832961,-1975301912872117],[34606216,2176,1975301912872117,1975303106832961],[34606216,1051656,-1975303106832961,-1975301912872117],[34606216,1051776,1975301912872117,1975303106832961],[34606216,33554440,1975301912872117,1975303106832961],[34606216,33554560,-1975303106832961,-1975301912872117],[34606216,34604040,1975301912872117,1975303106832961],[34606216,34604160,-1975303106832961,-1975301912872117],[34735104,526336,-1975303106832961,-1975301912872117],[34735104,1705984,-1975303106832961,-1975301912872117],[34735104,34081792,-1975303106832961,-1975301912872117],[34735104,35261440,-1975303106832961,-1975301912872117],[35128320,133120,1975301912872117,1975303106832961],[35128320,1705984,1975301912872117,1975303106832961],[35128320,33688576,1975301912872117,1975303106832961],[35128320,35261440,1975301912872117,1975303106832961],[35258368,1182720,1975301912872117,1975303106832961],[35258368,1575936,-1975303106832961,-1975301912872117],[35258368,3278848,1975301915400511,1975303104304567],[35258368,3672064,-1975303104304567,-1975301915400511],[35258368,33688576,-1975303106832961,-1975301912872117],[35258368,34081792,1975301912872117,1975303106832961],[35258368,35784704,-1975303104304567,-1975301915400511],[35258368,36177920,1975301915400511,1975303104304567],[35258368,549759090688,22544603305492866,22544604432275006],[35258368,549759483904,-22544604432275006,-22544603305492866],[35258368,549791596544,-22544604432275006,-22544603305492866],[35258368,549791989760,22544603305492866,22544604432275006],[35261440,133120,1975301912872117,1975303106832961],[35261440,526336,-1975303106832961,-1975301912872117],[35261440,1182720,1975301912872117,1975303106832961],[35261440,1575936,-1975303106832961,-1975301912872117],[35261440,33685504,-1975303106832961,-1975301912872117],[35261440,34078720,1975301912872117,1975303106832961],[35261440,34735104,-1975303106832961,-1975301912872117],[35261440,35128320,1975301912872117,1975303106832961],[35652616,2176,24519905362432319,24519907395040631],[35652616,3208,24519905362432319,24519907395040631],[35652616,35653760,24519905362432319,24519907395040631],[35652616,35654792,24519905362432319,24519907395040631],[35652736,2056,-24519907395040631,-24519905362432319],[35652736,3208,-24519907395040631,-24519905362432319],[35652736,35653640,-24519907395040631,-24519905362432319],[35652736,35654792,-24519907395040631,-24519905362432319],[35653640,3208,-24519907395040631,-24519905362432319],[35653640,2098312,22544603305492866,22544604432275006],[35653640,2100352,1975301915400511,1975303104304567],[35653640,33555592,1975301915400511,1975303104304567],[35653640,33557632,22544603305492866,22544604432275006],[35653640,35652736,-24519907395040631,-24519905362432319],[35653760,3208,24519905362432319,24519907395040631],[35653760,2098312,-22544604432275006,-22544603305492866],[35653760,2100232,-1975303104304567,-1975301915400511],[35653760,33555592,-1975303104304567,-1975301915400511],[35653760,33557512,-22544604432275006,-22544603305492866],[35653760,35652616,24519905362432319,24519907395040631],[35654792,2056,-24519907395040631,-24519905362432319],[35654792,2176,24519905362432319,24519907395040631],[35654792,2097160,22544603305492866,22544604432275006],[35654792,2097280,-22544604432275006,-22544603305492866],[35654792,2100232,-1975303104304567,-1975301915400511],[35654792,2100352,1975301915400511,1975303104304567],[35654792,33554440,1975301915400511,1975303104304567],[35654792,33554560,-1975303104304567,-1975301915400511],[35654792,33557512,-22544604432275006,-22544603305492866],[35654792,33557632,22544603305492866,22544604432275006],[35654792,35652616,24519905362432319,24519907395040631],[35654792,35652736,-24519907395040631,-24519905362432319],[35784704,1705984,1975301915400511,1975303104304567],[35784704,3672064,-1975303104304567,-1975301915400511],[35784704,35258368,-1975303104304567,-1975301915400511],[35784704,37224448,1975301915400511,1975303104304567],[36177920,1705984,-1975303104304567,-1975301915400511],[36177920,3278848,1975301915400511,1975303104304567],[36177920,35258368,1975301915400511,1975303104304567],[36177920,36831232,-1975303104304567,-1975301915400511],[36831232,526336,-1975303104304567,-1975301915400511],[36831232,1705984,-1975303104304567,-1975301915400511],[36831232,36177920,-1975303104304567,-1975301915400511],[36831232,37357568,-1975303104304567,-1975301915400511],[36831232,549756338176,-22544604432275006,-22544603305492866],[36831232,549757517824,-22544604432275006,-22544603305492866],[36831232,549791989760,-22544604432275006,-22544603305492866],[36831232,549793169408,-22544604432275006,-22544603305492866],[37224448,133120,1975301915400511,1975303104304567],[37224448,1705984,1975301915400511,1975303104304567],[37224448,35784704,1975301915400511,1975303104304567],[37224448,37357568,1975301915400511,1975303104304567],[37224448,549755944960,22544603305492866,22544604432275006],[37224448,549757517824,22544603305492866,22544604432275006],[37224448,549791596544,22544603305492866,22544604432275006],[37224448,549793169408,22544603305492866,22544604432275006],[37357568,133120,1975301915400511,1975303104304567],[37357568,526336,-1975303104304567,-1975301915400511],[37357568,3278848,1975301915400511,1975303104304567],[37357568,3672064,-1975303104304567,-1975301915400511],[37357568,33685504,-1975303104304567,-1975301915400511],[37357568,34078720,1975301915400511,1975303104304567],[37357568,36831232,-1975303104304567,-1975301915400511],[37357568,37224448,1975301915400511,1975303104304567],[50332162,16777538,22544603305492866,22544604432275006],[50332162,16778048,-22544604432275006,-22544603305492866],[50332162,33554754,-22544604432275006,-22544603305492866],[50332162,33555264,22544603305492866,22544604432275006],[50332224,16777538,-22544604432275006,-22544603305492866],[50332224,16777986,22544603305492866,22544604432275006],[50332224,33554754,22544603305492866,22544604432275006],[50332224,33555202,-22544604432275006,-22544603305492866],[50332482,16777218,22544603305492866,22544604432275006],[50332482,16777280,-22544604432275006,-22544603305492866],[50332482,16777986,22544603305492866,22544604432275006],[50332482,16778048,-22544604432275006,-22544603305492866],[50332482,33554434,-22544604432275006,-22544603305492866],[50332482,33554496,22544603305492866,22544604432275006],[50332482,33555202,-22544604432275006,-22544603305492866],[50332482,33555264,22544603305492866,22544604432275006],[50333704,16778376,-22544604432275006,-22544603305492866],[50333704,16780416,22544603305492866,22544604432275006],[50333704,33555592,22544603305492866,22544604432275006],[50333704,33557632,-22544604432275006,-22544603305492866],[50333824,16778376,22544603305492866,22544604432275006],[50333824,16780296,-22544604432275006,-22544603305492866],[50333824,33555592,-22544604432275006,-22544603305492866],[50333824,33557512,22544603305492866,22544604432275006],[50334856,16777224,-22544604432275006,-22544603305492866],[50334856,16777344,22544603305492866,22544604432275006],[50334856,16780296,-22544604432275006,-22544603305492866],[50334856,16780416,22544603305492866,22544604432275006],[50334856,33554440,22544603305492866,22544604432275006],[50334856,33554560,-22544604432275006,-22544603305492866],[50334856,33557512,22544603305492866,22544604432275006],[50334856,33557632,-22544604432275006,-22544603305492866],[67108865,10,4648497893199929,4648501531389499],[67108865,12,1975300772161160,1975304247543921],[67108865,32772,-8599107896967374,-8599101567032212],[67108865,131074,4648497418040009,4648502006549417],[67108865,131076,3950600760736484,3950609278673694],[67108865,131080,-8599107896967374,-8599101567032212],[67108865,131086,-22544606311881030,-22544601425886842],[67108865,131146,4648499059714221,4648500364875210],[67108865,131210,-13247605096148654,-13247603792440361],[67108865,131212,1975301885638544,1975303134066536],[67108865,163840,1975300772161160,1975304247543921],[67108865,163846,1975301912872117,1975303106832961],[67108865,163850,1975301912872117,1975303106832961],[67108865,163852,18593996452163044,18594001246194656],[67108865,655370,1975301857911278,1975303161793801],[67108865,655372,22544603248067364,22544604489700504],[67108865,688132,-13247605066971786,-13247603821617226],[67108865,67108875,4648497893199929,4648501531389499],[67108865,67108877,1975300772161160,1975304247543921],[67108865,67141637,-8599107896967374,-8599101567032212],[67108865,67239939,4648497418040009,4648502006549417],[67108865,67239941,3950600760736484,3950609278673694],[67108865,67239945,-8599107896967374,-8599101567032212],[67108865,67239951,-22544606311881030,-22544601425886842],[67108865,67240011,4648499059714221,4648500364875210],[67108865,67240075,-13247605096148654,-13247603792440361],[67108865,67240077,1975301885638544,1975303134066536],[67108865,67272705,1975300772161160,1975304247543921],[67108865,67272711,1975301912872117,1975303106832961],[67108865,67272715,1975301912872117,1975303106832961],[67108865,67272717,18593996452163044,18594001246194656],[67108865,67764235,1975301857911278,1975303161793801],[67108865,67764237,22544603248067364,22544604489700504],[67108865,67796997,-13247605066971786,-13247603821617226],[67108865,268566538,4648499057538562,4648500367050864],[67108865,268566540,1975301889664154,1975303130040923],[67108865,268599300,-13247605061578886,-13247603827010127],[67108865,335675403,4648499057538562,4648500367050864],[67108865,335675405,1975301889664154,1975303130040923],[67108865,335708165,-13247605061578886,-13247603827010127],[67108865,1073741828,4648497418040009,4648502006549417],[67108865,1073774592,4648497893199929,4648501531389499],[67108865,1073774598,4648499082464426,4648500342125002],[67108865,1073774604,1975301912872117,1975303106832961],[67108865,1073872906,4648499082464426,4648500342125002],[67108865,1073872908,1975301912872117,1975303106832961],[67108865,1073905668,-22544606311881030,-22544601425886842],[67108865,1140850693,4648497418040009,4648502006549417],[67108865,1140883457,4648497893199929,4648501531389499],[67108865,1140883463,4648499082464426,4648500342125002],[67108865,1140883469,1975301912872117,1975303106832961],[67108865,1140981771,4648499082464426,4648500342125002],[67108865,1140981773,1975301912872117,1975303106832961],[67108865,1141014533,-22544606311881030,-22544601425886842],[67108865,1342210052,1975301891852867,1975303127852212],[67108865,1409318917,1975301891852867,1975303127852212],[67108865,17592186175498,1975301853739043,1975303165966039],[67108865,17592186175500,22544603247468479,22544604490299392],[67108865,17592186208260,-13247605070627222,-13247603817961795],[67108865,17592253284363,1975301853739043,1975303165966039],[67108865,17592253284365,22544603247468479,22544604490299392],[67108865,17592253317125,-13247605070627222,-13247603817961795],[67108865,17593259819012,1975301882939439,1975303136765642],[67108865,17593326927877,1975301882939439,1975303136765642],[67108865,140738562129924,-13247605102529449,-13247603786059568],[67108865,140738629238789,-13247605102529449,-13247603786059568],[67108866,0,-4648503294878728,-4648496129710712],[67108866,9,-4648501531389499,-4648497893199929],[67108866,12,-13247606182566277,-13247602706022740],[67108866,72,-4648501614770600,-4648497809818828],[67108866,136,-13247606347638304,-13247602540950713],[67108866,32776,15920798832463209,15920804461010156],[67108866,131073,-4648502006549417,-4648497418040009],[67108866,131076,15920798832463209,15920804461010156],[67108866,131080,118376814987968068,118376854586315852],[67108866,131085,26495207702043174,26495210075134854],[67108866,131136,-4648502135287572,-4648497289301856],[67108866,131145,-6623803337001160,-6623801107293350],[67108866,131148,13247603827010127,13247605061578886],[67108866,131200,15920798525905540,15920804767567825],[67108866,131209,13247603792440361,13247605096148654],[67108866,131212,11272301161387192,11272302707496740],[67108866,131272,26495207525594866,26495210251583166],[67108866,163840,-13247606182566277,-13247602706022740],[67108866,163845,-1975303106832961,-1975301912872117],[67108866,163849,-1975303106832961,-1975301912872117],[67108866,163852,-45089208874918688,-45089206600617048],[67108866,163912,-1975303130040923,-1975301889664154],[67108866,163976,-22544604489700504,-22544603248067364],[67108866,524296,15920798525905540,15920804767567825],[67108866,655360,-13247606347638304,-13247602540950713],[67108866,655369,-1975303161793801,-1975301857911278],[67108866,655372,-22544604489700504,-22544603248067364],[67108866,655432,-1975303194709763,-1975301824995317],[67108866,655496,-45089209107010112,-45089206368525624],[67108866,655552,-1975303194709763,-1975301824995317],[67108866,688136,11272301161387192,11272302707496740],[67108866,67108866,-4648503294878728,-4648496129710712],[67108866,67108875,-4648501531389499,-4648497893199929],[67108866,67108878,-13247606182566277,-13247602706022740],[67108866,67108938,-4648501614770600,-4648497809818828],[67108866,67109002,-13247606347638304,-13247602540950713],[67108866,67141642,15920798832463209,15920804461010156],[67108866,67239939,-4648502006549417,-4648497418040009],[67108866,67239942,15920798832463209,15920804461010156],[67108866,67239946,118376814987968068,118376854586315852],[67108866,67239951,26495207702043174,26495210075134854],[67108866,67240002,-4648502135287572,-4648497289301856],[67108866,67240011,-6623803337001160,-6623801107293350],[67108866,67240014,13247603827010127,13247605061578886],[67108866,67240066,15920798525905540,15920804767567825],[67108866,67240075,13247603792440361,13247605096148654],[67108866,67240078,11272301161387192,11272302707496740],[67108866,67240138,26495207525594866,26495210251583166],[67108866,67272706,-13247606182566277,-13247602706022740],[67108866,67272711,-1975303106832961,-1975301912872117],[67108866,67272715,-1975303106832961,-1975301912872117],[67108866,67272718,-45089208874918688,-45089206600617048],[67108866,67272778,-1975303130040923,-1975301889664154],[67108866,67272842,-22544604489700504,-22544603248067364],[67108866,67633162,15920798525905540,15920804767567825],[67108866,67764226,-13247606347638304,-13247602540950713],[67108866,67764235,-1975303161793801,-1975301857911278],[67108866,67764238,-22544604489700504,-22544603248067364],[67108866,67764298,-1975303194709763,-1975301824995317],[67108866,67764362,-45089209107010112,-45089206368525624],[67108866,67764418,-1975303194709763,-1975301824995317],[67108866,67797002,11272301161387192,11272302707496740],[67108866,268435464,-4648502135287572,-4648497289301856],[67108866,268566528,-4648501614770600,-4648497809818828],[67108866,268566537,-4648500367050864,-4648499057538562],[67108866,268566540,-1975303130040923,-1975301889664154],[67108866,268566600,-4648500405191522,-4648499019397906],[67108866,268566664,-1975303194709763,-1975301824995317],[67108866,268599304,13247603827010127,13247605061578886],[67108866,268959880,-1975303194709763,-1975301824995317],[67108866,268959936,-4648500405191522,-4648499019397906],[67108866,269090824,26495207525594866,26495210251583166],[67108866,335544330,-4648502135287572,-4648497289301856],[67108866,335675394,-4648501614770600,-4648497809818828],[67108866,335675403,-4648500367050864,-4648499057538562],[67108866,335675406,-1975303130040923,-1975301889664154],[67108866,335675466,-4648500405191522,-4648499019397906],[67108866,335675530,-1975303194709763,-1975301824995317],[67108866,335708170,13247603827010127,13247605061578886],[67108866,336068746,-1975303194709763,-1975301824995317],[67108866,336068802,-4648500405191522,-4648499019397906],[67108866,336199690,26495207525594866,26495210251583166],[67108866,1073741832,-4648502006549417,-4648497418040009],[67108866,1073774597,-4648500342125002,-4648499082464426],[67108866,1073774604,-1975303106832961,-1975301912872117],[67108866,1073872896,-4648501531389499,-4648497893199929],[67108866,1073872905,-4648500342125002,-4648499082464426],[67108866,1073872908,-1975303106832961,-1975301912872117],[67108866,1073872968,-4648500367050864,-4648499057538562],[67108866,1073873032,-1975303161793801,-1975301857911278],[67108866,1073905672,26495207702043174,26495210075134854],[67108866,1074397192,13247603792440361,13247605096148654],[67108866,1140850698,-4648502006549417,-4648497418040009],[67108866,1140883463,-4648500342125002,-4648499082464426],[67108866,1140883470,-1975303106832961,-1975301912872117],[67108866,1140981762,-4648501531389499,-4648497893199929],[67108866,1140981771,-4648500342125002,-4648499082464426],[67108866,1140981774,-1975303106832961,-1975301912872117],[67108866,1140981834,-4648500367050864,-4648499057538562],[67108866,1140981898,-1975303161793801,-1975301857911278],[67108866,1141014538,26495207702043174,26495210075134854],[67108866,1141506058,13247603792440361,13247605096148654],[67108866,1342308360,-6623803337001160,-6623801107293350],[67108866,1409417226,-6623803337001160,-6623801107293350],[67108866,17592186044424,-1975304999015964,-1975300020689110],[67108866,17592186175488,-1975304439360326,-1975300580344758],[67108866,17592186175497,-1975303165966039,-1975301853739043],[67108866,17592186175500,-22544604490299392,-22544603247468479],[67108866,17592186175560,-1975303193032786,-1975301826672296],[67108866,17592186175624,-22544604548409457,-22544603189358414],[67108866,17592186208264,13247603817961795,13247605070627222],[67108866,17592186699784,13247603754276960,13247605134312055],[67108866,17592253153290,-1975304999015964,-1975300020689110],[67108866,17592253284354,-1975304439360326,-1975300580344758],[67108866,17592253284363,-1975303165966039,-1975301853739043],[67108866,17592253284366,-22544604490299392,-22544603247468479],[67108866,17592253284426,-1975303193032786,-1975301826672296],[67108866,17592253284490,-22544604548409457,-22544603189358414],[67108866,17592253317130,13247603817961795,13247605070627222],[67108866,17592253808650,13247603754276960,13247605134312055],[67108866,17592454610952,11272300730744752,11272303138139186],[67108866,17592521719818,11272300730744752,11272303138139186],[67108866,17593259917320,11272300803168551,11272303065715385],[67108866,17593327026186,11272300803168551,11272303065715385],[67108868,0,-1395798588612732,-1395780181745792],[67108868,9,-1975304247543921,-1975300772161160],[67108868,10,-15920803465251079,-15920799828222285],[67108868,136,-15920803437427959,-15920799856045399],[67108868,32769,8599101567032212,8599107896967374],[67108868,32776,20569293250811822,20569309467250933],[67108868,131073,-3950609278673694,-3950600760736484],[67108868,131074,-4648502525987800,-4648496898601629],[67108868,131080,207738951876696445,207738996127646956],[67108868,131083,-3950606276156332,-3950603763253824],[67108868,131200,-4648502482185233,-4648496942404193],[67108868,131209,-1975303134066536,-1975301885638544],[67108868,131210,8599103904459875,8599105559539709],[67108868,163840,-354586345522376890,-354586294853133538],[67108868,163849,-7321700242729086,-7321693586744675],[67108868,163850,-3950606243598603,-3950603795811556],[67108868,163976,-3950606237024947,-3950603802385214],[67108868,524296,15920798744910351,15920804548563011],[67108868,557056,-1975305281023604,-1975299738681472],[67108868,655360,3950601664814648,3950608374595511],[67108868,655369,-22544604489700504,-22544603248067364],[67108868,655370,-1975303161793801,-1975301857911278],[67108868,655496,-3950606322255178,-3950603717154982],[67108868,688129,13247603821617226,13247605066971786],[67108868,688136,-22544606585988845,-22544601151779026],[67108868,67108868,-1395798588612732,-1395780181745792],[67108868,67108877,-1975304247543921,-1975300772161160],[67108868,67108878,-15920803465251079,-15920799828222285],[67108868,67109004,-15920803437427959,-15920799856045399],[67108868,67141637,8599101567032212,8599107896967374],[67108868,67141644,20569293250811822,20569309467250933],[67108868,67239941,-3950609278673694,-3950600760736484],[67108868,67239942,-4648502525987800,-4648496898601629],[67108868,67239948,207738951876696445,207738996127646956],[67108868,67239951,-3950606276156332,-3950603763253824],[67108868,67240068,-4648502482185233,-4648496942404193],[67108868,67240077,-1975303134066536,-1975301885638544],[67108868,67240078,8599103904459875,8599105559539709],[67108868,67272708,-354586345522376890,-354586294853133538],[67108868,67272717,-7321700242729086,-7321693586744675],[67108868,67272718,-3950606243598603,-3950603795811556],[67108868,67272844,-3950606237024947,-3950603802385214],[67108868,67633164,15920798744910351,15920804548563011],[67108868,67665924,-1975305281023604,-1975299738681472],[67108868,67764228,3950601664814648,3950608374595511],[67108868,67764237,-22544604489700504,-22544603248067364],[67108868,67764238,-1975303161793801,-1975301857911278],[67108868,67764364,-3950606322255178,-3950603717154982],[67108868,67796997,13247603821617226,13247605066971786],[67108868,67797004,-22544606585988845,-22544601151779026],[67108868,268435464,-4648501976324875,-4648497448264558],[67108868,268468224,-3950609211113582,-3950600828296569],[67108868,268566528,8599101370269630,8599108093729955],[67108868,268566537,-1975303130040923,-1975301889664154],[67108868,268566538,-4648500367050864,-4648499057538562],[67108868,268566664,-4648500367937248,-4648499056652179],[67108868,268599297,13247603827010127,13247605061578886],[67108868,268599304,22544601452067054,22544606285700820],[67108868,268959880,-4648500367937248,-4648499056652179],[67108868,269090824,26495207590564460,26495210186613570],[67108868,269123584,-3950606255704424,-3950603783705734],[67108868,335544332,-4648501976324875,-4648497448264558],[67108868,335577092,-3950609211113582,-3950600828296569],[67108868,335675396,8599101370269630,8599108093729955],[67108868,335675405,-1975303130040923,-1975301889664154],[67108868,335675406,-4648500367050864,-4648499057538562],[67108868,335675532,-4648500367937248,-4648499056652179],[67108868,335708165,13247603827010127,13247605061578886],[67108868,335708172,22544601452067054,22544606285700820],[67108868,336068748,-4648500367937248,-4648499056652179],[67108868,336199692,26495207590564460,26495210186613570],[67108868,336232452,-3950606255704424,-3950603783705734],[67108868,1073741825,-4648502006549417,-4648497418040009],[67108868,1073741832,-9297003724271436,-9296995124907418],[67108868,1073774592,126278022677218062,126278066975886174],[67108868,1073774601,-6623803293231701,-6623801151062805],[67108868,1073872896,20569293260874416,20569309457188365],[67108868,1073872905,-1975303106832961,-1975301912872117],[67108868,1073872906,-4648500342125002,-4648499082464426],[67108868,1073873032,-4648500337588616,-4648499087000812],[67108868,1073905665,22544601425886842,22544606311881030],[67108868,1073905672,58336806904098799,58336817460025984],[67108868,1074397192,13247603822433492,13247605066155522],[67108868,1074429952,11272300724520905,11272303144363030],[67108868,1140850693,-4648502006549417,-4648497418040009],[67108868,1140850700,-9297003724271436,-9296995124907418],[67108868,1140883460,126278022677218062,126278066975886174],[67108868,1140883469,-6623803293231701,-6623801151062805],[67108868,1140981764,20569293260874416,20569309457188365],[67108868,1140981773,-1975303106832961,-1975301912872117],[67108868,1140981774,-4648500342125002,-4648499082464426],[67108868,1140981900,-4648500337588616,-4648499087000812],[67108868,1141014533,22544601425886842,22544606311881030],[67108868,1141014540,58336806904098799,58336817460025984],[67108868,1141506060,13247603822433492,13247605066155522],[67108868,1141538820,11272300724520905,11272303144363030],[67108868,1342177280,-1975304235590111,-1975300784114970],[67108868,1342210049,-1975303127852212,-1975301891852867],[67108868,1342210056,-1975303102468593,-1975301917236486],[67108868,1342308360,-6623803284297315,-6623801159997192],[67108868,1342341120,-7321700188581701,-7321693640892082],[67108868,1409286148,-1975304235590111,-1975300784114970],[67108868,1409318917,-1975303127852212,-1975301891852867],[67108868,1409318924,-1975303102468593,-1975301917236486],[67108868,1409417228,-6623803284297315,-6623801159997192],[67108868,1409449988,-7321700188581701,-7321693640892082],[67108868,17592186044424,-1975304835202292,-1975300184502783],[67108868,17592186077184,-3950609314173172,-3950600725236988],[67108868,17592186175488,11272298711597012,11272305157286919],[67108868,17592186175497,-22544604490299392,-22544603247468479],[67108868,17592186175498,-1975303165966039,-1975301853739043],[67108868,17592186175624,-1975303161294799,-1975301858410281],[67108868,17592186208257,13247603817961795,13247605070627222],[67108868,17592186208264,-18594001318589224,-18593996379768482],[67108868,17592186699784,13247603786922062,13247605101666952],[67108868,17592186732544,-1975303142599947,-1975301877105131],[67108868,17592253153292,-1975304835202292,-1975300184502783],[67108868,17592253186052,-3950609314173172,-3950600725236988],[67108868,17592253284356,11272298711597012,11272305157286919],[67108868,17592253284365,-22544604490299392,-22544603247468479],[67108868,17592253284366,-1975303165966039,-1975301853739043],[67108868,17592253284492,-1975303161294799,-1975301858410281],[67108868,17592253317125,13247603817961795,13247605070627222],[67108868,17592253317132,-18594001318589224,-18593996379768482],[67108868,17592253808652,13247603786922062,13247605101666952],[67108868,17592253841412,-1975303142599947,-1975301877105131],[67108868,17592454610952,11272300789630083,11272303079253853],[67108868,17592454643712,-24519907477236870,-24519905280236082],[67108868,17592521719820,11272300789630083,11272303079253853],[67108868,17592521752580,-24519907477236870,-24519905280236082],[67108868,17593259786240,-1975304301048867,-1975300718656210],[67108868,17593259819009,-1975303136765642,-1975301882939439],[67108868,17593259819016,-1975303111382023,-1975301908323058],[67108868,17593259917320,11272300855685410,11272303013198523],[67108868,17593259950080,-7321700273679520,-7321693555794256],[67108868,17593326895108,-1975304301048867,-1975300718656210],[67108868,17593326927877,-1975303136765642,-1975301882939439],[67108868,17593326927884,-1975303111382023,-1975301908323058],[67108868,17593327026188,11272300855685410,11272303013198523],[67108868,17593327058948,-7321700273679520,-7321693555794256],[67108868,17593528254464,26495207784975390,26495209992202640],[67108868,17593595363332,26495207784975390,26495209992202640],[67108868,140737488388096,-1975305379225034,-1975299640480040],[67108868,140737555496964,-1975305379225034,-1975299640480040],[67108868,140738562097152,22544602005389605,22544605732378260],[67108868,140738562129921,13247603786059568,13247605102529449],[67108868,140738562129928,13247603813192808,13247605075396206],[67108868,140738562260992,-24519907601681415,-24519905155791537],[67108868,140738629206020,22544602005389605,22544605732378260],[67108868,140738629238789,13247603786059568,13247605102529449],[67108868,140738629238796,13247603813192808,13247605075396206],[67108868,140738629369860,-24519907601681415,-24519905155791537],[67108868,140738830565376,-22544604485800118,-22544603251967752],[67108868,140738897674244,-22544604485800118,-22544603251967752],[67108868,158330748174336,-45089209011534280,-45089206464001460],[67108868,158330815283204,-45089209011534280,-45089206464001460],[67108871,131083,-28470512991844104,-28470509805039004],[67108871,131085,19871405094876730,19871408238006792],[67108871,131086,8599101567032212,8599107896967374],[67108871,163845,-1975303106832961,-1975301912872117],[67108871,163846,1975301912872117,1975303106832961],[67108871,67239945,8599101567032212,8599107896967374],[67108871,67239946,19871405094876730,19871408238006792],[67108871,67239948,-28470512991844104,-28470509805039004],[67108871,67272705,1975301912872117,1975303106832961],[67108871,67272706,-1975303106832961,-1975301912872117],[67108871,1073774597,-4648500342125002,-4648499082464426],[67108871,1073774598,4648499082464426,4648500342125002],[67108871,1140883457,4648499082464426,4648500342125002],[67108871,1140883458,-4648500342125002,-4648499082464426],[67108872,0,-53534633662818236,-53534570238879156],[67108872,6,6623799135992659,6623805308301850],[67108872,130,6623798927600937,6623805516693572],[67108872,132,6623799192952293,6623805251342207],[67108872,32770,-4648502525987800,-4648496898601629],[67108872,32772,-7901214439889918,-7901205638930376],[67108872,32896,-4648502481944947,-4648496942644475],[67108872,131073,8599101567032212,8599107896967374],[67108872,131074,-118376856345199404,-118376813229084520],[67108872,131076,-215060696800522478,-215060645033294693],[67108872,131136,8599101184095716,8599108279903872],[67108872,131200,-166718780962043040,-166718724742007499],[67108872,131206,-31143710514241570,-31143706687525880],[67108872,132096,-4648501379109327,-4648498045480102],[67108872,163840,332041690197650200,332041742440092355],[67108872,163845,1975301912872117,1975303106832961],[67108872,163846,47064508655028107,47064511840212707],[67108872,163970,24519905293069738,24519907464403207],[67108872,163972,47064508673192612,47064511822048211],[67108872,524290,-4648502836441441,-4648496588147988],[67108872,524292,-4648502614033929,-4648496810555499],[67108872,524416,-7901216780706716,-7901203298113598],[67108872,557056,9296996307740651,9297002541438203],[67108872,655360,235357851276653147,235357909101556156],[67108872,655366,24519905258499972,24519907498972975],[67108872,655490,47064508360216381,47064512135024435],[67108872,655492,26495207121529005,26495210655649026],[67108872,655552,1975301824995317,1975303194709763],[67108872,656512,22544603251852693,22544604485915178],[67108872,688130,-11272302707496740,-11272301161387192],[67108872,688132,-24519907696178166,-24519905061294785],[67108872,688256,-9297000814034204,-9296998035144653],[67108872,1179648,9296996568177046,9297002281001814],[67108872,1572864,-9296999886451704,-9296998962727152],[67108872,1704064,-13247605061713792,-13247603826875223],[67108872,67108872,-53534633662818236,-53534570238879156],[67108872,67108878,6623799135992659,6623805308301850],[67108872,67109002,6623798927600937,6623805516693572],[67108872,67109004,6623799192952293,6623805251342207],[67108872,67141642,-4648502525987800,-4648496898601629],[67108872,67141644,-7901214439889918,-7901205638930376],[67108872,67141768,-4648502481944947,-4648496942644475],[67108872,67239945,8599101567032212,8599107896967374],[67108872,67239946,-118376856345199404,-118376813229084520],[67108872,67239948,-215060696800522478,-215060645033294693],[67108872,67240008,8599101184095716,8599108279903872],[67108872,67240072,-166718780962043040,-166718724742007499],[67108872,67240078,-31143710514241570,-31143706687525880],[67108872,67240968,-4648501379109327,-4648498045480102],[67108872,67272712,332041690197650200,332041742440092355],[67108872,67272717,1975301912872117,1975303106832961],[67108872,67272718,47064508655028107,47064511840212707],[67108872,67272842,24519905293069738,24519907464403207],[67108872,67272844,47064508673192612,47064511822048211],[67108872,67633162,-4648502836441441,-4648496588147988],[67108872,67633164,-4648502614033929,-4648496810555499],[67108872,67633288,-7901216780706716,-7901203298113598],[67108872,67665928,9296996307740651,9297002541438203],[67108872,67764232,235357851276653147,235357909101556156],[67108872,67764238,24519905258499972,24519907498972975],[67108872,67764362,47064508360216381,47064512135024435],[67108872,67764364,26495207121529005,26495210655649026],[67108872,67764424,1975301824995317,1975303194709763],[67108872,67765384,22544603251852693,22544604485915178],[67108872,67797002,-11272302707496740,-11272301161387192],[67108872,67797004,-24519907696178166,-24519905061294785],[67108872,67797128,-9297000814034204,-9296998035144653],[67108872,68288520,9296996568177046,9297002281001814],[67108872,68681736,-9296999886451704,-9296998962727152],[67108872,68812936,-13247605061713792,-13247603826875223],[67108872,134348800,-4648501379109328,-4648498045480103],[67108872,201457672,-4648501379109328,-4648498045480103],[67108872,268435458,4648497289301856,4648502135287572],[67108872,268435460,4648497448264558,4648501976324875],[67108872,268435584,9296994579848082,9297004269330780],[67108872,268468224,-4648502490229551,-4648496934359881],[67108872,268566528,-85257851747913146,-85257795604898244],[67108872,268566534,6623801102928978,6623803341365525],[67108872,268566658,6623801015151933,6623803429142575],[67108872,268566660,6623801098016984,6623803346277521],[67108872,268599298,-13247605061578886,-13247603827010127],[67108872,268599300,-26495210066338854,-26495207710839176],[67108872,268599424,-13247605067077166,-13247603821511848],[67108872,268959744,-7901216811716128,-7901203267104184],[67108872,268959874,1975301824995317,1975303194709763],[67108872,268959876,4648499056652179,4648500367937248],[67108872,268959936,4648499019397906,4648500405191522],[67108872,268960896,1975301885638543,1975303134066535],[67108872,269090818,-26495210251583166,-26495207525594866],[67108872,269090820,-26495210186613570,-26495207590564460],[67108872,269090944,-45089213226916902,-45089202248618840],[67108872,269123584,-9297000814034204,-9296998035144653],[67108872,270008448,-13247605067077166,-13247603821511848],[67108872,270139392,-13247605061713792,-13247603826875223],[67108872,335544330,4648497289301856,4648502135287572],[67108872,335544332,4648497448264558,4648501976324875],[67108872,335544456,9296994579848082,9297004269330780],[67108872,335577096,-4648502490229551,-4648496934359881],[67108872,335675400,-85257851747913146,-85257795604898244],[67108872,335675406,6623801102928978,6623803341365525],[67108872,335675530,6623801015151933,6623803429142575],[67108872,335675532,6623801098016984,6623803346277521],[67108872,335708170,-13247605061578886,-13247603827010127],[67108872,335708172,-26495210066338854,-26495207710839176],[67108872,335708296,-13247605067077166,-13247603821511848],[67108872,336068616,-7901216811716128,-7901203267104184],[67108872,336068746,1975301824995317,1975303194709763],[67108872,336068748,4648499056652179,4648500367937248],[67108872,336068808,4648499019397906,4648500405191522],[67108872,336069768,1975301885638543,1975303134066535],[67108872,336199690,-26495210251583166,-26495207525594866],[67108872,336199692,-26495210186613570,-26495207590564460],[67108872,336199816,-45089213226916902,-45089202248618840],[67108872,336232456,-9297000814034204,-9296998035144653],[67108872,337117320,-13247605067077166,-13247603821511848],[67108872,337248264,-13247605061713792,-13247603826875223],[67108872,403177600,1975301885638544,1975303134066536],[67108872,403308544,22544603251852693,22544604485915178],[67108872,470286472,1975301885638544,1975303134066536],[67108872,470417416,22544603251852693,22544604485915178],[67108872,1073741826,4648497418040009,4648502006549417],[67108872,1073741828,9296995124907418,9297003724271436],[67108872,1073741952,4648497449753834,4648501974835595],[67108872,1073774592,-7901214462754538,-7901205616065770],[67108872,1073774597,4648499082464426,4648500342125002],[67108872,1073774598,1975301912872117,1975303106832961],[67108872,1073774724,1975301917270118,1975303102434961],[67108872,1073872896,-133599767595705506,-133599715886872508],[67108872,1073872902,6623801151062805,6623803293231701],[67108872,1073873026,6623801086208550,6623803358085955],[67108872,1073873028,6623801159997192,6623803284297315],[67108872,1073905666,-26495210075134854,-26495207702043174],[67108872,1073905668,-45089212389398762,-45089203086137004],[67108872,1073905792,-26495210066338854,-26495207710839176],[67108872,1074266112,-4648502622318527,-4648496802270899],[67108872,1074397186,-13247605096148654,-13247603792440361],[67108872,1074397188,-13247605066155522,-13247603822433492],[67108872,1074397312,-26495210186613570,-26495207590564460],[67108872,1074429952,-24519907696178166,-24519905061294785],[67108872,1140850698,4648497418040009,4648502006549417],[67108872,1140850700,9296995124907418,9297003724271436],[67108872,1140850824,4648497449753834,4648501974835595],[67108872,1140883464,-7901214462754538,-7901205616065770],[67108872,1140883469,4648499082464426,4648500342125002],[67108872,1140883470,1975301912872117,1975303106832961],[67108872,1140883596,1975301917270118,1975303102434961],[67108872,1140981768,-133599767595705506,-133599715886872508],[67108872,1140981774,6623801151062805,6623803293231701],[67108872,1140981898,6623801086208550,6623803358085955],[67108872,1140981900,6623801159997192,6623803284297315],[67108872,1141014538,-26495210075134854,-26495207702043174],[67108872,1141014540,-45089212389398762,-45089203086137004],[67108872,1141014664,-26495210066338854,-26495207710839176],[67108872,1141374984,-4648502622318527,-4648496802270899],[67108872,1141506058,-13247605096148654,-13247603792440361],[67108872,1141506060,-13247605066155522,-13247603822433492],[67108872,1141506184,-26495210186613570,-26495207590564460],[67108872,1141538824,-24519907696178166,-24519905061294785],[67108872,1342177280,6623799170377024,6623805273917482],[67108872,1342210052,1975301917236486,1975303102468593],[67108872,1342308354,6623801107293350,6623803337001160],[67108872,1342308356,6623801159997192,6623803284297315],[67108872,1342308480,6623801098016986,6623803346277523],[67108872,1342341120,47064508673192612,47064511822048211],[67108872,1342701696,4648499056652180,4648500367937249],[67108872,1342832640,26495207121529005,26495210655649026],[67108872,1409286152,6623799170377024,6623805273917482],[67108872,1409318924,1975301917236486,1975303102468593],[67108872,1409417226,6623801107293350,6623803337001160],[67108872,1409417228,6623801159997192,6623803284297315],[67108872,1409417352,6623801098016986,6623803346277523],[67108872,1409449992,47064508673192612,47064511822048211],[67108872,1409810568,4648499056652180,4648500367937249],[67108872,1409941512,26495207121529005,26495210655649026],[67108872,17592186044418,1975300020689110,1975304999015964],[67108872,17592186044420,1975300184502783,1975304835202292],[67108872,17592186044544,1975300055801777,1975304963903298],[67108872,17592186077184,-1975305379225034,-1975299640480040],[67108872,17592186175488,193060229393271076,193060273050119596],[67108872,17592186175494,24519905253728852,24519907503744101],[67108872,17592186175618,24519905182726150,24519907574746803],[67108872,17592186175620,24519905262899363,24519907494573587],[67108872,17592186208258,-13247605070627222,-13247603817961795],[67108872,17592186208260,-26495210084232978,-26495207692945056],[67108872,17592186208384,-13247605066127948,-13247603822461068],[67108872,17592186568704,-1975305698740355,-1975299320964727],[67108872,17592186699778,-13247605134312055,-13247603754276960],[67108872,17592186699780,-13247605101666952,-13247603786922062],[67108872,17592186699904,-26495210262619762,-26495207514558268],[67108872,17592186732544,-11272302715781341,-11272301153102595],[67108872,17592253153290,1975300020689110,1975304999015964],[67108872,17592253153292,1975300184502783,1975304835202292],[67108872,17592253153416,1975300055801777,1975304963903298],[67108872,17592253186056,-1975305379225034,-1975299640480040],[67108872,17592253284360,193060229393271076,193060273050119596],[67108872,17592253284366,24519905253728852,24519907503744101],[67108872,17592253284490,24519905182726150,24519907574746803],[67108872,17592253284492,24519905262899363,24519907494573587],[67108872,17592253317130,-13247605070627222,-13247603817961795],[67108872,17592253317132,-26495210084232978,-26495207692945056],[67108872,17592253317256,-13247605066127948,-13247603822461068],[67108872,17592253677576,-1975305698740355,-1975299320964727],[67108872,17592253808650,-13247605134312055,-13247603754276960],[67108872,17592253808652,-13247605101666952,-13247603786922062],[67108872,17592253808776,-26495210262619762,-26495207514558268],[67108872,17592253841416,-11272302715781341,-11272301153102595],[67108872,17592454479872,-11272305322642808,-11272298546241124],[67108872,17592454610946,-11272303138139186,-11272300730744752],[67108872,17592454610948,-11272303079253853,-11272300789630083],[67108872,17592454611072,-11272303149817323,-11272300719066616],[67108872,17592454643712,24519905280236082,24519907477236870],[67108872,17592455004288,1975301819477018,1975303200228061],[67108872,17592455135232,47064508334725266,47064512160515549],[67108872,17592521588744,-11272305322642808,-11272298546241124],[67108872,17592521719818,-11272303138139186,-11272300730744752],[67108872,17592521719820,-11272303079253853,-11272300789630083],[67108872,17592521719944,-11272303149817323,-11272300719066616],[67108872,17592521752584,24519905280236082,24519907477236870],[67108872,17592522113160,1975301819477018,1975303200228061],[67108872,17592522244104,47064508334725266,47064512160515549],[67108872,17593259786240,-11272305103287715,-11272298765596219],[67108872,17593259819012,1975301908323058,1975303111382023],[67108872,17593259917314,-11272303065715385,-11272300803168551],[67108872,17593259917316,-11272303013198523,-11272300855685410],[67108872,17593259917440,-11272303061044145,-11272300807839789],[67108872,17593259950080,47064508636712560,47064511858528265],[67108872,17593260441600,24519905244697076,24519907512775874],[67108872,17593326895112,-11272305103287715,-11272298765596219],[67108872,17593326927884,1975301908323058,1975303111382023],[67108872,17593327026186,-11272303065715385,-11272300803168551],[67108872,17593327026188,-11272303013198523,-11272300855685410],[67108872,17593327026312,-11272303061044145,-11272300807839789],[67108872,17593327058952,47064508636712560,47064511858528265],[67108872,17593327550472,24519905244697076,24519907512775874],[67108872,17593528352768,-13247606381210832,-13247602507378184],[67108872,17593595461640,-13247606381210832,-13247602507378184],[67108872,35184372219904,11272298321696800,11272305547187129],[67108872,35184439328776,11272298321696800,11272305547187129],[67108872,35184641048704,-13247605137681374,-13247603750907644],[67108872,35184641179648,1975301819477018,1975303200228061],[67108872,35184708157576,-13247605137681374,-13247603750907644],[67108872,35184708288520,1975301819477018,1975303200228061],[67108872,140737488486400,11272298711597012,11272305157286919],[67108872,140737555595272,11272298711597012,11272305157286919],[67108872,140738562129924,-13247605075396206,-13247603813192808],[67108872,140738562260992,1975301908323058,1975303111382023],[67108872,140738629238796,-13247605075396206,-13247603813192808],[67108872,140738629369864,1975301908323058,1975303111382023],[67108872,4611686018427518976,-1975304439360326,-1975300580344758],[67108872,4611686018494627848,-1975304439360326,-1975300580344758],[67108875,9,-4648501531389499,-4648497893199929],[67108875,10,4648497893199929,4648501531389499],[67108875,131076,3950603763253824,3950606276156332],[67108875,131079,28470509805039004,28470512991844104],[67108875,131085,-17896106343949595,-17896101969228851],[67108875,131086,-6623803293231701,-6623801151062805],[67108875,131136,-1975303127852212,-1975301891852867],[67108875,131139,-1975303127852212,-1975301891852867],[67108875,131209,6623801086208550,6623803358085955],[67108875,131210,-6623803358085955,-6623801086208550],[67108875,163849,-1975303106832961,-1975301912872117],[67108875,163850,1975301912872117,1975303106832961],[67108875,655369,-1975303161793801,-1975301857911278],[67108875,655370,1975301857911278,1975303161793801],[67108875,67108865,4648497893199929,4648501531389499],[67108875,67108866,-4648501531389499,-4648497893199929],[67108875,67239941,-6623803293231701,-6623801151062805],[67108875,67239942,-17896106343949595,-17896101969228851],[67108875,67239948,28470509805039004,28470512991844104],[67108875,67239951,3950603763253824,3950606276156332],[67108875,67240008,-1975303127852212,-1975301891852867],[67108875,67240011,-1975303127852212,-1975301891852867],[67108875,67240065,-6623803358085955,-6623801086208550],[67108875,67240066,6623801086208550,6623803358085955],[67108875,67272705,1975301912872117,1975303106832961],[67108875,67272706,-1975303106832961,-1975301912872117],[67108875,67764225,1975301857911278,1975303161793801],[67108875,67764226,-1975303161793801,-1975301857911278],[67108875,268566537,-4648500367050864,-4648499057538562],[67108875,268566538,4648499057538562,4648500367050864],[67108875,335675393,4648499057538562,4648500367050864],[67108875,335675394,-4648500367050864,-4648499057538562],[67108875,1073872905,-4648500342125002,-4648499082464426],[67108875,1073872906,4648499082464426,4648500342125002],[67108875,1140981761,4648499082464426,4648500342125002],[67108875,1140981762,-4648500342125002,-4648499082464426],[67108875,17592186175497,-1975303165966039,-1975301853739043],[67108875,17592186175498,1975301853739043,1975303165966039],[67108875,17592253284353,1975301853739043,1975303165966039],[67108875,17592253284354,-1975303165966039,-1975301853739043],[67108877,9,-1975304247543921,-1975300772161160],[67108877,12,1975300772161160,1975304247543921],[67108877,131074,-26495210075134854,-26495207702043174],[67108877,131079,-19871408238006792,-19871405094876730],[67108877,131083,17896101969228851,17896106343949595],[67108877,131086,-24519907495012400,-24519905262460552],[67108877,131209,24519905293069738,24519907464403207],[67108877,131212,-24519907464403207,-24519905293069738],[67108877,163840,13247603817961795,13247605070627222],[67108877,163845,15222905730833912,15222908177460183],[67108877,163849,-47064511840212707,-47064508655028107],[67108877,163852,45089206600617048,45089208874918688],[67108877,655369,-22544604489700504,-22544603248067364],[67108877,655372,22544603248067364,22544604489700504],[67108877,67108865,1975300772161160,1975304247543921],[67108877,67108868,-1975304247543921,-1975300772161160],[67108877,67239939,-24519907495012400,-24519905262460552],[67108877,67239942,17896101969228851,17896106343949595],[67108877,67239946,-19871408238006792,-19871405094876730],[67108877,67239951,-26495210075134854,-26495207702043174],[67108877,67240065,-24519907464403207,-24519905293069738],[67108877,67240068,24519905293069738,24519907464403207],[67108877,67272705,45089206600617048,45089208874918688],[67108877,67272708,-47064511840212707,-47064508655028107],[67108877,67272712,15222905730833912,15222908177460183],[67108877,67272717,13247603817961795,13247605070627222],[67108877,67764225,22544603248067364,22544604489700504],[67108877,67764228,-22544604489700504,-22544603248067364],[67108877,268566537,-1975303130040923,-1975301889664154],[67108877,268566540,1975301889664154,1975303130040923],[67108877,335675393,1975301889664154,1975303130040923],[67108877,335675396,-1975303130040923,-1975301889664154],[67108877,1073774597,4648499082464426,4648500342125002],[67108877,1073774601,-6623803293231701,-6623801151062805],[67108877,1073774604,1975301912872117,1975303106832961],[67108877,1073872905,-1975303106832961,-1975301912872117],[67108877,1073872908,1975301912872117,1975303106832961],[67108877,1140883457,1975301912872117,1975303106832961],[67108877,1140883460,-6623803293231701,-6623801151062805],[67108877,1140883464,4648499082464426,4648500342125002],[67108877,1140981761,1975301912872117,1975303106832961],[67108877,1140981764,-1975303106832961,-1975301912872117],[67108877,17592186175497,-22544604490299392,-22544603247468479],[67108877,17592186175500,22544603247468479,22544604490299392],[67108877,17592253284353,22544603247468479,22544604490299392],[67108877,17592253284356,-22544604490299392,-22544603247468479],[67108878,0,-22544604802429304,-22544602935338568],[67108878,6,6623799135992659,6623805308301850],[67108878,10,-15920803465251079,-15920799828222285],[67108878,12,-13247606182566277,-13247602706022740],[67108878,131073,22544601425886842,22544606311881030],[67108878,131079,-8599107896967374,-8599101567032212],[67108878,131083,6623801151062805,6623803293231701],[67108878,131085,24519905262460552,24519907495012400],[67108878,131136,13247603827010127,13247605061578886],[67108878,131142,6623801107293350,6623803337001160],[67108878,131146,6623801102928978,6623803341365525],[67108878,131200,-11272302707603802,-11272301161280132],[67108878,131206,-11272303056635485,-11272300812248450],[67108878,131210,-964466106,964466108],[67108878,131212,-932612782,932612781],[67108878,163840,-1975303136765642,-1975301882939439],[67108878,163846,-3950608814469977,-3950601224940198],[67108878,163850,-1975303106832961,-1975301912872117],[67108878,163852,3950601689143912,3950608350266260],[67108878,655366,24519905258499972,24519907498972975],[67108878,655370,-1975303161793801,-1975301857911278],[67108878,655372,-22544604489700504,-22544603248067364],[67108878,67108866,-13247606182566277,-13247602706022740],[67108878,67108868,-15920803465251079,-15920799828222285],[67108878,67108872,6623799135992659,6623805308301850],[67108878,67108878,-22544604802429304,-22544602935338568],[67108878,67239939,24519905262460552,24519907495012400],[67108878,67239941,6623801151062805,6623803293231701],[67108878,67239945,-8599107896967374,-8599101567032212],[67108878,67239951,22544601425886842,22544606311881030],[67108878,67240004,6623801102928978,6623803341365525],[67108878,67240008,6623801107293350,6623803337001160],[67108878,67240014,13247603827010127,13247605061578886],[67108878,67240066,-932612782,932612781],[67108878,67240068,-964466106,964466108],[67108878,67240072,-11272303056635485,-11272300812248450],[67108878,67240078,-11272302707603802,-11272301161280132],[67108878,67272706,3950601689143912,3950608350266260],[67108878,67272708,-1975303106832961,-1975301912872117],[67108878,67272712,-3950608814469977,-3950601224940198],[67108878,67272718,-1975303136765642,-1975301882939439],[67108878,67764226,-22544604489700504,-22544603248067364],[67108878,67764228,-1975303161793801,-1975301857911278],[67108878,67764232,24519905258499972,24519907498972975],[67108878,268566534,6623801102928978,6623803341365525],[67108878,268566538,-4648500367050864,-4648499057538562],[67108878,268566540,-1975303130040923,-1975301889664154],[67108878,335675394,-1975303130040923,-1975301889664154],[67108878,335675396,-4648500367050864,-4648499057538562],[67108878,335675400,6623801102928978,6623803341365525],[67108878,1073774598,1975301912872117,1975303106832961],[67108878,1073774604,-1975303106832961,-1975301912872117],[67108878,1073872902,6623801151062805,6623803293231701],[67108878,1073872906,-4648500342125002,-4648499082464426],[67108878,1073872908,-1975303106832961,-1975301912872117],[67108878,1140883458,-1975303106832961,-1975301912872117],[67108878,1140883464,1975301912872117,1975303106832961],[67108878,1140981762,-1975303106832961,-1975301912872117],[67108878,1140981764,-4648500342125002,-4648499082464426],[67108878,1140981768,6623801151062805,6623803293231701],[67108878,17592186175494,24519905253728852,24519907503744101],[67108878,17592186175498,-1975303165966039,-1975301853739043],[67108878,17592186175500,-22544604490299392,-22544603247468479],[67108878,17592253284354,-22544604490299392,-22544603247468479],[67108878,17592253284356,-1975303165966039,-1975301853739043],[67108878,17592253284360,24519905253728852,24519907503744101],[67108928,10,4648497809818828,4648501614770600],[67108928,136,1975300603193161,1975304416511920],[67108928,131074,4648497289301856,4648502135287572],[67108928,131080,-8599108279903872,-8599101184095716],[67108928,131083,1975301891852867,1975303127852212],[67108928,131086,-13247605061578886,-13247603827010127],[67108928,131200,3950600183061726,3950609856348444],[67108928,131210,-22544606608697526,-22544601129070346],[67108928,131212,-13247605066971786,-13247603821617226],[67108928,131338,4648499059714221,4648500364875210],[67108928,131464,-13247605096148654,-13247603792440361],[67108928,132232,1975301885638544,1975303134066536],[67108928,163850,1975301889664154,1975303130040923],[67108928,163976,22544603248067364,22544604489700504],[67108928,524416,-8599108279903872,-8599101184095716],[67108928,655360,1975300603193161,1975304416511920],[67108928,655370,1975301824995317,1975303194709763],[67108928,655490,1975301824995317,1975303194709763],[67108928,655496,18593996093162876,18594001605194824],[67108928,655744,1975301857911278,1975303161793801],[67108928,656512,22544603248067364,22544604489700504],[67108928,688256,1975301885638544,1975303134066536],[67108928,1704064,-13247605066971786,-13247603821617226],[67108928,67108938,4648497809818828,4648501614770600],[67108928,67109064,1975300603193161,1975304416511920],[67108928,67240002,4648497289301856,4648502135287572],[67108928,67240008,-8599108279903872,-8599101184095716],[67108928,67240011,1975301891852867,1975303127852212],[67108928,67240014,-13247605061578886,-13247603827010127],[67108928,67240128,3950600183061726,3950609856348444],[67108928,67240138,-22544606608697526,-22544601129070346],[67108928,67240140,-13247605066971786,-13247603821617226],[67108928,67240266,4648499059714221,4648500364875210],[67108928,67240392,-13247605096148654,-13247603792440361],[67108928,67241160,1975301885638544,1975303134066536],[67108928,67272778,1975301889664154,1975303130040923],[67108928,67272904,22544603248067364,22544604489700504],[67108928,67633344,-8599108279903872,-8599101184095716],[67108928,67764288,1975300603193161,1975304416511920],[67108928,67764298,1975301824995317,1975303194709763],[67108928,67764418,1975301824995317,1975303194709763],[67108928,67764424,18593996093162876,18594001605194824],[67108928,67764672,1975301857911278,1975303161793801],[67108928,67765440,22544603248067364,22544604489700504],[67108928,67797184,1975301885638544,1975303134066536],[67108928,68812992,-13247605066971786,-13247603821617226],[67108928,268435584,4648497289301856,4648502135287572],[67108928,268566538,4648499019397906,4648500405191522],[67108928,268566664,1975301824995317,1975303194709763],[67108928,268959744,4648497809818828,4648501614770600],[67108928,268959874,4648499019397906,4648500405191522],[67108928,268959880,1975301824995317,1975303194709763],[67108928,268960128,4648499057538562,4648500367050864],[67108928,268960896,1975301889664154,1975303130040923],[67108928,269090944,-22544606608697526,-22544601129070346],[67108928,270008448,-13247605061578886,-13247603827010127],[67108928,335544512,4648497289301856,4648502135287572],[67108928,335675466,4648499019397906,4648500405191522],[67108928,335675592,1975301824995317,1975303194709763],[67108928,336068672,4648497809818828,4648501614770600],[67108928,336068802,4648499019397906,4648500405191522],[67108928,336068808,1975301824995317,1975303194709763],[67108928,336069056,4648499057538562,4648500367050864],[67108928,336069824,1975301889664154,1975303130040923],[67108928,336199872,-22544606608697526,-22544601129070346],[67108928,337117376,-13247605061578886,-13247603827010127],[67108928,403177600,1975301891852867,1975303127852212],[67108928,470286528,1975301891852867,1975303127852212],[67108928,1073872906,4648499057538562,4648500367050864],[67108928,1073873032,1975301857911278,1975303161793801],[67108928,1074397312,-13247605096148654,-13247603792440361],[67108928,1140981834,4648499057538562,4648500367050864],[67108928,1140981960,1975301857911278,1975303161793801],[67108928,1141506240,-13247605096148654,-13247603792440361],[67108928,1342701696,4648499059714221,4648500364875210],[67108928,1409810624,4648499059714221,4648500364875210],[67108928,17592186175498,1975301826672296,1975303193032786],[67108928,17592186175624,22544603189358414,22544604548409457],[67108928,17592186699904,-13247605134312055,-13247603754276960],[67108928,17592253284426,1975301826672296,1975303193032786],[67108928,17592253284552,22544603189358414,22544604548409457],[67108928,17592253808832,-13247605134312055,-13247603754276960],[67108928,17592455004288,1975301823150576,1975303196554503],[67108928,17592522113216,1975301823150576,1975303196554503],[67108928,35184641048704,-13247605129676795,-13247603758912222],[67108928,35184708157632,-13247605129676795,-13247603758912222],[67108931,131083,1975301891852867,1975303127852212],[67108931,131145,-6623803337001160,-6623801107293350],[67108931,131146,4648499059714221,4648500364875210],[67108931,67239945,4648499059714221,4648500364875210],[67108931,67239946,-6623803337001160,-6623801107293350],[67108931,67240008,1975301891852867,1975303127852212],[67108934,131086,-6623803337001160,-6623801107293350],[67108934,131148,6623801107293350,6623803337001160],[67108934,67239946,6623801107293350,6623803337001160],[67108934,67240008,-6623803337001160,-6623801107293350],[67108937,131074,6623801107293350,6623803337001160],[67108937,131139,6623801107293350,6623803337001160],[67108937,67239946,6623801107293350,6623803337001160],[67108937,67240011,6623801107293350,6623803337001160],[67108938,10,4648497809818828,4648501614770600],[67108938,72,-4648501614770600,-4648497809818828],[67108938,131073,-4648500364875210,-4648499059714221],[67108938,131086,-6623803341365525,-6623801102928978],[67108938,131139,-4648500364875210,-4648499059714221],[67108938,131148,6623801102928978,6623803341365525],[67108938,131200,3950603642885640,3950606396524520],[67108938,131210,-6623803429142575,-6623801015151933],[67108938,131266,28470509652297966,28470513144585146],[67108938,131272,-17896106590718401,-17896101722460043],[67108938,131328,4648499059714221,4648500364875210],[67108938,131394,4648499059714221,4648500364875210],[67108938,163850,1975301889664154,1975303130040923],[67108938,163912,-1975303130040923,-1975301889664154],[67108938,655370,1975301824995317,1975303194709763],[67108938,655432,-1975303194709763,-1975301824995317],[67108938,67108866,-4648501614770600,-4648497809818828],[67108938,67108928,4648497809818828,4648501614770600],[67108938,67239942,6623801102928978,6623803341365525],[67108938,67239945,-4648500364875210,-4648499059714221],[67108938,67240004,-6623803341365525,-6623801102928978],[67108938,67240011,-4648500364875210,-4648499059714221],[67108938,67240066,-17896106590718401,-17896101722460043],[67108938,67240072,28470509652297966,28470513144585146],[67108938,67240128,-6623803429142575,-6623801015151933],[67108938,67240138,3950603642885640,3950606396524520],[67108938,67240200,4648499059714221,4648500364875210],[67108938,67240266,4648499059714221,4648500364875210],[67108938,67272706,-1975303130040923,-1975301889664154],[67108938,67272768,1975301889664154,1975303130040923],[67108938,67764226,-1975303194709763,-1975301824995317],[67108938,67764288,1975301824995317,1975303194709763],[67108938,268566538,4648499019397906,4648500405191522],[67108938,268566600,-4648500405191522,-4648499019397906],[67108938,335675394,-4648500405191522,-4648499019397906],[67108938,335675456,4648499019397906,4648500405191522],[67108938,1073872906,4648499057538562,4648500367050864],[67108938,1073872968,-4648500367050864,-4648499057538562],[67108938,1140981762,-4648500367050864,-4648499057538562],[67108938,1140981824,4648499057538562,4648500367050864],[67108938,17592186175498,1975301826672296,1975303193032786],[67108938,17592186175560,-1975303193032786,-1975301826672296],[67108938,17592253284354,-1975303193032786,-1975301826672296],[67108938,17592253284416,1975301826672296,1975303193032786],[67108940,131074,-13247605061578886,-13247603827010127],[67108940,131142,-6623803337001160,-6623801107293350],[67108940,131146,-6623803341365525,-6623801102928978],[67108940,131200,-13247605066971786,-13247603821617226],[67108940,131268,11272300812248450,11272303056635485],[67108940,131272,-24519907498972975,-24519905258499972],[67108940,67239942,-6623803341365525,-6623801102928978],[67108940,67239946,-6623803337001160,-6623801107293350],[67108940,67240014,-13247605061578886,-13247603827010127],[67108940,67240068,-24519907498972975,-24519905258499972],[67108940,67240072,11272300812248450,11272303056635485],[67108940,67240140,-13247605066971786,-13247603821617226],[67108992,0,-1395799815332118,-1395778955026394],[67108992,10,-15920803552528152,-15920799740945212],[67108992,12,-13247606153429752,-13247602735159258],[67108992,72,-1975304416511920,-1975300603193161],[67108992,1032,-4648501505889997,-4648497918699427],[67108992,32776,15920798874182437,15920804419290919],[67108992,131074,-4648502836441441,-4648496588147988],[67108992,131076,15920798873942155,15920804419531205],[67108992,131080,159397032038790385,159397079835786384],[67108992,131086,11272301161280132,11272302707603802],[67108992,131136,-3950609856348444,-3950600183061726],[67108992,131146,-3950606396524520,-3950603642885640],[67108992,131148,13247603821617226,13247605066971786],[67108992,132096,-6623806745939431,-6623797698355075],[67108992,132106,-4648500364875210,-4648499059714221],[67108992,132108,13247603855419588,13247605033169427],[67108992,132168,11272300812248450,11272303056635485],[67108992,163840,-5925910964282679,-5925904094832560],[67108992,163850,-1975303130040923,-1975301889664154],[67108992,163852,-45089208861152192,-45089206614383552],[67108992,163912,-22544604489700504,-22544603248067364],[67108992,164872,-1975303102434961,-1975301917270118],[67108992,524296,20569290552159553,20569312165903224],[67108992,524352,8599101184095716,8599108279903872],[67108992,525312,8599101150291472,8599108313708112],[67108992,557056,-7321699679927840,-7321694149545938],[67108992,655360,-252556117717993928,-252556061588214548],[67108992,655370,-3950606391264266,-3950603648145893],[67108992,655372,-9297000663454110,-9296998185724745],[67108992,655432,-7321700711066549,-7321693118407216],[67108992,656392,-1975306059254087,-1975298960450994],[67108992,656448,-24519907498972975,-24519905258499972],[67108992,688136,-22544606653723935,-22544601084043932],[67108992,688192,-1975303134066536,-1975301885638544],[67108992,689152,-1975303102468593,-1975301917236486],[67108992,1179648,-7321699692989682,-7321694136484094],[67108992,1572864,-5925910945469332,-5925904113645905],[67108992,1703944,11272300692285237,11272303176598696],[67108992,1704000,13247603821617226,13247605066971786],[67108992,1704960,26495207710771912,26495210066406118],[67108992,1736704,-22544604430576096,-22544603307191776],[67108992,67108992,-1395799815332118,-1395778955026394],[67108992,67109002,-15920803552528152,-15920799740945212],[67108992,67109004,-13247606153429752,-13247602735159258],[67108992,67109064,-1975304416511920,-1975300603193161],[67108992,67110024,-4648501505889997,-4648497918699427],[67108992,67141768,15920798874182437,15920804419290919],[67108992,67240066,-4648502836441441,-4648496588147988],[67108992,67240068,15920798873942155,15920804419531205],[67108992,67240072,159397032038790385,159397079835786384],[67108992,67240078,11272301161280132,11272302707603802],[67108992,67240128,-3950609856348444,-3950600183061726],[67108992,67240138,-3950606396524520,-3950603642885640],[67108992,67240140,13247603821617226,13247605066971786],[67108992,67241088,-6623806745939431,-6623797698355075],[67108992,67241098,-4648500364875210,-4648499059714221],[67108992,67241100,13247603855419588,13247605033169427],[67108992,67241160,11272300812248450,11272303056635485],[67108992,67272832,-5925910964282679,-5925904094832560],[67108992,67272842,-1975303130040923,-1975301889664154],[67108992,67272844,-45089208861152192,-45089206614383552],[67108992,67272904,-22544604489700504,-22544603248067364],[67108992,67273864,-1975303102434961,-1975301917270118],[67108992,67633288,20569290552159553,20569312165903224],[67108992,67633344,8599101184095716,8599108279903872],[67108992,67634304,8599101150291472,8599108313708112],[67108992,67666048,-7321699679927840,-7321694149545938],[67108992,67764352,-252556117717993928,-252556061588214548],[67108992,67764362,-3950606391264266,-3950603648145893],[67108992,67764364,-9297000663454110,-9296998185724745],[67108992,67764424,-7321700711066549,-7321693118407216],[67108992,67765384,-1975306059254087,-1975298960450994],[67108992,67765440,-24519907498972975,-24519905258499972],[67108992,67797128,-22544606653723935,-22544601084043932],[67108992,67797184,-1975303134066536,-1975301885638544],[67108992,67798144,-1975303102468593,-1975301917236486],[67108992,68288640,-7321699692989682,-7321694136484094],[67108992,68681856,-5925910945469332,-5925904113645905],[67108992,68812936,11272300692285237,11272303176598696],[67108992,68812992,13247603821617226,13247605066971786],[67108992,68813952,26495207710771912,26495210066406118],[67108992,68845696,-22544604430576096,-22544603307191776],[67108992,134742016,15920798878436957,15920804415036409],[67108992,201851008,15920798878436957,15920804415036409],[67108992,268435464,-9297004269330780,-9296994579848082],[67108992,268435520,-4648502135287572,-4648497289301856],[67108992,268436480,-4648501976324875,-4648497448264558],[67108992,268566528,20569290559759355,20569312158303430],[67108992,268566538,-4648500405191522,-4648499019397906],[67108992,268566540,-1975303134066535,-1975301885638543],[67108992,268566600,-1975303194709763,-1975301824995317],[67108992,268567560,-4648500367937248,-4648499056652179],[67108992,268599304,13247603821511848,13247605067077166],[67108992,268959744,77936102841789496,77936150681548118],[67108992,268959816,-6623803429142575,-6623801015151933],[67108992,268960776,-6623803346277521,-6623801098016984],[67108992,268960832,-6623803341365525,-6623801102928978],[67108992,269090824,58336806002895800,58336818361228957],[67108992,269090880,22544601129070346,22544606608697526],[67108992,269091840,22544601272808088,22544606464959780],[67108992,269123584,11272300696813670,11272303172070267],[67108992,269484032,15920798865897844,15920804427575524],[67108992,270008328,13247603821511848,13247605067077166],[67108992,270008384,13247603827010127,13247605061578886],[67108992,270009344,26495207710839176,26495210066338854],[67108992,270139392,-22544606644811289,-22544601092956580],[67108992,335544456,-9297004269330780,-9296994579848082],[67108992,335544512,-4648502135287572,-4648497289301856],[67108992,335545472,-4648501976324875,-4648497448264558],[67108992,335675520,20569290559759355,20569312158303430],[67108992,335675530,-4648500405191522,-4648499019397906],[67108992,335675532,-1975303134066535,-1975301885638543],[67108992,335675592,-1975303194709763,-1975301824995317],[67108992,335676552,-4648500367937248,-4648499056652179],[67108992,335708296,13247603821511848,13247605067077166],[67108992,336068736,77936102841789496,77936150681548118],[67108992,336068808,-6623803429142575,-6623801015151933],[67108992,336069768,-6623803346277521,-6623801098016984],[67108992,336069824,-6623803341365525,-6623801102928978],[67108992,336199816,58336806002895800,58336818361228957],[67108992,336199872,22544601129070346,22544606608697526],[67108992,336200832,22544601272808088,22544606464959780],[67108992,336232576,11272300696813670,11272303172070267],[67108992,336593024,15920798865897844,15920804427575524],[67108992,337117320,13247603821511848,13247605067077166],[67108992,337117376,13247603827010127,13247605061578886],[67108992,337118336,26495207710839176,26495210066338854],[67108992,337248384,-22544606644811289,-22544601092956580],[67108992,402653184,-13247606172936084,-13247602715652933],[67108992,403177480,-1975303134066536,-1975301885638544],[67108992,403177536,-1975303127852212,-1975301891852867],[67108992,403178496,-1975303102468593,-1975301917236486],[67108992,403308544,-9297000658925680,-9296998190253177],[67108992,403702784,-1975303102468593,-1975301917236486],[67108992,404226048,-45089208861152192,-45089206614383552],[67108992,469762176,-13247606172936084,-13247602715652933],[67108992,470286472,-1975303134066536,-1975301885638544],[67108992,470286528,-1975303127852212,-1975301891852867],[67108992,470287488,-1975303102468593,-1975301917236486],[67108992,470417536,-9297000658925680,-9296998190253177],[67108992,470811776,-1975303102468593,-1975301917236486],[67108992,471335040,-45089208861152192,-45089206614383552],[67108992,1073741832,-4648501974835595,-4648497449753834],[67108992,1073774604,-1975303102434961,-1975301917270118],[67108992,1073872896,8599101131740910,8599108332258679],[67108992,1073872906,-4648500367050864,-4648499057538562],[67108992,1073872908,-1975303102434961,-1975301917270118],[67108992,1073872968,-1975303161793801,-1975301857911278],[67108992,1073873928,-4648500337588616,-4648499087000812],[67108992,1073905672,26495207710839176,26495210066338854],[67108992,1074266112,-6623806726760819,-6623797717533688],[67108992,1074397192,22544601267974862,22544606469793008],[67108992,1074397248,13247603792440361,13247605096148654],[67108992,1074398208,13247603822433492,13247605066155522],[67108992,1074429952,26495207710771912,26495210066406118],[67108992,1075445760,-1975303102468593,-1975301917236486],[67108992,1140850824,-4648501974835595,-4648497449753834],[67108992,1140883596,-1975303102434961,-1975301917270118],[67108992,1140981888,8599101131740910,8599108332258679],[67108992,1140981898,-4648500367050864,-4648499057538562],[67108992,1140981900,-1975303102434961,-1975301917270118],[67108992,1140981960,-1975303161793801,-1975301857911278],[67108992,1140982920,-4648500337588616,-4648499087000812],[67108992,1141014664,26495207710839176,26495210066338854],[67108992,1141375104,-6623806726760819,-6623797717533688],[67108992,1141506184,22544601267974862,22544606469793008],[67108992,1141506240,13247603792440361,13247605096148654],[67108992,1141507200,13247603822433492,13247605066155522],[67108992,1141538944,26495207710771912,26495210066406118],[67108992,1142554752,-1975303102468593,-1975301917236486],[67108992,1342177280,-4648501525518317,-4648497899071108],[67108992,1342308360,-6623803346277523,-6623801098016986],[67108992,1342701576,-4648500367937249,-4648499056652180],[67108992,1342701632,-4648500364875210,-4648499059714221],[67108992,1342702592,-4648500337554984,-4648499087034444],[67108992,1342832640,-1975306045508212,-1975298974196867],[67108992,1343750144,-1975303102434961,-1975301917270118],[67108992,1409286272,-4648501525518317,-4648497899071108],[67108992,1409417352,-6623803346277523,-6623801098016986],[67108992,1409810568,-4648500367937249,-4648499056652180],[67108992,1409810624,-4648500364875210,-4648499059714221],[67108992,1409811584,-4648500337554984,-4648499087034444],[67108992,1409941632,-1975306045508212,-1975298974196867],[67108992,1410859136,-1975303102434961,-1975301917270118],[67108992,1476919296,13247603855385956,13247605033203059],[67108992,1544028288,13247603855385956,13247605033203059],[67108992,17592186044424,-1975304963903298,-1975300055801777],[67108992,17592186175488,11272298321696800,11272305547187129],[67108992,17592186175498,-1975303193032786,-1975301826672296],[67108992,17592186175500,-22544604485800118,-22544603251967752],[67108992,17592186175560,-22544604548409457,-22544603189358414],[67108992,17592186176520,-1975303161294799,-1975301858410281],[67108992,17592186208264,13247603822461068,13247605066127948],[67108992,17592186568704,-3950609898973822,-3950600140436346],[67108992,17592186699784,-18594001619979184,-18593996078378526],[67108992,17592186699840,13247603754276960,13247605134312055],[67108992,17592186700800,13247603786922062,13247605101666952],[67108992,17592186732544,13247603811716528,13247605076872486],[67108992,17592187748352,-1975303142599947,-1975301877105131],[67108992,17592253153416,-1975304963903298,-1975300055801777],[67108992,17592253284480,11272298321696800,11272305547187129],[67108992,17592253284490,-1975303193032786,-1975301826672296],[67108992,17592253284492,-22544604485800118,-22544603251967752],[67108992,17592253284552,-22544604548409457,-22544603189358414],[67108992,17592253285512,-1975303161294799,-1975301858410281],[67108992,17592253317256,13247603822461068,13247605066127948],[67108992,17592253677696,-3950609898973822,-3950600140436346],[67108992,17592253808776,-18594001619979184,-18593996078378526],[67108992,17592253808832,13247603754276960,13247605134312055],[67108992,17592253809792,13247603786922062,13247605101666952],[67108992,17592253841536,13247603811716528,13247605076872486],[67108992,17592254857344,-1975303142599947,-1975301877105131],[67108992,17592454479872,-1975304480049416,-1975300539655663],[67108992,17592454610952,11272300719066616,11272303149817323],[67108992,17592455004168,-1975303200228061,-1975301819477018],[67108992,17592455004224,-1975303196554503,-1975301823150576],[67108992,17592455005184,-1975303167312100,-1975301852392980],[67108992,17592455135232,-7321700748173631,-7321693081300137],[67108992,17592456052736,-22544604497985104,-22544603239782766],[67108992,17592521588864,-1975304480049416,-1975300539655663],[67108992,17592521719944,11272300719066616,11272303149817323],[67108992,17592522113160,-1975303200228061,-1975301819477018],[67108992,17592522113216,-1975303196554503,-1975301823150576],[67108992,17592522114176,-1975303167312100,-1975301852392980],[67108992,17592522244224,-7321700748173631,-7321693081300137],[67108992,17592523161728,-22544604497985104,-22544603239782766],[67108992,17592589221888,13247603811716528,13247605076872486],[67108992,17592656330880,13247603811716528,13247605076872486],[67108992,17593259917320,11272300807839789,11272303061044145],[67108992,17593260441600,-24519907512775874,-24519905244697076],[67108992,17593327026312,11272300807839789,11272303061044145],[67108992,17593327550592,-24519907512775874,-24519905244697076],[67108992,17593528745984,11272300798196740,11272303070687196],[67108992,17593595854976,11272300798196740,11272303070687196],[67108992,35184372613120,-1975305698740355,-1975299320964727],[67108992,35184439722112,-1975305698740355,-1975299320964727],[67108992,35184640524288,22544601914969187,22544605822798680],[67108992,35184641048584,13247603750907644,13247605137681374],[67108992,35184641048640,13247603758912222,13247605129676795],[67108992,35184641049600,13247603788555150,13247605100033866],[67108992,35184641179648,-24519907748637518,-24519905008835432],[67108992,35184642097152,-1975303134589986,-1975301885115096],[67108992,35184707633280,22544601914969187,22544605822798680],[67108992,35184708157576,13247603750907644,13247605137681374],[67108992,35184708157632,13247603758912222,13247605129676795],[67108992,35184708158592,13247603788555150,13247605100033866],[67108992,35184708288640,-24519907748637518,-24519905008835432],[67108992,35184709206144,-1975303134589986,-1975301885115096],[67108992,35184775266304,-9297000203068470,-9296998646110384],[67108992,35184842375296,-9297000203068470,-9296998646110384],[67108992,35185714790400,-1975303161294799,-1975301858410281],[67108992,35185781899392,-1975303161294799,-1975301858410281],[67108992,52776827092992,-45089209134537452,-45089206340998288],[67108992,52776894201984,-45089209134537452,-45089206340998288],[67108995,131209,6623801107293350,6623803337001160],[67108995,131210,-6623803337001160,-6623801107293350],[67108995,67239945,-6623803337001160,-6623801107293350],[67108995,67239946,6623801107293350,6623803337001160],[67108997,131209,-26495209977752878,-26495207799425147],[67108997,131212,26495207799425147,26495209977752878],[67108997,67239945,26495207799425147,26495209977752878],[67108997,67239948,-26495209977752878,-26495207799425147],[67108998,131080,31143706687525880,31143710514241570],[67108998,131086,11272300812248450,11272303056635485],[67108998,131210,26495207799425147,26495209977752878],[67108998,131212,-6623803337001160,-6623801107293350],[67108998,67239946,-6623803337001160,-6623801107293350],[67108998,67239948,26495207799425147,26495209977752878],[67108998,67240072,11272300812248450,11272303056635485],[67108998,67240078,31143706687525880,31143710514241570],[67109001,131074,-13247605096148654,-13247603792440361],[67109001,131076,1975301885638544,1975303134066536],[67109001,131083,-6623803358085955,-6623801086208550],[67109001,131085,-24519907464403207,-24519905293069738],[67109001,131203,-6623803337001160,-6623801107293350],[67109001,131205,26495207799425147,26495209977752878],[67109001,67239946,-6623803337001160,-6623801107293350],[67109001,67239948,26495207799425147,26495209977752878],[67109001,67240066,-6623803358085955,-6623801086208550],[67109001,67240068,-24519907464403207,-24519905293069738],[67109001,67240075,-13247605096148654,-13247603792440361],[67109001,67240077,1975301885638544,1975303134066536],[67109002,0,-22544604890140016,-22544602847627856],[67109002,10,-15920803552528152,-15920799740945212],[67109002,130,6623798927600937,6623805516693572],[67109002,136,-13247606347638304,-13247602540950713],[67109002,131073,13247603792440361,13247605096148654],[67109002,131076,-8599105559539709,-8599103904459875],[67109002,131083,6623801086208550,6623803358085955],[67109002,131086,-964466108,964466106],[67109002,131136,22544601129070346,22544606608697526],[67109002,131146,6623801015151933,6623803429142575],[67109002,131203,6623801107293350,6623803337001160],[67109002,131206,-26495209977752878,-26495207799425147],[67109002,131212,17896103187855503,17896105125322940],[67109002,131266,-8599108279903872,-8599101184095716],[67109002,131272,24519905151602618,24519907605870334],[67109002,132096,-4648500364875210,-4648499059714221],[67109002,132226,-11272303056635485,-11272300812248450],[67109002,132232,6623801079994226,6623803364300278],[67109002,163850,-1975303130040923,-1975301889664154],[67109002,163970,24519905293069738,24519907464403207],[67109002,163976,-22544604489700504,-22544603248067364],[67109002,655360,-1975303196554503,-1975301823150576],[67109002,655370,-1975303194709763,-1975301824995317],[67109002,655490,-3950609326662792,-3950600712747379],[67109002,655496,3950601242433032,3950608796977140],[67109002,67108866,-13247606347638304,-13247602540950713],[67109002,67108872,6623798927600937,6623805516693572],[67109002,67108992,-15920803552528152,-15920799740945212],[67109002,67109002,-22544604890140016,-22544602847627856],[67109002,67239942,17896103187855503,17896105125322940],[67109002,67239945,6623801107293350,6623803337001160],[67109002,67239948,-26495209977752878,-26495207799425147],[67109002,67240002,24519905151602618,24519907605870334],[67109002,67240008,-8599108279903872,-8599101184095716],[67109002,67240065,6623801086208550,6623803358085955],[67109002,67240068,-964466108,964466106],[67109002,67240075,13247603792440361,13247605096148654],[67109002,67240078,-8599105559539709,-8599103904459875],[67109002,67240128,6623801015151933,6623803429142575],[67109002,67240138,22544601129070346,22544606608697526],[67109002,67240962,6623801079994226,6623803364300278],[67109002,67240968,-11272303056635485,-11272300812248450],[67109002,67241098,-4648500364875210,-4648499059714221],[67109002,67272706,-22544604489700504,-22544603248067364],[67109002,67272712,24519905293069738,24519907464403207],[67109002,67272832,-1975303130040923,-1975301889664154],[67109002,67764226,3950601242433032,3950608796977140],[67109002,67764232,-3950609326662792,-3950600712747379],[67109002,67764352,-1975303194709763,-1975301824995317],[67109002,67764362,-1975303196554503,-1975301823150576],[67109002,268566538,-4648500405191522,-4648499019397906],[67109002,268566658,6623801015151933,6623803429142575],[67109002,268566664,-1975303194709763,-1975301824995317],[67109002,268959874,1975301824995317,1975303194709763],[67109002,268959880,-1975303194709763,-1975301824995317],[67109002,335675394,-1975303194709763,-1975301824995317],[67109002,335675400,6623801015151933,6623803429142575],[67109002,335675520,-4648500405191522,-4648499019397906],[67109002,336068610,-1975303194709763,-1975301824995317],[67109002,336068616,1975301824995317,1975303194709763],[67109002,1073872906,-4648500367050864,-4648499057538562],[67109002,1073873026,6623801086208550,6623803358085955],[67109002,1073873032,-1975303161793801,-1975301857911278],[67109002,1140981762,-1975303161793801,-1975301857911278],[67109002,1140981768,6623801086208550,6623803358085955],[67109002,1140981888,-4648500367050864,-4648499057538562],[67109002,17592186175498,-1975303193032786,-1975301826672296],[67109002,17592186175618,24519905182726150,24519907574746803],[67109002,17592186175624,-22544604548409457,-22544603189358414],[67109002,17592253284354,-22544604548409457,-22544603189358414],[67109002,17592253284360,24519905182726150,24519907574746803],[67109002,17592253284480,-1975303193032786,-1975301826672296],[67109004,0,-22544604789079442,-22544602948688426],[67109004,12,-13247606153429752,-13247602735159258],[67109004,132,6623799192952293,6623805251342207],[67109004,136,-15920803437427959,-15920799856045399],[67109004,131073,-1975303134066536,-1975301885638544],[67109004,131074,-11272302707496740,-11272301161387192],[67109004,131085,24519905293069738,24519907464403207],[67109004,131086,-932612781,932612782],[67109004,131136,13247603821617226,13247605066971786],[67109004,131205,-26495209977752878,-26495207799425147],[67109004,131206,6623801107293350,6623803337001160],[67109004,131210,-17896105125322940,-17896103187855503],[67109004,131268,-11272303056635485,-11272300812248450],[67109004,131272,24519905258499972,24519907498972975],[67109004,132096,13247603855419588,13247605033169427],[67109004,132228,6623801172992632,6623803271301876],[67109004,132232,6623801159997192,6623803284297315],[67109004,163840,-1975303134589986,-1975301885115096],[67109004,163852,3950601736070570,3950608303339582],[67109004,163972,-3950608765320955,-3950601274089200],[67109004,163976,-1975303102434961,-1975301917270118],[67109004,655360,13247603822461068,13247605066127948],[67109004,655372,-22544604485915178,-22544603251852693],[67109004,655492,-9297003434088727,-9296995415090126],[67109004,655496,45089204203543548,45089211271992192],[67109004,67108868,-15920803437427959,-15920799856045399],[67109004,67108872,6623799192952293,6623805251342207],[67109004,67108992,-13247606153429752,-13247602735159258],[67109004,67109004,-22544604789079442,-22544602948688426],[67109004,67239942,-17896105125322940,-17896103187855503],[67109004,67239945,-26495209977752878,-26495207799425147],[67109004,67239946,6623801107293350,6623803337001160],[67109004,67240004,24519905258499972,24519907498972975],[67109004,67240008,-11272303056635485,-11272300812248450],[67109004,67240065,24519905293069738,24519907464403207],[67109004,67240066,-932612781,932612782],[67109004,67240077,-1975303134066536,-1975301885638544],[67109004,67240078,-11272302707496740,-11272301161387192],[67109004,67240140,13247603821617226,13247605066971786],[67109004,67240964,6623801159997192,6623803284297315],[67109004,67240968,6623801172992632,6623803271301876],[67109004,67241100,13247603855419588,13247605033169427],[67109004,67272708,-1975303102434961,-1975301917270118],[67109004,67272712,-3950608765320955,-3950601274089200],[67109004,67272832,3950601736070570,3950608303339582],[67109004,67272844,-1975303134589986,-1975301885115096],[67109004,67764228,45089204203543548,45089211271992192],[67109004,67764232,-9297003434088727,-9296995415090126],[67109004,67764352,-22544604485915178,-22544603251852693],[67109004,67764364,13247603822461068,13247605066127948],[67109004,268566540,-1975303134066535,-1975301885638543],[67109004,268566660,6623801098016984,6623803346277521],[67109004,268566664,-4648500367937248,-4648499056652179],[67109004,268959876,4648499056652179,4648500367937248],[67109004,268959880,-4648500367937248,-4648499056652179],[67109004,335675396,-4648500367937248,-4648499056652179],[67109004,335675400,6623801098016984,6623803346277521],[67109004,335675520,-1975303134066535,-1975301885638543],[67109004,336068612,-4648500367937248,-4648499056652179],[67109004,336068616,4648499056652179,4648500367937248],[67109004,1073774604,-1975303102434961,-1975301917270118],[67109004,1073774724,1975301917270118,1975303102434961],[67109004,1073872908,-1975303102434961,-1975301917270118],[67109004,1073873028,6623801159997192,6623803284297315],[67109004,1073873032,-4648500337588616,-4648499087000812],[67109004,1140883464,1975301917270118,1975303102434961],[67109004,1140883584,-1975303102434961,-1975301917270118],[67109004,1140981764,-4648500337588616,-4648499087000812],[67109004,1140981768,6623801159997192,6623803284297315],[67109004,1140981888,-1975303102434961,-1975301917270118],[67109004,17592186175500,-22544604485800118,-22544603251967752],[67109004,17592186175620,24519905262899363,24519907494573587],[67109004,17592186175624,-1975303161294799,-1975301858410281],[67109004,17592253284356,-1975303161294799,-1975301858410281],[67109004,17592253284360,24519905262899363,24519907494573587],[67109004,17592253284480,-22544604485800118,-22544603251967752],[67109058,131146,-28470513144585146,-28470509652297966],[67109058,131210,8599101184095716,8599108279903872],[67109058,131272,19871404864681274,19871408468202250],[67109058,655490,1975301824995317,1975303194709763],[67109058,655552,-1975303194709763,-1975301824995317],[67109058,67239946,19871404864681274,19871408468202250],[67109058,67240008,8599101184095716,8599108279903872],[67109058,67240072,-28470513144585146,-28470509652297966],[67109058,67764226,-1975303194709763,-1975301824995317],[67109058,67764288,1975301824995317,1975303194709763],[67109058,268959874,4648499019397906,4648500405191522],[67109058,268959936,-4648500405191522,-4648499019397906],[67109058,336068610,-4648500405191522,-4648499019397906],[67109058,336068672,4648499019397906,4648500405191522],[67109060,131148,-11272303056635485,-11272300812248450],[67109060,131212,11272300812248450,11272303056635485],[67109060,67240008,11272300812248450,11272303056635485],[67109060,67240072,-11272303056635485,-11272300812248450],[67109064,72,-1975304416511920,-1975300603193161],[67109064,136,1975300603193161,1975304416511920],[67109064,131074,-26495210251583166,-26495207525594866],[67109064,131146,17896101722460043,17896106590718401],[67109064,131148,24519905258499972,24519907498972975],[67109064,131210,-24519907605870334,-24519905151602618],[67109064,131212,-24519907498972975,-24519905258499972],[67109064,131266,-19871408468202250,-19871404864681274],[67109064,131328,-13247605096148654,-13247603792440361],[67109064,131520,-13247605096148654,-13247603792440361],[67109064,132096,13247603792440361,13247605096148654],[67109064,132288,13247603792440361,13247605096148654],[67109064,163912,-22544604489700504,-22544603248067364],[67109064,163976,22544603248067364,22544604489700504],[67109064,655360,13247603754276960,13247605134312055],[67109064,655432,-47064512135024435,-47064508360216381],[67109064,655496,45089206368525624,45089209107010112],[67109064,655552,15222905579272277,15222908329021818],[67109064,67108928,1975300603193161,1975304416511920],[67109064,67108992,-1975304416511920,-1975300603193161],[67109064,67239946,-19871408468202250,-19871404864681274],[67109064,67240002,-24519907605870334,-24519905151602618],[67109064,67240004,-24519907498972975,-24519905258499972],[67109064,67240066,17896101722460043,17896106590718401],[67109064,67240068,24519905258499972,24519907498972975],[67109064,67240138,-26495210251583166,-26495207525594866],[67109064,67240200,-13247605096148654,-13247603792440361],[67109064,67240392,-13247605096148654,-13247603792440361],[67109064,67240968,13247603792440361,13247605096148654],[67109064,67241160,13247603792440361,13247605096148654],[67109064,67272768,22544603248067364,22544604489700504],[67109064,67272832,-22544604489700504,-22544603248067364],[67109064,67764232,15222905579272277,15222908329021818],[67109064,67764288,45089206368525624,45089209107010112],[67109064,67764352,-47064512135024435,-47064508360216381],[67109064,67764424,13247603754276960,13247605134312055],[67109064,268566600,-1975303194709763,-1975301824995317],[67109064,268566664,1975301824995317,1975303194709763],[67109064,268959816,-6623803429142575,-6623801015151933],[67109064,268959880,1975301824995317,1975303194709763],[67109064,268959936,4648499019397906,4648500405191522],[67109064,335675456,1975301824995317,1975303194709763],[67109064,335675520,-1975303194709763,-1975301824995317],[67109064,336068616,4648499019397906,4648500405191522],[67109064,336068672,1975301824995317,1975303194709763],[67109064,336068736,-6623803429142575,-6623801015151933],[67109064,1073872968,-1975303161793801,-1975301857911278],[67109064,1073873032,1975301857911278,1975303161793801],[67109064,1140981824,1975301857911278,1975303161793801],[67109064,1140981888,-1975303161793801,-1975301857911278],[67109064,17592186175560,-22544604548409457,-22544603189358414],[67109064,17592186175624,22544603189358414,22544604548409457],[67109064,17592253284416,22544603189358414,22544604548409457],[67109064,17592253284480,-22544604548409457,-22544603189358414],[67109120,131146,-4648500364875210,-4648499059714221],[67109120,131272,13247603792440361,13247605096148654],[67109120,132232,-1975303134066536,-1975301885638544],[67109120,655552,-1975303161793801,-1975301857911278],[67109120,656512,-22544604489700504,-22544603248067364],[67109120,1704960,13247603821617226,13247605066971786],[67109120,67240266,-4648500364875210,-4648499059714221],[67109120,67240392,13247603792440361,13247605096148654],[67109120,67241352,-1975303134066536,-1975301885638544],[67109120,67764672,-1975303161793801,-1975301857911278],[67109120,67765632,-22544604489700504,-22544603248067364],[67109120,68814080,13247603821617226,13247605066971786],[67109120,268959936,-4648500367050864,-4648499057538562],[67109120,268960896,-1975303130040923,-1975301889664154],[67109120,270009344,13247603827010127,13247605061578886],[67109120,336069056,-4648500367050864,-4648499057538562],[67109120,336070016,-1975303130040923,-1975301889664154],[67109120,337118464,13247603827010127,13247605061578886],[67109120,403702784,-1975303127852212,-1975301891852867],[67109120,470811904,-1975303127852212,-1975301891852867],[67109130,131136,-4648500364875210,-4648499059714221],[67109130,131394,-4648500364875210,-4648499059714221],[67109130,67240008,-4648500364875210,-4648499059714221],[67109130,67240266,-4648500364875210,-4648499059714221],[67109186,131146,-4648500364875210,-4648499059714221],[67109186,131338,4648499059714221,4648500364875210],[67109186,67240008,4648499059714221,4648500364875210],[67109186,67240200,-4648500364875210,-4648499059714221],[67109256,131136,13247603792440361,13247605096148654],[67109256,131520,13247603792440361,13247605096148654],[67109256,132096,-1975303134066536,-1975301885638544],[67109256,132480,-1975303134066536,-1975301885638544],[67109256,67240008,13247603792440361,13247605096148654],[67109256,67240392,13247603792440361,13247605096148654],[67109256,67240968,-1975303134066536,-1975301885638544],[67109256,67241352,-1975303134066536,-1975301885638544],[67109312,131272,13247603792440361,13247605096148654],[67109312,131464,-13247605096148654,-13247603792440361],[67109312,655552,-1975303161793801,-1975301857911278],[67109312,655744,1975301857911278,1975303161793801],[67109312,67240008,-13247605096148654,-13247603792440361],[67109312,67240200,13247603792440361,13247605096148654],[67109312,67764288,1975301857911278,1975303161793801],[67109312,67764480,-1975303161793801,-1975301857911278],[67109312,268959936,-4648500367050864,-4648499057538562],[67109312,268960128,4648499057538562,4648500367050864],[67109312,336068672,4648499057538562,4648500367050864],[67109312,336068864,-4648500367050864,-4648499057538562],[67109888,136,4648497918699427,4648501505889997],[67109888,131080,4648498045480102,4648501379109327],[67109888,131200,6623797698355075,6623806745939431],[67109888,131210,4648499059714221,4648500364875210],[67109888,131212,-13247605033169427,-13247603855419588],[67109888,131272,-13247605096148654,-13247603792440361],[67109888,131464,1975301885638544,1975303134066536],[67109888,133256,1975301892192549,1975303127512530],[67109888,163976,1975301917270118,1975303102434961],[67109888,524416,-8599108313708112,-8599101150291472],[67109888,655360,-11272305289278916,-11272298579605019],[67109888,655496,-22544606482912750,-22544601254855122],[67109888,655552,1975301857911278,1975303161793801],[67109888,655744,22544603248067364,22544604489700504],[67109888,657536,22544603251852693,22544604485915178],[67109888,688256,1975301917236486,1975303102468593],[67109888,1179648,1975300413869816,1975304605835260],[67109888,1179784,1975301885115096,1975303134589986],[67109888,1572864,3950601606309328,3950608433100829],[67109888,1703944,1975301885115096,1975303134589986],[67109888,1704064,18593996439502170,18594001258855540],[67109888,1704192,-13247605066971786,-13247603821617226],[67109888,1705984,-13247605061713792,-13247603826875223],[67109888,1736704,22544603307191776,22544604430576096],[67109888,3801088,-13247605060886466,-13247603827702546],[67109888,67110024,4648497918699427,4648501505889997],[67109888,67240968,4648498045480102,4648501379109327],[67109888,67241088,6623797698355075,6623806745939431],[67109888,67241098,4648499059714221,4648500364875210],[67109888,67241100,-13247605033169427,-13247603855419588],[67109888,67241160,-13247605096148654,-13247603792440361],[67109888,67241352,1975301885638544,1975303134066536],[67109888,67243144,1975301892192549,1975303127512530],[67109888,67273864,1975301917270118,1975303102434961],[67109888,67634304,-8599108313708112,-8599101150291472],[67109888,67765248,-11272305289278916,-11272298579605019],[67109888,67765384,-22544606482912750,-22544601254855122],[67109888,67765440,1975301857911278,1975303161793801],[67109888,67765632,22544603248067364,22544604489700504],[67109888,67767424,22544603251852693,22544604485915178],[67109888,67798144,1975301917236486,1975303102468593],[67109888,68289536,1975300413869816,1975304605835260],[67109888,68289672,1975301885115096,1975303134589986],[67109888,68682752,3950601606309328,3950608433100829],[67109888,68813832,1975301885115096,1975303134589986],[67109888,68813952,18593996439502170,18594001258855540],[67109888,68814080,-13247605066971786,-13247603821617226],[67109888,68815872,-13247605061713792,-13247603826875223],[67109888,68846592,22544603307191776,22544604430576096],[67109888,70910976,-13247605060886466,-13247603827702546],[67109888,135266304,-13247606122970514,-13247602765618499],[67109888,135921664,-13247605061599516,-13247603826989498],[67109888,202376192,-13247606122970514,-13247602765618499],[67109888,203031552,-13247605061599516,-13247603826989498],[67109888,268435584,4648497448264558,4648501976324875],[67109888,268566664,4648499056652179,4648500367937248],[67109888,268959744,-8599108093729955,-8599101370269630],[67109888,268959880,4648499056652179,4648500367937248],[67109888,268959936,4648499057538562,4648500367050864],[67109888,268960128,1975301889664154,1975303130040923],[67109888,268961920,1975301885638543,1975303134066535],[67109888,269090944,-22544606464959780,-22544601272808088],[67109888,269484032,3950600828296569,3950609211113582],[67109888,270008448,-22544606285700820,-22544601452067054],[67109888,270008576,-13247605061578886,-13247603827010127],[67109888,270010368,-13247605067077166,-13247603821511848],[67109888,270139392,49039810292025454,49039815222920444],[67109888,272105472,-13247605061713792,-13247603826875223],[67109888,335545472,4648497448264558,4648501976324875],[67109888,335676552,4648499056652179,4648500367937248],[67109888,336069632,-8599108093729955,-8599101370269630],[67109888,336069768,4648499056652179,4648500367937248],[67109888,336069824,4648499057538562,4648500367050864],[67109888,336070016,1975301889664154,1975303130040923],[67109888,336071808,1975301885638543,1975303134066535],[67109888,336200832,-22544606464959780,-22544601272808088],[67109888,336593920,3950600828296569,3950609211113582],[67109888,337118336,-22544606285700820,-22544601452067054],[67109888,337118464,-13247605061578886,-13247603827010127],[67109888,337120256,-13247605067077166,-13247603821511848],[67109888,337249280,49039810292025454,49039815222920444],[67109888,339215360,-13247605061713792,-13247603826875223],[67109888,402653184,1975300784114970,1975304235590111],[67109888,403177600,1975301917236486,1975303102468593],[67109888,403701888,1975301917236486,1975303102468593],[67109888,403702016,1975301891852867,1975303127852212],[67109888,403703808,1975301885638544,1975303134066536],[67109888,403832832,-13247605061599516,-13247603826989498],[67109888,404226048,18593996492884744,18594001205472974],[67109888,405798912,22544603251852693,22544604485915178],[67109888,469763072,1975300784114970,1975304235590111],[67109888,470287488,1975301917236486,1975303102468593],[67109888,470811776,1975301917236486,1975303102468593],[67109888,470811904,1975301891852867,1975303127852212],[67109888,470813696,1975301885638544,1975303134066536],[67109888,470942720,-13247605061599516,-13247603826989498],[67109888,471335936,18593996492884744,18594001205472974],[67109888,472908800,22544603251852693,22544604485915178],[67109888,940572672,1975301892192548,1975303127512529],[67109888,1007682560,1975301892192548,1975303127512529],[67109888,1073873032,4648499087000812,4648500337588616],[67109888,1074397312,-13247605066155522,-13247603822433492],[67109888,1075445760,1975301917236486,1975303102468593],[67109888,1140982920,4648499087000812,4648500337588616],[67109888,1141507200,-13247605066155522,-13247603822433492],[67109888,1142555648,1975301917236486,1975303102468593],[67109888,1342701696,4648499087034444,4648500337554984],[67109888,1343750144,1975301917270118,1975303102434961],[67109888,1409811584,4648499087034444,4648500337554984],[67109888,1410860032,1975301917270118,1975303102434961],[67109888,1477443584,-13247605033203059,-13247603855385956],[67109888,1544553472,-13247605033203059,-13247603855385956],[67109888,17592186175624,1975301858410281,1975303161294799],[67109888,17592186699904,-13247605101666952,-13247603786922062],[67109888,17592187748352,1975301877105131,1975303142599947],[67109888,17592253285512,1975301858410281,1975303161294799],[67109888,17592253809792,-13247605101666952,-13247603786922062],[67109888,17592254858240,1975301877105131,1975303142599947],[67109888,17592455004288,1975301852392980,1975303167312100],[67109888,17592456052736,22544603239782766,22544604497985104],[67109888,17592522114176,1975301852392980,1975303167312100],[67109888,17592523162624,22544603239782766,22544604497985104],[67109888,17592589746176,-13247605076872486,-13247603811716528],[67109888,17592656856064,-13247605076872486,-13247603811716528],[67109888,35184641048704,-13247605100033866,-13247603788555150],[67109888,35184642097152,1975301885115096,1975303134589986],[67109888,35184708158592,-13247605100033866,-13247603788555150],[67109888,35184709207040,1975301885115096,1975303134589986],[67109888,35184775790592,-13247605066127948,-13247603822461068],[67109888,35184842900480,-13247605066127948,-13247603822461068],[67109888,70369147879424,22544603251967752,22544604485800118],[67109888,70369214989312,22544603251967752,22544604485800118],[67109898,131200,4648499059714221,4648500364875210],[67109898,132226,11272300812248450,11272303056635485],[67109898,132232,-6623803364300278,-6623801079994226],[67109898,67240066,-6623803364300278,-6623801079994226],[67109898,67240072,11272300812248450,11272303056635485],[67109898,67241098,4648499059714221,4648500364875210],[67109900,131200,-13247605033169427,-13247603855419588],[67109900,132228,-6623803271301876,-6623801172992632],[67109900,132232,-6623803284297315,-6623801159997192],[67109900,67240068,-6623803284297315,-6623801159997192],[67109900,67240072,-6623803271301876,-6623801172992632],[67109900,67241100,-13247605033169427,-13247603855419588],[67109960,131200,-11272303056635485,-11272300812248450],[67109960,132288,-11272303056635485,-11272300812248450],[67109960,67240072,-11272303056635485,-11272300812248450],[67109960,67241160,-11272303056635485,-11272300812248450],[67110018,131210,11272300812248450,11272303056635485],[67110018,132106,-11272303056635485,-11272300812248450],[67110018,67240072,-11272303056635485,-11272300812248450],[67110018,67240968,11272300812248450,11272303056635485],[67110020,131212,-6623803271301876,-6623801172992632],[67110020,132108,6623801172992632,6623803271301876],[67110020,67240072,6623801172992632,6623803271301876],[67110020,67240968,-6623803271301876,-6623801172992632],[67110024,136,4648497918699427,4648501505889997],[67110024,1032,-4648501505889997,-4648497918699427],[67110024,131136,-1975303134066536,-1975301885638544],[67110024,131210,-6623803364300278,-6623801079994226],[67110024,131212,-6623803284297315,-6623801159997192],[67110024,131328,1975301885638544,1975303134066536],[67110024,132106,6623801079994226,6623803364300278],[67110024,132108,6623801159997192,6623803284297315],[67110024,132288,-1975303134066536,-1975301885638544],[67110024,132480,1975301885638544,1975303134066536],[67110024,133120,1975301892192549,1975303127512530],[67110024,134272,1975301892192549,1975303127512530],[67110024,163976,1975301917270118,1975303102434961],[67110024,164872,-1975303102434961,-1975301917270118],[67110024,655360,-1975303134589986,-1975301885115096],[67110024,655496,3950603717154982,3950606322255178],[67110024,656392,-26495210655649026,-26495207121529005],[67110024,656512,20569300117262707,20569302600800082],[67110024,1179648,1975301885115096,1975303134589986],[67110024,1180800,1975301885115096,1975303134589986],[67110024,67108992,-4648501505889997,-4648497918699427],[67110024,67109888,4648497918699427,4648501505889997],[67110024,67240008,-1975303134066536,-1975301885638544],[67110024,67240066,6623801079994226,6623803364300278],[67110024,67240068,6623801159997192,6623803284297315],[67110024,67240200,1975301885638544,1975303134066536],[67110024,67240962,-6623803364300278,-6623801079994226],[67110024,67240964,-6623803284297315,-6623801159997192],[67110024,67241160,-1975303134066536,-1975301885638544],[67110024,67241352,1975301885638544,1975303134066536],[67110024,67241992,1975301892192549,1975303127512530],[67110024,67243144,1975301892192549,1975303127512530],[67110024,67272832,-1975303102434961,-1975301917270118],[67110024,67273728,1975301917270118,1975303102434961],[67110024,67764232,20569300117262707,20569302600800082],[67110024,67764352,-26495210655649026,-26495207121529005],[67110024,67765248,3950603717154982,3950606322255178],[67110024,67765384,-1975303134589986,-1975301885115096],[67110024,68288520,1975301885115096,1975303134589986],[67110024,68289672,1975301885115096,1975303134589986],[67110024,268566664,4648499056652179,4648500367937248],[67110024,268567560,-4648500367937248,-4648499056652179],[67110024,268959880,4648499056652179,4648500367937248],[67110024,268960776,-6623803346277521,-6623801098016984],[67110024,268960896,1975301885638543,1975303134066535],[67110024,335675520,-4648500367937248,-4648499056652179],[67110024,335676416,4648499056652179,4648500367937248],[67110024,336068616,1975301885638543,1975303134066535],[67110024,336068736,-6623803346277521,-6623801098016984],[67110024,336069632,4648499056652179,4648500367937248],[67110024,1073873032,4648499087000812,4648500337588616],[67110024,1073873928,-4648500337588616,-4648499087000812],[67110024,1140981888,-4648500337588616,-4648499087000812],[67110024,1140982784,4648499087000812,4648500337588616],[67110024,17592186175624,1975301858410281,1975303161294799],[67110024,17592186176520,-1975303161294799,-1975301858410281],[67110024,17592253284480,-1975303161294799,-1975301858410281],[67110024,17592253285376,1975301858410281,1975303161294799],[67110080,131272,-13247605096148654,-13247603792440361],[67110080,132168,11272300812248450,11272303056635485],[67110080,132232,1975301885638544,1975303134066536],[67110080,655552,1975301857911278,1975303161793801],[67110080,656448,-24519907498972975,-24519905258499972],[67110080,656512,22544603248067364,22544604489700504],[67110080,67240008,1975301885638544,1975303134066536],[67110080,67240072,11272300812248450,11272303056635485],[67110080,67240968,-13247605096148654,-13247603792440361],[67110080,67764288,22544603248067364,22544604489700504],[67110080,67764352,-24519907498972975,-24519905258499972],[67110080,67765248,1975301857911278,1975303161793801],[67110080,268959936,4648499057538562,4648500367050864],[67110080,268960832,-6623803341365525,-6623801102928978],[67110080,268960896,1975301889664154,1975303130040923],[67110080,336068672,1975301889664154,1975303130040923],[67110080,336068736,-6623803341365525,-6623801102928978],[67110080,336069632,4648499057538562,4648500367050864],[67110272,131464,1975301885638544,1975303134066536],[67110272,132232,-1975303134066536,-1975301885638544],[67110272,655744,22544603248067364,22544604489700504],[67110272,656512,-22544604489700504,-22544603248067364],[67110272,67240200,-1975303134066536,-1975301885638544],[67110272,67240968,1975301885638544,1975303134066536],[67110272,67764480,-22544604489700504,-22544603248067364],[67110272,67765248,22544603248067364,22544604489700504],[67110272,268960128,1975301889664154,1975303130040923],[67110272,268960896,-1975303130040923,-1975301889664154],[67110272,336068864,-1975303130040923,-1975301889664154],[67110272,336069632,1975301889664154,1975303130040923],[67110912,132232,-1975303127512530,-1975301892192549],[67110912,656512,-22544604485915178,-22544603251852693],[67110912,1704960,13247603826875223,13247605061713792],[67110912,3801088,13247603827702546,13247605060886466],[67110912,67243144,-1975303127512530,-1975301892192549],[67110912,67767424,-22544604485915178,-22544603251852693],[67110912,68815872,13247603826875223,13247605061713792],[67110912,70912000,13247603827702546,13247605060886466],[67110912,268960896,-1975303134066535,-1975301885638543],[67110912,270009344,13247603821511848,13247605067077166],[67110912,272105472,13247603826875223,13247605061713792],[67110912,336071808,-1975303134066535,-1975301885638543],[67110912,337120256,13247603821511848,13247605067077166],[67110912,339216384,13247603826875223,13247605061713792],[67110912,403702784,-1975303134066536,-1975301885638544],[67110912,405798912,-22544604485915178,-22544603251852693],[67110912,470813696,-1975303134066536,-1975301885638544],[67110912,472909824,-22544604485915178,-22544603251852693],[67110912,941621248,-1975303127512529,-1975301892192548],[67110912,1008732160,-1975303127512529,-1975301892192548],[67111048,132096,-1975303127512530,-1975301892192549],[67111048,134272,-1975303127512530,-1975301892192549],[67111048,67240968,-1975303127512530,-1975301892192549],[67111048,67243144,-1975303127512530,-1975301892192549],[67112064,132232,-1975303127512530,-1975301892192549],[67112064,133256,1975301892192549,1975303127512530],[67112064,656512,-22544604485915178,-22544603251852693],[67112064,657536,22544603251852693,22544604485915178],[67112064,67240968,1975301892192549,1975303127512530],[67112064,67241992,-1975303127512530,-1975301892192549],[67112064,67765248,22544603251852693,22544604485915178],[67112064,67766272,-22544604485915178,-22544603251852693],[67112064,268960896,-1975303134066535,-1975301885638543],[67112064,268961920,1975301885638543,1975303134066535],[67112064,336069632,1975301885638543,1975303134066535],[67112064,336070656,-1975303134066535,-1975301885638543],[67141632,10,11272301467669284,11272302401214652],[67141632,12,20569296483878353,20569306234184452],[67141632,136,11272301474344213,11272302394539721],[67141632,131073,-1975304247543921,-1975300772161160],[67141632,131074,6623799135992659,6623805308301850],[67141632,131076,320189871195698486,320189931323813606],[67141632,131080,-222382391306796628,-222382344356494327],[67141632,131085,-13247605070627222,-13247603817961795],[67141632,131086,1975301882939439,1975303136765642],[67141632,131200,-4648505793203474,-4648493631385954],[67141632,131212,1975301885115096,1975303134589986],[67141632,524292,-1975305281057239,-1975299738647843],[67141632,524296,-13945502254348697,-13945496019419587],[67141632,524416,-9296999886451704,-9296998962727152],[67141632,655372,47064508847957192,47064511647283630],[67141632,67141642,11272301467669284,11272302401214652],[67141632,67141644,20569296483878353,20569306234184452],[67141632,67141768,11272301474344213,11272302394539721],[67141632,67272705,-1975304247543921,-1975300772161160],[67141632,67272706,6623799135992659,6623805308301850],[67141632,67272708,320189871195698486,320189931323813606],[67141632,67272712,-222382391306796628,-222382344356494327],[67141632,67272717,-13247605070627222,-13247603817961795],[67141632,67272718,1975301882939439,1975303136765642],[67141632,67272832,-4648505793203474,-4648493631385954],[67141632,67272844,1975301885115096,1975303134589986],[67141632,67665924,-1975305281057239,-1975299738647843],[67141632,67665928,-13945502254348697,-13945496019419587],[67141632,67666048,-9296999886451704,-9296998962727152],[67141632,67797004,47064508847957192,47064511647283630],[67141632,268435460,3950600828296569,3950609211113582],[67141632,268435464,15920798865897844,15920804427575524],[67141632,268566540,3950603780638034,3950606258772122],[67141632,269090820,3950603783705734,3950606255704424],[67141632,269090824,-21846710653152227,-21846707699436376],[67141632,269090944,4648499056652179,4648500367937248],[67141632,335577092,3950600828296569,3950609211113582],[67141632,335577096,15920798865897844,15920804427575524],[67141632,335708172,3950603780638034,3950606258772122],[67141632,336232452,3950603783705734,3950606255704424],[67141632,336232456,-21846710653152227,-21846707699436376],[67141632,336232576,4648499056652179,4648500367937248],[67141632,1073741825,-4648501531389499,-4648497893199929],[67141632,1073741828,-133599767595705506,-133599715886872508],[67141632,1073741832,20569293260874416,20569309457188365],[67141632,1073872908,-35792211241229472,-35792205385127423],[67141632,1074397188,-24519908060537022,-24519904696935925],[67141632,1074397192,15920800086388708,15920803207084654],[67141632,1140883457,-4648501531389499,-4648497893199929],[67141632,1140883460,-133599767595705506,-133599715886872508],[67141632,1140883464,20569293260874416,20569309457188365],[67141632,1141014540,-35792211241229472,-35792205385127423],[67141632,1141538820,-24519908060537022,-24519904696935925],[67141632,1141538824,15920800086388708,15920803207084654],[67141632,1342308356,-3950609211113582,-3950600828296569],[67141632,1342308360,8599103049661346,8599106414338238],[67141632,1409449988,-3950609211113582,-3950600828296569],[67141632,1409449992,8599103049661346,8599106414338238],[67141632,17592186044420,3950600725236988,3950609314173172],[67141632,17592186044424,-7321699779192130,-7321694050281650],[67141632,17592186175500,45089206464001460,45089209011534280],[67141632,17592186699780,1975301877105131,1975303142599947],[67141632,17592186699784,-11272302768733624,-11272301100150310],[67141632,17592253186052,3950600725236988,3950609314173172],[67141632,17592253186056,-7321699779192130,-7321694050281650],[67141632,17592253317132,45089206464001460,45089209011534280],[67141632,17592253841412,1975301877105131,1975303142599947],[67141632,17592253841416,-11272302768733624,-11272301100150310],[67141632,17592454610948,24519905280236082,24519907477236870],[67141632,17592454610952,-11272303079253853,-11272300789630083],[67141632,17592521752580,24519905280236082,24519907477236870],[67141632,17592521752584,-11272303079253853,-11272300789630083],[67141632,17593259917316,-3950609314173172,-3950600725236988],[67141632,17593259917320,11272300234269956,11272303634613982],[67141632,17593327058948,-3950609314173172,-3950600725236988],[67141632,17593327058952,11272300234269956,11272303634613982],[67141632,17593528221700,-26495209992202640,-26495207784975390],[67141632,17593595363332,-26495209992202640,-26495207784975390],[67141632,140737488355332,-7321699779192130,-7321694050281650],[67141632,140737555496964,-7321699779192130,-7321694050281650],[67141632,140738562228228,11272300234269956,11272303634613982],[67141632,140738629369860,11272300234269956,11272303634613982],[67141632,140738830532612,22544603251967752,22544604485800118],[67141632,140738897674244,22544603251967752,22544604485800118],[67141632,158330748141572,45089206464001460,45089209011534280],[67141632,158330815283204,45089206464001460,45089209011534280],[67141637,32769,8599101567032212,8599107896967374],[67141637,32772,-8599107896967374,-8599101567032212],[67141637,131074,1975301912872117,1975303106832961],[67141637,131079,1975301912872117,1975303106832961],[67141637,131080,-1975303106832961,-1975301912872117],[67141637,131085,-15222908177460183,-15222905730833912],[67141637,163849,39742811597483621,39742815068283432],[67141637,163852,-26495210148454004,-26495207628724032],[67141637,688129,13247603821617226,13247605066971786],[67141637,688132,-13247605066971786,-13247603821617226],[67141637,67108865,-8599107896967374,-8599101567032212],[67141637,67108868,8599101567032212,8599107896967374],[67141637,67239945,-26495210148454004,-26495207628724032],[67141637,67239948,39742811597483621,39742815068283432],[67141637,67272706,1975301912872117,1975303106832961],[67141637,67272711,1975301912872117,1975303106832961],[67141637,67272712,-15222908177460183,-15222905730833912],[67141637,67272717,-1975303106832961,-1975301912872117],[67141637,67764225,-13247605066971786,-13247603821617226],[67141637,67764228,13247603821617226,13247605066971786],[67141637,268599297,13247603827010127,13247605061578886],[67141637,268599300,-13247605061578886,-13247603827010127],[67141637,335675393,-13247605061578886,-13247603827010127],[67141637,335675396,13247603827010127,13247605061578886],[67141637,1073741826,4648499082464426,4648500342125002],[67141637,1073741831,4648499082464426,4648500342125002],[67141637,1073741832,-4648500342125002,-4648499082464426],[67141637,1073741837,-4648500342125002,-4648499082464426],[67141637,1073905665,-8599107896967374,-8599101567032212],[67141637,1073905668,8599101567032212,8599107896967374],[67141637,1140883458,4648499082464426,4648500342125002],[67141637,1140883463,4648499082464426,4648500342125002],[67141637,1140883464,-4648500342125002,-4648499082464426],[67141637,1140883469,-4648500342125002,-4648499082464426],[67141637,1140981761,8599101567032212,8599107896967374],[67141637,1140981764,-8599107896967374,-8599101567032212],[67141637,1342210049,-1975303127852212,-1975301891852867],[67141637,1342210052,1975301891852867,1975303127852212],[67141637,1409286145,1975301891852867,1975303127852212],[67141637,1409286148,-1975303127852212,-1975301891852867],[67141637,17592186208257,13247603817961795,13247605070627222],[67141637,17592186208260,-13247605070627222,-13247603817961795],[67141637,17592253284353,-13247605070627222,-13247603817961795],[67141637,17592253284356,13247603817961795,13247605070627222],[67141637,17593259819009,-1975303136765642,-1975301882939439],[67141637,17593259819012,1975301882939439,1975303136765642],[67141637,17593326895105,1975301882939439,1975303136765642],[67141637,17593326895108,-1975303136765642,-1975301882939439],[67141637,140738562129921,13247603786059568,13247605102529449],[67141637,140738562129924,-13247605102529449,-13247603786059568],[67141637,140738629206017,-13247605102529449,-13247603786059568],[67141637,140738629206020,13247603786059568,13247605102529449],[67141638,131073,-1975303106832961,-1975301912872117],[67141638,131079,-1975303106832961,-1975301912872117],[67141638,131080,-53688314836179204,-53688310103356116],[67141638,131086,-697899269935994,-697890115243256],[67141638,163850,-52990419988112860,-52990415566243210],[67141638,67239948,-52990419988112860,-52990415566243210],[67141638,67272705,-1975303106832961,-1975301912872117],[67141638,67272711,-1975303106832961,-1975301912872117],[67141638,67272712,-697899269935994,-697890115243256],[67141638,67272718,-53688314836179204,-53688310103356116],[67141638,1073741825,-4648500342125002,-4648499082464426],[67141638,1073741831,-4648500342125002,-4648499082464426],[67141638,1073741832,-1975303106832961,-1975301912872117],[67141638,1073741838,-1975303106832961,-1975301912872117],[67141638,1140883457,-4648500342125002,-4648499082464426],[67141638,1140883463,-4648500342125002,-4648499082464426],[67141638,1140883464,-1975303106832961,-1975301912872117],[67141638,1140883470,-1975303106832961,-1975301912872117],[67141641,131074,6623801151062805,6623803293231701],[67141641,131076,-3950609278673694,-3950600760736484],[67141641,131083,6623801151062805,6623803293231701],[67141641,131085,49039810709439166,49039814805506726],[67141641,163845,-52990419988112860,-52990415566243210],[67141641,67239948,-52990419988112860,-52990415566243210],[67141641,67272706,6623801151062805,6623803293231701],[67141641,67272708,49039810709439166,49039814805506726],[67141641,67272715,6623801151062805,6623803293231701],[67141641,67272717,-3950609278673694,-3950600760736484],[67141641,1073741828,6623801151062805,6623803293231701],[67141641,1073741837,6623801151062805,6623803293231701],[67141641,1140883460,6623801151062805,6623803293231701],[67141641,1140883469,6623801151062805,6623803293231701],[67141642,0,22544602935338568,22544604802429304],[67141642,10,11272301467669284,11272302401214652],[67141642,32770,-4648502525987800,-4648496898601629],[67141642,32776,15920798832463209,15920804461010156],[67141642,131073,-6623803293231701,-6623801151062805],[67141642,131076,8599103034002244,8599106429997343],[67141642,131083,-6623803293231701,-6623801151062805],[67141642,131086,6623801151062805,6623803293231701],[67141642,131136,-6623803341365525,-6623801102928978],[67141642,131146,-6623803341365525,-6623801102928978],[67141642,131200,6623801102928978,6623803341365525],[67141642,131210,6623801102928978,6623803341365525],[67141642,163846,51015113065152905,51015117469498084],[67141642,163852,-49039814950883308,-49039810564062600],[67141642,688130,-17896105125322940,-17896103187855503],[67141642,688136,17896103187855503,17896105125322940],[67141642,67108866,15920798832463209,15920804461010156],[67141642,67108872,-4648502525987800,-4648496898601629],[67141642,67141632,11272301467669284,11272302401214652],[67141642,67141642,22544602935338568,22544604802429304],[67141642,67239942,-49039814950883308,-49039810564062600],[67141642,67239948,51015113065152905,51015117469498084],[67141642,67272705,-6623803293231701,-6623801151062805],[67141642,67272708,6623801151062805,6623803293231701],[67141642,67272715,-6623803293231701,-6623801151062805],[67141642,67272718,8599103034002244,8599106429997343],[67141642,67272768,-6623803341365525,-6623801102928978],[67141642,67272778,-6623803341365525,-6623801102928978],[67141642,67272832,6623801102928978,6623803341365525],[67141642,67272842,6623801102928978,6623803341365525],[67141642,67764226,17896103187855503,17896105125322940],[67141642,67764232,-17896105125322940,-17896103187855503],[67141642,268599298,-6623803341365525,-6623801102928978],[67141642,268599304,6623801102928978,6623803341365525],[67141642,335675394,6623801102928978,6623803341365525],[67141642,335675400,-6623803341365525,-6623801102928978],[67141642,1073905666,17896101969228851,17896106343949595],[67141642,1073905672,-17896106343949595,-17896101969228851],[67141642,1140981762,-17896106343949595,-17896101969228851],[67141642,1140981768,17896101969228851,17896106343949595],[67141642,17592186208258,-24519907503744101,-24519905253728852],[67141642,17592186208264,24519905253728852,24519907503744101],[67141642,17592253284354,24519905253728852,24519907503744101],[67141642,17592253284360,-24519907503744101,-24519905253728852],[67141644,0,33237389689794910,33237395667510356],[67141644,12,20569296483878353,20569306234184452],[67141644,32772,-7901214439889918,-7901205638930376],[67141644,32776,20569293250811822,20569309467250933],[67141644,131073,-7321700242729086,-7321693586744675],[67141644,131074,47064508655028107,47064511840212707],[67141644,131085,-47064511840212707,-47064508655028107],[67141644,131086,-3950608814469977,-3950601224940198],[67141644,131200,47064508673192612,47064511822048211],[67141644,131212,-3950608765320955,-3950601274089200],[67141644,163845,39742811597483621,39742815068283432],[67141644,163850,51015113065152905,51015117469498084],[67141644,163976,51015113096137411,51015117438513567],[67141644,655372,22544602318599624,22544605419168246],[67141644,688132,-31143710097437046,-31143707104330412],[67141644,688136,8599101685162166,8599107778837422],[67141644,67108868,20569293250811822,20569309467250933],[67141644,67108872,-7901214439889918,-7901205638930376],[67141644,67141632,20569296483878353,20569306234184452],[67141644,67141644,33237389689794910,33237395667510356],[67141644,67239942,51015113065152905,51015117469498084],[67141644,67239945,39742811597483621,39742815068283432],[67141644,67240068,51015113096137411,51015117438513567],[67141644,67272705,-47064511840212707,-47064508655028107],[67141644,67272706,-3950608814469977,-3950601224940198],[67141644,67272717,-7321700242729086,-7321693586744675],[67141644,67272718,47064508655028107,47064511840212707],[67141644,67272832,-3950608765320955,-3950601274089200],[67141644,67272844,47064508673192612,47064511822048211],[67141644,67764228,8599101685162166,8599107778837422],[67141644,67764232,-31143710097437046,-31143707104330412],[67141644,67796992,22544602318599624,22544605419168246],[67141644,268566540,28470509674673669,28470513122209439],[67141644,268599300,-19871408304404039,-19871405028479484],[67141644,268599304,-8599108093729955,-8599101370269630],[67141644,335675396,-8599108093729955,-8599101370269630],[67141644,335675400,-19871408304404039,-19871405028479484],[67141644,335708160,28470509674673669,28470513122209439],[67141644,1073741825,-1975303106832961,-1975301912872117],[67141644,1073741826,1975301912872117,1975303106832961],[67141644,1073741837,-1975303106832961,-1975301912872117],[67141644,1073741838,1975301912872117,1975303106832961],[67141644,1073741952,1975301917270118,1975303102434961],[67141644,1073741964,1975301917270118,1975303102434961],[67141644,1073872896,-35792211241229472,-35792205385127423],[67141644,1073872908,56941019780492396,56941025813273826],[67141644,1073905668,-13247609394938084,-13247599493650961],[67141644,1073905672,-79485631987828172,-79485621343705900],[67141644,1140883457,-1975303106832961,-1975301912872117],[67141644,1140883458,1975301912872117,1975303106832961],[67141644,1140883469,-1975303106832961,-1975301912872117],[67141644,1140883470,1975301912872117,1975303106832961],[67141644,1140883584,1975301917270118,1975303102434961],[67141644,1140883596,1975301917270118,1975303102434961],[67141644,1140981764,-79485631987828172,-79485621343705900],[67141644,1140981768,-13247609394938084,-13247599493650961],[67141644,1141014528,56941019780492396,56941025813273826],[67141644,1141014540,-35792211241229472,-35792205385127423],[67141644,1342210052,1975301917236486,1975303102468593],[67141644,1342210056,-1975303102468593,-1975301917236486],[67141644,1409286148,-1975303102468593,-1975301917236486],[67141644,1409286152,1975301917236486,1975303102468593],[67141644,17592186175500,49039811112013498,49039814402932400],[67141644,17592186208260,-37767512400416486,-37767509245645481],[67141644,17592186208264,-11272305157286919,-11272298711597012],[67141644,17592253284356,-11272305157286919,-11272298711597012],[67141644,17592253284360,-37767512400416486,-37767509245645481],[67141644,17592253317120,49039811112013498,49039814402932400],[67141644,17593259819012,1975301908323058,1975303111382023],[67141644,17593259819016,-1975303111382023,-1975301908323058],[67141644,17593326895108,-1975303111382023,-1975301908323058],[67141644,17593326895112,1975301908323058,1975303111382023],[67141644,140738562129924,-13247605075396206,-13247603813192808],[67141644,140738562129928,13247603813192808,13247605075396206],[67141644,140738629206020,13247603813192808,13247605075396206],[67141644,140738629206024,-13247605075396206,-13247603813192808],[67141704,131074,6623801102928978,6623803341365525],[67141704,131146,6623801102928978,6623803341365525],[67141704,131200,24519905258499972,24519907498972975],[67141704,131272,24519905258499972,24519907498972975],[67141704,67272706,6623801102928978,6623803341365525],[67141704,67272778,6623801102928978,6623803341365525],[67141704,67272832,24519905258499972,24519907498972975],[67141704,67272904,24519905258499972,24519907498972975],[67141762,131080,-31143710514241570,-31143706687525880],[67141762,131210,-31143710514241570,-31143706687525880],[67141762,67272712,-31143710514241570,-31143706687525880],[67141762,67272842,-31143710514241570,-31143706687525880],[67141764,131080,-53688314809080322,-53688310130455008],[67141764,131212,-697899214028262,-697890171151008],[67141764,163976,-52990419959304000,-52990415595052060],[67141764,655492,26495207784975390,26495209992202640],[67141764,688256,-26495209992202640,-26495207784975390],[67141764,67239948,-52990419959304000,-52990415595052060],[67141764,67272712,-697899214028262,-697890171151008],[67141764,67272844,-53688314809080322,-53688310130455008],[67141764,67764228,-26495209992202640,-26495207784975390],[67141764,67796992,26495207784975390,26495209992202640],[67141764,1073741832,-1975303102434961,-1975301917270118],[67141764,1073741964,-1975303102434961,-1975301917270118],[67141764,1140883464,-1975303102434961,-1975301917270118],[67141764,1140883596,-1975303102434961,-1975301917270118],[67141768,0,22544602948688426,22544604789079442],[67141768,136,11272301474344213,11272302394539721],[67141768,32776,15920798874182437,15920804419290919],[67141768,32896,-4648502481944947,-4648496942644475],[67141768,131074,24519905258499972,24519907498972975],[67141768,131076,8599103045112288,8599106418887301],[67141768,131136,-24519907498972975,-24519905258499972],[67141768,131210,24519905258499972,24519907498972975],[67141768,131212,6623801159997192,6623803284297315],[67141768,131272,-24519907498972975,-24519905258499972],[67141768,132096,-6623803284297315,-6623801159997192],[67141768,132232,-6623803284297315,-6623801159997192],[67141768,163852,-49039814917723134,-49039810597222762],[67141768,163972,51015113096137411,51015117438513567],[67141768,655360,-47064513301573545,-47064507193667275],[67141768,655496,-49039814989147174,-49039810525798726],[67141768,688136,-6623804322724415,-6623800121570091],[67141768,688256,8599102661848405,8599106802151181],[67141768,67108872,-4648502481944947,-4648496942644475],[67141768,67108992,15920798874182437,15920804419290919],[67141768,67141632,11272301474344213,11272302394539721],[67141768,67141768,22544602948688426,22544604789079442],[67141768,67239948,51015113096137411,51015117438513567],[67141768,67240068,-49039814917723134,-49039810597222762],[67141768,67272706,24519905258499972,24519907498972975],[67141768,67272708,6623801159997192,6623803284297315],[67141768,67272768,-24519907498972975,-24519905258499972],[67141768,67272842,24519905258499972,24519907498972975],[67141768,67272844,8599103045112288,8599106418887301],[67141768,67272904,-24519907498972975,-24519905258499972],[67141768,67273728,-6623803284297315,-6623801159997192],[67141768,67273864,-6623803284297315,-6623801159997192],[67141768,67764232,8599102661848405,8599106802151181],[67141768,67764352,-6623804322724415,-6623800121570091],[67141768,67796992,-49039814989147174,-49039810525798726],[67141768,67797128,-47064513301573545,-47064507193667275],[67141768,268599304,6623801098016984,6623803346277521],[67141768,268599424,-6623803346277521,-6623801098016984],[67141768,335675400,-6623803346277521,-6623801098016984],[67141768,335675520,6623801098016984,6623803346277521],[67141768,1073905672,-17896106304406015,-17896102008772423],[67141768,1073905792,17896102008772423,17896106304406015],[67141768,1140981768,17896102008772423,17896106304406015],[67141768,1140981888,-17896106304406015,-17896102008772423],[67141768,17592186208264,24519905262899363,24519907494573587],[67141768,17592186208384,-24519907494573587,-24519905262899363],[67141768,17592253284360,-24519907494573587,-24519905262899363],[67141768,17592253284480,24519905262899363,24519907494573587],[67142664,131200,6623801159997192,6623803284297315],[67142664,132232,6623801159997192,6623803284297315],[67142664,67272832,6623801159997192,6623803284297315],[67142664,67273864,6623801159997192,6623803284297315],[67239936,6,11272301467669284,11272302401214652],[67239936,10,-1758883548,1758883552],[67239936,12,19173508834098980,19173515113605268],[67239936,130,11272301423813928,11272302445070008],[67239936,132,11272301474344213,11272302394539721],[67239936,136,19173508473961242,19173515473743010],[67239936,32770,-15920803465251079,-15920799828222285],[67239936,32772,-63683210088709754,-63683203085183716],[67239936,32776,-120352160799604924,-120352113794384070],[67239936,32896,6623798624404334,6623805819890177],[67239936,524290,-15920803552528152,-15920799740945212],[67239936,524292,1277404455586225,1277411178939584],[67239936,524296,-66663850285081034,-66663799369372644],[67239936,524416,-63683211765177830,-63683201408715624],[67239936,1048584,4648498045480100,4648501379109325],[67239936,1048704,-9296999886451704,-9296998962727152],[67239936,67239942,11272301467669284,11272302401214652],[67239936,67239946,-1758883548,1758883552],[67239936,67239948,19173508834098980,19173515113605268],[67239936,67240066,11272301423813928,11272302445070008],[67239936,67240068,11272301474344213,11272302394539721],[67239936,67240072,19173508473961242,19173515473743010],[67239936,67272706,-15920803465251079,-15920799828222285],[67239936,67272708,-63683210088709754,-63683203085183716],[67239936,67272712,-120352160799604924,-120352113794384070],[67239936,67272832,6623798624404334,6623805819890177],[67239936,67764226,-15920803552528152,-15920799740945212],[67239936,67764228,1277404455586225,1277411178939584],[67239936,67764232,-66663850285081034,-66663799369372644],[67239936,67764352,-63683211765177830,-63683201408715624],[67239936,68288520,4648498045480100,4648501379109325],[67239936,68288640,-9296999886451704,-9296998962727152],[67239936,134217736,4648498045480103,4648501379109328],[67239936,201457672,4648498045480103,4648501379109328],[67239936,268435458,4648497809818828,4648501614770600],[67239936,268435460,-8599108093729955,-8599101370269630],[67239936,268435464,77936102841789496,77936150681548118],[67239936,268435584,-7901216811716128,-7901203267104184],[67239936,268959880,-3950606388421522,-3950603650988640],[67239936,268992520,42416007508284513,42416013562366883],[67239936,268992640,-4648500367937248,-4648499056652179],[67239936,270008328,13247603826875223,13247605061713792],[67239936,270008448,11272301159430178,11272302709453758],[67239936,335675394,4648497809818828,4648501614770600],[67239936,335675396,-8599108093729955,-8599101370269630],[67239936,335675400,77936102841789496,77936150681548118],[67239936,335675520,-7901216811716128,-7901203267104184],[67239936,336199816,-3950606388421522,-3950603650988640],[67239936,336232456,42416007508284513,42416013562366883],[67239936,336232576,-4648500367937248,-4648499056652179],[67239936,337248264,13247603826875223,13247605061713792],[67239936,337248384,11272301159430178,11272302709453758],[67239936,403177480,-22544604485915178,-22544603251852693],[67239936,403177600,-1975303134066536,-1975301885638544],[67239936,470417416,-22544604485915178,-22544603251852693],[67239936,470417536,-1975303134066536,-1975301885638544],[67239936,1073741826,4648497893199929,4648501531389499],[67239936,1073741828,-7901214462754538,-7901205616065770],[67239936,1073741832,126278022677218062,126278066975886174],[67239936,1073741952,-8599108332258679,-8599101131740910],[67239936,1073774604,-3950606212356198,-3950603827053960],[67239936,1074298884,-1975303102434961,-1975301917270118],[67239936,1074298888,57638914684799306,57638920294146182],[67239936,1140981762,4648497893199929,4648501531389499],[67239936,1140981764,-7901214462754538,-7901205616065770],[67239936,1140981768,126278022677218062,126278066975886174],[67239936,1140981888,-8599108332258679,-8599101131740910],[67239936,1141014540,-3950606212356198,-3950603827053960],[67239936,1141538820,-1975303102434961,-1975301917270118],[67239936,1141538824,57638914684799306,57638920294146182],[67239936,1342210052,-1975303102468593,-1975301917236486],[67239936,1342210056,-53688314809147586,-53688310130387744],[67239936,1342701576,-33119013675915179,-33119008545557361],[67239936,1342701696,-4648500367937249,-4648499056652180],[67239936,1409449988,-1975303102468593,-1975301917236486],[67239936,1409449992,-53688314809147586,-53688310130387744],[67239936,1409941512,-33119013675915179,-33119008545557361],[67239936,1409941632,-4648500367937249,-4648499056652180],[67239936,17592186044418,1975300580344758,1975304439360326],[67239936,17592186044420,-11272305157286919,-11272298711597012],[67239936,17592186044424,-187713876827545928,-187713836806076040],[67239936,17592186044544,-11272305547187129,-11272298321696800],[67239936,17592186601480,13247602507378184,13247606381210832],[67239936,17592253284354,1975300580344758,1975304439360326],[67239936,17592253284356,-11272305157286919,-11272298711597012],[67239936,17592253284360,-187713876827545928,-187713836806076040],[67239936,17592253284480,-11272305547187129,-11272298321696800],[67239936,17592253841416,13247602507378184,13247606381210832],[67239936,17592454512648,-13247606381210832,-13247602507378184],[67239936,17592455004168,-35792211106366460,-35792205519990416],[67239936,17592455004288,-1975303200228061,-1975301819477018],[67239936,17592521752584,-13247606381210832,-13247602507378184],[67239936,17592522244104,-35792211106366460,-35792205519990416],[67239936,17592522244224,-1975303200228061,-1975301819477018],[67239936,17593259819012,-1975303111382023,-1975301908323058],[67239936,17593259819016,-35792210707429288,-35792205918927604],[67239936,17593260310536,-13247606381210832,-13247602507378184],[67239936,17593327058948,-1975303111382023,-1975301908323058],[67239936,17593327058952,-35792210707429288,-35792205918927604],[67239936,17593327550472,-13247606381210832,-13247602507378184],[67239936,17593528221704,13247602507378184,13247606381210832],[67239936,17593595461640,13247602507378184,13247606381210832],[67239936,35184372088840,-11272305547187129,-11272298321696800],[67239936,35184439328776,-11272305547187129,-11272298321696800],[67239936,35184641048584,-1975303200228061,-1975301819477018],[67239936,35184641048704,13247603750907644,13247605137681374],[67239936,35184708288520,-1975303200228061,-1975301819477018],[67239936,35184708288640,13247603750907644,13247605137681374],[67239936,140737488355336,-11272305157286919,-11272298711597012],[67239936,140737555595272,-11272305157286919,-11272298711597012],[67239936,140738562129924,13247603813192808,13247605075396206],[67239936,140738562129928,-1975303111382023,-1975301908323058],[67239936,140738629369860,13247603813192808,13247605075396206],[67239936,140738629369864,-1975303111382023,-1975301908323058],[67239936,4611686018427387912,1975300580344758,1975304439360326],[67239936,4611686018494627848,1975300580344758,1975304439360326],[67239939,131073,-4648502006549417,-4648497418040009],[67239939,131074,4648497418040009,4648502006549417],[67239939,131085,24519905262460552,24519907495012400],[67239939,131086,-24519907495012400,-24519905262460552],[67239939,67108865,4648497418040009,4648502006549417],[67239939,67108866,-4648502006549417,-4648497418040009],[67239939,67108877,-24519907495012400,-24519905262460552],[67239939,67108878,24519905262460552,24519907495012400],[67239941,131073,-3950609278673694,-3950600760736484],[67239941,131076,3950600760736484,3950609278673694],[67239941,131083,6623801151062805,6623803293231701],[67239941,131086,-6623803293231701,-6623801151062805],[67239941,67108865,3950600760736484,3950609278673694],[67239941,67108868,-3950609278673694,-3950600760736484],[67239941,67108875,-6623803293231701,-6623801151062805],[67239941,67108878,6623801151062805,6623803293231701],[67239941,1073905665,6623801151062805,6623803293231701],[67239941,1073905668,-6623803293231701,-6623801151062805],[67239941,1140883457,-6623803293231701,-6623801151062805],[67239941,1140883460,6623801151062805,6623803293231701],[67239942,0,22544602935338568,22544604802429304],[67239942,6,11272301467669284,11272302401214652],[67239942,32776,8599103034002244,8599106429997343],[67239942,32782,6623801151062805,6623803293231701],[67239942,131074,-4648502525987800,-4648496898601629],[67239942,131076,15920798832463209,15920804461010156],[67239942,131083,17896101969228851,17896106343949595],[67239942,131085,-17896106343949595,-17896101969228851],[67239942,131146,-6623803341365525,-6623801102928978],[67239942,131148,6623801102928978,6623803341365525],[67239942,131210,-17896105125322940,-17896103187855503],[67239942,131212,17896103187855503,17896105125322940],[67239942,163850,51015113065152905,51015117469498084],[67239942,163852,-49039814950883308,-49039810564062600],[67239942,524296,6623801102928978,6623803341365525],[67239942,524302,6623801102928978,6623803341365525],[67239942,67108866,15920798832463209,15920804461010156],[67239942,67108868,-4648502525987800,-4648496898601629],[67239942,67108875,-17896106343949595,-17896101969228851],[67239942,67108877,17896101969228851,17896106343949595],[67239942,67108938,6623801102928978,6623803341365525],[67239942,67108940,-6623803341365525,-6623801102928978],[67239942,67109002,17896103187855503,17896105125322940],[67239942,67109004,-17896105125322940,-17896103187855503],[67239942,67141642,-49039814950883308,-49039810564062600],[67239942,67141644,51015113065152905,51015117469498084],[67239942,67239936,11272301467669284,11272302401214652],[67239942,67239942,22544602935338568,22544604802429304],[67239942,67272712,6623801151062805,6623803293231701],[67239942,67272718,8599103034002244,8599106429997343],[67239942,67764232,6623801102928978,6623803341365525],[67239942,67764238,6623801102928978,6623803341365525],[67239942,268435464,-6623803341365525,-6623801102928978],[67239942,268435470,-6623803341365525,-6623801102928978],[67239942,335675400,-6623803341365525,-6623801102928978],[67239942,335675406,-6623803341365525,-6623801102928978],[67239942,1073741832,-6623803293231701,-6623801151062805],[67239942,1073741838,-6623803293231701,-6623801151062805],[67239942,1140981768,-6623803293231701,-6623801151062805],[67239942,1140981774,-6623803293231701,-6623801151062805],[67239942,17592186044424,-24519907503744101,-24519905253728852],[67239942,17592186044430,-24519907503744101,-24519905253728852],[67239942,17592253284360,-24519907503744101,-24519905253728852],[67239942,17592253284366,-24519907503744101,-24519905253728852],[67239945,32770,-4648500342125002,-4648499082464426],[67239945,32772,-1975303106832961,-1975301912872117],[67239945,32779,-4648500342125002,-4648499082464426],[67239945,32781,-15222908177460183,-15222905730833912],[67239945,131073,8599101567032212,8599107896967374],[67239945,131079,-8599107896967374,-8599101567032212],[67239945,131080,-8599107896967374,-8599101567032212],[67239945,131086,8599101567032212,8599107896967374],[67239945,131139,-4648500364875210,-4648499059714221],[67239945,131146,4648499059714221,4648500364875210],[67239945,131203,6623801107293350,6623803337001160],[67239945,131205,-26495209977752878,-26495207799425147],[67239945,131210,-6623803337001160,-6623801107293350],[67239945,131212,26495207799425147,26495209977752878],[67239945,163845,39742811597483621,39742815068283432],[67239945,163852,-26495210148454004,-26495207628724032],[67239945,524290,-4648500367050864,-4648499057538562],[67239945,524292,-1975303130040923,-1975301889664154],[67239945,524299,-4648500367050864,-4648499057538562],[67239945,524301,-1975303130040923,-1975301889664154],[67239945,67108865,-8599107896967374,-8599101567032212],[67239945,67108871,8599101567032212,8599107896967374],[67239945,67108872,8599101567032212,8599107896967374],[67239945,67108878,-8599107896967374,-8599101567032212],[67239945,67108931,4648499059714221,4648500364875210],[67239945,67108938,-4648500364875210,-4648499059714221],[67239945,67108995,-6623803337001160,-6623801107293350],[67239945,67108997,26495207799425147,26495209977752878],[67239945,67109002,6623801107293350,6623803337001160],[67239945,67109004,-26495209977752878,-26495207799425147],[67239945,67141637,-26495210148454004,-26495207628724032],[67239945,67141644,39742811597483621,39742815068283432],[67239945,67272706,-4648500342125002,-4648499082464426],[67239945,67272708,-15222908177460183,-15222905730833912],[67239945,67272715,-4648500342125002,-4648499082464426],[67239945,67272717,-1975303106832961,-1975301912872117],[67239945,67764226,-4648500367050864,-4648499057538562],[67239945,67764228,-1975303130040923,-1975301889664154],[67239945,67764235,-4648500367050864,-4648499057538562],[67239945,67764237,-1975303130040923,-1975301889664154],[67239945,268435458,4648499057538562,4648500367050864],[67239945,268435460,1975301889664154,1975303130040923],[67239945,268435467,4648499057538562,4648500367050864],[67239945,268435469,1975301889664154,1975303130040923],[67239945,335675394,4648499057538562,4648500367050864],[67239945,335675396,1975301889664154,1975303130040923],[67239945,335675403,4648499057538562,4648500367050864],[67239945,335675405,1975301889664154,1975303130040923],[67239945,1073741826,4648499082464426,4648500342125002],[67239945,1073741828,1975301912872117,1975303106832961],[67239945,1073741835,4648499082464426,4648500342125002],[67239945,1073741837,1975301912872117,1975303106832961],[67239945,1140981762,4648499082464426,4648500342125002],[67239945,1140981764,1975301912872117,1975303106832961],[67239945,1140981771,4648499082464426,4648500342125002],[67239945,1140981773,1975301912872117,1975303106832961],[67239945,17592186044418,1975301853739043,1975303165966039],[67239945,17592186044420,22544603247468479,22544604490299392],[67239945,17592186044427,1975301853739043,1975303165966039],[67239945,17592186044429,22544603247468479,22544604490299392],[67239945,17592253284354,1975301853739043,1975303165966039],[67239945,17592253284356,22544603247468479,22544604490299392],[67239945,17592253284363,1975301853739043,1975303165966039],[67239945,17592253284365,22544603247468479,22544604490299392],[67239946,10,-1758883548,1758883552],[67239946,32769,4648499082464426,4648500342125002],[67239946,32772,-4648500342125002,-4648499082464426],[67239946,32779,4648499082464426,4648500342125002],[67239946,32782,-4648500342125002,-4648499082464426],[67239946,32832,4648499057538562,4648500367050864],[67239946,32842,4648499057538562,4648500367050864],[67239946,32896,-4648500367050864,-4648499057538562],[67239946,32906,-4648500367050864,-4648499057538562],[67239946,131074,-118376856345199404,-118376813229084520],[67239946,131079,-19871408238006792,-19871405094876730],[67239946,131080,118376814987968068,118376854586315852],[67239946,131085,19871405094876730,19871408238006792],[67239946,131139,6623801107293350,6623803337001160],[67239946,131142,-6623803337001160,-6623801107293350],[67239946,131145,-6623803337001160,-6623801107293350],[67239946,131148,6623801107293350,6623803337001160],[67239946,131203,-6623803337001160,-6623801107293350],[67239946,131206,6623801107293350,6623803337001160],[67239946,131209,6623801107293350,6623803337001160],[67239946,131212,-6623803337001160,-6623801107293350],[67239946,131266,-19871408468202250,-19871404864681274],[67239946,131272,19871404864681274,19871408468202250],[67239946,524289,4648499057538562,4648500367050864],[67239946,524292,-4648500367050864,-4648499057538562],[67239946,524299,4648499057538562,4648500367050864],[67239946,524302,-4648500367050864,-4648499057538562],[67239946,524352,4648499019397906,4648500405191522],[67239946,524362,4648499019397906,4648500405191522],[67239946,524416,-4648500405191522,-4648499019397906],[67239946,524426,-4648500405191522,-4648499019397906],[67239946,688130,6623801107293350,6623803337001160],[67239946,688136,-6623803337001160,-6623801107293350],[67239946,67108866,118376814987968068,118376854586315852],[67239946,67108871,19871405094876730,19871408238006792],[67239946,67108872,-118376856345199404,-118376813229084520],[67239946,67108877,-19871408238006792,-19871405094876730],[67239946,67108931,-6623803337001160,-6623801107293350],[67239946,67108934,6623801107293350,6623803337001160],[67239946,67108937,6623801107293350,6623803337001160],[67239946,67108940,-6623803337001160,-6623801107293350],[67239946,67108995,6623801107293350,6623803337001160],[67239946,67108998,-6623803337001160,-6623801107293350],[67239946,67109001,-6623803337001160,-6623801107293350],[67239946,67109004,6623801107293350,6623803337001160],[67239946,67109058,19871404864681274,19871408468202250],[67239946,67109064,-19871408468202250,-19871404864681274],[67239946,67239936,-1758883548,1758883552],[67239946,67272705,4648499082464426,4648500342125002],[67239946,67272708,-4648500342125002,-4648499082464426],[67239946,67272715,4648499082464426,4648500342125002],[67239946,67272718,-4648500342125002,-4648499082464426],[67239946,67272768,4648499057538562,4648500367050864],[67239946,67272778,4648499057538562,4648500367050864],[67239946,67272832,-4648500367050864,-4648499057538562],[67239946,67272842,-4648500367050864,-4648499057538562],[67239946,67665922,-6623803337001160,-6623801107293350],[67239946,67665928,6623801107293350,6623803337001160],[67239946,67764225,4648499057538562,4648500367050864],[67239946,67764228,-4648500367050864,-4648499057538562],[67239946,67764235,4648499057538562,4648500367050864],[67239946,67764238,-4648500367050864,-4648499057538562],[67239946,67764288,4648499019397906,4648500405191522],[67239946,67764298,4648499019397906,4648500405191522],[67239946,67764352,-4648500405191522,-4648499019397906],[67239946,67764362,-4648500405191522,-4648499019397906],[67239946,268435457,-4648500367050864,-4648499057538562],[67239946,268435460,4648499057538562,4648500367050864],[67239946,268435467,-4648500367050864,-4648499057538562],[67239946,268435470,4648499057538562,4648500367050864],[67239946,268435520,-4648500405191522,-4648499019397906],[67239946,268435530,-4648500405191522,-4648499019397906],[67239946,268435584,4648499019397906,4648500405191522],[67239946,268435594,4648499019397906,4648500405191522],[67239946,268599298,-6623803337001160,-6623801107293350],[67239946,268599304,6623801107293350,6623803337001160],[67239946,269090818,-19871408468202250,-19871404864681274],[67239946,269090824,19871404864681274,19871408468202250],[67239946,335577090,6623801107293350,6623803337001160],[67239946,335577096,-6623803337001160,-6623801107293350],[67239946,335675393,-4648500367050864,-4648499057538562],[67239946,335675396,4648499057538562,4648500367050864],[67239946,335675403,-4648500367050864,-4648499057538562],[67239946,335675406,4648499057538562,4648500367050864],[67239946,335675456,-4648500405191522,-4648499019397906],[67239946,335675466,-4648500405191522,-4648499019397906],[67239946,335675520,4648499019397906,4648500405191522],[67239946,335675530,4648499019397906,4648500405191522],[67239946,336068610,19871404864681274,19871408468202250],[67239946,336068616,-19871408468202250,-19871404864681274],[67239946,1073741825,-4648500342125002,-4648499082464426],[67239946,1073741828,4648499082464426,4648500342125002],[67239946,1073741835,-4648500342125002,-4648499082464426],[67239946,1073741838,4648499082464426,4648500342125002],[67239946,1073741888,-4648500367050864,-4648499057538562],[67239946,1073741898,-4648500367050864,-4648499057538562],[67239946,1073741952,4648499057538562,4648500367050864],[67239946,1073741962,4648499057538562,4648500367050864],[67239946,1073905666,-19871408238006792,-19871405094876730],[67239946,1073905672,19871405094876730,19871408238006792],[67239946,1074397186,-6623803337001160,-6623801107293350],[67239946,1074397192,6623801107293350,6623803337001160],[67239946,1140883458,19871405094876730,19871408238006792],[67239946,1140883464,-19871408238006792,-19871405094876730],[67239946,1140981761,-4648500342125002,-4648499082464426],[67239946,1140981764,4648499082464426,4648500342125002],[67239946,1140981771,-4648500342125002,-4648499082464426],[67239946,1140981774,4648499082464426,4648500342125002],[67239946,1140981824,-4648500367050864,-4648499057538562],[67239946,1140981834,-4648500367050864,-4648499057538562],[67239946,1140981888,4648499057538562,4648500367050864],[67239946,1140981898,4648499057538562,4648500367050864],[67239946,1141374978,6623801107293350,6623803337001160],[67239946,1141374984,-6623803337001160,-6623801107293350],[67239946,1342308354,6623801107293350,6623803337001160],[67239946,1342308360,-6623803337001160,-6623801107293350],[67239946,1409286146,-6623803337001160,-6623801107293350],[67239946,1409286152,6623801107293350,6623803337001160],[67239946,17592186044417,-1975303165966039,-1975301853739043],[67239946,17592186044420,1975301853739043,1975303165966039],[67239946,17592186044427,-1975303165966039,-1975301853739043],[67239946,17592186044430,1975301853739043,1975303165966039],[67239946,17592186044480,-1975303193032786,-1975301826672296],[67239946,17592186044490,-1975303193032786,-1975301826672296],[67239946,17592186044544,1975301826672296,1975303193032786],[67239946,17592186044554,1975301826672296,1975303193032786],[67239946,17592186208258,11272300803168551,11272303065715385],[67239946,17592186208264,-11272303065715385,-11272300803168551],[67239946,17592186699778,11272300730744752,11272303138139186],[67239946,17592186699784,-11272303138139186,-11272300730744752],[67239946,17592253186050,-11272303065715385,-11272300803168551],[67239946,17592253186056,11272300803168551,11272303065715385],[67239946,17592253284353,-1975303165966039,-1975301853739043],[67239946,17592253284356,1975301853739043,1975303165966039],[67239946,17592253284363,-1975303165966039,-1975301853739043],[67239946,17592253284366,1975301853739043,1975303165966039],[67239946,17592253284416,-1975303193032786,-1975301826672296],[67239946,17592253284426,-1975303193032786,-1975301826672296],[67239946,17592253284480,1975301826672296,1975303193032786],[67239946,17592253284490,1975301826672296,1975303193032786],[67239946,17592253677570,-11272303138139186,-11272300730744752],[67239946,17592253677576,11272300730744752,11272303138139186],[67239946,17592454610946,-11272303138139186,-11272300730744752],[67239946,17592454610952,11272300730744752,11272303138139186],[67239946,17592521588738,11272300730744752,11272303138139186],[67239946,17592521588744,-11272303138139186,-11272300730744752],[67239946,17593259917314,-11272303065715385,-11272300803168551],[67239946,17593259917320,11272300803168551,11272303065715385],[67239946,17593326895106,11272300803168551,11272303065715385],[67239946,17593326895112,-11272303065715385,-11272300803168551],[67239948,0,11851812910563952,11851817207666526],[67239948,12,19173508834098980,19173515113605268],[67239948,32769,1975301912872117,1975303106832961],[67239948,32770,-3950606243598603,-3950603795811556],[67239948,32781,15222905730833912,15222908177460183],[67239948,32782,-1975303106832961,-1975301912872117],[67239948,32896,-3950606237024947,-3950603802385214],[67239948,32908,-1975303102434961,-1975301917270118],[67239948,131076,-215060696800522478,-215060645033294693],[67239948,131079,28470509805039004,28470512991844104],[67239948,131080,207738951876696445,207738996127646956],[67239948,131083,-28470512991844104,-28470509805039004],[67239948,131205,26495207799425147,26495209977752878],[67239948,131206,-26495209977752878,-26495207799425147],[67239948,131209,-26495209977752878,-26495207799425147],[67239948,131210,26495207799425147,26495209977752878],[67239948,163845,-52990419988112860,-52990415566243210],[67239948,163846,51015113065152905,51015117469498084],[67239948,163849,39742811597483621,39742815068283432],[67239948,163850,-52990419988112860,-52990415566243210],[67239948,163972,51015113096137411,51015117438513567],[67239948,163976,-52990419959304000,-52990415595052060],[67239948,524289,1975301889664154,1975303130040923],[67239948,524290,-1975303130040923,-1975301889664154],[67239948,524301,1975301889664154,1975303130040923],[67239948,524302,-1975303130040923,-1975301889664154],[67239948,524416,-1975303134066535,-1975301885638543],[67239948,524428,-1975303134066535,-1975301885638543],[67239948,557056,5925906124214463,5925908934900775],[67239948,557068,1975300950242052,1975304069463026],[67239948,688132,10574405079083164,10574409404621503],[67239948,688136,-6623804221568240,-6623800222726267],[67239948,67108868,207738951876696445,207738996127646956],[67239948,67108871,-28470512991844104,-28470509805039004],[67239948,67108872,-215060696800522478,-215060645033294693],[67239948,67108875,28470509805039004,28470512991844104],[67239948,67108997,-26495209977752878,-26495207799425147],[67239948,67108998,26495207799425147,26495209977752878],[67239948,67109001,26495207799425147,26495209977752878],[67239948,67109002,-26495209977752878,-26495207799425147],[67239948,67141637,39742811597483621,39742815068283432],[67239948,67141638,-52990419988112860,-52990415566243210],[67239948,67141641,-52990419988112860,-52990415566243210],[67239948,67141642,51015113065152905,51015117469498084],[67239948,67141764,-52990419959304000,-52990415595052060],[67239948,67141768,51015113096137411,51015117438513567],[67239948,67239936,19173508834098980,19173515113605268],[67239948,67239948,11851812910563952,11851817207666526],[67239948,67272705,15222905730833912,15222908177460183],[67239948,67272706,-1975303106832961,-1975301912872117],[67239948,67272717,1975301912872117,1975303106832961],[67239948,67272718,-3950606243598603,-3950603795811556],[67239948,67272832,-1975303102434961,-1975301917270118],[67239948,67272844,-3950606237024947,-3950603802385214],[67239948,67665924,-6623804221568240,-6623800222726267],[67239948,67665928,10574405079083164,10574409404621503],[67239948,67764225,1975301889664154,1975303130040923],[67239948,67764226,-1975303130040923,-1975301889664154],[67239948,67764237,1975301889664154,1975303130040923],[67239948,67764238,-1975303130040923,-1975301889664154],[67239948,67764352,-1975303134066535,-1975301885638543],[67239948,67764364,-1975303134066535,-1975301885638543],[67239948,67796992,1975300950242052,1975304069463026],[67239948,67797004,5925906124214463,5925908934900775],[67239948,268435457,-1975303130040923,-1975301889664154],[67239948,268435458,1975301889664154,1975303130040923],[67239948,268435469,-1975303130040923,-1975301889664154],[67239948,268435470,1975301889664154,1975303130040923],[67239948,268435584,1975301885638543,1975303134066535],[67239948,268435596,1975301885638543,1975303134066535],[67239948,268468224,-3950606258772122,-3950603780638034],[67239948,268468236,-28470513122209439,-28470509674673669],[67239948,268599300,17896101995938767,17896106317239678],[67239948,268599304,6623801159997192,6623803284297315],[67239948,269090820,-19871408457912797,-19871404874970728],[67239948,269090824,19871404874970728,19871408457912797],[67239948,335577092,6623801159997192,6623803284297315],[67239948,335577096,17896101995938767,17896106317239678],[67239948,335675393,-1975303130040923,-1975301889664154],[67239948,335675394,1975301889664154,1975303130040923],[67239948,335675405,-1975303130040923,-1975301889664154],[67239948,335675406,1975301889664154,1975303130040923],[67239948,335675520,1975301885638543,1975303134066535],[67239948,335675532,1975301885638543,1975303134066535],[67239948,335708160,-28470513122209439,-28470509674673669],[67239948,335708172,-3950606258772122,-3950603780638034],[67239948,336068612,19871404874970728,19871408457912797],[67239948,336068616,-19871408457912797,-19871404874970728],[67239948,1073741825,-1975303106832961,-1975301912872117],[67239948,1073741826,1975301912872117,1975303106832961],[67239948,1073741837,-1975303106832961,-1975301912872117],[67239948,1073741838,1975301912872117,1975303106832961],[67239948,1073741952,1975301917270118,1975303102434961],[67239948,1073741964,1975301917270118,1975303102434961],[67239948,1073774592,-3950606212356198,-3950603827053960],[67239948,1073774604,-30445818197184670,-30445809619403520],[67239948,1073905668,-13247609434184624,-13247599454404401],[67239948,1073905672,39742811571512963,39742815094254094],[67239948,1074397188,-6623803284297315,-6623801159997192],[67239948,1074397192,6623801159997192,6623803284297315],[67239948,1140883460,39742811571512963,39742815094254094],[67239948,1140883464,-13247609434184624,-13247599454404401],[67239948,1140981761,-1975303106832961,-1975301912872117],[67239948,1140981762,1975301912872117,1975303106832961],[67239948,1140981773,-1975303106832961,-1975301912872117],[67239948,1140981774,1975301912872117,1975303106832961],[67239948,1140981888,1975301917270118,1975303102434961],[67239948,1140981900,1975301917270118,1975303102434961],[67239948,1141014528,-30445818197184670,-30445809619403520],[67239948,1141014540,-3950606212356198,-3950603827053960],[67239948,1141374980,6623801159997192,6623803284297315],[67239948,1141374984,-6623803284297315,-6623801159997192],[67239948,1342308356,6623801159997192,6623803284297315],[67239948,1342308360,-6623803284297315,-6623801159997192],[67239948,1409286148,-6623803284297315,-6623801159997192],[67239948,1409286152,6623801159997192,6623803284297315],[67239948,17592186044417,-22544604490299392,-22544603247468479],[67239948,17592186044418,22544603247468479,22544604490299392],[67239948,17592186044429,-22544604490299392,-22544603247468479],[67239948,17592186044430,22544603247468479,22544604490299392],[67239948,17592186044544,22544603251967752,22544604485800118],[67239948,17592186044556,22544603251967752,22544604485800118],[67239948,17592186077184,-45089209011534280,-45089206464001460],[67239948,17592186077196,-49039814402932400,-49039811112013498],[67239948,17592186208260,15222904711107262,15222909197186829],[67239948,17592186208264,-11272303013198523,-11272300855685410],[67239948,17592186699780,11272300789630083,11272303079253853],[67239948,17592186699784,-11272303079253853,-11272300789630083],[67239948,17592253186052,-11272303013198523,-11272300855685410],[67239948,17592253186056,15222904711107262,15222909197186829],[67239948,17592253284353,-22544604490299392,-22544603247468479],[67239948,17592253284354,22544603247468479,22544604490299392],[67239948,17592253284365,-22544604490299392,-22544603247468479],[67239948,17592253284366,22544603247468479,22544604490299392],[67239948,17592253284480,22544603251967752,22544604485800118],[67239948,17592253284492,22544603251967752,22544604485800118],[67239948,17592253317120,-49039814402932400,-49039811112013498],[67239948,17592253317132,-45089209011534280,-45089206464001460],[67239948,17592253677572,-11272303079253853,-11272300789630083],[67239948,17592253677576,11272300789630083,11272303079253853],[67239948,17592454610948,-11272303079253853,-11272300789630083],[67239948,17592454610952,11272300789630083,11272303079253853],[67239948,17592521588740,11272300789630083,11272303079253853],[67239948,17592521588744,-11272303079253853,-11272300789630083],[67239948,17593259917316,-11272303013198523,-11272300855685410],[67239948,17593259917320,11272300855685410,11272303013198523],[67239948,17593326895108,11272300855685410,11272303013198523],[67239948,17593326895112,-11272303013198523,-11272300855685410],[67239951,131073,22544601425886842,22544606311881030],[67239951,131074,-26495210075134854,-26495207702043174],[67239951,131076,3950603763253824,3950606276156332],[67239951,131083,-3950606276156332,-3950603763253824],[67239951,131085,26495207702043174,26495210075134854],[67239951,131086,-22544606311881030,-22544601425886842],[67239951,67108865,-22544606311881030,-22544601425886842],[67239951,67108866,26495207702043174,26495210075134854],[67239951,67108868,-3950606276156332,-3950603763253824],[67239951,67108875,3950603763253824,3950606276156332],[67239951,67108877,-26495210075134854,-26495207702043174],[67239951,67108878,22544601425886842,22544606311881030],[67240002,131074,4648497289301856,4648502135287572],[67240002,131136,-4648502135287572,-4648497289301856],[67240002,131210,-24519907605870334,-24519905151602618],[67240002,131272,24519905151602618,24519907605870334],[67240002,67108866,-4648502135287572,-4648497289301856],[67240002,67108928,4648497289301856,4648502135287572],[67240002,67109002,24519905151602618,24519907605870334],[67240002,67109064,-24519907605870334,-24519905151602618],[67240004,131086,-6623803341365525,-6623801102928978],[67240004,131146,6623801102928978,6623803341365525],[67240004,131212,-24519907498972975,-24519905258499972],[67240004,131272,24519905258499972,24519907498972975],[67240004,67108878,6623801102928978,6623803341365525],[67240004,67108938,-6623803341365525,-6623801102928978],[67240004,67109004,24519905258499972,24519907498972975],[67240004,67109064,-24519907498972975,-24519905258499972],[67240008,32770,-4648500367050864,-4648499057538562],[67240008,32842,-4648500367050864,-4648499057538562],[67240008,32896,-1975303161793801,-1975301857911278],[67240008,32968,-1975303161793801,-1975301857911278],[67240008,131080,-8599108279903872,-8599101184095716],[67240008,131083,1975301891852867,1975303127852212],[67240008,131086,-6623803337001160,-6623801107293350],[67240008,131136,8599101184095716,8599108279903872],[67240008,131139,-1975303127852212,-1975301891852867],[67240008,131142,6623801107293350,6623803337001160],[67240008,131210,8599101184095716,8599108279903872],[67240008,131212,11272300812248450,11272303056635485],[67240008,131266,-8599108279903872,-8599101184095716],[67240008,131268,-11272303056635485,-11272300812248450],[67240008,131338,4648499059714221,4648500364875210],[67240008,131394,-4648500364875210,-4648499059714221],[67240008,131464,-13247605096148654,-13247603792440361],[67240008,131520,13247603792440361,13247605096148654],[67240008,132232,1975301885638544,1975303134066536],[67240008,132288,-1975303134066536,-1975301885638544],[67240008,524290,-4648500405191522,-4648499019397906],[67240008,524362,-4648500405191522,-4648499019397906],[67240008,524416,-1975303194709763,-1975301824995317],[67240008,524488,-15222908329021818,-15222905579272277],[67240008,655496,-26495210275362748,-26495207501815288],[67240008,655552,39742811423957886,39742815241809165],[67240008,67108872,8599101184095716,8599108279903872],[67240008,67108875,-1975303127852212,-1975301891852867],[67240008,67108878,6623801107293350,6623803337001160],[67240008,67108928,-8599108279903872,-8599101184095716],[67240008,67108931,1975301891852867,1975303127852212],[67240008,67108934,-6623803337001160,-6623801107293350],[67240008,67109002,-8599108279903872,-8599101184095716],[67240008,67109004,-11272303056635485,-11272300812248450],[67240008,67109058,8599101184095716,8599108279903872],[67240008,67109060,11272300812248450,11272303056635485],[67240008,67109130,-4648500364875210,-4648499059714221],[67240008,67109186,4648499059714221,4648500364875210],[67240008,67109256,13247603792440361,13247605096148654],[67240008,67109312,-13247605096148654,-13247603792440361],[67240008,67110024,-1975303134066536,-1975301885638544],[67240008,67110080,1975301885638544,1975303134066536],[67240008,67272706,-4648500367050864,-4648499057538562],[67240008,67272778,-4648500367050864,-4648499057538562],[67240008,67272832,-1975303161793801,-1975301857911278],[67240008,67272904,-1975303161793801,-1975301857911278],[67240008,67633288,39742811423957886,39742815241809165],[67240008,67633344,-26495210275362748,-26495207501815288],[67240008,67764226,-4648500405191522,-4648499019397906],[67240008,67764298,-4648500405191522,-4648499019397906],[67240008,67764352,-15222908329021818,-15222905579272277],[67240008,67764424,-1975303194709763,-1975301824995317],[67240008,268435458,4648499019397906,4648500405191522],[67240008,268435530,4648499019397906,4648500405191522],[67240008,268435584,1975301824995317,1975303194709763],[67240008,268435656,1975301824995317,1975303194709763],[67240008,335675394,4648499019397906,4648500405191522],[67240008,335675466,4648499019397906,4648500405191522],[67240008,335675520,1975301824995317,1975303194709763],[67240008,335675592,1975301824995317,1975303194709763],[67240008,1073741826,4648499057538562,4648500367050864],[67240008,1073741898,4648499057538562,4648500367050864],[67240008,1073741952,1975301857911278,1975303161793801],[67240008,1073742024,1975301857911278,1975303161793801],[67240008,1140981762,4648499057538562,4648500367050864],[67240008,1140981834,4648499057538562,4648500367050864],[67240008,1140981888,1975301857911278,1975303161793801],[67240008,1140981960,1975301857911278,1975303161793801],[67240008,17592186044418,1975301826672296,1975303193032786],[67240008,17592186044490,1975301826672296,1975303193032786],[67240008,17592186044544,22544603189358414,22544604548409457],[67240008,17592186044616,22544603189358414,22544604548409457],[67240008,17592253284354,1975301826672296,1975303193032786],[67240008,17592253284426,1975301826672296,1975303193032786],[67240008,17592253284480,22544603189358414,22544604548409457],[67240008,17592253284552,22544603189358414,22544604548409457],[67240011,131073,-4648500364875210,-4648499059714221],[67240011,131074,6623801107293350,6623803337001160],[67240011,131083,1975301891852867,1975303127852212],[67240011,131136,-1975303127852212,-1975301891852867],[67240011,131145,-6623803337001160,-6623801107293350],[67240011,131146,4648499059714221,4648500364875210],[67240011,67108865,4648499059714221,4648500364875210],[67240011,67108866,-6623803337001160,-6623801107293350],[67240011,67108875,-1975303127852212,-1975301891852867],[67240011,67108928,1975301891852867,1975303127852212],[67240011,67108937,6623801107293350,6623803337001160],[67240011,67108938,-4648500364875210,-4648499059714221],[67240014,131074,-13247605061578886,-13247603827010127],[67240014,131086,-13247605061578886,-13247603827010127],[67240014,131136,13247603827010127,13247605061578886],[67240014,131148,13247603827010127,13247605061578886],[67240014,67108866,13247603827010127,13247605061578886],[67240014,67108878,13247603827010127,13247605061578886],[67240014,67108928,-13247605061578886,-13247603827010127],[67240014,67108940,-13247605061578886,-13247603827010127],[67240065,131083,6623801086208550,6623803358085955],[67240065,131085,24519905293069738,24519907464403207],[67240065,131210,-6623803358085955,-6623801086208550],[67240065,131212,-24519907464403207,-24519905293069738],[67240065,67108875,-6623803358085955,-6623801086208550],[67240065,67108877,-24519907464403207,-24519905293069738],[67240065,67109002,6623801086208550,6623803358085955],[67240065,67109004,24519905293069738,24519907464403207],[67240066,0,22544602847627856,22544604890140016],[67240066,130,11272301423813928,11272302445070008],[67240066,32776,6623801086208550,6623803358085955],[67240066,32906,6623801086208550,6623803358085955],[67240066,131074,-4648502836441441,-4648496588147988],[67240066,131083,-6623803358085955,-6623801086208550],[67240066,131086,-932612781,932612782],[67240066,131146,17896101722460043,17896106590718401],[67240066,131200,15920798525905540,15920804767567825],[67240066,131209,6623801086208550,6623803358085955],[67240066,131212,-932612782,932612781],[67240066,131272,-17896106590718401,-17896101722460043],[67240066,132106,6623801079994226,6623803364300278],[67240066,132232,-6623803364300278,-6623801079994226],[67240066,524296,8599102838302509,8599106625697078],[67240066,524426,6623801015151933,6623803429142575],[67240066,655370,51015112847771814,51015117686879173],[67240066,655496,-49039815165502764,-49039810349443144],[67240066,67108866,15920798525905540,15920804767567825],[67240066,67108875,6623801086208550,6623803358085955],[67240066,67108878,-932612782,932612781],[67240066,67108938,-17896106590718401,-17896101722460043],[67240066,67108992,-4648502836441441,-4648496588147988],[67240066,67109001,-6623803358085955,-6623801086208550],[67240066,67109004,-932612781,932612782],[67240066,67109064,17896101722460043,17896106590718401],[67240066,67109898,-6623803364300278,-6623801079994226],[67240066,67110024,6623801079994226,6623803364300278],[67240066,67239936,11272301423813928,11272302445070008],[67240066,67240066,22544602847627856,22544604890140016],[67240066,67272712,6623801086208550,6623803358085955],[67240066,67272842,6623801086208550,6623803358085955],[67240066,67633162,-49039815165502764,-49039810349443144],[67240066,67633288,51015112847771814,51015117686879173],[67240066,67764232,6623801015151933,6623803429142575],[67240066,67764362,8599102838302509,8599106625697078],[67240066,268435464,-6623803429142575,-6623801015151933],[67240066,268435594,-6623803429142575,-6623801015151933],[67240066,335675400,-6623803429142575,-6623801015151933],[67240066,335675530,-6623803429142575,-6623801015151933],[67240066,1073741832,-6623803358085955,-6623801086208550],[67240066,1073741962,-6623803358085955,-6623801086208550],[67240066,1140981768,-6623803358085955,-6623801086208550],[67240066,1140981898,-6623803358085955,-6623801086208550],[67240066,17592186044424,-24519907574746803,-24519905182726150],[67240066,17592186044554,-24519907574746803,-24519905182726150],[67240066,17592253284360,-24519907574746803,-24519905182726150],[67240066,17592253284490,-24519907574746803,-24519905182726150],[67240068,0,22544602948688426,22544604789079442],[67240068,132,11272301474344213,11272302394539721],[67240068,32776,8599103045112288,8599106418887301],[67240068,32908,6623801159997192,6623803284297315],[67240068,131076,15920798873942155,15920804419531205],[67240068,131085,-24519907464403207,-24519905293069738],[67240068,131086,-964466108,964466106],[67240068,131148,24519905258499972,24519907498972975],[67240068,131200,-4648502482185233,-4648496942404193],[67240068,131209,24519905293069738,24519907464403207],[67240068,131210,-964466106,964466108],[67240068,131272,-24519907498972975,-24519905258499972],[67240068,132108,6623801159997192,6623803284297315],[67240068,132232,-6623803284297315,-6623801159997192],[67240068,163852,-49039814917723134,-49039810597222762],[67240068,163976,51015113096137411,51015117438513567],[67240068,524296,8599102950409964,8599106513589621],[67240068,524428,6623801098016984,6623803346277521],[67240068,557056,22544603239782766,22544604497985104],[67240068,655372,51015113006242213,51015117528408767],[67240068,655496,-49039814989147174,-49039810525798726],[67240068,688132,-3950606120324188,-3950603919085972],[67240068,688256,26495207784975390,26495209992202640],[67240068,67108868,-4648502482185233,-4648496942404193],[67240068,67108877,24519905293069738,24519907464403207],[67240068,67108878,-964466106,964466108],[67240068,67108940,-24519907498972975,-24519905258499972],[67240068,67108992,15920798873942155,15920804419531205],[67240068,67109001,-24519907464403207,-24519905293069738],[67240068,67109002,-964466108,964466106],[67240068,67109064,24519905258499972,24519907498972975],[67240068,67109900,-6623803284297315,-6623801159997192],[67240068,67110024,6623801159997192,6623803284297315],[67240068,67141644,51015113096137411,51015117438513567],[67240068,67141768,-49039814917723134,-49039810597222762],[67240068,67239936,11272301474344213,11272302394539721],[67240068,67240068,22544602948688426,22544604789079442],[67240068,67272712,6623801159997192,6623803284297315],[67240068,67272844,8599103045112288,8599106418887301],[67240068,67633164,-49039814989147174,-49039810525798726],[67240068,67633288,51015113006242213,51015117528408767],[67240068,67665924,26495207784975390,26495209992202640],[67240068,67666048,-3950606120324188,-3950603919085972],[67240068,67764232,6623801098016984,6623803346277521],[67240068,67764364,8599102950409964,8599106513589621],[67240068,67797124,22544603239782766,22544604497985104],[67240068,268435464,-6623803346277521,-6623801098016984],[67240068,268435596,-6623803346277521,-6623801098016984],[67240068,335675400,-6623803346277521,-6623801098016984],[67240068,335675532,-6623803346277521,-6623801098016984],[67240068,1073741832,-6623803284297315,-6623801159997192],[67240068,1073741964,-6623803284297315,-6623801159997192],[67240068,1140981768,-6623803284297315,-6623801159997192],[67240068,1140981900,-6623803284297315,-6623801159997192],[67240068,17592186044424,-24519907494573587,-24519905262899363],[67240068,17592186044556,-24519907494573587,-24519905262899363],[67240068,17592253284360,-24519907494573587,-24519905262899363],[67240068,17592253284492,-24519907494573587,-24519905262899363],[67240072,0,11851812639372616,11851817478857866],[67240072,136,19173508473961242,19173515473743010],[67240072,32770,-1975303161793801,-1975301857911278],[67240072,32772,-4648500337588616,-4648499087000812],[67240072,32832,1975301857911278,1975303161793801],[67240072,32906,-1975303161793801,-1975301857911278],[67240072,32908,-4648500337588616,-4648499087000812],[67240072,32968,1975301857911278,1975303161793801],[67240072,33792,4648499087000812,4648500337588616],[67240072,33928,4648499087000812,4648500337588616],[67240072,131080,159397032038790385,159397079835786384],[67240072,131086,11272300812248450,11272303056635485],[67240072,131146,-28470513144585146,-28470509652297966],[67240072,131148,-11272303056635485,-11272300812248450],[67240072,131200,-166718780962043040,-166718724742007499],[67240072,131206,-11272303056635485,-11272300812248450],[67240072,131266,28470509652297966,28470513144585146],[67240072,131268,11272300812248450,11272303056635485],[67240072,132106,-11272303056635485,-11272300812248450],[67240072,132108,6623801172992632,6623803271301876],[67240072,132168,11272300812248450,11272303056635485],[67240072,132226,11272300812248450,11272303056635485],[67240072,132228,-6623803271301876,-6623801172992632],[67240072,132288,-11272303056635485,-11272300812248450],[67240072,524290,-3950606391264266,-3950603648145893],[67240072,524292,-6623803535249348,-6623800909045159],[67240072,524352,1975301824995317,1975303194709763],[67240072,524426,-1975303194709763,-1975301824995317],[67240072,524428,-4648500367937248,-4648499056652179],[67240072,524488,15222905579272277,15222908329021818],[67240072,525312,4648499056652179,4648500367937248],[67240072,525448,17896102843574241,17896105469604200],[67240072,557056,5925906044742719,5925909014372521],[67240072,557192,17198207831856214,17198211096142960],[67240072,655370,-52990420208255582,-52990415346100484],[67240072,655372,-37767513094879325,-37767508551182639],[67240072,655432,39742811423957886,39742815241809165],[67240072,655490,51015112847771814,51015117686879173],[67240072,655492,35792206070739152,35792210555617732],[67240072,655552,-52990420208255582,-52990415346100484],[67240072,656392,24519904596394939,24519908161078011],[67240072,656512,-37767513094879325,-37767508551182639],[67240072,688136,8599102631895649,8599106832103938],[67240072,688256,-19871408894185654,-19871404438697867],[67240072,1573000,-1975303142599947,-1975301877105131],[67240072,1703944,-1975303134589986,-1975301885115096],[67240072,1704064,3950603919085972,3950606120324188],[67240072,67108872,-166718780962043040,-166718724742007499],[67240072,67108878,-11272303056635485,-11272300812248450],[67240072,67108938,28470509652297966,28470513144585146],[67240072,67108940,11272300812248450,11272303056635485],[67240072,67108992,159397032038790385,159397079835786384],[67240072,67108998,11272300812248450,11272303056635485],[67240072,67109058,-28470513144585146,-28470509652297966],[67240072,67109060,-11272303056635485,-11272300812248450],[67240072,67109898,11272300812248450,11272303056635485],[67240072,67109900,-6623803271301876,-6623801172992632],[67240072,67109960,-11272303056635485,-11272300812248450],[67240072,67110018,-11272303056635485,-11272300812248450],[67240072,67110020,6623801172992632,6623803271301876],[67240072,67110080,11272300812248450,11272303056635485],[67240072,67239936,19173508473961242,19173515473743010],[67240072,67240072,11851812639372616,11851817478857866],[67240072,67272706,-1975303161793801,-1975301857911278],[67240072,67272708,-4648500337588616,-4648499087000812],[67240072,67272768,1975301857911278,1975303161793801],[67240072,67272842,-1975303161793801,-1975301857911278],[67240072,67272844,-4648500337588616,-4648499087000812],[67240072,67272904,1975301857911278,1975303161793801],[67240072,67273728,4648499087000812,4648500337588616],[67240072,67273864,4648499087000812,4648500337588616],[67240072,67633162,51015112847771814,51015117686879173],[67240072,67633164,35792206070739152,35792210555617732],[67240072,67633224,-52990420208255582,-52990415346100484],[67240072,67633282,-52990420208255582,-52990415346100484],[67240072,67633284,-37767513094879325,-37767508551182639],[67240072,67633344,39742811423957886,39742815241809165],[67240072,67634184,-37767513094879325,-37767508551182639],[67240072,67634304,24519904596394939,24519908161078011],[67240072,67665928,-19871408894185654,-19871404438697867],[67240072,67666048,8599102631895649,8599106832103938],[67240072,67764226,-1975303194709763,-1975301824995317],[67240072,67764228,-4648500367937248,-4648499056652179],[67240072,67764288,15222905579272277,15222908329021818],[67240072,67764362,-3950606391264266,-3950603648145893],[67240072,67764364,-6623803535249348,-6623800909045159],[67240072,67764424,1975301824995317,1975303194709763],[67240072,67765248,17896102843574241,17896105469604200],[67240072,67765384,4648499056652179,4648500367937248],[67240072,67796992,17198207831856214,17198211096142960],[67240072,67797128,5925906044742719,5925909014372521],[67240072,68681736,3950603919085972,3950606120324188],[67240072,68681856,-1975303134589986,-1975301885115096],[67240072,68812800,-1975303142599947,-1975301877105131],[67240072,268435458,1975301824995317,1975303194709763],[67240072,268435460,4648499056652179,4648500367937248],[67240072,268435520,-1975303194709763,-1975301824995317],[67240072,268435594,1975301824995317,1975303194709763],[67240072,268435596,4648499056652179,4648500367937248],[67240072,268435656,-1975303194709763,-1975301824995317],[67240072,268436480,-4648500367937248,-4648499056652179],[67240072,268436616,-4648500367937248,-4648499056652179],[67240072,268599304,6623801098016986,6623803346277523],[67240072,268599424,-6623803346277523,-6623801098016986],[67240072,268959744,-3950606388421522,-3950603650988640],[67240072,268959880,-30445818782250594,-30445809034337592],[67240072,269090824,39742810183793936,39742816481973111],[67240072,269090944,-13247611779979171,-13247597108609852],[67240072,335577096,-6623803346277523,-6623801098016986],[67240072,335577216,6623801098016986,6623803346277523],[67240072,335675394,1975301824995317,1975303194709763],[67240072,335675396,4648499056652179,4648500367937248],[67240072,335675456,-1975303194709763,-1975301824995317],[67240072,335675530,1975301824995317,1975303194709763],[67240072,335675532,4648499056652179,4648500367937248],[67240072,335675592,-1975303194709763,-1975301824995317],[67240072,335676416,-4648500367937248,-4648499056652179],[67240072,335676552,-4648500367937248,-4648499056652179],[67240072,336068616,-13247611779979171,-13247597108609852],[67240072,336068736,39742810183793936,39742816481973111],[67240072,336199680,-30445818782250594,-30445809034337592],[67240072,336199816,-3950606388421522,-3950603650988640],[67240072,1073741826,1975301857911278,1975303161793801],[67240072,1073741828,4648499087000812,4648500337588616],[67240072,1073741888,-1975303161793801,-1975301857911278],[67240072,1073741962,1975301857911278,1975303161793801],[67240072,1073741964,4648499087000812,4648500337588616],[67240072,1073742024,-1975303161793801,-1975301857911278],[67240072,1073742848,-4648500337588616,-4648499087000812],[67240072,1073742984,-4648500337588616,-4648499087000812],[67240072,1073905672,19871405028412220,19871408304471303],[67240072,1073905792,-19871408304471303,-19871405028412220],[67240072,1074266112,-3950606322589598,-3950603716820562],[67240072,1074266248,-28470513207314965,-28470509589568145],[67240072,1074397192,6623801098016986,6623803346277523],[67240072,1074397312,17896101898419553,17896106414758888],[67240072,1140883464,-19871408304471303,-19871405028412220],[67240072,1140883584,19871405028412220,19871408304471303],[67240072,1140981762,1975301857911278,1975303161793801],[67240072,1140981764,4648499087000812,4648500337588616],[67240072,1140981824,-1975303161793801,-1975301857911278],[67240072,1140981898,1975301857911278,1975303161793801],[67240072,1140981900,4648499087000812,4648500337588616],[67240072,1140981960,-1975303161793801,-1975301857911278],[67240072,1140982784,-4648500337588616,-4648499087000812],[67240072,1140982920,-4648500337588616,-4648499087000812],[67240072,1141374984,17896101898419553,17896106414758888],[67240072,1141375104,6623801098016986,6623803346277523],[67240072,1141506048,-28470513207314965,-28470509589568145],[67240072,1141506184,-3950606322589598,-3950603716820562],[67240072,1342308360,-6623803346277523,-6623801098016986],[67240072,1342308480,6623801098016986,6623803346277523],[67240072,1409286152,6623801098016986,6623803346277523],[67240072,1409286272,-6623803346277523,-6623801098016986],[67240072,17592186044418,22544603189358414,22544604548409457],[67240072,17592186044420,1975301858410281,1975303161294799],[67240072,17592186044480,-22544604548409457,-22544603189358414],[67240072,17592186044554,22544603189358414,22544604548409457],[67240072,17592186044556,1975301858410281,1975303161294799],[67240072,17592186044616,-22544604548409457,-22544603189358414],[67240072,17592186045440,-1975303161294799,-1975301858410281],[67240072,17592186045576,-1975303161294799,-1975301858410281],[67240072,17592186208264,-11272303061044145,-11272300807839789],[67240072,17592186208384,11272300807839789,11272303061044145],[67240072,17592186568704,-45089209134537452,-45089206340998288],[67240072,17592186568840,-49039814562449270,-49039810952496628],[67240072,17592186699784,-11272303149817323,-11272300719066616],[67240072,17592186699904,15222904455276782,15222909453017315],[67240072,17592253186056,11272300807839789,11272303061044145],[67240072,17592253186176,-11272303061044145,-11272300807839789],[67240072,17592253284354,22544603189358414,22544604548409457],[67240072,17592253284356,1975301858410281,1975303161294799],[67240072,17592253284416,-22544604548409457,-22544603189358414],[67240072,17592253284490,22544603189358414,22544604548409457],[67240072,17592253284492,1975301858410281,1975303161294799],[67240072,17592253284552,-22544604548409457,-22544603189358414],[67240072,17592253285376,-1975303161294799,-1975301858410281],[67240072,17592253285512,-1975303161294799,-1975301858410281],[67240072,17592253677576,15222904455276782,15222909453017315],[67240072,17592253677696,-11272303149817323,-11272300719066616],[67240072,17592253808640,-49039814562449270,-49039810952496628],[67240072,17592253808776,-45089209134537452,-45089206340998288],[67240072,17592454610952,11272300719066616,11272303149817323],[67240072,17592454611072,-11272303149817323,-11272300719066616],[67240072,17592521588744,-11272303149817323,-11272300719066616],[67240072,17592521588864,11272300719066616,11272303149817323],[67240072,17593259917320,11272300807839789,11272303061044145],[67240072,17593259917440,-11272303061044145,-11272300807839789],[67240072,17593326895112,-11272303061044145,-11272300807839789],[67240072,17593326895232,11272300807839789,11272303061044145],[67240075,131073,13247603792440361,13247605096148654],[67240075,131074,-13247605096148654,-13247603792440361],[67240075,131209,13247603792440361,13247605096148654],[67240075,131210,-13247605096148654,-13247603792440361],[67240075,67108865,-13247605096148654,-13247603792440361],[67240075,67108866,13247603792440361,13247605096148654],[67240075,67109001,-13247605096148654,-13247603792440361],[67240075,67109002,13247603792440361,13247605096148654],[67240077,131073,-1975303134066536,-1975301885638544],[67240077,131076,1975301885638544,1975303134066536],[67240077,131209,-1975303134066536,-1975301885638544],[67240077,131212,1975301885638544,1975303134066536],[67240077,67108865,1975301885638544,1975303134066536],[67240077,67108868,-1975303134066536,-1975301885638544],[67240077,67109001,1975301885638544,1975303134066536],[67240077,67109004,-1975303134066536,-1975301885638544],[67240078,131074,-11272302707496740,-11272301161387192],[67240078,131076,-8599105559539709,-8599103904459875],[67240078,131080,31143706687525880,31143710514241570],[67240078,131086,11272301161280132,11272302707603802],[67240078,131200,-11272302707603802,-11272301161280132],[67240078,131206,-31143710514241570,-31143706687525880],[67240078,131210,8599103904459875,8599105559539709],[67240078,131212,11272301161387192,11272302707496740],[67240078,67108866,11272301161387192,11272302707496740],[67240078,67108868,8599103904459875,8599105559539709],[67240078,67108872,-31143710514241570,-31143706687525880],[67240078,67108878,-11272302707603802,-11272301161280132],[67240078,67108992,11272301161280132,11272302707603802],[67240078,67108998,31143706687525880,31143710514241570],[67240078,67109002,-8599105559539709,-8599103904459875],[67240078,67109004,-11272302707496740,-11272301161387192],[67240128,131136,-3950609856348444,-3950600183061726],[67240128,131146,6623801015151933,6623803429142575],[67240128,131200,3950600183061726,3950609856348444],[67240128,131210,-6623803429142575,-6623801015151933],[67240128,67108928,3950600183061726,3950609856348444],[67240128,67108938,-6623803429142575,-6623801015151933],[67240128,67108992,-3950609856348444,-3950600183061726],[67240128,67109002,6623801015151933,6623803429142575],[67240128,269090880,6623801015151933,6623803429142575],[67240128,269090944,-6623803429142575,-6623801015151933],[67240128,336068672,-6623803429142575,-6623801015151933],[67240128,336068736,6623801015151933,6623803429142575],[67240138,131074,-26495210251583166,-26495207525594866],[67240138,131136,22544601129070346,22544606608697526],[67240138,131146,-3950606396524520,-3950603642885640],[67240138,131200,3950603642885640,3950606396524520],[67240138,131210,-22544606608697526,-22544601129070346],[67240138,131272,26495207525594866,26495210251583166],[67240138,67108866,26495207525594866,26495210251583166],[67240138,67108928,-22544606608697526,-22544601129070346],[67240138,67108938,3950603642885640,3950606396524520],[67240138,67108992,-3950606396524520,-3950603642885640],[67240138,67109002,22544601129070346,22544606608697526],[67240138,67109064,-26495210251583166,-26495207525594866],[67240140,131136,13247603821617226,13247605066971786],[67240140,131148,13247603821617226,13247605066971786],[67240140,131200,-13247605066971786,-13247603821617226],[67240140,131212,-13247605066971786,-13247603821617226],[67240140,67108928,-13247605066971786,-13247603821617226],[67240140,67108940,-13247605066971786,-13247603821617226],[67240140,67108992,13247603821617226,13247605066971786],[67240140,67109004,13247603821617226,13247605066971786],[67240200,131146,-4648500364875210,-4648499059714221],[67240200,131272,13247603792440361,13247605096148654],[67240200,131394,4648499059714221,4648500364875210],[67240200,131520,-13247605096148654,-13247603792440361],[67240200,132232,-1975303134066536,-1975301885638544],[67240200,132480,1975301885638544,1975303134066536],[67240200,67108938,4648499059714221,4648500364875210],[67240200,67109064,-13247605096148654,-13247603792440361],[67240200,67109186,-4648500364875210,-4648499059714221],[67240200,67109312,13247603792440361,13247605096148654],[67240200,67110024,1975301885638544,1975303134066536],[67240200,67110272,-1975303134066536,-1975301885638544],[67240266,131136,-4648500364875210,-4648499059714221],[67240266,131146,-4648500364875210,-4648499059714221],[67240266,131328,4648499059714221,4648500364875210],[67240266,131338,4648499059714221,4648500364875210],[67240266,67108928,4648499059714221,4648500364875210],[67240266,67108938,4648499059714221,4648500364875210],[67240266,67109120,-4648500364875210,-4648499059714221],[67240266,67109130,-4648500364875210,-4648499059714221],[67240392,131136,13247603792440361,13247605096148654],[67240392,131272,13247603792440361,13247605096148654],[67240392,131328,-13247605096148654,-13247603792440361],[67240392,131464,-13247605096148654,-13247603792440361],[67240392,67108928,-13247605096148654,-13247603792440361],[67240392,67109064,-13247605096148654,-13247603792440361],[67240392,67109120,13247603792440361,13247605096148654],[67240392,67109256,13247603792440361,13247605096148654],[67240962,131210,-6623803364300278,-6623801079994226],[67240962,132232,6623801079994226,6623803364300278],[67240962,67109002,6623801079994226,6623803364300278],[67240962,67110024,-6623803364300278,-6623801079994226],[67240964,131212,-6623803284297315,-6623801159997192],[67240964,132232,6623801159997192,6623803284297315],[67240964,67109004,6623801159997192,6623803284297315],[67240964,67110024,-6623803284297315,-6623801159997192],[67240968,32896,-4648500337588616,-4648499087000812],[67240968,33928,-4648500337588616,-4648499087000812],[67240968,131080,4648498045480102,4648501379109327],[67240968,131210,11272300812248450,11272303056635485],[67240968,131212,-6623803271301876,-6623801172992632],[67240968,131272,-13247605096148654,-13247603792440361],[67240968,131464,1975301885638544,1975303134066536],[67240968,132096,-4648501379109327,-4648498045480102],[67240968,132226,-11272303056635485,-11272300812248450],[67240968,132228,6623801172992632,6623803271301876],[67240968,132288,13247603792440361,13247605096148654],[67240968,132480,-1975303134066536,-1975301885638544],[67240968,133256,1975301892192549,1975303127512530],[67240968,134272,-1975303127512530,-1975301892192549],[67240968,524416,-4648500367937248,-4648499056652179],[67240968,525448,-17896105469604200,-17896102843574241],[67240968,655496,-26495210200067732,-26495207577110300],[67240968,656512,39742811531898000,39742815133869046],[67240968,1179784,1975301885115096,1975303134589986],[67240968,1180800,-1975303134589986,-1975301885115096],[67240968,1573896,1975301877105131,1975303142599947],[67240968,1703944,1975301885115096,1975303134589986],[67240968,1704960,-3950606120324188,-3950603919085972],[67240968,67108872,-4648501379109327,-4648498045480102],[67240968,67109002,-11272303056635485,-11272300812248450],[67240968,67109004,6623801172992632,6623803271301876],[67240968,67109064,13247603792440361,13247605096148654],[67240968,67109256,-1975303134066536,-1975301885638544],[67240968,67109888,4648498045480102,4648501379109327],[67240968,67110018,11272300812248450,11272303056635485],[67240968,67110020,-6623803271301876,-6623801172992632],[67240968,67110080,-13247605096148654,-13247603792440361],[67240968,67110272,1975301885638544,1975303134066536],[67240968,67111048,-1975303127512530,-1975301892192549],[67240968,67112064,1975301892192549,1975303127512530],[67240968,67272832,-4648500337588616,-4648499087000812],[67240968,67273864,-4648500337588616,-4648499087000812],[67240968,67633288,39742811531898000,39742815133869046],[67240968,67634304,-26495210200067732,-26495207577110300],[67240968,67764352,-17896105469604200,-17896102843574241],[67240968,67765384,-4648500367937248,-4648499056652179],[67240968,68157576,-1975303134589986,-1975301885115096],[67240968,68158592,1975301885115096,1975303134589986],[67240968,68681736,-3950606120324188,-3950603919085972],[67240968,68682752,1975301885115096,1975303134589986],[67240968,68812800,1975301877105131,1975303142599947],[67240968,268435584,4648499056652179,4648500367937248],[67240968,268436616,4648499056652179,4648500367937248],[67240968,335675520,4648499056652179,4648500367937248],[67240968,335676552,4648499056652179,4648500367937248],[67240968,1073741952,4648499087000812,4648500337588616],[67240968,1073742984,4648499087000812,4648500337588616],[67240968,1140981888,4648499087000812,4648500337588616],[67240968,1140982920,4648499087000812,4648500337588616],[67240968,17592186044544,1975301858410281,1975303161294799],[67240968,17592186045576,1975301858410281,1975303161294799],[67240968,17592253284480,1975301858410281,1975303161294799],[67240968,17592253285512,1975301858410281,1975303161294799],[67241088,131200,6623797698355075,6623806745939431],[67241088,132096,-6623806745939431,-6623797698355075],[67241088,1704064,-3950606120324188,-3950603919085972],[67241088,1704960,3950603919085972,3950606120324188],[67241088,67108992,-6623806745939431,-6623797698355075],[67241088,67109888,6623797698355075,6623806745939431],[67241088,68681856,3950603919085972,3950606120324188],[67241088,68682752,-3950606120324188,-3950603919085972],[67241088,269090944,-6623803346277521,-6623801098016984],[67241088,269091840,6623801098016984,6623803346277521],[67241088,336068736,6623801098016984,6623803346277521],[67241088,336069632,-6623803346277521,-6623801098016984],[67241098,131200,4648499059714221,4648500364875210],[67241098,131210,4648499059714221,4648500364875210],[67241098,132096,-4648500364875210,-4648499059714221],[67241098,132106,-4648500364875210,-4648499059714221],[67241098,67108992,-4648500364875210,-4648499059714221],[67241098,67109002,-4648500364875210,-4648499059714221],[67241098,67109888,4648499059714221,4648500364875210],[67241098,67109898,4648499059714221,4648500364875210],[67241100,131200,-13247605033169427,-13247603855419588],[67241100,131212,-13247605033169427,-13247603855419588],[67241100,132096,13247603855419588,13247605033169427],[67241100,132108,13247603855419588,13247605033169427],[67241100,67108992,13247603855419588,13247605033169427],[67241100,67109004,13247603855419588,13247605033169427],[67241100,67109888,-13247605033169427,-13247603855419588],[67241100,67109900,-13247605033169427,-13247603855419588],[67241160,131136,-1975303134066536,-1975301885638544],[67241160,131200,-11272303056635485,-11272300812248450],[67241160,131272,-13247605096148654,-13247603792440361],[67241160,132096,13247603792440361,13247605096148654],[67241160,132168,11272300812248450,11272303056635485],[67241160,132232,1975301885638544,1975303134066536],[67241160,67108928,1975301885638544,1975303134066536],[67241160,67108992,11272300812248450,11272303056635485],[67241160,67109064,13247603792440361,13247605096148654],[67241160,67109888,-13247605096148654,-13247603792440361],[67241160,67109960,-11272303056635485,-11272300812248450],[67241160,67110024,-1975303134066536,-1975301885638544],[67241352,131328,1975301885638544,1975303134066536],[67241352,131464,1975301885638544,1975303134066536],[67241352,132096,-1975303134066536,-1975301885638544],[67241352,132232,-1975303134066536,-1975301885638544],[67241352,67109120,-1975303134066536,-1975301885638544],[67241352,67109256,-1975303134066536,-1975301885638544],[67241352,67109888,1975301885638544,1975303134066536],[67241352,67110024,1975301885638544,1975303134066536],[67241992,132232,-1975303127512530,-1975301892192549],[67241992,134272,1975301892192549,1975303127512530],[67241992,67110024,1975301892192549,1975303127512530],[67241992,67112064,-1975303127512530,-1975301892192549],[67243144,132096,-1975303127512530,-1975301892192549],[67243144,132232,-1975303127512530,-1975301892192549],[67243144,133120,1975301892192549,1975303127512530],[67243144,133256,1975301892192549,1975303127512530],[67243144,67109888,1975301892192549,1975303127512530],[67243144,67110024,1975301892192549,1975303127512530],[67243144,67110912,-1975303127512530,-1975301892192549],[67243144,67111048,-1975303127512530,-1975301892192549],[67272705,12,13247603817961795,13247605070627222],[67272705,32779,4648499082464426,4648500342125002],[67272705,32781,15222905730833912,15222908177460183],[67272705,131073,-1975304247543921,-1975300772161160],[67272705,131079,-1975303106832961,-1975301912872117],[67272705,131083,-6623803293231701,-6623801151062805],[67272705,131085,-47064511840212707,-47064508655028107],[67272705,163840,1975300772161160,1975304247543921],[67272705,163846,1975301912872117,1975303106832961],[67272705,163850,1975301912872117,1975303106832961],[67272705,163852,45089206600617048,45089208874918688],[67272705,524292,13247603827010127,13247605061578886],[67272705,557061,13247603827010127,13247605061578886],[67272705,67108865,1975300772161160,1975304247543921],[67272705,67108871,1975301912872117,1975303106832961],[67272705,67108875,1975301912872117,1975303106832961],[67272705,67108877,45089206600617048,45089208874918688],[67272705,67141632,-1975304247543921,-1975300772161160],[67272705,67141638,-1975303106832961,-1975301912872117],[67272705,67141642,-6623803293231701,-6623801151062805],[67272705,67141644,-47064511840212707,-47064508655028107],[67272705,67239946,4648499082464426,4648500342125002],[67272705,67239948,15222905730833912,15222908177460183],[67272705,67272717,13247603817961795,13247605070627222],[67272705,67764228,13247603827010127,13247605061578886],[67272705,67796997,13247603827010127,13247605061578886],[67272705,268435460,-13247605061578886,-13247603827010127],[67272705,268468229,-13247605061578886,-13247603827010127],[67272705,335675396,-13247605061578886,-13247603827010127],[67272705,335708165,-13247605061578886,-13247603827010127],[67272705,1073741828,-26495210075134854,-26495207702043174],[67272705,1073774597,-19871408238006792,-19871405094876730],[67272705,1073872901,17896101969228851,17896106343949595],[67272705,1073905668,-24519907495012400,-24519905262460552],[67272705,1140850693,-24519907495012400,-24519905262460552],[67272705,1140883460,17896101969228851,17896106343949595],[67272705,1140981764,-19871408238006792,-19871405094876730],[67272705,1141014533,-26495210075134854,-26495207702043174],[67272705,17592186044420,-13247605070627222,-13247603817961795],[67272705,17592186077189,-13247605070627222,-13247603817961795],[67272705,17592253284356,-13247605070627222,-13247603817961795],[67272705,17592253317125,-13247605070627222,-13247603817961795],[67272706,0,-22544604802429304,-22544602935338568],[67272706,12,-1975303136765642,-1975301882939439],[67272706,32770,-15920803465251079,-15920799828222285],[67272706,32779,-4648500342125002,-4648499082464426],[67272706,32782,-1975303106832961,-1975301912872117],[67272706,32842,-4648500367050864,-4648499057538562],[67272706,32906,-1975303161793801,-1975301857911278],[67272706,131074,6623799135992659,6623805308301850],[67272706,131079,1975301912872117,1975303106832961],[67272706,131083,6623801151062805,6623803293231701],[67272706,131086,-3950608814469977,-3950601224940198],[67272706,131146,6623801102928978,6623803341365525],[67272706,131210,24519905258499972,24519907498972975],[67272706,163840,-13247606182566277,-13247602706022740],[67272706,163845,-1975303106832961,-1975301912872117],[67272706,163849,-1975303106832961,-1975301912872117],[67272706,163852,3950601689143912,3950608350266260],[67272706,163912,-1975303130040923,-1975301889664154],[67272706,163976,-22544604489700504,-22544603248067364],[67272706,524296,-11272302707603802,-11272301161280132],[67272706,557066,-964466106,964466108],[67272706,655370,-11272303056635485,-11272300812248450],[67272706,688136,-932612782,932612781],[67272706,67108866,-13247606182566277,-13247602706022740],[67272706,67108871,-1975303106832961,-1975301912872117],[67272706,67108875,-1975303106832961,-1975301912872117],[67272706,67108878,3950601689143912,3950608350266260],[67272706,67108938,-1975303130040923,-1975301889664154],[67272706,67109002,-22544604489700504,-22544603248067364],[67272706,67141632,6623799135992659,6623805308301850],[67272706,67141637,1975301912872117,1975303106832961],[67272706,67141641,6623801151062805,6623803293231701],[67272706,67141644,-3950608814469977,-3950601224940198],[67272706,67141704,6623801102928978,6623803341365525],[67272706,67141768,24519905258499972,24519907498972975],[67272706,67239936,-15920803465251079,-15920799828222285],[67272706,67239945,-4648500342125002,-4648499082464426],[67272706,67239948,-1975303106832961,-1975301912872117],[67272706,67240008,-4648500367050864,-4648499057538562],[67272706,67240072,-1975303161793801,-1975301857911278],[67272706,67272706,-22544604802429304,-22544602935338568],[67272706,67272718,-1975303136765642,-1975301882939439],[67272706,67633162,-932612782,932612781],[67272706,67665928,-11272303056635485,-11272300812248450],[67272706,67764232,-964466106,964466108],[67272706,67797002,-11272302707603802,-11272301161280132],[67272706,268435464,13247603827010127,13247605061578886],[67272706,268468234,6623801102928978,6623803341365525],[67272706,268566538,6623801107293350,6623803337001160],[67272706,335577096,6623801107293350,6623803337001160],[67272706,335675400,6623801102928978,6623803341365525],[67272706,335708170,13247603827010127,13247605061578886],[67272706,1073741832,22544601425886842,22544606311881030],[67272706,1073774602,6623801151062805,6623803293231701],[67272706,1073872906,-8599107896967374,-8599101567032212],[67272706,1073905672,24519905262460552,24519907495012400],[67272706,1140850698,24519905262460552,24519907495012400],[67272706,1140883464,-8599107896967374,-8599101567032212],[67272706,1140981768,6623801151062805,6623803293231701],[67272706,1141014538,22544601425886842,22544606311881030],[67272706,17592186044424,13247603817961795,13247605070627222],[67272706,17592186077194,24519905253728852,24519907503744101],[67272706,17592186175498,-11272303065715385,-11272300803168551],[67272706,17592253186056,-11272303065715385,-11272300803168551],[67272706,17592253284360,24519905253728852,24519907503744101],[67272706,17592253317130,13247603817961795,13247605070627222],[67272708,0,-98079629592578584,-98079621437313222],[67272708,9,-13247605070627222,-13247603817961795],[67272708,32772,-63683210088709754,-63683203085183716],[67272708,32781,-15222908177460183,-15222905730833912],[67272708,32782,-4648500342125002,-4648499082464426],[67272708,32908,-4648500337588616,-4648499087000812],[67272708,131076,320189871195698486,320189931323813606],[67272708,131085,49039810709439166,49039814805506726],[67272708,131086,6623801151062805,6623803293231701],[67272708,131212,6623801159997192,6623803284297315],[67272708,163840,-354586345522376890,-354586294853133538],[67272708,163849,-47064511840212707,-47064508655028107],[67272708,163850,-1975303106832961,-1975301912872117],[67272708,163976,-1975303102434961,-1975301917270118],[67272708,524289,-13247605061578886,-13247603827010127],[67272708,524296,-24519907697962539,-24519905059510412],[67272708,557061,-13247605061578886,-13247603827010127],[67272708,557068,-13247605939232943,-13247602949356073],[67272708,655372,13247602285191671,13247606603397346],[67272708,688136,-24519908352868090,-24519904404604862],[67272708,67108868,-354586345522376890,-354586294853133538],[67272708,67108877,-47064511840212707,-47064508655028107],[67272708,67108878,-1975303106832961,-1975301912872117],[67272708,67109004,-1975303102434961,-1975301917270118],[67272708,67141632,320189871195698486,320189931323813606],[67272708,67141641,49039810709439166,49039814805506726],[67272708,67141642,6623801151062805,6623803293231701],[67272708,67141768,6623801159997192,6623803284297315],[67272708,67239936,-63683210088709754,-63683203085183716],[67272708,67239945,-15222908177460183,-15222905730833912],[67272708,67239946,-4648500342125002,-4648499082464426],[67272708,67240072,-4648500337588616,-4648499087000812],[67272708,67272708,-98079629592578584,-98079621437313222],[67272708,67272717,-13247605070627222,-13247603817961795],[67272708,67633164,-24519908352868090,-24519904404604862],[67272708,67665928,13247602285191671,13247606603397346],[67272708,67764225,-13247605061578886,-13247603827010127],[67272708,67764232,-13247605939232943,-13247602949356073],[67272708,67796997,-13247605061578886,-13247603827010127],[67272708,67797004,-24519907697962539,-24519905059510412],[67272708,268435457,13247603827010127,13247605061578886],[67272708,268435464,26495207710839176,26495210066338854],[67272708,268468229,13247603827010127,13247605061578886],[67272708,268468236,19871405028479484,19871408304404039],[67272708,268566540,-17896106317239678,-17896101995938767],[67272708,268599304,24519905280236082,24519907477236870],[67272708,269090820,-22544605576438951,-22544602161328920],[67272708,269123584,22544602161328920,22544605576438951],[67272708,335544332,24519905280236082,24519907477236870],[67272708,335577096,-17896106317239678,-17896101995938767],[67272708,335675393,13247603827010127,13247605061578886],[67272708,335675400,19871405028479484,19871408304404039],[67272708,335708165,13247603827010127,13247605061578886],[67272708,335708172,26495207710839176,26495210066338854],[67272708,336068612,22544602161328920,22544605576438951],[67272708,336101376,-22544605576438951,-22544602161328920],[67272708,1073741825,26495207702043174,26495210075134854],[67272708,1073741832,58336806904098799,58336817460025984],[67272708,1073774597,19871405094876730,19871408238006792],[67272708,1073774604,39742811571512963,39742815094254094],[67272708,1073872901,-17896106343949595,-17896101969228851],[67272708,1073872908,-79485631987828172,-79485621343705900],[67272708,1073905665,24519905262460552,24519907495012400],[67272708,1073905672,98079621396013726,98079629633878072],[67272708,1074266112,11272300724575166,11272303144308768],[67272708,1074298884,13247603827010127,13247605061578886],[67272708,1074397188,-51015117307046807,-51015113227604174],[67272708,1074429952,49039810731968040,49039814782977862],[67272708,1140850693,24519905262460552,24519907495012400],[67272708,1140850700,98079621396013726,98079629633878072],[67272708,1140883457,-17896106343949595,-17896101969228851],[67272708,1140883464,-79485631987828172,-79485621343705900],[67272708,1140981761,19871405094876730,19871408238006792],[67272708,1140981768,39742811571512963,39742815094254094],[67272708,1141014533,26495207702043174,26495210075134854],[67272708,1141014540,58336806904098799,58336817460025984],[67272708,1141374980,49039810731968040,49039814782977862],[67272708,1141407744,-51015117307046807,-51015113227604174],[67272708,1141506048,13247603827010127,13247605061578886],[67272708,1141538820,11272300724575166,11272303144308768],[67272708,1342177280,-13247605061578886,-13247603827010127],[67272708,1342210052,-15222908164047479,-15222905744246613],[67272708,1342308356,49039810731968040,49039814782977862],[67272708,1342341120,-47064511822048211,-47064508673192612],[67272708,1409286148,-47064511822048211,-47064508673192612],[67272708,1409318912,49039810731968040,49039814782977862],[67272708,1409417216,-15222908164047479,-15222905744246613],[67272708,1409449988,-13247605061578886,-13247603827010127],[67272708,17592186044417,13247603817961795,13247605070627222],[67272708,17592186044424,26495207692945056,26495210084232978],[67272708,17592186077189,13247603817961795,13247605070627222],[67272708,17592186077196,37767509245645481,37767512400416486],[67272708,17592186175500,-15222909197186829,-15222904711107262],[67272708,17592186208264,3950603855421852,3950606183988306],[67272708,17592186699780,-24519907477236870,-24519905280236082],[67272708,17592186732544,24519905280236082,24519907477236870],[67272708,17592253153292,3950603855421852,3950606183988306],[67272708,17592253186056,-15222909197186829,-15222904711107262],[67272708,17592253284353,13247603817961795,13247605070627222],[67272708,17592253284360,37767509245645481,37767512400416486],[67272708,17592253317125,13247603817961795,13247605070627222],[67272708,17592253317132,26495207692945056,26495210084232978],[67272708,17592253677572,24519905280236082,24519907477236870],[67272708,17592253710336,-24519907477236870,-24519905280236082],[67272708,17592454610948,24519905280236082,24519907477236870],[67272708,17592454643712,-24519907477236870,-24519905280236082],[67272708,17592521588740,-24519907477236870,-24519905280236082],[67272708,17592521621504,24519905280236082,24519907477236870],[67272708,17593259786240,-13247605070627222,-13247603817961795],[67272708,17593259819012,-15222908182009245,-15222905726284853],[67272708,17593259917316,49039810686574560,49039814828371346],[67272708,17593259950080,-47064511858528265,-47064508636712560],[67272708,17593326895108,-47064511858528265,-47064508636712560],[67272708,17593326927872,49039810686574560,49039814828371346],[67272708,17593327026176,-15222908182009245,-15222905726284853],[67272708,17593327058948,-13247605070627222,-13247603817961795],[67272708,140738562129924,13247603813192808,13247605075396206],[67272708,140738562228228,-11272303013198523,-11272300855685410],[67272708,140738562260992,-1975303111382023,-1975301908323058],[67272708,140738629206020,-1975303111382023,-1975301908323058],[67272708,140738629238784,-11272303013198523,-11272300855685410],[67272708,140738629337088,13247603813192808,13247605075396206],[67272711,131073,-1975303106832961,-1975301912872117],[67272711,131074,1975301912872117,1975303106832961],[67272711,163845,-1975303106832961,-1975301912872117],[67272711,163846,1975301912872117,1975303106832961],[67272711,67108865,1975301912872117,1975303106832961],[67272711,67108866,-1975303106832961,-1975301912872117],[67272711,67141637,1975301912872117,1975303106832961],[67272711,67141638,-1975303106832961,-1975301912872117],[67272712,0,-10692792130513058,-10692785489024336],[67272712,6,1975301882939439,1975303136765642],[67272712,132,1975301885115096,1975303134589986],[67272712,32776,-120352160799604924,-120352113794384070],[67272712,32782,6623801151062805,6623803293231701],[67272712,32906,6623801086208550,6623803358085955],[67272712,32908,6623801159997192,6623803284297315],[67272712,131080,-222382391306796628,-222382344356494327],[67272712,131085,-15222908177460183,-15222905730833912],[67272712,131086,-697899269935994,-697890115243256],[67272712,131210,-31143710514241570,-31143706687525880],[67272712,131212,-697899214028262,-697890171151008],[67272712,163840,332041690197650200,332041742440092355],[67272712,163845,15222905730833912,15222908177460183],[67272712,163846,-3950608814469977,-3950601224940198],[67272712,163970,24519905293069738,24519907464403207],[67272712,163972,-3950608765320955,-3950601274089200],[67272712,524290,11272301161280132,11272302707603802],[67272712,524292,18593996124609637,18594001573748076],[67272712,524416,11272301159430177,11272302709453757],[67272712,557066,-964466108,964466106],[67272712,557068,11272298879893047,11272304988990891],[67272712,557192,-13247606060429303,-13247602828159713],[67272712,655370,11272300812248450,11272303056635485],[67272712,655372,11272299936568599,11272303932315336],[67272712,655496,22544601642609286,22544606095158586],[67272712,688130,-932612781,932612782],[67272712,688132,-3950606995955408,-3950603043454752],[67272712,688256,1975300959240085,1975304060464993],[67272712,67108872,332041690197650200,332041742440092355],[67272712,67108877,15222905730833912,15222908177460183],[67272712,67108878,-3950608814469977,-3950601224940198],[67272712,67109002,24519905293069738,24519907464403207],[67272712,67109004,-3950608765320955,-3950601274089200],[67272712,67141632,-222382391306796628,-222382344356494327],[67272712,67141637,-15222908177460183,-15222905730833912],[67272712,67141638,-697899269935994,-697890115243256],[67272712,67141762,-31143710514241570,-31143706687525880],[67272712,67141764,-697899214028262,-697890171151008],[67272712,67239936,-120352160799604924,-120352113794384070],[67272712,67239942,6623801151062805,6623803293231701],[67272712,67240066,6623801086208550,6623803358085955],[67272712,67240068,6623801159997192,6623803284297315],[67272712,67272712,-10692792130513058,-10692785489024336],[67272712,67272718,1975301882939439,1975303136765642],[67272712,67272844,1975301885115096,1975303134589986],[67272712,67633162,-932612781,932612782],[67272712,67633164,-3950606995955408,-3950603043454752],[67272712,67633288,1975300959240085,1975304060464993],[67272712,67665922,11272300812248450,11272303056635485],[67272712,67665924,11272299936568599,11272303932315336],[67272712,67666048,22544601642609286,22544606095158586],[67272712,67764226,-964466108,964466106],[67272712,67764228,11272298879893047,11272304988990891],[67272712,67764352,-13247606060429303,-13247602828159713],[67272712,67797002,11272301161280132,11272302707603802],[67272712,67797004,18593996124609637,18594001573748076],[67272712,67797128,11272301159430177,11272302709453757],[67272712,268435458,-13247605061578886,-13247603827010127],[67272712,268435460,-22544606285700820,-22544601452067054],[67272712,268435584,-13247605067077166,-13247603821511848],[67272712,268468234,-6623803341365525,-6623801102928978],[67272712,268468236,8599101370269630,8599108093729955],[67272712,268468360,-6623803346277521,-6623801098016984],[67272712,268566538,-6623803337001160,-6623801107293350],[67272712,268566540,-6623803284297315,-6623801159997192],[67272712,268566664,-6623803346277523,-6623801098016986],[67272712,268599300,-24519907477236870,-24519905280236082],[67272712,268959744,11272301159430178,11272302709453758],[67272712,268992520,22544601642609286,22544606095158586],[67272712,269090824,-13247606060429303,-13247602828159713],[67272712,269123584,1975300959240086,1975304060464994],[67272712,335544332,-24519907477236870,-24519905280236082],[67272712,335577090,-6623803337001160,-6623801107293350],[67272712,335577092,-6623803284297315,-6623801159997192],[67272712,335577216,-6623803346277523,-6623801098016986],[67272712,335675394,-6623803341365525,-6623801102928978],[67272712,335675396,8599101370269630,8599108093729955],[67272712,335675520,-6623803346277521,-6623801098016984],[67272712,335708170,-13247605061578886,-13247603827010127],[67272712,335708172,-22544606285700820,-22544601452067054],[67272712,335708296,-13247605067077166,-13247603821511848],[67272712,336068616,1975300959240086,1975304060464994],[67272712,336101376,-13247606060429303,-13247602828159713],[67272712,336199680,22544601642609286,22544606095158586],[67272712,336232456,11272301159430178,11272302709453758],[67272712,1073741826,-22544606311881030,-22544601425886842],[67272712,1073741828,-45089212389398762,-45089203086137004],[67272712,1073741952,-22544606281953756,-22544601455814116],[67272712,1073774602,-6623803293231701,-6623801151062805],[67272712,1073774604,-13247609434184624,-13247599454404401],[67272712,1073774728,-6623803284297315,-6623801159997192],[67272712,1073872906,8599101567032212,8599107896967374],[67272712,1073872908,-13247609394938084,-13247599493650961],[67272712,1073873032,8599101386783086,8599108077216494],[67272712,1073905666,-24519907495012400,-24519905262460552],[67272712,1073905668,-18594006149950118,-18593991548407578],[67272712,1073905792,-24519907464403207,-24519905293069738],[67272712,1074266112,18593996132872130,18594001565485586],[67272712,1074298888,11272299945646091,11272303923237845],[67272712,1074397192,11272298892173522,11272304976710416],[67272712,1074429952,-3950606982859932,-3950603056550226],[67272712,1140850698,-24519907495012400,-24519905262460552],[67272712,1140850700,-18594006149950118,-18593991548407578],[67272712,1140850824,-24519907464403207,-24519905293069738],[67272712,1140883458,8599101567032212,8599107896967374],[67272712,1140883460,-13247609394938084,-13247599493650961],[67272712,1140883584,8599101386783086,8599108077216494],[67272712,1140981762,-6623803293231701,-6623801151062805],[67272712,1140981764,-13247609434184624,-13247599454404401],[67272712,1140981888,-6623803284297315,-6623801159997192],[67272712,1141014538,-22544606311881030,-22544601425886842],[67272712,1141014540,-45089212389398762,-45089203086137004],[67272712,1141014664,-22544606281953756,-22544601455814116],[67272712,1141374984,-3950606982859932,-3950603056550226],[67272712,1141407744,11272298892173522,11272304976710416],[67272712,1141506048,11272299945646091,11272303923237845],[67272712,1141538824,18593996132872130,18594001565485586],[67272712,1342177280,1975301889664154,1975303130040923],[67272712,1342210056,-697899197873155,-697890187306122],[67272712,1342308360,6623801159997192,6623803284297315],[67272712,1342341120,-3950608753647640,-3950601285762513],[67272712,1409286152,-3950608753647640,-3950601285762513],[67272712,1409318912,6623801159997192,6623803284297315],[67272712,1409417216,-697899197873155,-697890187306122],[67272712,1409449992,1975301889664154,1975303130040923],[67272712,17592186044418,-13247605070627222,-13247603817961795],[67272712,17592186044420,18593996379768482,18594001318589224],[67272712,17592186044544,-13247605066127948,-13247603822461068],[67272712,17592186077194,-24519907503744101,-24519905253728852],[67272712,17592186077196,11272298711597012,11272305157286919],[67272712,17592186077320,-24519907494573587,-24519905262899363],[67272712,17592186175498,11272300803168551,11272303065715385],[67272712,17592186175500,11272300855685410,11272303013198523],[67272712,17592186175624,11272300807839789,11272303061044145],[67272712,17592186208260,-3950606183988306,-3950603855421852],[67272712,17592186568704,-9297000203068470,-9296998646110384],[67272712,17592186601480,11272300798196740,11272303070687196],[67272712,17592186699784,-974533465,974533467],[67272712,17592186732544,-20569302302299032,-20569300415763760],[67272712,17592253153292,-3950606183988306,-3950603855421852],[67272712,17592253186050,11272300803168551,11272303065715385],[67272712,17592253186052,11272300855685410,11272303013198523],[67272712,17592253186176,11272300807839789,11272303061044145],[67272712,17592253284354,-24519907503744101,-24519905253728852],[67272712,17592253284356,11272298711597012,11272305157286919],[67272712,17592253284480,-24519907494573587,-24519905262899363],[67272712,17592253317130,-13247605070627222,-13247603817961795],[67272712,17592253317132,18593996379768482,18594001318589224],[67272712,17592253317256,-13247605066127948,-13247603822461068],[67272712,17592253677576,-20569302302299032,-20569300415763760],[67272712,17592253710336,-974533465,974533467],[67272712,17592253808640,11272300798196740,11272303070687196],[67272712,17592253841416,-9297000203068470,-9296998646110384],[67272712,17592454512648,-13247606381210832,-13247602507378184],[67272712,17592454610952,-11272303079253853,-11272300789630083],[67272712,17592454643712,24519905280236082,24519907477236870],[67272712,17592521588744,24519905280236082,24519907477236870],[67272712,17592521621504,-11272303079253853,-11272300789630083],[67272712,17592521719808,-13247606381210832,-13247602507378184],[67272712,17593259786240,22544603247468479,22544604490299392],[67272712,17593259819016,17198204846179046,17198214081820128],[67272712,17593259917320,-11272303013198523,-11272300855685410],[67272712,17593259950080,16618692505223764,16618700173428866],[67272712,17593326895112,16618692505223764,16618700173428866],[67272712,17593326927872,-11272303013198523,-11272300855685410],[67272712,17593327026176,17198204846179046,17198214081820128],[67272712,17593327058952,22544603247468479,22544604490299392],[67272712,140738562129928,-15222908182009245,-15222905726284853],[67272712,140738562260992,15222905726284853,15222908182009245],[67272712,140738629206024,15222905726284853,15222908182009245],[67272712,140738629337088,-15222908182009245,-15222905726284853],[67272715,32769,4648499082464426,4648500342125002],[67272715,32770,-4648500342125002,-4648499082464426],[67272715,131073,-6623803293231701,-6623801151062805],[67272715,131074,6623801151062805,6623803293231701],[67272715,163849,-1975303106832961,-1975301912872117],[67272715,163850,1975301912872117,1975303106832961],[67272715,67108865,1975301912872117,1975303106832961],[67272715,67108866,-1975303106832961,-1975301912872117],[67272715,67141641,6623801151062805,6623803293231701],[67272715,67141642,-6623803293231701,-6623801151062805],[67272715,67239945,-4648500342125002,-4648499082464426],[67272715,67239946,4648499082464426,4648500342125002],[67272717,9,-13247605070627222,-13247603817961795],[67272717,12,13247603817961795,13247605070627222],[67272717,32769,1975301912872117,1975303106832961],[67272717,32772,-1975303106832961,-1975301912872117],[67272717,131073,-7321700242729086,-7321693586744675],[67272717,131076,-3950609278673694,-3950600760736484],[67272717,131080,-1975303106832961,-1975301912872117],[67272717,131085,-13247605070627222,-13247603817961795],[67272717,163840,13247603817961795,13247605070627222],[67272717,163845,1975301912872117,1975303106832961],[67272717,163849,-7321700242729086,-7321693586744675],[67272717,163852,18593996452163044,18594001246194656],[67272717,67108865,18593996452163044,18594001246194656],[67272717,67108868,-7321700242729086,-7321693586744675],[67272717,67108872,1975301912872117,1975303106832961],[67272717,67108877,13247603817961795,13247605070627222],[67272717,67141632,-13247605070627222,-13247603817961795],[67272717,67141637,-1975303106832961,-1975301912872117],[67272717,67141641,-3950609278673694,-3950600760736484],[67272717,67141644,-7321700242729086,-7321693586744675],[67272717,67239945,-1975303106832961,-1975301912872117],[67272717,67239948,1975301912872117,1975303106832961],[67272717,67272705,13247603817961795,13247605070627222],[67272717,67272708,-13247605070627222,-13247603817961795],[67272718,6,1975301882939439,1975303136765642],[67272718,12,-1975303136765642,-1975301882939439],[67272718,32770,-3950606243598603,-3950603795811556],[67272718,32772,-4648500342125002,-4648499082464426],[67272718,32776,8599103034002244,8599106429997343],[67272718,131074,47064508655028107,47064511840212707],[67272718,131076,8599103034002244,8599106429997343],[67272718,131080,-53688314836179204,-53688310103356116],[67272718,131086,1975301882939439,1975303136765642],[67272718,163840,-1975303136765642,-1975301882939439],[67272718,163846,47064508655028107,47064511840212707],[67272718,163850,-3950606243598603,-3950603795811556],[67272718,163852,-45089208874918688,-45089206600617048],[67272718,67108866,-45089208874918688,-45089206600617048],[67272718,67108868,-3950606243598603,-3950603795811556],[67272718,67108872,47064508655028107,47064511840212707],[67272718,67108878,-1975303136765642,-1975301882939439],[67272718,67141632,1975301882939439,1975303136765642],[67272718,67141638,-53688314836179204,-53688310103356116],[67272718,67141642,8599103034002244,8599106429997343],[67272718,67141644,47064508655028107,47064511840212707],[67272718,67239942,8599103034002244,8599106429997343],[67272718,67239946,-4648500342125002,-4648499082464426],[67272718,67239948,-3950606243598603,-3950603795811556],[67272718,67272706,-1975303136765642,-1975301882939439],[67272718,67272712,1975301882939439,1975303136765642],[67272768,32842,4648499057538562,4648500367050864],[67272768,32968,1975301857911278,1975303161793801],[67272768,131146,-6623803341365525,-6623801102928978],[67272768,131272,-24519907498972975,-24519905258499972],[67272768,163850,1975301889664154,1975303130040923],[67272768,163976,22544603248067364,22544604489700504],[67272768,557248,-13247605096148654,-13247603792440361],[67272768,655552,11272300812248450,11272303056635485],[67272768,688256,1975301885638544,1975303134066536],[67272768,67108938,1975301889664154,1975303130040923],[67272768,67109064,22544603248067364,22544604489700504],[67272768,67141642,-6623803341365525,-6623801102928978],[67272768,67141768,-24519907498972975,-24519905258499972],[67272768,67239946,4648499057538562,4648500367050864],[67272768,67240072,1975301857911278,1975303161793801],[67272768,67633344,1975301885638544,1975303134066536],[67272768,67666048,11272300812248450,11272303056635485],[67272768,67764352,-13247605096148654,-13247603792440361],[67272778,32770,-4648500367050864,-4648499057538562],[67272778,32832,4648499057538562,4648500367050864],[67272778,131074,6623801102928978,6623803341365525],[67272778,131136,-6623803341365525,-6623801102928978],[67272778,163850,1975301889664154,1975303130040923],[67272778,163912,-1975303130040923,-1975301889664154],[67272778,67108866,-1975303130040923,-1975301889664154],[67272778,67108928,1975301889664154,1975303130040923],[67272778,67141642,-6623803341365525,-6623801102928978],[67272778,67141704,6623801102928978,6623803341365525],[67272778,67239946,4648499057538562,4648500367050864],[67272778,67240008,-4648500367050864,-4648499057538562],[67272832,0,-3950606863625138,-3950603175785018],[67272832,12,-1975303134589986,-1975301885115096],[67272832,32896,6623798624404334,6623805819890177],[67272832,32906,-4648500367050864,-4648499057538562],[67272832,32908,-1975303102434961,-1975301917270118],[67272832,32968,-1975303161793801,-1975301857911278],[67272832,33928,-4648500337588616,-4648499087000812],[67272832,131200,-4648505793203474,-4648493631385954],[67272832,131210,6623801102928978,6623803341365525],[67272832,131212,-3950608765320955,-3950601274089200],[67272832,131272,24519905258499972,24519907498972975],[67272832,132232,6623801159997192,6623803284297315],[67272832,163840,-5925910964282679,-5925904094832560],[67272832,163850,-1975303130040923,-1975301889664154],[67272832,163852,3950601736070570,3950608303339582],[67272832,163912,-22544604489700504,-22544603248067364],[67272832,164872,-1975303102434961,-1975301917270118],[67272832,524292,-22544604497985104,-22544603239782766],[67272832,524296,-1975304066969121,-1975300952735957],[67272832,557192,-3950608267983247,-3950601771426911],[67272832,557248,13247603792440361,13247605096148654],[67272832,558208,13247603822433492,13247605066155522],[67272832,655492,-26495209992202640,-26495207784975390],[67272832,655496,26495204430640140,26495213346537888],[67272832,655552,-11272303056635485,-11272300812248450],[67272832,656512,-11272302995044411,-11272300873839524],[67272832,688132,3950603919085972,3950606120324188],[67272832,688136,-24519909487239803,-24519903270233145],[67272832,688192,-1975303134066536,-1975301885638544],[67272832,689152,-1975303102468593,-1975301917236486],[67272832,1605760,-1975303102468593,-1975301917236486],[67272832,1704064,24519905365967204,24519907391505747],[67272832,1736704,-22544604430576096,-22544603307191776],[67272832,67108992,-5925910964282679,-5925904094832560],[67272832,67109002,-1975303130040923,-1975301889664154],[67272832,67109004,3950601736070570,3950608303339582],[67272832,67109064,-22544604489700504,-22544603248067364],[67272832,67110024,-1975303102434961,-1975301917270118],[67272832,67141632,-4648505793203474,-4648493631385954],[67272832,67141642,6623801102928978,6623803341365525],[67272832,67141644,-3950608765320955,-3950601274089200],[67272832,67141704,24519905258499972,24519907498972975],[67272832,67142664,6623801159997192,6623803284297315],[67272832,67239936,6623798624404334,6623805819890177],[67272832,67239946,-4648500367050864,-4648499057538562],[67272832,67239948,-1975303102434961,-1975301917270118],[67272832,67240008,-1975303161793801,-1975301857911278],[67272832,67240968,-4648500337588616,-4648499087000812],[67272832,67272832,-3950606863625138,-3950603175785018],[67272832,67272844,-1975303134589986,-1975301885115096],[67272832,67633284,3950603919085972,3950606120324188],[67272832,67633288,-24519909487239803,-24519903270233145],[67272832,67633344,-1975303134066536,-1975301885638544],[67272832,67634304,-1975303102468593,-1975301917236486],[67272832,67665924,-26495209992202640,-26495207784975390],[67272832,67665928,26495204430640140,26495213346537888],[67272832,67665984,-11272303056635485,-11272300812248450],[67272832,67666944,-11272302995044411,-11272300873839524],[67272832,67764232,-3950608267983247,-3950601771426911],[67272832,67764288,13247603792440361,13247605096148654],[67272832,67765248,13247603822433492,13247605066155522],[67272832,67797124,-22544604497985104,-22544603239782766],[67272832,67797128,-1975304066969121,-1975300952735957],[67272832,68681856,-22544604430576096,-22544603307191776],[67272832,68714496,24519905365967204,24519907391505747],[67272832,68812800,-1975303102468593,-1975301917236486],[67272832,268435464,13247603821511848,13247605067077166],[67272832,268468360,6623801098016984,6623803346277521],[67272832,268566664,6623801098016986,6623803346277523],[67272832,268959744,13247603826875223,13247605061713792],[67272832,268992640,3950601491169156,3950608548241002],[67272832,269090944,11272297936924019,11272305931959916],[67272832,269123584,-1975303130061553,-1975301889643525],[67272832,335577096,6623801098016986,6623803346277523],[67272832,335675400,6623801098016984,6623803346277521],[67272832,335708296,13247603821511848,13247605067077166],[67272832,336068736,-1975303130061553,-1975301889643525],[67272832,336101376,11272297936924019,11272305931959916],[67272832,336199680,3950601491169156,3950608548241002],[67272832,336232576,13247603826875223,13247605061713792],[67272832,1073741832,22544601455814116,22544606281953756],[67272832,1073774728,6623801159997192,6623803284297315],[67272832,1073873032,-8599108077216494,-8599101386783086],[67272832,1073905672,24519905293069738,24519907464403207],[67272832,1074266112,-18594001255457720,-18593996442899990],[67272832,1074299008,-11272302995044411,-11272300873839524],[67272832,1074397312,-11272305272819252,-11272298596064681],[67272832,1074429952,3950603932147814,3950606107262344],[67272832,1140850824,24519905293069738,24519907464403207],[67272832,1140883464,-8599108077216494,-8599101386783086],[67272832,1140981768,6623801159997192,6623803284297315],[67272832,1141014664,22544601455814116,22544606281953756],[67272832,1141375104,3950603932147814,3950606107262344],[67272832,1141407744,-11272305272819252,-11272298596064681],[67272832,1141506048,-11272302995044411,-11272300873839524],[67272832,1141538944,-18594001255457720,-18593996442899990],[67272832,17592186044424,13247603822461068,13247605066127948],[67272832,17592186077320,24519905262899363,24519907494573587],[67272832,17592186175624,-11272303061044145,-11272300807839789],[67272832,17592186568704,13247603811716528,13247605076872486],[67272832,17592186601600,-11272303070687196,-11272300798196740],[67272832,17592186699904,24519905244697076,24519907512775874],[67272832,17592253186056,-11272303061044145,-11272300807839789],[67272832,17592253284360,24519905262899363,24519907494573587],[67272832,17592253317256,13247603822461068,13247605066127948],[67272832,17592253710336,24519905244697076,24519907512775874],[67272832,17592253808640,-11272303070687196,-11272300798196740],[67272832,17592253841536,13247603811716528,13247605076872486],[67272842,32770,-1975303161793801,-1975301857911278],[67272842,32776,6623801086208550,6623803358085955],[67272842,32896,-4648500367050864,-4648499057538562],[67272842,131074,24519905258499972,24519907498972975],[67272842,131080,-31143710514241570,-31143706687525880],[67272842,131200,6623801102928978,6623803341365525],[67272842,163850,-1975303130040923,-1975301889664154],[67272842,163970,24519905293069738,24519907464403207],[67272842,163976,-22544604489700504,-22544603248067364],[67272842,67108866,-22544604489700504,-22544603248067364],[67272842,67108872,24519905293069738,24519907464403207],[67272842,67108992,-1975303130040923,-1975301889664154],[67272842,67141642,6623801102928978,6623803341365525],[67272842,67141762,-31143710514241570,-31143706687525880],[67272842,67141768,24519905258499972,24519907498972975],[67272842,67239946,-4648500367050864,-4648499057538562],[67272842,67240066,6623801086208550,6623803358085955],[67272842,67240072,-1975303161793801,-1975301857911278],[67272844,12,-1975303134589986,-1975301885115096],[67272844,132,1975301885115096,1975303134589986],[67272844,32772,-4648500337588616,-4648499087000812],[67272844,32776,8599103045112288,8599106418887301],[67272844,32896,-3950606237024947,-3950603802385214],[67272844,131076,8599103045112288,8599106418887301],[67272844,131080,-53688314809080322,-53688310130455008],[67272844,131200,47064508673192612,47064511822048211],[67272844,131212,1975301885115096,1975303134589986],[67272844,163840,-1975303134589986,-1975301885115096],[67272844,163852,-45089208861152192,-45089206614383552],[67272844,163972,47064508673192612,47064511822048211],[67272844,163976,-3950606237024947,-3950603802385214],[67272844,67108868,-3950606237024947,-3950603802385214],[67272844,67108872,47064508673192612,47064511822048211],[67272844,67108992,-45089208861152192,-45089206614383552],[67272844,67109004,-1975303134589986,-1975301885115096],[67272844,67141632,1975301885115096,1975303134589986],[67272844,67141644,47064508673192612,47064511822048211],[67272844,67141764,-53688314809080322,-53688310130455008],[67272844,67141768,8599103045112288,8599106418887301],[67272844,67239948,-3950606237024947,-3950603802385214],[67272844,67240068,8599103045112288,8599106418887301],[67272844,67240072,-4648500337588616,-4648499087000812],[67272844,67272712,1975301885115096,1975303134589986],[67272844,67272832,-1975303134589986,-1975301885115096],[67272904,32832,1975301857911278,1975303161793801],[67272904,32896,-1975303161793801,-1975301857911278],[67272904,131136,-24519907498972975,-24519905258499972],[67272904,131200,24519905258499972,24519907498972975],[67272904,163912,-22544604489700504,-22544603248067364],[67272904,163976,22544603248067364,22544604489700504],[67272904,67108928,22544603248067364,22544604489700504],[67272904,67108992,-22544604489700504,-22544603248067364],[67272904,67141704,24519905258499972,24519907498972975],[67272904,67141768,-24519907498972975,-24519905258499972],[67272904,67240008,-1975303161793801,-1975301857911278],[67272904,67240072,1975301857911278,1975303161793801],[67273728,33928,4648499087000812,4648500337588616],[67273728,132232,-6623803284297315,-6623801159997192],[67273728,163976,1975301917270118,1975303102434961],[67273728,558208,-13247605066155522,-13247603822433492],[67273728,656512,11272300873839524,11272302995044411],[67273728,688256,1975301917236486,1975303102468593],[67273728,1606656,1975301917236486,1975303102468593],[67273728,1704960,-24519907391505747,-24519905365967204],[67273728,1736704,22544603307191776,22544604430576096],[67273728,67110024,1975301917270118,1975303102434961],[67273728,67141768,-6623803284297315,-6623801159997192],[67273728,67240072,4648499087000812,4648500337588616],[67273728,67634304,1975301917236486,1975303102468593],[67273728,67666048,11272300873839524,11272302995044411],[67273728,67764352,-13247605066155522,-13247603822433492],[67273728,68682752,22544603307191776,22544604430576096],[67273728,68714496,-24519907391505747,-24519905365967204],[67273728,68812800,1975301917236486,1975303102468593],[67273864,32896,-4648500337588616,-4648499087000812],[67273864,33792,4648499087000812,4648500337588616],[67273864,131200,6623801159997192,6623803284297315],[67273864,132096,-6623803284297315,-6623801159997192],[67273864,163976,1975301917270118,1975303102434961],[67273864,164872,-1975303102434961,-1975301917270118],[67273864,67108992,-1975303102434961,-1975301917270118],[67273864,67109888,1975301917270118,1975303102434961],[67273864,67141768,-6623803284297315,-6623801159997192],[67273864,67142664,6623801159997192,6623803284297315],[67273864,67240072,4648499087000812,4648500337588616],[67273864,67240968,-4648500337588616,-4648499087000812],[67633152,10,11272301423813928,11272302445070008],[67633152,12,11272301474344213,11272302394539721],[67633152,136,20569295950214876,20569306767847923],[67633152,32772,-3950605484998596,-3950604554411562],[67633152,32776,-13945502255682351,-13945496018085931],[67633152,32896,-1975305275431532,-1975299744273546],[67633152,131074,6623798927600937,6623805516693572],[67633152,131076,-19871412444254049,-19871400888629471],[67633152,131080,-168694080794423276,-168694029929332347],[67633152,131136,-1975304416511920,-1975300603193161],[67633152,131200,218159636069763092,218159705380447032],[67633152,131210,1975301823150576,1975303196554503],[67633152,131212,-13247605066127948,-13247603822461068],[67633152,131272,-13247605134312055,-13247603754276960],[67633152,132096,11272298579605019,11272305289278916],[67633152,132232,1975301885115096,1975303134589986],[67633152,163976,31841601898078136,31841604688868588],[67633152,1048584,-4648502626375994,-4648496798213434],[67633152,1048704,-4648505765491449,-4648493659097978],[67633152,1179784,-24519908161078011,-24519904596394939],[67633152,1212424,-11272302664826744,-11272301204057192],[67633152,1212544,24519905365967204,24519907391505747],[67633152,67633162,11272301423813928,11272302445070008],[67633152,67633164,11272301474344213,11272302394539721],[67633152,67633288,20569295950214876,20569306767847923],[67633152,67665924,-3950605484998596,-3950604554411562],[67633152,67665928,-13945502255682351,-13945496018085931],[67633152,67666048,-1975305275431532,-1975299744273546],[67633152,67764226,6623798927600937,6623805516693572],[67633152,67764228,-19871412444254049,-19871400888629471],[67633152,67764232,-168694080794423276,-168694029929332347],[67633152,67764288,-1975304416511920,-1975300603193161],[67633152,67764352,218159636069763092,218159705380447032],[67633152,67764362,1975301823150576,1975303196554503],[67633152,67764364,-13247605066127948,-13247603822461068],[67633152,67764424,-13247605134312055,-13247603754276960],[67633152,67765248,11272298579605019,11272305289278916],[67633152,67765384,1975301885115096,1975303134589986],[67633152,67797128,31841601898078136,31841604688868588],[67633152,68681736,-4648502626375994,-4648496798213434],[67633152,68681856,-4648505765491449,-4648493659097978],[67633152,68812936,-24519908161078011,-24519904596394939],[67633152,68845576,-11272302664826744,-11272301204057192],[67633152,68845696,24519905365967204,24519907391505747],[67633152,134217856,-4648502477690436,-4648496946898994],[67633152,201851008,-4648502477690436,-4648496946898994],[67633152,268435464,20569290559759355,20569312158303430],[67633152,268435520,-4648501614770600,-4648497809818828],[67633152,268435584,-85257851747913146,-85257795604898244],[67633152,268436480,8599101370269630,8599108093729955],[67633152,268566664,-35792211590820525,-35792205035536364],[67633152,268599304,-1975304058435710,-1975300961269370],[67633152,268599424,-9297001129565978,-9296997719612879],[67633152,269615112,-6623803999983306,-6623800444311202],[67633152,269615232,4648493659097978,4648505765491449],[67633152,336068616,20569290559759355,20569312158303430],[67633152,336068672,-4648501614770600,-4648497809818828],[67633152,336068736,-85257851747913146,-85257795604898244],[67633152,336069632,8599101370269630,8599108093729955],[67633152,336199816,-35792211590820525,-35792205035536364],[67633152,336232456,-1975304058435710,-1975300961269370],[67633152,336232576,-9297001129565978,-9296997719612879],[67633152,337248264,-6623803999983306,-6623800444311202],[67633152,337248384,4648493659097978,4648505765491449],[67633152,402784384,11272300231229941,11272303637653996],[67633152,403701888,47064508673158980,47064511822081843],[67633152,403702784,1975301917236486,1975303102468593],[67633152,470417536,11272300231229941,11272303637653996],[67633152,471335040,47064508673158980,47064511822081843],[67633152,471335936,1975301917236486,1975303102468593],[67633152,1073741832,15920798736625752,15920804556847610],[67633152,1073741952,6623797717533688,6623806726760819],[67633152,1073873032,3950603716820562,3950606322589598],[67633152,1073905668,1975301917270118,1975303102434961],[67633152,1073905672,-24519907697996171,-24519905059476780],[67633152,1073905792,-26495210066406118,-26495207710771912],[67633152,1074921480,4648499087000812,4648500337588616],[67633152,1074921600,-11272302995044411,-11272300873839524],[67633152,1141374984,15920798736625752,15920804556847610],[67633152,1141375104,6623797717533688,6623806726760819],[67633152,1141506184,3950603716820562,3950606322589598],[67633152,1141538820,1975301917270118,1975303102434961],[67633152,1141538824,-24519907697996171,-24519905059476780],[67633152,1141538944,-26495210066406118,-26495207710771912],[67633152,1142554632,4648499087000812,4648500337588616],[67633152,1142554752,-11272302995044411,-11272300873839524],[67633152,1342308360,8599102955928264,8599106508071324],[67633152,1342308480,-6623806726760819,-6623797717533688],[67633152,1343225984,6623801159963560,6623803284330947],[67633152,1409941512,8599102955928264,8599106508071324],[67633152,1409941632,-6623806726760819,-6623797717533688],[67633152,1410859136,6623801159963560,6623803284330947],[67633152,1476395136,-13247605033203059,-13247603855385956],[67633152,1544028288,-13247605033203059,-13247603855385956],[67633152,17592186044424,-7321700093132675,-7321693736341099],[67633152,17592186044544,3950600140436346,3950609898973822],[67633152,17592186175624,45089206340998288,45089209134537452],[67633152,17592186208264,9296998646110384,9297000203068470],[67633152,17592186208384,-13247605076872486,-13247603811716528],[67633152,17592187224072,1975301858410281,1975303161294799],[67633152,17592187224192,-11272303070687196,-11272300798196740],[67633152,17592253677576,-7321700093132675,-7321693736341099],[67633152,17592253677696,3950600140436346,3950609898973822],[67633152,17592253808776,45089206340998288,45089209134537452],[67633152,17592253841416,9296998646110384,9297000203068470],[67633152,17592253841536,-13247605076872486,-13247603811716528],[67633152,17592254857224,1975301858410281,1975303161294799],[67633152,17592254857344,-11272303070687196,-11272300798196740],[67633152,17592454610952,11272300039541091,11272303829342841],[67633152,17592454611072,-3950609898973822,-3950600140436346],[67633152,17592455528576,24519905244697076,24519907512775874],[67633152,17592522244104,11272300039541091,11272303829342841],[67633152,17592522244224,-3950609898973822,-3950600140436346],[67633152,17592523161728,24519905244697076,24519907512775874],[67633152,17592588697728,-13247605076872486,-13247603811716528],[67633152,17592656330880,-13247605076872486,-13247603811716528],[67633152,17593259917320,-11272303061044145,-11272300807839789],[67633152,17593259917440,24519905244697076,24519907512775874],[67633152,17593327550472,-11272303061044145,-11272300807839789],[67633152,17593327550592,24519905244697076,24519907512775874],[67633152,17593528221824,-11272303070687196,-11272300798196740],[67633152,17593595854976,-11272303070687196,-11272300798196740],[67633152,35184372088960,-7321700093132675,-7321693736341099],[67633152,35184439722112,-7321700093132675,-7321693736341099],[67633152,35184640655488,11272300039541091,11272303829342841],[67633152,35184641572992,-11272303061044145,-11272300807839789],[67633152,35184708288640,11272300039541091,11272303829342841],[67633152,35184709206144,-11272303061044145,-11272300807839789],[67633152,35184774742144,9296998646110384,9297000203068470],[67633152,35184842375296,9296998646110384,9297000203068470],[67633152,35185714266240,1975301858410281,1975303161294799],[67633152,35185781899392,1975301858410281,1975303161294799],[67633152,52776826568832,45089206340998288,45089209134537452],[67633152,52776894201984,45089206340998288,45089209134537452],[67633158,131080,-31143710514241570,-31143706687525880],[67633158,131086,-31143710514241570,-31143706687525880],[67633158,67764232,-31143710514241570,-31143706687525880],[67633158,67764238,-31143710514241570,-31143706687525880],[67633161,131074,6623801086208550,6623803358085955],[67633161,131076,24519905293069738,24519907464403207],[67633161,131083,6623801086208550,6623803358085955],[67633161,131085,24519905293069738,24519907464403207],[67633161,67764226,6623801086208550,6623803358085955],[67633161,67764228,24519905293069738,24519907464403207],[67633161,67764235,6623801086208550,6623803358085955],[67633161,67764237,24519905293069738,24519907464403207],[67633162,0,22544602847627856,22544604890140016],[67633162,10,11272301423813928,11272302445070008],[67633162,131073,-6623803358085955,-6623801086208550],[67633162,131076,6623801086208550,6623803358085955],[67633162,131083,-6623803358085955,-6623801086208550],[67633162,131086,6623801086208550,6623803358085955],[67633162,131136,-6623803429142575,-6623801015151933],[67633162,131146,-6623803429142575,-6623801015151933],[67633162,131200,8599102838302509,8599106625697078],[67633162,131210,6623801015151933,6623803429142575],[67633162,524290,-4648502836441441,-4648496588147988],[67633162,524296,15920798525905540,15920804767567825],[67633162,655490,51015112847771814,51015117686879173],[67633162,655496,-49039815165502764,-49039810349443144],[67633162,688130,-932612781,932612782],[67633162,688136,-932612782,932612781],[67633162,1703938,6623801079994226,6623803364300278],[67633162,1703944,-6623803364300278,-6623801079994226],[67633162,67108866,15920798525905540,15920804767567825],[67633162,67108872,-4648502836441441,-4648496588147988],[67633162,67240066,-49039815165502764,-49039810349443144],[67633162,67240072,51015112847771814,51015117686879173],[67633162,67272706,-932612782,932612781],[67633162,67272712,-932612781,932612782],[67633162,67633152,11272301423813928,11272302445070008],[67633162,67633162,22544602847627856,22544604890140016],[67633162,67764225,-6623803358085955,-6623801086208550],[67633162,67764228,6623801086208550,6623803358085955],[67633162,67764235,-6623803358085955,-6623801086208550],[67633162,67764238,6623801086208550,6623803358085955],[67633162,67764288,-6623803429142575,-6623801015151933],[67633162,67764298,-6623803429142575,-6623801015151933],[67633162,67764352,6623801015151933,6623803429142575],[67633162,67764362,8599102838302509,8599106625697078],[67633162,68288514,-6623803364300278,-6623801079994226],[67633162,68288520,6623801079994226,6623803364300278],[67633162,269090818,17896101722460043,17896106590718401],[67633162,269090824,-17896106590718401,-17896101722460043],[67633162,335675394,-17896106590718401,-17896101722460043],[67633162,335675400,17896101722460043,17896106590718401],[67633162,1074397186,-6623803358085955,-6623801086208550],[67633162,1074397192,6623801086208550,6623803358085955],[67633162,1140981762,6623801086208550,6623803358085955],[67633162,1140981768,-6623803358085955,-6623801086208550],[67633162,17592186699778,-24519907574746803,-24519905182726150],[67633162,17592186699784,24519905182726150,24519907574746803],[67633162,17592253284354,24519905182726150,24519907574746803],[67633162,17592253284360,-24519907574746803,-24519905182726150],[67633164,0,22544602948688426,22544604789079442],[67633164,12,11272301474344213,11272302394539721],[67633164,131073,-24519907464403207,-24519905293069738],[67633164,131074,24519905293069738,24519907464403207],[67633164,131085,-24519907464403207,-24519905293069738],[67633164,131086,24519905293069738,24519907464403207],[67633164,131200,11272300226701508,11272303642182425],[67633164,131212,24519905292829456,24519907464643493],[67633164,163840,-77510327129120619,-77510321182708389],[67633164,163852,-49039814917723134,-49039810597222762],[67633164,524292,-4648502614033929,-4648496810555499],[67633164,524296,15920798744910351,15920804548563011],[67633164,655492,35792206070739152,35792210555617732],[67633164,655496,-49039814989147174,-49039810525798726],[67633164,688132,-3950606995955408,-3950603043454752],[67633164,688136,-24519908352868090,-24519904404604862],[67633164,1703940,6623801159997192,6623803284297315],[67633164,1703944,-6623803284297315,-6623801159997192],[67633164,67108868,15920798744910351,15920804548563011],[67633164,67108872,-4648502614033929,-4648496810555499],[67633164,67240068,-49039814989147174,-49039810525798726],[67633164,67240072,35792206070739152,35792210555617732],[67633164,67272708,-24519908352868090,-24519904404604862],[67633164,67272712,-3950606995955408,-3950603043454752],[67633164,67633152,11272301474344213,11272302394539721],[67633164,67633164,22544602948688426,22544604789079442],[67633164,67764225,-24519907464403207,-24519905293069738],[67633164,67764226,24519905293069738,24519907464403207],[67633164,67764237,-24519907464403207,-24519905293069738],[67633164,67764238,24519905293069738,24519907464403207],[67633164,67764352,24519905292829456,24519907464643493],[67633164,67764364,11272300226701508,11272303642182425],[67633164,67796992,-49039814917723134,-49039810597222762],[67633164,67797004,-77510327129120619,-77510321182708389],[67633164,68288516,-6623803284297315,-6623801159997192],[67633164,68288520,6623801159997192,6623803284297315],[67633164,269090820,17896101912222451,17896106400955991],[67633164,269090824,-17896106400955991,-17896101912222451],[67633164,335675396,-17896106400955991,-17896101912222451],[67633164,335675400,17896101912222451,17896106400955991],[67633164,1074397188,-6623803284297315,-6623801159997192],[67633164,1074397192,6623801159997192,6623803284297315],[67633164,1140981764,6623801159997192,6623803284297315],[67633164,1140981768,-6623803284297315,-6623801159997192],[67633164,17592186699780,-24519907494573587,-24519905262899363],[67633164,17592186699784,24519905262899363,24519907494573587],[67633164,17592253284356,24519905262899363,24519907494573587],[67633164,17592253284360,-24519907494573587,-24519905262899363],[67633224,131074,6623801015151933,6623803429142575],[67633224,131146,6623801015151933,6623803429142575],[67633224,131200,-3950609856348444,-3950600183061726],[67633224,131272,49039810351907138,49039815163038758],[67633224,655552,-52990420208255582,-52990415346100484],[67633224,67240072,-52990420208255582,-52990415346100484],[67633224,67764226,6623801015151933,6623803429142575],[67633224,67764298,6623801015151933,6623803429142575],[67633224,67764352,49039810351907138,49039815163038758],[67633224,67764424,-3950609856348444,-3950600183061726],[67633224,268435584,6623801015151933,6623803429142575],[67633224,268435656,6623801015151933,6623803429142575],[67633224,336068736,6623801015151933,6623803429142575],[67633224,336068808,6623801015151933,6623803429142575],[67633282,131080,-53688315226712860,-53688309712822464],[67633282,131136,-1975303194709763,-1975301824995317],[67633282,131210,-697899880612376,-697889504566882],[67633282,131266,-1975303194709763,-1975301824995317],[67633282,655370,-52990420208255582,-52990415346100484],[67633282,67240072,-52990420208255582,-52990415346100484],[67633282,67764232,-697899880612376,-697889504566882],[67633282,67764288,-1975303194709763,-1975301824995317],[67633282,67764362,-53688315226712860,-53688309712822464],[67633282,67764418,-1975303194709763,-1975301824995317],[67633282,268435464,-1975303194709763,-1975301824995317],[67633282,268435520,-4648500405191522,-4648499019397906],[67633282,268435594,-1975303194709763,-1975301824995317],[67633282,268435650,-4648500405191522,-4648499019397906],[67633282,336068616,-1975303194709763,-1975301824995317],[67633282,336068672,-4648500405191522,-4648499019397906],[67633282,336068746,-1975303194709763,-1975301824995317],[67633282,336068802,-4648500405191522,-4648499019397906],[67633284,131080,-33119013675829617,-33119008545642919],[67633284,131212,4648494875353022,4648504549236406],[67633284,163972,-3950606120324188,-3950603919085972],[67633284,655372,-37767513094879325,-37767508551182639],[67633284,688132,3950603919085972,3950606120324188],[67633284,67240072,-37767513094879325,-37767508551182639],[67633284,67272832,3950603919085972,3950606120324188],[67633284,67764232,4648494875353022,4648504549236406],[67633284,67764364,-33119013675829617,-33119008545642919],[67633284,67796992,-3950606120324188,-3950603919085972],[67633284,268435464,-4648500367937248,-4648499056652179],[67633284,268435596,-4648500367937248,-4648499056652179],[67633284,336068616,-4648500367937248,-4648499056652179],[67633284,336068748,-4648500367937248,-4648499056652179],[67633288,0,33237389243031454,33237396114273808],[67633288,136,20569295950214876,20569306767847923],[67633288,131074,47064508360216381,47064512135024435],[67633288,131076,8599102944565871,8599106519433716],[67633288,131136,-7321700711066549,-7321693118407216],[67633288,131210,-3950609326662792,-3950600712747379],[67633288,131212,-42416014583842896,-42416006486808497],[67633288,131272,-47064512135024435,-47064508360216381],[67633288,132096,31143705012464284,31143712189303175],[67633288,132232,-8599106519433716,-8599102944565871],[67633288,163976,22544602310993060,22544605426774810],[67633288,524296,20569290552159553,20569312165903224],[67633288,524416,-7901216780706716,-7901203298113598],[67633288,655370,51015112847771814,51015117686879173],[67633288,655372,51015113006242213,51015117528408767],[67633288,655552,39742811423957886,39742815241809165],[67633288,656512,39742811531898000,39742815133869046],[67633288,688136,-24519909487239803,-24519903270233145],[67633288,688256,1975300959240085,1975304060464993],[67633288,1179648,-39742815133869046,-39742811531898000],[67633288,1703944,-17896106405885420,-17896101907293023],[67633288,1704064,-21846713226576023,-21846705126012580],[67633288,67108872,-7901216780706716,-7901203298113598],[67633288,67108992,20569290552159553,20569312165903224],[67633288,67240008,39742811423957886,39742815241809165],[67633288,67240066,51015112847771814,51015117686879173],[67633288,67240068,51015113006242213,51015117528408767],[67633288,67240968,39742811531898000,39742815133869046],[67633288,67272712,1975300959240085,1975304060464993],[67633288,67272832,-24519909487239803,-24519903270233145],[67633288,67633152,20569295950214876,20569306767847923],[67633288,67633288,33237389243031454,33237396114273808],[67633288,67764226,-3950609326662792,-3950600712747379],[67633288,67764228,-42416014583842896,-42416006486808497],[67633288,67764288,-47064512135024435,-47064508360216381],[67633288,67764362,47064508360216381,47064512135024435],[67633288,67764364,8599102944565871,8599106519433716],[67633288,67764424,-7321700711066549,-7321693118407216],[67633288,67765248,-8599106519433716,-8599102944565871],[67633288,67765384,31143705012464284,31143712189303175],[67633288,67796992,22544602310993060,22544605426774810],[67633288,68288520,-21846713226576023,-21846705126012580],[67633288,68288640,-17896106405885420,-17896101907293023],[67633288,68812936,-39742815133869046,-39742811531898000],[67633288,268435458,1975301824995317,1975303194709763],[67633288,268435460,4648499056652179,4648500367937248],[67633288,268435520,-1975303194709763,-1975301824995317],[67633288,268435594,1975301824995317,1975303194709763],[67633288,268435596,4648499056652179,4648500367937248],[67633288,268435656,-1975303194709763,-1975301824995317],[67633288,268436480,-4648500367937248,-4648499056652179],[67633288,268436616,-4648500367937248,-4648499056652179],[67633288,268566528,-35792211590820525,-35792205035536364],[67633288,268566664,56941019321316304,56941026272449914],[67633288,269090824,-79485635001138468,-79485618330395612],[67633288,269090944,-13247611732520567,-13247597156068460],[67633288,270008328,6623801098016986,6623803346277523],[67633288,270008448,-6623803346277523,-6623801098016986],[67633288,335675400,-13247611732520567,-13247597156068460],[67633288,335675520,-79485635001138468,-79485618330395612],[67633288,336068610,1975301824995317,1975303194709763],[67633288,336068612,4648499056652179,4648500367937248],[67633288,336068672,-1975303194709763,-1975301824995317],[67633288,336068746,1975301824995317,1975303194709763],[67633288,336068748,4648499056652179,4648500367937248],[67633288,336068808,-1975303194709763,-1975301824995317],[67633288,336069632,-4648500367937248,-4648499056652179],[67633288,336069768,-4648500367937248,-4648499056652179],[67633288,336199680,56941019321316304,56941026272449914],[67633288,336199816,-35792211590820525,-35792205035536364],[67633288,336592904,-6623803346277523,-6623801098016986],[67633288,336593024,6623801098016986,6623803346277523],[67633288,403177480,-1975303134066536,-1975301885638544],[67633288,403177600,1975301885638544,1975303134066536],[67633288,469762056,1975301885638544,1975303134066536],[67633288,469762176,-1975303134066536,-1975301885638544],[67633288,1073873032,28470509589568145,28470513207314965],[67633288,1074397192,-8599108332258679,-8599101131740910],[67633288,1074397312,-19871408457827235,-19871404875056286],[67633288,1140981768,-19871408457827235,-19871404875056286],[67633288,1140981888,-8599108332258679,-8599101131740910],[67633288,1141506048,28470509589568145,28470513207314965],[67633288,1342701576,-4648500367937249,-4648499056652180],[67633288,1342701696,4648499056652180,4648500367937249],[67633288,1409286152,4648499056652180,4648500367937249],[67633288,1409286272,-4648500367937249,-4648499056652180],[67633288,17592186175624,49039810952496628,49039814562449270],[67633288,17592186699784,-11272305547187129,-11272298321696800],[67633288,17592186699904,-37767512630799828,-37767509015262141],[67633288,17592253284360,-37767512630799828,-37767509015262141],[67633288,17592253284480,-11272305547187129,-11272298321696800],[67633288,17592253808640,49039810952496628,49039814562449270],[67633288,17592455004168,-1975303200228061,-1975301819477018],[67633288,17592455004288,1975301819477018,1975303200228061],[67633288,17592521588744,1975301819477018,1975303200228061],[67633288,17592521588864,-1975303200228061,-1975301819477018],[67633288,35184641048584,13247603750907644,13247605137681374],[67633288,35184641048704,-13247605137681374,-13247603750907644],[67633288,35184707633160,-13247605137681374,-13247603750907644],[67633288,35184707633280,13247603750907644,13247605137681374],[67633344,131074,1975301824995317,1975303194709763],[67633344,131080,-1975303194709763,-1975301824995317],[67633344,131266,1975301824995317,1975303194709763],[67633344,131272,-15222908329021818,-15222905579272277],[67633344,131328,1975301857911278,1975303161793801],[67633344,131520,1975301857911278,1975303161793801],[67633344,132096,-1975303161793801,-1975301857911278],[67633344,132288,-1975303161793801,-1975301857911278],[67633344,524352,8599101184095716,8599108279903872],[67633344,524416,-8599108279903872,-8599101184095716],[67633344,655432,39742811423957886,39742815241809165],[67633344,655496,-26495210275362748,-26495207501815288],[67633344,688192,-1975303134066536,-1975301885638544],[67633344,688256,1975301885638544,1975303134066536],[67633344,1704000,-11272303056635485,-11272300812248450],[67633344,1704064,11272300812248450,11272303056635485],[67633344,67108928,-8599108279903872,-8599101184095716],[67633344,67108992,8599101184095716,8599108279903872],[67633344,67240008,-26495210275362748,-26495207501815288],[67633344,67240072,39742811423957886,39742815241809165],[67633344,67272768,1975301885638544,1975303134066536],[67633344,67272832,-1975303134066536,-1975301885638544],[67633344,67764226,1975301824995317,1975303194709763],[67633344,67764232,-15222908329021818,-15222905579272277],[67633344,67764418,1975301824995317,1975303194709763],[67633344,67764424,-1975303194709763,-1975301824995317],[67633344,67764480,1975301857911278,1975303161793801],[67633344,67764672,1975301857911278,1975303161793801],[67633344,67765248,-1975303161793801,-1975301857911278],[67633344,67765440,-1975303161793801,-1975301857911278],[67633344,68288576,11272300812248450,11272303056635485],[67633344,68288640,-11272303056635485,-11272300812248450],[67633344,268435458,4648499019397906,4648500405191522],[67633344,268435464,-4648500405191522,-4648499019397906],[67633344,268435650,4648499019397906,4648500405191522],[67633344,268435656,-4648500405191522,-4648499019397906],[67633344,268435712,4648499057538562,4648500367050864],[67633344,268435904,4648499057538562,4648500367050864],[67633344,268436480,-4648500367050864,-4648499057538562],[67633344,268436672,-4648500367050864,-4648499057538562],[67633344,269090880,-8599108279903872,-8599101184095716],[67633344,269090944,8599101184095716,8599108279903872],[67633344,270008384,6623801107293350,6623803337001160],[67633344,270008448,-6623803337001160,-6623801107293350],[67633344,335675456,8599101184095716,8599108279903872],[67633344,335675520,-8599108279903872,-8599101184095716],[67633344,336068610,4648499019397906,4648500405191522],[67633344,336068616,-4648500405191522,-4648499019397906],[67633344,336068802,4648499019397906,4648500405191522],[67633344,336068808,-4648500405191522,-4648499019397906],[67633344,336068864,4648499057538562,4648500367050864],[67633344,336069056,4648499057538562,4648500367050864],[67633344,336069632,-4648500367050864,-4648499057538562],[67633344,336069824,-4648500367050864,-4648499057538562],[67633344,336592960,-6623803337001160,-6623801107293350],[67633344,336593024,6623801107293350,6623803337001160],[67633344,403177536,-1975303127852212,-1975301891852867],[67633344,403177600,1975301891852867,1975303127852212],[67633344,469762112,1975301891852867,1975303127852212],[67633344,469762176,-1975303127852212,-1975301891852867],[67633344,1074397248,13247603792440361,13247605096148654],[67633344,1074397312,-13247605096148654,-13247603792440361],[67633344,1140981824,-13247605096148654,-13247603792440361],[67633344,1140981888,13247603792440361,13247605096148654],[67633344,1342701632,-4648500364875210,-4648499059714221],[67633344,1342701696,4648499059714221,4648500364875210],[67633344,1409286208,4648499059714221,4648500364875210],[67633344,1409286272,-4648500364875210,-4648499059714221],[67633344,17592186699840,13247603754276960,13247605134312055],[67633344,17592186699904,-13247605134312055,-13247603754276960],[67633344,17592253284416,-13247605134312055,-13247603754276960],[67633344,17592253284480,13247603754276960,13247605134312055],[67633344,17592455004224,-1975303196554503,-1975301823150576],[67633344,17592455004288,1975301823150576,1975303196554503],[67633344,17592521588800,1975301823150576,1975303196554503],[67633344,17592521588864,-1975303196554503,-1975301823150576],[67633344,35184641048640,13247603758912222,13247605129676795],[67633344,35184641048704,-13247605129676795,-13247603758912222],[67633344,35184707633216,-13247605129676795,-13247603758912222],[67633344,35184707633280,13247603758912222,13247605129676795],[67633536,131136,-1975303161793801,-1975301857911278],[67633536,131520,-1975303161793801,-1975301857911278],[67633536,132096,-22544604489700504,-22544603248067364],[67633536,132480,-22544604489700504,-22544603248067364],[67633536,67764288,-1975303161793801,-1975301857911278],[67633536,67764672,-1975303161793801,-1975301857911278],[67633536,67765248,-22544604489700504,-22544603248067364],[67633536,67765632,-22544604489700504,-22544603248067364],[67633536,268435520,-4648500367050864,-4648499057538562],[67633536,268435904,-4648500367050864,-4648499057538562],[67633536,268436480,-1975303130040923,-1975301889664154],[67633536,268436864,-1975303130040923,-1975301889664154],[67633536,336068672,-4648500367050864,-4648499057538562],[67633536,336069056,-4648500367050864,-4648499057538562],[67633536,336069632,-1975303130040923,-1975301889664154],[67633536,336070016,-1975303130040923,-1975301889664154],[67634184,131200,-6623806745939431,-6623797698355075],[67634184,132232,31143706348939894,31143710852827564],[67634184,656512,-37767513094879325,-37767508551182639],[67634184,1179648,3950603919085972,3950606120324188],[67634184,1704960,3950603919085972,3950606120324188],[67634184,67240072,-37767513094879325,-37767508551182639],[67634184,67764352,31143706348939894,31143710852827564],[67634184,67765384,-6623806745939431,-6623797698355075],[67634184,68288520,3950603919085972,3950606120324188],[67634184,68813832,3950603919085972,3950606120324188],[67634184,268435584,6623801098016984,6623803346277521],[67634184,268436616,6623801098016984,6623803346277521],[67634184,336068736,6623801098016984,6623803346277521],[67634184,336069768,6623801098016984,6623803346277521],[67634240,131200,24519905258499972,24519907498972975],[67634240,132288,24519905258499972,24519907498972975],[67634240,67764352,24519905258499972,24519907498972975],[67634240,67765440,24519905258499972,24519907498972975],[67634240,268435584,6623801102928978,6623803341365525],[67634240,268436672,6623801102928978,6623803341365525],[67634240,336068736,6623801102928978,6623803341365525],[67634240,336069824,6623801102928978,6623803341365525],[67634304,131080,-22544604485915178,-22544603251852693],[67634304,131136,-22544604489700504,-22544603248067364],[67634304,131328,22544603248067364,22544604489700504],[67634304,132232,-20569302600800082,-20569300117262707],[67634304,132288,-22544604489700504,-22544603248067364],[67634304,132480,22544603248067364,22544604489700504],[67634304,133120,22544603251852693,22544604485915178],[67634304,134272,22544603251852693,22544604485915178],[67634304,524416,-8599108313708112,-8599101150291472],[67634304,525312,8599101150291472,8599108313708112],[67634304,655496,-26495210200067732,-26495207577110300],[67634304,656392,24519904596394939,24519908161078011],[67634304,688256,1975301917236486,1975303102468593],[67634304,689152,-1975303102468593,-1975301917236486],[67634304,1179648,45089206505908288,45089208969627452],[67634304,1180800,49039811037266288,49039814477679612],[67634304,1704064,11272300873839524,11272302995044411],[67634304,1704960,-15222909115368599,-15222904792925496],[67634304,67108992,8599101150291472,8599108313708112],[67634304,67109888,-8599108313708112,-8599101150291472],[67634304,67240072,24519904596394939,24519908161078011],[67634304,67240968,-26495210200067732,-26495207577110300],[67634304,67272832,-1975303102468593,-1975301917236486],[67634304,67273728,1975301917236486,1975303102468593],[67634304,67764232,-20569302600800082,-20569300117262707],[67634304,67764288,-22544604489700504,-22544603248067364],[67634304,67764480,22544603248067364,22544604489700504],[67634304,67765384,-22544604485915178,-22544603251852693],[67634304,67765440,-22544604489700504,-22544603248067364],[67634304,67765632,22544603248067364,22544604489700504],[67634304,67766272,22544603251852693,22544604485915178],[67634304,67767424,22544603251852693,22544604485915178],[67634304,68288640,-15222909115368599,-15222904792925496],[67634304,68289536,11272300873839524,11272302995044411],[67634304,68812800,49039811037266288,49039814477679612],[67634304,68813952,45089206505908288,45089208969627452],[67634304,268435464,-1975303134066535,-1975301885638543],[67634304,268435520,-1975303130040923,-1975301889664154],[67634304,268435712,1975301889664154,1975303130040923],[67634304,268436616,-1975303134066535,-1975301885638543],[67634304,268436672,-1975303130040923,-1975301889664154],[67634304,268436864,1975301889664154,1975303130040923],[67634304,268437504,1975301885638543,1975303134066535],[67634304,268438656,1975301885638543,1975303134066535],[67634304,269090944,8599101150291472,8599108313708112],[67634304,269091840,-8599108313708112,-8599101150291472],[67634304,269484032,3950603780638034,3950606258772122],[67634304,269485184,28470509674673669,28470513122209439],[67634304,270008448,-6623803284297315,-6623801159997192],[67634304,270009344,-17896106317239678,-17896101995938767],[67634304,335675520,-8599108313708112,-8599101150291472],[67634304,335676416,8599101150291472,8599108313708112],[67634304,336068616,-1975303134066535,-1975301885638543],[67634304,336068672,-1975303130040923,-1975301889664154],[67634304,336068864,1975301889664154,1975303130040923],[67634304,336069768,-1975303134066535,-1975301885638543],[67634304,336069824,-1975303130040923,-1975301889664154],[67634304,336070016,1975301889664154,1975303130040923],[67634304,336070656,1975301885638543,1975303134066535],[67634304,336071808,1975301885638543,1975303134066535],[67634304,336593024,-17896106317239678,-17896101995938767],[67634304,336593920,-6623803284297315,-6623801159997192],[67634304,337117184,28470509674673669,28470513122209439],[67634304,337118336,3950603780638034,3950606258772122],[67634304,403177600,1975301917236486,1975303102468593],[67634304,403178496,-1975303102468593,-1975301917236486],[67634304,469762176,-1975303102468593,-1975301917236486],[67634304,469763072,1975301917236486,1975303102468593],[67634304,1074397312,-13247605066155522,-13247603822433492],[67634304,1074398208,13247603822433492,13247605066155522],[67634304,1140981888,13247603822433492,13247605066155522],[67634304,1140982784,-13247605066155522,-13247603822433492],[67634304,1342701696,4648499087034444,4648500337554984],[67634304,1342702592,-4648500337554984,-4648499087034444],[67634304,1409286272,-4648500337554984,-4648499087034444],[67634304,1409287168,4648499087034444,4648500337554984],[67634304,17592186699904,-13247605101666952,-13247603786922062],[67634304,17592186700800,13247603786922062,13247605101666952],[67634304,17592253284480,13247603786922062,13247605101666952],[67634304,17592253285376,-13247605101666952,-13247603786922062],[67634304,17592455004288,1975301852392980,1975303167312100],[67634304,17592455005184,-1975303167312100,-1975301852392980],[67634304,17592521588864,-1975303167312100,-1975301852392980],[67634304,17592521589760,1975301852392980,1975303167312100],[67634304,35184641048704,-13247605100033866,-13247603788555150],[67634304,35184641049600,13247603788555150,13247605100033866],[67634304,35184707633280,13247603788555150,13247605100033866],[67634304,35184707634176,-13247605100033866,-13247603788555150],[67635328,132096,-22544604485915178,-22544603251852693],[67635328,134272,-22544604485915178,-22544603251852693],[67635328,67765248,-22544604485915178,-22544603251852693],[67635328,67767424,-22544604485915178,-22544603251852693],[67635328,268436480,-1975303134066535,-1975301885638543],[67635328,268438656,-1975303134066535,-1975301885638543],[67635328,336069632,-1975303134066535,-1975301885638543],[67635328,336071808,-1975303134066535,-1975301885638543],[67665921,131076,-26495209977752878,-26495207799425147],[67665921,163845,-26495209977752878,-26495207799425147],[67665921,67764228,-26495209977752878,-26495207799425147],[67665921,67796997,-26495209977752878,-26495207799425147],[67665922,131080,31143706687525880,31143710514241570],[67665922,163850,26495207799425147,26495209977752878],[67665922,655370,11272300812248450,11272303056635485],[67665922,688136,-6623803337001160,-6623801107293350],[67665922,67239946,-6623803337001160,-6623801107293350],[67665922,67272712,11272300812248450,11272303056635485],[67665922,67764232,26495207799425147,26495209977752878],[67665922,67797002,31143706687525880,31143710514241570],[67665924,0,-7901210969997192,-7901209108823124],[67665924,32772,-3950605484998596,-3950604554411562],[67665924,131073,26495207799425147,26495209977752878],[67665924,131080,57638914684866570,57638920294078918],[67665924,163845,26495207799425147,26495209977752878],[67665924,163852,52990415723206676,52990419831149384],[67665924,524292,-1975305281057239,-1975299738647843],[67665924,557056,-1975305281023604,-1975299738681472],[67665924,655372,11272299936568599,11272303932315336],[67665924,655492,-26495209992202640,-26495207784975390],[67665924,688136,-6623804221568240,-6623800222726267],[67665924,688256,26495207784975390,26495209992202640],[67665924,1703940,-26495209915574692,-26495207861603338],[67665924,1736704,26495207861603338,26495209915574692],[67665924,67108868,-1975305281023604,-1975299738681472],[67665924,67141632,-1975305281057239,-1975299738647843],[67665924,67239948,-6623804221568240,-6623800222726267],[67665924,67240068,26495207784975390,26495209992202640],[67665924,67272712,11272299936568599,11272303932315336],[67665924,67272832,-26495209992202640,-26495207784975390],[67665924,67633152,-3950605484998596,-3950604554411562],[67665924,67665924,-7901210969997192,-7901209108823124],[67665924,67764225,26495207799425147,26495209977752878],[67665924,67764232,52990415723206676,52990419831149384],[67665924,67796997,26495207799425147,26495209977752878],[67665924,67797004,57638914684866570,57638920294078918],[67665924,68288516,26495207861603338,26495209915574692],[67665924,68321280,-26495209915574692,-26495207861603338],[67665924,269090820,-2178588643,2178588646],[67665924,269123584,-2178588646,2178588643],[67665924,335675396,-2178588646,2178588643],[67665924,335708160,-2178588643,2178588646],[67665924,1073872896,-24519908060482760,-24519904696990186],[67665924,1073905668,-26495209977752878,-26495207799425147],[67665924,1074397188,52990415723206676,52990419831149384],[67665924,1074429952,-51015117307080439,-51015113227570542],[67665924,1140981764,-51015117307080439,-51015113227570542],[67665924,1141014528,52990415723206676,52990419831149384],[67665924,1141506048,-26495209977752878,-26495207799425147],[67665924,1141538820,-24519908060482760,-24519904696990186],[67665924,17592186699780,26495207784975390,26495209992202640],[67665924,17592186732544,-26495209992202640,-26495207784975390],[67665924,17592253284356,-26495209992202640,-26495207784975390],[67665924,17592253317120,26495207784975390,26495209992202640],[67665928,0,-18594002543881458,-18593995154476254],[67665928,32776,-13945502255682351,-13945496018085931],[67665928,131074,-31143710514241570,-31143706687525880],[67665928,131076,19871400888629471,19871412444254049],[67665928,131200,4648493631385954,4648505793203474],[67665928,163850,-26495209977752878,-26495207799425147],[67665928,163852,-3950609233926622,-3950600805483542],[67665928,163976,-1975304733296088,-1975300286408991],[67665928,524296,-13945502254348697,-13945496019419587],[67665928,557056,9296996307740651,9297002541438203],[67665928,655370,-11272303056635485,-11272300812248450],[67665928,655372,13247602285191671,13247606603397346],[67665928,655496,26495204430640140,26495213346537888],[67665928,688130,6623801107293350,6623803337001160],[67665928,688132,10574405079083164,10574409404621503],[67665928,688256,-19871408894185654,-19871404438697867],[67665928,1179648,-13247606222252656,-13247602666336360],[67665928,1212424,6623801159963560,6623803284330947],[67665928,1703944,6623801159997192,6623803284297315],[67665928,1736704,-26495209915574692,-26495207861603338],[67665928,67108872,9296996307740651,9297002541438203],[67665928,67141632,-13945502254348697,-13945496019419587],[67665928,67239946,6623801107293350,6623803337001160],[67665928,67239948,10574405079083164,10574409404621503],[67665928,67240072,-19871408894185654,-19871404438697867],[67665928,67272706,-11272303056635485,-11272300812248450],[67665928,67272708,13247602285191671,13247606603397346],[67665928,67272832,26495204430640140,26495213346537888],[67665928,67633152,-13945502255682351,-13945496018085931],[67665928,67665928,-18594002543881458,-18593995154476254],[67665928,67764226,-26495209977752878,-26495207799425147],[67665928,67764228,-3950609233926622,-3950600805483542],[67665928,67764352,-1975304733296088,-1975300286408991],[67665928,67797002,-31143710514241570,-31143706687525880],[67665928,67797004,19871400888629471,19871412444254049],[67665928,67797128,4648493631385954,4648505793203474],[67665928,68288520,-26495209915574692,-26495207861603338],[67665928,68321280,6623801159997192,6623803284297315],[67665928,68812800,6623801159963560,6623803284330947],[67665928,68845576,-13247606222252656,-13247602666336360],[67665928,268566528,4648493659097978,4648505765491449],[67665928,268599304,26495204439857584,26495213337320446],[67665928,269090824,-1975304719493192,-1975300300211890],[67665928,269123584,-19871408879756524,-19871404453126997],[67665928,335675400,-19871408879756524,-19871404453126997],[67665928,335708160,-1975304719493192,-1975300300211890],[67665928,336199680,26495204439857584,26495213337320446],[67665928,336232456,4648493659097978,4648505765491449],[67665928,1073872896,19871400914685277,19871412418198236],[67665928,1073905672,13247602298025327,13247606590563683],[67665928,1074397192,-3950609226781738,-3950600812628424],[67665928,1074429952,10574405092145006,10574409391559659],[67665928,1140981768,10574405092145006,10574409391559659],[67665928,1141014528,-3950609226781738,-3950600812628424],[67665928,1141506048,13247602298025327,13247606590563683],[67665928,1141538824,19871400914685277,19871412418198236],[67665928,17592186175488,-13247606381210832,-13247602507378184],[67665928,17592186208264,-11272303070687196,-11272300798196740],[67665928,17592186699784,-26495209992202640,-26495207784975390],[67665928,17592186732544,24519905262899363,24519907494573587],[67665928,17592253284360,24519905262899363,24519907494573587],[67665928,17592253317120,-26495209992202640,-26495207784975390],[67665928,17592253808640,-11272303070687196,-11272300798196740],[67665928,17592253841416,-13247606381210832,-13247602507378184],[67665984,131200,-11272303056635485,-11272300812248450],[67665984,655552,-11272303056635485,-11272300812248450],[67665984,67272832,-11272303056635485,-11272300812248450],[67665984,67797184,-11272303056635485,-11272300812248450],[67666048,0,-18593999772903408,-18593997925454304],[67666048,32896,-1975305275431532,-1975299744273546],[67666048,131080,42416007508370071,42416013562281321],[67666048,131136,11272300812248450,11272303056635485],[67666048,132096,11272300873839524,11272302995044411],[67666048,163972,3950603919085972,3950606120324188],[67666048,163976,11272299869063941,11272303999819992],[67666048,524416,-9296999886451704,-9296998962727152],[67666048,557056,-7321699679927840,-7321694149545938],[67666048,655496,22544601642609286,22544606095158586],[67666048,655552,11272300812248450,11272303056635485],[67666048,656512,11272300873839524,11272302995044411],[67666048,688132,-3950606120324188,-3950603919085972],[67666048,688136,8599102631895649,8599106832103938],[67666048,1179648,-11272302995044411,-11272300873839524],[67666048,1704064,-11272302995044411,-11272300873839524],[67666048,67108992,-7321699679927840,-7321694149545938],[67666048,67141632,-9296999886451704,-9296998962727152],[67666048,67240068,-3950606120324188,-3950603919085972],[67666048,67240072,8599102631895649,8599106832103938],[67666048,67272712,22544601642609286,22544606095158586],[67666048,67272768,11272300812248450,11272303056635485],[67666048,67273728,11272300873839524,11272302995044411],[67666048,67633152,-1975305275431532,-1975299744273546],[67666048,67666048,-18593999772903408,-18593997925454304],[67666048,67764228,3950603919085972,3950606120324188],[67666048,67764232,11272299869063941,11272303999819992],[67666048,67797128,42416007508370071,42416013562281321],[67666048,67797184,11272300812248450,11272303056635485],[67666048,67798144,11272300873839524,11272302995044411],[67666048,68321280,-11272302995044411,-11272300873839524],[67666048,68845696,-11272302995044411,-11272300873839524],[67666048,268566528,-6623803999983306,-6623800444311202],[67666048,268599424,22544601642609286,22544606095158586],[67666048,269090944,-11272303056635485,-11272300812248450],[67666048,269123584,-17896106405970981,-17896101907207464],[67666048,335675520,-17896106405970981,-17896101907207464],[67666048,335708160,-11272303056635485,-11272300812248450],[67666048,336199680,22544601642609286,22544606095158586],[67666048,336232576,-6623803999983306,-6623800444311202],[67666048,1073905792,15222904805987338,15222909102306755],[67666048,1074429952,-15222909102306755,-15222904805987338],[67666048,1140981888,-15222909102306755,-15222904805987338],[67666048,1141506048,15222904805987338,15222909102306755],[67666048,17592186208384,11272300798196740,11272303070687196],[67666048,17592186732544,-11272303070687196,-11272300798196740],[67666048,17592253284480,-11272303070687196,-11272300798196740],[67666048,17592253808640,11272300798196740,11272303070687196],[67666944,131200,-11272302995044411,-11272300873839524],[67666944,656512,-11272302995044411,-11272300873839524],[67666944,1179648,24519905365967204,24519907391505747],[67666944,1704960,24519905365967204,24519907391505747],[67666944,67272832,-11272302995044411,-11272300873839524],[67666944,67798144,-11272302995044411,-11272300873839524],[67666944,68321280,24519905365967204,24519907391505747],[67666944,68846592,24519905365967204,24519907391505747],[67764225,131083,-6623803358085955,-6623801086208550],[67764225,131085,-24519907464403207,-24519905293069738],[67764225,163845,26495207799425147,26495209977752878],[67764225,524299,4648499057538562,4648500367050864],[67764225,524301,1975301889664154,1975303130040923],[67764225,557061,-13247605061578886,-13247603827010127],[67764225,655370,1975301857911278,1975303161793801],[67764225,655372,22544603248067364,22544604489700504],[67764225,688132,-13247605066971786,-13247603821617226],[67764225,67108875,1975301857911278,1975303161793801],[67764225,67108877,22544603248067364,22544604489700504],[67764225,67141637,-13247605066971786,-13247603821617226],[67764225,67239946,4648499057538562,4648500367050864],[67764225,67239948,1975301889664154,1975303130040923],[67764225,67272708,-13247605061578886,-13247603827010127],[67764225,67633162,-6623803358085955,-6623801086208550],[67764225,67633164,-24519907464403207,-24519905293069738],[67764225,67665924,26495207799425147,26495209977752878],[67764226,0,-22544604890140016,-22544602847627856],[67764226,136,-1975303196554503,-1975301823150576],[67764226,32776,-8599105559539709,-8599103904459875],[67764226,131074,6623798927600937,6623805516693572],[67764226,131083,6623801086208550,6623803358085955],[67764226,131086,24519905293069738,24519907464403207],[67764226,131146,6623801015151933,6623803429142575],[67764226,131210,-3950609326662792,-3950600712747379],[67764226,131266,1975301824995317,1975303194709763],[67764226,163850,-26495209977752878,-26495207799425147],[67764226,524290,-15920803552528152,-15920799740945212],[67764226,524299,-4648500367050864,-4648499057538562],[67764226,524302,-1975303130040923,-1975301889664154],[67764226,524362,-4648500405191522,-4648499019397906],[67764226,524426,-1975303194709763,-1975301824995317],[67764226,557066,-964466108,964466106],[67764226,655360,-13247606347638304,-13247602540950713],[67764226,655369,-1975303161793801,-1975301857911278],[67764226,655372,-22544604489700504,-22544603248067364],[67764226,655432,-1975303194709763,-1975301824995317],[67764226,655496,3950601242433032,3950608796977140],[67764226,655552,-1975303194709763,-1975301824995317],[67764226,688136,17896103187855503,17896105125322940],[67764226,1048584,-4648500364875210,-4648499059714221],[67764226,1179658,-11272303056635485,-11272300812248450],[67764226,1703944,6623801079994226,6623803364300278],[67764226,67108866,-13247606347638304,-13247602540950713],[67764226,67108875,-1975303161793801,-1975301857911278],[67764226,67108878,-22544604489700504,-22544603248067364],[67764226,67108938,-1975303194709763,-1975301824995317],[67764226,67109002,3950601242433032,3950608796977140],[67764226,67109058,-1975303194709763,-1975301824995317],[67764226,67141642,17896103187855503,17896105125322940],[67764226,67239936,-15920803552528152,-15920799740945212],[67764226,67239945,-4648500367050864,-4648499057538562],[67764226,67239948,-1975303130040923,-1975301889664154],[67764226,67240008,-4648500405191522,-4648499019397906],[67764226,67240072,-1975303194709763,-1975301824995317],[67764226,67272712,-964466108,964466106],[67764226,67633152,6623798927600937,6623805516693572],[67764226,67633161,6623801086208550,6623803358085955],[67764226,67633164,24519905293069738,24519907464403207],[67764226,67633224,6623801015151933,6623803429142575],[67764226,67633288,-3950609326662792,-3950600712747379],[67764226,67633344,1975301824995317,1975303194709763],[67764226,67665928,-26495209977752878,-26495207799425147],[67764226,67764226,-22544604890140016,-22544602847627856],[67764226,67764362,-1975303196554503,-1975301823150576],[67764226,67797002,-8599105559539709,-8599103904459875],[67764226,68157450,6623801079994226,6623803364300278],[67764226,68681736,-11272303056635485,-11272300812248450],[67764226,68812810,-4648500364875210,-4648499059714221],[67764226,268435464,22544601129070346,22544606608697526],[67764226,268566538,-8599108279903872,-8599101184095716],[67764226,268959754,6623801015151933,6623803429142575],[67764226,269090824,24519905151602618,24519907605870334],[67764226,335544330,24519905151602618,24519907605870334],[67764226,335675400,6623801015151933,6623803429142575],[67764226,336068616,-8599108279903872,-8599101184095716],[67764226,336199690,22544601129070346,22544606608697526],[67764226,1073741832,13247603792440361,13247605096148654],[67764226,1073872906,6623801107293350,6623803337001160],[67764226,1074266122,6623801086208550,6623803358085955],[67764226,1140981768,6623801086208550,6623803358085955],[67764226,1141374984,6623801107293350,6623803337001160],[67764226,1141506058,13247603792440361,13247605096148654],[67764226,17592186044424,13247603754276960,13247605134312055],[67764226,17592186175498,-11272303138139186,-11272300730744752],[67764226,17592186568714,24519905182726150,24519907574746803],[67764226,17592253284360,24519905182726150,24519907574746803],[67764226,17592253677576,-11272303138139186,-11272300730744752],[67764226,17592253808650,13247603754276960,13247605134312055],[67764228,0,-14643395680256318,-14643391978691234],[67764228,136,-1975303167312100,-1975301852392980],[67764228,32776,15920800076521641,15920803216951721],[67764228,32896,-22544604497985104,-22544603239782766],[67764228,131076,-19871412444254049,-19871400888629471],[67764228,131085,24519905293069738,24519907464403207],[67764228,131086,6623801086208550,6623803358085955],[67764228,131212,-42416014583842896,-42416006486808497],[67764228,163845,-26495209977752878,-26495207799425147],[67764228,163852,-3950609233926622,-3950600805483542],[67764228,163972,3950603919085972,3950606120324188],[67764228,524292,1277404455586225,1277411178939584],[67764228,524301,-1975303130040923,-1975301889664154],[67764228,524302,-4648500367050864,-4648499057538562],[67764228,524428,-4648500367937248,-4648499056652179],[67764228,557061,13247603827010127,13247605061578886],[67764228,557068,11272298879893047,11272304988990891],[67764228,655360,3950601664814648,3950608374595511],[67764228,655369,-22544604489700504,-22544603248067364],[67764228,655370,-1975303161793801,-1975301857911278],[67764228,655496,45089204203543548,45089211271992192],[67764228,688129,13247603821617226,13247605066971786],[67764228,688136,8599101685162166,8599107778837422],[67764228,688256,-26495209992202640,-26495207784975390],[67764228,1048584,-4648500337554984,-4648499087034444],[67764228,1081344,-1975303102434961,-1975301917270118],[67764228,1179660,-11272302995044411,-11272300873839524],[67764228,1212420,24519905365967204,24519907391505747],[67764228,1703944,6623801159997192,6623803284297315],[67764228,1736704,-26495209915574692,-26495207861603338],[67764228,67108868,3950601664814648,3950608374595511],[67764228,67108877,-22544604489700504,-22544603248067364],[67764228,67108878,-1975303161793801,-1975301857911278],[67764228,67109004,45089204203543548,45089211271992192],[67764228,67141637,13247603821617226,13247605066971786],[67764228,67141644,8599101685162166,8599107778837422],[67764228,67141764,-26495209992202640,-26495207784975390],[67764228,67239936,1277404455586225,1277411178939584],[67764228,67239945,-1975303130040923,-1975301889664154],[67764228,67239946,-4648500367050864,-4648499057538562],[67764228,67240072,-4648500367937248,-4648499056652179],[67764228,67272705,13247603827010127,13247605061578886],[67764228,67272712,11272298879893047,11272304988990891],[67764228,67633152,-19871412444254049,-19871400888629471],[67764228,67633161,24519905293069738,24519907464403207],[67764228,67633162,6623801086208550,6623803358085955],[67764228,67633288,-42416014583842896,-42416006486808497],[67764228,67665921,-26495209977752878,-26495207799425147],[67764228,67665928,-3950609233926622,-3950600805483542],[67764228,67666048,3950603919085972,3950606120324188],[67764228,67764228,-14643395680256318,-14643391978691234],[67764228,67764364,-1975303167312100,-1975301852392980],[67764228,67797004,15920800076521641,15920803216951721],[67764228,67797124,-22544604497985104,-22544603239782766],[67764228,68157452,6623801159997192,6623803284297315],[67764228,68190212,-26495209915574692,-26495207861603338],[67764228,68681736,-11272302995044411,-11272300873839524],[67764228,68714496,24519905365967204,24519907391505747],[67764228,68812812,-4648500337554984,-4648499087034444],[67764228,68845572,-1975303102434961,-1975301917270118],[67764228,268435464,22544601272808088,22544606464959780],[67764228,268468224,-49039815222920444,-49039810292025454],[67764228,268566540,-8599108313708112,-8599101150291472],[67764228,268599300,3950601606309328,3950608433100829],[67764228,268959756,6623801098016984,6623803346277521],[67764228,268992516,-26495209977993164,-26495207799184865],[67764228,269090824,24519905258499972,24519907498972975],[67764228,269123584,-26495209977773508,-26495207799404518],[67764228,335544332,24519905258499972,24519907498972975],[67764228,335577092,-26495209977773508,-26495207799404518],[67764228,335675400,6623801098016984,6623803346277521],[67764228,335708160,-26495209977993164,-26495207799184865],[67764228,336068616,-8599108313708112,-8599101150291472],[67764228,336101376,3950601606309328,3950608433100829],[67764228,336199692,22544601272808088,22544606464959780],[67764228,336232452,-49039815222920444,-49039810292025454],[67764228,1073741832,13247603822433492,13247605066155522],[67764228,1073774592,-1975303102468593,-1975301917236486],[67764228,1073872908,6623801159997192,6623803284297315],[67764228,1073905668,11272298195303644,11272305673580297],[67764228,1074266124,6623801159997192,6623803284297315],[67764228,1074298884,-26495212175470166,-26495205601707868],[67764228,1074429952,13247603826989498,13247605061599516],[67764228,1140883460,13247603826989498,13247605061599516],[67764228,1140981768,6623801159997192,6623803284297315],[67764228,1141014528,-26495212175470166,-26495205601707868],[67764228,1141374984,6623801159997192,6623803284297315],[67764228,1141407744,11272298195303644,11272305673580297],[67764228,1141506060,13247603822433492,13247605066155522],[67764228,1141538820,-1975303102468593,-1975301917236486],[67764228,17592186044424,13247603786922062,13247605101666952],[67764228,17592186077184,-1975303142599947,-1975301877105131],[67764228,17592186175500,-11272303079253853,-11272300789630083],[67764228,17592186208260,24519905280236082,24519907477236870],[67764228,17592186568716,24519905262899363,24519907494573587],[67764228,17592186601476,-26495209992202640,-26495207784975390],[67764228,17592253284360,24519905262899363,24519907494573587],[67764228,17592253317120,-26495209992202640,-26495207784975390],[67764228,17592253677576,-11272303079253853,-11272300789630083],[67764228,17592253710336,24519905280236082,24519907477236870],[67764228,17592253808652,13247603786922062,13247605101666952],[67764228,17592253841412,-1975303142599947,-1975301877105131],[67764232,0,-3681052522,3681052524],[67764232,130,1975301823150576,1975303196554503],[67764232,132,1975301852392980,1975303167312100],[67764232,32770,8599103904459875,8599105559539709],[67764232,32772,8599103952864898,8599105511134688],[67764232,32896,15920798685149414,15920804608323947],[67764232,131080,-168694080794423276,-168694029929332347],[67764232,131086,-31143710514241570,-31143706687525880],[67764232,131210,-697899880612376,-697889504566882],[67764232,131212,4648494875353022,4648504549236406],[67764232,131272,-15222908329021818,-15222905579272277],[67764232,132232,-20569302600800082,-20569300117262707],[67764232,163850,26495207799425147,26495209977752878],[67764232,163852,52990415723206676,52990419831149384],[67764232,163976,11272299869063941,11272303999819992],[67764232,524296,-66663850285081034,-66663799369372644],[67764232,524302,6623801102928978,6623803341365525],[67764232,524426,6623801015151933,6623803429142575],[67764232,524428,6623801098016984,6623803346277521],[67764232,557066,-964466106,964466108],[67764232,557068,-13247605939232943,-13247602949356073],[67764232,557192,-3950608267983247,-3950601771426911],[67764232,655360,235357851276653147,235357909101556156],[67764232,655366,24519905258499972,24519907498972975],[67764232,655490,-3950609326662792,-3950600712747379],[67764232,655492,-9297003434088727,-9296995415090126],[67764232,655552,15222905579272277,15222908329021818],[67764232,656512,20569300117262707,20569302600800082],[67764232,688130,-17896105125322940,-17896103187855503],[67764232,688132,-31143710097437046,-31143707104330412],[67764232,688256,8599102661848405,8599106802151181],[67764232,1048578,4648499059714221,4648500364875210],[67764232,1048580,4648499087034444,4648500337554984],[67764232,1048704,4648499056652180,4648500367937249],[67764232,1081344,-9297000203994710,-9296998645184146],[67764232,1179658,11272300812248450,11272303056635485],[67764232,1179660,11272300873839524,11272302995044411],[67764232,1179784,11272297923178146,11272305945705791],[67764232,1212424,-17896105064267619,-17896103248910824],[67764232,1573000,-11272303070687196,-11272300798196740],[67764232,1605640,-17896105064267619,-17896103248910824],[67764232,1703938,-6623803364300278,-6623801079994226],[67764232,1703940,-6623803284297315,-6623801159997192],[67764232,1704064,4648494866495498,4648504558093930],[67764232,1736704,26495207861603338,26495209915574692],[67764232,67108872,235357851276653147,235357909101556156],[67764232,67108878,24519905258499972,24519907498972975],[67764232,67109002,-3950609326662792,-3950600712747379],[67764232,67109004,-9297003434088727,-9296995415090126],[67764232,67109064,15222905579272277,15222908329021818],[67764232,67110024,20569300117262707,20569302600800082],[67764232,67141642,-17896105125322940,-17896103187855503],[67764232,67141644,-31143710097437046,-31143707104330412],[67764232,67141768,8599102661848405,8599106802151181],[67764232,67239936,-66663850285081034,-66663799369372644],[67764232,67239942,6623801102928978,6623803341365525],[67764232,67240066,6623801015151933,6623803429142575],[67764232,67240068,6623801098016984,6623803346277521],[67764232,67272706,-964466106,964466108],[67764232,67272708,-13247605939232943,-13247602949356073],[67764232,67272832,-3950608267983247,-3950601771426911],[67764232,67633152,-168694080794423276,-168694029929332347],[67764232,67633158,-31143710514241570,-31143706687525880],[67764232,67633282,-697899880612376,-697889504566882],[67764232,67633284,4648494875353022,4648504549236406],[67764232,67633344,-15222908329021818,-15222905579272277],[67764232,67634304,-20569302600800082,-20569300117262707],[67764232,67665922,26495207799425147,26495209977752878],[67764232,67665924,52990415723206676,52990419831149384],[67764232,67666048,11272299869063941,11272303999819992],[67764232,67764232,-3681052522,3681052524],[67764232,67764362,1975301823150576,1975303196554503],[67764232,67764364,1975301852392980,1975303167312100],[67764232,67797002,8599103904459875,8599105559539709],[67764232,67797004,8599103952864898,8599105511134688],[67764232,67797128,15920798685149414,15920804608323947],[67764232,68157450,-6623803364300278,-6623801079994226],[67764232,68157452,-6623803284297315,-6623801159997192],[67764232,68157576,4648494866495498,4648504558093930],[67764232,68190216,26495207861603338,26495209915574692],[67764232,68288640,-11272303070687196,-11272300798196740],[67764232,68321280,-17896105064267619,-17896103248910824],[67764232,68681730,11272300812248450,11272303056635485],[67764232,68681732,11272300873839524,11272302995044411],[67764232,68681856,11272297923178146,11272305945705791],[67764232,68714496,-17896105064267619,-17896103248910824],[67764232,68812810,4648499059714221,4648500364875210],[67764232,68812812,4648499087034444,4648500337554984],[67764232,68812936,4648499056652180,4648500367937249],[67764232,68845576,-9297000203994710,-9296998645184146],[67764232,268435458,-22544606608697526,-22544601129070346],[67764232,268435460,-22544606464959780,-22544601272808088],[67764232,268435584,-45089213226916902,-45089202248618840],[67764232,268468224,15920798695415380,15920804598057982],[67764232,268566538,8599101184095716,8599108279903872],[67764232,268566540,8599101150291472,8599108313708112],[67764232,268566664,-13247611732520567,-13247597156068460],[67764232,268599304,-3950608253249321,-3950601786160837],[67764232,268959754,-6623803429142575,-6623801015151933],[67764232,268959756,-6623803346277521,-6623801098016984],[67764232,268959880,-13247611779979171,-13247597108609852],[67764232,268992520,11272299879110672,11272303989773264],[67764232,269090818,-24519907605870334,-24519905151602618],[67764232,269090820,-24519907498972975,-24519905258499972],[67764232,269090944,-18594007185055848,-18593990513301844],[67764232,269123584,8599102676277534,8599106787722050],[67764232,269484032,4648499056652179,4648500367937248],[67764232,269615112,-11272303056635485,-11272300812248450],[67764232,270008328,11272297936924019,11272305931959916],[67764232,270139392,4648494894207522,4648504530381905],[67764232,335544330,-24519907605870334,-24519905151602618],[67764232,335544332,-24519907498972975,-24519905258499972],[67764232,335544456,-18594007185055848,-18593990513301844],[67764232,335577096,8599102676277534,8599106787722050],[67764232,335675394,-6623803429142575,-6623801015151933],[67764232,335675396,-6623803346277521,-6623801098016984],[67764232,335675520,-13247611779979171,-13247597108609852],[67764232,335708160,11272299879110672,11272303989773264],[67764232,336068610,8599101184095716,8599108279903872],[67764232,336068612,8599101150291472,8599108313708112],[67764232,336068736,-13247611732520567,-13247597156068460],[67764232,336101376,-3950608253249321,-3950601786160837],[67764232,336199690,-22544606608697526,-22544601129070346],[67764232,336199692,-22544606464959780,-22544601272808088],[67764232,336199816,-45089213226916902,-45089202248618840],[67764232,336232456,15920798695415380,15920804598057982],[67764232,336592904,4648494894207522,4648504530381905],[67764232,336723968,11272297936924019,11272305931959916],[67764232,337117184,-11272303056635485,-11272300812248450],[67764232,337248264,4648499056652179,4648500367937248],[67764232,403177480,-20569302596271653,-20569300121791140],[67764232,403308544,20569300121791140,20569302596271653],[67764232,469762056,20569300121791140,20569302596271653],[67764232,469893120,-20569302596271653,-20569300121791140],[67764232,1073741826,-13247605096148654,-13247603792440361],[67764232,1073741828,-13247605066155522,-13247603822433492],[67764232,1073741952,-22544606469793008,-22544601267974862],[67764232,1073774592,8599103952831266,8599105511168320],[67764232,1073872906,-6623803337001160,-6623801107293350],[67764232,1073872908,-6623803284297315,-6623801159997192],[67764232,1073873032,-6623803346277523,-6623801098016986],[67764232,1073905672,-13247605939232943,-13247602949356073],[67764232,1074266122,-6623803358085955,-6623801086208550],[67764232,1074266124,-6623803284297315,-6623801159997192],[67764232,1074266248,8599101131740910,8599108332258679],[67764232,1074298888,52990415723206676,52990419831149384],[67764232,1074397312,-24519907512775874,-24519905244697076],[67764232,1074429952,-31143710097470678,-31143707104296780],[67764232,1074790400,4648499087000812,4648500337588616],[67764232,1075314696,11272300873839524,11272302995044411],[67764232,1075445760,-6623803284330947,-6623801159963560],[67764232,1140850824,-24519907512775874,-24519905244697076],[67764232,1140883464,-31143710097470678,-31143707104296780],[67764232,1140981762,-6623803358085955,-6623801086208550],[67764232,1140981764,-6623803284297315,-6623801159997192],[67764232,1140981888,8599101131740910,8599108332258679],[67764232,1141014528,52990415723206676,52990419831149384],[67764232,1141374978,-6623803337001160,-6623801107293350],[67764232,1141374980,-6623803284297315,-6623801159997192],[67764232,1141375104,-6623803346277523,-6623801098016986],[67764232,1141407744,-13247605939232943,-13247602949356073],[67764232,1141506058,-13247605096148654,-13247603792440361],[67764232,1141506060,-13247605066155522,-13247603822433492],[67764232,1141506184,-22544606469793008,-22544601267974862],[67764232,1141538824,8599103952831266,8599105511168320],[67764232,1141899272,-6623803284330947,-6623801159963560],[67764232,1142030336,11272300873839524,11272302995044411],[67764232,1142554632,4648499087000812,4648500337588616],[67764232,1342177280,1975301857911278,1975303161793801],[67764232,1342308360,6623801098016986,6623803346277523],[67764232,1342701576,4648494894531634,4648504530057793],[67764232,1342832640,-9297003420342855,-9296995428836002],[67764232,1409286152,-9297003420342855,-9296995428836002],[67764232,1409417216,4648494894531634,4648504530057793],[67764232,1409810432,6623801098016986,6623803346277523],[67764232,1409941512,1975301857911278,1975303161793801],[67764232,17592186044418,-13247605134312055,-13247603754276960],[67764232,17592186044420,-13247605101666952,-13247603786922062],[67764232,17592186044544,18593996078378526,18594001619979184],[67764232,17592186077184,11272301100150310,11272302768733624],[67764232,17592186175498,11272300730744752,11272303138139186],[67764232,17592186175500,11272300789630083,11272303079253853],[67764232,17592186175624,11272300719066616,11272303149817323],[67764232,17592186208264,-974533467,974533465],[67764232,17592186568714,-24519907574746803,-24519905182726150],[67764232,17592186568716,-24519907494573587,-24519905262899363],[67764232,17592186568840,11272298321696800,11272305547187129],[67764232,17592186601480,26495207784975390,26495209992202640],[67764232,17592186699904,-3950606303199992,-3950603736210166],[67764232,17592186732544,-15222907934848161,-15222905973445933],[67764232,17592187092992,1975301858410281,1975303161294799],[67764232,17592187617288,11272300798196740,11272303070687196],[67764232,17592187748352,-9297000585232538,-9296998263946318],[67764232,17592253153416,-3950606303199992,-3950603736210166],[67764232,17592253186056,-15222907934848161,-15222905973445933],[67764232,17592253284354,-24519907574746803,-24519905182726150],[67764232,17592253284356,-24519907494573587,-24519905262899363],[67764232,17592253284480,11272298321696800,11272305547187129],[67764232,17592253317120,26495207784975390,26495209992202640],[67764232,17592253677570,11272300730744752,11272303138139186],[67764232,17592253677572,11272300789630083,11272303079253853],[67764232,17592253677696,11272300719066616,11272303149817323],[67764232,17592253710336,-974533467,974533465],[67764232,17592253808650,-13247605134312055,-13247603754276960],[67764232,17592253808652,-13247605101666952,-13247603786922062],[67764232,17592253808776,18593996078378526,18594001619979184],[67764232,17592253841416,11272301100150310,11272302768733624],[67764232,17592254201864,-9297000585232538,-9296998263946318],[67764232,17592254332928,11272300798196740,11272303070687196],[67764232,17592254857224,1975301858410281,1975303161294799],[67764232,17592454479872,22544603189358414,22544604548409457],[67764232,17592454610952,-11272303149817323,-11272300719066616],[67764232,17592455004168,17198204228118056,17198214699881130],[67764232,17592455135232,16618691985372593,16618700693280031],[67764232,17592521588744,16618691985372593,16618700693280031],[67764232,17592521719808,17198204228118056,17198214699881130],[67764232,17592522113024,-11272303149817323,-11272300719066616],[67764232,17592522244104,22544603189358414,22544604548409457],[67764232,17593259917320,-11272303061044145,-11272300807839789],[67764232,17593260310536,-13247606381210832,-13247602507378184],[67764232,17593260441600,24519905244697076,24519907512775874],[67764232,17593326895112,24519905244697076,24519907512775874],[67764232,17593327026176,-13247606381210832,-13247602507378184],[67764232,17593327419392,-11272303061044145,-11272300807839789],[67764232,35184641048584,-15222908334540116,-15222905573753978],[67764232,35184641179648,15222905573753978,15222908334540116],[67764232,35184707633160,15222905573753978,15222908334540116],[67764232,35184707764224,-15222908334540116,-15222905573753978],[67764235,131073,-6623803358085955,-6623801086208550],[67764235,131074,6623801086208550,6623803358085955],[67764235,524289,4648499057538562,4648500367050864],[67764235,524290,-4648500367050864,-4648499057538562],[67764235,655369,-1975303161793801,-1975301857911278],[67764235,655370,1975301857911278,1975303161793801],[67764235,67108865,1975301857911278,1975303161793801],[67764235,67108866,-1975303161793801,-1975301857911278],[67764235,67239945,-4648500367050864,-4648499057538562],[67764235,67239946,4648499057538562,4648500367050864],[67764235,67633161,6623801086208550,6623803358085955],[67764235,67633162,-6623803358085955,-6623801086208550],[67764237,131073,-24519907464403207,-24519905293069738],[67764237,131076,24519905293069738,24519907464403207],[67764237,524289,1975301889664154,1975303130040923],[67764237,524292,-1975303130040923,-1975301889664154],[67764237,655369,-22544604489700504,-22544603248067364],[67764237,655372,22544603248067364,22544604489700504],[67764237,67108865,22544603248067364,22544604489700504],[67764237,67108868,-22544604489700504,-22544603248067364],[67764237,67239945,-1975303130040923,-1975301889664154],[67764237,67239948,1975301889664154,1975303130040923],[67764237,67633161,24519905293069738,24519907464403207],[67764237,67633164,-24519907464403207,-24519905293069738],[67764238,131074,24519905293069738,24519907464403207],[67764238,131076,6623801086208550,6623803358085955],[67764238,131080,-31143710514241570,-31143706687525880],[67764238,524290,-1975303130040923,-1975301889664154],[67764238,524292,-4648500367050864,-4648499057538562],[67764238,524296,6623801102928978,6623803341365525],[67764238,655366,24519905258499972,24519907498972975],[67764238,655370,-1975303161793801,-1975301857911278],[67764238,655372,-22544604489700504,-22544603248067364],[67764238,67108866,-22544604489700504,-22544603248067364],[67764238,67108868,-1975303161793801,-1975301857911278],[67764238,67108872,24519905258499972,24519907498972975],[67764238,67239942,6623801102928978,6623803341365525],[67764238,67239946,-4648500367050864,-4648499057538562],[67764238,67239948,-1975303130040923,-1975301889664154],[67764238,67633158,-31143710514241570,-31143706687525880],[67764238,67633162,6623801086208550,6623803358085955],[67764238,67633164,24519905293069738,24519907464403207],[67764288,136,13247603754276960,13247605134312055],[67764288,32896,13247603792440361,13247605096148654],[67764288,131136,-1975304416511920,-1975300603193161],[67764288,131146,-6623803429142575,-6623801015151933],[67764288,131266,-1975303194709763,-1975301824995317],[67764288,131272,-47064512135024435,-47064508360216381],[67764288,131520,-1975303161793801,-1975301857911278],[67764288,132288,-22544604489700504,-22544603248067364],[67764288,524362,4648499019397906,4648500405191522],[67764288,524488,15222905579272277,15222908329021818],[67764288,557248,13247603792440361,13247605096148654],[67764288,655360,1975300603193161,1975304416511920],[67764288,655370,1975301824995317,1975303194709763],[67764288,655490,1975301824995317,1975303194709763],[67764288,655496,45089206368525624,45089209107010112],[67764288,655744,1975301857911278,1975303161793801],[67764288,656512,22544603248067364,22544604489700504],[67764288,1179840,24519905258499972,24519907498972975],[67764288,1704064,-24519907498972975,-24519905258499972],[67764288,67108928,1975300603193161,1975304416511920],[67764288,67108938,1975301824995317,1975303194709763],[67764288,67109058,1975301824995317,1975303194709763],[67764288,67109064,45089206368525624,45089209107010112],[67764288,67109312,1975301857911278,1975303161793801],[67764288,67110080,22544603248067364,22544604489700504],[67764288,67239946,4648499019397906,4648500405191522],[67764288,67240072,15222905579272277,15222908329021818],[67764288,67272832,13247603792440361,13247605096148654],[67764288,67633152,-1975304416511920,-1975300603193161],[67764288,67633162,-6623803429142575,-6623801015151933],[67764288,67633282,-1975303194709763,-1975301824995317],[67764288,67633288,-47064512135024435,-47064508360216381],[67764288,67633536,-1975303161793801,-1975301857911278],[67764288,67634304,-22544604489700504,-22544603248067364],[67764288,67764424,13247603754276960,13247605134312055],[67764288,67797184,13247603792440361,13247605096148654],[67764288,68157632,-24519907498972975,-24519905258499972],[67764288,68681856,24519905258499972,24519907498972975],[67764288,268435584,-26495210251583166,-26495207525594866],[67764288,268566720,17896101722460043,17896106590718401],[67764288,268959936,-19871408468202250,-19871404864681274],[67764288,269090944,-24519907605870334,-24519905151602618],[67764288,335544512,-24519907605870334,-24519905151602618],[67764288,335675520,-19871408468202250,-19871404864681274],[67764288,336068736,17896101722460043,17896106590718401],[67764288,336199872,-26495210251583166,-26495207525594866],[67764288,1073741952,-13247605096148654,-13247603792440361],[67764288,1074266304,-13247605096148654,-13247603792440361],[67764288,1140981888,-13247605096148654,-13247603792440361],[67764288,1141506240,-13247605096148654,-13247603792440361],[67764288,17592186044544,-13247605134312055,-13247603754276960],[67764288,17592186568896,-13247605134312055,-13247603754276960],[67764288,17592253284480,-13247605134312055,-13247603754276960],[67764288,17592253808832,-13247605134312055,-13247603754276960],[67764298,131074,6623801015151933,6623803429142575],[67764298,131136,-6623803429142575,-6623801015151933],[67764298,524290,-4648500405191522,-4648499019397906],[67764298,524352,4648499019397906,4648500405191522],[67764298,655370,1975301824995317,1975303194709763],[67764298,655432,-1975303194709763,-1975301824995317],[67764298,67108866,-1975303194709763,-1975301824995317],[67764298,67108928,1975301824995317,1975303194709763],[67764298,67239946,4648499019397906,4648500405191522],[67764298,67240008,-4648500405191522,-4648499019397906],[67764298,67633162,-6623803429142575,-6623801015151933],[67764298,67633224,6623801015151933,6623803429142575],[67764352,0,-98079630297168496,-98079620732723310],[67764352,72,-13247605134312055,-13247603754276960],[67764352,1032,-13247605101666952,-13247603786922062],[67764352,32776,-21846710653066666,-21846707699521935],[67764352,32832,-13247605096148654,-13247603792440361],[67764352,33792,-13247605066155522,-13247603822433492],[67764352,131200,218159636069763092,218159705380447032],[67764352,131210,6623801015151933,6623803429142575],[67764352,131212,24519905292829456,24519907464643493],[67764352,131272,49039810351907138,49039815163038758],[67764352,132232,31143706348939894,31143710852827564],[67764352,132288,24519905258499972,24519907498972975],[67764352,163976,-1975304733296088,-1975300286408991],[67764352,524416,-63683211765177830,-63683201408715624],[67764352,524426,-4648500405191522,-4648499019397906],[67764352,524428,-1975303134066535,-1975301885638543],[67764352,524488,-15222908329021818,-15222905579272277],[67764352,525448,-17896105469604200,-17896102843574241],[67764352,557192,-13247606060429303,-13247602828159713],[67764352,557248,-13247605096148654,-13247603792440361],[67764352,558208,-13247605066155522,-13247603822433492],[67764352,655360,-252556117717993928,-252556061588214548],[67764352,655370,-1975303194709763,-1975301824995317],[67764352,655372,-22544604485915178,-22544603251852693],[67764352,655432,-47064512135024435,-47064508360216381],[67764352,656392,-26495210655649026,-26495207121529005],[67764352,656448,-24519907498972975,-24519905258499972],[67764352,688136,-6623804322724415,-6623800121570091],[67764352,1048584,8599103418984813,8599106045014772],[67764352,1081344,13247603822433492,13247605066155522],[67764352,1179784,-35792210542100730,-35792206084256157],[67764352,1179840,-24519907498972975,-24519905258499972],[67764352,1180800,-37767512457661269,-37767509188400696],[67764352,1573000,13247603786922062,13247605101666952],[67764352,1605760,13247603822433492,13247605066155522],[67764352,1703944,31143706348939894,31143710852827564],[67764352,1704000,24519905258499972,24519907498972975],[67764352,1704960,37767509188400696,37767512457661269],[67764352,67108992,-252556117717993928,-252556061588214548],[67764352,67109002,-1975303194709763,-1975301824995317],[67764352,67109004,-22544604485915178,-22544603251852693],[67764352,67109064,-47064512135024435,-47064508360216381],[67764352,67110024,-26495210655649026,-26495207121529005],[67764352,67110080,-24519907498972975,-24519905258499972],[67764352,67141768,-6623804322724415,-6623800121570091],[67764352,67239936,-63683211765177830,-63683201408715624],[67764352,67239946,-4648500405191522,-4648499019397906],[67764352,67239948,-1975303134066535,-1975301885638543],[67764352,67240008,-15222908329021818,-15222905579272277],[67764352,67240968,-17896105469604200,-17896102843574241],[67764352,67272712,-13247606060429303,-13247602828159713],[67764352,67272768,-13247605096148654,-13247603792440361],[67764352,67273728,-13247605066155522,-13247603822433492],[67764352,67633152,218159636069763092,218159705380447032],[67764352,67633162,6623801015151933,6623803429142575],[67764352,67633164,24519905292829456,24519907464643493],[67764352,67633224,49039810351907138,49039815163038758],[67764352,67634184,31143706348939894,31143710852827564],[67764352,67634240,24519905258499972,24519907498972975],[67764352,67665928,-1975304733296088,-1975300286408991],[67764352,67764352,-98079630297168496,-98079620732723310],[67764352,67764424,-13247605134312055,-13247603754276960],[67764352,67765384,-13247605101666952,-13247603786922062],[67764352,67797128,-21846710653066666,-21846707699521935],[67764352,67797184,-13247605096148654,-13247603792440361],[67764352,67798144,-13247605066155522,-13247603822433492],[67764352,68157576,31143706348939894,31143710852827564],[67764352,68157632,24519905258499972,24519907498972975],[67764352,68158592,37767509188400696,37767512457661269],[67764352,68288520,13247603786922062,13247605101666952],[67764352,68321280,13247603822433492,13247605066155522],[67764352,68681736,-35792210542100730,-35792206084256157],[67764352,68681792,-24519907498972975,-24519905258499972],[67764352,68682752,-37767512457661269,-37767509188400696],[67764352,68812936,8599103418984813,8599106045014772],[67764352,68845696,13247603822433492,13247605066155522],[67764352,268435464,58336806002895800,58336818361228957],[67764352,268435520,26495207525594866,26495210251583166],[67764352,268436480,26495207590564460,26495210186613570],[67764352,268468224,8599103424503113,8599106039496475],[67764352,268566664,-79485635001138468,-79485618330395612],[67764352,268566720,-17896106590718401,-17896101722460043],[67764352,268567680,-17896106400955991,-17896101912222451],[67764352,268599424,-35792210542100730,-35792206084256157],[67764352,268959880,39742810183793936,39742816481973111],[67764352,268959936,19871404864681274,19871408468202250],[67764352,268960896,19871404874970728,19871408457912797],[67764352,268992640,13247603792440361,13247605096148654],[67764352,269090824,98079620672804862,98079630357086928],[67764352,269090880,24519905151602618,24519907605870334],[67764352,269091840,24519905258499972,24519907498972975],[67764352,269123584,31143706348854335,31143710852913125],[67764352,269484032,-21846710653152227,-21846707699436376],[67764352,269615232,-1975304719493192,-1975300300211890],[67764352,270008448,-13247606060429303,-13247602828159713],[67764352,270139392,-6623804308921517,-6623800135372988],[67764352,335544456,98079620672804862,98079630357086928],[67764352,335544512,24519905151602618,24519907605870334],[67764352,335545472,24519905258499972,24519907498972975],[67764352,335577216,31143706348854335,31143710852913125],[67764352,335675400,39742810183793936,39742816481973111],[67764352,335675456,19871404864681274,19871408468202250],[67764352,335676416,19871404874970728,19871408457912797],[67764352,335708160,13247603792440361,13247605096148654],[67764352,336068616,-79485635001138468,-79485618330395612],[67764352,336068672,-17896106590718401,-17896101722460043],[67764352,336069632,-17896106400955991,-17896101912222451],[67764352,336101376,-35792210542100730,-35792206084256157],[67764352,336199816,58336806002895800,58336818361228957],[67764352,336199872,26495207525594866,26495210251583166],[67764352,336200832,26495207590564460,26495210186613570],[67764352,336232576,8599103424503113,8599106039496475],[67764352,336593024,-6623804308921517,-6623800135372988],[67764352,336723968,-13247606060429303,-13247602828159713],[67764352,337117184,-1975304719493192,-1975300300211890],[67764352,337248384,-21846710653152227,-21846707699436376],[67764352,402784384,24519905292829457,24519907464643494],[67764352,403177600,-1975303134066536,-1975301885638544],[67764352,403308544,-22544604485915178,-22544603251852693],[67764352,469762176,-22544604485915178,-22544603251852693],[67764352,469893120,-1975303134066536,-1975301885638544],[67764352,470286336,24519905292829457,24519907464643494],[67764352,1073741832,26495207590564460,26495210186613570],[67764352,1073741888,13247603792440361,13247605096148654],[67764352,1073742848,13247603822433492,13247605066155522],[67764352,1073873032,-17896106414758888,-17896101898419553],[67764352,1073905792,-37767512457661269,-37767509188400696],[67764352,1074266248,19871404875056286,19871408457827235],[67764352,1074266304,13247603792440361,13247605096148654],[67764352,1074267264,13247603822433492,13247605066155522],[67764352,1074397192,24519905244697076,24519907512775874],[67764352,1074429952,37767509188400696,37767512457661269],[67764352,1074790400,-13247605066155522,-13247603822433492],[67764352,1075314816,-13247605066155522,-13247603822433492],[67764352,1140850824,24519905244697076,24519907512775874],[67764352,1140883584,37767509188400696,37767512457661269],[67764352,1140981768,19871404875056286,19871408457827235],[67764352,1140981824,13247603792440361,13247605096148654],[67764352,1140982784,13247603822433492,13247605066155522],[67764352,1141374984,-17896106414758888,-17896101898419553],[67764352,1141407744,-37767512457661269,-37767509188400696],[67764352,1141506184,26495207590564460,26495210186613570],[67764352,1141506240,13247603792440361,13247605096148654],[67764352,1141507200,13247603822433492,13247605066155522],[67764352,1142030336,-13247605066155522,-13247603822433492],[67764352,1142554752,-13247605066155522,-13247603822433492],[67764352,1342177280,-13247605096148654,-13247603792440361],[67764352,1342308480,31143706348854335,31143710852913125],[67764352,1342701696,-17896105464085903,-17896102849092541],[67764352,1342832640,-26495210655649026,-26495207121529005],[67764352,1409286272,-26495210655649026,-26495207121529005],[67764352,1409417216,-17896105464085903,-17896102849092541],[67764352,1409810432,31143706348854335,31143710852913125],[67764352,1409941632,-13247605096148654,-13247603792440361],[67764352,17592186044424,26495207514558268,26495210262619762],[67764352,17592186044480,13247603754276960,13247605134312055],[67764352,17592186045440,13247603786922062,13247605101666952],[67764352,17592186175624,-15222909453017315,-15222904455276782],[67764352,17592186208384,-24519907512775874,-24519905244697076],[67764352,17592186568840,37767509015262141,37767512630799828],[67764352,17592186568896,13247603754276960,13247605134312055],[67764352,17592186569856,13247603786922062,13247605101666952],[67764352,17592186699784,3950603736210166,3950606303199992],[67764352,17592186732544,24519905244697076,24519907512775874],[67764352,17592187092992,-13247605101666952,-13247603786922062],[67764352,17592187617408,-13247605101666952,-13247603786922062],[67764352,17592253153416,3950603736210166,3950606303199992],[67764352,17592253186176,24519905244697076,24519907512775874],[67764352,17592253284360,37767509015262141,37767512630799828],[67764352,17592253284416,13247603754276960,13247605134312055],[67764352,17592253285376,13247603786922062,13247605101666952],[67764352,17592253677576,-15222909453017315,-15222904455276782],[67764352,17592253710336,-24519907512775874,-24519905244697076],[67764352,17592253808776,26495207514558268,26495210262619762],[67764352,17592253808832,13247603754276960,13247605134312055],[67764352,17592253809792,13247603786922062,13247605101666952],[67764352,17592254332928,-13247605101666952,-13247603786922062],[67764352,17592254857344,-13247605101666952,-13247603786922062],[67764352,17592454479872,-13247605134312055,-13247603754276960],[67764352,17592454611072,49039810320897724,49039815194048170],[67764352,17592455004288,-15222908334540116,-15222905573753978],[67764352,17592455135232,-47064512160515549,-47064508334725266],[67764352,17592521588864,-47064512160515549,-47064508334725266],[67764352,17592521719808,-15222908334540116,-15222905573753978],[67764352,17592522113024,49039810320897724,49039815194048170],[67764352,17592522244224,-13247605134312055,-13247603754276960],[67764352,17593259917440,24519905244697076,24519907512775874],[67764352,17593260441600,-24519907512775874,-24519905244697076],[67764352,17593326895232,-24519907512775874,-24519905244697076],[67764352,17593327419392,24519905244697076,24519907512775874],[67764352,35184640655488,-11272303149817323,-11272300719066616],[67764352,35184641048704,13247603750907644,13247605137681374],[67764352,35184641179648,-1975303200228061,-1975301819477018],[67764352,35184707633280,-1975303200228061,-1975301819477018],[67764352,35184707764224,13247603750907644,13247605137681374],[67764352,35184708157440,-11272303149817323,-11272300719066616],[67764362,130,1975301823150576,1975303196554503],[67764362,136,-1975303196554503,-1975301823150576],[67764362,131074,47064508360216381,47064512135024435],[67764362,131080,-53688315226712860,-53688309712822464],[67764362,131200,8599102838302509,8599106625697078],[67764362,131210,1975301823150576,1975303196554503],[67764362,524290,-3950606391264266,-3950603648145893],[67764362,524296,8599102838302509,8599106625697078],[67764362,524416,-4648500405191522,-4648499019397906],[67764362,655360,-1975303196554503,-1975301823150576],[67764362,655370,-3950606391264266,-3950603648145893],[67764362,655490,47064508360216381,47064512135024435],[67764362,655496,-45089209107010112,-45089206368525624],[67764362,67108866,-45089209107010112,-45089206368525624],[67764362,67108872,47064508360216381,47064512135024435],[67764362,67108992,-3950606391264266,-3950603648145893],[67764362,67109002,-1975303196554503,-1975301823150576],[67764362,67239946,-4648500405191522,-4648499019397906],[67764362,67240066,8599102838302509,8599106625697078],[67764362,67240072,-3950606391264266,-3950603648145893],[67764362,67633152,1975301823150576,1975303196554503],[67764362,67633162,8599102838302509,8599106625697078],[67764362,67633282,-53688315226712860,-53688309712822464],[67764362,67633288,47064508360216381,47064512135024435],[67764362,67764226,-1975303196554503,-1975301823150576],[67764362,67764232,1975301823150576,1975303196554503],[67764364,132,1975301852392980,1975303167312100],[67764364,136,-1975303167312100,-1975301852392980],[67764364,131076,8599102944565871,8599106519433716],[67764364,131080,-33119013675829617,-33119008545642919],[67764364,131200,11272300226701508,11272303642182425],[67764364,131212,-13247605066127948,-13247603822461068],[67764364,524292,-6623803535249348,-6623800909045159],[67764364,524296,8599102950409964,8599106513589621],[67764364,524416,-1975303134066535,-1975301885638543],[67764364,655360,13247603822461068,13247605066127948],[67764364,655372,-9297000663454110,-9296998185724745],[67764364,655492,26495207121529005,26495210655649026],[67764364,655496,-3950606322255178,-3950603717154982],[67764364,67108868,-3950606322255178,-3950603717154982],[67764364,67108872,26495207121529005,26495210655649026],[67764364,67108992,-9297000663454110,-9296998185724745],[67764364,67109004,13247603822461068,13247605066127948],[67764364,67239948,-1975303134066535,-1975301885638543],[67764364,67240068,8599102950409964,8599106513589621],[67764364,67240072,-6623803535249348,-6623800909045159],[67764364,67633152,-13247605066127948,-13247603822461068],[67764364,67633164,11272300226701508,11272303642182425],[67764364,67633284,-33119013675829617,-33119008545642919],[67764364,67633288,8599102944565871,8599106519433716],[67764364,67764228,-1975303167312100,-1975301852392980],[67764364,67764232,1975301852392980,1975303167312100],[67764418,131074,1975301824995317,1975303194709763],[67764418,131136,-1975303194709763,-1975301824995317],[67764418,655490,1975301824995317,1975303194709763],[67764418,655552,-1975303194709763,-1975301824995317],[67764418,67108866,-1975303194709763,-1975301824995317],[67764418,67108928,1975301824995317,1975303194709763],[67764418,67633282,-1975303194709763,-1975301824995317],[67764418,67633344,1975301824995317,1975303194709763],[67764424,72,-13247605134312055,-13247603754276960],[67764424,136,13247603754276960,13247605134312055],[67764424,131080,-1975303194709763,-1975301824995317],[67764424,131136,-7321700711066549,-7321693118407216],[67764424,131200,-3950609856348444,-3950600183061726],[67764424,131272,-13247605134312055,-13247603754276960],[67764424,524352,1975301824995317,1975303194709763],[67764424,524416,-1975303194709763,-1975301824995317],[67764424,655360,13247603754276960,13247605134312055],[67764424,655432,-7321700711066549,-7321693118407216],[67764424,655496,18593996093162876,18594001605194824],[67764424,655552,1975301824995317,1975303194709763],[67764424,67108872,1975301824995317,1975303194709763],[67764424,67108928,18593996093162876,18594001605194824],[67764424,67108992,-7321700711066549,-7321693118407216],[67764424,67109064,13247603754276960,13247605134312055],[67764424,67240008,-1975303194709763,-1975301824995317],[67764424,67240072,1975301824995317,1975303194709763],[67764424,67633152,-13247605134312055,-13247603754276960],[67764424,67633224,-3950609856348444,-3950600183061726],[67764424,67633288,-7321700711066549,-7321693118407216],[67764424,67633344,-1975303194709763,-1975301824995317],[67764424,67764288,13247603754276960,13247605134312055],[67764424,67764352,-13247605134312055,-13247603754276960],[67764480,131520,1975301857911278,1975303161793801],[67764480,132480,22544603248067364,22544604489700504],[67764480,655552,-1975303161793801,-1975301857911278],[67764480,656512,-22544604489700504,-22544603248067364],[67764480,1180928,-13247605066971786,-13247603821617226],[67764480,1704960,13247603821617226,13247605066971786],[67764480,67109312,-1975303161793801,-1975301857911278],[67764480,67110272,-22544604489700504,-22544603248067364],[67764480,67633344,1975301857911278,1975303161793801],[67764480,67634304,22544603248067364,22544604489700504],[67764480,68158720,13247603821617226,13247605066971786],[67764480,68682752,-13247605066971786,-13247603821617226],[67764672,131136,-1975303161793801,-1975301857911278],[67764672,131328,1975301857911278,1975303161793801],[67764672,655552,-1975303161793801,-1975301857911278],[67764672,655744,1975301857911278,1975303161793801],[67764672,67108928,1975301857911278,1975303161793801],[67764672,67109120,-1975303161793801,-1975301857911278],[67764672,67633344,1975301857911278,1975303161793801],[67764672,67633536,-1975303161793801,-1975301857911278],[67765248,136,13247603786922062,13247605101666952],[67765248,32896,13247603822433492,13247605066155522],[67765248,132096,11272298579605019,11272305289278916],[67765248,132232,-8599106519433716,-8599102944565871],[67765248,132288,-1975303161793801,-1975301857911278],[67765248,132480,-22544604489700504,-22544603248067364],[67765248,134272,-22544604485915178,-22544603251852693],[67765248,525448,17896102843574241,17896105469604200],[67765248,558208,13247603822433492,13247605066155522],[67765248,655360,-11272305289278916,-11272298579605019],[67765248,655496,3950603717154982,3950606322255178],[67765248,655552,1975301857911278,1975303161793801],[67765248,655744,22544603248067364,22544604489700504],[67765248,657536,22544603251852693,22544604485915178],[67765248,1048584,-1975303142599947,-1975301877105131],[67765248,1081344,-1975303102468593,-1975301917236486],[67765248,1180800,-11272305289278916,-11272298579605019],[67765248,1180928,13247603821617226,13247605066971786],[67765248,1182720,13247603826875223,13247605061713792],[67765248,1573896,-1975303142599947,-1975301877105131],[67765248,1606656,-1975303102468593,-1975301917236486],[67765248,1704064,11272298579605019,11272305289278916],[67765248,1704192,-13247605066971786,-13247603821617226],[67765248,1705984,-13247605061713792,-13247603826875223],[67765248,3277824,13247603827702546,13247605060886466],[67765248,3801088,-13247605060886466,-13247603827702546],[67765248,67109888,-11272305289278916,-11272298579605019],[67765248,67110024,3950603717154982,3950606322255178],[67765248,67110080,1975301857911278,1975303161793801],[67765248,67110272,22544603248067364,22544604489700504],[67765248,67112064,22544603251852693,22544604485915178],[67765248,67240072,17896102843574241,17896105469604200],[67765248,67272832,13247603822433492,13247605066155522],[67765248,67633152,11272298579605019,11272305289278916],[67765248,67633288,-8599106519433716,-8599102944565871],[67765248,67633344,-1975303161793801,-1975301857911278],[67765248,67633536,-22544604489700504,-22544603248067364],[67765248,67635328,-22544604485915178,-22544603251852693],[67765248,67765384,13247603786922062,13247605101666952],[67765248,67798144,13247603822433492,13247605066155522],[67765248,68158592,11272298579605019,11272305289278916],[67765248,68158720,-13247605066971786,-13247603821617226],[67765248,68160512,-13247605061713792,-13247603826875223],[67765248,68288520,-1975303142599947,-1975301877105131],[67765248,68321280,-1975303102468593,-1975301917236486],[67765248,68681856,-11272305289278916,-11272298579605019],[67765248,68681984,13247603821617226,13247605066971786],[67765248,68683776,13247603826875223,13247605061713792],[67765248,68813832,-1975303142599947,-1975301877105131],[67765248,68846592,-1975303102468593,-1975301917236486],[67765248,70255616,-13247605060886466,-13247603827702546],[67765248,70778880,13247603827702546,13247605060886466],[67765248,135398400,13247603826989498,13247605061599516],[67765248,135921664,-13247605061599516,-13247603826989498],[67765248,202376192,-13247605061599516,-13247603826989498],[67765248,202899456,13247603826989498,13247605061599516],[67765248,268435584,-26495210186613570,-26495207590564460],[67765248,268567680,17896101912222451,17896106400955991],[67765248,268960896,-19871408457912797,-19871404874970728],[67765248,269090944,-24519907498972975,-24519905258499972],[67765248,269484032,3950603783705734,3950606255704424],[67765248,269616128,-2178588643,2178588646],[67765248,270009344,-22544605576438951,-22544602161328920],[67765248,270139392,26495207799404518,26495209977773508],[67765248,335545472,-24519907498972975,-24519905258499972],[67765248,335675520,-19871408457912797,-19871404874970728],[67765248,336068736,17896101912222451,17896106400955991],[67765248,336200832,-26495210186613570,-26495207590564460],[67765248,336593920,26495207799404518,26495209977773508],[67765248,336723968,-22544605576438951,-22544602161328920],[67765248,337117184,-2178588643,2178588646],[67765248,337249280,3950603783705734,3950606255704424],[67765248,1073741952,-13247605066155522,-13247603822433492],[67765248,1074267264,-13247605066155522,-13247603822433492],[67765248,1074790400,1975301917236486,1975303102468593],[67765248,1075315712,1975301917236486,1975303102468593],[67765248,1140981888,-13247605066155522,-13247603822433492],[67765248,1141507200,-13247605066155522,-13247603822433492],[67765248,1142030336,1975301917236486,1975303102468593],[67765248,1142555648,1975301917236486,1975303102468593],[67765248,17592186044544,-13247605101666952,-13247603786922062],[67765248,17592186569856,-13247605101666952,-13247603786922062],[67765248,17592187092992,1975301877105131,1975303142599947],[67765248,17592187618304,1975301877105131,1975303142599947],[67765248,17592253284480,-13247605101666952,-13247603786922062],[67765248,17592253809792,-13247605101666952,-13247603786922062],[67765248,17592254332928,1975301877105131,1975303142599947],[67765248,17592254858240,1975301877105131,1975303142599947],[67765384,136,13247603786922062,13247605101666952],[67765384,1032,-13247605101666952,-13247603786922062],[67765384,131080,-22544604485915178,-22544603251852693],[67765384,131200,-6623806745939431,-6623797698355075],[67765384,132096,31143705012464284,31143712189303175],[67765384,132232,1975301885115096,1975303134589986],[67765384,524416,-4648500367937248,-4648499056652179],[67765384,525312,4648499056652179,4648500367937248],[67765384,655360,-1975303134589986,-1975301885115096],[67765384,655496,-22544606482912750,-22544601254855122],[67765384,656392,-1975306059254087,-1975298960450994],[67765384,656512,22544603251852693,22544604485915178],[67765384,67108872,22544603251852693,22544604485915178],[67765384,67108992,-1975306059254087,-1975298960450994],[67765384,67109888,-22544606482912750,-22544601254855122],[67765384,67110024,-1975303134589986,-1975301885115096],[67765384,67240072,4648499056652179,4648500367937248],[67765384,67240968,-4648500367937248,-4648499056652179],[67765384,67633152,1975301885115096,1975303134589986],[67765384,67633288,31143705012464284,31143712189303175],[67765384,67634184,-6623806745939431,-6623797698355075],[67765384,67634304,-22544604485915178,-22544603251852693],[67765384,67764352,-13247605101666952,-13247603786922062],[67765384,67765248,13247603786922062,13247605101666952],[67765440,131136,-22544604489700504,-22544603248067364],[67765440,131200,24519905258499972,24519907498972975],[67765440,132096,-1975303161793801,-1975301857911278],[67765440,655552,1975301857911278,1975303161793801],[67765440,656448,-24519907498972975,-24519905258499972],[67765440,656512,22544603248067364,22544604489700504],[67765440,67108928,22544603248067364,22544604489700504],[67765440,67108992,-24519907498972975,-24519905258499972],[67765440,67109888,1975301857911278,1975303161793801],[67765440,67633344,-1975303161793801,-1975301857911278],[67765440,67634240,24519905258499972,24519907498972975],[67765440,67634304,-22544604489700504,-22544603248067364],[67765632,131328,22544603248067364,22544604489700504],[67765632,132096,-22544604489700504,-22544603248067364],[67765632,655744,22544603248067364,22544604489700504],[67765632,656512,-22544604489700504,-22544603248067364],[67765632,67109120,-22544604489700504,-22544603248067364],[67765632,67109888,22544603248067364,22544604489700504],[67765632,67633536,-22544604489700504,-22544603248067364],[67765632,67634304,22544603248067364,22544604489700504],[67766272,134272,22544603251852693,22544604485915178],[67766272,656512,-22544604485915178,-22544603251852693],[67766272,1182720,-13247605061713792,-13247603826875223],[67766272,1704960,13247603826875223,13247605061713792],[67766272,3278848,-13247605060886466,-13247603827702546],[67766272,3801088,13247603827702546,13247605060886466],[67766272,67112064,-22544604485915178,-22544603251852693],[67766272,67634304,22544603251852693,22544604485915178],[67766272,68160512,13247603826875223,13247605061713792],[67766272,68682752,-13247605061713792,-13247603826875223],[67766272,70256640,13247603827702546,13247605060886466],[67766272,70778880,-13247605060886466,-13247603827702546],[67767424,132096,-22544604485915178,-22544603251852693],[67767424,133120,22544603251852693,22544604485915178],[67767424,656512,-22544604485915178,-22544603251852693],[67767424,657536,22544603251852693,22544604485915178],[67767424,67109888,22544603251852693,22544604485915178],[67767424,67110912,-22544604485915178,-22544603251852693],[67767424,67634304,22544603251852693,22544604485915178],[67767424,67635328,-22544604485915178,-22544603251852693],[67796992,12,-24519907169816619,-24519905587656329],[67796992,132,22544603239782766,22544604497985104],[67796992,136,-9297000206694220,-9296998642484636],[67796992,163852,-49039814917723134,-49039810597222762],[67796992,163972,-3950606120324188,-3950603919085972],[67796992,163976,22544602310993060,22544605426774810],[67796992,557068,1975300950242052,1975304069463026],[67796992,557192,17198207831856214,17198211096142960],[67796992,655372,22544602318599624,22544605419168246],[67796992,655492,26495207784975390,26495209992202640],[67796992,655496,-49039814989147174,-49039810525798726],[67796992,1048580,1975301917270118,1975303102434961],[67796992,1048584,11272301204090824,11272302664793112],[67796992,1212420,-24519907391505747,-24519905365967204],[67796992,1212424,-873779583,873779583],[67796992,1212544,24519905365967204,24519907391505747],[67796992,1605640,17896103248910824,17896105064267619],[67796992,1605760,-11272302995044411,-11272300873839524],[67796992,1703940,26495207861603338,26495209915574692],[67796992,1703944,-6623803284297315,-6623801159997192],[67796992,1704064,-13247606222252656,-13247602666336360],[67796992,67141644,22544602318599624,22544605419168246],[67796992,67141764,26495207784975390,26495209992202640],[67796992,67141768,-49039814989147174,-49039810525798726],[67796992,67239948,1975300950242052,1975304069463026],[67796992,67240072,17198207831856214,17198211096142960],[67796992,67633164,-49039814917723134,-49039810597222762],[67796992,67633284,-3950606120324188,-3950603919085972],[67796992,67633288,22544602310993060,22544605426774810],[67796992,67797004,-24519907169816619,-24519905587656329],[67796992,67797124,22544603239782766,22544604497985104],[67796992,67797128,-9297000206694220,-9296998642484636],[67796992,68190212,26495207861603338,26495209915574692],[67796992,68190216,-6623803284297315,-6623801159997192],[67796992,68190336,-13247606222252656,-13247602666336360],[67796992,68288520,17896103248910824,17896105064267619],[67796992,68288640,-11272302995044411,-11272300873839524],[67796992,68681732,-24519907391505747,-24519905365967204],[67796992,68681736,-873779583,873779583],[67796992,68681856,24519905365967204,24519907391505747],[67796992,68845572,1975301917270118,1975303102434961],[67796992,68845576,11272301204090824,11272302664793112],[67796992,268435460,49039810292025454,49039815222920444],[67796992,268435464,-22544606644811289,-22544601092956580],[67796992,268435584,-13247605061713792,-13247603826875223],[67796992,268599300,-3950608433100829,-3950601606309328],[67796992,268599304,-24519909474570990,-24519903282901962],[67796992,268599424,3950603932147814,3950606107262344],[67796992,268992516,26495207799184865,26495209977993164],[67796992,268992520,8599102641942379,8599106822057209],[67796992,268992640,-21846713211925840,-21846705140662760],[67796992,269090820,26495207799404518,26495209977773508],[67796992,269090824,-6623804308921517,-6623800135372988],[67796992,269090944,4648494894207522,4648504530381905],[67796992,335577092,26495207799404518,26495209977773508],[67796992,335577096,-6623804308921517,-6623800135372988],[67796992,335577216,4648494894207522,4648504530381905],[67796992,335675396,26495207799184865,26495209977993164],[67796992,335675400,8599102641942379,8599106822057209],[67796992,335675520,-21846713211925840,-21846705140662760],[67796992,336068612,-3950608433100829,-3950601606309328],[67796992,336068616,-24519909474570990,-24519903282901962],[67796992,336068736,3950603932147814,3950606107262344],[67796992,336232452,49039810292025454,49039815222920444],[67796992,336232456,-22544606644811289,-22544601092956580],[67796992,336232576,-13247605061713792,-13247603826875223],[67796992,1073741828,1975301917236486,1975303102468593],[67796992,1073741832,-22544606578062592,-22544601159705275],[67796992,1073741952,18593996442899990,18594001255457720],[67796992,1073905668,17198204951509383,17198213976489780],[67796992,1073905672,-24519908340000795,-24519904417472150],[67796992,1073905792,-3950606107262344,-3950603932147814],[67796992,1074298884,11272298195290642,11272305673593300],[67796992,1074298888,-6623804212490749,-6623800231803759],[67796992,1074299008,11272300873839524,11272302995044411],[67796992,1074397188,-26495209977773508,-26495207799404518],[67796992,1074397192,8599101696810952,8599107767188634],[67796992,1074397312,11272298596064681,11272305272819252],[67796992,1140883460,-26495209977773508,-26495207799404518],[67796992,1140883464,8599101696810952,8599107767188634],[67796992,1140883584,11272298596064681,11272305272819252],[67796992,1140981764,11272298195290642,11272305673593300],[67796992,1140981768,-6623804212490749,-6623800231803759],[67796992,1140981888,11272300873839524,11272302995044411],[67796992,1141374980,17198204951509383,17198213976489780],[67796992,1141374984,-24519908340000795,-24519904417472150],[67796992,1141375104,-3950606107262344,-3950603932147814],[67796992,1141538820,1975301917236486,1975303102468593],[67796992,1141538824,-22544606578062592,-22544601159705275],[67796992,1141538944,18593996442899990,18594001255457720],[67796992,17592186044420,1975301877105131,1975303142599947],[67796992,17592186044424,11272301153102595,11272302715781341],[67796992,17592186044544,-13247605076872486,-13247603811716528],[67796992,17592186208260,-24519907477236870,-24519905280236082],[67796992,17592186208264,20569300415763760,20569302302299032],[67796992,17592186601476,26495207784975390,26495209992202640],[67796992,17592186601480,-24519907494573587,-24519905262899363],[67796992,17592186601600,11272300798196740,11272303070687196],[67796992,17592186699784,15222905973445933,15222907934848161],[67796992,17592186699904,-24519907512775874,-24519905244697076],[67796992,17592253186056,15222905973445933,15222907934848161],[67796992,17592253186176,-24519907512775874,-24519905244697076],[67796992,17592253284356,26495207784975390,26495209992202640],[67796992,17592253284360,-24519907494573587,-24519905262899363],[67796992,17592253284480,11272300798196740,11272303070687196],[67796992,17592253677572,-24519907477236870,-24519905280236082],[67796992,17592253677576,20569300415763760,20569302302299032],[67796992,17592253841412,1975301877105131,1975303142599947],[67796992,17592253841416,11272301153102595,11272302715781341],[67796992,17592253841536,-13247605076872486,-13247603811716528],[67796997,131073,26495207799425147,26495209977752878],[67796997,131076,-26495209977752878,-26495207799425147],[67796997,524289,-13247605061578886,-13247603827010127],[67796997,524292,13247603827010127,13247605061578886],[67796997,688129,13247603821617226,13247605066971786],[67796997,688132,-13247605066971786,-13247603821617226],[67796997,67108865,-13247605066971786,-13247603821617226],[67796997,67108868,13247603821617226,13247605066971786],[67796997,67272705,13247603827010127,13247605061578886],[67796997,67272708,-13247605061578886,-13247603827010127],[67796997,67665921,-26495209977752878,-26495207799425147],[67796997,67665924,26495207799425147,26495209977752878],[67797002,32770,8599103904459875,8599105559539709],[67797002,32776,-8599105559539709,-8599103904459875],[67797002,131074,-31143710514241570,-31143706687525880],[67797002,131080,31143706687525880,31143710514241570],[67797002,524290,11272301161280132,11272302707603802],[67797002,524296,-11272302707603802,-11272301161280132],[67797002,688130,-11272302707496740,-11272301161387192],[67797002,688136,11272301161387192,11272302707496740],[67797002,67108866,11272301161387192,11272302707496740],[67797002,67108872,-11272302707496740,-11272301161387192],[67797002,67272706,-11272302707603802,-11272301161280132],[67797002,67272712,11272301161280132,11272302707603802],[67797002,67665922,31143706687525880,31143710514241570],[67797002,67665928,-31143710514241570,-31143706687525880],[67797002,67764226,-8599105559539709,-8599103904459875],[67797002,67764232,8599103904459875,8599105559539709],[67797004,12,-24519907169816619,-24519905587656329],[67797004,32772,8599103952864898,8599105511134688],[67797004,32776,15920800076521641,15920803216951721],[67797004,131076,19871400888629471,19871412444254049],[67797004,131080,57638914684866570,57638920294078918],[67797004,163840,-77510327129120619,-77510321182708389],[67797004,524292,18593996124609637,18594001573748076],[67797004,524296,-24519907697962539,-24519905059510412],[67797004,557056,5925906124214463,5925908934900775],[67797004,655372,47064508847957192,47064511647283630],[67797004,688132,-24519907696178166,-24519905061294785],[67797004,688136,-22544606585988845,-22544601151779026],[67797004,67108868,-22544606585988845,-22544601151779026],[67797004,67108872,-24519907696178166,-24519905061294785],[67797004,67141632,47064508847957192,47064511647283630],[67797004,67239948,5925906124214463,5925908934900775],[67797004,67272708,-24519907697962539,-24519905059510412],[67797004,67272712,18593996124609637,18594001573748076],[67797004,67633164,-77510327129120619,-77510321182708389],[67797004,67665924,57638914684866570,57638920294078918],[67797004,67665928,19871400888629471,19871412444254049],[67797004,67764228,15920800076521641,15920803216951721],[67797004,67764232,8599103952864898,8599105511134688],[67797004,67796992,-24519907169816619,-24519905587656329],[67797124,132,22544603239782766,22544604497985104],[67797124,32896,-22544604497985104,-22544603239782766],[67797124,524292,-22544604497985104,-22544603239782766],[67797124,557056,22544603239782766,22544604497985104],[67797124,67240068,22544603239782766,22544604497985104],[67797124,67272832,-22544604497985104,-22544603239782766],[67797124,67764228,-22544604497985104,-22544603239782766],[67797124,67796992,22544603239782766,22544604497985104],[67797128,136,-9297000206694220,-9296998642484636],[67797128,32776,-21846710653066666,-21846707699521935],[67797128,32896,15920798685149414,15920804608323947],[67797128,131080,42416007508370071,42416013562281321],[67797128,131200,4648493631385954,4648505793203474],[67797128,163976,31841601898078136,31841604688868588],[67797128,524296,-1975304066969121,-1975300952735957],[67797128,524416,11272301159430177,11272302709453757],[67797128,557056,5925906044742719,5925909014372521],[67797128,655360,-47064513301573545,-47064507193667275],[67797128,688136,-22544606653723935,-22544601084043932],[67797128,688256,-9297000814034204,-9296998035144653],[67797128,67108872,-9297000814034204,-9296998035144653],[67797128,67108992,-22544606653723935,-22544601084043932],[67797128,67141768,-47064513301573545,-47064507193667275],[67797128,67240072,5925906044742719,5925909014372521],[67797128,67272712,11272301159430177,11272302709453757],[67797128,67272832,-1975304066969121,-1975300952735957],[67797128,67633152,31841601898078136,31841604688868588],[67797128,67665928,4648493631385954,4648505793203474],[67797128,67666048,42416007508370071,42416013562281321],[67797128,67764232,15920798685149414,15920804608323947],[67797128,67764352,-21846710653066666,-21846707699521935],[67797128,67796992,-9297000206694220,-9296998642484636],[67797184,32832,-13247605096148654,-13247603792440361],[67797184,32896,13247603792440361,13247605096148654],[67797184,131136,11272300812248450,11272303056635485],[67797184,131200,-11272303056635485,-11272300812248450],[67797184,688192,-1975303134066536,-1975301885638544],[67797184,688256,1975301885638544,1975303134066536],[67797184,67108928,1975301885638544,1975303134066536],[67797184,67108992,-1975303134066536,-1975301885638544],[67797184,67665984,-11272303056635485,-11272300812248450],[67797184,67666048,11272300812248450,11272303056635485],[67797184,67764288,13247603792440361,13247605096148654],[67797184,67764352,-13247605096148654,-13247603792440361],[67798144,32896,13247603822433492,13247605066155522],[67798144,33792,-13247605066155522,-13247603822433492],[67798144,131200,-11272302995044411,-11272300873839524],[67798144,132096,11272300873839524,11272302995044411],[67798144,688256,1975301917236486,1975303102468593],[67798144,689152,-1975303102468593,-1975301917236486],[67798144,67108992,-1975303102468593,-1975301917236486],[67798144,67109888,1975301917236486,1975303102468593],[67798144,67666048,11272300873839524,11272302995044411],[67798144,67666944,-11272302995044411,-11272300873839524],[67798144,67764352,-13247605066155522,-13247603822433492],[67798144,67765248,13247603822433492,13247605066155522],[68157440,131080,4648498045480101,4648501379109326],[68157440,131200,-1975305288493376,-1975299731211704],[68157440,132096,-1975304605835260,-1975300413869816],[68157440,132232,-1975303134589986,-1975301885115096],[68157440,524296,-4648502626375994,-4648496798213434],[68157440,524416,6623798642954895,6623805801339609],[68157440,525312,-3950608433100829,-3950601606309328],[68157440,655496,26495207577110300,26495210200067732],[68157440,656392,-1975303134589986,-1975301885115096],[68157440,656512,-45089208969627452,-45089206505908288],[68157440,688136,11272301204057192,11272302664826744],[68157440,688256,-1975303102468593,-1975301917236486],[68157440,689152,-22544604430576096,-22544603307191776],[68157440,2752520,-1975303127512530,-1975301892192549],[68157440,2752640,-22544604485915178,-22544603251852693],[68157440,2753536,26495207805375563,26495209971802464],[68157440,68288520,4648498045480101,4648501379109326],[68157440,68288640,-1975305288493376,-1975299731211704],[68157440,68289536,-1975304605835260,-1975300413869816],[68157440,68289672,-1975303134589986,-1975301885115096],[68157440,68681736,-4648502626375994,-4648496798213434],[68157440,68681856,6623798642954895,6623805801339609],[68157440,68682752,-3950608433100829,-3950601606309328],[68157440,68812936,26495207577110300,26495210200067732],[68157440,68813832,-1975303134589986,-1975301885115096],[68157440,68813952,-45089208969627452,-45089206505908288],[68157440,68845576,11272301204057192,11272302664826744],[68157440,68845696,-1975303102468593,-1975301917236486],[68157440,68846592,-22544604430576096,-22544603307191776],[68157440,70909960,-1975303127512530,-1975301892192549],[68157440,70910080,-22544604485915178,-22544603251852693],[68157440,70910976,26495207805375563,26495209971802464],[68157440,134218752,13247602765618499,13247606122970514],[68157440,134873096,-1975303134066536,-1975301885638544],[68157440,134873216,-22544604489700504,-22544603248067364],[68157440,134874112,26495207799404518,26495209977773508],[68157440,202376192,13247602765618499,13247606122970514],[68157440,203030536,-1975303134066536,-1975301885638544],[68157440,203030656,-22544604489700504,-22544603248067364],[68157440,203031552,26495207799404518,26495209977773508],[68157440,268435584,-4648502490229551,-4648496934359881],[68157440,268436480,-3950609211113582,-3950600828296569],[68157440,268960896,-3950606258772122,-3950603780638034],[68157440,269090824,8599103424503113,8599106039496475],[68157440,269090944,15920798695415380,15920804598057982],[68157440,269091840,-49039815222920444,-49039810292025454],[68157440,271057024,-1975303134066535,-1975301885638543],[68157440,271057920,26495207799184865,26495209977993164],[68157440,336593024,-4648502490229551,-4648496934359881],[68157440,336593920,-3950609211113582,-3950600828296569],[68157440,337118336,-3950606258772122,-3950603780638034],[68157440,337248264,8599103424503113,8599106039496475],[68157440,337248384,15920798695415380,15920804598057982],[68157440,337249280,-49039815222920444,-49039810292025454],[68157440,339214464,-1975303134066535,-1975301885638543],[68157440,339215360,26495207799184865,26495209977993164],[68157440,402785280,13247603826989498,13247605061599516],[68157440,403177600,-3950606232509516,-3950603806900640],[68157440,403178496,-7321700188594704,-7321693640879080],[68157440,404751360,-24519907464643494,-24519905292829457],[68157440,470942720,13247603826989498,13247605061599516],[68157440,471335040,-3950606232509516,-3950603806900640],[68157440,471335936,-7321700188594704,-7321693640879080],[68157440,472908800,-24519907464643494,-24519905292829457],[68157440,939525120,-1975303127512529,-1975301892192548],[68157440,1007682560,-1975303127512529,-1975301892192548],[68157440,1074397192,-4648500337588616,-4648499087000812],[68157440,1074397312,13247603822433492,13247605066155522],[68157440,1074398208,-1975303102468593,-1975301917236486],[68157440,1142554632,-4648500337588616,-4648499087000812],[68157440,1142554752,13247603822433492,13247605066155522],[68157440,1142555648,-1975303102468593,-1975301917236486],[68157440,1342701696,-4648500337554984,-4648499087034444],[68157440,1342702592,-1975303102434961,-1975301917270118],[68157440,1410859136,-4648500337554984,-4648499087034444],[68157440,1410860032,-1975303102434961,-1975301917270118],[68157440,1476396032,13247603855385956,13247605033203059],[68157440,1544553472,13247603855385956,13247605033203059],[68157440,17592186699784,-1975303161294799,-1975301858410281],[68157440,17592186699904,13247603786922062,13247605101666952],[68157440,17592186700800,-1975303142599947,-1975301877105131],[68157440,17592254857224,-1975303161294799,-1975301858410281],[68157440,17592254857344,13247603786922062,13247605101666952],[68157440,17592254858240,-1975303142599947,-1975301877105131],[68157440,17592455004288,-1975303167312100,-1975301852392980],[68157440,17592455005184,-22544604497985104,-22544603239782766],[68157440,17592523161728,-1975303167312100,-1975301852392980],[68157440,17592523162624,-22544604497985104,-22544603239782766],[68157440,17592588698624,13247603811716528,13247605076872486],[68157440,17592656856064,13247603811716528,13247605076872486],[68157440,35184641048704,13247603788555150,13247605100033866],[68157440,35184641049600,-1975303134589986,-1975301885115096],[68157440,35184709206144,13247603788555150,13247605100033866],[68157440,35184709207040,-1975303134589986,-1975301885115096],[68157440,35184774743040,13247603822461068,13247605066127948],[68157440,35184842900480,13247603822461068,13247605066127948],[68157440,70369146831872,-22544604485800118,-22544603251967752],[68157440,70369214989312,-22544604485800118,-22544603251967752],[68157450,1703938,-6623803364300278,-6623801079994226],[68157450,1703944,6623801079994226,6623803364300278],[68157450,67764226,6623801079994226,6623803364300278],[68157450,67764232,-6623803364300278,-6623801079994226],[68157452,1703940,-6623803284297315,-6623801159997192],[68157452,1703944,6623801159997192,6623803284297315],[68157452,67764228,6623801159997192,6623803284297315],[68157452,67764232,-6623803284297315,-6623801159997192],[68157576,132096,-1975303134589986,-1975301885115096],[68157576,655360,35792205719323062,35792210907033824],[68157576,1180800,-1975303134589986,-1975301885115096],[68157576,1703944,31143706348939894,31143710852827564],[68157576,1704064,4648494866495498,4648504558093930],[68157576,67240968,-1975303134589986,-1975301885115096],[68157576,67764232,4648494866495498,4648504558093930],[68157576,67764352,31143706348939894,31143710852827564],[68157576,68289672,-1975303134589986,-1975301885115096],[68157576,68812936,35792205719323062,35792210907033824],[68157576,270008328,6623801098016984,6623803346277521],[68157576,270008448,-6623803346277521,-6623801098016984],[68157576,336068616,-6623803346277521,-6623801098016984],[68157576,336068736,6623801098016984,6623803346277521],[68157632,1704000,24519905258499972,24519907498972975],[68157632,1704064,-24519907498972975,-24519905258499972],[68157632,67764288,-24519907498972975,-24519905258499972],[68157632,67764352,24519905258499972,24519907498972975],[68157632,270008384,6623801102928978,6623803341365525],[68157632,270008448,-6623803341365525,-6623801102928978],[68157632,336068672,-6623803341365525,-6623801102928978],[68157632,336068736,6623801102928978,6623803341365525],[68158592,132232,-1975303134589986,-1975301885115096],[68158592,656512,-49039814477679612,-49039811037266288],[68158592,1179784,1975301885115096,1975303134589986],[68158592,1704064,11272298579605019,11272305289278916],[68158592,1704960,37767509188400696,37767512457661269],[68158592,67240968,1975301885115096,1975303134589986],[68158592,67764352,37767509188400696,37767512457661269],[68158592,67765248,11272298579605019,11272305289278916],[68158592,68288520,-1975303134589986,-1975301885115096],[68158592,68812800,-49039814477679612,-49039811037266288],[68158592,268960896,-28470513122209439,-28470509674673669],[68158592,270008448,8599101370269630,8599108093729955],[68158592,270009344,19871405028479484,19871408304404039],[68158592,336068736,19871405028479484,19871408304404039],[68158592,336069632,8599101370269630,8599108093729955],[68158592,337117184,-28470513122209439,-28470509674673669],[68158592,403701888,1975301917236486,1975303102468593],[68158592,403702784,-1975303102468593,-1975301917236486],[68158592,469762176,-1975303102468593,-1975301917236486],[68158592,469763072,1975301917236486,1975303102468593],[68158720,1704192,-13247605066971786,-13247603821617226],[68158720,1704960,13247603821617226,13247605066971786],[68158720,67764480,13247603821617226,13247605066971786],[68158720,67765248,-13247605066971786,-13247603821617226],[68158720,270008576,-13247605061578886,-13247603827010127],[68158720,270009344,13247603827010127,13247605061578886],[68158720,336068864,13247603827010127,13247605061578886],[68158720,336069632,-13247605061578886,-13247603827010127],[68158720,403702016,1975301891852867,1975303127852212],[68158720,403702784,-1975303127852212,-1975301891852867],[68158720,469762304,-1975303127852212,-1975301891852867],[68158720,469763072,1975301891852867,1975303127852212],[68160512,1704960,13247603826875223,13247605061713792],[68160512,1705984,-13247605061713792,-13247603826875223],[68160512,67765248,-13247605061713792,-13247603826875223],[68160512,67766272,13247603826875223,13247605061713792],[68160512,270009344,13247603821511848,13247605067077166],[68160512,270010368,-13247605067077166,-13247603821511848],[68160512,336069632,-13247605067077166,-13247603821511848],[68160512,336070656,13247603821511848,13247605067077166],[68160512,403702784,-1975303134066536,-1975301885638544],[68160512,403703808,1975301885638544,1975303134066536],[68160512,469763072,1975301885638544,1975303134066536],[68160512,469764096,-1975303134066536,-1975301885638544],[68190212,1703940,26495207861603338,26495209915574692],[68190212,1736704,-26495209915574692,-26495207861603338],[68190212,67764228,-26495209915574692,-26495207861603338],[68190212,67796992,26495207861603338,26495209915574692],[68190216,655360,13247602666336360,13247606222252656],[68190216,688136,-6623803284330947,-6623801159963560],[68190216,1703944,-6623803284297315,-6623801159997192],[68190216,1736704,26495207861603338,26495209915574692],[68190216,67764232,26495207861603338,26495209915574692],[68190216,67796992,-6623803284297315,-6623801159997192],[68190216,68812800,-6623803284330947,-6623801159963560],[68190216,68845576,13247602666336360,13247606222252656],[68190336,655360,-13247606222252656,-13247602666336360],[68190336,1704064,-13247606222252656,-13247602666336360],[68190336,67796992,-13247606222252656,-13247602666336360],[68190336,68845696,-13247606222252656,-13247602666336360],[68288514,524296,4648499059714221,4648500364875210],[68288514,655370,11272300812248450,11272303056635485],[68288514,1703944,-6623803364300278,-6623801079994226],[68288514,67633162,-6623803364300278,-6623801079994226],[68288514,68681736,11272300812248450,11272303056635485],[68288514,68812810,4648499059714221,4648500364875210],[68288516,524296,4648499087034444,4648500337554984],[68288516,557056,1975301917270118,1975303102434961],[68288516,655372,11272300873839524,11272302995044411],[68288516,688132,-24519907391505747,-24519905365967204],[68288516,1703944,-6623803284297315,-6623801159997192],[68288516,1736704,26495207861603338,26495209915574692],[68288516,67633164,-6623803284297315,-6623801159997192],[68288516,67665924,26495207861603338,26495209915574692],[68288516,68681736,11272300873839524,11272302995044411],[68288516,68714496,-24519907391505747,-24519905365967204],[68288516,68812812,4648499087034444,4648500337554984],[68288516,68845572,1975301917270118,1975303102434961],[68288520,0,18593997925454304,18593999772903408],[68288520,131080,4648498045480101,4648501379109326],[68288520,132232,-1975303134589986,-1975301885115096],[68288520,524290,-4648500364875210,-4648499059714221],[68288520,524292,-4648500337554984,-4648499087034444],[68288520,524416,-4648500367937249,-4648499056652180],[68288520,557056,9296998645184146,9297000203994710],[68288520,655370,-11272303056635485,-11272300812248450],[68288520,655372,-11272302995044411,-11272300873839524],[68288520,655496,3950601481951714,3950608557458446],[68288520,656392,-1975303134589986,-1975301885115096],[68288520,688136,17896103248910824,17896105064267619],[68288520,1048584,4648498045480100,4648501379109325],[68288520,1179648,9296996568177046,9297002281001814],[68288520,1180800,1975301885115096,1975303134589986],[68288520,1573000,13247603786922062,13247605101666952],[68288520,1573896,-1975303142599947,-1975301877105131],[68288520,1605640,17896103248910824,17896105064267619],[68288520,1703938,6623801079994226,6623803364300278],[68288520,1703940,6623801159997192,6623803284297315],[68288520,1704064,-21846713226576023,-21846705126012580],[68288520,1704960,3950603919085972,3950606120324188],[68288520,1736704,-26495209915574692,-26495207861603338],[68288520,2752520,-1975303127512530,-1975301892192549],[68288520,3670024,-1975303127512529,-1975301892192548],[68288520,3801088,3950603941250842,3950606098159314],[68288520,67108872,9296996568177046,9297002281001814],[68288520,67110024,1975301885115096,1975303134589986],[68288520,67239936,4648498045480100,4648501379109325],[68288520,67633162,6623801079994226,6623803364300278],[68288520,67633164,6623801159997192,6623803284297315],[68288520,67633288,-21846713226576023,-21846705126012580],[68288520,67634184,3950603919085972,3950606120324188],[68288520,67665928,-26495209915574692,-26495207861603338],[68288520,67764352,13247603786922062,13247605101666952],[68288520,67765248,-1975303142599947,-1975301877105131],[68288520,67796992,17896103248910824,17896105064267619],[68288520,68157440,4648498045480101,4648501379109326],[68288520,68158592,-1975303134589986,-1975301885115096],[68288520,68288520,18593997925454304,18593999772903408],[68288520,68681730,-11272303056635485,-11272300812248450],[68288520,68681732,-11272302995044411,-11272300873839524],[68288520,68681856,3950601481951714,3950608557458446],[68288520,68682752,-1975303134589986,-1975301885115096],[68288520,68714496,17896103248910824,17896105064267619],[68288520,68812810,-4648500364875210,-4648499059714221],[68288520,68812812,-4648500337554984,-4648499087034444],[68288520,68812936,-4648500367937249,-4648499056652180],[68288520,68845576,9296998645184146,9297000203994710],[68288520,69730312,3950603941250842,3950606098159314],[68288520,69861376,-1975303127512529,-1975301892192548],[68288520,70778880,-1975303127512530,-1975301892192549],[68288520,134873096,-1975303134066536,-1975301885638544],[68288520,135790600,-1975303130061553,-1975301889643525],[68288520,135921664,3950603932147814,3950606107262344],[68288520,201850888,3950603932147814,3950606107262344],[68288520,201981952,-1975303130061553,-1975301889643525],[68288520,202899456,-1975303134066536,-1975301885638544],[68288520,268959744,-4648500367937248,-4648499056652179],[68288520,269090824,13247603792440361,13247605096148654],[68288520,270008328,3950601491169156,3950608548241002],[68288520,270139392,-21846713211925840,-21846705140662760],[68288520,336068616,-21846713211925840,-21846705140662760],[68288520,336199680,3950601491169156,3950608548241002],[68288520,337117184,13247603792440361,13247605096148654],[68288520,337248264,-4648500367937248,-4648499056652179],[68288520,403701768,-1975303130061553,-1975301889643525],[68288520,403832832,1975301889643525,1975303130061553],[68288520,469762056,1975301889643525,1975303130061553],[68288520,469893120,-1975303130061553,-1975301889643525],[68288520,1074266112,-4648500337588616,-4648499087000812],[68288520,1075314696,-11272302995044411,-11272300873839524],[68288520,1075445760,6623801159963560,6623803284330947],[68288520,1141374984,6623801159963560,6623803284330947],[68288520,1141506048,-11272302995044411,-11272300873839524],[68288520,1142554632,-4648500337588616,-4648499087000812],[68288520,17592186568704,-1975303161294799,-1975301858410281],[68288520,17592187617288,-11272303070687196,-11272300798196740],[68288520,17592187748352,9296998263946318,9297000585232538],[68288520,17592253677576,9296998263946318,9297000585232538],[68288520,17592253808640,-11272303070687196,-11272300798196740],[68288520,17592254857224,-1975303161294799,-1975301858410281],[68288576,655552,-11272303056635485,-11272300812248450],[68288576,1704064,11272300812248450,11272303056635485],[68288576,67633344,11272300812248450,11272303056635485],[68288576,68681856,-11272303056635485,-11272300812248450],[68288640,0,-18593999772903408,-18593997925454304],[68288640,131200,-1975305288493376,-1975299731211704],[68288640,524296,-6623804014035016,-6623800430259491],[68288640,557056,-11272302995044411,-11272300873839524],[68288640,655496,22544601642609286,22544606095158586],[68288640,655552,11272300812248450,11272303056635485],[68288640,656512,15222904792925496,15222909115368599],[68288640,1048704,-9296999886451704,-9296998962727152],[68288640,1179648,-7321699692989682,-7321694136484094],[68288640,1573000,-11272303070687196,-11272300798196740],[68288640,1605760,-11272302995044411,-11272300873839524],[68288640,1703944,-17896106405885420,-17896101907293023],[68288640,1704000,-11272303056635485,-11272300812248450],[68288640,1704960,-15222909115368599,-15222904792925496],[68288640,2752640,3950603941250842,3950606098159314],[68288640,3801088,-3950606098159314,-3950603941250842],[68288640,67108992,-7321699692989682,-7321694136484094],[68288640,67239936,-9296999886451704,-9296998962727152],[68288640,67633288,-17896106405885420,-17896101907293023],[68288640,67633344,-11272303056635485,-11272300812248450],[68288640,67634304,-15222909115368599,-15222904792925496],[68288640,67764232,-11272303070687196,-11272300798196740],[68288640,67796992,-11272302995044411,-11272300873839524],[68288640,68157440,-1975305288493376,-1975299731211704],[68288640,68288640,-18593999772903408,-18593997925454304],[68288640,68681736,22544601642609286,22544606095158586],[68288640,68681792,11272300812248450,11272303056635485],[68288640,68682752,15222904792925496,15222909115368599],[68288640,68812936,-6623804014035016,-6623800430259491],[68288640,68845696,-11272302995044411,-11272300873839524],[68288640,69730432,-3950606098159314,-3950603941250842],[68288640,70778880,3950603941250842,3950606098159314],[68288640,134873216,3950603932147814,3950606107262344],[68288640,135921664,-3950606107262344,-3950603932147814],[68288640,201851008,-3950606107262344,-3950603932147814],[68288640,202899456,3950603932147814,3950606107262344],[68288640,268959744,42416007508284513,42416013562366883],[68288640,269090944,11272299879110672,11272303989773264],[68288640,270008448,22544601642609286,22544606095158586],[68288640,270139392,8599102641942379,8599106822057209],[68288640,336068736,8599102641942379,8599106822057209],[68288640,336199680,22544601642609286,22544606095158586],[68288640,337117184,11272299879110672,11272303989773264],[68288640,337248384,42416007508284513,42416013562366883],[68288640,1074266112,11272300873839524,11272302995044411],[68288640,1075314816,11272300873839524,11272302995044411],[68288640,1141506048,11272300873839524,11272302995044411],[68288640,1142554752,11272300873839524,11272302995044411],[68288640,17592186568704,11272300798196740,11272303070687196],[68288640,17592187617408,11272300798196740,11272303070687196],[68288640,17592253808640,11272300798196740,11272303070687196],[68288640,17592254857344,11272300798196740,11272303070687196],[68289536,132096,-1975304605835260,-1975300413869816],[68289536,656512,-11272302995044411,-11272300873839524],[68289536,1179648,1975300413869816,1975304605835260],[68289536,1704064,11272300873839524,11272302995044411],[68289536,67109888,1975300413869816,1975304605835260],[68289536,67634304,11272300873839524,11272302995044411],[68289536,68157440,-1975304605835260,-1975300413869816],[68289536,68681856,-11272302995044411,-11272300873839524],[68289536,269091840,-26495209977993164,-26495207799184865],[68289536,270139392,26495207799184865,26495209977993164],[68289536,336069632,26495207799184865,26495209977993164],[68289536,337117184,-26495209977993164,-26495207799184865],[68289672,132096,-1975303134589986,-1975301885115096],[68289672,132232,-1975303134589986,-1975301885115096],[68289672,1179648,1975301885115096,1975303134589986],[68289672,1179784,1975301885115096,1975303134589986],[68289672,67109888,1975301885115096,1975303134589986],[68289672,67110024,1975301885115096,1975303134589986],[68289672,68157440,-1975303134589986,-1975301885115096],[68289672,68157576,-1975303134589986,-1975301885115096],[68321280,524292,-1975303102434961,-1975301917270118],[68321280,524296,-11272302664793112,-11272301204090824],[68321280,688132,24519905365967204,24519907391505747],[68321280,688136,-873779583,873779583],[68321280,688256,-1975303102468593,-1975301917236486],[68321280,689152,-22544604430576096,-22544603307191776],[68321280,1605640,-17896105064267619,-17896103248910824],[68321280,1605760,13247603822433492,13247605066155522],[68321280,1606656,-1975303102468593,-1975301917236486],[68321280,1703940,-26495209915574692,-26495207861603338],[68321280,1703944,6623801159997192,6623803284297315],[68321280,1704064,-11272302995044411,-11272300873839524],[68321280,1704960,24519905365967204,24519907391505747],[68321280,67665924,-26495209915574692,-26495207861603338],[68321280,67665928,6623801159997192,6623803284297315],[68321280,67666048,-11272302995044411,-11272300873839524],[68321280,67666944,24519905365967204,24519907391505747],[68321280,67764232,-17896105064267619,-17896103248910824],[68321280,67764352,13247603822433492,13247605066155522],[68321280,67765248,-1975303102468593,-1975301917236486],[68321280,68681732,24519905365967204,24519907391505747],[68321280,68681736,-873779583,873779583],[68321280,68681856,-1975303102468593,-1975301917236486],[68321280,68682752,-22544604430576096,-22544603307191776],[68321280,68845572,-1975303102434961,-1975301917270118],[68321280,68845576,-11272302664793112,-11272301204090824],[68681730,655370,-11272303056635485,-11272300812248450],[68681730,1179658,11272300812248450,11272303056635485],[68681730,67764232,11272300812248450,11272303056635485],[68681730,68288520,-11272303056635485,-11272300812248450],[68681732,655372,-11272302995044411,-11272300873839524],[68681732,688132,24519905365967204,24519907391505747],[68681732,1179660,11272300873839524,11272302995044411],[68681732,1212420,-24519907391505747,-24519905365967204],[68681732,67764232,11272300873839524,11272302995044411],[68681732,67796992,-24519907391505747,-24519905365967204],[68681732,68288520,-11272302995044411,-11272300873839524],[68681732,68321280,24519905365967204,24519907391505747],[68681736,0,-18593999772903408,-18593997925454304],[68681736,131200,-9297001142627820,-9296997706551035],[68681736,132096,-3950606120324188,-3950603919085972],[68681736,524296,-4648502626375994,-4648496798213434],[68681736,655370,11272300812248450,11272303056635485],[68681736,655372,11272300873839524,11272302995044411],[68681736,655496,22544601642609286,22544606095158586],[68681736,688136,-873779583,873779583],[68681736,1048584,-4648502626375994,-4648496798213434],[68681736,1179658,-11272303056635485,-11272300812248450],[68681736,1179660,-11272302995044411,-11272300873839524],[68681736,1179784,-35792210542100730,-35792206084256157],[68681736,1212424,-873779583,873779583],[68681736,1572864,-9296999886451704,-9296998962727152],[68681736,1704064,3950603919085972,3950606120324188],[68681736,1704960,-3950606120324188,-3950603919085972],[68681736,2228224,-3950606098159314,-3950603941250842],[68681736,3801088,-3950606098159314,-3950603941250842],[68681736,67108872,-9296999886451704,-9296998962727152],[68681736,67240072,3950603919085972,3950606120324188],[68681736,67240968,-3950606120324188,-3950603919085972],[68681736,67633152,-4648502626375994,-4648496798213434],[68681736,67764226,-11272303056635485,-11272300812248450],[68681736,67764228,-11272302995044411,-11272300873839524],[68681736,67764352,-35792210542100730,-35792206084256157],[68681736,67796992,-873779583,873779583],[68681736,68157440,-4648502626375994,-4648496798213434],[68681736,68288514,11272300812248450,11272303056635485],[68681736,68288516,11272300873839524,11272302995044411],[68681736,68288640,22544601642609286,22544606095158586],[68681736,68321280,-873779583,873779583],[68681736,68681736,-18593999772903408,-18593997925454304],[68681736,68812936,-9297001142627820,-9296997706551035],[68681736,68813832,-3950606120324188,-3950603919085972],[68681736,69337096,-3950606098159314,-3950603941250842],[68681736,70909960,-3950606098159314,-3950603941250842],[68681736,134348800,-3950606107262344,-3950603932147814],[68681736,135921664,-3950606107262344,-3950603932147814],[68681736,201457672,-3950606107262344,-3950603932147814],[68681736,203030536,-3950606107262344,-3950603932147814],[68681736,268435584,-13247605067077166,-13247603821511848],[68681736,268566528,-9297001129565978,-9296997719612879],[68681736,268959880,-6623803346277523,-6623801098016986],[68681736,269090824,-35792210542100730,-35792206084256157],[68681736,269484168,-6623803346277521,-6623801098016984],[68681736,269615112,22544601642609286,22544606095158586],[68681736,270139392,3950603932147814,3950606107262344],[68681736,335675400,3950603932147814,3950606107262344],[68681736,336068736,-6623803346277521,-6623801098016984],[68681736,336199680,22544601642609286,22544606095158586],[68681736,336593024,-6623803346277523,-6623801098016986],[68681736,336723968,-35792210542100730,-35792206084256157],[68681736,337117320,-13247605067077166,-13247603821511848],[68681736,337248264,-9297001129565978,-9296997719612879],[68681736,1074397192,-11272302995044411,-11272300873839524],[68681736,1074921480,11272300873839524,11272302995044411],[68681736,1141506048,11272300873839524,11272302995044411],[68681736,1142030336,-11272302995044411,-11272300873839524],[68681736,17592186699784,-11272303070687196,-11272300798196740],[68681736,17592187224072,11272300798196740,11272303070687196],[68681736,17592253808640,11272300798196740,11272303070687196],[68681736,17592254332928,-11272303070687196,-11272300798196740],[68681792,131200,-13247605066971786,-13247603821617226],[68681792,655552,11272300812248450,11272303056635485],[68681792,1179840,-24519907498972975,-24519905258499972],[68681792,67764352,-24519907498972975,-24519905258499972],[68681792,68288640,11272300812248450,11272303056635485],[68681792,68812992,-13247605066971786,-13247603821617226],[68681792,268435584,-13247605061578886,-13247603827010127],[68681792,268959936,-6623803337001160,-6623801107293350],[68681792,269484224,-6623803341365525,-6623801102928978],[68681792,336068736,-6623803341365525,-6623801102928978],[68681792,336593024,-6623803337001160,-6623801107293350],[68681792,337117376,-13247605061578886,-13247603827010127],[68681856,0,-3950606863625140,-3950603175785020],[68681856,131080,13247603826875223,13247605061713792],[68681856,131136,13247603821617226,13247605066971786],[68681856,132096,-18594001258855540,-18593996439502170],[68681856,524416,6623798642954895,6623805801339609],[68681856,655496,3950601481951714,3950608557458446],[68681856,655552,-11272303056635485,-11272300812248450],[68681856,656512,-11272302995044411,-11272300873839524],[68681856,688256,-1975303102468593,-1975301917236486],[68681856,1048704,-4648505765491449,-4648493659097978],[68681856,1179784,11272297923178146,11272305945705791],[68681856,1179840,24519905258499972,24519907498972975],[68681856,1180800,-11272305289278916,-11272298579605019],[68681856,1212544,24519905365967204,24519907391505747],[68681856,1572864,-5925910945469332,-5925904113645905],[68681856,1703944,-1975303134589986,-1975301885115096],[68681856,1704960,3950603919085972,3950606120324188],[68681856,1736704,-22544604430576096,-22544603307191776],[68681856,2228224,-22544604485915178,-22544603251852693],[68681856,3276928,-26495209971802464,-26495207805375563],[68681856,3801088,3950603941250842,3950606098159314],[68681856,67108992,-5925910945469332,-5925904113645905],[68681856,67240072,-1975303134589986,-1975301885115096],[68681856,67241088,3950603919085972,3950606120324188],[68681856,67272832,-22544604430576096,-22544603307191776],[68681856,67633152,-4648505765491449,-4648493659097978],[68681856,67764232,11272297923178146,11272305945705791],[68681856,67764288,24519905258499972,24519907498972975],[68681856,67765248,-11272305289278916,-11272298579605019],[68681856,67796992,24519905365967204,24519907391505747],[68681856,68157440,6623798642954895,6623805801339609],[68681856,68288520,3950601481951714,3950608557458446],[68681856,68288576,-11272303056635485,-11272300812248450],[68681856,68289536,-11272302995044411,-11272300873839524],[68681856,68321280,-1975303102468593,-1975301917236486],[68681856,68681856,-3950606863625140,-3950603175785020],[68681856,68812936,13247603826875223,13247605061713792],[68681856,68812992,13247603821617226,13247605066971786],[68681856,68813952,-18594001258855540,-18593996439502170],[68681856,69337216,3950603941250842,3950606098159314],[68681856,69861376,-26495209971802464,-26495207805375563],[68681856,70910080,-22544604485915178,-22544603251852693],[68681856,134348800,-22544604489700504,-22544603248067364],[68681856,135397504,-26495209977773508,-26495207799404518],[68681856,135921664,3950603932147814,3950606107262344],[68681856,201457792,3950603932147814,3950606107262344],[68681856,201981952,-26495209977773508,-26495207799404518],[68681856,203030656,-22544604489700504,-22544603248067364],[68681856,268435464,13247603821511848,13247605067077166],[68681856,268435520,13247603827010127,13247605061578886],[68681856,268436480,22544601452067054,22544606285700820],[68681856,268566528,-1975304058435710,-1975300961269370],[68681856,268959880,6623801098016986,6623803346277523],[68681856,268959936,6623801107293350,6623803337001160],[68681856,268960896,6623801159997192,6623803284297315],[68681856,269090944,-3950608253249321,-3950601786160837],[68681856,269484168,6623801098016984,6623803346277521],[68681856,269484224,6623801102928978,6623803341365525],[68681856,269485184,-8599108093729955,-8599101370269630],[68681856,269615232,26495204439857584,26495213337320446],[68681856,270009344,24519905280236082,24519907477236870],[68681856,270139392,-24519909474570990,-24519903282901962],[68681856,270532608,-1975303134066535,-1975301885638543],[68681856,271581312,-26495209977993164,-26495207799184865],[68681856,272105472,24519905292829457,24519907464643494],[68681856,335545472,24519905280236082,24519907477236870],[68681856,335675520,-24519909474570990,-24519903282901962],[68681856,336068616,6623801098016984,6623803346277521],[68681856,336068672,6623801102928978,6623803341365525],[68681856,336069632,-8599108093729955,-8599101370269630],[68681856,336199680,26495204439857584,26495213337320446],[68681856,336592904,6623801098016986,6623803346277523],[68681856,336592960,6623801107293350,6623803337001160],[68681856,336593920,6623801159997192,6623803284297315],[68681856,336723968,-3950608253249321,-3950601786160837],[68681856,337117320,13247603821511848,13247605067077166],[68681856,337117376,13247603827010127,13247605061578886],[68681856,337118336,22544601452067054,22544606285700820],[68681856,337248384,-1975304058435710,-1975300961269370],[68681856,337641600,24519905292829457,24519907464643494],[68681856,338165760,-26495209977993164,-26495207799184865],[68681856,339214464,-1975303134066535,-1975301885638543],[68681856,402653184,-1975303130040923,-1975301889664154],[68681856,403177600,-1975303102468593,-1975301917236486],[68681856,403701888,-3950608753660642,-3950601285749510],[68681856,404226048,3950601743215454,3950608296194700],[68681856,469762176,3950601743215454,3950608296194700],[68681856,470286336,-3950608753660642,-3950601285749510],[68681856,470810624,-1975303102468593,-1975301917236486],[68681856,471335040,-1975303130040923,-1975301889664154],[68681856,1074397312,13247603822433492,13247605066155522],[68681856,1074921600,-11272302995044411,-11272300873839524],[68681856,1075445760,-1975303102468593,-1975301917236486],[68681856,1140981888,-1975303102468593,-1975301917236486],[68681856,1141506048,-11272302995044411,-11272300873839524],[68681856,1142030336,13247603822433492,13247605066155522],[68681856,1342701696,-4648500337554984,-4648499087034444],[68681856,1343225984,6623801159963560,6623803284330947],[68681856,1343750144,-1975303102434961,-1975301917270118],[68681856,1409286272,-1975303102434961,-1975301917270118],[68681856,1409810432,6623801159963560,6623803284330947],[68681856,1410334720,-4648500337554984,-4648499087034444],[68681856,17592186699904,13247603786922062,13247605101666952],[68681856,17592187224192,-11272303070687196,-11272300798196740],[68681856,17592187748352,-1975303142599947,-1975301877105131],[68681856,17592253284480,-1975303142599947,-1975301877105131],[68681856,17592253808640,-11272303070687196,-11272300798196740],[68681856,17592254332928,13247603786922062,13247605101666952],[68681856,17592455004288,-1975303167312100,-1975301852392980],[68681856,17592455528576,24519905244697076,24519907512775874],[68681856,17592456052736,-22544604497985104,-22544603239782766],[68681856,17592521588864,-22544604497985104,-22544603239782766],[68681856,17592522113024,24519905244697076,24519907512775874],[68681856,17592522637312,-1975303167312100,-1975301852392980],[68681856,35184641048704,13247603788555150,13247605100033866],[68681856,35184641572992,-11272303061044145,-11272300807839789],[68681856,35184642097152,-1975303134589986,-1975301885115096],[68681856,35184707633280,-1975303134589986,-1975301885115096],[68681856,35184708157440,-11272303061044145,-11272300807839789],[68681856,35184708681728,13247603788555150,13247605100033866],[68681984,132096,13247603821617226,13247605066971786],[68681984,1180928,13247603821617226,13247605066971786],[68681984,67765248,13247603821617226,13247605066971786],[68681984,68814080,13247603821617226,13247605066971786],[68681984,268436480,13247603827010127,13247605061578886],[68681984,269485312,13247603827010127,13247605061578886],[68681984,336069632,13247603827010127,13247605061578886],[68681984,337118464,13247603827010127,13247605061578886],[68682752,131200,-26495210066406118,-26495207710771912],[68682752,131328,-13247605066971786,-13247603821617226],[68682752,133120,-13247605061713792,-13247603826875223],[68682752,525312,-3950608433100829,-3950601606309328],[68682752,656392,-1975303134589986,-1975301885115096],[68682752,656512,15222904792925496,15222909115368599],[68682752,689152,-22544604430576096,-22544603307191776],[68682752,1180800,-37767512457661269,-37767509188400696],[68682752,1180928,-13247605066971786,-13247603821617226],[68682752,1182720,-13247605061713792,-13247603826875223],[68682752,1572864,3950601606309328,3950608433100829],[68682752,1703944,1975301885115096,1975303134589986],[68682752,1704064,-3950606120324188,-3950603919085972],[68682752,1736704,22544603307191776,22544604430576096],[68682752,2228224,13247603826875223,13247605061713792],[68682752,3277824,13247603826875223,13247605061713792],[68682752,67109888,3950601606309328,3950608433100829],[68682752,67240968,1975301885115096,1975303134589986],[68682752,67241088,-3950606120324188,-3950603919085972],[68682752,67273728,22544603307191776,22544604430576096],[68682752,67764352,-37767512457661269,-37767509188400696],[68682752,67764480,-13247605066971786,-13247603821617226],[68682752,67766272,-13247605061713792,-13247603826875223],[68682752,68157440,-3950608433100829,-3950601606309328],[68682752,68288520,-1975303134589986,-1975301885115096],[68682752,68288640,15222904792925496,15222909115368599],[68682752,68321280,-22544604430576096,-22544603307191776],[68682752,68813952,-26495210066406118,-26495207710771912],[68682752,68814080,-13247605066971786,-13247603821617226],[68682752,68815872,-13247605061713792,-13247603826875223],[68682752,69861376,13247603826875223,13247605061713792],[68682752,70910976,13247603826875223,13247605061713792],[68682752,134348800,13247603821617226,13247605066971786],[68682752,135398400,13247603821617226,13247605066971786],[68682752,201981952,13247603821617226,13247605066971786],[68682752,203031552,13247603821617226,13247605066971786],[68682752,268435584,-26495210066338854,-26495207710839176],[68682752,268435712,-13247605061578886,-13247603827010127],[68682752,268437504,-13247605067077166,-13247603821511848],[68682752,268960896,17896101995938767,17896106317239678],[68682752,269091840,3950601606309328,3950608433100829],[68682752,269485184,-19871408304404039,-19871405028479484],[68682752,269485312,-13247605061578886,-13247603827010127],[68682752,269487104,-13247605067077166,-13247603821511848],[68682752,270008448,-24519907477236870,-24519905280236082],[68682752,270139392,-3950608433100829,-3950601606309328],[68682752,270532608,13247603821511848,13247605067077166],[68682752,271582208,13247603821511848,13247605067077166],[68682752,335545472,-24519907477236870,-24519905280236082],[68682752,335676416,-3950608433100829,-3950601606309328],[68682752,336068736,-19871408304404039,-19871405028479484],[68682752,336068864,-13247605061578886,-13247603827010127],[68682752,336070656,-13247605067077166,-13247603821511848],[68682752,336593024,17896101995938767,17896106317239678],[68682752,336723968,3950601606309328,3950608433100829],[68682752,337118336,-26495210066338854,-26495207710839176],[68682752,337118464,-13247605061578886,-13247603827010127],[68682752,337120256,-13247605067077166,-13247603821511848],[68682752,338165760,13247603821511848,13247605067077166],[68682752,339215360,13247603821511848,13247605067077166],[68682752,402653184,13247603827010127,13247605061578886],[68682752,403178496,-47064511822081843,-47064508673158980],[68682752,403702784,15222905744246613,15222908164047479],[68682752,404226048,45089206614383552,45089208861152192],[68682752,469763072,45089206614383552,45089208861152192],[68682752,470286336,15222905744246613,15222908164047479],[68682752,470810624,-47064511822081843,-47064508673158980],[68682752,471335936,13247603827010127,13247605061578886],[68682752,1074398208,-1975303102468593,-1975301917236486],[68682752,1075445760,1975301917236486,1975303102468593],[68682752,1140982784,1975301917236486,1975303102468593],[68682752,1142030336,-1975303102468593,-1975301917236486],[68682752,1342702592,-1975303102434961,-1975301917270118],[68682752,1343750144,1975301917270118,1975303102434961],[68682752,1409287168,1975301917270118,1975303102434961],[68682752,1410334720,-1975303102434961,-1975301917270118],[68682752,17592186700800,-1975303142599947,-1975301877105131],[68682752,17592187748352,1975301877105131,1975303142599947],[68682752,17592253285376,1975301877105131,1975303142599947],[68682752,17592254332928,-1975303142599947,-1975301877105131],[68682752,17592455005184,-22544604497985104,-22544603239782766],[68682752,17592456052736,22544603239782766,22544604497985104],[68682752,17592521589760,22544603239782766,22544604497985104],[68682752,17592522637312,-22544604497985104,-22544603239782766],[68682752,35184641049600,-1975303134589986,-1975301885115096],[68682752,35184642097152,1975301885115096,1975303134589986],[68682752,35184707634176,1975301885115096,1975303134589986],[68682752,35184708681728,-1975303134589986,-1975301885115096],[68683776,132096,13247603826875223,13247605061713792],[68683776,1182720,13247603826875223,13247605061713792],[68683776,2228224,13247603827702546,13247605060886466],[68683776,3278848,13247603827702546,13247605060886466],[68683776,67765248,13247603826875223,13247605061713792],[68683776,68815872,13247603826875223,13247605061713792],[68683776,69861376,13247603827702546,13247605060886466],[68683776,70912000,13247603827702546,13247605060886466],[68683776,268436480,13247603821511848,13247605067077166],[68683776,269487104,13247603821511848,13247605067077166],[68683776,270532608,13247603826875223,13247605061713792],[68683776,271583232,13247603826875223,13247605061713792],[68683776,336069632,13247603821511848,13247605067077166],[68683776,337120256,13247603821511848,13247605067077166],[68683776,338165760,13247603826875223,13247605061713792],[68683776,339216384,13247603826875223,13247605061713792],[68714496,131200,24519905365967204,24519907391505747],[68714496,132096,-24519907391505747,-24519905365967204],[68714496,688132,-24519907391505747,-24519905365967204],[68714496,688136,17896103248910824,17896105064267619],[68714496,1212420,24519905365967204,24519907391505747],[68714496,1212424,-17896105064267619,-17896103248910824],[68714496,1704064,24519905365967204,24519907391505747],[68714496,1704960,-24519907391505747,-24519905365967204],[68714496,67272832,24519905365967204,24519907391505747],[68714496,67273728,-24519907391505747,-24519905365967204],[68714496,67764228,24519905365967204,24519907391505747],[68714496,67764232,-17896105064267619,-17896103248910824],[68714496,68288516,-24519907391505747,-24519905365967204],[68714496,68288520,17896103248910824,17896105064267619],[68714496,68845696,24519905365967204,24519907391505747],[68714496,68846592,-24519907391505747,-24519905365967204],[68812800,136,-1975303142599947,-1975301877105131],[68812800,1032,1975301877105131,1975303142599947],[68812800,32896,-1975303102468593,-1975301917236486],[68812800,33792,1975301917236486,1975303102468593],[68812800,656512,-49039814477679612,-49039811037266288],[68812800,688136,-6623803284330947,-6623801159963560],[68812800,1180800,49039811037266288,49039814477679612],[68812800,1212424,6623801159963560,6623803284330947],[68812800,1573000,-1975303142599947,-1975301877105131],[68812800,1573896,1975301877105131,1975303142599947],[68812800,1605760,-1975303102468593,-1975301917236486],[68812800,1606656,1975301917236486,1975303102468593],[68812800,2097160,1975301892192548,1975303127512529],[68812800,2752640,-26495209971802464,-26495207805375563],[68812800,2753536,26495207805375563,26495209971802464],[68812800,3276928,26495207805375563,26495209971802464],[68812800,3277824,-26495209971802464,-26495207805375563],[68812800,3670024,1975301892192548,1975303127512529],[68812800,67240072,-1975303142599947,-1975301877105131],[68812800,67240968,1975301877105131,1975303142599947],[68812800,67272832,-1975303102468593,-1975301917236486],[68812800,67273728,1975301917236486,1975303102468593],[68812800,67634304,49039811037266288,49039814477679612],[68812800,67665928,6623801159963560,6623803284330947],[68812800,68158592,-49039814477679612,-49039811037266288],[68812800,68190216,-6623803284330947,-6623801159963560],[68812800,68812936,-1975303142599947,-1975301877105131],[68812800,68813832,1975301877105131,1975303142599947],[68812800,68845696,-1975303102468593,-1975301917236486],[68812800,68846592,1975301917236486,1975303102468593],[68812800,69337096,1975301892192548,1975303127512529],[68812800,69730432,26495207805375563,26495209971802464],[68812800,69731328,-26495209971802464,-26495207805375563],[68812800,70254720,-26495209971802464,-26495207805375563],[68812800,70255616,26495207805375563,26495209971802464],[68812800,70909960,1975301892192548,1975303127512529],[68812800,134217736,1975301889643525,1975303130061553],[68812800,134873216,-26495209977773508,-26495207799404518],[68812800,134874112,26495207799404518,26495209977773508],[68812800,135397504,26495207799404518,26495209977773508],[68812800,135398400,-26495209977773508,-26495207799404518],[68812800,135790600,1975301889643525,1975303130061553],[68812800,201457672,1975301889643525,1975303130061553],[68812800,201851008,26495207799404518,26495209977773508],[68812800,201851904,-26495209977773508,-26495207799404518],[68812800,202375296,-26495209977773508,-26495207799404518],[68812800,202376192,26495207799404518,26495209977773508],[68812800,203030536,1975301889643525,1975303130061553],[68812800,268435464,11272300696813670,11272303172070267],[68812800,268435584,-9297000814034204,-9296998035144653],[68812800,268436480,-3950606255704424,-3950603783705734],[68812800,269090824,31143706348854335,31143710852913125],[68812800,269090944,8599102676277534,8599106787722050],[68812800,269091840,-26495209977773508,-26495207799404518],[68812800,269615112,-17896106405970981,-17896101907207464],[68812800,269615232,-19871408879756524,-19871404453126997],[68812800,269616128,-2178588646,2178588643],[68812800,270008328,-1975303130061553,-1975301889643525],[68812800,270008448,1975300959240086,1975304060464994],[68812800,270009344,22544602161328920,22544605576438951],[68812800,335675400,-1975303130061553,-1975301889643525],[68812800,335675520,1975300959240086,1975304060464994],[68812800,335676416,22544602161328920,22544605576438951],[68812800,336068616,-17896106405970981,-17896101907207464],[68812800,336068736,-19871408879756524,-19871404453126997],[68812800,336069632,-2178588646,2178588643],[68812800,336592904,31143706348854335,31143710852913125],[68812800,336593024,8599102676277534,8599106787722050],[68812800,336593920,-26495209977773508,-26495207799404518],[68812800,337248264,11272300696813670,11272303172070267],[68812800,337248384,-9297000814034204,-9296998035144653],[68812800,337249280,-3950606255704424,-3950603783705734],[68812800,1073741952,1975301917236486,1975303102468593],[68812800,1073742848,-1975303102468593,-1975301917236486],[68812800,1074397192,6623801159963560,6623803284330947],[68812800,1074921480,-6623803284330947,-6623801159963560],[68812800,1075314816,1975301917236486,1975303102468593],[68812800,1075315712,-1975303102468593,-1975301917236486],[68812800,1140981888,1975301917236486,1975303102468593],[68812800,1140982784,-1975303102468593,-1975301917236486],[68812800,1141374984,-6623803284330947,-6623801159963560],[68812800,1141899272,6623801159963560,6623803284330947],[68812800,1142554752,1975301917236486,1975303102468593],[68812800,1142555648,-1975303102468593,-1975301917236486],[68812800,17592186044544,1975301877105131,1975303142599947],[68812800,17592186045440,-1975303142599947,-1975301877105131],[68812800,17592186699784,9296998263946318,9297000585232538],[68812800,17592187224072,-9297000585232538,-9296998263946318],[68812800,17592187617408,1975301877105131,1975303142599947],[68812800,17592187618304,-1975303142599947,-1975301877105131],[68812800,17592253284480,1975301877105131,1975303142599947],[68812800,17592253285376,-1975303142599947,-1975301877105131],[68812800,17592253677576,-9297000585232538,-9296998263946318],[68812800,17592254201864,9296998263946318,9297000585232538],[68812800,17592254857344,1975301877105131,1975303142599947],[68812800,17592254858240,-1975303142599947,-1975301877105131],[68812810,524290,-4648500364875210,-4648499059714221],[68812810,524296,4648499059714221,4648500364875210],[68812810,1048578,4648499059714221,4648500364875210],[68812810,1048584,-4648500364875210,-4648499059714221],[68812810,67764226,-4648500364875210,-4648499059714221],[68812810,67764232,4648499059714221,4648500364875210],[68812810,68288514,4648499059714221,4648500364875210],[68812810,68288520,-4648500364875210,-4648499059714221],[68812812,524292,-4648500337554984,-4648499087034444],[68812812,524296,4648499087034444,4648500337554984],[68812812,1048580,4648499087034444,4648500337554984],[68812812,1048584,-4648500337554984,-4648499087034444],[68812812,67764228,-4648500337554984,-4648499087034444],[68812812,67764232,4648499087034444,4648500337554984],[68812812,68288516,4648499087034444,4648500337554984],[68812812,68288520,-4648500337554984,-4648499087034444],[68812936,136,-1975303142599947,-1975301877105131],[68812936,131080,13247603826875223,13247605061713792],[68812936,131200,-9297001142627820,-9296997706551035],[68812936,524296,-6623804014035016,-6623800430259491],[68812936,524416,-4648500367937249,-4648499056652180],[68812936,655360,35792205719323062,35792210907033824],[68812936,655496,26495207577110300,26495210200067732],[68812936,1048584,8599103418984813,8599106045014772],[68812936,1048704,4648499056652180,4648500367937249],[68812936,1179648,-39742815133869046,-39742811531898000],[68812936,1179784,-24519908161078011,-24519904596394939],[68812936,1703944,11272300692285237,11272303176598696],[68812936,1704064,-13247605061713792,-13247603826875223],[68812936,67108872,-13247605061713792,-13247603826875223],[68812936,67108992,11272300692285237,11272303176598696],[68812936,67633152,-24519908161078011,-24519904596394939],[68812936,67633288,-39742815133869046,-39742811531898000],[68812936,67764232,4648499056652180,4648500367937249],[68812936,67764352,8599103418984813,8599106045014772],[68812936,68157440,26495207577110300,26495210200067732],[68812936,68157576,35792205719323062,35792210907033824],[68812936,68288520,-4648500367937249,-4648499056652180],[68812936,68288640,-6623804014035016,-6623800430259491],[68812936,68681736,-9297001142627820,-9296997706551035],[68812936,68681856,13247603826875223,13247605061713792],[68812936,68812800,-1975303142599947,-1975301877105131],[68812992,131136,13247603821617226,13247605066971786],[68812992,131200,-13247605066971786,-13247603821617226],[68812992,1704000,13247603821617226,13247605066971786],[68812992,1704064,-13247605066971786,-13247603821617226],[68812992,67108928,-13247605066971786,-13247603821617226],[68812992,67108992,13247603821617226,13247605066971786],[68812992,68681792,-13247605066971786,-13247603821617226],[68812992,68681856,13247603821617226,13247605066971786],[68813832,1032,1975301877105131,1975303142599947],[68813832,132096,-3950606120324188,-3950603919085972],[68813832,656392,-1975303134589986,-1975301885115096],[68813832,1048584,-1975303142599947,-1975301877105131],[68813832,1179648,3950603919085972,3950606120324188],[68813832,1703944,1975301885115096,1975303134589986],[68813832,67109888,1975301885115096,1975303134589986],[68813832,67634184,3950603919085972,3950606120324188],[68813832,67765248,-1975303142599947,-1975301877105131],[68813832,68157440,-1975303134589986,-1975301885115096],[68813832,68681736,-3950606120324188,-3950603919085972],[68813832,68812800,1975301877105131,1975303142599947],[68813952,131200,-26495210066406118,-26495207710771912],[68813952,132096,-18594001258855540,-18593996439502170],[68813952,656512,-45089208969627452,-45089206505908288],[68813952,1179648,45089206505908288,45089208969627452],[68813952,1704064,18593996439502170,18594001258855540],[68813952,1704960,26495207710771912,26495210066406118],[68813952,67108992,26495207710771912,26495210066406118],[68813952,67109888,18593996439502170,18594001258855540],[68813952,67634304,45089206505908288,45089208969627452],[68813952,68157440,-45089208969627452,-45089206505908288],[68813952,68681856,-18594001258855540,-18593996439502170],[68813952,68682752,-26495210066406118,-26495207710771912],[68814080,131328,-13247605066971786,-13247603821617226],[68814080,132096,13247603821617226,13247605066971786],[68814080,1704192,-13247605066971786,-13247603821617226],[68814080,1704960,13247603821617226,13247605066971786],[68814080,67109120,13247603821617226,13247605066971786],[68814080,67109888,-13247605066971786,-13247603821617226],[68814080,68681984,13247603821617226,13247605066971786],[68814080,68682752,-13247605066971786,-13247603821617226],[68815872,132096,13247603826875223,13247605061713792],[68815872,133120,-13247605061713792,-13247603826875223],[68815872,1704960,13247603826875223,13247605061713792],[68815872,1705984,-13247605061713792,-13247603826875223],[68815872,67109888,-13247605061713792,-13247603826875223],[68815872,67110912,13247603826875223,13247605061713792],[68815872,68682752,-13247605061713792,-13247603826875223],[68815872,68683776,13247603826875223,13247605061713792],[68845572,524292,-1975303102434961,-1975301917270118],[68845572,557056,1975301917270118,1975303102434961],[68845572,1048580,1975301917270118,1975303102434961],[68845572,1081344,-1975303102434961,-1975301917270118],[68845572,67764228,-1975303102434961,-1975301917270118],[68845572,67796992,1975301917270118,1975303102434961],[68845572,68288516,1975301917270118,1975303102434961],[68845572,68321280,-1975303102434961,-1975301917270118],[68845576,524296,-11272302664793112,-11272301204090824],[68845576,557056,9296998645184146,9297000203994710],[68845576,655360,13247602666336360,13247606222252656],[68845576,688136,11272301204057192,11272302664826744],[68845576,1048584,11272301204090824,11272302664793112],[68845576,1081344,-9297000203994710,-9296998645184146],[68845576,1179648,-13247606222252656,-13247602666336360],[68845576,1212424,-11272302664826744,-11272301204057192],[68845576,67633152,-11272302664826744,-11272301204057192],[68845576,67665928,-13247606222252656,-13247602666336360],[68845576,67764232,-9297000203994710,-9296998645184146],[68845576,67796992,11272301204090824,11272302664793112],[68845576,68157440,11272301204057192,11272302664826744],[68845576,68190216,13247602666336360,13247606222252656],[68845576,68288520,9296998645184146,9297000203994710],[68845576,68321280,-11272302664793112,-11272301204090824],[68845696,32896,-1975303102468593,-1975301917236486],[68845696,131200,24519905365967204,24519907391505747],[68845696,557056,-11272302995044411,-11272300873839524],[68845696,655360,-13247606222252656,-13247602666336360],[68845696,688256,-1975303102468593,-1975301917236486],[68845696,1081344,13247603822433492,13247605066155522],[68845696,1179648,-11272302995044411,-11272300873839524],[68845696,1212544,24519905365967204,24519907391505747],[68845696,1736704,-22544604430576096,-22544603307191776],[68845696,67108992,-22544604430576096,-22544603307191776],[68845696,67633152,24519905365967204,24519907391505747],[68845696,67666048,-11272302995044411,-11272300873839524],[68845696,67764352,13247603822433492,13247605066155522],[68845696,68157440,-1975303102468593,-1975301917236486],[68845696,68190336,-13247606222252656,-13247602666336360],[68845696,68288640,-11272302995044411,-11272300873839524],[68845696,68714496,24519905365967204,24519907391505747],[68845696,68812800,-1975303102468593,-1975301917236486],[68846592,33792,1975301917236486,1975303102468593],[68846592,132096,-24519907391505747,-24519905365967204],[68846592,689152,-22544604430576096,-22544603307191776],[68846592,1081344,-1975303102468593,-1975301917236486],[68846592,1179648,24519905365967204,24519907391505747],[68846592,1736704,22544603307191776,22544604430576096],[68846592,67109888,22544603307191776,22544604430576096],[68846592,67666944,24519905365967204,24519907391505747],[68846592,67765248,-1975303102468593,-1975301917236486],[68846592,68157440,-22544604430576096,-22544603307191776],[68846592,68714496,-24519907391505747,-24519905365967204],[68846592,68812800,1975301917236486,1975303102468593],[69206016,1703944,1975301892192549,1975303127512530],[69206016,1704064,22544603251852693,22544604485915178],[69206016,1704960,-13247605061713792,-13247603826875223],[69206016,1705984,-13247605060886466,-13247603827702546],[69206016,70909960,1975301892192549,1975303127512530],[69206016,70910080,22544603251852693,22544604485915178],[69206016,70910976,-13247605061713792,-13247603826875223],[69206016,70912000,-13247605060886466,-13247603827702546],[69206016,270008448,1975301885638543,1975303134066535],[69206016,270009344,-13247605067077166,-13247603821511848],[69206016,270010368,-13247605061713792,-13247603826875223],[69206016,339214464,1975301885638543,1975303134066535],[69206016,339215360,-13247605067077166,-13247603821511848],[69206016,339216384,-13247605061713792,-13247603826875223],[69206016,403702784,1975301885638544,1975303134066536],[69206016,403703808,22544603251852693,22544604485915178],[69206016,472908800,1975301885638544,1975303134066536],[69206016,472909824,22544603251852693,22544604485915178],[69206016,939526144,1975301892192548,1975303127512529],[69206016,1008732160,1975301892192548,1975303127512529],[69337096,1703944,1975301892192549,1975303127512530],[69337096,3670024,1975301892192548,1975303127512529],[69337096,3801088,-3950606098159314,-3950603941250842],[69337096,68681736,-3950606098159314,-3950603941250842],[69337096,68812800,1975301892192548,1975303127512529],[69337096,70778880,1975301892192549,1975303127512530],[69337216,1704064,-3950606098159314,-3950603941250842],[69337216,3801088,3950603941250842,3950606098159314],[69337216,68681856,3950603941250842,3950606098159314],[69337216,70778880,-3950606098159314,-3950603941250842],[69730312,1179648,3950603941250842,3950606098159314],[69730312,3801088,3950603941250842,3950606098159314],[69730312,68288520,3950603941250842,3950606098159314],[69730312,70909960,3950603941250842,3950606098159314],[69730432,1179648,22544603251852693,22544604485915178],[69730432,3276928,26495207805375563,26495209971802464],[69730432,3801088,-3950606098159314,-3950603941250842],[69730432,68288640,-3950606098159314,-3950603941250842],[69730432,68812800,26495207805375563,26495209971802464],[69730432,70910080,22544603251852693,22544604485915178],[69730432,269484032,1975301885638543,1975303134066535],[69730432,271581312,26495207799184865,26495209977993164],[69730432,272105472,-24519907464643494,-24519905292829457],[69730432,336593024,-24519907464643494,-24519905292829457],[69730432,337117184,26495207799184865,26495209977993164],[69730432,339214464,1975301885638543,1975303134066535],[69731328,1179648,-26495209971802464,-26495207805375563],[69731328,3277824,-26495209971802464,-26495207805375563],[69731328,68812800,-26495209971802464,-26495207805375563],[69731328,70910976,-26495209971802464,-26495207805375563],[69731328,269484032,-26495209977993164,-26495207799184865],[69731328,271582208,-26495209977993164,-26495207799184865],[69731328,337117184,-26495209977993164,-26495207799184865],[69731328,339215360,-26495209977993164,-26495207799184865],[69861376,1048584,-1975303127512529,-1975301892192548],[69861376,1704064,26495207805375563,26495209971802464],[69861376,1704960,-13247605061713792,-13247603826875223],[69861376,1705984,-13247605060886466,-13247603827702546],[69861376,3276928,-26495209971802464,-26495207805375563],[69861376,3277824,13247603826875223,13247605061713792],[69861376,3278848,13247603827702546,13247605060886466],[69861376,3670024,-1975303127512529,-1975301892192548],[69861376,68288520,-1975303127512529,-1975301892192548],[69861376,68681856,-26495209971802464,-26495207805375563],[69861376,68682752,13247603826875223,13247605061713792],[69861376,68683776,13247603827702546,13247605060886466],[69861376,70254720,26495207805375563,26495209971802464],[69861376,70255616,-13247605061713792,-13247603826875223],[69861376,70256640,-13247605060886466,-13247603827702546],[69861376,70909960,-1975303127512529,-1975301892192548],[70254720,1704064,26495207805375563,26495209971802464],[70254720,2752640,-26495209971802464,-26495207805375563],[70254720,68812800,-26495209971802464,-26495207805375563],[70254720,69861376,26495207805375563,26495209971802464],[70254720,270008448,26495207799184865,26495209977993164],[70254720,271057024,-26495209977993164,-26495207799184865],[70254720,337117184,-26495209977993164,-26495207799184865],[70254720,338165760,26495207799184865,26495209977993164],[70255616,1704960,-13247605061713792,-13247603826875223],[70255616,2753536,26495207805375563,26495209971802464],[70255616,3801088,-13247605060886466,-13247603827702546],[70255616,67765248,-13247605060886466,-13247603827702546],[70255616,68812800,26495207805375563,26495209971802464],[70255616,69861376,-13247605061713792,-13247603826875223],[70255616,270009344,-13247605067077166,-13247603821511848],[70255616,271057920,26495207799184865,26495209977993164],[70255616,272105472,-13247605061713792,-13247603826875223],[70255616,336069632,-13247605061713792,-13247603826875223],[70255616,337117184,26495207799184865,26495209977993164],[70255616,338165760,-13247605067077166,-13247603821511848],[70255616,403702784,1975301885638544,1975303134066536],[70255616,404751360,-24519907464643494,-24519905292829457],[70255616,405798912,22544603251852693,22544604485915178],[70255616,469763072,22544603251852693,22544604485915178],[70255616,470810624,-24519907464643494,-24519905292829457],[70255616,471859200,1975301885638544,1975303134066536],[70256640,1705984,-13247605060886466,-13247603827702546],[70256640,3801088,13247603827702546,13247605060886466],[70256640,67766272,13247603827702546,13247605060886466],[70256640,69861376,-13247605060886466,-13247603827702546],[70256640,270010368,-13247605061713792,-13247603826875223],[70256640,272105472,13247603826875223,13247605061713792],[70256640,336070656,13247603826875223,13247605061713792],[70256640,338165760,-13247605061713792,-13247603826875223],[70256640,403703808,22544603251852693,22544604485915178],[70256640,405798912,-22544604485915178,-22544603251852693],[70256640,469764096,-22544604485915178,-22544603251852693],[70256640,471859200,22544603251852693,22544604485915178],[70778880,132096,13247603827702546,13247605060886466],[70778880,133120,-13247605060886466,-13247603827702546],[70778880,1703944,1975301892192549,1975303127512530],[70778880,1704064,-3950606098159314,-3950603941250842],[70778880,2752520,-1975303127512530,-1975301892192549],[70778880,2752640,3950603941250842,3950606098159314],[70778880,3277824,13247603827702546,13247605060886466],[70778880,3278848,-13247605060886466,-13247603827702546],[70778880,67765248,13247603827702546,13247605060886466],[70778880,67766272,-13247605060886466,-13247603827702546],[70778880,68288520,-1975303127512530,-1975301892192549],[70778880,68288640,3950603941250842,3950606098159314],[70778880,69337096,1975301892192549,1975303127512530],[70778880,69337216,-3950606098159314,-3950603941250842],[70778880,70910976,13247603827702546,13247605060886466],[70778880,70912000,-13247605060886466,-13247603827702546],[70778880,268436480,13247603826875223,13247605061713792],[70778880,268437504,-13247605061713792,-13247603826875223],[70778880,270008448,-24519907464643494,-24519905292829457],[70778880,271057024,24519905292829457,24519907464643494],[70778880,271582208,13247603826875223,13247605061713792],[70778880,271583232,-13247605061713792,-13247603826875223],[70778880,336069632,13247603826875223,13247605061713792],[70778880,336070656,-13247605061713792,-13247603826875223],[70778880,336593024,24519905292829457,24519907464643494],[70778880,337641600,-24519907464643494,-24519905292829457],[70778880,339215360,13247603826875223,13247605061713792],[70778880,339216384,-13247605061713792,-13247603826875223],[70909960,1048584,-1975303127512529,-1975301892192548],[70909960,1179648,3950603941250842,3950606098159314],[70909960,1703944,1975301892192549,1975303127512530],[70909960,2097160,1975301892192548,1975303127512529],[70909960,2228224,-3950606098159314,-3950603941250842],[70909960,2752520,-1975303127512530,-1975301892192549],[70909960,68157440,-1975303127512530,-1975301892192549],[70909960,68681736,-3950606098159314,-3950603941250842],[70909960,68812800,1975301892192548,1975303127512529],[70909960,69206016,1975301892192549,1975303127512530],[70909960,69730312,3950603941250842,3950606098159314],[70909960,69861376,-1975303127512529,-1975301892192548],[70910080,1179648,22544603251852693,22544604485915178],[70910080,1704064,22544603251852693,22544604485915178],[70910080,2228224,-22544604485915178,-22544603251852693],[70910080,2752640,-22544604485915178,-22544603251852693],[70910080,68157440,-22544604485915178,-22544603251852693],[70910080,68681856,-22544604485915178,-22544603251852693],[70910080,69206016,22544603251852693,22544604485915178],[70910080,69730432,22544603251852693,22544604485915178],[70910976,132096,13247603827702546,13247605060886466],[70910976,1179648,-26495209971802464,-26495207805375563],[70910976,1704960,-13247605061713792,-13247603826875223],[70910976,2228224,13247603826875223,13247605061713792],[70910976,2753536,26495207805375563,26495209971802464],[70910976,3801088,-13247605060886466,-13247603827702546],[70910976,67109888,-13247605060886466,-13247603827702546],[70910976,68157440,26495207805375563,26495209971802464],[70910976,68682752,13247603826875223,13247605061713792],[70910976,69206016,-13247605061713792,-13247603826875223],[70910976,69731328,-26495209971802464,-26495207805375563],[70910976,70778880,13247603827702546,13247605060886466],[70912000,133120,-13247605060886466,-13247603827702546],[70912000,1705984,-13247605060886466,-13247603827702546],[70912000,2228224,13247603827702546,13247605060886466],[70912000,3801088,13247603827702546,13247605060886466],[70912000,67110912,13247603827702546,13247605060886466],[70912000,68683776,13247603827702546,13247605060886466],[70912000,69206016,-13247605060886466,-13247603827702546],[70912000,70778880,-13247605060886466,-13247603827702546],[134217730,1049736,13247603821617226,13247605066971786],[134217730,1049792,13247603827010127,13247605061578886],[134217730,1049920,-1975303127852212,-1975301891852867],[134217730,1573000,-22544604489700504,-22544603248067364],[134217730,1573056,-1975303130040923,-1975301889664154],[134217730,1703944,-1975303134066536,-1975301885638544],[134217730,135267466,13247603821617226,13247605066971786],[134217730,135267522,13247603827010127,13247605061578886],[134217730,135267650,-1975303127852212,-1975301891852867],[134217730,135790730,-22544604489700504,-22544603248067364],[134217730,135790786,-1975303130040923,-1975301889664154],[134217730,135921674,-1975303134066536,-1975301885638544],[134217730,268959880,-1975303161793801,-1975301857911278],[134217730,268959936,-4648500367050864,-4648499057538562],[134217730,269090824,13247603792440361,13247605096148654],[134217730,335675400,-4648500364875210,-4648499059714221],[134217730,403177610,-1975303161793801,-1975301857911278],[134217730,403177666,-4648500367050864,-4648499057538562],[134217730,403308554,13247603792440361,13247605096148654],[134217730,469893130,-4648500364875210,-4648499059714221],[134217732,1049736,13247603855419588,13247605033169427],[134217732,1573000,-1975303102434961,-1975301917270118],[134217732,1703944,-1975303102468593,-1975301917236486],[134217732,1736704,-22544604430576096,-22544603307191776],[134217732,135267468,13247603855419588,13247605033169427],[134217732,135790732,-1975303102434961,-1975301917270118],[134217732,135921676,-1975303102468593,-1975301917236486],[134217732,135954436,-22544604430576096,-22544603307191776],[134217732,268959880,-4648500337588616,-4648499087000812],[134217732,269090824,13247603822433492,13247605066155522],[134217732,269123584,-1975303102468593,-1975301917236486],[134217732,335675400,-4648500337554984,-4648499087034444],[134217732,335708160,-1975303102434961,-1975301917270118],[134217732,403177612,-4648500337588616,-4648499087000812],[134217732,403308556,13247603822433492,13247605066155522],[134217732,403341316,-1975303102468593,-1975301917236486],[134217732,469893132,-4648500337554984,-4648499087034444],[134217732,469925892,-1975303102434961,-1975301917270118],[134217732,1409318912,13247603855385956,13247605033203059],[134217732,1543536644,13247603855385956,13247605033203059],[134217736,1152,1975300803621296,1975304216083780],[134217736,524416,-8599108077216494,-8599101386783086],[134217736,655360,-11272305272819252,-11272298596064681],[134217736,1048704,3950600812107830,3950609227302328],[134217736,1049600,-13247606122936882,-13247602765652131],[134217736,1049730,-13247605066971786,-13247603821617226],[134217736,1049732,-13247605033169427,-13247603855419588],[134217736,1049792,-13247605061578886,-13247603827010127],[134217736,1049984,1975301891852867,1975303127852212],[134217736,1051776,1975301892192549,1975303127512530],[134217736,1179648,1975300413869816,1975304605835260],[134217736,1180800,-13247605066127948,-13247603822461068],[134217736,1572864,3950601587495984,3950608451914177],[134217736,1572994,22544603248067364,22544604489700504],[134217736,1572996,1975301917270118,1975303102434961],[134217736,1573056,1975301889664154,1975303130040923],[134217736,1574016,18593996485739860,18594001212617856],[134217736,1703938,1975301885638544,1975303134066536],[134217736,1703940,1975301917236486,1975303102468593],[134217736,1704064,49039810287641238,49039815227304660],[134217736,1704960,-13247605066127948,-13247603822461068],[134217736,1736704,22544603307191776,22544604430576096],[134217736,3146880,22544603251852693,22544604485915178],[134217736,3670144,-13247605061713792,-13247603826875223],[134217736,3801088,-13247605060886466,-13247603827702546],[134217736,67239936,4648498045480103,4648501379109328],[134217736,68812800,1975301889643525,1975303130061553],[134217736,134218888,1975300803621296,1975304216083780],[134217736,134742152,-8599108077216494,-8599101386783086],[134217736,134873096,-11272305272819252,-11272298596064681],[134217736,135266440,3950600812107830,3950609227302328],[134217736,135267336,-13247606122936882,-13247602765652131],[134217736,135267466,-13247605066971786,-13247603821617226],[134217736,135267468,-13247605033169427,-13247603855419588],[134217736,135267528,-13247605061578886,-13247603827010127],[134217736,135267720,1975301891852867,1975303127852212],[134217736,135269512,1975301892192549,1975303127512530],[134217736,135397384,1975300413869816,1975304605835260],[134217736,135398536,-13247605066127948,-13247603822461068],[134217736,135790600,3950601587495984,3950608451914177],[134217736,135790730,22544603248067364,22544604489700504],[134217736,135790732,1975301917270118,1975303102434961],[134217736,135790792,1975301889664154,1975303130040923],[134217736,135791752,18593996485739860,18594001212617856],[134217736,135921674,1975301885638544,1975303134066536],[134217736,135921676,1975301917236486,1975303102468593],[134217736,135921800,49039810287641238,49039815227304660],[134217736,135922696,-13247605066127948,-13247603822461068],[134217736,135954440,22544603307191776,22544604430576096],[134217736,137364616,22544603251852693,22544604485915178],[134217736,137887880,-13247605061713792,-13247603826875223],[134217736,138018824,-13247605060886466,-13247603827702546],[134217736,201457672,4648498045480103,4648501379109328],[134217736,203030536,1975301889643525,1975303130061553],[134217736,268435584,4648497449753834,4648501974835595],[134217736,268566528,6623797717533688,6623806726760819],[134217736,268959744,-8599108332258679,-8599101131740910],[134217736,268959874,1975301857911278,1975303161793801],[134217736,268959876,4648499087000812,4648500337588616],[134217736,268959936,4648499057538562,4648500367050864],[134217736,268960896,1975301917270118,1975303102434961],[134217736,269090818,-13247605096148654,-13247603792440361],[134217736,269090820,-13247605066155522,-13247603822433492],[134217736,269090944,-22544606469793008,-22544601267974862],[134217736,269123584,1975301917236486,1975303102468593],[134217736,269485184,1975301917270118,1975303102434961],[134217736,270008448,-22544606281953756,-22544601455814116],[134217736,270139392,18593996442899990,18594001255457720],[134217736,335544320,4648497899071108,4648501525518317],[134217736,335675394,4648499059714221,4648500364875210],[134217736,335675396,4648499087034444,4648500337554984],[134217736,335675520,4648499056652180,4648500367937249],[134217736,335708160,1975301917270118,1975303102434961],[134217736,336068736,4648499056652180,4648500367937249],[134217736,336199680,-22544606473695306,-22544601264072564],[134217736,336723968,1975301889643525,1975303130061553],[134217736,402653320,4648497449753834,4648501974835595],[134217736,402784264,6623797717533688,6623806726760819],[134217736,403177480,-8599108332258679,-8599101131740910],[134217736,403177610,1975301857911278,1975303161793801],[134217736,403177612,4648499087000812,4648500337588616],[134217736,403177672,4648499057538562,4648500367050864],[134217736,403178632,1975301917270118,1975303102434961],[134217736,403308554,-13247605096148654,-13247603792440361],[134217736,403308556,-13247605066155522,-13247603822433492],[134217736,403308680,-22544606469793008,-22544601267974862],[134217736,403341320,1975301917236486,1975303102468593],[134217736,403702920,1975301917270118,1975303102434961],[134217736,404226184,-22544606281953756,-22544601455814116],[134217736,404357128,18593996442899990,18594001255457720],[134217736,469762056,4648497899071108,4648501525518317],[134217736,469893130,4648499059714221,4648500364875210],[134217736,469893132,4648499087034444,4648500337554984],[134217736,469893256,4648499056652180,4648500367937249],[134217736,469925896,1975301917270118,1975303102434961],[134217736,470286472,4648499056652180,4648500367937249],[134217736,470417416,-22544606473695306,-22544601264072564],[134217736,470941704,1975301889643525,1975303130061553],[134217736,537920640,1975301885638543,1975303134066535],[134217736,538443904,-13247605067077166,-13247603821511848],[134217736,538574848,-13247605061713792,-13247603826875223],[134217736,672138376,1975301885638543,1975303134066535],[134217736,672661640,-13247605067077166,-13247603821511848],[134217736,672792584,-13247605061713792,-13247603826875223],[134217736,805830784,1975301885638544,1975303134066536],[134217736,805961728,22544603251852693,22544604485915178],[134217736,872546304,1975301892192548,1975303127512529],[134217736,940048520,1975301885638544,1975303134066536],[134217736,940179464,22544603251852693,22544604485915178],[134217736,1006764040,1975301892192548,1975303127512529],[134217736,1409417216,-13247605033203059,-13247603855385956],[134217736,1543634952,-13247605033203059,-13247603855385956],[134217736,17592521719808,1975301858410281,1975303161294799],[134217736,17592655937544,1975301858410281,1975303161294799],[134217736,35184641048704,-13247605100033866,-13247603788555150],[134217736,35184641179648,1975301852392980,1975303167312100],[134217736,35184707764224,-13247605101666952,-13247603786922062],[134217736,35184775266440,-13247605100033866,-13247603788555150],[134217736,35184775397384,1975301852392980,1975303167312100],[134217736,35184841981960,-13247605101666952,-13247603786922062],[134217736,70368745227392,22544603251967752,22544604485800118],[134217736,70368745750656,-13247605066127948,-13247603822461068],[134217736,70368745881600,-13247605076872486,-13247603811716528],[134217736,70368879445128,22544603251967752,22544604485800118],[134217736,70368879968392,-13247605066127948,-13247603822461068],[134217736,70368880099336,-13247605076872486,-13247603811716528],[134217736,70369013137536,1975301885115096,1975303134589986],[134217736,70369013268480,22544603239782766,22544604497985104],[134217736,70369079853056,1975301877105131,1975303142599947],[134217736,70369147355272,1975301885115096,1975303134589986],[134217736,70369147486216,22544603239782766,22544604497985104],[134217736,70369214070792,1975301877105131,1975303142599947],[134217792,1049730,-13247605061578886,-13247603827010127],[134217792,1049736,-13247605066971786,-13247603821617226],[134217792,1049858,1975301891852867,1975303127852212],[134217792,1572994,1975301889664154,1975303130040923],[134217792,1573000,22544603248067364,22544604489700504],[134217792,1704064,1975301885638544,1975303134066536],[134217792,135267522,-13247605061578886,-13247603827010127],[134217792,135267528,-13247605066971786,-13247603821617226],[134217792,135267650,1975301891852867,1975303127852212],[134217792,135790786,1975301889664154,1975303130040923],[134217792,135790792,22544603248067364,22544604489700504],[134217792,135921856,1975301885638544,1975303134066536],[134217792,268959874,4648499057538562,4648500367050864],[134217792,268959880,1975301857911278,1975303161793801],[134217792,269090944,-13247605096148654,-13247603792440361],[134217792,336068736,4648499059714221,4648500364875210],[134217792,403177666,4648499057538562,4648500367050864],[134217792,403177672,1975301857911278,1975303161793801],[134217792,403308736,-13247605096148654,-13247603792440361],[134217792,470286528,4648499059714221,4648500364875210],[134217856,1032,-1975304216083780,-1975300803621296],[134217856,524296,8599101386783086,8599108077216494],[134217856,655360,3950601681274309,3950608358135846],[134217856,1048584,-3950609227302328,-3950600812107830],[134217856,1049672,26495207799425147,26495209977752878],[134217856,1049864,-1975303127852212,-1975301891852867],[134217856,1051656,-1975303127512530,-1975301892192549],[134217856,1179648,-1975305295452736,-1975299724252344],[134217856,1572936,-24519907464403207,-24519905293069738],[134217856,1573896,-7321700200255013,-7321693629218766],[134217856,1703944,-3950606255704424,-3950603783705734],[134217856,1704000,-1975303134066536,-1975301885638544],[134217856,1704960,11272300719992475,11272303148891462],[134217856,3146760,-22544604485915178,-22544603251852693],[134217856,3670024,13247603826875223,13247605061713792],[134217856,3801088,13247603827702546,13247605060886466],[134217856,67633152,-4648502477690436,-4648496946898994],[134217856,134218888,-1975304216083780,-1975300803621296],[134217856,134742152,8599101386783086,8599108077216494],[134217856,134873216,3950601681274309,3950608358135846],[134217856,135266440,-3950609227302328,-3950600812107830],[134217856,135267528,26495207799425147,26495209977752878],[134217856,135267720,-1975303127852212,-1975301891852867],[134217856,135269512,-1975303127512530,-1975301892192549],[134217856,135397504,-1975305295452736,-1975299724252344],[134217856,135790792,-24519907464403207,-24519905293069738],[134217856,135791752,-7321700200255013,-7321693629218766],[134217856,135921800,-3950606255704424,-3950603783705734],[134217856,135921856,-1975303134066536,-1975301885638544],[134217856,135922816,11272300719992475,11272303148891462],[134217856,137364616,-22544604485915178,-22544603251852693],[134217856,137887880,13247603826875223,13247605061713792],[134217856,138018944,13247603827702546,13247605060886466],[134217856,201851008,-4648502477690436,-4648496946898994],[134217856,268435464,-4648501974835595,-4648497449753834],[134217856,268566528,15920798736625752,15920804556847610],[134217856,268959816,-6623803358085955,-6623801086208550],[134217856,268960776,-6623803284297315,-6623801159997192],[134217856,269090824,26495207590564460,26495210186613570],[134217856,269090880,13247603792440361,13247605096148654],[134217856,269091840,13247603822433492,13247605066155522],[134217856,269485064,-1975303102434961,-1975301917270118],[134217856,270008328,22544601455814116,22544606281953756],[134217856,270139392,-22544606578062592,-22544601159705275],[134217856,335544320,-15920803457056280,-15920799836417081],[134217856,335675400,-4648500367937249,-4648499056652180],[134217856,336068616,-4648500367937249,-4648499056652180],[134217856,336068672,-4648500364875210,-4648499059714221],[134217856,336069632,-4648500337554984,-4648499087034444],[134217856,336199680,-3950606322255178,-3950603717154982],[134217856,337117184,-3950606232496514,-3950603806913643],[134217856,402653320,-4648501974835595,-4648497449753834],[134217856,402784384,15920798736625752,15920804556847610],[134217856,403177672,-6623803358085955,-6623801086208550],[134217856,403178632,-6623803284297315,-6623801159997192],[134217856,403308680,26495207590564460,26495210186613570],[134217856,403308736,13247603792440361,13247605096148654],[134217856,403309696,13247603822433492,13247605066155522],[134217856,403702920,-1975303102434961,-1975301917270118],[134217856,404226184,22544601455814116,22544606281953756],[134217856,404357248,-22544606578062592,-22544601159705275],[134217856,469762176,-15920803457056280,-15920799836417081],[134217856,469893256,-4648500367937249,-4648499056652180],[134217856,470286472,-4648500367937249,-4648499056652180],[134217856,470286528,-4648500364875210,-4648499059714221],[134217856,470287488,-4648500337554984,-4648499087034444],[134217856,470417536,-3950606322255178,-3950603717154982],[134217856,471335040,-3950606232496514,-3950603806913643],[134217856,537920520,-1975303134066535,-1975301885638543],[134217856,538443784,13247603821511848,13247605067077166],[134217856,538574848,13247603826875223,13247605061713792],[134217856,672138376,-1975303134066535,-1975301885638543],[134217856,672661640,13247603821511848,13247605067077166],[134217856,672792704,13247603826875223,13247605061713792],[134217856,805830664,-1975303134066536,-1975301885638544],[134217856,805961728,-22544604485915178,-22544603251852693],[134217856,872939520,-1975303127512529,-1975301892192548],[134217856,940048520,-1975303134066536,-1975301885638544],[134217856,940179584,-22544604485915178,-22544603251852693],[134217856,1007157376,-1975303127512529,-1975301892192548],[134217856,35184641048584,13247603788555150,13247605100033866],[134217856,35184641179648,-1975303167312100,-1975301852392980],[134217856,35184708157440,11272301100150310,11272302768733624],[134217856,35184775266440,13247603788555150,13247605100033866],[134217856,35184775397504,-1975303167312100,-1975301852392980],[134217856,35184842375296,11272301100150310,11272302768733624],[134217856,70368745227272,-22544604485800118,-22544603251967752],[134217856,70368745750536,13247603822461068,13247605066127948],[134217856,70368745881600,13247603811716528,13247605076872486],[134217856,70368879445128,-22544604485800118,-22544603251967752],[134217856,70368879968392,13247603822461068,13247605066127948],[134217856,70368880099456,13247603811716528,13247605076872486],[134217856,70369013137416,-1975303134589986,-1975301885115096],[134217856,70369013268480,-22544604497985104,-22544603239782766],[134217856,70369080246272,-1975303142599947,-1975301877105131],[134217856,70369147355272,-1975303134589986,-1975301885115096],[134217856,70369147486336,-22544604497985104,-22544603239782766],[134217856,70369214464128,-1975303142599947,-1975301877105131],[134217866,1049730,-13247605066971786,-13247603821617226],[134217866,1049736,13247603821617226,13247605066971786],[134217866,1572994,22544603248067364,22544604489700504],[134217866,1573000,-22544604489700504,-22544603248067364],[134217866,135267330,13247603821617226,13247605066971786],[134217866,135267336,-13247605066971786,-13247603821617226],[134217866,135790594,-22544604489700504,-22544603248067364],[134217866,135790600,22544603248067364,22544604489700504],[134217866,268959874,1975301857911278,1975303161793801],[134217866,268959880,-1975303161793801,-1975301857911278],[134217866,403177474,-1975303161793801,-1975301857911278],[134217866,403177480,1975301857911278,1975303161793801],[134217868,1049732,-13247605033169427,-13247603855419588],[134217868,1049736,13247603855419588,13247605033169427],[134217868,1572996,1975301917270118,1975303102434961],[134217868,1573000,-1975303102434961,-1975301917270118],[134217868,135267332,13247603855419588,13247605033169427],[134217868,135267336,-13247605033169427,-13247603855419588],[134217868,135790596,-1975303102434961,-1975301917270118],[134217868,135790600,1975301917270118,1975303102434961],[134217868,268959876,4648499087000812,4648500337588616],[134217868,268959880,-4648500337588616,-4648499087000812],[134217868,403177476,-4648500337588616,-4648499087000812],[134217868,403177480,4648499087000812,4648500337588616],[134217922,1049730,-13247605061578886,-13247603827010127],[134217922,1049792,13247603827010127,13247605061578886],[134217922,1572994,1975301889664154,1975303130040923],[134217922,1573056,-1975303130040923,-1975301889664154],[134217922,135267330,13247603827010127,13247605061578886],[134217922,135267392,-13247605061578886,-13247603827010127],[134217922,135790594,-1975303130040923,-1975301889664154],[134217922,135790656,1975301889664154,1975303130040923],[134217922,268959874,4648499057538562,4648500367050864],[134217922,268959936,-4648500367050864,-4648499057538562],[134217922,403177474,-4648500367050864,-4648499057538562],[134217922,403177536,4648499057538562,4648500367050864],[134217928,1049672,26495207799425147,26495209977752878],[134217928,1049736,-13247605066971786,-13247603821617226],[134217928,1049792,-13247605061578886,-13247603827010127],[134217928,1572936,-24519907464403207,-24519905293069738],[134217928,1573000,22544603248067364,22544604489700504],[134217928,1573056,1975301889664154,1975303130040923],[134217928,135267336,-13247605061578886,-13247603827010127],[134217928,135267392,-13247605066971786,-13247603821617226],[134217928,135267456,26495207799425147,26495209977752878],[134217928,135790600,1975301889664154,1975303130040923],[134217928,135790656,22544603248067364,22544604489700504],[134217928,135790720,-24519907464403207,-24519905293069738],[134217928,268959816,-6623803358085955,-6623801086208550],[134217928,268959880,1975301857911278,1975303161793801],[134217928,268959936,4648499057538562,4648500367050864],[134217928,403177480,4648499057538562,4648500367050864],[134217928,403177536,1975301857911278,1975303161793801],[134217928,403177600,-6623803358085955,-6623801086208550],[134218050,1049858,1975301891852867,1975303127852212],[134218050,1049920,-1975303127852212,-1975301891852867],[134218050,135267330,-1975303127852212,-1975301891852867],[134218050,135267392,1975301891852867,1975303127852212],[134218120,1049864,-26495209977752878,-26495207799425147],[134218120,1049984,26495207799425147,26495209977752878],[134218120,135267336,26495207799425147,26495209977752878],[134218120,135267456,-26495209977752878,-26495207799425147],[134218752,655360,-3950605484998596,-3950604554411562],[134218752,1048584,13247602765652131,13247606122936882],[134218752,1179648,-26495211786596702,-26495205990581324],[134218752,1573000,1975301917270118,1975303102434961],[134218752,1704064,1975301917236486,1975303102468593],[134218752,68157440,13247602765618499,13247606122970514],[134218752,134874112,-3950605484998596,-3950604554411562],[134218752,135267336,13247602765652131,13247606122936882],[134218752,135398400,-26495211786596702,-26495205990581324],[134218752,135791752,1975301917270118,1975303102434961],[134218752,135922816,1975301917236486,1975303102468593],[134218752,202376192,13247602765618499,13247606122970514],[134218752,268959880,4648499087000812,4648500337588616],[134218752,269090944,-13247605066155522,-13247603822433492],[134218752,270139392,1975301917236486,1975303102468593],[134218752,336068736,4648499087034444,4648500337554984],[134218752,337117184,1975301917270118,1975303102434961],[134218752,403178632,4648499087000812,4648500337588616],[134218752,403309696,-13247605066155522,-13247603822433492],[134218752,404358144,1975301917236486,1975303102468593],[134218752,470287488,4648499087034444,4648500337554984],[134218752,471335936,1975301917270118,1975303102434961],[134218824,1048704,-26495209977752878,-26495207799425147],[134218824,1048776,-26495209977752878,-26495207799425147],[134218824,135267456,-26495209977752878,-26495207799425147],[134218824,135267528,-26495209977752878,-26495207799425147],[134218882,1048584,13247603821617226,13247605066971786],[134218882,1048640,13247603827010127,13247605061578886],[134218882,1048714,13247603821617226,13247605066971786],[134218882,1048770,13247603827010127,13247605061578886],[134218882,135267336,13247603821617226,13247605066971786],[134218882,135267392,13247603827010127,13247605061578886],[134218882,135267466,13247603821617226,13247605066971786],[134218882,135267522,13247603827010127,13247605061578886],[134218884,1048584,13247603855419588,13247605033169427],[134218884,1048716,13247603855419588,13247605033169427],[134218884,135267336,13247603855419588,13247605033169427],[134218884,135267468,13247603855419588,13247605033169427],[134218888,1032,-1975304216083780,-1975300803621296],[134218888,1152,1975300803621296,1975304216083780],[134218888,1048578,-13247605066971786,-13247603821617226],[134218888,1048580,-13247605033169427,-13247603855419588],[134218888,1048640,13247603821617226,13247605066971786],[134218888,1048714,-13247605066971786,-13247603821617226],[134218888,1048716,-13247605033169427,-13247603855419588],[134218888,1048776,13247603821617226,13247605066971786],[134218888,1049864,24519905289421414,24519907468051532],[134218888,1049984,-24519907468051532,-24519905289421414],[134218888,1051656,24519905292829456,24519907464643493],[134218888,1051776,-24519907464643493,-24519905292829456],[134218888,1179648,-13247605066127948,-13247603822461068],[134218888,1179784,-13247605066127948,-13247603822461068],[134218888,1572864,13247603822461068,13247605066127948],[134218888,1573000,15222905739731186,15222908168562909],[134218888,1573896,-47064511822048211,-47064508673192612],[134218888,1574016,45089206614383552,45089208861152192],[134218888,3146760,-22544604485915178,-22544603251852693],[134218888,3146880,22544603251852693,22544604485915178],[134218888,134217736,1975300803621296,1975304216083780],[134218888,134217856,-1975304216083780,-1975300803621296],[134218888,135266568,-24519907468051532,-24519905289421414],[134218888,135266688,24519905289421414,24519907468051532],[134218888,135267330,-13247605066971786,-13247603821617226],[134218888,135267332,-13247605033169427,-13247603855419588],[134218888,135267392,13247603821617226,13247605066971786],[134218888,135267466,-13247605066971786,-13247603821617226],[134218888,135267468,-13247605033169427,-13247603855419588],[134218888,135267528,13247603821617226,13247605066971786],[134218888,135268360,-24519907464643493,-24519905292829456],[134218888,135268480,24519905292829456,24519907464643493],[134218888,135398400,-13247605066127948,-13247603822461068],[134218888,135398536,-13247605066127948,-13247603822461068],[134218888,135790600,45089206614383552,45089208861152192],[134218888,135790720,-47064511822048211,-47064508673192612],[134218888,135791616,15222905739731186,15222908168562909],[134218888,135791752,13247603822461068,13247605066127948],[134218888,137363464,22544603251852693,22544604485915178],[134218888,137363584,-22544604485915178,-22544603251852693],[134218888,268959880,4648499087000812,4648500337588616],[134218888,268960776,-6623803284297315,-6623801159997192],[134218888,268960896,1975301917270118,1975303102434961],[134218888,269485064,-1975303102434961,-1975301917270118],[134218888,269485184,1975301917270118,1975303102434961],[134218888,403177480,1975301917270118,1975303102434961],[134218888,403177600,-6623803284297315,-6623801159997192],[134218888,403178496,4648499087000812,4648500337588616],[134218888,403701768,1975301917270118,1975303102434961],[134218888,403701888,-1975303102434961,-1975301917270118],[134218888,537920520,-1975303134066535,-1975301885638543],[134218888,537920640,1975301885638543,1975303134066535],[134218888,672137224,1975301885638543,1975303134066535],[134218888,672137344,-1975303134066535,-1975301885638543],[134218888,70368745227272,-22544604485800118,-22544603251967752],[134218888,70368745227392,22544603251967752,22544604485800118],[134218888,70368879443976,22544603251967752,22544604485800118],[134218888,70368879444096,-22544604485800118,-22544603251967752],[134218944,1048578,-13247605061578886,-13247603827010127],[134218944,1048584,13247603827010127,13247605061578886],[134218944,1048770,-13247605061578886,-13247603827010127],[134218944,1048776,13247603827010127,13247605061578886],[134218944,135267330,-13247605061578886,-13247603827010127],[134218944,135267336,13247603827010127,13247605061578886],[134218944,135267522,-13247605061578886,-13247603827010127],[134218944,135267528,13247603827010127,13247605061578886],[134219010,1048640,-1975303127852212,-1975301891852867],[134219010,1048898,-1975303127852212,-1975301891852867],[134219010,135267392,-1975303127852212,-1975301891852867],[134219010,135267650,-1975303127852212,-1975301891852867],[134219016,1048704,1975301891852867,1975303127852212],[134219016,1048968,26495207799425147,26495209977752878],[134219016,1049736,-24519907468051532,-24519905289421414],[134219016,135266688,-24519907468051532,-24519905289421414],[134219016,135267456,26495207799425147,26495209977752878],[134219016,135267720,1975301891852867,1975303127852212],[134219072,1048578,1975301891852867,1975303127852212],[134219072,1048898,1975301891852867,1975303127852212],[134219072,135267330,1975301891852867,1975303127852212],[134219072,135267650,1975301891852867,1975303127852212],[134219136,1048584,-1975303127852212,-1975301891852867],[134219136,1048968,-26495209977752878,-26495207799425147],[134219136,1049736,24519905289421414,24519907468051532],[134219136,135266568,24519905289421414,24519907468051532],[134219136,135267336,-26495209977752878,-26495207799425147],[134219136,135267720,-1975303127852212,-1975301891852867],[134219912,1051656,-26495209978356470,-26495207798821558],[134219912,1051776,26495207798821558,26495209978356470],[134219912,135267336,26495207798821558,26495209978356470],[134219912,135267456,-26495209978356470,-26495207798821558],[134220808,1048704,1975301892192549,1975303127512530],[134220808,1049736,-24519907464643493,-24519905292829456],[134220808,1050760,26495207798821558,26495209978356470],[134220808,135267456,26495207798821558,26495209978356470],[134220808,135268480,-24519907464643493,-24519905292829456],[134220808,135269512,1975301892192549,1975303127512530],[134220928,1048584,-1975303127512530,-1975301892192549],[134220928,1049736,24519905292829456,24519907464643493],[134220928,1050760,-26495209978356470,-26495207798821558],[134220928,135267336,-26495209978356470,-26495207798821558],[134220928,135268360,24519905292829456,24519907464643493],[134220928,135269512,-1975303127512530,-1975301892192549],[134250496,1703940,22544603307191776,22544604430576096],[134250496,1703944,1975301917236486,1975303102468593],[134250496,1704064,1975301917270118,1975303102434961],[134250496,1704960,-13247605033169427,-13247603855419588],[134250496,135954436,22544603307191776,22544604430576096],[134250496,135954440,1975301917236486,1975303102468593],[134250496,135954560,1975301917270118,1975303102434961],[134250496,135955456,-13247605033169427,-13247603855419588],[134250496,269090820,1975301917236486,1975303102468593],[134250496,269090824,-13247605066155522,-13247603822433492],[134250496,269090944,4648499087000812,4648500337588616],[134250496,335675396,1975301917270118,1975303102434961],[134250496,335675400,4648499087034444,4648500337554984],[134250496,403341316,1975301917236486,1975303102468593],[134250496,403341320,-13247605066155522,-13247603822433492],[134250496,403341440,4648499087000812,4648500337588616],[134250496,469925892,1975301917270118,1975303102434961],[134250496,469925896,4648499087034444,4648500337554984],[134250496,1409286148,-13247605033203059,-13247603855385956],[134250496,1543536644,-13247605033203059,-13247603855385956],[134348800,524296,11272298596064681,11272305272819252],[134348800,524416,1277404472099680,1277411162426122],[134348800,525312,-1975305295246081,-1975299724458993],[134348800,1048584,-1975304605835260,-1975300413869816],[134348800,1048704,-1975305295486367,-1975299724218711],[134348800,1049600,17198207785323578,17198211142675593],[134348800,1049736,13247603822461068,13247605066127948],[134348800,1573000,-45089208971600236,-45089206503935504],[134348800,1573896,13247603822461068,13247605066127948],[134348800,1574016,26495207648534336,26495210128643692],[134348800,1605640,-24519907391505747,-24519905365967204],[134348800,1605760,-1975303102434961,-1975301917270118],[134348800,1606656,13247603855419588,13247605033169427],[134348800,3670024,13247603827702546,13247605060886466],[134348800,3670144,13247603826875223,13247605061713792],[134348800,3671040,-24519907156493900,-24519905600979050],[134348800,67108872,-4648501379109328,-4648498045480103],[134348800,68681736,-3950606107262344,-3950603932147814],[134348800,68681856,-22544604489700504,-22544603248067364],[134348800,68682752,13247603821617226,13247605066971786],[134348800,134873096,11272298596064681,11272305272819252],[134348800,134873216,1277404472099680,1277411162426122],[134348800,134874112,-1975305295246081,-1975299724458993],[134348800,135397384,-1975304605835260,-1975300413869816],[134348800,135397504,-1975305295486367,-1975299724218711],[134348800,135398400,17198207785323578,17198211142675593],[134348800,135398536,13247603822461068,13247605066127948],[134348800,135921800,-45089208971600236,-45089206503935504],[134348800,135922696,13247603822461068,13247605066127948],[134348800,135922816,26495207648534336,26495210128643692],[134348800,135954440,-24519907391505747,-24519905365967204],[134348800,135954560,-1975303102434961,-1975301917270118],[134348800,135955456,13247603855419588,13247605033169427],[134348800,138018824,13247603827702546,13247605060886466],[134348800,138018944,13247603826875223,13247605061713792],[134348800,138019840,-24519907156493900,-24519905600979050],[134348800,201457672,-4648501379109328,-4648498045480103],[134348800,203030536,-3950606107262344,-3950603932147814],[134348800,203030656,-22544604489700504,-22544603248067364],[134348800,203031552,13247603821617226,13247605066971786],[134348800,268435464,-6623806726760819,-6623797717533688],[134348800,268435584,-4648502622318527,-4648496802270899],[134348800,268959880,-3950606322589598,-3950603716820562],[134348800,268992520,11272300873839524,11272302995044411],[134348800,268992640,-4648500337588616,-4648499087000812],[134348800,270008328,-18594001255457720,-18593996442899990],[134348800,270008448,18593996132872130,18594001565485586],[134348800,270009344,11272300724575166,11272303144308768],[134348800,335577096,-6623803284330947,-6623801159963560],[134348800,336068616,31143705027114464,31143712174652992],[134348800,336068736,-6623803529731050,-6623800914563458],[134348800,336592904,-1975303130061553,-1975301889643525],[134348800,402784264,-6623806726760819,-6623797717533688],[134348800,402784384,-4648502622318527,-4648496802270899],[134348800,403308680,-3950606322589598,-3950603716820562],[134348800,403341320,11272300873839524,11272302995044411],[134348800,403341440,-4648500337588616,-4648499087000812],[134348800,404357128,-18594001255457720,-18593996442899990],[134348800,404357248,18593996132872130,18594001565485586],[134348800,404358144,11272300724575166,11272303144308768],[134348800,469925896,-6623803284330947,-6623801159963560],[134348800,470417416,31143705027114464,31143712174652992],[134348800,470417536,-6623803529731050,-6623800914563458],[134348800,470941704,-1975303130061553,-1975301889643525],[134348800,538443784,13247603826875223,13247605061713792],[134348800,538443904,13247603821511848,13247605067077166],[134348800,538444800,-1975303134066535,-1975301885638543],[134348800,672792584,13247603826875223,13247605061713792],[134348800,672792704,13247603821511848,13247605067077166],[134348800,672793600,-1975303134066535,-1975301885638543],[134348800,805830664,-22544604485915178,-22544603251852693],[134348800,805830784,-1975303134066536,-1975301885638544],[134348800,872415240,-1975303127512529,-1975301892192548],[134348800,940179464,-22544604485915178,-22544603251852693],[134348800,940179584,-1975303134066536,-1975301885638544],[134348800,1006764040,-1975303127512529,-1975301892192548],[134348800,1409286152,13247603855385956,13247605033203059],[134348800,1543634952,13247603855385956,13247605033203059],[134348800,17592521588744,-1975303161294799,-1975301858410281],[134348800,17592655937544,-1975303161294799,-1975301858410281],[134348800,35184641048584,-1975303167312100,-1975301852392980],[134348800,35184641048704,13247603788555150,13247605100033866],[134348800,35184707633160,13247603786922062,13247605101666952],[134348800,35184775397384,-1975303167312100,-1975301852392980],[134348800,35184775397504,13247603788555150,13247605100033866],[134348800,35184841981960,13247603786922062,13247605101666952],[134348800,70368745750536,13247603811716528,13247605076872486],[134348800,70368745750656,13247603822461068,13247605066127948],[134348800,70368745751552,-22544604485800118,-22544603251967752],[134348800,70368880099336,13247603811716528,13247605076872486],[134348800,70368880099456,13247603822461068,13247605066127948],[134348800,70368880100352,-22544604485800118,-22544603251967752],[134348800,70369013137416,-22544604497985104,-22544603239782766],[134348800,70369013137536,-1975303134589986,-1975301885115096],[134348800,70369079721992,-1975303142599947,-1975301877105131],[134348800,70369147486216,-22544604497985104,-22544603239782766],[134348800,70369147486336,-1975303134589986,-1975301885115096],[134348800,70369214070792,-1975303142599947,-1975301877105131],[134348810,1703938,1975301885638544,1975303134066536],[134348810,1703944,-1975303134066536,-1975301885638544],[134348810,135790594,-1975303134066536,-1975301885638544],[134348810,135790600,1975301885638544,1975303134066536],[134348810,269090818,-13247605096148654,-13247603792440361],[134348810,269090824,13247603792440361,13247605096148654],[134348810,335675394,4648499059714221,4648500364875210],[134348810,335675400,-4648500364875210,-4648499059714221],[134348810,403177474,13247603792440361,13247605096148654],[134348810,403177480,-13247605096148654,-13247603792440361],[134348810,469762050,-4648500364875210,-4648499059714221],[134348810,469762056,4648499059714221,4648500364875210],[134348812,1703940,1975301917236486,1975303102468593],[134348812,1703944,-1975303102468593,-1975301917236486],[134348812,135790596,-1975303102468593,-1975301917236486],[134348812,135790600,1975301917236486,1975303102468593],[134348812,269090820,-13247605066155522,-13247603822433492],[134348812,269090824,13247603822433492,13247605066155522],[134348812,335675396,4648499087034444,4648500337554984],[134348812,335675400,-4648500337554984,-4648499087034444],[134348812,403177476,13247603822433492,13247605066155522],[134348812,403177480,-13247605066155522,-13247603822433492],[134348812,469762052,-4648500337554984,-4648499087034444],[134348812,469762056,4648499087034444,4648500337554984],[134348936,1049736,13247603822461068,13247605066127948],[134348936,1180800,-13247605066127948,-13247603822461068],[134348936,1573000,-18594000573832936,-18593997124524774],[134348936,1703944,22544602161328920,22544605576438951],[134348936,1704064,-3950608451914177,-3950601587495984],[134348936,135267336,-13247605066127948,-13247603822461068],[134348936,135398400,13247603822461068,13247605066127948],[134348936,135790600,-3950608451914177,-3950601587495984],[134348936,135790720,22544602161328920,22544605576438951],[134348936,135921664,-18594000573832936,-18593997124524774],[134348936,268959880,-28470513207314965,-28470509589568145],[134348936,269090824,19871404875056286,19871408457827235],[134348936,269090944,8599101131740910,8599108332258679],[134348936,335675400,-4648500367937249,-4648499056652180],[134348936,335675520,4648499056652180,4648500367937249],[134348936,403177480,8599101131740910,8599108332258679],[134348936,403177600,19871404875056286,19871408457827235],[134348936,403308544,-28470513207314965,-28470509589568145],[134348936,469762056,4648499056652180,4648500367937249],[134348936,469762176,-4648500367937249,-4648499056652180],[134348992,1704000,24519905293069738,24519907464403207],[134348992,1704064,-24519907464403207,-24519905293069738],[134348992,135790656,-24519907464403207,-24519905293069738],[134348992,135790720,24519905293069738,24519907464403207],[134348992,269090880,6623801086208550,6623803358085955],[134348992,269090944,-6623803358085955,-6623801086208550],[134348992,403177536,-6623803358085955,-6623801086208550],[134348992,403177600,6623801086208550,6623803358085955],[134349952,1048584,13247603822461068,13247605066127948],[134349952,1179784,13247603822461068,13247605066127948],[134349952,1572864,66238019708364176,66238024734580898],[134349952,1704064,17198204925419946,17198214002579226],[134349952,1704960,49039810732001672,49039814782944230],[134349952,135267336,13247603822461068,13247605066127948],[134349952,135398536,13247603822461068,13247605066127948],[134349952,135790720,49039810732001672,49039814782944230],[134349952,135791616,17198204925419946,17198214002579226],[134349952,135922816,66238019708364176,66238024734580898],[134349952,269090944,-6623803284297315,-6623801159997192],[134349952,269091840,6623801159997192,6623803284297315],[134349952,403177600,6623801159997192,6623803284297315],[134349952,403178496,-6623803284297315,-6623801159997192],[134350080,1704192,-24519907468051532,-24519905289421414],[134350080,1704960,24519905289421414,24519907468051532],[134350080,135790848,24519905289421414,24519907468051532],[134350080,135791616,-24519907468051532,-24519905289421414],[134351872,1704960,24519905292829456,24519907464643493],[134351872,1705984,-24519907464643493,-24519905292829456],[134351872,135791616,-24519907464643493,-24519905292829456],[134351872,135792640,24519905292829456,24519907464643493],[134381572,1703940,22544603307191776,22544604430576096],[134381572,1736704,-22544604430576096,-22544603307191776],[134381572,135790596,-22544604430576096,-22544603307191776],[134381572,135823360,22544603307191776,22544604430576096],[134381572,269090820,1975301917236486,1975303102468593],[134381572,269123584,-1975303102468593,-1975301917236486],[134381572,335675396,1975301917270118,1975303102434961],[134381572,335708160,-1975303102434961,-1975301917270118],[134381572,403177476,-1975303102468593,-1975301917236486],[134381572,403210240,1975301917236486,1975303102468593],[134381572,469762052,-1975303102434961,-1975301917270118],[134381572,469794816,1975301917270118,1975303102434961],[134381576,1605640,-24519907391505747,-24519905365967204],[134381576,1703944,1975301917236486,1975303102468593],[134381576,1736704,22544603307191776,22544604430576096],[134381576,135790600,22544603307191776,22544604430576096],[134381576,135823360,1975301917236486,1975303102468593],[134381576,135921664,-24519907391505747,-24519905365967204],[134381576,268992520,11272300873839524,11272302995044411],[134381576,269090824,-13247605066155522,-13247603822433492],[134381576,269123584,1975301917236486,1975303102468593],[134381576,335577096,-6623803284330947,-6623801159963560],[134381576,335675400,4648499087034444,4648500337554984],[134381576,335708160,1975301917270118,1975303102434961],[134381576,403177480,1975301917236486,1975303102468593],[134381576,403210240,-13247605066155522,-13247603822433492],[134381576,403308544,11272300873839524,11272302995044411],[134381576,469762056,1975301917270118,1975303102434961],[134381576,469794816,4648499087034444,4648500337554984],[134381576,469893120,-6623803284330947,-6623801159963560],[134381696,1605760,24519905365967204,24519907391505747],[134381696,1704064,-24519907391505747,-24519905365967204],[134381696,135823360,-24519907391505747,-24519905365967204],[134381696,135921664,24519905365967204,24519907391505747],[134381696,268992640,-11272302995044411,-11272300873839524],[134381696,269090944,11272300873839524,11272302995044411],[134381696,403210240,11272300873839524,11272302995044411],[134381696,403308544,-11272302995044411,-11272300873839524],[134742016,131200,-19871412418198236,-19871400914685277],[134742016,132096,-1975305295212454,-1975299724492630],[134742016,1048584,-3950608451914177,-3950601587495984],[134742016,1049736,-13247605066127948,-13247603822461068],[134742016,1180800,-39742815043973846,-39742811621793198],[134742016,3276928,-26495209971802464,-26495207805375563],[134742016,3277824,24519905600979050,24519907156493900],[134742016,67108992,15920798878436957,15920804415036409],[134742016,134873216,-19871412418198236,-19871400914685277],[134742016,134874112,-1975305295212454,-1975299724492630],[134742016,135790600,-3950608451914177,-3950601587495984],[134742016,135791752,-13247605066127948,-13247603822461068],[134742016,135922816,-39742815043973846,-39742811621793198],[134742016,138018944,-26495209971802464,-26495207805375563],[134742016,138019840,24519905600979050,24519907156493900],[134742016,201851008,15920798878436957,15920804415036409],[134742016,268435464,8599101131740910,8599108332258679],[134742016,269615232,19871400914685277,19871412418198236],[134742016,269616128,-24519908060482760,-24519904696990186],[134742016,335675400,4648499056652180,4648500367937249],[134742016,335675520,8599102944480312,8599106519519277],[134742016,336593024,8599103049607085,8599106414392500],[134742016,403177480,8599101131740910,8599108332258679],[134742016,404357248,19871400914685277,19871412418198236],[134742016,404358144,-24519908060482760,-24519904696990186],[134742016,470417416,4648499056652180,4648500367937249],[134742016,470417536,8599102944480312,8599106519519277],[134742016,471335040,8599103049607085,8599106414392500],[134742016,538050688,-26495209977993164,-26495207799184865],[134742016,538051584,1975301885638543,1975303134066535],[134742016,672792704,-26495209977993164,-26495207799184865],[134742016,672793600,1975301885638543,1975303134066535],[134742016,805437568,24519905292829457,24519907464643494],[134742016,872415360,1975301892192548,1975303127512529],[134742016,940179584,24519905292829457,24519907464643494],[134742016,1007157376,1975301892192548,1975303127512529],[134742016,35184640655488,-11272303079253853,-11272300789630083],[134742016,35184707633280,-11272302768733624,-11272301100150310],[134742016,35184775397504,-11272303079253853,-11272300789630083],[134742016,35184842375296,-11272302768733624,-11272301100150310],[134742016,70368745357440,-26495209992202640,-26495207784975390],[134742016,70368745358336,22544603251967752,22544604485800118],[134742016,70368880099456,-26495209992202640,-26495207784975390],[134742016,70368880100352,22544603251967752,22544604485800118],[134742016,70369012744320,24519905280236082,24519907477236870],[134742016,70369079722112,1975301877105131,1975303142599947],[134742016,70369147486336,24519905280236082,24519907477236870],[134742016,70369214464128,1975301877105131,1975303142599947],[134742088,1048704,24519905293069738,24519907464403207],[134742088,1048776,24519905293069738,24519907464403207],[134742088,135790720,24519905293069738,24519907464403207],[134742088,135790792,24519905293069738,24519907464403207],[134742088,268435584,6623801086208550,6623803358085955],[134742088,268435656,6623801086208550,6623803358085955],[134742088,403177600,6623801086208550,6623803358085955],[134742088,403177672,6623801086208550,6623803358085955],[134742146,1048584,-22544604489700504,-22544603248067364],[134742146,1048640,-1975303130040923,-1975301889664154],[134742146,1048714,-22544604489700504,-22544603248067364],[134742146,1048770,-1975303130040923,-1975301889664154],[134742146,135790600,-22544604489700504,-22544603248067364],[134742146,135790656,-1975303130040923,-1975301889664154],[134742146,135790730,-22544604489700504,-22544603248067364],[134742146,135790786,-1975303130040923,-1975301889664154],[134742146,268435464,-1975303161793801,-1975301857911278],[134742146,268435520,-4648500367050864,-4648499057538562],[134742146,268435594,-1975303161793801,-1975301857911278],[134742146,268435650,-4648500367050864,-4648499057538562],[134742146,403177480,-1975303161793801,-1975301857911278],[134742146,403177536,-4648500367050864,-4648499057538562],[134742146,403177610,-1975303161793801,-1975301857911278],[134742146,403177666,-4648500367050864,-4648499057538562],[134742148,1048584,-1975303102434961,-1975301917270118],[134742148,1048716,-1975303102434961,-1975301917270118],[134742148,135790600,-1975303102434961,-1975301917270118],[134742148,135790732,-1975303102434961,-1975301917270118],[134742148,268435464,-4648500337588616,-4648499087000812],[134742148,268435596,-4648500337588616,-4648499087000812],[134742148,403177480,-4648500337588616,-4648499087000812],[134742148,403177612,-4648500337588616,-4648499087000812],[134742152,524296,8599101386783086,8599108077216494],[134742152,524416,-8599108077216494,-8599101386783086],[134742152,1048578,22544603248067364,22544604489700504],[134742152,1048580,1975301917270118,1975303102434961],[134742152,1048640,-22544604489700504,-22544603248067364],[134742152,1048714,22544603248067364,22544604489700504],[134742152,1048716,1975301917270118,1975303102434961],[134742152,1048776,-22544604489700504,-22544603248067364],[134742152,1049600,-1975303102434961,-1975301917270118],[134742152,1049736,-15222908168562909,-15222905739731186],[134742152,1179648,45089206503935504,45089208971600236],[134742152,1179784,18593997124524774,18594000573832936],[134742152,1573896,39742811621793198,39742815043973846],[134742152,1574016,-26495210128643692,-26495207648534336],[134742152,1703944,-2193017774,2193017775],[134742152,1704064,26495207799184865,26495209977993164],[134742152,3670024,13247603826875223,13247605061713792],[134742152,3670144,-13247605061713792,-13247603826875223],[134742152,134217736,-8599108077216494,-8599101386783086],[134742152,134217856,8599101386783086,8599108077216494],[134742152,135267336,-26495210128643692,-26495207648534336],[134742152,135267456,39742811621793198,39742815043973846],[134742152,135397384,26495207799184865,26495209977993164],[134742152,135397504,-2193017774,2193017775],[134742152,135790594,22544603248067364,22544604489700504],[134742152,135790596,1975301917270118,1975303102434961],[134742152,135790656,-22544604489700504,-22544603248067364],[134742152,135790730,22544603248067364,22544604489700504],[134742152,135790732,1975301917270118,1975303102434961],[134742152,135790792,-22544604489700504,-22544603248067364],[134742152,135791616,-15222908168562909,-15222905739731186],[134742152,135791752,-1975303102434961,-1975301917270118],[134742152,135921664,18593997124524774,18594000573832936],[134742152,135921800,45089206503935504,45089208971600236],[134742152,137363464,-13247605061713792,-13247603826875223],[134742152,137363584,13247603826875223,13247605061713792],[134742152,268435458,1975301857911278,1975303161793801],[134742152,268435460,4648499087000812,4648500337588616],[134742152,268435520,-1975303161793801,-1975301857911278],[134742152,268435594,1975301857911278,1975303161793801],[134742152,268435596,4648499087000812,4648500337588616],[134742152,268435656,-1975303161793801,-1975301857911278],[134742152,268436480,-4648500337588616,-4648499087000812],[134742152,268436616,-4648500337588616,-4648499087000812],[134742152,268566528,3950603716820562,3950606322589598],[134742152,268566664,28470509589568145,28470513207314965],[134742152,269090824,-17896106414758888,-17896101898419553],[134742152,269090944,-6623803346277523,-6623801098016986],[134742152,270008328,-8599108077216494,-8599101386783086],[134742152,270008448,8599101386783086,8599108077216494],[134742152,336068616,-4648500367937249,-4648499056652180],[134742152,336068736,4648499056652180,4648500367937249],[134742152,402784264,-6623803346277523,-6623801098016986],[134742152,402784384,-17896106414758888,-17896101898419553],[134742152,403177474,1975301857911278,1975303161793801],[134742152,403177476,4648499087000812,4648500337588616],[134742152,403177536,-1975303161793801,-1975301857911278],[134742152,403177610,1975301857911278,1975303161793801],[134742152,403177612,4648499087000812,4648500337588616],[134742152,403177672,-1975303161793801,-1975301857911278],[134742152,403178496,-4648500337588616,-4648499087000812],[134742152,403178632,-4648500337588616,-4648499087000812],[134742152,403308544,28470509589568145,28470513207314965],[134742152,403308680,3950603716820562,3950606322589598],[134742152,403701768,8599101386783086,8599108077216494],[134742152,403701888,-8599108077216494,-8599101386783086],[134742152,469762056,4648499056652180,4648500367937249],[134742152,469762176,-4648500367937249,-4648499056652180],[134742152,538443784,13247603821511848,13247605067077166],[134742152,538443904,-13247605067077166,-13247603821511848],[134742152,672137224,-13247605067077166,-13247603821511848],[134742152,672137344,13247603821511848,13247605067077166],[134742152,805830664,-1975303134066536,-1975301885638544],[134742152,805830784,1975301885638544,1975303134066536],[134742152,939524104,1975301885638544,1975303134066536],[134742152,939524224,-1975303134066536,-1975301885638544],[134742152,35184641048584,13247603788555150,13247605100033866],[134742152,35184641048704,-13247605100033866,-13247603788555150],[134742152,35184774742024,-13247605100033866,-13247603788555150],[134742152,35184774742144,13247603788555150,13247605100033866],[134742152,70368745750536,13247603822461068,13247605066127948],[134742152,70368745750656,-13247605066127948,-13247603822461068],[134742152,70368879443976,-13247605066127948,-13247603822461068],[134742152,70368879444096,13247603822461068,13247605066127948],[134742152,70369013137416,-1975303134589986,-1975301885115096],[134742152,70369013137536,1975301885115096,1975303134589986],[134742152,70369146830856,1975301885115096,1975303134589986],[134742152,70369146830976,-1975303134589986,-1975301885115096],[134742208,1048578,1975301889664154,1975303130040923],[134742208,1048584,-1975303130040923,-1975301889664154],[134742208,1048770,1975301889664154,1975303130040923],[134742208,1048776,-1975303130040923,-1975301889664154],[134742208,1704000,-26495209977752878,-26495207799425147],[134742208,1704064,26495207799425147,26495209977752878],[134742208,135397440,26495207799425147,26495209977752878],[134742208,135397504,-26495209977752878,-26495207799425147],[134742208,135790594,1975301889664154,1975303130040923],[134742208,135790600,-1975303130040923,-1975301889664154],[134742208,135790786,1975301889664154,1975303130040923],[134742208,135790792,-1975303130040923,-1975301889664154],[134742208,268435458,4648499057538562,4648500367050864],[134742208,268435464,-4648500367050864,-4648499057538562],[134742208,268435650,4648499057538562,4648500367050864],[134742208,268435656,-4648500367050864,-4648499057538562],[134742208,269090880,6623801107293350,6623803337001160],[134742208,269090944,-6623803337001160,-6623801107293350],[134742208,336068672,-4648500364875210,-4648499059714221],[134742208,336068736,4648499059714221,4648500364875210],[134742208,402784320,-6623803337001160,-6623801107293350],[134742208,402784384,6623801107293350,6623803337001160],[134742208,403177474,4648499057538562,4648500367050864],[134742208,403177480,-4648500367050864,-4648499057538562],[134742208,403177666,4648499057538562,4648500367050864],[134742208,403177672,-4648500367050864,-4648499057538562],[134742208,469762112,4648499059714221,4648500364875210],[134742208,469762176,-4648500364875210,-4648499059714221],[134743048,1048704,-3950609227302328,-3950600812107830],[134743048,1049736,49039810732001672,49039814782944230],[134743048,1179648,-26495209992202640,-26495207784975390],[134743048,1573000,-52990419959304000,-52990415595052060],[134743048,1703944,-26495209992202640,-26495207784975390],[134743048,135267456,-52990419959304000,-52990415595052060],[134743048,135398400,-26495209992202640,-26495207784975390],[134743048,135790720,49039810732001672,49039814782944230],[134743048,135791752,-3950609227302328,-3950600812107830],[134743048,135922696,-26495209992202640,-26495207784975390],[134743048,268435584,6623801159997192,6623803284297315],[134743048,268436616,6623801159997192,6623803284297315],[134743048,403177600,6623801159997192,6623803284297315],[134743048,403178632,6623801159997192,6623803284297315],[134743168,1048584,-7321700200255013,-7321693629218766],[134743168,1049736,-47064511822048211,-47064508673192612],[134743168,1179648,-39742815043973846,-39742811621793198],[134743168,1573000,39742811621793198,39742815043973846],[134743168,1704064,11272298183630328,11272305685253609],[134743168,1704960,-51015117307046807,-51015113227604174],[134743168,135267336,39742811621793198,39742815043973846],[134743168,135397504,-51015117307046807,-51015113227604174],[134743168,135398400,11272298183630328,11272305685253609],[134743168,135790600,-47064511822048211,-47064508673192612],[134743168,135791752,-7321700200255013,-7321693629218766],[134743168,135922816,-39742815043973846,-39742811621793198],[134743168,268435464,-1975303102434961,-1975301917270118],[134743168,268436616,-1975303102434961,-1975301917270118],[134743168,269090944,-6623803284297315,-6623801159997192],[134743168,269091840,6623801159997192,6623803284297315],[134743168,336068736,4648499087034444,4648500337554984],[134743168,336069632,-4648500337554984,-4648499087034444],[134743168,402784384,6623801159997192,6623803284297315],[134743168,402785280,-6623803284297315,-6623801159997192],[134743168,403177480,-1975303102434961,-1975301917270118],[134743168,403178632,-1975303102434961,-1975301917270118],[134743168,469762176,-4648500337554984,-4648499087034444],[134743168,469763072,4648499087034444,4648500337554984],[134743296,1704192,24519905289421414,24519907468051532],[134743296,1704960,-24519907468051532,-24519905289421414],[134743296,135397632,-24519907468051532,-24519905289421414],[134743296,135398400,24519905289421414,24519907468051532],[134745088,1704960,-24519907464643493,-24519905292829456],[134745088,1705984,24519905292829456,24519907464643493],[134745088,135398400,24519905292829456,24519907464643493],[134745088,135399424,-24519907464643493,-24519905292829456],[134774792,1179648,24519905365967204,24519907391505747],[134774792,1212424,24519905365967204,24519907391505747],[134774792,135921664,24519905365967204,24519907391505747],[134774792,135954440,24519905365967204,24519907391505747],[134774792,268566528,-11272302995044411,-11272300873839524],[134774792,268599304,-11272302995044411,-11272300873839524],[134774792,403308544,-11272302995044411,-11272300873839524],[134774792,403341320,-11272302995044411,-11272300873839524],[134774912,1179648,1975301917270118,1975303102434961],[134774912,1212544,-24519907391505747,-24519905365967204],[134774912,1736704,26495207861603338,26495209915574692],[134774912,135397504,26495207861603338,26495209915574692],[134774912,135921664,-24519907391505747,-24519905365967204],[134774912,135954560,1975301917270118,1975303102434961],[134774912,268566528,4648499087000812,4648500337588616],[134774912,268599424,11272300873839524,11272302995044411],[134774912,269123584,-6623803284330947,-6623801159963560],[134774912,402784384,-6623803284330947,-6623801159963560],[134774912,403308544,11272300873839524,11272302995044411],[134774912,403341440,4648499087000812,4648500337588616],[134775808,1179648,-26495209915574692,-26495207861603338],[134775808,1736704,-26495209915574692,-26495207861603338],[134775808,135398400,-26495209915574692,-26495207861603338],[134775808,135955456,-26495209915574692,-26495207861603338],[134873090,1048584,-1975303134066536,-1975301885638544],[134873090,1179658,-1975303134066536,-1975301885638544],[134873090,135790600,-1975303134066536,-1975301885638544],[134873090,135921674,-1975303134066536,-1975301885638544],[134873090,268435464,13247603792440361,13247605096148654],[134873090,268566538,13247603792440361,13247605096148654],[134873090,403177480,13247603792440361,13247605096148654],[134873090,403308554,13247603792440361,13247605096148654],[134873092,1048584,-1975303102468593,-1975301917236486],[134873092,1081344,-22544604430576096,-22544603307191776],[134873092,1179660,-1975303102468593,-1975301917236486],[134873092,1212420,-22544604430576096,-22544603307191776],[134873092,135790600,-1975303102468593,-1975301917236486],[134873092,135823360,-22544604430576096,-22544603307191776],[134873092,135921676,-1975303102468593,-1975301917236486],[134873092,135954436,-22544604430576096,-22544603307191776],[134873092,268435464,13247603822433492,13247605066155522],[134873092,268468224,-1975303102468593,-1975301917236486],[134873092,268566540,13247603822433492,13247605066155522],[134873092,268599300,-1975303102468593,-1975301917236486],[134873092,403177480,13247603822433492,13247605066155522],[134873092,403210240,-1975303102468593,-1975301917236486],[134873092,403308556,13247603822433492,13247605066155522],[134873092,403341316,-1975303102468593,-1975301917236486],[134873096,524296,11272298596064681,11272305272819252],[134873096,655360,-11272305272819252,-11272298596064681],[134873096,1048578,1975301885638544,1975303134066536],[134873096,1048580,1975301917236486,1975303102468593],[134873096,1048704,3950603783705734,3950606255704424],[134873096,1081344,-1975303102468593,-1975301917236486],[134873096,1179658,1975301885638544,1975303134066536],[134873096,1179660,1975301917236486,1975303102468593],[134873096,1179784,-22544605576438951,-22544602161328920],[134873096,1212424,-1975303102468593,-1975301917236486],[134873096,1573000,-2193017775,2193017774],[134873096,1573896,13247603822461068,13247605066127948],[134873096,1704064,26495207784975390,26495209992202640],[134873096,1704960,-13247605066127948,-13247603822461068],[134873096,3670024,13247603827702546,13247605060886466],[134873096,3801088,-13247605060886466,-13247603827702546],[134873096,68157440,-1975303134066536,-1975301885638544],[134873096,68288520,-1975303134066536,-1975301885638544],[134873096,134217736,-11272305272819252,-11272298596064681],[134873096,134348800,11272298596064681,11272305272819252],[134873096,135266440,26495207784975390,26495209992202640],[134873096,135267336,-13247605066127948,-13247603822461068],[134873096,135397504,-2193017775,2193017774],[134873096,135398400,13247603822461068,13247605066127948],[134873096,135790594,1975301885638544,1975303134066536],[134873096,135790596,1975301917236486,1975303102468593],[134873096,135790720,-22544605576438951,-22544602161328920],[134873096,135823360,-1975303102468593,-1975301917236486],[134873096,135921674,1975301885638544,1975303134066536],[134873096,135921676,1975301917236486,1975303102468593],[134873096,135921800,3950603783705734,3950606255704424],[134873096,135954440,-1975303102468593,-1975301917236486],[134873096,137363464,-13247605060886466,-13247603827702546],[134873096,137494528,13247603827702546,13247605060886466],[134873096,202899456,-1975303134066536,-1975301885638544],[134873096,203030536,-1975303134066536,-1975301885638544],[134873096,268435458,-13247605096148654,-13247603792440361],[134873096,268435460,-13247605066155522,-13247603822433492],[134873096,268435584,-26495210186613570,-26495207590564460],[134873096,268468224,13247603822433492,13247605066155522],[134873096,268566538,-13247605096148654,-13247603792440361],[134873096,268566540,-13247605066155522,-13247603822433492],[134873096,268566664,-19871408457827235,-19871404875056286],[134873096,268599304,13247603822433492,13247605066155522],[134873096,268959880,17896101898419553,17896106414758888],[134873096,269090944,-24519907512775874,-24519905244697076],[134873096,270008328,-11272305272819252,-11272298596064681],[134873096,270139392,11272298596064681,11272305272819252],[134873096,335544320,13247603792440361,13247605096148654],[134873096,335675400,17896102849092541,17896105464085903],[134873096,336068616,-8599106519519277,-8599102944480312],[134873096,336199680,3950603717154982,3950606322255178],[134873096,402653320,-24519907512775874,-24519905244697076],[134873096,402784384,17896101898419553,17896106414758888],[134873096,403177474,-13247605096148654,-13247603792440361],[134873096,403177476,-13247605066155522,-13247603822433492],[134873096,403177600,-19871408457827235,-19871404875056286],[134873096,403210240,13247603822433492,13247605066155522],[134873096,403308554,-13247605096148654,-13247603792440361],[134873096,403308556,-13247605066155522,-13247603822433492],[134873096,403308680,-26495210186613570,-26495207590564460],[134873096,403341320,13247603822433492,13247605066155522],[134873096,403701768,11272298596064681,11272305272819252],[134873096,403832832,-11272305272819252,-11272298596064681],[134873096,469762056,3950603717154982,3950606322255178],[134873096,469893120,-8599106519519277,-8599102944480312],[134873096,470286336,17896102849092541,17896105464085903],[134873096,470417416,13247603792440361,13247605096148654],[134873096,538443784,13247603826875223,13247605061713792],[134873096,538574848,-13247605061713792,-13247603826875223],[134873096,672137224,-13247605061713792,-13247603826875223],[134873096,672268288,13247603826875223,13247605061713792],[134873096,805830664,-22544604485915178,-22544603251852693],[134873096,805961728,22544603251852693,22544604485915178],[134873096,939524104,22544603251852693,22544604485915178],[134873096,939655168,-22544604485915178,-22544603251852693],[134873096,35184641048584,-1975303167312100,-1975301852392980],[134873096,35184641179648,1975301852392980,1975303167312100],[134873096,35184774742024,1975301852392980,1975303167312100],[134873096,35184774873088,-1975303167312100,-1975301852392980],[134873096,70368745750536,13247603811716528,13247605076872486],[134873096,70368745881600,-13247605076872486,-13247603811716528],[134873096,70368879443976,-13247605076872486,-13247603811716528],[134873096,70368879575040,13247603811716528,13247605076872486],[134873096,70369013137416,-22544604497985104,-22544603239782766],[134873096,70369013268480,22544603239782766,22544604497985104],[134873096,70369146830856,22544603239782766,22544604497985104],[134873096,70369146961920,-22544604497985104,-22544603239782766],[134873152,1048704,1975301885638544,1975303134066536],[134873152,1179840,-24519907464403207,-24519905293069738],[134873152,1573056,26495207799425147,26495209977752878],[134873152,135397504,26495207799425147,26495209977752878],[134873152,135790720,-24519907464403207,-24519905293069738],[134873152,135921856,1975301885638544,1975303134066536],[134873152,268435584,-13247605096148654,-13247603792440361],[134873152,268566720,-6623803358085955,-6623801086208550],[134873152,268959936,-6623803337001160,-6623801107293350],[134873152,402784384,-6623803337001160,-6623801107293350],[134873152,403177600,-6623803358085955,-6623801086208550],[134873152,403308736,-13247605096148654,-13247603792440361],[134873216,0,-14643395680256320,-14643391978691236],[134873216,131200,-19871412418198236,-19871400914685277],[134873216,524416,1277404472099680,1277411162426122],[134873216,655360,3950601681274309,3950608358135846],[134873216,1048584,-49039815227304660,-49039810287641238],[134873216,1048640,-1975303134066536,-1975301885638544],[134873216,1049600,-1975303102468593,-1975301917236486],[134873216,1081344,-1975303102434961,-1975301917270118],[134873216,1179784,3950601587495984,3950608451914177],[134873216,1179840,24519905293069738,24519907464403207],[134873216,1180800,11272298183630328,11272305685253609],[134873216,1212544,24519905365967204,24519907391505747],[134873216,1573000,-26495209977993164,-26495207799184865],[134873216,1573056,-26495209977752878,-26495207799425147],[134873216,1574016,-26495212182615048,-26495205594562984],[134873216,1703944,-26495209992202640,-26495207784975390],[134873216,1704960,13247603822461068,13247605066127948],[134873216,1736704,-26495209915574692,-26495207861603338],[134873216,3276928,-26495209971802464,-26495207805375563],[134873216,3670144,13247603826875223,13247605061713792],[134873216,3801088,13247603827702546,13247605060886466],[134873216,68157440,-22544604489700504,-22544603248067364],[134873216,68288640,3950603932147814,3950606107262344],[134873216,68812800,-26495209977773508,-26495207799404518],[134873216,134217856,3950601681274309,3950608358135846],[134873216,134348800,1277404472099680,1277411162426122],[134873216,134742016,-19871412418198236,-19871400914685277],[134873216,134873216,-14643395680256320,-14643391978691236],[134873216,135266440,-26495209992202640,-26495207784975390],[134873216,135267456,13247603822461068,13247605066127948],[134873216,135299200,-26495209915574692,-26495207861603338],[134873216,135397384,-26495209977993164,-26495207799184865],[134873216,135397440,-26495209977752878,-26495207799425147],[134873216,135398400,-26495212182615048,-26495205594562984],[134873216,135790600,3950601587495984,3950608451914177],[134873216,135790656,24519905293069738,24519907464403207],[134873216,135791616,11272298183630328,11272305685253609],[134873216,135823360,24519905365967204,24519907391505747],[134873216,135921800,-49039815227304660,-49039810287641238],[134873216,135921856,-1975303134066536,-1975301885638544],[134873216,135922816,-1975303102468593,-1975301917236486],[134873216,135954560,-1975303102434961,-1975301917270118],[134873216,137363584,13247603827702546,13247605060886466],[134873216,137494528,13247603826875223,13247605061713792],[134873216,137887744,-26495209971802464,-26495207805375563],[134873216,202375296,-26495209977773508,-26495207799404518],[134873216,202899456,3950603932147814,3950606107262344],[134873216,203030656,-22544604489700504,-22544603248067364],[134873216,268435464,22544601267974862,22544606469793008],[134873216,268435520,13247603792440361,13247605096148654],[134873216,268436480,13247603822433492,13247605066155522],[134873216,268468224,-4648500337588616,-4648499087000812],[134873216,268566664,-8599108332258679,-8599101131740910],[134873216,268566720,6623801086208550,6623803358085955],[134873216,268567680,6623801159997192,6623803284297315],[134873216,268599424,-11272302995044411,-11272300873839524],[134873216,268959880,6623801098016986,6623803346277523],[134873216,268959936,6623801107293350,6623803337001160],[134873216,268960896,6623801159997192,6623803284297315],[134873216,269090824,24519905244697076,24519907512775874],[134873216,269123584,6623801159963560,6623803284330947],[134873216,269484032,15920800086388708,15920803207084654],[134873216,269615232,-3950609226781738,-3950600812628424],[134873216,270008448,11272298892173522,11272304976710416],[134873216,270139392,8599101696810952,8599107767188634],[134873216,335544320,-1975303161793801,-1975301857911278],[134873216,335675520,-42416014569192714,-42416006501458678],[134873216,336068736,-4648500367937249,-4648499056652180],[134873216,336199680,45089204212760992,45089211262774750],[134873216,402653320,24519905244697076,24519907512775874],[134873216,402686080,6623801159963560,6623803284330947],[134873216,402784264,6623801098016986,6623803346277523],[134873216,402784320,6623801107293350,6623803337001160],[134873216,402785280,6623801159997192,6623803284297315],[134873216,403177480,-8599108332258679,-8599101131740910],[134873216,403177536,6623801086208550,6623803358085955],[134873216,403178496,6623801159997192,6623803284297315],[134873216,403210240,-11272302995044411,-11272300873839524],[134873216,403308680,22544601267974862,22544606469793008],[134873216,403308736,13247603792440361,13247605096148654],[134873216,403309696,13247603822433492,13247605066155522],[134873216,403341440,-4648500337588616,-4648499087000812],[134873216,403701888,8599101696810952,8599107767188634],[134873216,403832832,11272298892173522,11272304976710416],[134873216,404226048,-3950609226781738,-3950600812628424],[134873216,404357248,15920800086388708,15920803207084654],[134873216,469762176,45089204212760992,45089211262774750],[134873216,469893120,-4648500367937249,-4648499056652180],[134873216,470286336,-42416014569192714,-42416006501458678],[134873216,470417536,-1975303161793801,-1975301857911278],[134873216,538050688,-26495209977993164,-26495207799184865],[134873216,538443904,13247603821511848,13247605067077166],[134873216,538574848,13247603826875223,13247605061713792],[134873216,672137344,13247603826875223,13247605061713792],[134873216,672268288,13247603821511848,13247605067077166],[134873216,672661504,-26495209977993164,-26495207799184865],[134873216,805437568,24519905292829457,24519907464643494],[134873216,805830784,-1975303134066536,-1975301885638544],[134873216,805961728,-22544604485915178,-22544603251852693],[134873216,939524224,-22544604485915178,-22544603251852693],[134873216,939655168,-1975303134066536,-1975301885638544],[134873216,940048384,24519905292829457,24519907464643494],[134873216,35184640655488,-11272303079253853,-11272300789630083],[134873216,35184641048704,13247603788555150,13247605100033866],[134873216,35184641179648,-1975303167312100,-1975301852392980],[134873216,35184774742144,-1975303167312100,-1975301852392980],[134873216,35184774873088,13247603788555150,13247605100033866],[134873216,35184775266304,-11272303079253853,-11272300789630083],[134873216,70368745357440,-26495209992202640,-26495207784975390],[134873216,70368745750656,13247603822461068,13247605066127948],[134873216,70368745881600,13247603811716528,13247605076872486],[134873216,70368879444096,13247603811716528,13247605076872486],[134873216,70368879575040,13247603822461068,13247605066127948],[134873216,70368879968256,-26495209992202640,-26495207784975390],[134873216,70369012744320,24519905280236082,24519907477236870],[134873216,70369013137536,-1975303134589986,-1975301885115096],[134873216,70369013268480,-22544604497985104,-22544603239782766],[134873216,70369146830976,-22544604497985104,-22544603239782766],[134873216,70369146961920,-1975303134589986,-1975301885115096],[134873216,70369147355136,24519905280236082,24519907477236870],[134873344,1180928,26495207799425147,26495209977752878],[134873344,1574144,-26495209977752878,-26495207799425147],[134873344,135398400,-26495209977752878,-26495207799425147],[134873344,135791616,26495207799425147,26495209977752878],[134874112,0,-7901210969997192,-7901209108823124],[134874112,132096,-1975305295212454,-1975299724492630],[134874112,525312,-1975305295246081,-1975299724458993],[134874112,655360,-3950605484998596,-3950604554411562],[134874112,1048584,26495207784975390,26495209992202640],[134874112,1048704,-24519908074966154,-24519904682506797],[134874112,1081344,26495207861603338,26495209915574692],[134874112,1180800,-51015117307046807,-51015113227604174],[134874112,1180928,-26495209977752878,-26495207799425147],[134874112,1182720,-26495209977993164,-26495207799184865],[134874112,1574016,52990415723206676,52990419831149384],[134874112,1574144,26495207799425147,26495209977752878],[134874112,1575936,26495207799184865,26495209977993164],[134874112,1703944,26495207784975390,26495209992202640],[134874112,1704064,-26495209992202640,-26495207784975390],[134874112,1736704,26495207861603338,26495209915574692],[134874112,3277824,-923386045,923386045],[134874112,3671040,-923386045,923386045],[134874112,68157440,26495207799404518,26495209977773508],[134874112,68812800,26495207799404518,26495209977773508],[134874112,134218752,-3950605484998596,-3950604554411562],[134874112,134348800,-1975305295246081,-1975299724458993],[134874112,134742016,-1975305295212454,-1975299724492630],[134874112,134874112,-7901210969997192,-7901209108823124],[134874112,135267336,26495207784975390,26495209992202640],[134874112,135267456,-26495209992202640,-26495207784975390],[134874112,135300096,26495207861603338,26495209915574692],[134874112,135397504,52990415723206676,52990419831149384],[134874112,135397632,26495207799425147,26495209977752878],[134874112,135399424,26495207799184865,26495209977993164],[134874112,135790720,-51015117307046807,-51015113227604174],[134874112,135790848,-26495209977752878,-26495207799425147],[134874112,135792640,-26495209977993164,-26495207799184865],[134874112,135922696,26495207784975390,26495209992202640],[134874112,135922816,-24519908074966154,-24519904682506797],[134874112,135955456,26495207861603338,26495209915574692],[134874112,137494528,-923386045,923386045],[134874112,137887744,-923386045,923386045],[134874112,202376192,26495207799404518,26495209977773508],[134874112,203031552,26495207799404518,26495209977773508],[134874112,268435584,-13247605066155522,-13247603822433492],[134874112,268567680,-6623803284297315,-6623801159997192],[134874112,268960896,-6623803284297315,-6623801159997192],[134874112,269484032,-24519908060537022,-24519904696935925],[134874112,269616128,52990415723206676,52990419831149384],[134874112,270009344,-51015117307046807,-51015113227604174],[134874112,270139392,-26495209977773508,-26495207799404518],[134874112,402784384,-6623803284297315,-6623801159997192],[134874112,403177600,-6623803284297315,-6623801159997192],[134874112,403309696,-13247605066155522,-13247603822433492],[134874112,403702784,-26495209977773508,-26495207799404518],[134874112,403832832,-51015117307046807,-51015113227604174],[134874112,404226048,52990415723206676,52990419831149384],[134874112,404358144,-24519908060537022,-24519904696935925],[134874112,538051584,26495207799184865,26495209977993164],[134874112,538444800,-26495209977993164,-26495207799184865],[134874112,672268288,-26495209977993164,-26495207799184865],[134874112,672661504,26495207799184865,26495209977993164],[134874112,70368745358336,26495207784975390,26495209992202640],[134874112,70368745751552,-26495209992202640,-26495207784975390],[134874112,70368879575040,-26495209992202640,-26495207784975390],[134874112,70368879968256,26495207784975390,26495209992202640],[134875136,1182720,26495207799184865,26495209977993164],[134875136,1575936,-26495209977993164,-26495207799184865],[134875136,3278848,26495207805375563,26495209971802464],[134875136,3672064,-26495209971802464,-26495207805375563],[134875136,135398400,-26495209977993164,-26495207799184865],[134875136,135791616,26495207799184865,26495209977993164],[134875136,137494528,-26495209971802464,-26495207805375563],[134875136,137887744,26495207805375563,26495209971802464],[134905856,1048580,22544603307191776,22544604430576096],[134905856,1048584,-22544604430576096,-22544603307191776],[134905856,1212420,22544603307191776,22544604430576096],[134905856,1212424,-22544604430576096,-22544603307191776],[134905856,1605760,-26495209915574692,-26495207861603338],[134905856,1606656,13247603855419588,13247605033169427],[134905856,1704064,26495207861603338,26495209915574692],[134905856,1704960,-13247605033169427,-13247603855419588],[134905856,135299200,26495207861603338,26495209915574692],[134905856,135300096,-13247605033169427,-13247603855419588],[134905856,135397504,-26495209915574692,-26495207861603338],[134905856,135398400,13247603855419588,13247605033169427],[134905856,135790596,22544603307191776,22544604430576096],[134905856,135790600,-22544604430576096,-22544603307191776],[134905856,135954436,22544603307191776,22544604430576096],[134905856,135954440,-22544604430576096,-22544603307191776],[134905856,268435460,1975301917236486,1975303102468593],[134905856,268435464,-1975303102468593,-1975301917236486],[134905856,268599300,1975301917236486,1975303102468593],[134905856,268599304,-1975303102468593,-1975301917236486],[134905856,268992640,6623801159963560,6623803284330947],[134905856,269090944,-6623803284330947,-6623801159963560],[134905856,402686080,-6623803284330947,-6623801159963560],[134905856,402784384,6623801159963560,6623803284330947],[134905856,403177476,1975301917236486,1975303102468593],[134905856,403177480,-1975303102468593,-1975301917236486],[134905856,403341316,1975301917236486,1975303102468593],[134905856,403341320,-1975303102468593,-1975301917236486],[135266304,131200,-3950605484998596,-3950604554411562],[135266304,132096,17198207785357210,17198211142641961],[135266304,67109888,-13247606122970514,-13247602765618499],[135266304,135397504,-3950605484998596,-3950604554411562],[135266304,135398400,17198207785357210,17198211142641961],[135266304,202376192,-13247606122970514,-13247602765618499],[135266304,269090944,8599103952831266,8599105511168320],[135266304,269091840,-1975303102468593,-1975301917236486],[135266304,336068736,-4648500337554984,-4648499087034444],[135266304,336069632,-1975303102434961,-1975301917270118],[135266304,404357248,8599103952831266,8599105511168320],[135266304,404358144,-1975303102468593,-1975301917236486],[135266304,471335040,-4648500337554984,-4648499087034444],[135266304,471335936,-1975303102434961,-1975301917270118],[135266440,1048584,-3950609227302328,-3950600812107830],[135266440,1048704,3950600812107830,3950609227302328],[135266440,1703944,-26495209992202640,-26495207784975390],[135266440,1704064,26495207784975390,26495209992202640],[135266440,134217736,3950600812107830,3950609227302328],[135266440,134217856,-3950609227302328,-3950600812107830],[135266440,134873096,26495207784975390,26495209992202640],[135266440,134873216,-26495209992202640,-26495207784975390],[135266440,270008328,6623801159997192,6623803284297315],[135266440,270008448,-6623803284297315,-6623801159997192],[135266440,403177480,-6623803284297315,-6623801159997192],[135266440,403177600,6623801159997192,6623803284297315],[135266568,1049736,24519905289421414,24519907468051532],[135266568,1049984,-24519907468051532,-24519905289421414],[135266568,134218888,-24519907468051532,-24519905289421414],[135266568,134219136,24519905289421414,24519907468051532],[135266688,1049736,-24519907468051532,-24519905289421414],[135266688,1049864,24519905289421414,24519907468051532],[135266688,134218888,24519905289421414,24519907468051532],[135266688,134219016,-24519907468051532,-24519905289421414],[135267330,1048714,-13247605066971786,-13247603821617226],[135267330,1048770,-13247605061578886,-13247603827010127],[135267330,1048898,1975301891852867,1975303127852212],[135267330,1049736,13247603821617226,13247605066971786],[135267330,1049792,13247603827010127,13247605061578886],[135267330,1049920,-1975303127852212,-1975301891852867],[135267330,134217866,13247603821617226,13247605066971786],[135267330,134217922,13247603827010127,13247605061578886],[135267330,134218050,-1975303127852212,-1975301891852867],[135267330,134218888,-13247605066971786,-13247603821617226],[135267330,134218944,-13247605061578886,-13247603827010127],[135267330,134219072,1975301891852867,1975303127852212],[135267332,1048716,-13247605033169427,-13247603855419588],[135267332,1049736,13247603855419588,13247605033169427],[135267332,134217868,13247603855419588,13247605033169427],[135267332,134218888,-13247605033169427,-13247603855419588],[135267336,524416,-1975303102434961,-1975301917270118],[135267336,525448,-15222908168562909,-15222905739731186],[135267336,656392,-13247605076872486,-13247603811716528],[135267336,1048584,13247602765652131,13247606122936882],[135267336,1048714,13247603821617226,13247605066971786],[135267336,1048716,13247603855419588,13247605033169427],[135267336,1048776,13247603827010127,13247605061578886],[135267336,1048968,-26495209977752878,-26495207799425147],[135267336,1049600,-13247606122936882,-13247602765652131],[135267336,1049730,-13247605066971786,-13247603821617226],[135267336,1049732,-13247605033169427,-13247603855419588],[135267336,1049792,-13247605061578886,-13247603827010127],[135267336,1049984,26495207799425147,26495209977752878],[135267336,1050760,-26495209978356470,-26495207798821558],[135267336,1051776,26495207798821558,26495209978356470],[135267336,1179784,13247603822461068,13247605066127948],[135267336,1180800,-13247605066127948,-13247603822461068],[135267336,1573000,39742811621793198,39742815043973846],[135267336,1574016,-26495210128643692,-26495207648534336],[135267336,1703944,26495207784975390,26495209992202640],[135267336,1704960,-13247605066127948,-13247603822461068],[135267336,2097280,-1975303134066535,-1975301885638543],[135267336,2098312,-1975303134066535,-1975301885638543],[135267336,134217736,-13247606122936882,-13247602765652131],[135267336,134217866,-13247605066971786,-13247603821617226],[135267336,134217868,-13247605033169427,-13247603855419588],[135267336,134217928,-13247605061578886,-13247603827010127],[135267336,134218120,26495207799425147,26495209977752878],[135267336,134218752,13247602765652131,13247606122936882],[135267336,134218882,13247603821617226,13247605066971786],[135267336,134218884,13247603855419588,13247605033169427],[135267336,134218944,13247603827010127,13247605061578886],[135267336,134219136,-26495209977752878,-26495207799425147],[135267336,134219912,26495207798821558,26495209978356470],[135267336,134220928,-26495209978356470,-26495207798821558],[135267336,134348936,-13247605066127948,-13247603822461068],[135267336,134349952,13247603822461068,13247605066127948],[135267336,134742152,-26495210128643692,-26495207648534336],[135267336,134743168,39742811621793198,39742815043973846],[135267336,134873096,-13247605066127948,-13247603822461068],[135267336,134874112,26495207784975390,26495209992202640],[135267336,135790720,-15222908168562909,-15222905739731186],[135267336,135791752,-1975303102434961,-1975301917270118],[135267336,135921664,-13247605076872486,-13247603811716528],[135267336,137363584,-1975303134066535,-1975301885638543],[135267336,137364616,-1975303134066535,-1975301885638543],[135267336,268435584,1975301917270118,1975303102434961],[135267336,268436616,1975301917270118,1975303102434961],[135267336,403701888,1975301917270118,1975303102434961],[135267336,403702920,1975301917270118,1975303102434961],[135267336,536871040,1975301885638543,1975303134066535],[135267336,536872072,1975301885638543,1975303134066535],[135267336,672137344,1975301885638543,1975303134066535],[135267336,672138376,1975301885638543,1975303134066535],[135267336,70368744177792,22544603251967752,22544604485800118],[135267336,70368744178824,22544603251967752,22544604485800118],[135267336,70368879444096,22544603251967752,22544604485800118],[135267336,70368879445128,22544603251967752,22544604485800118],[135267392,1048770,13247603827010127,13247605061578886],[135267392,1048776,13247603821617226,13247605066971786],[135267392,1048898,-1975303127852212,-1975301891852867],[135267392,1049730,-13247605061578886,-13247603827010127],[135267392,1049736,-13247605066971786,-13247603821617226],[135267392,1049858,1975301891852867,1975303127852212],[135267392,134217922,-13247605061578886,-13247603827010127],[135267392,134217928,-13247605066971786,-13247603821617226],[135267392,134218050,1975301891852867,1975303127852212],[135267392,134218882,13247603827010127,13247605061578886],[135267392,134218888,13247603821617226,13247605066971786],[135267392,134219010,-1975303127852212,-1975301891852867],[135267456,524296,1975301917270118,1975303102434961],[135267456,525448,15222905739731186,15222908168562909],[135267456,656512,13247603811716528,13247605076872486],[135267456,1048776,-26495209977752878,-26495207799425147],[135267456,1048968,26495207799425147,26495209977752878],[135267456,1049672,26495207799425147,26495209977752878],[135267456,1049864,-26495209977752878,-26495207799425147],[135267456,1050760,26495207798821558,26495209978356470],[135267456,1051656,-26495209978356470,-26495207798821558],[135267456,1573000,-52990419959304000,-52990415595052060],[135267456,1573896,39742811621793198,39742815043973846],[135267456,1704064,-26495209992202640,-26495207784975390],[135267456,1704960,13247603822461068,13247605066127948],[135267456,2097160,1975301885638543,1975303134066535],[135267456,2098312,1975301885638543,1975303134066535],[135267456,134217928,26495207799425147,26495209977752878],[135267456,134218120,-26495209977752878,-26495207799425147],[135267456,134218824,-26495209977752878,-26495207799425147],[135267456,134219016,26495207799425147,26495209977752878],[135267456,134219912,-26495209978356470,-26495207798821558],[135267456,134220808,26495207798821558,26495209978356470],[135267456,134742152,39742811621793198,39742815043973846],[135267456,134743048,-52990419959304000,-52990415595052060],[135267456,134873216,13247603822461068,13247605066127948],[135267456,134874112,-26495209992202640,-26495207784975390],[135267456,135790600,15222905739731186,15222908168562909],[135267456,135791752,1975301917270118,1975303102434961],[135267456,135921664,13247603811716528,13247605076872486],[135267456,137363464,1975301885638543,1975303134066535],[135267456,137364616,1975301885638543,1975303134066535],[135267456,268435464,-1975303102434961,-1975301917270118],[135267456,268436616,-1975303102434961,-1975301917270118],[135267456,403701768,-1975303102434961,-1975301917270118],[135267456,403702920,-1975303102434961,-1975301917270118],[135267456,536870920,-1975303134066535,-1975301885638543],[135267456,536872072,-1975303134066535,-1975301885638543],[135267456,672137224,-1975303134066535,-1975301885638543],[135267456,672138376,-1975303134066535,-1975301885638543],[135267456,70368744177672,-22544604485800118,-22544603251967752],[135267456,70368744178824,-22544604485800118,-22544603251967752],[135267456,70368879443976,-22544604485800118,-22544603251967752],[135267456,70368879445128,-22544604485800118,-22544603251967752],[135267466,1048578,-13247605066971786,-13247603821617226],[135267466,1048584,13247603821617226,13247605066971786],[135267466,1049730,-13247605066971786,-13247603821617226],[135267466,1049736,13247603821617226,13247605066971786],[135267466,134217730,13247603821617226,13247605066971786],[135267466,134217736,-13247605066971786,-13247603821617226],[135267466,134218882,13247603821617226,13247605066971786],[135267466,134218888,-13247605066971786,-13247603821617226],[135267468,1048580,-13247605033169427,-13247603855419588],[135267468,1048584,13247603855419588,13247605033169427],[135267468,1049732,-13247605033169427,-13247603855419588],[135267468,1049736,13247603855419588,13247605033169427],[135267468,134217732,13247603855419588,13247605033169427],[135267468,134217736,-13247605033169427,-13247603855419588],[135267468,134218884,13247603855419588,13247605033169427],[135267468,134218888,-13247605033169427,-13247603855419588],[135267522,1048578,-13247605061578886,-13247603827010127],[135267522,1048640,13247603827010127,13247605061578886],[135267522,1049730,-13247605061578886,-13247603827010127],[135267522,1049792,13247603827010127,13247605061578886],[135267522,134217730,13247603827010127,13247605061578886],[135267522,134217792,-13247605061578886,-13247603827010127],[135267522,134218882,13247603827010127,13247605061578886],[135267522,134218944,-13247605061578886,-13247603827010127],[135267528,1048584,13247603827010127,13247605061578886],[135267528,1048640,13247603821617226,13247605066971786],[135267528,1048704,-26495209977752878,-26495207799425147],[135267528,1049672,26495207799425147,26495209977752878],[135267528,1049736,-13247605066971786,-13247603821617226],[135267528,1049792,-13247605061578886,-13247603827010127],[135267528,134217736,-13247605061578886,-13247603827010127],[135267528,134217792,-13247605066971786,-13247603821617226],[135267528,134217856,26495207799425147,26495209977752878],[135267528,134218824,-26495209977752878,-26495207799425147],[135267528,134218888,13247603821617226,13247605066971786],[135267528,134218944,13247603827010127,13247605061578886],[135267650,1048578,1975301891852867,1975303127852212],[135267650,1048640,-1975303127852212,-1975301891852867],[135267650,1049858,1975301891852867,1975303127852212],[135267650,1049920,-1975303127852212,-1975301891852867],[135267650,134217730,-1975303127852212,-1975301891852867],[135267650,134217792,1975301891852867,1975303127852212],[135267650,134219010,-1975303127852212,-1975301891852867],[135267650,134219072,1975301891852867,1975303127852212],[135267720,1048584,-1975303127852212,-1975301891852867],[135267720,1048704,1975301891852867,1975303127852212],[135267720,1049864,-1975303127852212,-1975301891852867],[135267720,1049984,1975301891852867,1975303127852212],[135267720,134217736,1975301891852867,1975303127852212],[135267720,134217856,-1975303127852212,-1975301891852867],[135267720,134219016,1975301891852867,1975303127852212],[135267720,134219136,-1975303127852212,-1975301891852867],[135268360,1049736,24519905292829456,24519907464643493],[135268360,1051776,-24519907464643493,-24519905292829456],[135268360,134218888,-24519907464643493,-24519905292829456],[135268360,134220928,24519905292829456,24519907464643493],[135268480,1049736,-24519907464643493,-24519905292829456],[135268480,1051656,24519905292829456,24519907464643493],[135268480,134218888,24519905292829456,24519907464643493],[135268480,134220808,-24519907464643493,-24519905292829456],[135269512,1048584,-1975303127512530,-1975301892192549],[135269512,1048704,1975301892192549,1975303127512530],[135269512,1051656,-1975303127512530,-1975301892192549],[135269512,1051776,1975301892192549,1975303127512530],[135269512,134217736,1975301892192549,1975303127512530],[135269512,134217856,-1975303127512530,-1975301892192549],[135269512,134220808,1975301892192549,1975303127512530],[135269512,134220928,-1975303127512530,-1975301892192549],[135299200,1704064,26495207861603338,26495209915574692],[135299200,1736704,-26495209915574692,-26495207861603338],[135299200,134873216,-26495209915574692,-26495207861603338],[135299200,134905856,26495207861603338,26495209915574692],[135300096,689152,-13247605033203059,-13247603855385956],[135300096,1704960,-13247605033169427,-13247603855419588],[135300096,1736704,26495207861603338,26495209915574692],[135300096,134874112,26495207861603338,26495209915574692],[135300096,134905856,-13247605033169427,-13247603855419588],[135300096,135921664,-13247605033203059,-13247603855385956],[135397384,1048584,-1975304605835260,-1975300413869816],[135397384,1179648,1975300413869816,1975304605835260],[135397384,1573000,-26495209977993164,-26495207799184865],[135397384,1704064,26495207799184865,26495209977993164],[135397384,134217736,1975300413869816,1975304605835260],[135397384,134348800,-1975304605835260,-1975300413869816],[135397384,134742152,26495207799184865,26495209977993164],[135397384,134873216,-26495209977993164,-26495207799184865],[135397384,270008328,-11272302995044411,-11272300873839524],[135397384,270139392,11272300873839524,11272302995044411],[135397384,403177480,11272300873839524,11272302995044411],[135397384,403308544,-11272302995044411,-11272300873839524],[135397440,1573056,-26495209977752878,-26495207799425147],[135397440,1704064,26495207799425147,26495209977752878],[135397440,134742208,26495207799425147,26495209977752878],[135397440,134873216,-26495209977752878,-26495207799425147],[135397504,0,-7901210969997192,-7901209108823124],[135397504,131200,-3950605484998596,-3950604554411562],[135397504,525312,-24519908074966154,-24519904682506797],[135397504,656512,-26495209992202640,-26495207784975390],[135397504,1048704,-1975305295486367,-1975299724218711],[135397504,1179648,-1975305295452736,-1975299724252344],[135397504,1573000,-2193017775,2193017774],[135397504,1573056,26495207799425147,26495209977752878],[135397504,1574016,52990415723206676,52990419831149384],[135397504,1605760,-26495209915574692,-26495207861603338],[135397504,1703944,-2193017774,2193017775],[135397504,1704000,-26495209977752878,-26495207799425147],[135397504,1704960,-51015117307046807,-51015113227604174],[135397504,1736704,26495207861603338,26495209915574692],[135397504,2621440,-26495209977993164,-26495207799184865],[135397504,2752640,-26495209977993164,-26495207799184865],[135397504,68681856,-26495209977773508,-26495207799404518],[135397504,68812800,26495207799404518,26495209977773508],[135397504,134217856,-1975305295452736,-1975299724252344],[135397504,134348800,-1975305295486367,-1975299724218711],[135397504,134742152,-2193017774,2193017775],[135397504,134742208,-26495209977752878,-26495207799425147],[135397504,134743168,-51015117307046807,-51015113227604174],[135397504,134774912,26495207861603338,26495209915574692],[135397504,134873096,-2193017775,2193017774],[135397504,134873152,26495207799425147,26495209977752878],[135397504,134874112,52990415723206676,52990419831149384],[135397504,134905856,-26495209915574692,-26495207861603338],[135397504,135266304,-3950605484998596,-3950604554411562],[135397504,135397504,-7901210969997192,-7901209108823124],[135397504,135791616,-26495209992202640,-26495207784975390],[135397504,135922816,-24519908074966154,-24519904682506797],[135397504,137887744,-26495209977993164,-26495207799184865],[135397504,138018944,-26495209977993164,-26495207799184865],[135397504,201851008,26495207799404518,26495209977773508],[135397504,201981952,-26495209977773508,-26495207799404518],[135397504,268959744,57638914684799306,57638920294146182],[135397504,269090944,52990415723206676,52990419831149384],[135397504,270008448,11272299945646091,11272303923237845],[135397504,270139392,-6623804212490749,-6623800231803759],[135397504,403177600,-6623804212490749,-6623800231803759],[135397504,403308544,11272299945646091,11272303923237845],[135397504,404226048,52990415723206676,52990419831149384],[135397504,404357248,57638914684799306,57638920294146182],[135397504,537395200,26495207799184865,26495209977993164],[135397504,537526400,26495207799184865,26495209977993164],[135397504,672661504,26495207799184865,26495209977993164],[135397504,672792704,26495207799184865,26495209977993164],[135397504,70368744701952,26495207784975390,26495209992202640],[135397504,70368744833152,26495207784975390,26495209992202640],[135397504,70368879968256,26495207784975390,26495209992202640],[135397504,70368880099456,26495207784975390,26495209992202640],[135397632,525312,1975301891852867,1975303127852212],[135397632,1574144,26495207799425147,26495209977752878],[135397632,1704960,-24519907468051532,-24519905289421414],[135397632,134743296,-24519907468051532,-24519905289421414],[135397632,134874112,26495207799425147,26495209977752878],[135397632,135922944,1975301891852867,1975303127852212],[135398400,0,7901209108823124,7901210969997192],[135398400,132096,17198207785357210,17198211142641961],[135398400,524416,-1975303102468593,-1975301917236486],[135398400,524544,-1975303127852212,-1975301891852867],[135398400,526336,-1975303134066536,-1975301885638544],[135398400,656392,13247603811716528,13247605076872486],[135398400,656512,13247603822461068,13247605066127948],[135398400,689152,13247603855385956,13247605033203059],[135398400,1049600,17198207785323578,17198211142675593],[135398400,1049736,13247603822461068,13247605066127948],[135398400,1179648,-26495211786596702,-26495205990581324],[135398400,1179784,-13247605066127948,-13247603822461068],[135398400,1573896,13247603822461068,13247605066127948],[135398400,1574016,-26495212182615048,-26495205594562984],[135398400,1574144,-26495209977752878,-26495207799425147],[135398400,1575936,-26495209977993164,-26495207799184865],[135398400,1606656,13247603855419588,13247605033169427],[135398400,1703944,-26495209992202640,-26495207784975390],[135398400,1704064,11272298183630328,11272305685253609],[135398400,1704192,24519905289421414,24519907468051532],[135398400,1705984,24519905292829456,24519907464643493],[135398400,1736704,-26495209915574692,-26495207861603338],[135398400,2621440,3950604236655732,3950605802754426],[135398400,2753536,-929670021,929670022],[135398400,3671040,-929670021,929670022],[135398400,3801088,3950603941250842,3950606098159314],[135398400,67765248,13247603826989498,13247605061599516],[135398400,68682752,13247603821617226,13247605066971786],[135398400,68812800,-26495209977773508,-26495207799404518],[135398400,134218752,-26495211786596702,-26495205990581324],[135398400,134218888,-13247605066127948,-13247603822461068],[135398400,134348800,17198207785323578,17198211142675593],[135398400,134348936,13247603822461068,13247605066127948],[135398400,134743048,-26495209992202640,-26495207784975390],[135398400,134743168,11272298183630328,11272305685253609],[135398400,134743296,24519905289421414,24519907468051532],[135398400,134745088,24519905292829456,24519907464643493],[135398400,134775808,-26495209915574692,-26495207861603338],[135398400,134873096,13247603822461068,13247605066127948],[135398400,134873216,-26495212182615048,-26495205594562984],[135398400,134873344,-26495209977752878,-26495207799425147],[135398400,134875136,-26495209977993164,-26495207799184865],[135398400,134905856,13247603855419588,13247605033169427],[135398400,135266304,17198207785357210,17198211142641961],[135398400,135398400,7901209108823124,7901210969997192],[135398400,135790600,13247603811716528,13247605076872486],[135398400,135790720,13247603822461068,13247605066127948],[135398400,135823360,13247603855385956,13247605033203059],[135398400,135922816,-1975303102468593,-1975301917236486],[135398400,135922944,-1975303127852212,-1975301891852867],[135398400,135924736,-1975303134066536,-1975301885638544],[135398400,136840192,3950603941250842,3950606098159314],[135398400,136970240,-929670021,929670022],[135398400,137887744,-929670021,929670022],[135398400,138019840,3950604236655732,3950605802754426],[135398400,201851904,-26495209977773508,-26495207799404518],[135398400,201981952,13247603821617226,13247605066971786],[135398400,202899456,13247603826989498,13247605061599516],[135398400,268959744,-1975303102434961,-1975301917270118],[135398400,269091840,-26495212175470166,-26495205601707868],[135398400,270009344,13247603827010127,13247605061578886],[135398400,270139392,11272298195290642,11272305673593300],[135398400,335676416,13247603826989498,13247605061599516],[135398400,336723968,-13247605061599516,-13247603826989498],[135398400,403178496,11272298195290642,11272305673593300],[135398400,403308544,13247603827010127,13247605061578886],[135398400,404226048,-26495212175470166,-26495205601707868],[135398400,404358144,-1975303102434961,-1975301917270118],[135398400,469763072,-13247605061599516,-13247603826989498],[135398400,470810624,13247603826989498,13247605061599516],[135398400,537395200,-1975303134066535,-1975301885638543],[135398400,537527296,-26495209977993164,-26495207799184865],[135398400,538574848,24519905292829457,24519907464643494],[135398400,671613952,24519905292829457,24519907464643494],[135398400,672661504,-26495209977993164,-26495207799184865],[135398400,672793600,-1975303134066535,-1975301885638543],[135398400,70368744701952,-22544604485800118,-22544603251967752],[135398400,70368744834048,-26495209992202640,-26495207784975390],[135398400,70368745881600,3950603911967182,3950606127442978],[135398400,70368878920704,3950603911967182,3950606127442978],[135398400,70368879968256,-26495209992202640,-26495207784975390],[135398400,70368880100352,-22544604485800118,-22544603251967752],[135398536,1048584,13247603822461068,13247605066127948],[135398536,1049736,13247603822461068,13247605066127948],[135398536,1179648,-13247605066127948,-13247603822461068],[135398536,1180800,-13247605066127948,-13247603822461068],[135398536,134217736,-13247605066127948,-13247603822461068],[135398536,134218888,-13247605066127948,-13247603822461068],[135398536,134348800,13247603822461068,13247605066127948],[135398536,134349952,13247603822461068,13247605066127948],[135399424,525312,1975301885638544,1975303134066536],[135399424,1575936,26495207799184865,26495209977993164],[135399424,1704960,-24519907464643493,-24519905292829456],[135399424,2621440,22544603251852693,22544604485915178],[135399424,3672064,26495207805375563,26495209971802464],[135399424,3801088,-3950606098159314,-3950603941250842],[135399424,134745088,-24519907464643493,-24519905292829456],[135399424,134874112,26495207799184865,26495209977993164],[135399424,135924736,1975301885638544,1975303134066536],[135399424,136841216,-3950606098159314,-3950603941250842],[135399424,136970240,26495207805375563,26495209971802464],[135399424,138020864,22544603251852693,22544604485915178],[135790594,1048714,22544603248067364,22544604489700504],[135790594,1048770,1975301889664154,1975303130040923],[135790594,1179658,1975301885638544,1975303134066536],[135790594,1573000,-22544604489700504,-22544603248067364],[135790594,1573056,-1975303130040923,-1975301889664154],[135790594,1703944,-1975303134066536,-1975301885638544],[135790594,134217866,-22544604489700504,-22544603248067364],[135790594,134217922,-1975303130040923,-1975301889664154],[135790594,134348810,-1975303134066536,-1975301885638544],[135790594,134742152,22544603248067364,22544604489700504],[135790594,134742208,1975301889664154,1975303130040923],[135790594,134873096,1975301885638544,1975303134066536],[135790596,1048716,1975301917270118,1975303102434961],[135790596,1179660,1975301917236486,1975303102468593],[135790596,1212420,22544603307191776,22544604430576096],[135790596,1573000,-1975303102434961,-1975301917270118],[135790596,1703944,-1975303102468593,-1975301917236486],[135790596,1736704,-22544604430576096,-22544603307191776],[135790596,134217868,-1975303102434961,-1975301917270118],[135790596,134348812,-1975303102468593,-1975301917236486],[135790596,134381572,-22544604430576096,-22544603307191776],[135790596,134742152,1975301917270118,1975303102434961],[135790596,134873096,1975301917236486,1975303102468593],[135790596,134905856,22544603307191776,22544604430576096],[135790600,1152,13247603822461068,13247605066127948],[135790600,132096,13247603811716528,13247605076872486],[135790600,525448,15222905739731186,15222908168562909],[135790600,656392,13247603811716528,13247605076872486],[135790600,1048584,-3950608451914177,-3950601587495984],[135790600,1048714,-22544604489700504,-22544603248067364],[135790600,1048716,-1975303102434961,-1975301917270118],[135790600,1048776,-1975303130040923,-1975301889664154],[135790600,1049736,-47064511822048211,-47064508673192612],[135790600,1179658,-1975303134066536,-1975301885638544],[135790600,1179660,-1975303102468593,-1975301917236486],[135790600,1179784,3950601587495984,3950608451914177],[135790600,1212424,-22544604430576096,-22544603307191776],[135790600,1572864,3950601587495984,3950608451914177],[135790600,1572994,22544603248067364,22544604489700504],[135790600,1572996,1975301917270118,1975303102434961],[135790600,1573056,1975301889664154,1975303130040923],[135790600,1574016,45089206614383552,45089208861152192],[135790600,1703938,1975301885638544,1975303134066536],[135790600,1703940,1975301917236486,1975303102468593],[135790600,1704064,-3950608451914177,-3950601587495984],[135790600,1736704,22544603307191776,22544604430576096],[135790600,2097280,13247603821511848,13247605067077166],[135790600,2228224,13247603826875223,13247605061713792],[135790600,2621576,13247603821511848,13247605067077166],[135790600,2752520,13247603826875223,13247605061713792],[135790600,68288520,-1975303130061553,-1975301889643525],[135790600,68812800,1975301889643525,1975303130061553],[135790600,134217736,3950601587495984,3950608451914177],[135790600,134217866,22544603248067364,22544604489700504],[135790600,134217868,1975301917270118,1975303102434961],[135790600,134217928,1975301889664154,1975303130040923],[135790600,134218888,45089206614383552,45089208861152192],[135790600,134348810,1975301885638544,1975303134066536],[135790600,134348812,1975301917236486,1975303102468593],[135790600,134348936,-3950608451914177,-3950601587495984],[135790600,134381576,22544603307191776,22544604430576096],[135790600,134742016,-3950608451914177,-3950601587495984],[135790600,134742146,-22544604489700504,-22544603248067364],[135790600,134742148,-1975303102434961,-1975301917270118],[135790600,134742208,-1975303130040923,-1975301889664154],[135790600,134743168,-47064511822048211,-47064508673192612],[135790600,134873090,-1975303134066536,-1975301885638544],[135790600,134873092,-1975303102468593,-1975301917236486],[135790600,134873216,3950601587495984,3950608451914177],[135790600,134905856,-22544604430576096,-22544603307191776],[135790600,135267456,15222905739731186,15222908168562909],[135790600,135398400,13247603811716528,13247605076872486],[135790600,135791752,13247603822461068,13247605066127948],[135790600,135922696,13247603811716528,13247605076872486],[135790600,137363584,13247603821511848,13247605067077166],[135790600,137494528,13247603826875223,13247605061713792],[135790600,137887880,13247603821511848,13247605067077166],[135790600,138018824,13247603826875223,13247605061713792],[135790600,201457672,1975301889643525,1975303130061553],[135790600,201981952,-1975303130061553,-1975301889643525],[135790600,268435584,-26495210066338854,-26495207710839176],[135790600,268566528,-26495210066406118,-26495207710771912],[135790600,268959880,-19871408304471303,-19871405028412220],[135790600,269090824,-37767512457661269,-37767509188400696],[135790600,269484168,17896102008772423,17896106304406015],[135790600,269615112,15222904805987338,15222909102306755],[135790600,270008448,-24519907464403207,-24519905293069738],[135790600,270139392,-3950606107262344,-3950603932147814],[135790600,402653320,-24519907464403207,-24519905293069738],[135790600,402784264,-3950606107262344,-3950603932147814],[135790600,403177600,17896102008772423,17896106304406015],[135790600,403308544,15222904805987338,15222909102306755],[135790600,403701888,-19871408304471303,-19871405028412220],[135790600,403832832,-37767512457661269,-37767509188400696],[135790600,404226184,-26495210066338854,-26495207710839176],[135790600,404357128,-26495210066406118,-26495207710771912],[135790600,536871040,-13247605067077166,-13247603821511848],[135790600,537001984,-13247605061713792,-13247603826875223],[135790600,537395336,-13247605067077166,-13247603821511848],[135790600,537526280,-13247605061713792,-13247603826875223],[135790600,672137344,-13247605067077166,-13247603821511848],[135790600,672268288,-13247605061713792,-13247603826875223],[135790600,672661640,-13247605067077166,-13247603821511848],[135790600,672792584,-13247605061713792,-13247603826875223],[135790600,70368744177792,-13247605066127948,-13247603822461068],[135790600,70368744308736,-13247605076872486,-13247603811716528],[135790600,70368744702088,-13247605066127948,-13247603822461068],[135790600,70368744833032,-13247605076872486,-13247603811716528],[135790600,70368879444096,-13247605066127948,-13247603822461068],[135790600,70368879575040,-13247605076872486,-13247603811716528],[135790600,70368879968392,-13247605066127948,-13247603822461068],[135790600,70368880099336,-13247605076872486,-13247603811716528],[135790656,1048770,-1975303130040923,-1975301889664154],[135790656,1048776,-22544604489700504,-22544603248067364],[135790656,1179840,24519905293069738,24519907464403207],[135790656,1572994,1975301889664154,1975303130040923],[135790656,1573000,22544603248067364,22544604489700504],[135790656,1704064,-24519907464403207,-24519905293069738],[135790656,134217922,1975301889664154,1975303130040923],[135790656,134217928,22544603248067364,22544604489700504],[135790656,134348992,-24519907464403207,-24519905293069738],[135790656,134742146,-1975303130040923,-1975301889664154],[135790656,134742152,-22544604489700504,-22544603248067364],[135790656,134873216,24519905293069738,24519907464403207],[135790720,1032,-13247605066127948,-13247603822461068],[135790720,132096,11272300719992475,11272303148891462],[135790720,525448,-15222908168562909,-15222905739731186],[135790720,656512,13247603822461068,13247605066127948],[135790720,1048776,24519905293069738,24519907464403207],[135790720,1049736,49039810732001672,49039814782944230],[135790720,1179784,-22544605576438951,-22544602161328920],[135790720,1179840,-24519907464403207,-24519905293069738],[135790720,1180800,-51015117307046807,-51015113227604174],[135790720,1572936,-24519907464403207,-24519905293069738],[135790720,1573896,-47064511822048211,-47064508673192612],[135790720,1703944,22544602161328920,22544605576438951],[135790720,1704000,24519905293069738,24519907464403207],[135790720,1704960,49039810732001672,49039814782944230],[135790720,2097160,-13247605067077166,-13247603821511848],[135790720,2228224,13247603821511848,13247605067077166],[135790720,2621576,-13247605067077166,-13247603821511848],[135790720,2752640,13247603821511848,13247605067077166],[135790720,134217928,-24519907464403207,-24519905293069738],[135790720,134218888,-47064511822048211,-47064508673192612],[135790720,134348936,22544602161328920,22544605576438951],[135790720,134348992,24519905293069738,24519907464403207],[135790720,134349952,49039810732001672,49039814782944230],[135790720,134742088,24519905293069738,24519907464403207],[135790720,134743048,49039810732001672,49039814782944230],[135790720,134873096,-22544605576438951,-22544602161328920],[135790720,134873152,-24519907464403207,-24519905293069738],[135790720,134874112,-51015117307046807,-51015113227604174],[135790720,135267336,-15222908168562909,-15222905739731186],[135790720,135398400,13247603822461068,13247605066127948],[135790720,135791752,-13247605066127948,-13247603822461068],[135790720,135922816,11272300719992475,11272303148891462],[135790720,137363464,-13247605067077166,-13247603821511848],[135790720,137494528,13247603821511848,13247605067077166],[135790720,137887880,-13247605067077166,-13247603821511848],[135790720,138018944,13247603821511848,13247605067077166],[135790720,268435464,26495207710839176,26495210066338854],[135790720,268566528,-24519907697996171,-24519905059476780],[135790720,268959880,19871405028412220,19871408304471303],[135790720,269090944,-13247605939232943,-13247602949356073],[135790720,269484168,-17896106304406015,-17896102008772423],[135790720,269615232,13247602298025327,13247606590563683],[135790720,270008328,24519905293069738,24519907464403207],[135790720,270139392,-24519908340000795,-24519904417472150],[135790720,336068736,-4648500337554984,-4648499087034444],[135790720,336593024,6623801159963560,6623803284330947],[135790720,337117184,-1975303102434961,-1975301917270118],[135790720,402653320,24519905293069738,24519907464403207],[135790720,402784384,-24519908340000795,-24519904417472150],[135790720,403177480,-17896106304406015,-17896102008772423],[135790720,403308544,13247602298025327,13247606590563683],[135790720,403701768,19871405028412220,19871408304471303],[135790720,403832832,-13247605939232943,-13247602949356073],[135790720,404226184,26495207710839176,26495210066338854],[135790720,404357248,-24519907697996171,-24519905059476780],[135790720,469762176,-1975303102434961,-1975301917270118],[135790720,470286336,6623801159963560,6623803284330947],[135790720,470810624,-4648500337554984,-4648499087034444],[135790720,536870920,13247603821511848,13247605067077166],[135790720,537001984,-13247605067077166,-13247603821511848],[135790720,537395336,13247603821511848,13247605067077166],[135790720,537526400,-13247605067077166,-13247603821511848],[135790720,672137224,13247603821511848,13247605067077166],[135790720,672268288,-13247605067077166,-13247603821511848],[135790720,672661640,13247603821511848,13247605067077166],[135790720,672792704,-13247605067077166,-13247603821511848],[135790720,70368744177672,13247603822461068,13247605066127948],[135790720,70368744308736,-13247605066127948,-13247603822461068],[135790720,70368744702088,13247603822461068,13247605066127948],[135790720,70368744833152,-13247605066127948,-13247603822461068],[135790720,70368879443976,13247603822461068,13247605066127948],[135790720,70368879575040,-13247605066127948,-13247603822461068],[135790720,70368879968392,13247603822461068,13247605066127948],[135790720,70368880099456,-13247605066127948,-13247603822461068],[135790730,1048578,22544603248067364,22544604489700504],[135790730,1048584,-22544604489700504,-22544603248067364],[135790730,1572994,22544603248067364,22544604489700504],[135790730,1573000,-22544604489700504,-22544603248067364],[135790730,134217730,-22544604489700504,-22544603248067364],[135790730,134217736,22544603248067364,22544604489700504],[135790730,134742146,-22544604489700504,-22544603248067364],[135790730,134742152,22544603248067364,22544604489700504],[135790732,1048580,1975301917270118,1975303102434961],[135790732,1048584,-1975303102434961,-1975301917270118],[135790732,1572996,1975301917270118,1975303102434961],[135790732,1573000,-1975303102434961,-1975301917270118],[135790732,134217732,-1975303102434961,-1975301917270118],[135790732,134217736,1975301917270118,1975303102434961],[135790732,134742148,-1975303102434961,-1975301917270118],[135790732,134742152,1975301917270118,1975303102434961],[135790786,1048578,1975301889664154,1975303130040923],[135790786,1048640,-1975303130040923,-1975301889664154],[135790786,1572994,1975301889664154,1975303130040923],[135790786,1573056,-1975303130040923,-1975301889664154],[135790786,134217730,-1975303130040923,-1975301889664154],[135790786,134217792,1975301889664154,1975303130040923],[135790786,134742146,-1975303130040923,-1975301889664154],[135790786,134742208,1975301889664154,1975303130040923],[135790792,1048584,-1975303130040923,-1975301889664154],[135790792,1048640,-22544604489700504,-22544603248067364],[135790792,1048704,24519905293069738,24519907464403207],[135790792,1572936,-24519907464403207,-24519905293069738],[135790792,1573000,22544603248067364,22544604489700504],[135790792,1573056,1975301889664154,1975303130040923],[135790792,134217736,1975301889664154,1975303130040923],[135790792,134217792,22544603248067364,22544604489700504],[135790792,134217856,-24519907464403207,-24519905293069738],[135790792,134742088,24519905293069738,24519907464403207],[135790792,134742152,-22544604489700504,-22544603248067364],[135790792,134742208,-1975303130040923,-1975301889664154],[135790848,132096,-1975303127852212,-1975301891852867],[135790848,1180928,-26495209977752878,-26495207799425147],[135790848,1704960,24519905289421414,24519907468051532],[135790848,134350080,24519905289421414,24519907468051532],[135790848,134874112,-26495209977752878,-26495207799425147],[135790848,135922944,-1975303127852212,-1975301891852867],[135791616,131200,1975301917236486,1975303102468593],[135791616,131328,1975301891852867,1975303127852212],[135791616,133120,1975301885638544,1975303134066536],[135791616,656512,-26495209992202640,-26495207784975390],[135791616,1049736,-15222908168562909,-15222905739731186],[135791616,1180800,11272298183630328,11272305685253609],[135791616,1180928,26495207799425147,26495209977752878],[135791616,1182720,26495207799184865,26495209977993164],[135791616,1573000,15222905739731186,15222908168562909],[135791616,1704064,17198204925419946,17198214002579226],[135791616,1704192,-24519907468051532,-24519905289421414],[135791616,1705984,-24519907464643493,-24519905292829456],[135791616,2228224,-3950605802754426,-3950604236655732],[135791616,2753536,-929670022,929670021],[135791616,3277824,-929670022,929670021],[135791616,3801088,-3950606098159314,-3950603941250842],[135791616,134218888,15222905739731186,15222908168562909],[135791616,134349952,17198204925419946,17198214002579226],[135791616,134350080,-24519907468051532,-24519905289421414],[135791616,134351872,-24519907464643493,-24519905292829456],[135791616,134742152,-15222908168562909,-15222905739731186],[135791616,134873216,11272298183630328,11272305685253609],[135791616,134873344,26495207799425147,26495209977752878],[135791616,134875136,26495207799184865,26495209977993164],[135791616,135397504,-26495209992202640,-26495207784975390],[135791616,135922816,1975301917236486,1975303102468593],[135791616,135922944,1975301891852867,1975303127852212],[135791616,135924736,1975301885638544,1975303134066536],[135791616,136446976,-3950606098159314,-3950603941250842],[135791616,136970240,-929670022,929670021],[135791616,137494528,-929670022,929670021],[135791616,138019840,-3950605802754426,-3950604236655732],[135791616,268566528,1975301917270118,1975303102434961],[135791616,269091840,11272298195303644,11272305673580297],[135791616,269616128,-26495209977752878,-26495207799425147],[135791616,270139392,17198204951509383,17198213976489780],[135791616,336069632,-15222908164034477,-15222905744259616],[135791616,337117184,15222905744259616,15222908164034477],[135791616,402785280,17198204951509383,17198213976489780],[135791616,403308544,-26495209977752878,-26495207799425147],[135791616,403832832,11272298195303644,11272305673580297],[135791616,404358144,1975301917270118,1975303102434961],[135791616,469763072,15222905744259616,15222908164034477],[135791616,470810624,-15222908164034477,-15222905744259616],[135791616,537001984,1975301885638543,1975303134066535],[135791616,537527296,26495207799184865,26495209977993164],[135791616,538574848,-24519907464643494,-24519905292829457],[135791616,671220736,-24519907464643494,-24519905292829457],[135791616,672268288,26495207799184865,26495209977993164],[135791616,672793600,1975301885638543,1975303134066535],[135791616,70368744308736,22544603251967752,22544604485800118],[135791616,70368744834048,26495207784975390,26495209992202640],[135791616,70368745881600,-3950606127442978,-3950603911967182],[135791616,70368878527488,-3950606127442978,-3950603911967182],[135791616,70368879575040,26495207784975390,26495209992202640],[135791616,70368880100352,22544603251967752,22544604485800118],[135791752,1032,-13247605066127948,-13247603822461068],[135791752,1152,13247603822461068,13247605066127948],[135791752,524296,1975301917270118,1975303102434961],[135791752,524416,-1975303102434961,-1975301917270118],[135791752,1048584,-7321700200255013,-7321693629218766],[135791752,1048704,-3950609227302328,-3950600812107830],[135791752,1049600,-1975303102434961,-1975301917270118],[135791752,1049736,-13247605066127948,-13247603822461068],[135791752,1572864,13247603822461068,13247605066127948],[135791752,1573000,1975301917270118,1975303102434961],[135791752,1573896,-7321700200255013,-7321693629218766],[135791752,1574016,18593996485739860,18594001212617856],[135791752,134217736,18593996485739860,18594001212617856],[135791752,134217856,-7321700200255013,-7321693629218766],[135791752,134218752,1975301917270118,1975303102434961],[135791752,134218888,13247603822461068,13247605066127948],[135791752,134742016,-13247605066127948,-13247603822461068],[135791752,134742152,-1975303102434961,-1975301917270118],[135791752,134743048,-3950609227302328,-3950600812107830],[135791752,134743168,-7321700200255013,-7321693629218766],[135791752,135267336,-1975303102434961,-1975301917270118],[135791752,135267456,1975301917270118,1975303102434961],[135791752,135790600,13247603822461068,13247605066127948],[135791752,135790720,-13247605066127948,-13247603822461068],[135792640,132096,-1975303134066536,-1975301885638544],[135792640,1182720,-26495209977993164,-26495207799184865],[135792640,1704960,24519905292829456,24519907464643493],[135792640,2228224,-22544604485915178,-22544603251852693],[135792640,3278848,-26495209971802464,-26495207805375563],[135792640,3801088,3950603941250842,3950606098159314],[135792640,134351872,24519905292829456,24519907464643493],[135792640,134874112,-26495209977993164,-26495207799184865],[135792640,135924736,-1975303134066536,-1975301885638544],[135792640,136448000,3950603941250842,3950606098159314],[135792640,136970240,-26495209971802464,-26495207805375563],[135792640,138020864,-22544604485915178,-22544603251852693],[135823360,132096,13247603855385956,13247605033203059],[135823360,689152,13247603855385956,13247605033203059],[135823360,1212420,-22544604430576096,-22544603307191776],[135823360,1212424,-1975303102468593,-1975301917236486],[135823360,1212544,24519905365967204,24519907391505747],[135823360,1703940,22544603307191776,22544604430576096],[135823360,1703944,1975301917236486,1975303102468593],[135823360,1704064,-24519907391505747,-24519905365967204],[135823360,134381572,22544603307191776,22544604430576096],[135823360,134381576,1975301917236486,1975303102468593],[135823360,134381696,-24519907391505747,-24519905365967204],[135823360,134873092,-22544604430576096,-22544603307191776],[135823360,134873096,-1975303102468593,-1975301917236486],[135823360,134873216,24519905365967204,24519907391505747],[135823360,135398400,13247603855385956,13247605033203059],[135823360,135955456,13247603855385956,13247605033203059],[135921664,1032,-13247605076872486,-13247603811716528],[135921664,1152,13247603811716528,13247605076872486],[135921664,33792,-13247605033203059,-13247603855385956],[135921664,656392,-13247605076872486,-13247603811716528],[135921664,656512,13247603811716528,13247605076872486],[135921664,689152,-13247605033203059,-13247603855385956],[135921664,1179784,18593997124524774,18594000573832936],[135921664,1212424,24519905365967204,24519907391505747],[135921664,1212544,-24519907391505747,-24519905365967204],[135921664,1573000,-18594000573832936,-18593997124524774],[135921664,1605640,-24519907391505747,-24519905365967204],[135921664,1605760,24519905365967204,24519907391505747],[135921664,2097160,-13247605061713792,-13247603826875223],[135921664,2097280,13247603826875223,13247605061713792],[135921664,2752520,-13247605061713792,-13247603826875223],[135921664,2752640,13247603826875223,13247605061713792],[135921664,3277824,24519905292829457,24519907464643494],[135921664,3671040,-24519907464643494,-24519905292829457],[135921664,67109888,-13247605061599516,-13247603826989498],[135921664,67765248,-13247605061599516,-13247603826989498],[135921664,68288520,3950603932147814,3950606107262344],[135921664,68288640,-3950606107262344,-3950603932147814],[135921664,68681736,-3950606107262344,-3950603932147814],[135921664,68681856,3950603932147814,3950606107262344],[135921664,134348936,-18594000573832936,-18593997124524774],[135921664,134381576,-24519907391505747,-24519905365967204],[135921664,134381696,24519905365967204,24519907391505747],[135921664,134742152,18593997124524774,18594000573832936],[135921664,134774792,24519905365967204,24519907391505747],[135921664,134774912,-24519907391505747,-24519905365967204],[135921664,135267336,-13247605076872486,-13247603811716528],[135921664,135267456,13247603811716528,13247605076872486],[135921664,135300096,-13247605033203059,-13247603855385956],[135921664,135922696,-13247605076872486,-13247603811716528],[135921664,135922816,13247603811716528,13247605076872486],[135921664,135955456,-13247605033203059,-13247603855385956],[135921664,136446976,-24519907464643494,-24519905292829457],[135921664,136840192,24519905292829457,24519907464643494],[135921664,137363464,-13247605061713792,-13247603826875223],[135921664,137363584,13247603826875223,13247605061713792],[135921664,138018824,-13247605061713792,-13247603826875223],[135921664,138018944,13247603826875223,13247605061713792],[135921664,201457672,-3950606107262344,-3950603932147814],[135921664,201457792,3950603932147814,3950606107262344],[135921664,201850888,3950603932147814,3950606107262344],[135921664,201851008,-3950606107262344,-3950603932147814],[135921664,202376192,-13247605061599516,-13247603826989498],[135921664,203031552,-13247605061599516,-13247603826989498],[135921664,268435464,26495207710771912,26495210066406118],[135921664,268435584,-24519907696178166,-24519905061294785],[135921664,268436480,11272300724520905,11272303144363030],[135921664,269090824,37767509188400696,37767512457661269],[135921664,269090944,-31143710097470678,-31143707104296780],[135921664,269091840,13247603826989498,13247605061599516],[135921664,269615112,-15222909102306755,-15222904805987338],[135921664,269615232,10574405092145006,10574409391559659],[135921664,269616128,-51015117307080439,-51015113227570542],[135921664,270008328,3950603932147814,3950606107262344],[135921664,270008448,-3950606982859932,-3950603056550226],[135921664,270009344,49039810731968040,49039814782977862],[135921664,402784264,3950603932147814,3950606107262344],[135921664,402784384,-3950606982859932,-3950603056550226],[135921664,402785280,49039810731968040,49039814782977862],[135921664,403177480,-15222909102306755,-15222904805987338],[135921664,403177600,10574405092145006,10574409391559659],[135921664,403178496,-51015117307080439,-51015113227570542],[135921664,403701768,37767509188400696,37767512457661269],[135921664,403701888,-31143710097470678,-31143707104296780],[135921664,403702784,13247603826989498,13247605061599516],[135921664,404357128,26495207710771912,26495210066406118],[135921664,404357248,-24519907696178166,-24519905061294785],[135921664,404358144,11272300724520905,11272303144363030],[135921664,536870920,13247603826875223,13247605061713792],[135921664,536871040,-13247605061713792,-13247603826875223],[135921664,537526280,13247603826875223,13247605061713792],[135921664,537526400,-13247605061713792,-13247603826875223],[135921664,538051584,-24519907464643494,-24519905292829457],[135921664,538444800,24519905292829457,24519907464643494],[135921664,671220736,24519905292829457,24519907464643494],[135921664,671613952,-24519907464643494,-24519905292829457],[135921664,672137224,13247603826875223,13247605061713792],[135921664,672137344,-13247605061713792,-13247603826875223],[135921664,672792584,13247603826875223,13247605061713792],[135921664,672792704,-13247605061713792,-13247603826875223],[135921664,70368744177672,13247603811716528,13247605076872486],[135921664,70368744177792,-13247605076872486,-13247603811716528],[135921664,70368744833032,13247603811716528,13247605076872486],[135921664,70368744833152,-13247605076872486,-13247603811716528],[135921664,70368745358336,-3950606127442978,-3950603911967182],[135921664,70368745751552,3950603911967182,3950606127442978],[135921664,70368878527488,3950603911967182,3950606127442978],[135921664,70368878920704,-3950606127442978,-3950603911967182],[135921664,70368879443976,13247603811716528,13247605076872486],[135921664,70368879444096,-13247605076872486,-13247603811716528],[135921664,70368880099336,13247603811716528,13247605076872486],[135921664,70368880099456,-13247605076872486,-13247603811716528],[135921674,1048578,1975301885638544,1975303134066536],[135921674,1048584,-1975303134066536,-1975301885638544],[135921674,1703938,1975301885638544,1975303134066536],[135921674,1703944,-1975303134066536,-1975301885638544],[135921674,134217730,-1975303134066536,-1975301885638544],[135921674,134217736,1975301885638544,1975303134066536],[135921674,134873090,-1975303134066536,-1975301885638544],[135921674,134873096,1975301885638544,1975303134066536],[135921676,1048580,1975301917236486,1975303102468593],[135921676,1048584,-1975303102468593,-1975301917236486],[135921676,1703940,1975301917236486,1975303102468593],[135921676,1703944,-1975303102468593,-1975301917236486],[135921676,134217732,-1975303102468593,-1975301917236486],[135921676,134217736,1975301917236486,1975303102468593],[135921676,134873092,-1975303102468593,-1975301917236486],[135921676,134873096,1975301917236486,1975303102468593],[135921800,1048584,-49039815227304660,-49039810287641238],[135921800,1048704,3950603783705734,3950606255704424],[135921800,1179648,45089206503935504,45089208971600236],[135921800,1573000,-45089208971600236,-45089206503935504],[135921800,1703944,-3950606255704424,-3950603783705734],[135921800,1704064,49039810287641238,49039815227304660],[135921800,134217736,49039810287641238,49039815227304660],[135921800,134217856,-3950606255704424,-3950603783705734],[135921800,134348800,-45089208971600236,-45089206503935504],[135921800,134742152,45089206503935504,45089208971600236],[135921800,134873096,3950603783705734,3950606255704424],[135921800,134873216,-49039815227304660,-49039810287641238],[135921856,1048640,-1975303134066536,-1975301885638544],[135921856,1048704,1975301885638544,1975303134066536],[135921856,1704000,-1975303134066536,-1975301885638544],[135921856,1704064,1975301885638544,1975303134066536],[135921856,134217792,1975301885638544,1975303134066536],[135921856,134217856,-1975303134066536,-1975301885638544],[135921856,134873152,1975301885638544,1975303134066536],[135921856,134873216,-1975303134066536,-1975301885638544],[135922696,1032,-13247605076872486,-13247603811716528],[135922696,132096,13247603811716528,13247605076872486],[135922696,1048584,26495207784975390,26495209992202640],[135922696,1179648,-26495209992202640,-26495207784975390],[135922696,1573896,13247603822461068,13247605066127948],[135922696,1704960,-13247605066127948,-13247603822461068],[135922696,134217736,-13247605066127948,-13247603822461068],[135922696,134348800,13247603822461068,13247605066127948],[135922696,134743048,-26495209992202640,-26495207784975390],[135922696,134874112,26495207784975390,26495209992202640],[135922696,135790600,13247603811716528,13247605076872486],[135922696,135921664,-13247605076872486,-13247603811716528],[135922816,1152,13247603811716528,13247605076872486],[135922816,131200,1975301917236486,1975303102468593],[135922816,132096,11272300719992475,11272303148891462],[135922816,524416,-1975303102468593,-1975301917236486],[135922816,525312,-24519908074966154,-24519904682506797],[135922816,1048704,-24519908074966154,-24519904682506797],[135922816,1049600,-1975303102468593,-1975301917236486],[135922816,1179648,-39742815043973846,-39742811621793198],[135922816,1180800,-39742815043973846,-39742811621793198],[135922816,1572864,66238019708364176,66238024734580898],[135922816,1574016,26495207648534336,26495210128643692],[135922816,1704064,1975301917236486,1975303102468593],[135922816,1704960,11272300719992475,11272303148891462],[135922816,134217856,11272300719992475,11272303148891462],[135922816,134218752,1975301917236486,1975303102468593],[135922816,134348800,26495207648534336,26495210128643692],[135922816,134349952,66238019708364176,66238024734580898],[135922816,134742016,-39742815043973846,-39742811621793198],[135922816,134743168,-39742815043973846,-39742811621793198],[135922816,134873216,-1975303102468593,-1975301917236486],[135922816,134874112,-24519908074966154,-24519904682506797],[135922816,135397504,-24519908074966154,-24519904682506797],[135922816,135398400,-1975303102468593,-1975301917236486],[135922816,135790720,11272300719992475,11272303148891462],[135922816,135791616,1975301917236486,1975303102468593],[135922816,135921664,13247603811716528,13247605076872486],[135922944,131328,1975301891852867,1975303127852212],[135922944,132096,-1975303127852212,-1975301891852867],[135922944,524544,-1975303127852212,-1975301891852867],[135922944,525312,1975301891852867,1975303127852212],[135922944,135397632,1975301891852867,1975303127852212],[135922944,135398400,-1975303127852212,-1975301891852867],[135922944,135790848,-1975303127852212,-1975301891852867],[135922944,135791616,1975301891852867,1975303127852212],[135924736,132096,-1975303134066536,-1975301885638544],[135924736,133120,1975301885638544,1975303134066536],[135924736,525312,1975301885638544,1975303134066536],[135924736,526336,-1975303134066536,-1975301885638544],[135924736,135398400,-1975303134066536,-1975301885638544],[135924736,135399424,1975301885638544,1975303134066536],[135924736,135791616,1975301885638544,1975303134066536],[135924736,135792640,-1975303134066536,-1975301885638544],[135954436,1048580,22544603307191776,22544604430576096],[135954436,1081344,-22544604430576096,-22544603307191776],[135954436,1703940,22544603307191776,22544604430576096],[135954436,1736704,-22544604430576096,-22544603307191776],[135954436,134217732,-22544604430576096,-22544603307191776],[135954436,134250496,22544603307191776,22544604430576096],[135954436,134873092,-22544604430576096,-22544603307191776],[135954436,134905856,22544603307191776,22544604430576096],[135954440,1048584,-22544604430576096,-22544603307191776],[135954440,1081344,-1975303102468593,-1975301917236486],[135954440,1179648,24519905365967204,24519907391505747],[135954440,1605640,-24519907391505747,-24519905365967204],[135954440,1703944,1975301917236486,1975303102468593],[135954440,1736704,22544603307191776,22544604430576096],[135954440,134217736,22544603307191776,22544604430576096],[135954440,134250496,1975301917236486,1975303102468593],[135954440,134348800,-24519907391505747,-24519905365967204],[135954440,134774792,24519905365967204,24519907391505747],[135954440,134873096,-1975303102468593,-1975301917236486],[135954440,134905856,-22544604430576096,-22544603307191776],[135954560,1081344,-1975303102434961,-1975301917270118],[135954560,1179648,1975301917270118,1975303102434961],[135954560,1605760,-1975303102434961,-1975301917270118],[135954560,1704064,1975301917270118,1975303102434961],[135954560,134250496,1975301917270118,1975303102434961],[135954560,134348800,-1975303102434961,-1975301917270118],[135954560,134774912,1975301917270118,1975303102434961],[135954560,134873216,-1975303102434961,-1975301917270118],[135955456,33792,-13247605033203059,-13247603855385956],[135955456,132096,13247603855385956,13247605033203059],[135955456,1081344,26495207861603338,26495209915574692],[135955456,1179648,-26495209915574692,-26495207861603338],[135955456,1606656,13247603855419588,13247605033169427],[135955456,1704960,-13247605033169427,-13247603855419588],[135955456,134250496,-13247605033169427,-13247603855419588],[135955456,134348800,13247603855419588,13247605033169427],[135955456,134775808,-26495209915574692,-26495207861603338],[135955456,134874112,26495207861603338,26495209915574692],[135955456,135823360,13247603855385956,13247605033203059],[135955456,135921664,-13247605033203059,-13247603855385956],[136315912,1048704,24519905292829456,24519907464643493],[136315912,1049736,24519905292829456,24519907464643493],[136315912,137363584,24519905292829456,24519907464643493],[136315912,137364616,24519905292829456,24519907464643493],[136316032,1048584,-24519907464643493,-24519905292829456],[136316032,1049736,-24519907464643493,-24519905292829456],[136316032,137363464,-24519907464643493,-24519905292829456],[136316032,137364616,-24519907464643493,-24519905292829456],[136446080,1572864,52990415906156016,52990419648200040],[136446080,1704064,52990415906156016,52990419648200040],[136446080,137887744,52990415906156016,52990419648200040],[136446080,138018944,52990415906156016,52990419648200040],[136446976,1572864,-52990419648200040,-52990415906156016],[136446976,1704960,-24519907464643493,-24519905292829456],[136446976,3671040,-24519907464643494,-24519905292829457],[136446976,3801088,-3950606098159314,-3950603941250842],[136446976,135791616,-3950606098159314,-3950603941250842],[136446976,135921664,-24519907464643494,-24519905292829457],[136446976,137887744,-24519907464643493,-24519905292829456],[136446976,138019840,-52990419648200040,-52990415906156016],[136448000,1705984,-3950606098159314,-3950603941250842],[136448000,3801088,3950603941250842,3950606098159314],[136448000,135792640,3950603941250842,3950606098159314],[136448000,137887744,-3950606098159314,-3950603941250842],[136839176,1048704,-26495209977993164,-26495207799184865],[136839176,1179648,-26495209971802464,-26495207805375563],[136839176,1573000,-26495209977993164,-26495207799184865],[136839176,1703944,-26495209971802464,-26495207805375563],[136839176,137363584,-26495209977993164,-26495207799184865],[136839176,137494528,-26495209971802464,-26495207805375563],[136839176,137887880,-26495209977993164,-26495207799184865],[136839176,138018824,-26495209971802464,-26495207805375563],[136839296,1048584,26495207799184865,26495209977993164],[136839296,1179648,-26495209977993164,-26495207799184865],[136839296,1573000,26495207799184865,26495209977993164],[136839296,1704064,-26495209977993164,-26495207799184865],[136839296,137363464,26495207799184865,26495209977993164],[136839296,137494528,-26495209977993164,-26495207799184865],[136839296,137887880,26495207799184865,26495209977993164],[136839296,138018944,-26495209977993164,-26495207799184865],[136840192,1179648,52990415906156016,52990419648200040],[136840192,1704960,24519905292829456,24519907464643493],[136840192,3277824,24519905292829457,24519907464643494],[136840192,3801088,3950603941250842,3950606098159314],[136840192,135398400,3950603941250842,3950606098159314],[136840192,135921664,24519905292829457,24519907464643494],[136840192,137494528,24519905292829456,24519907464643493],[136840192,138019840,52990415906156016,52990419648200040],[136841216,1705984,3950603941250842,3950606098159314],[136841216,3801088,-3950606098159314,-3950603941250842],[136841216,135399424,-3950606098159314,-3950603941250842],[136841216,137494528,3950603941250842,3950606098159314],[136970240,1048584,26495207805375563,26495209971802464],[136970240,1048704,-26495209971802464,-26495207805375563],[136970240,1703944,26495207805375563,26495209971802464],[136970240,1704064,-26495209971802464,-26495207805375563],[136970240,3277824,-929670022,929670021],[136970240,3278848,-26495209971802464,-26495207805375563],[136970240,3671040,-929670021,929670022],[136970240,3672064,26495207805375563,26495209971802464],[136970240,135398400,-929670021,929670022],[136970240,135399424,26495207805375563,26495209971802464],[136970240,135791616,-929670022,929670021],[136970240,135792640,-26495209971802464,-26495207805375563],[136970240,137363464,26495207805375563,26495209971802464],[136970240,137363584,-26495209971802464,-26495207805375563],[136970240,138018824,26495207805375563,26495209971802464],[136970240,138018944,-26495209971802464,-26495207805375563],[137363464,1049736,-24519907464643493,-24519905292829456],[137363464,1573000,26495207799184865,26495209977993164],[137363464,1703944,26495207805375563,26495209971802464],[137363464,2098312,1975301885638543,1975303134066535],[137363464,2621576,-13247605067077166,-13247603821511848],[137363464,2752520,-13247605061713792,-13247603826875223],[137363464,3146880,22544603251852693,22544604485915178],[137363464,3670144,-13247605061713792,-13247603826875223],[137363464,3801088,-13247605060886466,-13247603827702546],[137363464,134218888,22544603251852693,22544604485915178],[137363464,134742152,-13247605061713792,-13247603826875223],[137363464,134873096,-13247605060886466,-13247603827702546],[137363464,135267456,1975301885638543,1975303134066535],[137363464,135790720,-13247605067077166,-13247603821511848],[137363464,135921664,-13247605061713792,-13247603826875223],[137363464,136316032,-24519907464643493,-24519905292829456],[137363464,136839296,26495207799184865,26495209977993164],[137363464,136970240,26495207805375563,26495209971802464],[137363584,1049736,24519905292829456,24519907464643493],[137363584,1573000,-26495209977993164,-26495207799184865],[137363584,1704064,-26495209971802464,-26495207805375563],[137363584,2098312,-1975303134066535,-1975301885638543],[137363584,2621576,13247603821511848,13247605067077166],[137363584,2752640,13247603826875223,13247605061713792],[137363584,3146760,-22544604485915178,-22544603251852693],[137363584,3670024,13247603826875223,13247605061713792],[137363584,3801088,13247603827702546,13247605060886466],[137363584,134218888,-22544604485915178,-22544603251852693],[137363584,134742152,13247603826875223,13247605061713792],[137363584,134873216,13247603827702546,13247605060886466],[137363584,135267336,-1975303134066535,-1975301885638543],[137363584,135790600,13247603821511848,13247605067077166],[137363584,135921664,13247603826875223,13247605061713792],[137363584,136315912,24519905292829456,24519907464643493],[137363584,136839176,-26495209977993164,-26495207799184865],[137363584,136970240,-26495209971802464,-26495207805375563],[137364616,1048584,-24519907464643493,-24519905292829456],[137364616,1048704,24519905292829456,24519907464643493],[137364616,2097160,1975301885638543,1975303134066535],[137364616,2097280,-1975303134066535,-1975301885638543],[137364616,3146760,-22544604485915178,-22544603251852693],[137364616,3146880,22544603251852693,22544604485915178],[137364616,134217736,22544603251852693,22544604485915178],[137364616,134217856,-22544604485915178,-22544603251852693],[137364616,135267336,-1975303134066535,-1975301885638543],[137364616,135267456,1975301885638543,1975303134066535],[137364616,136315912,24519905292829456,24519907464643493],[137364616,136316032,-24519907464643493,-24519905292829456],[137494528,525312,24519905600979049,24519907156493899],[137494528,526336,-22544604485915178,-22544603251852693],[137494528,1703944,-26495209971802464,-26495207805375563],[137494528,1704064,-26495209977993164,-26495207799184865],[137494528,1704960,24519905292829456,24519907464643493],[137494528,1705984,3950603941250842,3950606098159314],[137494528,2752520,13247603826875223,13247605061713792],[137494528,2752640,13247603821511848,13247605067077166],[137494528,2753536,-929670022,929670021],[137494528,3670024,13247603827702546,13247605060886466],[137494528,3670144,13247603826875223,13247605061713792],[137494528,3671040,-923386045,923386045],[137494528,3672064,-26495209971802464,-26495207805375563],[137494528,134873096,13247603827702546,13247605060886466],[137494528,134873216,13247603826875223,13247605061713792],[137494528,134874112,-923386045,923386045],[137494528,134875136,-26495209971802464,-26495207805375563],[137494528,135790600,13247603826875223,13247605061713792],[137494528,135790720,13247603821511848,13247605067077166],[137494528,135791616,-929670022,929670021],[137494528,136839176,-26495209971802464,-26495207805375563],[137494528,136839296,-26495209977993164,-26495207799184865],[137494528,136840192,24519905292829456,24519907464643493],[137494528,136841216,3950603941250842,3950606098159314],[137494528,138019840,24519905600979049,24519907156493899],[137494528,138020864,-22544604485915178,-22544603251852693],[137887744,132096,-24519907156493899,-24519905600979049],[137887744,133120,22544603251852693,22544604485915178],[137887744,1704064,52990415906156016,52990419648200040],[137887744,1704960,-24519907464643493,-24519905292829456],[137887744,1705984,-3950606098159314,-3950603941250842],[137887744,2752640,-26495209977993164,-26495207799184865],[137887744,2753536,-929670021,929670022],[137887744,3276928,-26495209971802464,-26495207805375563],[137887744,3277824,-923386045,923386045],[137887744,3278848,26495207805375563,26495209971802464],[137887744,134873216,-26495209971802464,-26495207805375563],[137887744,134874112,-923386045,923386045],[137887744,134875136,26495207805375563,26495209971802464],[137887744,135397504,-26495209977993164,-26495207799184865],[137887744,135398400,-929670021,929670022],[137887744,136446080,52990415906156016,52990419648200040],[137887744,136446976,-24519907464643493,-24519905292829456],[137887744,136448000,-3950606098159314,-3950603941250842],[137887744,138019840,-24519907156493899,-24519905600979049],[137887744,138020864,22544603251852693,22544604485915178],[137887880,1048584,26495207799184865,26495209977993164],[137887880,1048704,-26495209977993164,-26495207799184865],[137887880,2097160,-13247605067077166,-13247603821511848],[137887880,2097280,13247603821511848,13247605067077166],[137887880,3670024,13247603826875223,13247605061713792],[137887880,3670144,-13247605061713792,-13247603826875223],[137887880,134217736,-13247605061713792,-13247603826875223],[137887880,134217856,13247603826875223,13247605061713792],[137887880,135790600,13247603821511848,13247605067077166],[137887880,135790720,-13247605067077166,-13247603821511848],[137887880,136839176,-26495209977993164,-26495207799184865],[137887880,136839296,26495207799184865,26495209977993164],[138018824,1048584,26495207805375563,26495209971802464],[138018824,1179648,-26495209971802464,-26495207805375563],[138018824,2097160,-13247605061713792,-13247603826875223],[138018824,2228224,13247603826875223,13247605061713792],[138018824,3670024,13247603827702546,13247605060886466],[138018824,3801088,-13247605060886466,-13247603827702546],[138018824,134217736,-13247605060886466,-13247603827702546],[138018824,134348800,13247603827702546,13247605060886466],[138018824,135790600,13247603826875223,13247605061713792],[138018824,135921664,-13247605061713792,-13247603826875223],[138018824,136839176,-26495209971802464,-26495207805375563],[138018824,136970240,26495207805375563,26495209971802464],[138018944,1048704,-26495209971802464,-26495207805375563],[138018944,1179648,-26495209977993164,-26495207799184865],[138018944,1572864,52990415906156016,52990419648200040],[138018944,2097280,13247603826875223,13247605061713792],[138018944,2228224,13247603821511848,13247605067077166],[138018944,2621440,-26495209977993164,-26495207799184865],[138018944,3276928,-26495209971802464,-26495207805375563],[138018944,3670144,13247603826875223,13247605061713792],[138018944,3801088,13247603827702546,13247605060886466],[138018944,134217856,13247603827702546,13247605060886466],[138018944,134348800,13247603826875223,13247605061713792],[138018944,134742016,-26495209971802464,-26495207805375563],[138018944,135397504,-26495209977993164,-26495207799184865],[138018944,135790720,13247603821511848,13247605067077166],[138018944,135921664,13247603826875223,13247605061713792],[138018944,136446080,52990415906156016,52990419648200040],[138018944,136839296,-26495209977993164,-26495207799184865],[138018944,136970240,-26495209971802464,-26495207805375563],[138019840,132096,-24519907156493899,-24519905600979049],[138019840,525312,24519905600979049,24519907156493899],[138019840,1179648,52990415906156016,52990419648200040],[138019840,1572864,-52990419648200040,-52990415906156016],[138019840,2228224,-3950605802754426,-3950604236655732],[138019840,2621440,3950604236655732,3950605802754426],[138019840,3277824,24519905600979050,24519907156493900],[138019840,3671040,-24519907156493900,-24519905600979050],[138019840,134348800,-24519907156493900,-24519905600979050],[138019840,134742016,24519905600979050,24519907156493900],[138019840,135398400,3950604236655732,3950605802754426],[138019840,135791616,-3950605802754426,-3950604236655732],[138019840,136446976,-52990419648200040,-52990415906156016],[138019840,136840192,52990415906156016,52990419648200040],[138019840,137494528,24519905600979049,24519907156493899],[138019840,137887744,-24519907156493899,-24519905600979049],[138020864,133120,22544603251852693,22544604485915178],[138020864,526336,-22544604485915178,-22544603251852693],[138020864,2228224,-22544604485915178,-22544603251852693],[138020864,2621440,22544603251852693,22544604485915178],[138020864,135399424,22544603251852693,22544604485915178],[138020864,135792640,-22544604485915178,-22544603251852693],[138020864,137494528,-22544604485915178,-22544603251852693],[138020864,137887744,22544603251852693,22544604485915178],[201326592,524416,11272301474344214,11272302394539722],[201326592,1703944,1975301885638544,1975303134066536],[201326592,1704064,22544603248067364,22544604489700504],[201326592,1704960,-13247605066971786,-13247603821617226],[201326592,201851008,11272301474344214,11272302394539722],[201326592,203030536,1975301885638544,1975303134066536],[201326592,203030656,22544603248067364,22544604489700504],[201326592,203031552,-13247605066971786,-13247603821617226],[201326592,268435464,-4648501525518317,-4648497899071108],[201326592,268435584,6623799170377024,6623805273917482],[201326592,268436480,-1975304235590111,-1975300784114970],[201326592,269090824,-13247605096148654,-13247603792440361],[201326592,269090944,1975301857911278,1975303161793801],[201326592,270008448,1975301889664154,1975303130040923],[201326592,270009344,-13247605061578886,-13247603827010127],[201326592,469762056,-4648501525518317,-4648497899071108],[201326592,469762176,6623799170377024,6623805273917482],[201326592,469763072,-1975304235590111,-1975300784114970],[201326592,470417416,-13247605096148654,-13247603792440361],[201326592,470417536,1975301857911278,1975303161793801],[201326592,471335040,1975301889664154,1975303130040923],[201326592,471335936,-13247605061578886,-13247603827010127],[201359368,268566528,6623801159963560,6623803284330947],[201359368,268599304,6623801159963560,6623803284330947],[201359368,469893120,6623801159963560,6623803284330947],[201359368,469925896,6623801159963560,6623803284330947],[201457666,268435464,-4648500364875210,-4648499059714221],[201457666,268566538,-4648500364875210,-4648499059714221],[201457666,469762056,-4648500364875210,-4648499059714221],[201457666,469893130,-4648500364875210,-4648499059714221],[201457668,268435464,-4648500337554984,-4648499087034444],[201457668,268468224,-1975303102434961,-1975301917270118],[201457668,268566540,-4648500337554984,-4648499087034444],[201457668,268599300,-1975303102434961,-1975301917270118],[201457668,469762056,-4648500337554984,-4648499087034444],[201457668,469794816,-1975303102434961,-1975301917270118],[201457668,469893132,-4648500337554984,-4648499087034444],[201457668,469925892,-1975303102434961,-1975301917270118],[201457672,1703944,1975301885638544,1975303134066536],[201457672,67108872,-4648501379109328,-4648498045480103],[201457672,67239936,4648498045480103,4648501379109328],[201457672,68681736,-3950606107262344,-3950603932147814],[201457672,68812800,1975301889643525,1975303130061553],[201457672,134217736,4648498045480103,4648501379109328],[201457672,134348800,-4648501379109328,-4648498045480103],[201457672,135790600,1975301889643525,1975303130061553],[201457672,135921664,-3950606107262344,-3950603932147814],[201457672,202899456,1975301885638544,1975303134066536],[201457672,268435458,4648499059714221,4648500364875210],[201457672,268435460,4648499087034444,4648500337554984],[201457672,268435584,4648499056652180,4648500367937249],[201457672,268468224,-4648500337554984,-4648499087034444],[201457672,268566538,4648499059714221,4648500364875210],[201457672,268566540,4648499087034444,4648500337554984],[201457672,268566664,4648499056652180,4648500367937249],[201457672,268599304,-4648500337554984,-4648499087034444],[201457672,268959744,-4648500367937249,-4648499056652180],[201457672,269090824,-17896105464085903,-17896102849092541],[201457672,336068616,39742811546633741,39742815119133304],[201457672,336199680,-26495210190850288,-26495207586327742],[201457672,336592904,-1975303130061553,-1975301889643525],[201457672,336723968,1975301889643525,1975303130061553],[201457672,403177480,-26495210190850288,-26495207586327742],[201457672,403308544,39742811546633741,39742815119133304],[201457672,403701768,1975301889643525,1975303130061553],[201457672,403832832,-1975303130061553,-1975301889643525],[201457672,469762050,4648499059714221,4648500364875210],[201457672,469762052,4648499087034444,4648500337554984],[201457672,469762176,4648499056652180,4648500367937249],[201457672,469794816,-4648500337554984,-4648499087034444],[201457672,469893130,4648499059714221,4648500364875210],[201457672,469893132,4648499087034444,4648500337554984],[201457672,469893256,4648499056652180,4648500367937249],[201457672,469925896,-4648500337554984,-4648499087034444],[201457672,470286336,-17896105464085903,-17896102849092541],[201457672,470417416,-4648500367937249,-4648499056652180],[201457672,872415240,-1975303127512529,-1975301892192548],[201457672,872546304,1975301892192548,1975303127512529],[201457672,939524104,1975301892192548,1975303127512529],[201457672,939655168,-1975303127512529,-1975301892192548],[201457672,1409286152,6623801172992632,6623803271301876],[201457672,1409417216,-6623803271301876,-6623801172992632],[201457672,1476395016,-6623803271301876,-6623801172992632],[201457672,1476526080,6623801172992632,6623803271301876],[201457672,17592521588744,-11272303070687196,-11272300798196740],[201457672,17592521719808,11272300798196740,11272303070687196],[201457672,17592588697608,11272300798196740,11272303070687196],[201457672,17592588828672,-11272303070687196,-11272300798196740],[201457672,35184707633160,13247603786922062,13247605101666952],[201457672,35184707764224,-13247605101666952,-13247603786922062],[201457672,35184774742024,-13247605101666952,-13247603786922062],[201457672,35184774873088,13247603786922062,13247605101666952],[201457672,70369079721992,-1975303142599947,-1975301877105131],[201457672,70369079853056,1975301877105131,1975303142599947],[201457672,70369146830856,1975301877105131,1975303142599947],[201457672,70369146961920,-1975303142599947,-1975301877105131],[201457792,1704064,-3950606107262344,-3950603932147814],[201457792,68681856,3950603932147814,3950606107262344],[201457792,135921664,3950603932147814,3950606107262344],[201457792,202899456,-3950606107262344,-3950603932147814],[201457792,268435464,-4648500367937249,-4648499056652180],[201457792,268566664,-4648500367937249,-4648499056652180],[201457792,268959744,-33119013675915179,-33119008545557361],[201457792,269090944,4648494894531634,4648504530057793],[201457792,336068736,-37767513075615154,-37767508570446813],[201457792,403308544,-37767513075615154,-37767508570446813],[201457792,469762056,-4648500367937249,-4648499056652180],[201457792,469893256,-4648500367937249,-4648499056652180],[201457792,470286336,4648494894531634,4648504530057793],[201457792,470417536,-33119013675915179,-33119008545557361],[201490432,268435460,1975301917270118,1975303102434961],[201490432,268435464,-1975303102434961,-1975301917270118],[201490432,268599300,1975301917270118,1975303102434961],[201490432,268599304,-1975303102434961,-1975301917270118],[201490432,469762052,1975301917270118,1975303102434961],[201490432,469762056,-1975303102434961,-1975301917270118],[201490432,469925892,1975301917270118,1975303102434961],[201490432,469925896,-1975303102434961,-1975301917270118],[201850888,1179648,3950603932147814,3950606107262344],[201850888,68288520,3950603932147814,3950606107262344],[201850888,135921664,3950603932147814,3950606107262344],[201850888,203030536,3950603932147814,3950606107262344],[201850888,268435584,6623801098016986,6623803346277523],[201850888,268566528,-6623806726760819,-6623797717533688],[201850888,268959880,6623801098016986,6623803346277523],[201850888,269090824,31143706348854335,31143710852913125],[201850888,335675400,-37767513075615154,-37767508570446813],[201850888,403308544,-37767513075615154,-37767508570446813],[201850888,469762176,6623801098016986,6623803346277523],[201850888,469893120,31143706348854335,31143710852913125],[201850888,470286472,6623801098016986,6623803346277523],[201850888,470417416,-6623806726760819,-6623797717533688],[201850944,268435584,6623801107293350,6623803337001160],[201850944,268959936,6623801107293350,6623803337001160],[201850944,469762176,6623801107293350,6623803337001160],[201850944,470286528,6623801107293350,6623803337001160],[201851008,0,22544602948688428,22544604789079444],[201851008,524416,11272301474344214,11272302394539722],[201851008,1179648,22544603248067364,22544604489700504],[201851008,67108992,15920798878436957,15920804415036409],[201851008,67633152,-4648502477690436,-4648496946898994],[201851008,68288640,-3950606107262344,-3950603932147814],[201851008,68812800,26495207799404518,26495209977773508],[201851008,134217856,-4648502477690436,-4648496946898994],[201851008,134742016,15920798878436957,15920804415036409],[201851008,135397504,26495207799404518,26495209977773508],[201851008,135921664,-3950606107262344,-3950603932147814],[201851008,201326592,11272301474344214,11272302394539722],[201851008,201851008,22544602948688428,22544604789079444],[201851008,203030656,22544603248067364,22544604489700504],[201851008,268435464,-6623803346277523,-6623801098016986],[201851008,268435520,-6623803337001160,-6623801107293350],[201851008,268436480,-6623803284297315,-6623801159997192],[201851008,268566528,8599102955928264,8599106508071324],[201851008,268959880,-6623803346277523,-6623801098016986],[201851008,268959936,-6623803337001160,-6623801107293350],[201851008,268960896,-6623803284297315,-6623801159997192],[201851008,269090944,6623801098016986,6623803346277523],[201851008,269484032,8599103049661346,8599106414338238],[201851008,270008448,6623801159997192,6623803284297315],[201851008,335675520,51015113020977955,51015117513673026],[201851008,336199680,-49039814979929732,-49039810535016170],[201851008,336593024,-49039814910578252,-49039810604367646],[201851008,337117184,51015113107831353,51015117426819622],[201851008,402784384,-49039814979929732,-49039810535016170],[201851008,403308544,51015113020977955,51015117513673026],[201851008,403701888,51015113107831353,51015117426819622],[201851008,404226048,-49039814910578252,-49039810604367646],[201851008,469762056,-6623803346277523,-6623801098016986],[201851008,469762112,-6623803337001160,-6623801107293350],[201851008,469763072,-6623803284297315,-6623801159997192],[201851008,469893120,6623801098016986,6623803346277523],[201851008,470286472,-6623803346277523,-6623801098016986],[201851008,470286528,-6623803337001160,-6623801107293350],[201851008,470287488,-6623803284297315,-6623801159997192],[201851008,470417536,8599102955928264,8599106508071324],[201851008,470810624,6623801159997192,6623803284297315],[201851008,471335040,8599103049661346,8599106414338238],[201851008,872415360,-24519907464643494,-24519905292829457],[201851008,872939520,24519905292829457,24519907464643494],[201851008,939524224,24519905292829457,24519907464643494],[201851008,940048384,-24519907464643494,-24519905292829457],[201851008,1409286272,6623801159963560,6623803284330947],[201851008,1409810432,-6623803284330947,-6623801159963560],[201851008,1476395136,-6623803284330947,-6623801159963560],[201851008,1476919296,6623801159963560,6623803284330947],[201851008,17592521588864,24519905244697076,24519907512775874],[201851008,17592522113024,-24519907512775874,-24519905244697076],[201851008,17592588697728,-24519907512775874,-24519905244697076],[201851008,17592589221888,24519905244697076,24519907512775874],[201851008,35184707633280,-974533465,974533467],[201851008,35184708157440,-974533467,974533465],[201851008,35184774742144,-974533467,974533465],[201851008,35184775266304,-974533465,974533467],[201851008,70369079722112,-24519907477236870,-24519905280236082],[201851008,70369080246272,24519905280236082,24519907477236870],[201851008,70369146830976,24519905280236082,24519907477236870],[201851008,70369147355136,-24519907477236870,-24519905280236082],[201851904,1179648,-26495209977773508,-26495207799404518],[201851904,68812800,-26495209977773508,-26495207799404518],[201851904,135398400,-26495209977773508,-26495207799404518],[201851904,203031552,-26495209977773508,-26495207799404518],[201851904,268435584,6623801159997192,6623803284297315],[201851904,268960896,6623801159997192,6623803284297315],[201851904,269484032,-3950609211113582,-3950600828296569],[201851904,270009344,49039810731968040,49039814782977862],[201851904,337117184,-52990419943081622,-52990415611274431],[201851904,403702784,-52990419943081622,-52990415611274431],[201851904,469762176,6623801159997192,6623803284297315],[201851904,470287488,6623801159997192,6623803284297315],[201851904,470810624,49039810731968040,49039814782977862],[201851904,471335936,-3950609211113582,-3950600828296569],[201981952,1048584,-1975303130061553,-1975301889643525],[201981952,1704064,26495207799404518,26495209977773508],[201981952,1704960,-13247605066971786,-13247603821617226],[201981952,68288520,-1975303130061553,-1975301889643525],[201981952,68681856,-26495209977773508,-26495207799404518],[201981952,68682752,13247603821617226,13247605066971786],[201981952,135397504,-26495209977773508,-26495207799404518],[201981952,135398400,13247603821617226,13247605066971786],[201981952,135790600,-1975303130061553,-1975301889643525],[201981952,202375296,26495207799404518,26495209977773508],[201981952,202376192,-13247605066971786,-13247603821617226],[201981952,203030536,-1975303130061553,-1975301889643525],[201981952,268435464,-1975306045508212,-1975298974196867],[201981952,268435584,26495207121529005,26495210655649026],[201981952,269090824,-26495210655649026,-26495207121529005],[201981952,269090944,-9297003420342855,-9296995428836002],[201981952,335675400,24519904610140814,24519908147332138],[201981952,336068736,35792206084485028,35792210541871860],[201981952,402784384,35792206084485028,35792210541871860],[201981952,403177480,24519904610140814,24519908147332138],[201981952,469762056,-26495210655649026,-26495207121529005],[201981952,469762176,-9297003420342855,-9296995428836002],[201981952,470417416,-1975306045508212,-1975298974196867],[201981952,470417536,26495207121529005,26495210655649026],[202375296,1704064,26495207799404518,26495209977773508],[202375296,68812800,-26495209977773508,-26495207799404518],[202375296,134873216,-26495209977773508,-26495207799404518],[202375296,201981952,26495207799404518,26495209977773508],[202375296,268436480,-1975303102468593,-1975301917236486],[202375296,268959744,-53688314809147586,-53688310130387744],[202375296,269485184,-1975303102468593,-1975301917236486],[202375296,270008448,-697899197873155,-697890187306122],[202375296,337117184,-52990419943081622,-52990415611274431],[202375296,403177600,-52990419943081622,-52990415611274431],[202375296,469763072,-1975303102468593,-1975301917236486],[202375296,470286336,-697899197873155,-697890187306122],[202375296,470811776,-1975303102468593,-1975301917236486],[202375296,471335040,-53688314809147586,-53688310130387744],[202375424,268436480,-1975303127852212,-1975301891852867],[202375424,269485312,-1975303127852212,-1975301891852867],[202375424,469763072,-1975303127852212,-1975301891852867],[202375424,470811904,-1975303127852212,-1975301891852867],[202376192,1704960,-13247605066971786,-13247603821617226],[202376192,67109888,-13247606122970514,-13247602765618499],[202376192,67765248,-13247605061599516,-13247603826989498],[202376192,68157440,13247602765618499,13247606122970514],[202376192,68812800,26495207799404518,26495209977773508],[202376192,134218752,13247602765618499,13247606122970514],[202376192,134874112,26495207799404518,26495209977773508],[202376192,135266304,-13247606122970514,-13247602765618499],[202376192,135921664,-13247605061599516,-13247603826989498],[202376192,201981952,-13247605066971786,-13247603821617226],[202376192,268435584,1975301917236486,1975303102468593],[202376192,268435712,1975301891852867,1975303127852212],[202376192,268437504,1975301885638544,1975303134066536],[202376192,268959744,-1975303102468593,-1975301917236486],[202376192,269485184,1975301917236486,1975303102468593],[202376192,269485312,1975301891852867,1975303127852212],[202376192,269487104,1975301885638544,1975303134066536],[202376192,270009344,-15222908164047479,-15222905744246613],[202376192,270532608,-1975303134066536,-1975301885638544],[202376192,271582208,-1975303134066536,-1975301885638544],[202376192,335676416,-13247605061599516,-13247603826989498],[202376192,336069632,-26495210121498808,-26495207655679218],[202376192,336723968,13247603826989498,13247605061599516],[202376192,337117184,39742811633487139,39742815032279900],[202376192,402785280,13247603826989498,13247605061599516],[202376192,403178496,39742811633487139,39742815032279900],[202376192,403832832,-13247605061599516,-13247603826989498],[202376192,404226048,-26495210121498808,-26495207655679218],[202376192,469762176,1975301917236486,1975303102468593],[202376192,469762304,1975301891852867,1975303127852212],[202376192,469764096,1975301885638544,1975303134066536],[202376192,470286336,-15222908164047479,-15222905744246613],[202376192,470811776,1975301917236486,1975303102468593],[202376192,470811904,1975301891852867,1975303127852212],[202376192,470813696,1975301885638544,1975303134066536],[202376192,471335936,-1975303102468593,-1975301917236486],[202376192,471859200,-1975303134066536,-1975301885638544],[202376192,472908800,-1975303134066536,-1975301885638544],[202376192,872416256,26495207798821558,26495209978356470],[202376192,873463808,-26495209978356470,-26495207798821558],[202376192,939525120,-26495209978356470,-26495207798821558],[202376192,940572672,26495207798821558,26495209978356470],[202376192,1409287168,-13247605033203059,-13247603855385956],[202376192,1410334720,13247603855385956,13247605033203059],[202376192,1476396032,13247603855385956,13247605033203059],[202376192,1477443584,-13247605033203059,-13247603855385956],[202376192,17592521589760,-13247605076872486,-13247603811716528],[202376192,17592522637312,13247603811716528,13247605076872486],[202376192,17592588698624,13247603811716528,13247605076872486],[202376192,17592589746176,-13247605076872486,-13247603811716528],[202376192,35184707634176,-13247605066127948,-13247603822461068],[202376192,35184708681728,13247603822461068,13247605066127948],[202376192,35184774743040,13247603822461068,13247605066127948],[202376192,35184775790592,-13247605066127948,-13247603822461068],[202376192,70369079723008,26495207784975390,26495209992202640],[202376192,70369080770560,-26495209992202640,-26495207784975390],[202376192,70369146831872,-26495209992202640,-26495207784975390],[202376192,70369147879424,26495207784975390,26495209992202640],[202377216,268436480,-1975303134066536,-1975301885638544],[202377216,269487104,-1975303134066536,-1975301885638544],[202377216,270532608,-22544604485915178,-22544603251852693],[202377216,271583232,-22544604485915178,-22544603251852693],[202377216,469763072,-1975303134066536,-1975301885638544],[202377216,470813696,-1975303134066536,-1975301885638544],[202377216,471859200,-22544604485915178,-22544603251852693],[202377216,472909824,-22544604485915178,-22544603251852693],[202899456,132096,13247603826989498,13247605061599516],[202899456,1703944,1975301885638544,1975303134066536],[202899456,1704064,-3950606107262344,-3950603932147814],[202899456,67765248,13247603826989498,13247605061599516],[202899456,68288520,-1975303134066536,-1975301885638544],[202899456,68288640,3950603932147814,3950606107262344],[202899456,134873096,-1975303134066536,-1975301885638544],[202899456,134873216,3950603932147814,3950606107262344],[202899456,135398400,13247603826989498,13247605061599516],[202899456,201457672,1975301885638544,1975303134066536],[202899456,201457792,-3950606107262344,-3950603932147814],[202899456,203031552,13247603826989498,13247605061599516],[202899456,268435584,47064508673192612,47064511822048211],[202899456,268436480,-7321700188581701,-7321693640892082],[202899456,270008448,-3950608753647640,-3950601285762513],[202899456,270009344,-47064511822048211,-47064508673192612],[202899456,336069632,39742811633466510,39742815032300530],[202899456,336593024,51015113107810724,51015117426840252],[202899456,403177600,51015113107810724,51015117426840252],[202899456,403702784,39742811633466510,39742815032300530],[202899456,469762176,-3950608753647640,-3950601285762513],[202899456,469763072,-47064511822048211,-47064508673192612],[202899456,471335040,47064508673192612,47064511822048211],[202899456,471335936,-7321700188581701,-7321693640892082],[203030536,1048584,-1975303130061553,-1975301889643525],[203030536,1179648,3950603932147814,3950606107262344],[203030536,1703944,1975301885638544,1975303134066536],[203030536,68157440,-1975303134066536,-1975301885638544],[203030536,68681736,-3950606107262344,-3950603932147814],[203030536,68812800,1975301889643525,1975303130061553],[203030536,134217736,1975301889643525,1975303130061553],[203030536,134348800,-3950606107262344,-3950603932147814],[203030536,134873096,-1975303134066536,-1975301885638544],[203030536,201326592,1975301885638544,1975303134066536],[203030536,201850888,3950603932147814,3950606107262344],[203030536,201981952,-1975303130061553,-1975301889643525],[203030656,1179648,22544603248067364,22544604489700504],[203030656,1704064,22544603248067364,22544604489700504],[203030656,68157440,-22544604489700504,-22544603248067364],[203030656,68681856,-22544604489700504,-22544603248067364],[203030656,134348800,-22544604489700504,-22544603248067364],[203030656,134873216,-22544604489700504,-22544603248067364],[203030656,201326592,22544603248067364,22544604489700504],[203030656,201851008,22544603248067364,22544604489700504],[203031552,132096,13247603826989498,13247605061599516],[203031552,1179648,-26495209977773508,-26495207799404518],[203031552,1704960,-13247605066971786,-13247603821617226],[203031552,67109888,-13247605061599516,-13247603826989498],[203031552,68157440,26495207799404518,26495209977773508],[203031552,68682752,13247603821617226,13247605066971786],[203031552,134348800,13247603821617226,13247605066971786],[203031552,134874112,26495207799404518,26495209977773508],[203031552,135921664,-13247605061599516,-13247603826989498],[203031552,201326592,-13247605066971786,-13247603821617226],[203031552,201851904,-26495209977773508,-26495207799404518],[203031552,202899456,13247603826989498,13247605061599516],[203424768,269484032,24519905292829457,24519907464643494],[203424768,271582208,24519905292829457,24519907464643494],[203424768,470810624,24519905292829457,24519907464643494],[203424768,472908800,24519905292829457,24519907464643494],[204472320,268436480,-22544604485915178,-22544603251852693],[204472320,268437504,22544603251852693,22544604485915178],[204472320,271582208,-22544604485915178,-22544603251852693],[204472320,271583232,22544603251852693,22544604485915178],[204472320,469763072,-22544604485915178,-22544603251852693],[204472320,469764096,22544603251852693,22544604485915178],[204472320,472908800,-22544604485915178,-22544603251852693],[204472320,472909824,22544603251852693,22544604485915178],[268435457,524426,13247603792440361,13247605096148654],[268435457,524428,-1975303134066536,-1975301885638544],[268435457,524482,-4648500364875210,-4648499059714221],[268435457,655370,-1975303161793801,-1975301857911278],[268435457,655372,-22544604489700504,-22544603248067364],[268435457,688132,13247603821617226,13247605066971786],[268435457,67239946,-4648500367050864,-4648499057538562],[268435457,67239948,-1975303130040923,-1975301889664154],[268435457,67272708,13247603827010127,13247605061578886],[268435457,268959883,13247603792440361,13247605096148654],[268435457,268959885,-1975303134066536,-1975301885638544],[268435457,268959939,-4648500364875210,-4648499059714221],[268435457,269090827,-1975303161793801,-1975301857911278],[268435457,269090829,-22544604489700504,-22544603248067364],[268435457,269123589,13247603821617226,13247605066971786],[268435457,335675403,-4648500367050864,-4648499057538562],[268435457,335675405,-1975303130040923,-1975301889664154],[268435457,335708165,13247603827010127,13247605061578886],[268435457,1140883460,-1975303127852212,-1975301891852867],[268435457,1409318917,-1975303127852212,-1975301891852867],[268435458,136,1975300603193161,1975304416511920],[268435458,192,4648497809818828,4648501614770600],[268435458,131080,-8599108279903872,-8599101184095716],[268435458,524296,3950600183061726,3950609856348444],[268435458,524352,4648497289301856,4648502135287572],[268435458,524416,-8599108279903872,-8599101184095716],[268435458,524425,-13247605096148654,-13247603792440361],[268435458,524428,1975301885638544,1975303134066536],[268435458,524481,4648499059714221,4648500364875210],[268435458,524488,-22544606608697526,-22544601129070346],[268435458,524736,1975301891852867,1975303127852212],[268435458,525448,-13247605066971786,-13247603821617226],[268435458,525504,-13247605061578886,-13247603827010127],[268435458,655360,1975300603193161,1975304416511920],[268435458,655369,1975301857911278,1975303161793801],[268435458,655372,22544603248067364,22544604489700504],[268435458,655432,1975301824995317,1975303194709763],[268435458,655496,18593996093162876,18594001605194824],[268435458,655552,1975301824995317,1975303194709763],[268435458,688136,-13247605066971786,-13247603821617226],[268435458,1573000,22544603248067364,22544604489700504],[268435458,1573056,1975301889664154,1975303130040923],[268435458,1703944,1975301885638544,1975303134066536],[268435458,67108872,4648497289301856,4648502135287572],[268435458,67239936,4648497809818828,4648501614770600],[268435458,67239945,4648499057538562,4648500367050864],[268435458,67239948,1975301889664154,1975303130040923],[268435458,67240008,4648499019397906,4648500405191522],[268435458,67240072,1975301824995317,1975303194709763],[268435458,67272712,-13247605061578886,-13247603827010127],[268435458,67633288,1975301824995317,1975303194709763],[268435458,67633344,4648499019397906,4648500405191522],[268435458,67764232,-22544606608697526,-22544601129070346],[268435458,134742152,1975301857911278,1975303161793801],[268435458,134742208,4648499057538562,4648500367050864],[268435458,134873096,-13247605096148654,-13247603792440361],[268435458,201457672,4648499059714221,4648500364875210],[268435458,268435594,1975300603193161,1975304416511920],[268435458,268435650,4648497809818828,4648501614770600],[268435458,268566538,-8599108279903872,-8599101184095716],[268435458,268959754,3950600183061726,3950609856348444],[268435458,268959810,4648497289301856,4648502135287572],[268435458,268959874,-8599108279903872,-8599101184095716],[268435458,268959883,-13247605096148654,-13247603792440361],[268435458,268959886,1975301885638544,1975303134066536],[268435458,268959939,4648499059714221,4648500364875210],[268435458,268959946,-22544606608697526,-22544601129070346],[268435458,268960194,1975301891852867,1975303127852212],[268435458,268960906,-13247605066971786,-13247603821617226],[268435458,268960962,-13247605061578886,-13247603827010127],[268435458,269090818,1975300603193161,1975304416511920],[268435458,269090827,1975301857911278,1975303161793801],[268435458,269090830,22544603248067364,22544604489700504],[268435458,269090890,1975301824995317,1975303194709763],[268435458,269090954,18593996093162876,18594001605194824],[268435458,269091010,1975301824995317,1975303194709763],[268435458,269123594,-13247605066971786,-13247603821617226],[268435458,270008458,22544603248067364,22544604489700504],[268435458,270008514,1975301889664154,1975303130040923],[268435458,270139402,1975301885638544,1975303134066536],[268435458,335544330,4648497289301856,4648502135287572],[268435458,335675394,4648497809818828,4648501614770600],[268435458,335675403,4648499057538562,4648500367050864],[268435458,335675406,1975301889664154,1975303130040923],[268435458,335675466,4648499019397906,4648500405191522],[268435458,335675530,1975301824995317,1975303194709763],[268435458,335708170,-13247605061578886,-13247603827010127],[268435458,336068746,1975301824995317,1975303194709763],[268435458,336068802,4648499019397906,4648500405191522],[268435458,336199690,-22544606608697526,-22544601129070346],[268435458,403177610,1975301857911278,1975303161793801],[268435458,403177666,4648499057538562,4648500367050864],[268435458,403308554,-13247605096148654,-13247603792440361],[268435458,469893130,4648499059714221,4648500364875210],[268435458,1140981768,1975301891852867,1975303127852212],[268435458,1409417226,1975301891852867,1975303127852212],[268435458,17592253284360,-13247605129676795,-13247603758912222],[268435458,17592521719818,-13247605129676795,-13247603758912222],[268435458,35184372613256,22544603189358414,22544604548409457],[268435458,35184372613312,1975301826672296,1975303193032786],[268435458,35184372744200,-13247605134312055,-13247603754276960],[268435458,35184439328776,1975301823150576,1975303196554503],[268435458,35184641048714,22544603189358414,22544604548409457],[268435458,35184641048770,1975301826672296,1975303193032786],[268435458,35184641179658,-13247605134312055,-13247603754276960],[268435458,35184707764234,1975301823150576,1975303196554503],[268435460,136,4648497918699427,4648501505889997],[268435460,131080,-8599108313708112,-8599101150291472],[268435460,163840,3950601606309328,3950608433100829],[268435460,524296,6623797698355075,6623806745939431],[268435460,524416,4648498045480102,4648501379109327],[268435460,524425,1975301885638544,1975303134066536],[268435460,524426,-13247605096148654,-13247603792440361],[268435460,524488,4648499059714221,4648500364875210],[268435460,525448,-13247605033169427,-13247603855419588],[268435460,557056,1975300413869816,1975304605835260],[268435460,557192,1975301885115096,1975303134589986],[268435460,655360,-11272305289278916,-11272298579605019],[268435460,655369,22544603248067364,22544604489700504],[268435460,655370,1975301857911278,1975303161793801],[268435460,655496,-22544606482912750,-22544601254855122],[268435460,688129,-13247605066971786,-13247603821617226],[268435460,688136,18593996439502170,18594001258855540],[268435460,688256,1975301885115096,1975303134589986],[268435460,1573000,1975301917270118,1975303102434961],[268435460,1703944,1975301917236486,1975303102468593],[268435460,1736704,22544603307191776,22544604430576096],[268435460,67108872,4648497448264558,4648501976324875],[268435460,67141632,3950600828296569,3950609211113582],[268435460,67239936,-8599108093729955,-8599101370269630],[268435460,67239945,1975301889664154,1975303130040923],[268435460,67239946,4648499057538562,4648500367050864],[268435460,67240072,4648499056652179,4648500367937248],[268435460,67272705,-13247605061578886,-13247603827010127],[268435460,67272712,-22544606285700820,-22544601452067054],[268435460,67633288,4648499056652179,4648500367937248],[268435460,67764232,-22544606464959780,-22544601272808088],[268435460,67796992,49039810292025454,49039815222920444],[268435460,134742152,4648499087000812,4648500337588616],[268435460,134873096,-13247605066155522,-13247603822433492],[268435460,134905856,1975301917236486,1975303102468593],[268435460,201457672,4648499087034444,4648500337554984],[268435460,201490432,1975301917270118,1975303102434961],[268435460,268435596,4648497918699427,4648501505889997],[268435460,268566540,-8599108313708112,-8599101150291472],[268435460,268599300,3950601606309328,3950608433100829],[268435460,268959756,6623797698355075,6623806745939431],[268435460,268959876,4648498045480102,4648501379109327],[268435460,268959885,1975301885638544,1975303134066536],[268435460,268959886,-13247605096148654,-13247603792440361],[268435460,268959948,4648499059714221,4648500364875210],[268435460,268960908,-13247605033169427,-13247603855419588],[268435460,268992516,1975300413869816,1975304605835260],[268435460,268992652,1975301885115096,1975303134589986],[268435460,269090820,-11272305289278916,-11272298579605019],[268435460,269090829,22544603248067364,22544604489700504],[268435460,269090830,1975301857911278,1975303161793801],[268435460,269090956,-22544606482912750,-22544601254855122],[268435460,269123589,-13247605066971786,-13247603821617226],[268435460,269123596,18593996439502170,18594001258855540],[268435460,269123716,1975301885115096,1975303134589986],[268435460,270008460,1975301917270118,1975303102434961],[268435460,270139404,1975301917236486,1975303102468593],[268435460,270172164,22544603307191776,22544604430576096],[268435460,335544332,4648497448264558,4648501976324875],[268435460,335577092,3950600828296569,3950609211113582],[268435460,335675396,-8599108093729955,-8599101370269630],[268435460,335675405,1975301889664154,1975303130040923],[268435460,335675406,4648499057538562,4648500367050864],[268435460,335675532,4648499056652179,4648500367937248],[268435460,335708165,-13247605061578886,-13247603827010127],[268435460,335708172,-22544606285700820,-22544601452067054],[268435460,336068748,4648499056652179,4648500367937248],[268435460,336199692,-22544606464959780,-22544601272808088],[268435460,336232452,49039810292025454,49039815222920444],[268435460,403177612,4648499087000812,4648500337588616],[268435460,403308556,-13247605066155522,-13247603822433492],[268435460,403341316,1975301917236486,1975303102468593],[268435460,469893132,4648499087034444,4648500337554984],[268435460,469925892,1975301917270118,1975303102434961],[268435460,1073774592,-13247606122970514,-13247602765618499],[268435460,1074429952,-13247605061599516,-13247603826989498],[268435460,1140850688,1975300784114970,1975304235590111],[268435460,1140883457,1975301891852867,1975303127852212],[268435460,1140883464,1975301917236486,1975303102468593],[268435460,1140981768,1975301917236486,1975303102468593],[268435460,1141014528,18593996492884744,18594001205472974],[268435460,1141407744,-13247605061599516,-13247603826989498],[268435460,1275101184,-13247605033203059,-13247603855385956],[268435460,1342210052,-13247606122970514,-13247602765618499],[268435460,1342865412,-13247605061599516,-13247603826989498],[268435460,1409286148,1975300784114970,1975304235590111],[268435460,1409318917,1975301891852867,1975303127852212],[268435460,1409318924,1975301917236486,1975303102468593],[268435460,1409417228,1975301917236486,1975303102468593],[268435460,1409449988,18593996492884744,18594001205472974],[268435460,1409843204,-13247605061599516,-13247603826989498],[268435460,1543536644,-13247605033203059,-13247603855385956],[268435460,17592253284360,-13247605100033866,-13247603788555150],[268435460,17592253317120,1975301885115096,1975303134589986],[268435460,17592521719820,-13247605100033866,-13247603788555150],[268435460,17592521752580,1975301885115096,1975303134589986],[268435460,17593326927872,-13247605066127948,-13247603822461068],[268435460,17593595363332,-13247605066127948,-13247603822461068],[268435460,35184372613256,1975301858410281,1975303161294799],[268435460,35184372744200,-13247605101666952,-13247603786922062],[268435460,35184372776960,1975301877105131,1975303142599947],[268435460,35184439328776,1975301852392980,1975303167312100],[268435460,35184439361536,22544603239782766,22544604497985104],[268435460,35184641048716,1975301858410281,1975303161294799],[268435460,35184641179660,-13247605101666952,-13247603786922062],[268435460,35184641212420,1975301877105131,1975303142599947],[268435460,35184707764236,1975301852392980,1975303167312100],[268435460,35184707796996,22544603239782766,22544604497985104],[268435460,35185512972288,-13247605076872486,-13247603811716528],[268435460,35185781407748,-13247605076872486,-13247603811716528],[268435460,140738629238784,22544603251967752,22544604485800118],[268435460,140738897674244,22544603251967752,22544604485800118],[268435464,0,-1395799815332118,-1395778955026394],[268435464,130,-1975304416511920,-1975300603193161],[268435464,132,-4648501505889997,-4648497918699427],[268435464,192,-15920803552528152,-15920799740945212],[268435464,1152,-13247606153429752,-13247602735159258],[268435464,131074,8599101184095716,8599108279903872],[268435464,131076,8599101150291472,8599108313708112],[268435464,131200,20569290552159553,20569312165903224],[268435464,163840,-5925910945469332,-5925904113645905],[268435464,524290,-3950609856348444,-3950600183061726],[268435464,524292,-6623806745939431,-6623797698355075],[268435464,524352,-4648502836441441,-4648496588147988],[268435464,524416,159397032038790385,159397079835786384],[268435464,524422,11272300812248450,11272303056635485],[268435464,524482,-3950606396524520,-3950603642885640],[268435464,524484,-4648500364875210,-4648499059714221],[268435464,525312,15920798873942155,15920804419531205],[268435464,525442,13247603821617226,13247605066971786],[268435464,525444,13247603855419588,13247605033169427],[268435464,525504,11272301161280132,11272302707603802],[268435464,557056,-7321699692989682,-7321694136484094],[268435464,655360,-252556117717993928,-252556061588214548],[268435464,655366,-24519907498972975,-24519905258499972],[268435464,655490,-7321700711066549,-7321693118407216],[268435464,655492,-1975306059254087,-1975298960450994],[268435464,655552,-3950606391264266,-3950603648145893],[268435464,656512,-9297000663454110,-9296998185724745],[268435464,688130,13247603821617226,13247605066971786],[268435464,688132,26495207710771912,26495210066406118],[268435464,688256,11272300692285237,11272303176598696],[268435464,1048704,15920798874182437,15920804419290919],[268435464,1179648,-7321699679927840,-7321694149545938],[268435464,1572864,-5925910964282679,-5925904094832560],[268435464,1572994,-22544604489700504,-22544603248067364],[268435464,1572996,-1975303102434961,-1975301917270118],[268435464,1573056,-1975303130040923,-1975301889664154],[268435464,1574016,-45089208861152192,-45089206614383552],[268435464,1703938,-1975303134066536,-1975301885638544],[268435464,1703940,-1975303102468593,-1975301917236486],[268435464,1704064,-22544606653723935,-22544601084043932],[268435464,1736704,-22544604430576096,-22544603307191776],[268435464,67108866,-4648502135287572,-4648497289301856],[268435464,67108868,-4648501976324875,-4648497448264558],[268435464,67108992,-9297004269330780,-9296994579848082],[268435464,67141632,15920798865897844,15920804427575524],[268435464,67239936,77936102841789496,77936150681548118],[268435464,67239942,-6623803341365525,-6623801102928978],[268435464,67240066,-6623803429142575,-6623801015151933],[268435464,67240068,-6623803346277521,-6623801098016984],[268435464,67272706,13247603827010127,13247605061578886],[268435464,67272708,26495207710839176,26495210066338854],[268435464,67272832,13247603821511848,13247605067077166],[268435464,67633152,20569290559759355,20569312158303430],[268435464,67633282,-1975303194709763,-1975301824995317],[268435464,67633284,-4648500367937248,-4648499056652179],[268435464,67633344,-4648500405191522,-4648499019397906],[268435464,67634304,-1975303134066535,-1975301885638543],[268435464,67764226,22544601129070346,22544606608697526],[268435464,67764228,22544601272808088,22544606464959780],[268435464,67764352,58336806002895800,58336818361228957],[268435464,67796992,-22544606644811289,-22544601092956580],[268435464,68681856,13247603821511848,13247605067077166],[268435464,68812800,11272300696813670,11272303172070267],[268435464,134217856,-4648501974835595,-4648497449753834],[268435464,134348800,-6623806726760819,-6623797717533688],[268435464,134742016,8599101131740910,8599108332258679],[268435464,134742146,-1975303161793801,-1975301857911278],[268435464,134742148,-4648500337588616,-4648499087000812],[268435464,134742208,-4648500367050864,-4648499057538562],[268435464,134743168,-1975303102434961,-1975301917270118],[268435464,134873090,13247603792440361,13247605096148654],[268435464,134873092,13247603822433492,13247605066155522],[268435464,134873216,22544601267974862,22544606469793008],[268435464,134905856,-1975303102468593,-1975301917236486],[268435464,135267456,-1975303102434961,-1975301917270118],[268435464,135790720,26495207710839176,26495210066338854],[268435464,135921664,26495207710771912,26495210066406118],[268435464,201326592,-4648501525518317,-4648497899071108],[268435464,201457666,-4648500364875210,-4648499059714221],[268435464,201457668,-4648500337554984,-4648499087034444],[268435464,201457792,-4648500367937249,-4648499056652180],[268435464,201490432,-1975303102434961,-1975301917270118],[268435464,201851008,-6623803346277523,-6623801098016986],[268435464,201981952,-1975306045508212,-1975298974196867],[268435464,268435464,-1395799815332118,-1395778955026394],[268435464,268435594,-1975304416511920,-1975300603193161],[268435464,268435596,-4648501505889997,-4648497918699427],[268435464,268435656,-15920803552528152,-15920799740945212],[268435464,268436616,-13247606153429752,-13247602735159258],[268435464,268566538,8599101184095716,8599108279903872],[268435464,268566540,8599101150291472,8599108313708112],[268435464,268566664,20569290552159553,20569312165903224],[268435464,268599304,-5925910945469332,-5925904113645905],[268435464,268959754,-3950609856348444,-3950600183061726],[268435464,268959756,-6623806745939431,-6623797698355075],[268435464,268959816,-4648502836441441,-4648496588147988],[268435464,268959880,159397032038790385,159397079835786384],[268435464,268959886,11272300812248450,11272303056635485],[268435464,268959946,-3950606396524520,-3950603642885640],[268435464,268959948,-4648500364875210,-4648499059714221],[268435464,268960776,15920798873942155,15920804419531205],[268435464,268960906,13247603821617226,13247605066971786],[268435464,268960908,13247603855419588,13247605033169427],[268435464,268960968,11272301161280132,11272302707603802],[268435464,268992520,-7321699692989682,-7321694136484094],[268435464,269090824,-252556117717993928,-252556061588214548],[268435464,269090830,-24519907498972975,-24519905258499972],[268435464,269090954,-7321700711066549,-7321693118407216],[268435464,269090956,-1975306059254087,-1975298960450994],[268435464,269091016,-3950606391264266,-3950603648145893],[268435464,269091976,-9297000663454110,-9296998185724745],[268435464,269123594,13247603821617226,13247605066971786],[268435464,269123596,26495207710771912,26495210066406118],[268435464,269123720,11272300692285237,11272303176598696],[268435464,269484168,15920798874182437,15920804419290919],[268435464,269615112,-7321699679927840,-7321694149545938],[268435464,270008328,-5925910964282679,-5925904094832560],[268435464,270008458,-22544604489700504,-22544603248067364],[268435464,270008460,-1975303102434961,-1975301917270118],[268435464,270008520,-1975303130040923,-1975301889664154],[268435464,270009480,-45089208861152192,-45089206614383552],[268435464,270139402,-1975303134066536,-1975301885638544],[268435464,270139404,-1975303102468593,-1975301917236486],[268435464,270139528,-22544606653723935,-22544601084043932],[268435464,270172168,-22544604430576096,-22544603307191776],[268435464,335544330,-4648502135287572,-4648497289301856],[268435464,335544332,-4648501976324875,-4648497448264558],[268435464,335544456,-9297004269330780,-9296994579848082],[268435464,335577096,15920798865897844,15920804427575524],[268435464,335675400,77936102841789496,77936150681548118],[268435464,335675406,-6623803341365525,-6623801102928978],[268435464,335675530,-6623803429142575,-6623801015151933],[268435464,335675532,-6623803346277521,-6623801098016984],[268435464,335708170,13247603827010127,13247605061578886],[268435464,335708172,26495207710839176,26495210066338854],[268435464,335708296,13247603821511848,13247605067077166],[268435464,336068616,20569290559759355,20569312158303430],[268435464,336068746,-1975303194709763,-1975301824995317],[268435464,336068748,-4648500367937248,-4648499056652179],[268435464,336068808,-4648500405191522,-4648499019397906],[268435464,336069768,-1975303134066535,-1975301885638543],[268435464,336199690,22544601129070346,22544606608697526],[268435464,336199692,22544601272808088,22544606464959780],[268435464,336199816,58336806002895800,58336818361228957],[268435464,336232456,-22544606644811289,-22544601092956580],[268435464,337117320,13247603821511848,13247605067077166],[268435464,337248264,11272300696813670,11272303172070267],[268435464,402653320,-4648501974835595,-4648497449753834],[268435464,402784264,-6623806726760819,-6623797717533688],[268435464,403177480,8599101131740910,8599108332258679],[268435464,403177610,-1975303161793801,-1975301857911278],[268435464,403177612,-4648500337588616,-4648499087000812],[268435464,403177672,-4648500367050864,-4648499057538562],[268435464,403178632,-1975303102434961,-1975301917270118],[268435464,403308554,13247603792440361,13247605096148654],[268435464,403308556,13247603822433492,13247605066155522],[268435464,403308680,22544601267974862,22544606469793008],[268435464,403341320,-1975303102468593,-1975301917236486],[268435464,403702920,-1975303102434961,-1975301917270118],[268435464,404226184,26495207710839176,26495210066338854],[268435464,404357128,26495207710771912,26495210066406118],[268435464,469762056,-4648501525518317,-4648497899071108],[268435464,469893130,-4648500364875210,-4648499059714221],[268435464,469893132,-4648500337554984,-4648499087034444],[268435464,469893256,-4648500367937249,-4648499056652180],[268435464,469925896,-1975303102434961,-1975301917270118],[268435464,470286472,-6623803346277523,-6623801098016986],[268435464,470417416,-1975306045508212,-1975298974196867],[268435464,1073872896,15920798878436957,15920804415036409],[268435464,1140850688,-13247606172936084,-13247602715652933],[268435464,1140883460,-1975303102468593,-1975301917236486],[268435464,1140981762,-1975303127852212,-1975301891852867],[268435464,1140981764,-1975303102468593,-1975301917236486],[268435464,1140981888,-1975303134066536,-1975301885638544],[268435464,1141014528,-45089208861152192,-45089206614383552],[268435464,1141506048,-9297000658925680,-9296998190253177],[268435464,1275199488,13247603855385956,13247605033203059],[268435464,1342308360,15920798878436957,15920804415036409],[268435464,1409286152,-13247606172936084,-13247602715652933],[268435464,1409318924,-1975303102468593,-1975301917236486],[268435464,1409417226,-1975303127852212,-1975301891852867],[268435464,1409417228,-1975303102468593,-1975301917236486],[268435464,1409417352,-1975303134066536,-1975301885638544],[268435464,1409449992,-45089208861152192,-45089206614383552],[268435464,1409941512,-9297000658925680,-9296998190253177],[268435464,1543634952,13247603855385956,13247605033203059],[268435464,17592186175488,-1975305698740355,-1975299320964727],[268435464,17592253153280,22544601914969187,22544605822798680],[268435464,17592253284354,13247603758912222,13247605129676795],[268435464,17592253284356,13247603788555150,13247605100033866],[268435464,17592253284480,13247603750907644,13247605137681374],[268435464,17592253317120,-1975303134589986,-1975301885115096],[268435464,17592253808640,-24519907748637518,-24519905008835432],[268435464,17592387502080,-1975303161294799,-1975301858410281],[268435464,17592454610952,-1975305698740355,-1975299320964727],[268435464,17592521588744,22544601914969187,22544605822798680],[268435464,17592521719818,13247603758912222,13247605129676795],[268435464,17592521719820,13247603788555150,13247605100033866],[268435464,17592521719944,13247603750907644,13247605137681374],[268435464,17592521752584,-1975303134589986,-1975301885115096],[268435464,17592522244104,-24519907748637518,-24519905008835432],[268435464,17592655937544,-1975303161294799,-1975301858410281],[268435464,17593327026176,-9297000203068470,-9296998646110384],[268435464,17593595461640,-9297000203068470,-9296998646110384],[268435464,35184372088960,-1975304963903298,-1975300055801777],[268435464,35184372219904,-3950609898973822,-3950600140436346],[268435464,35184372613120,11272298321696800,11272305547187129],[268435464,35184372613250,-22544604548409457,-22544603189358414],[268435464,35184372613252,-1975303161294799,-1975301858410281],[268435464,35184372613312,-1975303193032786,-1975301826672296],[268435464,35184372614272,-22544604485800118,-22544603251967752],[268435464,35184372744194,13247603754276960,13247605134312055],[268435464,35184372744196,13247603786922062,13247605101666952],[268435464,35184372744320,-18594001619979184,-18593996078378526],[268435464,35184372776960,-1975303142599947,-1975301877105131],[268435464,35184373661824,13247603822461068,13247605066127948],[268435464,35184373792768,13247603811716528,13247605076872486],[268435464,35184439197696,-1975304480049416,-1975300539655663],[268435464,35184439328770,-1975303196554503,-1975301823150576],[268435464,35184439328772,-1975303167312100,-1975301852392980],[268435464,35184439328896,-1975303200228061,-1975301819477018],[268435464,35184439361536,-22544604497985104,-22544603239782766],[268435464,35184439722112,11272300719066616,11272303149817323],[268435464,35184439853056,-7321700748173631,-7321693081300137],[268435464,35184506830976,11272300807839789,11272303061044145],[268435464,35184506961920,-24519907512775874,-24519905244697076],[268435464,35184573546496,11272300798196740,11272303070687196],[268435464,35184640524424,-1975304963903298,-1975300055801777],[268435464,35184640655368,-3950609898973822,-3950600140436346],[268435464,35184641048584,11272298321696800,11272305547187129],[268435464,35184641048714,-22544604548409457,-22544603189358414],[268435464,35184641048716,-1975303161294799,-1975301858410281],[268435464,35184641048776,-1975303193032786,-1975301826672296],[268435464,35184641049736,-22544604485800118,-22544603251967752],[268435464,35184641179658,13247603754276960,13247605134312055],[268435464,35184641179660,13247603786922062,13247605101666952],[268435464,35184641179784,-18594001619979184,-18593996078378526],[268435464,35184641212424,-1975303142599947,-1975301877105131],[268435464,35184642097288,13247603822461068,13247605066127948],[268435464,35184642228232,13247603811716528,13247605076872486],[268435464,35184707633160,-1975304480049416,-1975300539655663],[268435464,35184707764234,-1975303196554503,-1975301823150576],[268435464,35184707764236,-1975303167312100,-1975301852392980],[268435464,35184707764360,-1975303200228061,-1975301819477018],[268435464,35184707797000,-22544604497985104,-22544603239782766],[268435464,35184708157576,11272300719066616,11272303149817323],[268435464,35184708288520,-7321700748173631,-7321693081300137],[268435464,35184775266440,11272300807839789,11272303061044145],[268435464,35184775397384,-24519907512775874,-24519905244697076],[268435464,35184841981960,11272300798196740,11272303070687196],[268435464,35185513070592,13247603811716528,13247605076872486],[268435464,35185781506056,13247603811716528,13247605076872486],[268435464,52776625373184,-45089209134537452,-45089206340998288],[268435464,52776893808648,-45089209134537452,-45089206340998288],[268435467,524425,-13247605096148654,-13247603792440361],[268435467,524426,13247603792440361,13247605096148654],[268435467,655369,1975301857911278,1975303161793801],[268435467,655370,-1975303161793801,-1975301857911278],[268435467,67239945,4648499057538562,4648500367050864],[268435467,67239946,-4648500367050864,-4648499057538562],[268435467,268959873,13247603792440361,13247605096148654],[268435467,268959874,-13247605096148654,-13247603792440361],[268435467,269090817,-1975303161793801,-1975301857911278],[268435467,269090818,1975301857911278,1975303161793801],[268435467,335675393,-4648500367050864,-4648499057538562],[268435467,335675394,4648499057538562,4648500367050864],[268435469,524425,1975301885638544,1975303134066536],[268435469,524428,-1975303134066536,-1975301885638544],[268435469,655369,22544603248067364,22544604489700504],[268435469,655372,-22544604489700504,-22544603248067364],[268435469,67239945,1975301889664154,1975303130040923],[268435469,67239948,-1975303130040923,-1975301889664154],[268435469,268959873,-1975303134066536,-1975301885638544],[268435469,268959876,1975301885638544,1975303134066536],[268435469,269090817,-22544604489700504,-22544603248067364],[268435469,269090820,22544603248067364,22544604489700504],[268435469,335675393,-1975303130040923,-1975301889664154],[268435469,335675396,1975301889664154,1975303130040923],[268435470,524422,11272300812248450,11272303056635485],[268435470,524426,-13247605096148654,-13247603792440361],[268435470,524428,1975301885638544,1975303134066536],[268435470,655366,-24519907498972975,-24519905258499972],[268435470,655370,1975301857911278,1975303161793801],[268435470,655372,22544603248067364,22544604489700504],[268435470,67239942,-6623803341365525,-6623801102928978],[268435470,67239946,4648499057538562,4648500367050864],[268435470,67239948,1975301889664154,1975303130040923],[268435470,268959874,1975301885638544,1975303134066536],[268435470,268959876,-13247605096148654,-13247603792440361],[268435470,268959880,11272300812248450,11272303056635485],[268435470,269090818,22544603248067364,22544604489700504],[268435470,269090820,1975301857911278,1975303161793801],[268435470,269090824,-24519907498972975,-24519905258499972],[268435470,335675394,1975301889664154,1975303130040923],[268435470,335675396,4648499057538562,4648500367050864],[268435470,335675400,-6623803341365525,-6623801102928978],[268435520,130,-4648501614770600,-4648497809818828],[268435520,136,-13247606347638304,-13247602540950713],[268435520,131200,15920798525905540,15920804767567825],[268435520,524290,-4648502135287572,-4648497289301856],[268435520,524296,15920798525905540,15920804767567825],[268435520,524426,26495207525594866,26495210251583166],[268435520,524674,-6623803337001160,-6623801107293350],[268435520,524680,13247603792440361,13247605096148654],[268435520,525442,13247603827010127,13247605061578886],[268435520,525448,11272301161387192,11272302707496740],[268435520,655360,-13247606347638304,-13247602540950713],[268435520,655370,-1975303194709763,-1975301824995317],[268435520,655490,-1975303194709763,-1975301824995317],[268435520,655496,-45089209107010112,-45089206368525624],[268435520,655744,-1975303161793801,-1975301857911278],[268435520,656512,-22544604489700504,-22544603248067364],[268435520,1572994,-1975303130040923,-1975301889664154],[268435520,1573000,-22544604489700504,-22544603248067364],[268435520,1704064,11272301161387192,11272302707496740],[268435520,67108992,-4648502135287572,-4648497289301856],[268435520,67239946,-4648500405191522,-4648499019397906],[268435520,67240072,-1975303194709763,-1975301824995317],[268435520,67633152,-4648501614770600,-4648497809818828],[268435520,67633282,-4648500405191522,-4648499019397906],[268435520,67633288,-1975303194709763,-1975301824995317],[268435520,67633536,-4648500367050864,-4648499057538562],[268435520,67634304,-1975303130040923,-1975301889664154],[268435520,67764352,26495207525594866,26495210251583166],[268435520,68681856,13247603827010127,13247605061578886],[268435520,134742146,-4648500367050864,-4648499057538562],[268435520,134742152,-1975303161793801,-1975301857911278],[268435520,134873216,13247603792440361,13247605096148654],[268435520,201851008,-6623803337001160,-6623801107293350],[268435520,268435650,-4648501614770600,-4648497809818828],[268435520,268435656,-13247606347638304,-13247602540950713],[268435520,268566720,15920798525905540,15920804767567825],[268435520,268959810,-4648502135287572,-4648497289301856],[268435520,268959816,15920798525905540,15920804767567825],[268435520,268959946,26495207525594866,26495210251583166],[268435520,268960194,-6623803337001160,-6623801107293350],[268435520,268960200,13247603792440361,13247605096148654],[268435520,268960962,13247603827010127,13247605061578886],[268435520,268960968,11272301161387192,11272302707496740],[268435520,269090880,-13247606347638304,-13247602540950713],[268435520,269090890,-1975303194709763,-1975301824995317],[268435520,269091010,-1975303194709763,-1975301824995317],[268435520,269091016,-45089209107010112,-45089206368525624],[268435520,269091264,-1975303161793801,-1975301857911278],[268435520,269092032,-22544604489700504,-22544603248067364],[268435520,270008514,-1975303130040923,-1975301889664154],[268435520,270008520,-22544604489700504,-22544603248067364],[268435520,270139584,11272301161387192,11272302707496740],[268435520,335544512,-4648502135287572,-4648497289301856],[268435520,335675466,-4648500405191522,-4648499019397906],[268435520,335675592,-1975303194709763,-1975301824995317],[268435520,336068672,-4648501614770600,-4648497809818828],[268435520,336068802,-4648500405191522,-4648499019397906],[268435520,336068808,-1975303194709763,-1975301824995317],[268435520,336069056,-4648500367050864,-4648499057538562],[268435520,336069824,-1975303130040923,-1975301889664154],[268435520,336199872,26495207525594866,26495210251583166],[268435520,337117376,13247603827010127,13247605061578886],[268435520,403177666,-4648500367050864,-4648499057538562],[268435520,403177672,-1975303161793801,-1975301857911278],[268435520,403308736,13247603792440361,13247605096148654],[268435520,470286528,-6623803337001160,-6623801107293350],[268435520,35184372613250,-1975303193032786,-1975301826672296],[268435520,35184372613256,-22544604548409457,-22544603189358414],[268435520,35184372744320,13247603754276960,13247605134312055],[268435520,35184439722112,11272300730744752,11272303138139186],[268435520,35184641048770,-1975303193032786,-1975301826672296],[268435520,35184641048776,-22544604548409457,-22544603189358414],[268435520,35184641179840,13247603754276960,13247605134312055],[268435520,35184708157632,11272300730744752,11272303138139186],[268435523,524481,4648499059714221,4648500364875210],[268435523,524482,-4648500364875210,-4648499059714221],[268435523,268959873,-4648500364875210,-4648499059714221],[268435523,268959874,4648499059714221,4648500364875210],[268435530,524426,19871404864681274,19871408468202250],[268435530,524482,-28470513144585146,-28470509652297966],[268435530,524488,8599101184095716,8599108279903872],[268435530,655370,-1975303194709763,-1975301824995317],[268435530,655432,1975301824995317,1975303194709763],[268435530,67239946,-4648500405191522,-4648499019397906],[268435530,67240008,4648499019397906,4648500405191522],[268435530,268959874,8599101184095716,8599108279903872],[268435530,268959880,-28470513144585146,-28470509652297966],[268435530,268959936,19871404864681274,19871408468202250],[268435530,269090818,1975301824995317,1975303194709763],[268435530,269090880,-1975303194709763,-1975301824995317],[268435530,335675394,4648499019397906,4648500405191522],[268435530,335675456,-4648500405191522,-4648499019397906],[268435532,524484,-11272303056635485,-11272300812248450],[268435532,524488,11272300812248450,11272303056635485],[268435532,268959876,11272300812248450,11272303056635485],[268435532,268959880,-11272303056635485,-11272300812248450],[268435584,72,6623798927600937,6623805516693572],[268435584,1032,6623799192952293,6623805251342207],[268435584,131080,-7901216780706716,-7901203298113598],[268435584,131136,-4648502836441441,-4648496588147988],[268435584,132096,-4648502614033929,-4648496810555499],[268435584,163840,-9296999886451704,-9296998962727152],[268435584,524290,8599101184095716,8599108279903872],[268435584,524292,-4648501379109327,-4648498045480102],[268435584,524296,-166718780962043040,-166718724742007499],[268435584,525384,-31143710514241570,-31143706687525880],[268435584,557056,9296996568177046,9297002281001814],[268435584,655360,235357851276653147,235357909101556156],[268435584,655370,1975301824995317,1975303194709763],[268435584,655372,22544603251852693,22544604485915178],[268435584,655432,47064508360216381,47064512135024435],[268435584,656392,26495207121529005,26495210655649026],[268435584,656448,24519905258499972,24519907498972975],[268435584,688136,-13247605061713792,-13247603826875223],[268435584,1048584,-4648502481944947,-4648496942644475],[268435584,1179648,9296996307740651,9297002541438203],[268435584,1572936,24519905293069738,24519907464403207],[268435584,1573896,47064508673192612,47064511822048211],[268435584,1703944,-9297000814034204,-9296998035144653],[268435584,1704000,-11272302707496740,-11272301161387192],[268435584,1704960,-24519907696178166,-24519905061294785],[268435584,67108872,9296994579848082,9297004269330780],[268435584,67108928,4648497289301856,4648502135287572],[268435584,67109888,4648497448264558,4648501976324875],[268435584,67239936,-7901216811716128,-7901203267104184],[268435584,67239946,4648499019397906,4648500405191522],[268435584,67239948,1975301885638543,1975303134066535],[268435584,67240008,1975301824995317,1975303194709763],[268435584,67240968,4648499056652179,4648500367937248],[268435584,67272712,-13247605067077166,-13247603821511848],[268435584,67633152,-85257851747913146,-85257795604898244],[268435584,67633224,6623801015151933,6623803429142575],[268435584,67634184,6623801098016984,6623803346277521],[268435584,67634240,6623801102928978,6623803341365525],[268435584,67764232,-45089213226916902,-45089202248618840],[268435584,67764288,-26495210251583166,-26495207525594866],[268435584,67765248,-26495210186613570,-26495207590564460],[268435584,67796992,-13247605061713792,-13247603826875223],[268435584,68157440,-4648502490229551,-4648496934359881],[268435584,68681736,-13247605067077166,-13247603821511848],[268435584,68681792,-13247605061578886,-13247603827010127],[268435584,68682752,-26495210066338854,-26495207710839176],[268435584,68812800,-9297000814034204,-9296998035144653],[268435584,134217736,4648497449753834,4648501974835595],[268435584,134348800,-4648502622318527,-4648496802270899],[268435584,134742088,6623801086208550,6623803358085955],[268435584,134743048,6623801159997192,6623803284297315],[268435584,134873096,-26495210186613570,-26495207590564460],[268435584,134873152,-13247605096148654,-13247603792440361],[268435584,134874112,-13247605066155522,-13247603822433492],[268435584,135267336,1975301917270118,1975303102434961],[268435584,135790600,-26495210066338854,-26495207710839176],[268435584,135921664,-24519907696178166,-24519905061294785],[268435584,201326592,6623799170377024,6623805273917482],[268435584,201457672,4648499056652180,4648500367937249],[268435584,201850888,6623801098016986,6623803346277523],[268435584,201850944,6623801107293350,6623803337001160],[268435584,201851904,6623801159997192,6623803284297315],[268435584,201981952,26495207121529005,26495210655649026],[268435584,202376192,1975301917236486,1975303102468593],[268435584,202899456,47064508673192612,47064511822048211],[268435584,268435656,6623798927600937,6623805516693572],[268435584,268436616,6623799192952293,6623805251342207],[268435584,268566664,-7901216780706716,-7901203298113598],[268435584,268566720,-4648502836441441,-4648496588147988],[268435584,268567680,-4648502614033929,-4648496810555499],[268435584,268599424,-9296999886451704,-9296998962727152],[268435584,268959874,8599101184095716,8599108279903872],[268435584,268959876,-4648501379109327,-4648498045480102],[268435584,268959880,-166718780962043040,-166718724742007499],[268435584,268960968,-31143710514241570,-31143706687525880],[268435584,268992640,9296996568177046,9297002281001814],[268435584,269090944,235357851276653147,235357909101556156],[268435584,269090954,1975301824995317,1975303194709763],[268435584,269090956,22544603251852693,22544604485915178],[268435584,269091016,47064508360216381,47064512135024435],[268435584,269091976,26495207121529005,26495210655649026],[268435584,269092032,24519905258499972,24519907498972975],[268435584,269123720,-13247605061713792,-13247603826875223],[268435584,269484168,-4648502481944947,-4648496942644475],[268435584,269615232,9296996307740651,9297002541438203],[268435584,270008520,24519905293069738,24519907464403207],[268435584,270009480,47064508673192612,47064511822048211],[268435584,270139528,-9297000814034204,-9296998035144653],[268435584,270139584,-11272302707496740,-11272301161387192],[268435584,270140544,-24519907696178166,-24519905061294785],[268435584,335544456,9296994579848082,9297004269330780],[268435584,335544512,4648497289301856,4648502135287572],[268435584,335545472,4648497448264558,4648501976324875],[268435584,335675520,-7901216811716128,-7901203267104184],[268435584,335675530,4648499019397906,4648500405191522],[268435584,335675532,1975301885638543,1975303134066535],[268435584,335675592,1975301824995317,1975303194709763],[268435584,335676552,4648499056652179,4648500367937248],[268435584,335708296,-13247605067077166,-13247603821511848],[268435584,336068736,-85257851747913146,-85257795604898244],[268435584,336068808,6623801015151933,6623803429142575],[268435584,336069768,6623801098016984,6623803346277521],[268435584,336069824,6623801102928978,6623803341365525],[268435584,336199816,-45089213226916902,-45089202248618840],[268435584,336199872,-26495210251583166,-26495207525594866],[268435584,336200832,-26495210186613570,-26495207590564460],[268435584,336232576,-13247605061713792,-13247603826875223],[268435584,336593024,-4648502490229551,-4648496934359881],[268435584,337117320,-13247605067077166,-13247603821511848],[268435584,337117376,-13247605061578886,-13247603827010127],[268435584,337118336,-26495210066338854,-26495207710839176],[268435584,337248384,-9297000814034204,-9296998035144653],[268435584,402653320,4648497449753834,4648501974835595],[268435584,402784384,-4648502622318527,-4648496802270899],[268435584,403177672,6623801086208550,6623803358085955],[268435584,403178632,6623801159997192,6623803284297315],[268435584,403308680,-26495210186613570,-26495207590564460],[268435584,403308736,-13247605096148654,-13247603792440361],[268435584,403309696,-13247605066155522,-13247603822433492],[268435584,403702920,1975301917270118,1975303102434961],[268435584,404226184,-26495210066338854,-26495207710839176],[268435584,404357248,-24519907696178166,-24519905061294785],[268435584,469762176,6623799170377024,6623805273917482],[268435584,469893256,4648499056652180,4648500367937249],[268435584,470286472,6623801098016986,6623803346277523],[268435584,470286528,6623801107293350,6623803337001160],[268435584,470287488,6623801159997192,6623803284297315],[268435584,470417536,26495207121529005,26495210655649026],[268435584,470811776,1975301917236486,1975303102468593],[268435584,471335040,47064508673192612,47064511822048211],[268435584,1074266112,-4648501379109328,-4648498045480103],[268435584,1140981768,1975301885638544,1975303134066536],[268435584,1141506048,22544603251852693,22544604485915178],[268435584,1342701696,-4648501379109328,-4648498045480103],[268435584,1409417352,1975301885638544,1975303134066536],[268435584,1409941632,22544603251852693,22544604485915178],[268435584,17592186568704,11272298321696800,11272305547187129],[268435584,17592253284360,-13247605137681374,-13247603750907644],[268435584,17592253808640,1975301819477018,1975303200228061],[268435584,17592455004288,11272298321696800,11272305547187129],[268435584,17592521719944,-13247605137681374,-13247603750907644],[268435584,17592522244224,1975301819477018,1975303200228061],[268435584,35184372088840,1975300055801777,1975304963903298],[268435584,35184372219904,-1975305698740355,-1975299320964727],[268435584,35184372613192,24519905182726150,24519907574746803],[268435584,35184372614152,24519905262899363,24519907494573587],[268435584,35184372744200,-26495210262619762,-26495207514558268],[268435584,35184372744256,-13247605134312055,-13247603754276960],[268435584,35184372745216,-13247605101666952,-13247603786922062],[268435584,35184373661704,-13247605066127948,-13247603822461068],[268435584,35184373792768,-11272302715781341,-11272301153102595],[268435584,35184439197696,-11272305322642808,-11272298546241124],[268435584,35184439328776,1975301819477018,1975303200228061],[268435584,35184439721992,-11272303149817323,-11272300719066616],[268435584,35184439722048,-11272303138139186,-11272300730744752],[268435584,35184439723008,-11272303079253853,-11272300789630083],[268435584,35184439853056,47064508334725266,47064512160515549],[268435584,35184440770560,24519905280236082,24519907477236870],[268435584,35184506830856,-11272303061044145,-11272300807839789],[268435584,35184506961920,24519905244697076,24519907512775874],[268435584,35184573939712,-13247606381210832,-13247602507378184],[268435584,35184640524424,1975300055801777,1975304963903298],[268435584,35184640655488,-1975305698740355,-1975299320964727],[268435584,35184641048776,24519905182726150,24519907574746803],[268435584,35184641049736,24519905262899363,24519907494573587],[268435584,35184641179784,-26495210262619762,-26495207514558268],[268435584,35184641179840,-13247605134312055,-13247603754276960],[268435584,35184641180800,-13247605101666952,-13247603786922062],[268435584,35184642097288,-13247605066127948,-13247603822461068],[268435584,35184642228352,-11272302715781341,-11272301153102595],[268435584,35184707633280,-11272305322642808,-11272298546241124],[268435584,35184707764360,1975301819477018,1975303200228061],[268435584,35184708157576,-11272303149817323,-11272300719066616],[268435584,35184708157632,-11272303138139186,-11272300730744752],[268435584,35184708158592,-11272303079253853,-11272300789630083],[268435584,35184708288640,47064508334725266,47064512160515549],[268435584,35184709206144,24519905280236082,24519907477236870],[268435584,35184775266440,-11272303061044145,-11272300807839789],[268435584,35184775397504,24519905244697076,24519907512775874],[268435584,35184842375296,-13247606381210832,-13247602507378184],[268435590,524296,-11272303056635485,-11272300812248450],[268435590,524302,-11272303056635485,-11272300812248450],[268435590,268959880,-11272303056635485,-11272300812248450],[268435590,268959886,-11272303056635485,-11272300812248450],[268435593,524290,13247603792440361,13247605096148654],[268435593,524292,-1975303134066536,-1975301885638544],[268435593,524299,13247603792440361,13247605096148654],[268435593,524301,-1975303134066536,-1975301885638544],[268435593,268959874,13247603792440361,13247605096148654],[268435593,268959876,-1975303134066536,-1975301885638544],[268435593,268959883,13247603792440361,13247605096148654],[268435593,268959885,-1975303134066536,-1975301885638544],[268435594,130,-1975304416511920,-1975300603193161],[268435594,136,1975300603193161,1975304416511920],[268435594,524289,-13247605096148654,-13247603792440361],[268435594,524292,13247603792440361,13247605096148654],[268435594,524299,-13247605096148654,-13247603792440361],[268435594,524302,13247603792440361,13247605096148654],[268435594,524352,-26495210251583166,-26495207525594866],[268435594,524362,-19871408468202250,-19871404864681274],[268435594,524482,17896101722460043,17896106590718401],[268435594,524488,-24519907605870334,-24519905151602618],[268435594,525442,24519905258499972,24519907498972975],[268435594,525448,-24519907498972975,-24519905258499972],[268435594,655360,13247603754276960,13247605134312055],[268435594,655370,15222905579272277,15222908329021818],[268435594,655490,-47064512135024435,-47064508360216381],[268435594,655496,45089206368525624,45089209107010112],[268435594,1572994,-22544604489700504,-22544603248067364],[268435594,1573000,22544603248067364,22544604489700504],[268435594,67239946,4648499019397906,4648500405191522],[268435594,67240066,-6623803429142575,-6623801015151933],[268435594,67240072,1975301824995317,1975303194709763],[268435594,67633282,-1975303194709763,-1975301824995317],[268435594,67633288,1975301824995317,1975303194709763],[268435594,134742146,-1975303161793801,-1975301857911278],[268435594,134742152,1975301857911278,1975303161793801],[268435594,268435458,1975300603193161,1975304416511920],[268435594,268435464,-1975304416511920,-1975300603193161],[268435594,268959810,-24519907605870334,-24519905151602618],[268435594,268959816,17896101722460043,17896106590718401],[268435594,268959873,-13247605096148654,-13247603792440361],[268435594,268959876,13247603792440361,13247605096148654],[268435594,268959883,-13247605096148654,-13247603792440361],[268435594,268959886,13247603792440361,13247605096148654],[268435594,268959936,-19871408468202250,-19871404864681274],[268435594,268959946,-26495210251583166,-26495207525594866],[268435594,268960770,-24519907498972975,-24519905258499972],[268435594,268960776,24519905258499972,24519907498972975],[268435594,269090818,45089206368525624,45089209107010112],[268435594,269090824,-47064512135024435,-47064508360216381],[268435594,269090944,15222905579272277,15222908329021818],[268435594,269090954,13247603754276960,13247605134312055],[268435594,270008322,22544603248067364,22544604489700504],[268435594,270008328,-22544604489700504,-22544603248067364],[268435594,335675394,1975301824995317,1975303194709763],[268435594,335675400,-6623803429142575,-6623801015151933],[268435594,335675520,4648499019397906,4648500405191522],[268435594,336068610,1975301824995317,1975303194709763],[268435594,336068616,-1975303194709763,-1975301824995317],[268435594,403177474,1975301857911278,1975303161793801],[268435594,403177480,-1975303161793801,-1975301857911278],[268435594,35184372613250,-22544604548409457,-22544603189358414],[268435594,35184372613256,22544603189358414,22544604548409457],[268435594,35184641048578,22544603189358414,22544604548409457],[268435594,35184641048584,-22544604548409457,-22544603189358414],[268435596,132,-4648501505889997,-4648497918699427],[268435596,136,4648497918699427,4648501505889997],[268435596,524289,1975301885638544,1975303134066536],[268435596,524290,-1975303134066536,-1975301885638544],[268435596,524301,1975301885638544,1975303134066536],[268435596,524302,-1975303134066536,-1975301885638544],[268435596,524484,6623801079994226,6623803364300278],[268435596,524488,-6623803364300278,-6623801079994226],[268435596,525444,6623801159997192,6623803284297315],[268435596,525448,-6623803284297315,-6623801159997192],[268435596,557056,1975301885115096,1975303134589986],[268435596,557068,1975301885115096,1975303134589986],[268435596,655360,-1975303134589986,-1975301885115096],[268435596,655372,20569300117262707,20569302600800082],[268435596,655492,-26495210655649026,-26495207121529005],[268435596,655496,3950603717154982,3950606322255178],[268435596,1572996,-1975303102434961,-1975301917270118],[268435596,1573000,1975301917270118,1975303102434961],[268435596,67239948,1975301885638543,1975303134066535],[268435596,67240068,-6623803346277521,-6623801098016984],[268435596,67240072,4648499056652179,4648500367937248],[268435596,67633284,-4648500367937248,-4648499056652179],[268435596,67633288,4648499056652179,4648500367937248],[268435596,134742148,-4648500337588616,-4648499087000812],[268435596,134742152,4648499087000812,4648500337588616],[268435596,268435460,4648497918699427,4648501505889997],[268435596,268435464,-4648501505889997,-4648497918699427],[268435596,268959812,-6623803364300278,-6623801079994226],[268435596,268959816,6623801079994226,6623803364300278],[268435596,268959873,1975301885638544,1975303134066536],[268435596,268959874,-1975303134066536,-1975301885638544],[268435596,268959885,1975301885638544,1975303134066536],[268435596,268959886,-1975303134066536,-1975301885638544],[268435596,268960772,-6623803284297315,-6623801159997192],[268435596,268960776,6623801159997192,6623803284297315],[268435596,268992640,1975301885115096,1975303134589986],[268435596,268992652,1975301885115096,1975303134589986],[268435596,269090820,3950603717154982,3950606322255178],[268435596,269090824,-26495210655649026,-26495207121529005],[268435596,269090944,20569300117262707,20569302600800082],[268435596,269090956,-1975303134589986,-1975301885115096],[268435596,270008324,1975301917270118,1975303102434961],[268435596,270008328,-1975303102434961,-1975301917270118],[268435596,335675396,4648499056652179,4648500367937248],[268435596,335675400,-6623803346277521,-6623801098016984],[268435596,335675520,1975301885638543,1975303134066535],[268435596,336068612,4648499056652179,4648500367937248],[268435596,336068616,-4648500367937248,-4648499056652179],[268435596,403177476,4648499087000812,4648500337588616],[268435596,403177480,-4648500337588616,-4648499087000812],[268435596,35184372613252,-1975303161294799,-1975301858410281],[268435596,35184372613256,1975301858410281,1975303161294799],[268435596,35184641048580,1975301858410281,1975303161294799],[268435596,35184641048584,-1975303161294799,-1975301858410281],[268435649,524290,-4648500364875210,-4648499059714221],[268435649,524355,-4648500364875210,-4648499059714221],[268435649,268959874,-4648500364875210,-4648499059714221],[268435649,268959939,-4648500364875210,-4648499059714221],[268435650,130,-4648501614770600,-4648497809818828],[268435650,192,4648497809818828,4648501614770600],[268435650,524289,4648499059714221,4648500364875210],[268435650,524296,3950603642885640,3950606396524520],[268435650,524355,4648499059714221,4648500364875210],[268435650,524362,28470509652297966,28470513144585146],[268435650,524426,-17896106590718401,-17896101722460043],[268435650,524488,-6623803429142575,-6623801015151933],[268435650,524544,-4648500364875210,-4648499059714221],[268435650,524610,-4648500364875210,-4648499059714221],[268435650,525442,6623801102928978,6623803341365525],[268435650,525504,-6623803341365525,-6623801102928978],[268435650,655490,-1975303194709763,-1975301824995317],[268435650,655552,1975301824995317,1975303194709763],[268435650,1572994,-1975303130040923,-1975301889664154],[268435650,1573056,1975301889664154,1975303130040923],[268435650,67633282,-4648500405191522,-4648499019397906],[268435650,67633344,4648499019397906,4648500405191522],[268435650,134742146,-4648500367050864,-4648499057538562],[268435650,134742208,4648499057538562,4648500367050864],[268435650,268435458,4648497809818828,4648501614770600],[268435650,268435520,-4648501614770600,-4648497809818828],[268435650,268959754,-6623803429142575,-6623801015151933],[268435650,268959816,-17896106590718401,-17896101722460043],[268435650,268959873,4648499059714221,4648500364875210],[268435650,268959880,28470509652297966,28470513144585146],[268435650,268959939,4648499059714221,4648500364875210],[268435650,268959946,3950603642885640,3950606396524520],[268435650,268960128,-4648500364875210,-4648499059714221],[268435650,268960194,-4648500364875210,-4648499059714221],[268435650,268960770,-6623803341365525,-6623801102928978],[268435650,268960832,6623801102928978,6623803341365525],[268435650,269090818,1975301824995317,1975303194709763],[268435650,269090880,-1975303194709763,-1975301824995317],[268435650,270008322,1975301889664154,1975303130040923],[268435650,270008384,-1975303130040923,-1975301889664154],[268435650,336068610,4648499019397906,4648500405191522],[268435650,336068672,-4648500405191522,-4648499019397906],[268435650,403177474,4648499057538562,4648500367050864],[268435650,403177536,-4648500367050864,-4648499057538562],[268435650,35184372613250,-1975303193032786,-1975301826672296],[268435650,35184372613312,1975301826672296,1975303193032786],[268435650,35184641048578,1975301826672296,1975303193032786],[268435650,35184641048640,-1975303193032786,-1975301826672296],[268435652,524296,4648499059714221,4648500364875210],[268435652,524364,11272300812248450,11272303056635485],[268435652,524428,-6623803364300278,-6623801079994226],[268435652,268959816,-6623803364300278,-6623801079994226],[268435652,268959880,11272300812248450,11272303056635485],[268435652,268959948,4648499059714221,4648500364875210],[268435656,0,-22544604890140016,-22544602847627856],[268435656,72,6623798927600937,6623805516693572],[268435656,136,-13247606347638304,-13247602540950713],[268435656,192,-15920803552528152,-15920799740945212],[268435656,524290,22544601129070346,22544606608697526],[268435656,524292,-4648500364875210,-4648499059714221],[268435656,524362,-8599108279903872,-8599101184095716],[268435656,524364,-11272303056635485,-11272300812248450],[268435656,524426,24519905151602618,24519907605870334],[268435656,524428,6623801079994226,6623803364300278],[268435656,524482,6623801015151933,6623803429142575],[268435656,524544,13247603792440361,13247605096148654],[268435656,524616,6623801107293350,6623803337001160],[268435656,524736,6623801086208550,6623803358085955],[268435656,525312,-8599105559539709,-8599103904459875],[268435656,525384,-26495209977752878,-26495207799425147],[268435656,525448,17896103187855503,17896105125322940],[268435656,525504,-964466108,964466106],[268435656,655360,-1975303196554503,-1975301823150576],[268435656,655432,-3950609326662792,-3950600712747379],[268435656,655496,3950601242433032,3950608796977140],[268435656,655552,-1975303194709763,-1975301824995317],[268435656,1572936,24519905293069738,24519907464403207],[268435656,1573000,-22544604489700504,-22544603248067364],[268435656,1573056,-1975303130040923,-1975301889664154],[268435656,67240008,1975301824995317,1975303194709763],[268435656,67240072,-1975303194709763,-1975301824995317],[268435656,67633224,6623801015151933,6623803429142575],[268435656,67633288,-1975303194709763,-1975301824995317],[268435656,67633344,-4648500405191522,-4648499019397906],[268435656,134742088,6623801086208550,6623803358085955],[268435656,134742152,-1975303161793801,-1975301857911278],[268435656,134742208,-4648500367050864,-4648499057538562],[268435656,268435464,-15920803552528152,-15920799740945212],[268435656,268435520,-13247606347638304,-13247602540950713],[268435656,268435584,6623798927600937,6623805516693572],[268435656,268435656,-22544604890140016,-22544602847627856],[268435656,268959754,6623801015151933,6623803429142575],[268435656,268959810,24519905151602618,24519907605870334],[268435656,268959812,6623801079994226,6623803364300278],[268435656,268959874,-8599108279903872,-8599101184095716],[268435656,268959876,-11272303056635485,-11272300812248450],[268435656,268959946,22544601129070346,22544606608697526],[268435656,268959948,-4648500364875210,-4648499059714221],[268435656,268960008,6623801086208550,6623803358085955],[268435656,268960128,6623801107293350,6623803337001160],[268435656,268960200,13247603792440361,13247605096148654],[268435656,268960776,-964466108,964466106],[268435656,268960832,17896103187855503,17896105125322940],[268435656,268960896,-26495209977752878,-26495207799425147],[268435656,268960968,-8599105559539709,-8599103904459875],[268435656,269090824,-1975303194709763,-1975301824995317],[268435656,269090880,3950601242433032,3950608796977140],[268435656,269090944,-3950609326662792,-3950600712747379],[268435656,269091016,-1975303196554503,-1975301823150576],[268435656,270008328,-1975303130040923,-1975301889664154],[268435656,270008384,-22544604489700504,-22544603248067364],[268435656,270008448,24519905293069738,24519907464403207],[268435656,335675456,-1975303194709763,-1975301824995317],[268435656,335675520,1975301824995317,1975303194709763],[268435656,336068616,-4648500405191522,-4648499019397906],[268435656,336068672,-1975303194709763,-1975301824995317],[268435656,336068736,6623801015151933,6623803429142575],[268435656,403177480,-4648500367050864,-4648499057538562],[268435656,403177536,-1975303161793801,-1975301857911278],[268435656,403177600,6623801086208550,6623803358085955],[268435656,35184372613192,24519905182726150,24519907574746803],[268435656,35184372613256,-22544604548409457,-22544603189358414],[268435656,35184372613312,-1975303193032786,-1975301826672296],[268435656,35184641048584,-1975303193032786,-1975301826672296],[268435656,35184641048640,-22544604548409457,-22544603189358414],[268435656,35184641048704,24519905182726150,24519907574746803],[268435712,524482,4648499059714221,4648500364875210],[268435712,524488,-13247605096148654,-13247603792440361],[268435712,525448,1975301885638544,1975303134066536],[268435712,655552,1975301857911278,1975303161793801],[268435712,656512,22544603248067364,22544604489700504],[268435712,1704960,-13247605066971786,-13247603821617226],[268435712,67633344,4648499057538562,4648500367050864],[268435712,67634304,1975301889664154,1975303130040923],[268435712,68682752,-13247605061578886,-13247603827010127],[268435712,202376192,1975301891852867,1975303127852212],[268435712,268960194,4648499059714221,4648500364875210],[268435712,268960200,-13247605096148654,-13247603792440361],[268435712,268961160,1975301885638544,1975303134066536],[268435712,269091264,1975301857911278,1975303161793801],[268435712,269092224,22544603248067364,22544604489700504],[268435712,270140672,-13247605066971786,-13247603821617226],[268435712,336069056,4648499057538562,4648500367050864],[268435712,336070016,1975301889664154,1975303130040923],[268435712,337118464,-13247605061578886,-13247603827010127],[268435712,470811904,1975301891852867,1975303127852212],[268435778,524482,4648499059714221,4648500364875210],[268435778,524674,-6623803337001160,-6623801107293350],[268435778,524736,1975301891852867,1975303127852212],[268435778,268959874,1975301891852867,1975303127852212],[268435778,268959936,-6623803337001160,-6623801107293350],[268435778,268960128,4648499059714221,4648500364875210],[268435784,524488,-6623803337001160,-6623801107293350],[268435784,524680,6623801107293350,6623803337001160],[268435784,268959936,6623801107293350,6623803337001160],[268435784,268960128,-6623803337001160,-6623801107293350],[268435842,524352,6623801107293350,6623803337001160],[268435842,524610,6623801107293350,6623803337001160],[268435842,268959936,6623801107293350,6623803337001160],[268435842,268960194,6623801107293350,6623803337001160],[268435848,524352,-13247605096148654,-13247603792440361],[268435848,524616,-6623803337001160,-6623801107293350],[268435848,524736,-6623803358085955,-6623801086208550],[268435848,525312,1975301885638544,1975303134066536],[268435848,525576,26495207799425147,26495209977752878],[268435848,525696,-24519907464403207,-24519905293069738],[268435848,268959816,-6623803358085955,-6623801086208550],[268435848,268959936,-6623803337001160,-6623801107293350],[268435848,268960200,-13247605096148654,-13247603792440361],[268435848,268960776,-24519907464403207,-24519905293069738],[268435848,268960896,26495207799425147,26495209977752878],[268435848,268961160,1975301885638544,1975303134066536],[268435904,524290,-1975303127852212,-1975301891852867],[268435904,524488,-6623803358085955,-6623801086208550],[268435904,524610,-1975303127852212,-1975301891852867],[268435904,524680,6623801086208550,6623803358085955],[268435904,655552,1975301857911278,1975303161793801],[268435904,655744,-1975303161793801,-1975301857911278],[268435904,67633344,4648499057538562,4648500367050864],[268435904,67633536,-4648500367050864,-4648499057538562],[268435904,268959816,6623801086208550,6623803358085955],[268435904,268959874,-1975303127852212,-1975301891852867],[268435904,268960008,-6623803358085955,-6623801086208550],[268435904,268960194,-1975303127852212,-1975301891852867],[268435904,269090880,-1975303161793801,-1975301857911278],[268435904,269091072,1975301857911278,1975303161793801],[268435904,336068672,-4648500367050864,-4648499057538562],[268435904,336068864,4648499057538562,4648500367050864],[268436480,136,-15920803437427959,-15920799856045399],[268436480,131200,15920798744910351,15920804548563011],[268436480,524296,-4648502482185233,-4648496942404193],[268436480,524488,8599103904459875,8599105559539709],[268436480,524680,-1975303134066536,-1975301885638544],[268436480,526472,-1975303127512530,-1975301892192549],[268436480,655360,3950601664814648,3950608374595511],[268436480,655496,-3950606322255178,-3950603717154982],[268436480,655552,-1975303161793801,-1975301857911278],[268436480,655744,-22544604489700504,-22544603248067364],[268436480,657536,-22544604485915178,-22544603251852693],[268436480,1179648,-1975305281023604,-1975299738681472],[268436480,1573000,-3950606237024947,-3950603802385214],[268436480,1704064,-22544606585988845,-22544601151779026],[268436480,1704192,13247603821617226,13247605066971786],[268436480,1705984,13247603826875223,13247605061713792],[268436480,3801088,13247603827702546,13247605060886466],[268436480,67108992,-4648501976324875,-4648497448264558],[268436480,67240072,-4648500367937248,-4648499056652179],[268436480,67633152,8599101370269630,8599108093729955],[268436480,67633288,-4648500367937248,-4648499056652179],[268436480,67633344,-4648500367050864,-4648499057538562],[268436480,67633536,-1975303130040923,-1975301889664154],[268436480,67635328,-1975303134066535,-1975301885638543],[268436480,67764352,26495207590564460,26495210186613570],[268436480,68157440,-3950609211113582,-3950600828296569],[268436480,68681856,22544601452067054,22544606285700820],[268436480,68681984,13247603827010127,13247605061578886],[268436480,68683776,13247603821511848,13247605067077166],[268436480,68812800,-3950606255704424,-3950603783705734],[268436480,70778880,13247603826875223,13247605061713792],[268436480,134742152,-4648500337588616,-4648499087000812],[268436480,134873216,13247603822433492,13247605066155522],[268436480,135921664,11272300724520905,11272303144363030],[268436480,201326592,-1975304235590111,-1975300784114970],[268436480,201851008,-6623803284297315,-6623801159997192],[268436480,202375296,-1975303102468593,-1975301917236486],[268436480,202375424,-1975303127852212,-1975301891852867],[268436480,202377216,-1975303134066536,-1975301885638544],[268436480,202899456,-7321700188581701,-7321693640892082],[268436480,204472320,-22544604485915178,-22544603251852693],[268436480,268436616,-15920803437427959,-15920799856045399],[268436480,268567680,15920798744910351,15920804548563011],[268436480,268960776,-4648502482185233,-4648496942404193],[268436480,268960968,8599103904459875,8599105559539709],[268436480,268961160,-1975303134066536,-1975301885638544],[268436480,268962952,-1975303127512530,-1975301892192549],[268436480,269091840,3950601664814648,3950608374595511],[268436480,269091976,-3950606322255178,-3950603717154982],[268436480,269092032,-1975303161793801,-1975301857911278],[268436480,269092224,-22544604489700504,-22544603248067364],[268436480,269094016,-22544604485915178,-22544603251852693],[268436480,269616128,-1975305281023604,-1975299738681472],[268436480,270009480,-3950606237024947,-3950603802385214],[268436480,270140544,-22544606585988845,-22544601151779026],[268436480,270140672,13247603821617226,13247605066971786],[268436480,270142464,13247603826875223,13247605061713792],[268436480,272237568,13247603827702546,13247605060886466],[268436480,335545472,-4648501976324875,-4648497448264558],[268436480,335676552,-4648500367937248,-4648499056652179],[268436480,336069632,8599101370269630,8599108093729955],[268436480,336069768,-4648500367937248,-4648499056652179],[268436480,336069824,-4648500367050864,-4648499057538562],[268436480,336070016,-1975303130040923,-1975301889664154],[268436480,336071808,-1975303134066535,-1975301885638543],[268436480,336200832,26495207590564460,26495210186613570],[268436480,336593920,-3950609211113582,-3950600828296569],[268436480,337118336,22544601452067054,22544606285700820],[268436480,337118464,13247603827010127,13247605061578886],[268436480,337120256,13247603821511848,13247605067077166],[268436480,337249280,-3950606255704424,-3950603783705734],[268436480,339215360,13247603826875223,13247605061713792],[268436480,403178632,-4648500337588616,-4648499087000812],[268436480,403309696,13247603822433492,13247605066155522],[268436480,404358144,11272300724520905,11272303144363030],[268436480,469763072,-1975304235590111,-1975300784114970],[268436480,470287488,-6623803284297315,-6623801159997192],[268436480,470811776,-1975303102468593,-1975301917236486],[268436480,470811904,-1975303127852212,-1975301891852867],[268436480,470813696,-1975303134066536,-1975301885638544],[268436480,471335936,-7321700188581701,-7321693640892082],[268436480,472908800,-22544604485915178,-22544603251852693],[268436480,739246080,-1975303127512529,-1975301892192548],[268436480,1007682560,-1975303127512529,-1975301892192548],[268436480,35184372613256,-1975303161294799,-1975301858410281],[268436480,35184372744320,13247603786922062,13247605101666952],[268436480,35184373792768,-1975303142599947,-1975301877105131],[268436480,35184439722112,11272300789630083,11272303079253853],[268436480,35184440770560,-24519907477236870,-24519905280236082],[268436480,35184574464000,26495207784975390,26495209992202640],[268436480,35184641049736,-1975303161294799,-1975301858410281],[268436480,35184641180800,13247603786922062,13247605101666952],[268436480,35184642229248,-1975303142599947,-1975301877105131],[268436480,35184708158592,11272300789630083,11272303079253853],[268436480,35184709207040,-24519907477236870,-24519905280236082],[268436480,35184842900480,26495207784975390,26495209992202640],[268436480,70368946552832,-22544604485800118,-22544603251967752],[268436480,70369214989312,-22544604485800118,-22544603251967752],[268436490,525442,-11272303056635485,-11272300812248450],[268436490,525448,11272300812248450,11272303056635485],[268436490,268959874,11272300812248450,11272303056635485],[268436490,268959880,-11272303056635485,-11272300812248450],[268436492,525444,6623801172992632,6623803271301876],[268436492,525448,-6623803271301876,-6623801172992632],[268436492,268959876,-6623803271301876,-6623801172992632],[268436492,268959880,6623801172992632,6623803271301876],[268436546,525442,6623801107293350,6623803337001160],[268436546,525504,-6623803337001160,-6623801107293350],[268436546,268959874,-6623803337001160,-6623801107293350],[268436546,268959936,6623801107293350,6623803337001160],[268436552,524416,31143706687525880,31143710514241570],[268436552,524488,26495207799425147,26495209977752878],[268436552,525448,-6623803337001160,-6623801107293350],[268436552,525504,11272300812248450,11272303056635485],[268436552,268959880,11272300812248450,11272303056635485],[268436552,268959936,-6623803337001160,-6623801107293350],[268436552,268960896,26495207799425147,26495209977752878],[268436552,268960968,31143706687525880,31143710514241570],[268436610,524296,-13247605066971786,-13247603821617226],[268436610,524352,-13247605061578886,-13247603827010127],[268436610,524426,-24519907498972975,-24519905258499972],[268436610,524482,-6623803341365525,-6623801102928978],[268436610,525322,11272300812248450,11272303056635485],[268436610,525378,-6623803337001160,-6623801107293350],[268436610,268959880,11272300812248450,11272303056635485],[268436610,268959936,-6623803337001160,-6623801107293350],[268436610,268960776,-24519907498972975,-24519905258499972],[268436610,268960832,-6623803341365525,-6623801102928978],[268436610,268960906,-13247605066971786,-13247603821617226],[268436610,268960962,-13247605061578886,-13247603827010127],[268436612,524296,-13247605033169427,-13247603855419588],[268436612,524428,-6623803284297315,-6623801159997192],[268436612,525324,-6623803271301876,-6623801172992632],[268436612,268959880,-6623803271301876,-6623801172992632],[268436612,268960776,-6623803284297315,-6623801159997192],[268436612,268960908,-13247605033169427,-13247603855419588],[268436616,0,-22544604789079442,-22544602948688426],[268436616,136,-15920803437427959,-15920799856045399],[268436616,1032,6623799192952293,6623805251342207],[268436616,1152,-13247606153429752,-13247602735159258],[268436616,524290,13247603821617226,13247605066971786],[268436616,524292,13247603855419588,13247605033169427],[268436616,524352,-11272302707496740,-11272301161387192],[268436616,524426,24519905258499972,24519907498972975],[268436616,524428,6623801159997192,6623803284297315],[268436616,524488,-17896105125322940,-17896103187855503],[268436616,524544,-1975303134066536,-1975301885638544],[268436616,525322,-11272303056635485,-11272300812248450],[268436616,525324,6623801172992632,6623803271301876],[268436616,525384,6623801107293350,6623803337001160],[268436616,525504,-932612781,932612782],[268436616,525576,-26495209977752878,-26495207799425147],[268436616,525696,24519905293069738,24519907464403207],[268436616,526336,-1975303127512530,-1975301892192549],[268436616,527368,-26495209978356470,-26495207798821558],[268436616,527488,24519905292829456,24519907464643493],[268436616,655360,13247603822461068,13247605066127948],[268436616,655496,45089204203543548,45089211271992192],[268436616,656392,-9297003434088727,-9296995415090126],[268436616,656512,-22544604485915178,-22544603251852693],[268436616,1572864,-1975303134589986,-1975301885115096],[268436616,1573000,-1975303102434961,-1975301917270118],[268436616,1573896,-3950608765320955,-3950601274089200],[268436616,1574016,3950601736070570,3950608303339582],[268436616,67240072,-4648500367937248,-4648499056652179],[268436616,67240968,4648499056652179,4648500367937248],[268436616,67633288,-4648500367937248,-4648499056652179],[268436616,67634184,6623801098016984,6623803346277521],[268436616,67634304,-1975303134066535,-1975301885638543],[268436616,134742152,-4648500337588616,-4648499087000812],[268436616,134743048,6623801159997192,6623803284297315],[268436616,134743168,-1975303102434961,-1975301917270118],[268436616,135267336,1975301917270118,1975303102434961],[268436616,135267456,-1975303102434961,-1975301917270118],[268436616,268435464,-13247606153429752,-13247602735159258],[268436616,268435584,6623799192952293,6623805251342207],[268436616,268436480,-15920803437427959,-15920799856045399],[268436616,268436616,-22544604789079442,-22544602948688426],[268436616,268959816,-932612781,932612782],[268436616,268959874,-11272303056635485,-11272300812248450],[268436616,268959876,6623801172992632,6623803271301876],[268436616,268959936,6623801107293350,6623803337001160],[268436616,268960008,24519905293069738,24519907464403207],[268436616,268960128,-26495209977752878,-26495207799425147],[268436616,268960770,24519905258499972,24519907498972975],[268436616,268960772,6623801159997192,6623803284297315],[268436616,268960832,-17896105125322940,-17896103187855503],[268436616,268960906,13247603821617226,13247605066971786],[268436616,268960908,13247603855419588,13247605033169427],[268436616,268960968,-11272302707496740,-11272301161387192],[268436616,268961160,-1975303134066536,-1975301885638544],[268436616,268961800,24519905292829456,24519907464643493],[268436616,268961920,-26495209978356470,-26495207798821558],[268436616,268962952,-1975303127512530,-1975301892192549],[268436616,269090824,-22544604485915178,-22544603251852693],[268436616,269090944,-9297003434088727,-9296995415090126],[268436616,269091840,45089204203543548,45089211271992192],[268436616,269091976,13247603822461068,13247605066127948],[268436616,270008328,3950601736070570,3950608303339582],[268436616,270008448,-3950608765320955,-3950601274089200],[268436616,270009344,-1975303102434961,-1975301917270118],[268436616,270009480,-1975303134589986,-1975301885115096],[268436616,335675520,4648499056652179,4648500367937248],[268436616,335676416,-4648500367937248,-4648499056652179],[268436616,336068616,-1975303134066535,-1975301885638543],[268436616,336068736,6623801098016984,6623803346277521],[268436616,336069632,-4648500367937248,-4648499056652179],[268436616,403177480,-1975303102434961,-1975301917270118],[268436616,403177600,6623801159997192,6623803284297315],[268436616,403178496,-4648500337588616,-4648499087000812],[268436616,403701768,-1975303102434961,-1975301917270118],[268436616,403701888,1975301917270118,1975303102434961],[268436616,35184372613256,-1975303161294799,-1975301858410281],[268436616,35184372614152,24519905262899363,24519907494573587],[268436616,35184372614272,-22544604485800118,-22544603251967752],[268436616,35184641048584,-22544604485800118,-22544603251967752],[268436616,35184641048704,24519905262899363,24519907494573587],[268436616,35184641049600,-1975303161294799,-1975301858410281],[268436672,524290,13247603827010127,13247605061578886],[268436672,524296,-11272302707603802,-11272301161280132],[268436672,524482,6623801102928978,6623803341365525],[268436672,524488,-964466106,964466108],[268436672,525378,6623801107293350,6623803337001160],[268436672,525384,-11272303056635485,-11272300812248450],[268436672,525448,-932612782,932612781],[268436672,655552,-1975303161793801,-1975301857911278],[268436672,656448,24519905258499972,24519907498972975],[268436672,656512,-22544604489700504,-22544603248067364],[268436672,67633344,-4648500367050864,-4648499057538562],[268436672,67634240,6623801102928978,6623803341365525],[268436672,67634304,-1975303130040923,-1975301889664154],[268436672,268959816,-932612782,932612781],[268436672,268959874,6623801107293350,6623803337001160],[268436672,268959880,-11272303056635485,-11272300812248450],[268436672,268960770,6623801102928978,6623803341365525],[268436672,268960776,-964466106,964466108],[268436672,268960962,13247603827010127,13247605061578886],[268436672,268960968,-11272302707603802,-11272301161280132],[268436672,269090880,-22544604489700504,-22544603248067364],[268436672,269090944,24519905258499972,24519907498972975],[268436672,269091840,-1975303161793801,-1975301857911278],[268436672,336068672,-1975303130040923,-1975301889664154],[268436672,336068736,6623801102928978,6623803341365525],[268436672,336069632,-4648500367050864,-4648499057538562],[268436744,524680,-26495209977752878,-26495207799425147],[268436744,525448,26495207799425147,26495209977752878],[268436744,268960128,26495207799425147,26495209977752878],[268436744,268960896,-26495209977752878,-26495207799425147],[268436864,524680,24519905293069738,24519907464403207],[268436864,525448,-24519907464403207,-24519905293069738],[268436864,655744,-22544604489700504,-22544603248067364],[268436864,656512,22544603248067364,22544604489700504],[268436864,67633536,-1975303130040923,-1975301889664154],[268436864,67634304,1975301889664154,1975303130040923],[268436864,268960008,-24519907464403207,-24519905293069738],[268436864,268960776,24519905293069738,24519907464403207],[268436864,269091072,22544603248067364,22544604489700504],[268436864,269091840,-22544604489700504,-22544603248067364],[268436864,336068864,1975301889664154,1975303130040923],[268436864,336069632,-1975303130040923,-1975301889664154],[268437504,525448,1975301892192549,1975303127512530],[268437504,656512,22544603251852693,22544604485915178],[268437504,1704960,-13247605061713792,-13247603826875223],[268437504,3801088,-13247605060886466,-13247603827702546],[268437504,67634304,1975301885638543,1975303134066535],[268437504,68682752,-13247605067077166,-13247603821511848],[268437504,70778880,-13247605061713792,-13247603826875223],[268437504,202376192,1975301885638544,1975303134066536],[268437504,204472320,22544603251852693,22544604485915178],[268437504,268962952,1975301892192549,1975303127512530],[268437504,269094016,22544603251852693,22544604485915178],[268437504,270142464,-13247605061713792,-13247603826875223],[268437504,272238592,-13247605060886466,-13247603827702546],[268437504,336071808,1975301885638543,1975303134066535],[268437504,337120256,-13247605067077166,-13247603821511848],[268437504,339216384,-13247605061713792,-13247603826875223],[268437504,470813696,1975301885638544,1975303134066536],[268437504,472909824,22544603251852693,22544604485915178],[268437504,740294656,1975301892192548,1975303127512529],[268437504,1008732160,1975301892192548,1975303127512529],[268437640,525312,1975301892192549,1975303127512530],[268437640,527368,26495207798821558,26495209978356470],[268437640,527488,-24519907464643493,-24519905292829456],[268437640,268960776,-24519907464643493,-24519905292829456],[268437640,268960896,26495207798821558,26495209978356470],[268437640,268962952,1975301892192549,1975303127512530],[268438536,525448,26495207798821558,26495209978356470],[268438536,526472,-26495209978356470,-26495207798821558],[268438536,268960896,-26495209978356470,-26495207798821558],[268438536,268961920,26495207798821558,26495209978356470],[268438656,525448,-24519907464643493,-24519905292829456],[268438656,526472,24519905292829456,24519907464643493],[268438656,656512,22544603251852693,22544604485915178],[268438656,657536,-22544604485915178,-22544603251852693],[268438656,67634304,1975301885638543,1975303134066535],[268438656,67635328,-1975303134066535,-1975301885638543],[268438656,268960776,24519905292829456,24519907464643493],[268438656,268961800,-24519907464643493,-24519905292829456],[268438656,269091840,-22544604485915178,-22544603251852693],[268438656,269092864,22544603251852693,22544604485915178],[268438656,336069632,-1975303134066535,-1975301885638543],[268438656,336070656,1975301885638543,1975303134066535],[268468224,131076,-3950608433100829,-3950601606309328],[268468224,131080,6623798642954895,6623805801339609],[268468224,131200,-4648502626375994,-4648496798213434],[268468224,524292,-1975304605835260,-1975300413869816],[268468224,524296,-1975305288493376,-1975299731211704],[268468224,524416,4648498045480101,4648501379109326],[268468224,524428,-1975303134589986,-1975301885115096],[268468224,655372,-45089208969627452,-45089206505908288],[268468224,655492,-1975303134589986,-1975301885115096],[268468224,655496,26495207577110300,26495210200067732],[268468224,1703940,-22544604430576096,-22544603307191776],[268468224,1703944,-1975303102468593,-1975301917236486],[268468224,1704064,11272301204057192,11272302664826744],[268468224,67108868,-3950609211113582,-3950600828296569],[268468224,67108872,-4648502490229551,-4648496934359881],[268468224,67239948,-3950606258772122,-3950603780638034],[268468224,67764228,-49039815222920444,-49039810292025454],[268468224,67764232,15920798695415380,15920804598057982],[268468224,67764352,8599103424503113,8599106039496475],[268468224,134873092,-1975303102468593,-1975301917236486],[268468224,134873096,13247603822433492,13247605066155522],[268468224,134873216,-4648500337588616,-4648499087000812],[268468224,201457668,-1975303102434961,-1975301917270118],[268468224,201457672,-4648500337554984,-4648499087034444],[268468224,268599300,-3950608433100829,-3950601606309328],[268468224,268599304,6623798642954895,6623805801339609],[268468224,268599424,-4648502626375994,-4648496798213434],[268468224,268992516,-1975304605835260,-1975300413869816],[268468224,268992520,-1975305288493376,-1975299731211704],[268468224,268992640,4648498045480101,4648501379109326],[268468224,268992652,-1975303134589986,-1975301885115096],[268468224,269123596,-45089208969627452,-45089206505908288],[268468224,269123716,-1975303134589986,-1975301885115096],[268468224,269123720,26495207577110300,26495210200067732],[268468224,270172164,-22544604430576096,-22544603307191776],[268468224,270172168,-1975303102468593,-1975301917236486],[268468224,270172288,11272301204057192,11272302664826744],[268468224,335577092,-3950609211113582,-3950600828296569],[268468224,335577096,-4648502490229551,-4648496934359881],[268468224,335708172,-3950606258772122,-3950603780638034],[268468224,336232452,-49039815222920444,-49039810292025454],[268468224,336232456,15920798695415380,15920804598057982],[268468224,336232576,8599103424503113,8599106039496475],[268468224,403341316,-1975303102468593,-1975301917236486],[268468224,403341320,13247603822433492,13247605066155522],[268468224,403341440,-4648500337588616,-4648499087000812],[268468224,469925892,-1975303102434961,-1975301917270118],[268468224,469925896,-4648500337554984,-4648499087034444],[268468224,1073741828,13247602765618499,13247606122970514],[268468224,1074397188,26495207799404518,26495209977773508],[268468224,1074397192,-22544604489700504,-22544603248067364],[268468224,1074397312,-1975303134066536,-1975301885638544],[268468224,1140981764,-7321700188594704,-7321693640879080],[268468224,1140981768,-3950606232509516,-3950603806900640],[268468224,1141374980,13247603826989498,13247605061599516],[268468224,1275068420,13247603855385956,13247605033203059],[268468224,1342210052,13247602765618499,13247606122970514],[268468224,1342865412,26495207799404518,26495209977773508],[268468224,1342865416,-22544604489700504,-22544603248067364],[268468224,1342865536,-1975303134066536,-1975301885638544],[268468224,1409449988,-7321700188594704,-7321693640879080],[268468224,1409449992,-3950606232509516,-3950603806900640],[268468224,1409843204,13247603826989498,13247605061599516],[268468224,1543536644,13247603855385956,13247605033203059],[268468224,17592253284356,-1975303134589986,-1975301885115096],[268468224,17592253284360,13247603788555150,13247605100033866],[268468224,17592521752580,-1975303134589986,-1975301885115096],[268468224,17592521752584,13247603788555150,13247605100033866],[268468224,17593326895108,13247603822461068,13247605066127948],[268468224,17593595363332,13247603822461068,13247605066127948],[268468224,35184372744196,-1975303142599947,-1975301877105131],[268468224,35184372744200,13247603786922062,13247605101666952],[268468224,35184372744320,-1975303161294799,-1975301858410281],[268468224,35184439328772,-22544604497985104,-22544603239782766],[268468224,35184439328776,-1975303167312100,-1975301852392980],[268468224,35184641212420,-1975303142599947,-1975301877105131],[268468224,35184641212424,13247603786922062,13247605101666952],[268468224,35184641212544,-1975303161294799,-1975301858410281],[268468224,35184707796996,-22544604497985104,-22544603239782766],[268468224,35184707797000,-1975303167312100,-1975301852392980],[268468224,35185512939524,13247603811716528,13247605076872486],[268468224,35185781407748,13247603811716528,13247605076872486],[268468224,140738629206020,-22544604485800118,-22544603251967752],[268468224,140738897674244,-22544604485800118,-22544603251967752],[268468229,688129,-13247605066971786,-13247603821617226],[268468229,688132,13247603821617226,13247605066971786],[268468229,67272705,-13247605061578886,-13247603827010127],[268468229,67272708,13247603827010127,13247605061578886],[268468229,269090817,13247603821617226,13247605066971786],[268468229,269090820,-13247605066971786,-13247603821617226],[268468229,335675393,13247603827010127,13247605061578886],[268468229,335675396,-13247605061578886,-13247603827010127],[268468229,1140883457,1975301891852867,1975303127852212],[268468229,1140883460,-1975303127852212,-1975301891852867],[268468229,1409286145,-1975303127852212,-1975301891852867],[268468229,1409286148,1975301891852867,1975303127852212],[268468234,688130,24519905258499972,24519907498972975],[268468234,688136,-24519907498972975,-24519905258499972],[268468234,67272706,6623801102928978,6623803341365525],[268468234,67272712,-6623803341365525,-6623801102928978],[268468234,269090818,-24519907498972975,-24519905258499972],[268468234,269090824,24519905258499972,24519907498972975],[268468234,335675394,-6623803341365525,-6623801102928978],[268468234,335675400,6623801102928978,6623803341365525],[268468236,524428,-1975303134589986,-1975301885115096],[268468236,557192,1975301885115096,1975303134589986],[268468236,655372,-49039814477679612,-49039811037266288],[268468236,688132,37767509188400696,37767512457661269],[268468236,688136,11272298579605019,11272305289278916],[268468236,67239948,-28470513122209439,-28470509674673669],[268468236,67272708,19871405028479484,19871408304404039],[268468236,67272712,8599101370269630,8599108093729955],[268468236,268959876,1975301885115096,1975303134589986],[268468236,268992640,-1975303134589986,-1975301885115096],[268468236,269090820,11272298579605019,11272305289278916],[268468236,269090824,37767509188400696,37767512457661269],[268468236,269123584,-49039814477679612,-49039811037266288],[268468236,335675396,8599101370269630,8599108093729955],[268468236,335675400,19871405028479484,19871408304404039],[268468236,335708160,-28470513122209439,-28470509674673669],[268468236,1140883460,-1975303102468593,-1975301917236486],[268468236,1140883464,1975301917236486,1975303102468593],[268468236,1409286148,1975301917236486,1975303102468593],[268468236,1409286152,-1975303102468593,-1975301917236486],[268468360,524292,-1975303134589986,-1975301885115096],[268468360,557068,-1975303134589986,-1975301885115096],[268468360,655360,35792205719323062,35792210907033824],[268468360,688136,4648494866495498,4648504558093930],[268468360,688256,31143706348939894,31143710852827564],[268468360,67272712,-6623803346277521,-6623801098016984],[268468360,67272832,6623801098016984,6623803346277521],[268468360,268959876,-1975303134589986,-1975301885115096],[268468360,268992652,-1975303134589986,-1975301885115096],[268468360,269090824,31143706348939894,31143710852827564],[268468360,269090944,4648494866495498,4648504558093930],[268468360,269123720,35792205719323062,35792210907033824],[268468360,335675400,6623801098016984,6623803346277521],[268468360,335675520,-6623803346277521,-6623801098016984],[268468416,688192,-6623803364300278,-6623801079994226],[268468416,688256,6623801079994226,6623803364300278],[268468416,269090880,6623801079994226,6623803364300278],[268468416,269090944,-6623803364300278,-6623801079994226],[268469376,688256,6623801159997192,6623803284297315],[268469376,689152,-6623803284297315,-6623801159997192],[268469376,269090944,-6623803284297315,-6623801159997192],[268469376,269091840,6623801159997192,6623803284297315],[268566528,136,20569295950214876,20569306767847923],[268566528,192,11272301423813928,11272302445070008],[268566528,1152,11272301474344213,11272302394539721],[268566528,32776,-4648505765491449,-4648493659097978],[268566528,32896,-4648502626375994,-4648496798213434],[268566528,524290,-1975304416511920,-1975300603193161],[268566528,524292,11272298579605019,11272305289278916],[268566528,524296,218159636069763092,218159705380447032],[268566528,524352,6623798927600937,6623805516693572],[268566528,524416,-168694080794423276,-168694029929332347],[268566528,524426,-13247605134312055,-13247603754276960],[268566528,524428,1975301885115096,1975303134589986],[268566528,524488,1975301823150576,1975303196554503],[268566528,525312,-19871412444254049,-19871400888629471],[268566528,525448,-13247605066127948,-13247603822461068],[268566528,557192,-24519908161078011,-24519904596394939],[268566528,1048584,-1975305275431532,-1975299744273546],[268566528,1048704,-13945502255682351,-13945496018085931],[268566528,1049600,-3950605484998596,-3950604554411562],[268566528,1573000,31841601898078136,31841604688868588],[268566528,1605640,24519905365967204,24519907391505747],[268566528,1605760,-11272302664826744,-11272301204057192],[268566528,67108866,-4648501614770600,-4648497809818828],[268566528,67108868,8599101370269630,8599108093729955],[268566528,67108872,-85257851747913146,-85257795604898244],[268566528,67108992,20569290559759355,20569312158303430],[268566528,67633288,-35792211590820525,-35792205035536364],[268566528,67665928,4648493659097978,4648505765491449],[268566528,67666048,-6623803999983306,-6623800444311202],[268566528,68681736,-9297001129565978,-9296997719612879],[268566528,68681856,-1975304058435710,-1975300961269370],[268566528,134217736,6623797717533688,6623806726760819],[268566528,134217856,15920798736625752,15920804556847610],[268566528,134742152,3950603716820562,3950606322589598],[268566528,134774792,-11272302995044411,-11272300873839524],[268566528,134774912,4648499087000812,4648500337588616],[268566528,135790600,-26495210066406118,-26495207710771912],[268566528,135790720,-24519907697996171,-24519905059476780],[268566528,135791616,1975301917270118,1975303102434961],[268566528,201359368,6623801159963560,6623803284330947],[268566528,201850888,-6623806726760819,-6623797717533688],[268566528,201851008,8599102955928264,8599106508071324],[268566528,268566664,20569295950214876,20569306767847923],[268566528,268566720,11272301423813928,11272302445070008],[268566528,268567680,11272301474344213,11272302394539721],[268566528,268599304,-4648505765491449,-4648493659097978],[268566528,268599424,-4648502626375994,-4648496798213434],[268566528,269090818,-1975304416511920,-1975300603193161],[268566528,269090820,11272298579605019,11272305289278916],[268566528,269090824,218159636069763092,218159705380447032],[268566528,269090880,6623798927600937,6623805516693572],[268566528,269090944,-168694080794423276,-168694029929332347],[268566528,269090954,-13247605134312055,-13247603754276960],[268566528,269090956,1975301885115096,1975303134589986],[268566528,269091016,1975301823150576,1975303196554503],[268566528,269091840,-19871412444254049,-19871400888629471],[268566528,269091976,-13247605066127948,-13247603822461068],[268566528,269123720,-24519908161078011,-24519904596394939],[268566528,269615112,-1975305275431532,-1975299744273546],[268566528,269615232,-13945502255682351,-13945496018085931],[268566528,269616128,-3950605484998596,-3950604554411562],[268566528,270139528,31841601898078136,31841604688868588],[268566528,270172168,24519905365967204,24519907391505747],[268566528,270172288,-11272302664826744,-11272301204057192],[268566528,335675394,-4648501614770600,-4648497809818828],[268566528,335675396,8599101370269630,8599108093729955],[268566528,335675400,-85257851747913146,-85257795604898244],[268566528,335675520,20569290559759355,20569312158303430],[268566528,336199816,-35792211590820525,-35792205035536364],[268566528,336232456,4648493659097978,4648505765491449],[268566528,336232576,-6623803999983306,-6623800444311202],[268566528,337248264,-9297001129565978,-9296997719612879],[268566528,337248384,-1975304058435710,-1975300961269370],[268566528,402784264,6623797717533688,6623806726760819],[268566528,402784384,15920798736625752,15920804556847610],[268566528,403308680,3950603716820562,3950606322589598],[268566528,403341320,-11272302995044411,-11272300873839524],[268566528,403341440,4648499087000812,4648500337588616],[268566528,404357128,-26495210066406118,-26495207710771912],[268566528,404357248,-24519907697996171,-24519905059476780],[268566528,404358144,1975301917270118,1975303102434961],[268566528,469925896,6623801159963560,6623803284330947],[268566528,470417416,-6623806726760819,-6623797717533688],[268566528,470417536,8599102955928264,8599106508071324],[268566528,1073741832,-4648502477690436,-4648496946898994],[268566528,1140883460,1975301917236486,1975303102468593],[268566528,1140883464,47064508673158980,47064511822081843],[268566528,1141374984,11272300231229941,11272303637653996],[268566528,1275068424,-13247605033203059,-13247603855385956],[268566528,1342308360,-4648502477690436,-4648496946898994],[268566528,1409449988,1975301917236486,1975303102468593],[268566528,1409449992,47064508673158980,47064511822081843],[268566528,1409941512,11272300231229941,11272303637653996],[268566528,1543634952,-13247605033203059,-13247603855385956],[268566528,17592186044424,-7321700093132675,-7321693736341099],[268566528,17592253186056,-11272303061044145,-11272300807839789],[268566528,17592253677576,11272300039541091,11272303829342841],[268566528,17592387371016,1975301858410281,1975303161294799],[268566528,17592454610952,-7321700093132675,-7321693736341099],[268566528,17592521752584,-11272303061044145,-11272300807839789],[268566528,17592522244104,11272300039541091,11272303829342841],[268566528,17592655937544,1975301858410281,1975303161294799],[268566528,17593326895112,9296998646110384,9297000203068470],[268566528,17593595461640,9296998646110384,9297000203068470],[268566528,35184372088840,3950600140436346,3950609898973822],[268566528,35184372088960,-7321700093132675,-7321693736341099],[268566528,35184372613256,45089206340998288,45089209134537452],[268566528,35184372645896,-11272303070687196,-11272300798196740],[268566528,35184372646016,1975301858410281,1975303161294799],[268566528,35184373661704,-13247605076872486,-13247603811716528],[268566528,35184373661824,9296998646110384,9297000203068470],[268566528,35184439230472,24519905244697076,24519907512775874],[268566528,35184439721992,-3950609898973822,-3950600140436346],[268566528,35184439722112,11272300039541091,11272303829342841],[268566528,35184506830856,24519905244697076,24519907512775874],[268566528,35184506830976,-11272303061044145,-11272300807839789],[268566528,35184573415432,-11272303070687196,-11272300798196740],[268566528,35184640655368,3950600140436346,3950609898973822],[268566528,35184640655488,-7321700093132675,-7321693736341099],[268566528,35184641179784,45089206340998288,45089209134537452],[268566528,35184641212424,-11272303070687196,-11272300798196740],[268566528,35184641212544,1975301858410281,1975303161294799],[268566528,35184642228232,-13247605076872486,-13247603811716528],[268566528,35184642228352,9296998646110384,9297000203068470],[268566528,35184707797000,24519905244697076,24519907512775874],[268566528,35184708288520,-3950609898973822,-3950600140436346],[268566528,35184708288640,11272300039541091,11272303829342841],[268566528,35184775397384,24519905244697076,24519907512775874],[268566528,35184775397504,-11272303061044145,-11272300807839789],[268566528,35184841981960,-11272303070687196,-11272300798196740],[268566528,35185512939528,-13247605076872486,-13247603811716528],[268566528,35185781506056,-13247605076872486,-13247603811716528],[268566528,52776625242120,45089206340998288,45089209134537452],[268566528,52776893808648,45089206340998288,45089209134537452],[268566534,524296,24519905258499972,24519907498972975],[268566534,524302,24519905258499972,24519907498972975],[268566534,67108872,6623801102928978,6623803341365525],[268566534,67108878,6623801102928978,6623803341365525],[268566534,269090824,24519905258499972,24519907498972975],[268566534,269090830,24519905258499972,24519907498972975],[268566534,335675400,6623801102928978,6623803341365525],[268566534,335675406,6623801102928978,6623803341365525],[268566537,524290,-1975303161793801,-1975301857911278],[268566537,524292,-22544604489700504,-22544603248067364],[268566537,524299,-1975303161793801,-1975301857911278],[268566537,524301,-22544604489700504,-22544603248067364],[268566537,67108866,-4648500367050864,-4648499057538562],[268566537,67108868,-1975303130040923,-1975301889664154],[268566537,67108875,-4648500367050864,-4648499057538562],[268566537,67108877,-1975303130040923,-1975301889664154],[268566537,269090818,-1975303161793801,-1975301857911278],[268566537,269090820,-22544604489700504,-22544603248067364],[268566537,269090827,-1975303161793801,-1975301857911278],[268566537,269090829,-22544604489700504,-22544603248067364],[268566537,335675394,-4648500367050864,-4648499057538562],[268566537,335675396,-1975303130040923,-1975301889664154],[268566537,335675403,-4648500367050864,-4648499057538562],[268566537,335675405,-1975303130040923,-1975301889664154],[268566538,131074,8599101184095716,8599108279903872],[268566538,131080,-8599108279903872,-8599101184095716],[268566538,524289,1975301857911278,1975303161793801],[268566538,524292,-1975303161793801,-1975301857911278],[268566538,524299,1975301857911278,1975303161793801],[268566538,524302,-1975303161793801,-1975301857911278],[268566538,524352,1975301824995317,1975303194709763],[268566538,524362,1975301824995317,1975303194709763],[268566538,524416,-1975303194709763,-1975301824995317],[268566538,524426,-15222908329021818,-15222905579272277],[268566538,655490,39742811423957886,39742815241809165],[268566538,655496,-26495210275362748,-26495207501815288],[268566538,688130,-11272303056635485,-11272300812248450],[268566538,688136,11272300812248450,11272303056635485],[268566538,1703938,-1975303134066536,-1975301885638544],[268566538,1703944,1975301885638544,1975303134066536],[268566538,67108865,4648499057538562,4648500367050864],[268566538,67108868,-4648500367050864,-4648499057538562],[268566538,67108875,4648499057538562,4648500367050864],[268566538,67108878,-4648500367050864,-4648499057538562],[268566538,67108928,4648499019397906,4648500405191522],[268566538,67108938,4648499019397906,4648500405191522],[268566538,67108992,-4648500405191522,-4648499019397906],[268566538,67109002,-4648500405191522,-4648499019397906],[268566538,67272706,6623801107293350,6623803337001160],[268566538,67272712,-6623803337001160,-6623801107293350],[268566538,67764226,-8599108279903872,-8599101184095716],[268566538,67764232,8599101184095716,8599108279903872],[268566538,134873090,13247603792440361,13247605096148654],[268566538,134873096,-13247605096148654,-13247603792440361],[268566538,201457666,-4648500364875210,-4648499059714221],[268566538,201457672,4648499059714221,4648500364875210],[268566538,268435458,-8599108279903872,-8599101184095716],[268566538,268435464,8599101184095716,8599108279903872],[268566538,268959874,-26495210275362748,-26495207501815288],[268566538,268959880,39742811423957886,39742815241809165],[268566538,268992514,11272300812248450,11272303056635485],[268566538,268992520,-11272303056635485,-11272300812248450],[268566538,269090817,1975301857911278,1975303161793801],[268566538,269090820,-1975303161793801,-1975301857911278],[268566538,269090827,1975301857911278,1975303161793801],[268566538,269090830,-1975303161793801,-1975301857911278],[268566538,269090880,1975301824995317,1975303194709763],[268566538,269090890,1975301824995317,1975303194709763],[268566538,269090944,-15222908329021818,-15222905579272277],[268566538,269090954,-1975303194709763,-1975301824995317],[268566538,270008322,1975301885638544,1975303134066536],[268566538,270008328,-1975303134066536,-1975301885638544],[268566538,335577090,-6623803337001160,-6623801107293350],[268566538,335577096,6623801107293350,6623803337001160],[268566538,335675393,4648499057538562,4648500367050864],[268566538,335675396,-4648500367050864,-4648499057538562],[268566538,335675403,4648499057538562,4648500367050864],[268566538,335675406,-4648500367050864,-4648499057538562],[268566538,335675456,4648499019397906,4648500405191522],[268566538,335675466,4648499019397906,4648500405191522],[268566538,335675520,-4648500405191522,-4648499019397906],[268566538,335675530,-4648500405191522,-4648499019397906],[268566538,336068610,8599101184095716,8599108279903872],[268566538,336068616,-8599108279903872,-8599101184095716],[268566538,403177474,-13247605096148654,-13247603792440361],[268566538,403177480,13247603792440361,13247605096148654],[268566538,469762050,4648499059714221,4648500364875210],[268566538,469762056,-4648500364875210,-4648499059714221],[268566538,1140981762,-1975303127852212,-1975301891852867],[268566538,1140981768,1975301891852867,1975303127852212],[268566538,1409286146,1975301891852867,1975303127852212],[268566538,1409286152,-1975303127852212,-1975301891852867],[268566538,17592253284354,13247603758912222,13247605129676795],[268566538,17592253284360,-13247605129676795,-13247603758912222],[268566538,17592521588738,-13247605129676795,-13247603758912222],[268566538,17592521588744,13247603758912222,13247605129676795],[268566538,35184372744194,13247603754276960,13247605134312055],[268566538,35184372744200,-13247605134312055,-13247603754276960],[268566538,35184439328770,-1975303196554503,-1975301823150576],[268566538,35184439328776,1975301823150576,1975303196554503],[268566538,35184641048578,-13247605134312055,-13247603754276960],[268566538,35184641048584,13247603754276960,13247605134312055],[268566538,35184707633154,1975301823150576,1975303196554503],[268566538,35184707633160,-1975303196554503,-1975301823150576],[268566540,131076,8599101150291472,8599108313708112],[268566540,131080,-8599108313708112,-8599101150291472],[268566540,524289,22544603248067364,22544604489700504],[268566540,524290,-22544604489700504,-22544603248067364],[268566540,524301,22544603248067364,22544604489700504],[268566540,524302,-22544604489700504,-22544603248067364],[268566540,524416,-22544604485915178,-22544603251852693],[268566540,524428,-20569302600800082,-20569300117262707],[268566540,557056,45089206505908288,45089208969627452],[268566540,557068,49039811037266288,49039814477679612],[268566540,655492,24519904596394939,24519908161078011],[268566540,655496,-26495210200067732,-26495207577110300],[268566540,688132,-15222909115368599,-15222904792925496],[268566540,688136,11272300873839524,11272302995044411],[268566540,1703940,-1975303102468593,-1975301917236486],[268566540,1703944,1975301917236486,1975303102468593],[268566540,67108865,1975301889664154,1975303130040923],[268566540,67108866,-1975303130040923,-1975301889664154],[268566540,67108877,1975301889664154,1975303130040923],[268566540,67108878,-1975303130040923,-1975301889664154],[268566540,67108992,-1975303134066535,-1975301885638543],[268566540,67109004,-1975303134066535,-1975301885638543],[268566540,67141632,3950603780638034,3950606258772122],[268566540,67141644,28470509674673669,28470513122209439],[268566540,67272708,-17896106317239678,-17896101995938767],[268566540,67272712,-6623803284297315,-6623801159997192],[268566540,67764228,-8599108313708112,-8599101150291472],[268566540,67764232,8599101150291472,8599108313708112],[268566540,134873092,13247603822433492,13247605066155522],[268566540,134873096,-13247605066155522,-13247603822433492],[268566540,201457668,-4648500337554984,-4648499087034444],[268566540,201457672,4648499087034444,4648500337554984],[268566540,268435460,-8599108313708112,-8599101150291472],[268566540,268435464,8599101150291472,8599108313708112],[268566540,268959876,-26495210200067732,-26495207577110300],[268566540,268959880,24519904596394939,24519908161078011],[268566540,268992516,11272300873839524,11272302995044411],[268566540,268992520,-15222909115368599,-15222904792925496],[268566540,269090817,22544603248067364,22544604489700504],[268566540,269090818,-22544604489700504,-22544603248067364],[268566540,269090829,22544603248067364,22544604489700504],[268566540,269090830,-22544604489700504,-22544603248067364],[268566540,269090944,-20569302600800082,-20569300117262707],[268566540,269090956,-22544604485915178,-22544603251852693],[268566540,269123584,49039811037266288,49039814477679612],[268566540,269123596,45089206505908288,45089208969627452],[268566540,270008324,1975301917236486,1975303102468593],[268566540,270008328,-1975303102468593,-1975301917236486],[268566540,335577092,-6623803284297315,-6623801159997192],[268566540,335577096,-17896106317239678,-17896101995938767],[268566540,335675393,1975301889664154,1975303130040923],[268566540,335675394,-1975303130040923,-1975301889664154],[268566540,335675405,1975301889664154,1975303130040923],[268566540,335675406,-1975303130040923,-1975301889664154],[268566540,335675520,-1975303134066535,-1975301885638543],[268566540,335675532,-1975303134066535,-1975301885638543],[268566540,335708160,28470509674673669,28470513122209439],[268566540,335708172,3950603780638034,3950606258772122],[268566540,336068612,8599101150291472,8599108313708112],[268566540,336068616,-8599108313708112,-8599101150291472],[268566540,403177476,-13247605066155522,-13247603822433492],[268566540,403177480,13247603822433492,13247605066155522],[268566540,469762052,4648499087034444,4648500337554984],[268566540,469762056,-4648500337554984,-4648499087034444],[268566540,1140981764,-1975303102468593,-1975301917236486],[268566540,1140981768,1975301917236486,1975303102468593],[268566540,1409286148,1975301917236486,1975303102468593],[268566540,1409286152,-1975303102468593,-1975301917236486],[268566540,17592253284356,13247603788555150,13247605100033866],[268566540,17592253284360,-13247605100033866,-13247603788555150],[268566540,17592521588740,-13247605100033866,-13247603788555150],[268566540,17592521588744,13247603788555150,13247605100033866],[268566540,35184372744196,13247603786922062,13247605101666952],[268566540,35184372744200,-13247605101666952,-13247603786922062],[268566540,35184439328772,-1975303167312100,-1975301852392980],[268566540,35184439328776,1975301852392980,1975303167312100],[268566540,35184641048580,-13247605101666952,-13247603786922062],[268566540,35184641048584,13247603786922062,13247605101666952],[268566540,35184707633156,1975301852392980,1975303167312100],[268566540,35184707633160,-1975303167312100,-1975301852392980],[268566600,524290,-1975303194709763,-1975301824995317],[268566600,524362,-1975303194709763,-1975301824995317],[268566600,524416,-53688315226712860,-53688309712822464],[268566600,524488,-697899880612376,-697889504566882],[268566600,655552,-52990420208255582,-52990415346100484],[268566600,67108866,-4648500405191522,-4648499019397906],[268566600,67108938,-4648500405191522,-4648499019397906],[268566600,67108992,-1975303194709763,-1975301824995317],[268566600,67109064,-1975303194709763,-1975301824995317],[268566600,268959880,-52990420208255582,-52990415346100484],[268566600,269090818,-1975303194709763,-1975301824995317],[268566600,269090890,-1975303194709763,-1975301824995317],[268566600,269090944,-697899880612376,-697889504566882],[268566600,269091016,-53688315226712860,-53688309712822464],[268566600,335675394,-4648500405191522,-4648499019397906],[268566600,335675466,-4648500405191522,-4648499019397906],[268566600,335675520,-1975303194709763,-1975301824995317],[268566600,335675592,-1975303194709763,-1975301824995317],[268566658,524296,-3950609856348444,-3950600183061726],[268566658,524352,6623801015151933,6623803429142575],[268566658,524426,49039810351907138,49039815163038758],[268566658,524482,6623801015151933,6623803429142575],[268566658,655370,-52990420208255582,-52990415346100484],[268566658,67108872,6623801015151933,6623803429142575],[268566658,67109002,6623801015151933,6623803429142575],[268566658,268959880,-52990420208255582,-52990415346100484],[268566658,269090824,49039810351907138,49039815163038758],[268566658,269090880,6623801015151933,6623803429142575],[268566658,269090954,-3950609856348444,-3950600183061726],[268566658,269091010,6623801015151933,6623803429142575],[268566658,335675400,6623801015151933,6623803429142575],[268566658,335675530,6623801015151933,6623803429142575],[268566660,524296,-6623806745939431,-6623797698355075],[268566660,524428,31143706348939894,31143710852827564],[268566660,557056,3950603919085972,3950606120324188],[268566660,655372,-37767513094879325,-37767508551182639],[268566660,688132,3950603919085972,3950606120324188],[268566660,67108872,6623801098016984,6623803346277521],[268566660,67109004,6623801098016984,6623803346277521],[268566660,268959880,-37767513094879325,-37767508551182639],[268566660,268992640,3950603919085972,3950606120324188],[268566660,269090824,31143706348939894,31143710852827564],[268566660,269090956,-6623806745939431,-6623797698355075],[268566660,269123716,3950603919085972,3950606120324188],[268566660,335675400,6623801098016984,6623803346277521],[268566660,335675532,6623801098016984,6623803346277521],[268566664,0,33237389243031454,33237396114273808],[268566664,136,20569295950214876,20569306767847923],[268566664,131080,-7901216780706716,-7901203298113598],[268566664,131200,20569290552159553,20569312165903224],[268566664,524290,-7321700711066549,-7321693118407216],[268566664,524292,31143705012464284,31143712189303175],[268566664,524352,47064508360216381,47064512135024435],[268566664,524426,-47064512135024435,-47064508360216381],[268566664,524428,-8599106519433716,-8599102944565871],[268566664,524488,-3950609326662792,-3950600712747379],[268566664,525312,8599102944565871,8599106519433716],[268566664,525448,-42416014583842896,-42416006486808497],[268566664,557056,-39742815133869046,-39742811531898000],[268566664,655370,39742811423957886,39742815241809165],[268566664,655372,39742811531898000,39742815133869046],[268566664,655552,51015112847771814,51015117686879173],[268566664,656512,51015113006242213,51015117528408767],[268566664,688136,-21846713226576023,-21846705126012580],[268566664,688256,-17896106405885420,-17896101907293023],[268566664,1573000,22544602310993060,22544605426774810],[268566664,1703944,1975300959240085,1975304060464993],[268566664,1704064,-24519909487239803,-24519903270233145],[268566664,67108866,-1975303194709763,-1975301824995317],[268566664,67108868,-4648500367937248,-4648499056652179],[268566664,67108928,1975301824995317,1975303194709763],[268566664,67109002,-1975303194709763,-1975301824995317],[268566664,67109004,-4648500367937248,-4648499056652179],[268566664,67109064,1975301824995317,1975303194709763],[268566664,67109888,4648499056652179,4648500367937248],[268566664,67110024,4648499056652179,4648500367937248],[268566664,67272712,-6623803346277523,-6623801098016986],[268566664,67272832,6623801098016986,6623803346277523],[268566664,67633152,-35792211590820525,-35792205035536364],[268566664,67633288,56941019321316304,56941026272449914],[268566664,67764232,-13247611732520567,-13247597156068460],[268566664,67764352,-79485635001138468,-79485618330395612],[268566664,134742152,28470509589568145,28470513207314965],[268566664,134873096,-19871408457827235,-19871404875056286],[268566664,134873216,-8599108332258679,-8599101131740910],[268566664,201457672,4648499056652180,4648500367937249],[268566664,201457792,-4648500367937249,-4648499056652180],[268566664,268435464,20569290552159553,20569312165903224],[268566664,268435584,-7901216780706716,-7901203298113598],[268566664,268566528,20569295950214876,20569306767847923],[268566664,268566664,33237389243031454,33237396114273808],[268566664,268959816,51015112847771814,51015117686879173],[268566664,268959874,39742811423957886,39742815241809165],[268566664,268959876,39742811531898000,39742815133869046],[268566664,268960776,51015113006242213,51015117528408767],[268566664,268992520,-17896106405885420,-17896101907293023],[268566664,268992640,-21846713226576023,-21846705126012580],[268566664,269090818,-47064512135024435,-47064508360216381],[268566664,269090820,-8599106519433716,-8599102944565871],[268566664,269090880,-3950609326662792,-3950600712747379],[268566664,269090954,-7321700711066549,-7321693118407216],[268566664,269090956,31143705012464284,31143712189303175],[268566664,269091016,47064508360216381,47064512135024435],[268566664,269091840,-42416014583842896,-42416006486808497],[268566664,269091976,8599102944565871,8599106519433716],[268566664,269123720,-39742815133869046,-39742811531898000],[268566664,270008328,-24519909487239803,-24519903270233145],[268566664,270008448,1975300959240085,1975304060464993],[268566664,270139392,22544602310993060,22544605426774810],[268566664,335577096,6623801098016986,6623803346277523],[268566664,335577216,-6623803346277523,-6623801098016986],[268566664,335675394,-1975303194709763,-1975301824995317],[268566664,335675396,-4648500367937248,-4648499056652179],[268566664,335675456,1975301824995317,1975303194709763],[268566664,335675530,-1975303194709763,-1975301824995317],[268566664,335675532,-4648500367937248,-4648499056652179],[268566664,335675592,1975301824995317,1975303194709763],[268566664,335676416,4648499056652179,4648500367937248],[268566664,335676552,4648499056652179,4648500367937248],[268566664,336068616,-79485635001138468,-79485618330395612],[268566664,336068736,-13247611732520567,-13247597156068460],[268566664,336199680,56941019321316304,56941026272449914],[268566664,336199816,-35792211590820525,-35792205035536364],[268566664,403177480,-8599108332258679,-8599101131740910],[268566664,403177600,-19871408457827235,-19871404875056286],[268566664,403308544,28470509589568145,28470513207314965],[268566664,469762056,-4648500367937249,-4648499056652180],[268566664,469762176,4648499056652180,4648500367937249],[268566664,1140981768,1975301885638544,1975303134066536],[268566664,1140981888,-1975303134066536,-1975301885638544],[268566664,1409286152,-1975303134066536,-1975301885638544],[268566664,1409286272,1975301885638544,1975303134066536],[268566664,17592253284360,-13247605137681374,-13247603750907644],[268566664,17592253284480,13247603750907644,13247605137681374],[268566664,17592521588744,13247603750907644,13247605137681374],[268566664,17592521588864,-13247605137681374,-13247603750907644],[268566664,35184372613256,49039810952496628,49039814562449270],[268566664,35184372744200,-37767512630799828,-37767509015262141],[268566664,35184372744320,-11272305547187129,-11272298321696800],[268566664,35184439328776,1975301819477018,1975303200228061],[268566664,35184439328896,-1975303200228061,-1975301819477018],[268566664,35184641048584,-11272305547187129,-11272298321696800],[268566664,35184641048704,-37767512630799828,-37767509015262141],[268566664,35184641179648,49039810952496628,49039814562449270],[268566664,35184707633160,-1975303200228061,-1975301819477018],[268566664,35184707633280,1975301819477018,1975303200228061],[268566720,0,22544602847627856,22544604890140016],[268566720,192,11272301423813928,11272302445070008],[268566720,131136,-4648502836441441,-4648496588147988],[268566720,131200,15920798525905540,15920804767567825],[268566720,524290,-6623803429142575,-6623801015151933],[268566720,524296,8599102838302509,8599106625697078],[268566720,524482,-6623803429142575,-6623801015151933],[268566720,524488,6623801015151933,6623803429142575],[268566720,524544,-6623803358085955,-6623801086208550],[268566720,524736,-6623803358085955,-6623801086208550],[268566720,525312,6623801086208550,6623803358085955],[268566720,525504,6623801086208550,6623803358085955],[268566720,655432,51015112847771814,51015117686879173],[268566720,655496,-49039815165502764,-49039810349443144],[268566720,688192,6623801079994226,6623803364300278],[268566720,688256,-6623803364300278,-6623801079994226],[268566720,1704000,-932612781,932612782],[268566720,1704064,-932612782,932612781],[268566720,67764288,17896101722460043,17896106590718401],[268566720,67764352,-17896106590718401,-17896101722460043],[268566720,134873152,-6623803358085955,-6623801086208550],[268566720,134873216,6623801086208550,6623803358085955],[268566720,268435520,15920798525905540,15920804767567825],[268566720,268435584,-4648502836441441,-4648496588147988],[268566720,268566528,11272301423813928,11272302445070008],[268566720,268566720,22544602847627856,22544604890140016],[268566720,268959816,-49039815165502764,-49039810349443144],[268566720,268959880,51015112847771814,51015117686879173],[268566720,268992576,-6623803364300278,-6623801079994226],[268566720,268992640,6623801079994226,6623803364300278],[268566720,269090818,-6623803429142575,-6623801015151933],[268566720,269090824,6623801015151933,6623803429142575],[268566720,269091010,-6623803429142575,-6623801015151933],[268566720,269091016,8599102838302509,8599106625697078],[268566720,269091072,-6623803358085955,-6623801086208550],[268566720,269091264,-6623803358085955,-6623801086208550],[268566720,269091840,6623801086208550,6623803358085955],[268566720,269092032,6623801086208550,6623803358085955],[268566720,270008384,-932612782,932612781],[268566720,270008448,-932612781,932612782],[268566720,336068672,-17896106590718401,-17896101722460043],[268566720,336068736,17896101722460043,17896106590718401],[268566720,403177536,6623801086208550,6623803358085955],[268566720,403177600,-6623803358085955,-6623801086208550],[268566720,35184372744256,-24519907574746803,-24519905182726150],[268566720,35184372744320,24519905182726150,24519907574746803],[268566720,35184641048640,24519905182726150,24519907574746803],[268566720,35184641048704,-24519907574746803,-24519905182726150],[268566912,524352,6623801086208550,6623803358085955],[268566912,524736,6623801086208550,6623803358085955],[268566912,525312,24519905293069738,24519907464403207],[268566912,525696,24519905293069738,24519907464403207],[268566912,269090880,6623801086208550,6623803358085955],[268566912,269091264,6623801086208550,6623803358085955],[268566912,269091840,24519905293069738,24519907464403207],[268566912,269092224,24519905293069738,24519907464403207],[268567560,524416,-33119013675829617,-33119008545642919],[268567560,525448,4648494875353022,4648504549236406],[268567560,656512,-37767513094879325,-37767508551182639],[268567560,1573896,-3950606120324188,-3950603919085972],[268567560,1704960,3950603919085972,3950606120324188],[268567560,67108992,-4648500367937248,-4648499056652179],[268567560,67110024,-4648500367937248,-4648499056652179],[268567560,268959880,-37767513094879325,-37767508551182639],[268567560,269090944,4648494875353022,4648504549236406],[268567560,269091976,-33119013675829617,-33119008545642919],[268567560,270008328,3950603919085972,3950606120324188],[268567560,270139392,-3950606120324188,-3950603919085972],[268567560,335675520,-4648500367937248,-4648499056652179],[268567560,335676552,-4648500367937248,-4648499056652179],[268567616,524416,-31143710514241570,-31143706687525880],[268567616,525504,-31143710514241570,-31143706687525880],[268567616,269090944,-31143710514241570,-31143706687525880],[268567616,269092032,-31143710514241570,-31143706687525880],[268567680,0,22544602948688426,22544604789079442],[268567680,1152,11272301474344213,11272302394539721],[268567680,131200,15920798744910351,15920804548563011],[268567680,132096,-4648502614033929,-4648496810555499],[268567680,524296,11272300226701508,11272303642182425],[268567680,524352,24519905293069738,24519907464403207],[268567680,524544,-24519907464403207,-24519905293069738],[268567680,525448,24519905292829456,24519907464643493],[268567680,525504,24519905293069738,24519907464403207],[268567680,525696,-24519907464403207,-24519905293069738],[268567680,526336,-24519907464643493,-24519905292829456],[268567680,527488,-24519907464643493,-24519905292829456],[268567680,655496,-49039814989147174,-49039810525798726],[268567680,656392,35792206070739152,35792210555617732],[268567680,688256,-6623803284297315,-6623801159997192],[268567680,689152,6623801159997192,6623803284297315],[268567680,1572864,-77510327129120619,-77510321182708389],[268567680,1574016,-49039814917723134,-49039810597222762],[268567680,1704064,-24519908352868090,-24519904404604862],[268567680,1704960,-3950606995955408,-3950603043454752],[268567680,67764352,-17896106400955991,-17896101912222451],[268567680,67765248,17896101912222451,17896106400955991],[268567680,134873216,6623801159997192,6623803284297315],[268567680,134874112,-6623803284297315,-6623801159997192],[268567680,268435584,-4648502614033929,-4648496810555499],[268567680,268436480,15920798744910351,15920804548563011],[268567680,268566528,11272301474344213,11272302394539721],[268567680,268567680,22544602948688426,22544604789079442],[268567680,268959880,35792206070739152,35792210555617732],[268567680,268960776,-49039814989147174,-49039810525798726],[268567680,268992640,6623801159997192,6623803284297315],[268567680,268993536,-6623803284297315,-6623801159997192],[268567680,269090824,24519905292829456,24519907464643493],[268567680,269090880,24519905293069738,24519907464403207],[268567680,269091072,-24519907464403207,-24519905293069738],[268567680,269091976,11272300226701508,11272303642182425],[268567680,269092032,24519905293069738,24519907464403207],[268567680,269092224,-24519907464403207,-24519905293069738],[268567680,269092864,-24519907464643493,-24519905292829456],[268567680,269094016,-24519907464643493,-24519905292829456],[268567680,270008448,-3950606995955408,-3950603043454752],[268567680,270009344,-24519908352868090,-24519904404604862],[268567680,270139392,-49039814917723134,-49039810597222762],[268567680,270140544,-77510327129120619,-77510321182708389],[268567680,336068736,17896101912222451,17896106400955991],[268567680,336069632,-17896106400955991,-17896101912222451],[268567680,403177600,-6623803284297315,-6623801159997192],[268567680,403178496,6623801159997192,6623803284297315],[268567680,35184372744320,24519905262899363,24519907494573587],[268567680,35184372745216,-24519907494573587,-24519905262899363],[268567680,35184641048704,-24519907494573587,-24519905262899363],[268567680,35184641049600,24519905262899363,24519907494573587],[268568704,525312,24519905292829456,24519907464643493],[268568704,527488,24519905292829456,24519907464643493],[268568704,269091840,24519905292829456,24519907464643493],[268568704,269094016,24519905292829456,24519907464643493],[268599297,524292,13247603821617226,13247605066971786],[268599297,557061,13247603821617226,13247605066971786],[268599297,67108868,13247603827010127,13247605061578886],[268599297,67141637,13247603827010127,13247605061578886],[268599297,269090820,13247603821617226,13247605066971786],[268599297,269123589,13247603821617226,13247605066971786],[268599297,335675396,13247603827010127,13247605061578886],[268599297,335708165,13247603827010127,13247605061578886],[268599298,524296,-13247605066971786,-13247603821617226],[268599298,557066,-24519907498972975,-24519905258499972],[268599298,655370,11272300812248450,11272303056635485],[268599298,67108872,-13247605061578886,-13247603827010127],[268599298,67141642,-6623803341365525,-6623801102928978],[268599298,67239946,-6623803337001160,-6623801107293350],[268599298,268992520,11272300812248450,11272303056635485],[268599298,269090824,-24519907498972975,-24519905258499972],[268599298,269123594,-13247605066971786,-13247603821617226],[268599298,335577096,-6623803337001160,-6623801107293350],[268599298,335675400,-6623803341365525,-6623801102928978],[268599298,335708170,-13247605061578886,-13247603827010127],[268599300,131076,-3950608433100829,-3950601606309328],[268599300,163840,3950601606309328,3950608433100829],[268599300,524289,-13247605066971786,-13247603821617226],[268599300,524296,-26495210066406118,-26495207710771912],[268599300,557061,-13247605066971786,-13247603821617226],[268599300,557068,-37767512457661269,-37767509188400696],[268599300,655372,15222904792925496,15222909115368599],[268599300,655492,-1975303134589986,-1975301885115096],[268599300,688136,-3950606120324188,-3950603919085972],[268599300,688256,1975301885115096,1975303134589986],[268599300,1703940,-22544604430576096,-22544603307191776],[268599300,1736704,22544603307191776,22544604430576096],[268599300,67108865,-13247605061578886,-13247603827010127],[268599300,67108872,-26495210066338854,-26495207710839176],[268599300,67141637,-13247605061578886,-13247603827010127],[268599300,67141644,-19871408304404039,-19871405028479484],[268599300,67239948,17896101995938767,17896106317239678],[268599300,67272712,-24519907477236870,-24519905280236082],[268599300,67764228,3950601606309328,3950608433100829],[268599300,67796992,-3950608433100829,-3950601606309328],[268599300,134873092,-1975303102468593,-1975301917236486],[268599300,134905856,1975301917236486,1975303102468593],[268599300,201457668,-1975303102434961,-1975301917270118],[268599300,201490432,1975301917270118,1975303102434961],[268599300,268435460,3950601606309328,3950608433100829],[268599300,268468224,-3950608433100829,-3950601606309328],[268599300,268959756,-3950606120324188,-3950603919085972],[268599300,268959876,1975301885115096,1975303134589986],[268599300,268992520,15222904792925496,15222909115368599],[268599300,268992640,-1975303134589986,-1975301885115096],[268599300,269090817,-13247605066971786,-13247603821617226],[268599300,269090824,-37767512457661269,-37767509188400696],[268599300,269123589,-13247605066971786,-13247603821617226],[268599300,269123596,-26495210066406118,-26495207710771912],[268599300,270008324,22544603307191776,22544604430576096],[268599300,270041088,-22544604430576096,-22544603307191776],[268599300,335544332,-24519907477236870,-24519905280236082],[268599300,335577096,17896101995938767,17896106317239678],[268599300,335675393,-13247605061578886,-13247603827010127],[268599300,335675400,-19871408304404039,-19871405028479484],[268599300,335708165,-13247605061578886,-13247603827010127],[268599300,335708172,-26495210066338854,-26495207710839176],[268599300,336068612,-3950608433100829,-3950601606309328],[268599300,336101376,3950601606309328,3950608433100829],[268599300,403177476,1975301917236486,1975303102468593],[268599300,403210240,-1975303102468593,-1975301917236486],[268599300,469762052,1975301917270118,1975303102434961],[268599300,469794816,-1975303102434961,-1975301917270118],[268599300,1074266112,13247603821617226,13247605066971786],[268599300,1074298884,13247603821617226,13247605066971786],[268599300,1140850688,13247603827010127,13247605061578886],[268599300,1140883460,15222905744246613,15222908164047479],[268599300,1140981764,-47064511822081843,-47064508673158980],[268599300,1141014528,45089206614383552,45089208861152192],[268599300,1342832640,13247603821617226,13247605066971786],[268599300,1342865412,13247603821617226,13247605066971786],[268599300,1409286148,45089206614383552,45089208861152192],[268599300,1409318912,-47064511822081843,-47064508673158980],[268599300,1409417216,15222905744246613,15222908164047479],[268599300,1409449988,13247603827010127,13247605061578886],[268599300,17592253284356,-1975303134589986,-1975301885115096],[268599300,17592253317120,1975301885115096,1975303134589986],[268599300,17592521588740,1975301885115096,1975303134589986],[268599300,17592521621504,-1975303134589986,-1975301885115096],[268599300,35184372744196,-1975303142599947,-1975301877105131],[268599300,35184372776960,1975301877105131,1975303142599947],[268599300,35184439328772,-22544604497985104,-22544603239782766],[268599300,35184439361536,22544603239782766,22544604497985104],[268599300,35184641048580,1975301877105131,1975303142599947],[268599300,35184641081344,-1975303142599947,-1975301877105131],[268599300,35184707633156,22544603239782766,22544604497985104],[268599300,35184707665920,-22544604497985104,-22544603239782766],[268599304,0,-3950606863625140,-3950603175785020],[268599304,32776,-4648505765491449,-4648493659097978],[268599304,131080,6623798642954895,6623805801339609],[268599304,163840,-5925910945469332,-5925904113645905],[268599304,524290,13247603821617226,13247605066971786],[268599304,524292,-18594001258855540,-18593996439502170],[268599304,524416,13247603826875223,13247605061713792],[268599304,557066,24519905258499972,24519907498972975],[268599304,557068,-11272305289278916,-11272298579605019],[268599304,557192,11272297923178146,11272305945705791],[268599304,655370,-11272303056635485,-11272300812248450],[268599304,655372,-11272302995044411,-11272300873839524],[268599304,655496,3950601481951714,3950608557458446],[268599304,688132,3950603919085972,3950606120324188],[268599304,688256,-1975303134589986,-1975301885115096],[268599304,1605640,24519905365967204,24519907391505747],[268599304,1703944,-1975303102468593,-1975301917236486],[268599304,1736704,-22544604430576096,-22544603307191776],[268599304,67108866,13247603827010127,13247605061578886],[268599304,67108868,22544601452067054,22544606285700820],[268599304,67108992,13247603821511848,13247605067077166],[268599304,67141642,6623801102928978,6623803341365525],[268599304,67141644,-8599108093729955,-8599101370269630],[268599304,67141768,6623801098016984,6623803346277521],[268599304,67239946,6623801107293350,6623803337001160],[268599304,67239948,6623801159997192,6623803284297315],[268599304,67240072,6623801098016986,6623803346277523],[268599304,67272708,24519905280236082,24519907477236870],[268599304,67633152,-1975304058435710,-1975300961269370],[268599304,67665928,26495204439857584,26495213337320446],[268599304,67764232,-3950608253249321,-3950601786160837],[268599304,67796992,-24519909474570990,-24519903282901962],[268599304,134774792,-11272302995044411,-11272300873839524],[268599304,134873096,13247603822433492,13247605066155522],[268599304,134905856,-1975303102468593,-1975301917236486],[268599304,201359368,6623801159963560,6623803284330947],[268599304,201457672,-4648500337554984,-4648499087034444],[268599304,201490432,-1975303102434961,-1975301917270118],[268599304,268435464,-5925910945469332,-5925904113645905],[268599304,268468224,6623798642954895,6623805801339609],[268599304,268566528,-4648505765491449,-4648493659097978],[268599304,268599304,-3950606863625140,-3950603175785020],[268599304,268959756,3950603919085972,3950606120324188],[268599304,268959880,-1975303134589986,-1975301885115096],[268599304,268992514,-11272303056635485,-11272300812248450],[268599304,268992516,-11272302995044411,-11272300873839524],[268599304,268992640,3950601481951714,3950608557458446],[268599304,269090818,24519905258499972,24519907498972975],[268599304,269090820,-11272305289278916,-11272298579605019],[268599304,269090944,11272297923178146,11272305945705791],[268599304,269123594,13247603821617226,13247605066971786],[268599304,269123596,-18594001258855540,-18593996439502170],[268599304,269123720,13247603826875223,13247605061713792],[268599304,270008328,-22544604430576096,-22544603307191776],[268599304,270041088,-1975303102468593,-1975301917236486],[268599304,270139392,24519905365967204,24519907391505747],[268599304,335544332,24519905280236082,24519907477236870],[268599304,335577090,6623801107293350,6623803337001160],[268599304,335577092,6623801159997192,6623803284297315],[268599304,335577216,6623801098016986,6623803346277523],[268599304,335675394,6623801102928978,6623803341365525],[268599304,335675396,-8599108093729955,-8599101370269630],[268599304,335675520,6623801098016984,6623803346277521],[268599304,335708170,13247603827010127,13247605061578886],[268599304,335708172,22544601452067054,22544606285700820],[268599304,335708296,13247603821511848,13247605067077166],[268599304,336068616,-24519909474570990,-24519903282901962],[268599304,336101376,-3950608253249321,-3950601786160837],[268599304,336199680,26495204439857584,26495213337320446],[268599304,336232456,-1975304058435710,-1975300961269370],[268599304,403177480,-1975303102468593,-1975301917236486],[268599304,403210240,13247603822433492,13247605066155522],[268599304,403308544,-11272302995044411,-11272300873839524],[268599304,469762056,-1975303102434961,-1975301917270118],[268599304,469794816,-4648500337554984,-4648499087034444],[268599304,469893120,6623801159963560,6623803284330947],[268599304,1074266112,-22544604489700504,-22544603248067364],[268599304,1074298888,-26495209977773508,-26495207799404518],[268599304,1074429952,3950603932147814,3950606107262344],[268599304,1140850688,-1975303130040923,-1975301889664154],[268599304,1140883464,-3950608753660642,-3950601285749510],[268599304,1140981768,-1975303102468593,-1975301917236486],[268599304,1141014528,3950601743215454,3950608296194700],[268599304,1342701576,3950603932147814,3950606107262344],[268599304,1342832640,-26495209977773508,-26495207799404518],[268599304,1342865416,-22544604489700504,-22544603248067364],[268599304,1409286152,3950601743215454,3950608296194700],[268599304,1409318912,-1975303102468593,-1975301917236486],[268599304,1409417216,-3950608753660642,-3950601285749510],[268599304,1409449992,-1975303130040923,-1975301889664154],[268599304,17592253186056,-11272303061044145,-11272300807839789],[268599304,17592253284360,13247603788555150,13247605100033866],[268599304,17592253317120,-1975303134589986,-1975301885115096],[268599304,17592521588744,-1975303134589986,-1975301885115096],[268599304,17592521621504,13247603788555150,13247605100033866],[268599304,17592521719808,-11272303061044145,-11272300807839789],[268599304,35184372645896,-11272303070687196,-11272300798196740],[268599304,35184372744200,13247603786922062,13247605101666952],[268599304,35184372776960,-1975303142599947,-1975301877105131],[268599304,35184439230472,24519905244697076,24519907512775874],[268599304,35184439328776,-1975303167312100,-1975301852392980],[268599304,35184439361536,-22544604497985104,-22544603239782766],[268599304,35184641048584,-1975303142599947,-1975301877105131],[268599304,35184641081344,13247603786922062,13247605101666952],[268599304,35184641179648,-11272303070687196,-11272300798196740],[268599304,35184707633160,-22544604497985104,-22544603239782766],[268599304,35184707665920,-1975303167312100,-1975301852392980],[268599304,35184707764224,24519905244697076,24519907512775874],[268599360,557248,11272300812248450,11272303056635485],[268599360,655552,-11272303056635485,-11272300812248450],[268599360,268992640,-11272303056635485,-11272300812248450],[268599360,269090944,11272300812248450,11272303056635485],[268599424,0,-18593999772903408,-18593997925454304],[268599424,32896,-4648502626375994,-4648496798213434],[268599424,131200,-4648502626375994,-4648496798213434],[268599424,163840,-9296999886451704,-9296998962727152],[268599424,524292,-3950606120324188,-3950603919085972],[268599424,524296,-9297001142627820,-9296997706551035],[268599424,557192,-35792210542100730,-35792206084256157],[268599424,557248,-11272303056635485,-11272300812248450],[268599424,558208,-11272302995044411,-11272300873839524],[268599424,655496,22544601642609286,22544606095158586],[268599424,655552,11272300812248450,11272303056635485],[268599424,656512,11272300873839524,11272302995044411],[268599424,688132,-3950606120324188,-3950603919085972],[268599424,688136,3950603919085972,3950606120324188],[268599424,1605760,-873779583,873779583],[268599424,1704064,-873779583,873779583],[268599424,67108872,-13247605067077166,-13247603821511848],[268599424,67141768,-6623803346277521,-6623801098016984],[268599424,67240072,-6623803346277523,-6623801098016986],[268599424,67633152,-9297001129565978,-9296997719612879],[268599424,67666048,22544601642609286,22544606095158586],[268599424,67764352,-35792210542100730,-35792206084256157],[268599424,67796992,3950603932147814,3950606107262344],[268599424,134774912,11272300873839524,11272302995044411],[268599424,134873216,-11272302995044411,-11272300873839524],[268599424,268435584,-9296999886451704,-9296998962727152],[268599424,268468224,-4648502626375994,-4648496798213434],[268599424,268566528,-4648502626375994,-4648496798213434],[268599424,268599424,-18593999772903408,-18593997925454304],[268599424,268959876,-3950606120324188,-3950603919085972],[268599424,268959880,3950603919085972,3950606120324188],[268599424,268992520,22544601642609286,22544606095158586],[268599424,268992576,11272300812248450,11272303056635485],[268599424,268993536,11272300873839524,11272302995044411],[268599424,269090824,-35792210542100730,-35792206084256157],[268599424,269090880,-11272303056635485,-11272300812248450],[268599424,269091840,-11272302995044411,-11272300873839524],[268599424,269123716,-3950606120324188,-3950603919085972],[268599424,269123720,-9297001142627820,-9296997706551035],[268599424,270041088,-873779583,873779583],[268599424,270139392,-873779583,873779583],[268599424,335577096,-6623803346277523,-6623801098016986],[268599424,335675400,-6623803346277521,-6623801098016984],[268599424,335708296,-13247605067077166,-13247603821511848],[268599424,336068736,3950603932147814,3950606107262344],[268599424,336101376,-35792210542100730,-35792206084256157],[268599424,336199680,22544601642609286,22544606095158586],[268599424,336232576,-9297001129565978,-9296997719612879],[268599424,403210240,-11272302995044411,-11272300873839524],[268599424,403308544,11272300873839524,11272302995044411],[268599424,1074266112,-3950606107262344,-3950603932147814],[268599424,1074429952,-3950606107262344,-3950603932147814],[268599424,1342701696,-3950606107262344,-3950603932147814],[268599424,1342865536,-3950606107262344,-3950603932147814],[268599424,35184372646016,11272300798196740,11272303070687196],[268599424,35184372744320,-11272303070687196,-11272300798196740],[268599424,35184641081344,-11272303070687196,-11272300798196740],[268599424,35184641179648,11272300798196740,11272303070687196],[268600320,558208,11272300873839524,11272302995044411],[268600320,656512,-11272302995044411,-11272300873839524],[268600320,1606656,-24519907391505747,-24519905365967204],[268600320,1704960,24519905365967204,24519907391505747],[268600320,268992640,-11272302995044411,-11272300873839524],[268600320,269090944,11272300873839524,11272302995044411],[268600320,270041088,24519905365967204,24519907391505747],[268600320,270139392,-24519907391505747,-24519905365967204],[268959744,72,11272301423813928,11272302445070008],[268959744,136,19173508473961242,19173515473743010],[268959744,1032,11272301474344213,11272302394539721],[268959744,32776,-9296999886451704,-9296998962727152],[268959744,32896,4648498045480100,4648501379109325],[268959744,131080,-63683211765177830,-63683201408715624],[268959744,131136,-15920803552528152,-15920799740945212],[268959744,131200,-66663850285081034,-66663799369372644],[268959744,132096,1277404455586225,1277411178939584],[268959744,1048584,6623798624404334,6623805819890177],[268959744,67108872,-7901216811716128,-7901203267104184],[268959744,67108928,4648497809818828,4648501614770600],[268959744,67108992,77936102841789496,77936150681548118],[268959744,67109888,-8599108093729955,-8599101370269630],[268959744,67240072,-3950606388421522,-3950603650988640],[268959744,67272712,11272301159430178,11272302709453758],[268959744,67272832,13247603826875223,13247605061713792],[268959744,68288520,-4648500367937248,-4648499056652179],[268959744,68288640,42416007508284513,42416013562366883],[268959744,134217736,-8599108332258679,-8599101131740910],[268959744,135397504,57638914684799306,57638920294146182],[268959744,135398400,-1975303102434961,-1975301917270118],[268959744,201457672,-4648500367937249,-4648499056652180],[268959744,201457792,-33119013675915179,-33119008545557361],[268959744,202375296,-53688314809147586,-53688310130387744],[268959744,202376192,-1975303102468593,-1975301917236486],[268959744,268959816,11272301423813928,11272302445070008],[268959744,268959880,19173508473961242,19173515473743010],[268959744,268960776,11272301474344213,11272302394539721],[268959744,268992520,-9296999886451704,-9296998962727152],[268959744,268992640,4648498045480100,4648501379109325],[268959744,269090824,-63683211765177830,-63683201408715624],[268959744,269090880,-15920803552528152,-15920799740945212],[268959744,269090944,-66663850285081034,-66663799369372644],[268959744,269091840,1277404455586225,1277411178939584],[268959744,270008328,6623798624404334,6623805819890177],[268959744,336068616,-7901216811716128,-7901203267104184],[268959744,336068672,4648497809818828,4648501614770600],[268959744,336068736,77936102841789496,77936150681548118],[268959744,336069632,-8599108093729955,-8599101370269630],[268959744,336199816,-3950606388421522,-3950603650988640],[268959744,336232456,11272301159430178,11272302709453758],[268959744,336232576,13247603826875223,13247605061713792],[268959744,337248264,-4648500367937248,-4648499056652179],[268959744,337248384,42416007508284513,42416013562366883],[268959744,403177480,-8599108332258679,-8599101131740910],[268959744,404357248,57638914684799306,57638920294146182],[268959744,404358144,-1975303102434961,-1975301917270118],[268959744,470417416,-4648500367937249,-4648499056652180],[268959744,470417536,-33119013675915179,-33119008545557361],[268959744,471335040,-53688314809147586,-53688310130387744],[268959744,471335936,-1975303102468593,-1975301917236486],[268959744,1073741952,4648498045480103,4648501379109328],[268959744,1140981768,-1975303134066536,-1975301885638544],[268959744,1140981888,-22544604485915178,-22544603251852693],[268959744,1342701696,4648498045480103,4648501379109328],[268959744,1409941512,-1975303134066536,-1975301885638544],[268959744,1409941632,-22544604485915178,-22544603251852693],[268959744,17592186044544,-11272305547187129,-11272298321696800],[268959744,17592253284360,13247603750907644,13247605137681374],[268959744,17592253284480,-1975303200228061,-1975301819477018],[268959744,17592455004288,-11272305547187129,-11272298321696800],[268959744,17592522244104,13247603750907644,13247605137681374],[268959744,17592522244224,-1975303200228061,-1975301819477018],[268959744,35184372088840,-11272305547187129,-11272298321696800],[268959744,35184373268608,13247602507378184,13247606381210832],[268959744,35184439328776,-1975303200228061,-1975301819477018],[268959744,35184439328896,-35792211106366460,-35792205519990416],[268959744,35184440246400,-13247606381210832,-13247602507378184],[268959744,35184506437760,-13247606381210832,-13247602507378184],[268959744,35184573415552,13247602507378184,13247606381210832],[268959744,35184641048584,-11272305547187129,-11272298321696800],[268959744,35184642228352,13247602507378184,13247606381210832],[268959744,35184708288520,-1975303200228061,-1975301819477018],[268959744,35184708288640,-35792211106366460,-35792205519990416],[268959744,35184709206144,-13247606381210832,-13247602507378184],[268959744,35184775397504,-13247606381210832,-13247602507378184],[268959744,35184842375296,13247602507378184,13247606381210832],[268959754,524290,-3950609856348444,-3950600183061726],[268959754,524296,3950600183061726,3950609856348444],[268959754,524482,6623801015151933,6623803429142575],[268959754,524488,-6623803429142575,-6623801015151933],[268959754,67764226,6623801015151933,6623803429142575],[268959754,67764232,-6623803429142575,-6623801015151933],[268959754,268435458,3950600183061726,3950609856348444],[268959754,268435464,-3950609856348444,-3950600183061726],[268959754,268435650,-6623803429142575,-6623801015151933],[268959754,268435656,6623801015151933,6623803429142575],[268959754,335675394,-6623803429142575,-6623801015151933],[268959754,335675400,6623801015151933,6623803429142575],[268959756,524292,-6623806745939431,-6623797698355075],[268959756,524296,6623797698355075,6623806745939431],[268959756,688132,3950603919085972,3950606120324188],[268959756,688136,-3950606120324188,-3950603919085972],[268959756,67764228,6623801098016984,6623803346277521],[268959756,67764232,-6623803346277521,-6623801098016984],[268959756,268435460,6623797698355075,6623806745939431],[268959756,268435464,-6623806745939431,-6623797698355075],[268959756,268599300,-3950606120324188,-3950603919085972],[268959756,268599304,3950603919085972,3950606120324188],[268959756,335675396,-6623803346277521,-6623801098016984],[268959756,335675400,6623801098016984,6623803346277521],[268959810,524290,-4648502135287572,-4648497289301856],[268959810,524352,4648497289301856,4648502135287572],[268959810,524426,24519905151602618,24519907605870334],[268959810,524488,-24519907605870334,-24519905151602618],[268959810,268435458,4648497289301856,4648502135287572],[268959810,268435520,-4648502135287572,-4648497289301856],[268959810,268435594,-24519907605870334,-24519905151602618],[268959810,268435656,24519905151602618,24519907605870334],[268959812,524428,6623801079994226,6623803364300278],[268959812,524488,-6623803364300278,-6623801079994226],[268959812,268435596,-6623803364300278,-6623801079994226],[268959812,268435656,6623801079994226,6623803364300278],[268959816,0,22544602847627856,22544604890140016],[268959816,72,11272301423813928,11272302445070008],[268959816,131200,8599102838302509,8599106625697078],[268959816,131272,6623801015151933,6623803429142575],[268959816,524296,15920798525905540,15920804767567825],[268959816,524352,-4648502836441441,-4648496588147988],[268959816,524426,-17896106590718401,-17896101722460043],[268959816,524428,-6623803364300278,-6623801079994226],[268959816,524482,17896101722460043,17896106590718401],[268959816,524484,6623801079994226,6623803364300278],[268959816,524680,6623801086208550,6623803358085955],[268959816,524736,-6623803358085955,-6623801086208550],[268959816,525448,-932612782,932612781],[268959816,525504,-932612781,932612782],[268959816,655496,-49039815165502764,-49039810349443144],[268959816,655552,51015112847771814,51015117686879173],[268959816,1048704,6623801086208550,6623803358085955],[268959816,1048776,6623801086208550,6623803358085955],[268959816,67108992,-6623803429142575,-6623801015151933],[268959816,67109064,-6623803429142575,-6623801015151933],[268959816,134217856,-6623803358085955,-6623801086208550],[268959816,134217928,-6623803358085955,-6623801086208550],[268959816,268435464,-4648502836441441,-4648496588147988],[268959816,268435520,15920798525905540,15920804767567825],[268959816,268435594,17896101722460043,17896106590718401],[268959816,268435596,6623801079994226,6623803364300278],[268959816,268435650,-17896106590718401,-17896101722460043],[268959816,268435652,-6623803364300278,-6623801079994226],[268959816,268435848,-6623803358085955,-6623801086208550],[268959816,268435904,6623801086208550,6623803358085955],[268959816,268436616,-932612781,932612782],[268959816,268436672,-932612782,932612781],[268959816,268566664,51015112847771814,51015117686879173],[268959816,268566720,-49039815165502764,-49039810349443144],[268959816,268959744,11272301423813928,11272302445070008],[268959816,268959816,22544602847627856,22544604890140016],[268959816,269090944,6623801015151933,6623803429142575],[268959816,269091016,8599102838302509,8599106625697078],[268959816,270008448,6623801086208550,6623803358085955],[268959816,270008520,6623801086208550,6623803358085955],[268959816,336068736,-6623803429142575,-6623801015151933],[268959816,336068808,-6623803429142575,-6623801015151933],[268959816,403177600,-6623803358085955,-6623801086208550],[268959816,403177672,-6623803358085955,-6623801086208550],[268959816,35184372088960,-24519907574746803,-24519905182726150],[268959816,35184372089032,-24519907574746803,-24519905182726150],[268959816,35184641048704,-24519907574746803,-24519905182726150],[268959816,35184641048776,-24519907574746803,-24519905182726150],[268959873,524299,-13247605096148654,-13247603792440361],[268959873,524301,1975301885638544,1975303134066536],[268959873,524355,4648499059714221,4648500364875210],[268959873,524426,13247603792440361,13247605096148654],[268959873,524428,-1975303134066536,-1975301885638544],[268959873,524482,-4648500364875210,-4648499059714221],[268959873,268435467,13247603792440361,13247605096148654],[268959873,268435469,-1975303134066536,-1975301885638544],[268959873,268435523,-4648500364875210,-4648499059714221],[268959873,268435594,-13247605096148654,-13247603792440361],[268959873,268435596,1975301885638544,1975303134066536],[268959873,268435650,4648499059714221,4648500364875210],[268959874,131080,-1975303194709763,-1975301824995317],[268959874,131136,-4648500405191522,-4648499019397906],[268959874,131210,-15222908329021818,-15222905579272277],[268959874,131266,-4648500405191522,-4648499019397906],[268959874,524290,8599101184095716,8599108279903872],[268959874,524299,13247603792440361,13247605096148654],[268959874,524302,-1975303134066536,-1975301885638544],[268959874,524355,-4648500364875210,-4648499059714221],[268959874,524362,-8599108279903872,-8599101184095716],[268959874,524416,-8599108279903872,-8599101184095716],[268959874,524425,-13247605096148654,-13247603792440361],[268959874,524428,1975301885638544,1975303134066536],[268959874,524481,4648499059714221,4648500364875210],[268959874,524488,8599101184095716,8599108279903872],[268959874,524610,-1975303127852212,-1975301891852867],[268959874,524736,1975301891852867,1975303127852212],[268959874,525322,-11272303056635485,-11272300812248450],[268959874,525378,6623801107293350,6623803337001160],[268959874,525448,11272300812248450,11272303056635485],[268959874,525504,-6623803337001160,-6623801107293350],[268959874,655370,39742811423957886,39742815241809165],[268959874,655496,-26495210275362748,-26495207501815288],[268959874,1048584,-1975303161793801,-1975301857911278],[268959874,1048640,-4648500367050864,-4648499057538562],[268959874,1048714,-1975303161793801,-1975301857911278],[268959874,1048770,-4648500367050864,-4648499057538562],[268959874,67108872,1975301824995317,1975303194709763],[268959874,67108928,4648499019397906,4648500405191522],[268959874,67109002,1975301824995317,1975303194709763],[268959874,67109058,4648499019397906,4648500405191522],[268959874,134217736,1975301857911278,1975303161793801],[268959874,134217792,4648499057538562,4648500367050864],[268959874,134217866,1975301857911278,1975303161793801],[268959874,134217922,4648499057538562,4648500367050864],[268959874,268435458,-8599108279903872,-8599101184095716],[268959874,268435467,-13247605096148654,-13247603792440361],[268959874,268435470,1975301885638544,1975303134066536],[268959874,268435523,4648499059714221,4648500364875210],[268959874,268435530,8599101184095716,8599108279903872],[268959874,268435584,8599101184095716,8599108279903872],[268959874,268435593,13247603792440361,13247605096148654],[268959874,268435596,-1975303134066536,-1975301885638544],[268959874,268435649,-4648500364875210,-4648499059714221],[268959874,268435656,-8599108279903872,-8599101184095716],[268959874,268435778,1975301891852867,1975303127852212],[268959874,268435904,-1975303127852212,-1975301891852867],[268959874,268436490,11272300812248450,11272303056635485],[268959874,268436546,-6623803337001160,-6623801107293350],[268959874,268436616,-11272303056635485,-11272300812248450],[268959874,268436672,6623801107293350,6623803337001160],[268959874,268566538,-26495210275362748,-26495207501815288],[268959874,268566664,39742811423957886,39742815241809165],[268959874,269090824,-15222908329021818,-15222905579272277],[268959874,269090880,-4648500405191522,-4648499019397906],[268959874,269090954,-1975303194709763,-1975301824995317],[268959874,269091010,-4648500405191522,-4648499019397906],[268959874,270008328,-1975303161793801,-1975301857911278],[268959874,270008384,-4648500367050864,-4648499057538562],[268959874,270008458,-1975303161793801,-1975301857911278],[268959874,270008514,-4648500367050864,-4648499057538562],[268959874,336068616,1975301824995317,1975303194709763],[268959874,336068672,4648499019397906,4648500405191522],[268959874,336068746,1975301824995317,1975303194709763],[268959874,336068802,4648499019397906,4648500405191522],[268959874,403177480,1975301857911278,1975303161793801],[268959874,403177536,4648499057538562,4648500367050864],[268959874,403177610,1975301857911278,1975303161793801],[268959874,403177666,4648499057538562,4648500367050864],[268959874,35184372088840,22544603189358414,22544604548409457],[268959874,35184372088896,1975301826672296,1975303193032786],[268959874,35184372088970,22544603189358414,22544604548409457],[268959874,35184372089026,1975301826672296,1975303193032786],[268959874,35184641048584,22544603189358414,22544604548409457],[268959874,35184641048640,1975301826672296,1975303193032786],[268959874,35184641048714,22544603189358414,22544604548409457],[268959874,35184641048770,1975301826672296,1975303193032786],[268959876,131080,-4648500367937248,-4648499056652179],[268959876,131212,-17896105469604200,-17896102843574241],[268959876,163972,1975301877105131,1975303142599947],[268959876,524292,-4648501379109327,-4648498045480102],[268959876,524301,-1975303134066536,-1975301885638544],[268959876,524302,13247603792440361,13247605096148654],[268959876,524364,-11272303056635485,-11272300812248450],[268959876,524416,4648498045480102,4648501379109327],[268959876,524425,1975301885638544,1975303134066536],[268959876,524426,-13247605096148654,-13247603792440361],[268959876,524488,11272300812248450,11272303056635485],[268959876,525324,6623801172992632,6623803271301876],[268959876,525448,-6623803271301876,-6623801172992632],[268959876,557068,-1975303134589986,-1975301885115096],[268959876,557192,1975301885115096,1975303134589986],[268959876,655372,39742811531898000,39742815133869046],[268959876,655496,-26495210200067732,-26495207577110300],[268959876,688132,-3950606120324188,-3950603919085972],[268959876,688256,1975301885115096,1975303134589986],[268959876,1048584,-4648500337588616,-4648499087000812],[268959876,1048716,-4648500337588616,-4648499087000812],[268959876,67108872,4648499056652179,4648500367937248],[268959876,67109004,4648499056652179,4648500367937248],[268959876,134217736,4648499087000812,4648500337588616],[268959876,134217868,4648499087000812,4648500337588616],[268959876,268435460,4648498045480102,4648501379109327],[268959876,268435469,1975301885638544,1975303134066536],[268959876,268435470,-13247605096148654,-13247603792440361],[268959876,268435532,11272300812248450,11272303056635485],[268959876,268435584,-4648501379109327,-4648498045480102],[268959876,268435593,-1975303134066536,-1975301885638544],[268959876,268435594,13247603792440361,13247605096148654],[268959876,268435656,-11272303056635485,-11272300812248450],[268959876,268436492,-6623803271301876,-6623801172992632],[268959876,268436616,6623801172992632,6623803271301876],[268959876,268468236,1975301885115096,1975303134589986],[268959876,268468360,-1975303134589986,-1975301885115096],[268959876,268566540,-26495210200067732,-26495207577110300],[268959876,268566664,39742811531898000,39742815133869046],[268959876,268599300,1975301885115096,1975303134589986],[268959876,268599424,-3950606120324188,-3950603919085972],[268959876,269090824,-17896105469604200,-17896102843574241],[268959876,269090956,-4648500367937248,-4648499056652179],[268959876,269123584,1975301877105131,1975303142599947],[268959876,270008328,-4648500337588616,-4648499087000812],[268959876,270008460,-4648500337588616,-4648499087000812],[268959876,336068616,4648499056652179,4648500367937248],[268959876,336068748,4648499056652179,4648500367937248],[268959876,403177480,4648499087000812,4648500337588616],[268959876,403177612,4648499087000812,4648500337588616],[268959876,35184372088840,1975301858410281,1975303161294799],[268959876,35184372088972,1975301858410281,1975303161294799],[268959876,35184641048584,1975301858410281,1975303161294799],[268959876,35184641048716,1975301858410281,1975303161294799],[268959880,0,11851812639372616,11851817478857866],[268959880,136,19173508473961242,19173515473743010],[268959880,131074,1975301824995317,1975303194709763],[268959880,131076,4648499056652179,4648500367937248],[268959880,131136,-3950606391264266,-3950603648145893],[268959880,131210,15222905579272277,15222908329021818],[268959880,131212,17896102843574241,17896105469604200],[268959880,131272,-1975303194709763,-1975301824995317],[268959880,132096,-6623803535249348,-6623800909045159],[268959880,132232,-4648500367937248,-4648499056652179],[268959880,163976,-1975303142599947,-1975301877105131],[268959880,524296,-166718780962043040,-166718724742007499],[268959880,524302,-11272303056635485,-11272300812248450],[268959880,524362,28470509652297966,28470513144585146],[268959880,524364,11272300812248450,11272303056635485],[268959880,524416,159397032038790385,159397079835786384],[268959880,524422,11272300812248450,11272303056635485],[268959880,524482,-28470513144585146,-28470509652297966],[268959880,524484,-11272303056635485,-11272300812248450],[268959880,525322,11272300812248450,11272303056635485],[268959880,525324,-6623803271301876,-6623801172992632],[268959880,525384,-11272303056635485,-11272300812248450],[268959880,525442,-11272303056635485,-11272300812248450],[268959880,525444,6623801172992632,6623803271301876],[268959880,525504,11272300812248450,11272303056635485],[268959880,655370,-52990420208255582,-52990415346100484],[268959880,655372,-37767513094879325,-37767508551182639],[268959880,655432,51015112847771814,51015117686879173],[268959880,655490,39742811423957886,39742815241809165],[268959880,655492,24519904596394939,24519908161078011],[268959880,655552,-52990420208255582,-52990415346100484],[268959880,656392,35792206070739152,35792210555617732],[268959880,656512,-37767513094879325,-37767508551182639],[268959880,688136,3950603919085972,3950606120324188],[268959880,688256,-1975303134589986,-1975301885115096],[268959880,1048578,1975301857911278,1975303161793801],[268959880,1048580,4648499087000812,4648500337588616],[268959880,1048640,-1975303161793801,-1975301857911278],[268959880,1048714,1975301857911278,1975303161793801],[268959880,1048716,4648499087000812,4648500337588616],[268959880,1048776,-1975303161793801,-1975301857911278],[268959880,1049600,-4648500337588616,-4648499087000812],[268959880,1049736,-4648500337588616,-4648499087000812],[268959880,1179648,5925906044742719,5925909014372521],[268959880,1179784,17198207831856214,17198211096142960],[268959880,1703944,-19871408894185654,-19871404438697867],[268959880,1704064,8599102631895649,8599106832103938],[268959880,67108866,-1975303194709763,-1975301824995317],[268959880,67108868,-4648500367937248,-4648499056652179],[268959880,67108928,1975301824995317,1975303194709763],[268959880,67109002,-1975303194709763,-1975301824995317],[268959880,67109004,-4648500367937248,-4648499056652179],[268959880,67109064,1975301824995317,1975303194709763],[268959880,67109888,4648499056652179,4648500367937248],[268959880,67110024,4648499056652179,4648500367937248],[268959880,67239936,-3950606388421522,-3950603650988640],[268959880,67240072,-30445818782250594,-30445809034337592],[268959880,67764232,-13247611779979171,-13247597108609852],[268959880,67764352,39742810183793936,39742816481973111],[268959880,68681736,-6623803346277523,-6623801098016986],[268959880,68681856,6623801098016986,6623803346277523],[268959880,134217730,-1975303161793801,-1975301857911278],[268959880,134217732,-4648500337588616,-4648499087000812],[268959880,134217792,1975301857911278,1975303161793801],[268959880,134217866,-1975303161793801,-1975301857911278],[268959880,134217868,-4648500337588616,-4648499087000812],[268959880,134217928,1975301857911278,1975303161793801],[268959880,134218752,4648499087000812,4648500337588616],[268959880,134218888,4648499087000812,4648500337588616],[268959880,134348800,-3950606322589598,-3950603716820562],[268959880,134348936,-28470513207314965,-28470509589568145],[268959880,134873096,17896101898419553,17896106414758888],[268959880,134873216,6623801098016986,6623803346277523],[268959880,135790600,-19871408304471303,-19871405028412220],[268959880,135790720,19871405028412220,19871408304471303],[268959880,201850888,6623801098016986,6623803346277523],[268959880,201851008,-6623803346277523,-6623801098016986],[268959880,268435464,159397032038790385,159397079835786384],[268959880,268435470,11272300812248450,11272303056635485],[268959880,268435530,-28470513144585146,-28470509652297966],[268959880,268435532,-11272303056635485,-11272300812248450],[268959880,268435584,-166718780962043040,-166718724742007499],[268959880,268435590,-11272303056635485,-11272300812248450],[268959880,268435650,28470509652297966,28470513144585146],[268959880,268435652,11272300812248450,11272303056635485],[268959880,268436490,-11272303056635485,-11272300812248450],[268959880,268436492,6623801172992632,6623803271301876],[268959880,268436552,11272300812248450,11272303056635485],[268959880,268436610,11272300812248450,11272303056635485],[268959880,268436612,-6623803271301876,-6623801172992632],[268959880,268436672,-11272303056635485,-11272300812248450],[268959880,268566538,39742811423957886,39742815241809165],[268959880,268566540,24519904596394939,24519908161078011],[268959880,268566600,-52990420208255582,-52990415346100484],[268959880,268566658,-52990420208255582,-52990415346100484],[268959880,268566660,-37767513094879325,-37767508551182639],[268959880,268566720,51015112847771814,51015117686879173],[268959880,268567560,-37767513094879325,-37767508551182639],[268959880,268567680,35792206070739152,35792210555617732],[268959880,268599304,-1975303134589986,-1975301885115096],[268959880,268599424,3950603919085972,3950606120324188],[268959880,268959744,19173508473961242,19173515473743010],[268959880,268959880,11851812639372616,11851817478857866],[268959880,269090818,15222905579272277,15222908329021818],[268959880,269090820,17896102843574241,17896105469604200],[268959880,269090880,-1975303194709763,-1975301824995317],[268959880,269090954,1975301824995317,1975303194709763],[268959880,269090956,4648499056652179,4648500367937248],[268959880,269091016,-3950606391264266,-3950603648145893],[268959880,269091840,-4648500367937248,-4648499056652179],[268959880,269091976,-6623803535249348,-6623800909045159],[268959880,269123584,-1975303142599947,-1975301877105131],[268959880,269615112,8599102631895649,8599106832103938],[268959880,269615232,-19871408894185654,-19871404438697867],[268959880,270008322,1975301857911278,1975303161793801],[268959880,270008324,4648499087000812,4648500337588616],[268959880,270008384,-1975303161793801,-1975301857911278],[268959880,270008458,1975301857911278,1975303161793801],[268959880,270008460,4648499087000812,4648500337588616],[268959880,270008520,-1975303161793801,-1975301857911278],[268959880,270009344,-4648500337588616,-4648499087000812],[268959880,270009480,-4648500337588616,-4648499087000812],[268959880,270139392,17198207831856214,17198211096142960],[268959880,270139528,5925906044742719,5925909014372521],[268959880,335675400,39742810183793936,39742816481973111],[268959880,335675520,-13247611779979171,-13247597108609852],[268959880,336068610,-1975303194709763,-1975301824995317],[268959880,336068612,-4648500367937248,-4648499056652179],[268959880,336068672,1975301824995317,1975303194709763],[268959880,336068746,-1975303194709763,-1975301824995317],[268959880,336068748,-4648500367937248,-4648499056652179],[268959880,336068808,1975301824995317,1975303194709763],[268959880,336069632,4648499056652179,4648500367937248],[268959880,336069768,4648499056652179,4648500367937248],[268959880,336199680,-30445818782250594,-30445809034337592],[268959880,336199816,-3950606388421522,-3950603650988640],[268959880,336592904,6623801098016986,6623803346277523],[268959880,336593024,-6623803346277523,-6623801098016986],[268959880,402784264,6623801098016986,6623803346277523],[268959880,402784384,17896101898419553,17896106414758888],[268959880,403177474,-1975303161793801,-1975301857911278],[268959880,403177476,-4648500337588616,-4648499087000812],[268959880,403177536,1975301857911278,1975303161793801],[268959880,403177610,-1975303161793801,-1975301857911278],[268959880,403177612,-4648500337588616,-4648499087000812],[268959880,403177672,1975301857911278,1975303161793801],[268959880,403178496,4648499087000812,4648500337588616],[268959880,403178632,4648499087000812,4648500337588616],[268959880,403308544,-28470513207314965,-28470509589568145],[268959880,403308680,-3950606322589598,-3950603716820562],[268959880,403701768,19871405028412220,19871408304471303],[268959880,403701888,-19871408304471303,-19871405028412220],[268959880,469762056,-6623803346277523,-6623801098016986],[268959880,469762176,6623801098016986,6623803346277523],[268959880,35184372088834,-22544604548409457,-22544603189358414],[268959880,35184372088836,-1975303161294799,-1975301858410281],[268959880,35184372088896,22544603189358414,22544604548409457],[268959880,35184372088970,-22544604548409457,-22544603189358414],[268959880,35184372088972,-1975303161294799,-1975301858410281],[268959880,35184372089032,22544603189358414,22544604548409457],[268959880,35184372089856,1975301858410281,1975303161294799],[268959880,35184372089992,1975301858410281,1975303161294799],[268959880,35184372219904,-45089209134537452,-45089206340998288],[268959880,35184372220040,-49039814562449270,-49039810952496628],[268959880,35184372744200,15222904455276782,15222909453017315],[268959880,35184372744320,-11272303149817323,-11272300719066616],[268959880,35184373661704,11272300807839789,11272303061044145],[268959880,35184373661824,-11272303061044145,-11272300807839789],[268959880,35184439721992,-11272303149817323,-11272300719066616],[268959880,35184439722112,11272300719066616,11272303149817323],[268959880,35184506830856,-11272303061044145,-11272300807839789],[268959880,35184506830976,11272300807839789,11272303061044145],[268959880,35184640655368,-11272303149817323,-11272300719066616],[268959880,35184640655488,15222904455276782,15222909453017315],[268959880,35184641048578,-22544604548409457,-22544603189358414],[268959880,35184641048580,-1975303161294799,-1975301858410281],[268959880,35184641048640,22544603189358414,22544604548409457],[268959880,35184641048714,-22544604548409457,-22544603189358414],[268959880,35184641048716,-1975303161294799,-1975301858410281],[268959880,35184641048776,22544603189358414,22544604548409457],[268959880,35184641049600,1975301858410281,1975303161294799],[268959880,35184641049736,1975301858410281,1975303161294799],[268959880,35184641179648,-49039814562449270,-49039810952496628],[268959880,35184641179784,-45089209134537452,-45089206340998288],[268959880,35184641572872,-11272303061044145,-11272300807839789],[268959880,35184641572992,11272300807839789,11272303061044145],[268959880,35184707633160,11272300719066616,11272303149817323],[268959880,35184707633280,-11272303149817323,-11272300719066616],[268959880,35184774742024,11272300807839789,11272303061044145],[268959880,35184774742144,-11272303061044145,-11272300807839789],[268959883,524289,-13247605096148654,-13247603792440361],[268959883,524290,13247603792440361,13247605096148654],[268959883,524425,-13247605096148654,-13247603792440361],[268959883,524426,13247603792440361,13247605096148654],[268959883,268435457,13247603792440361,13247605096148654],[268959883,268435458,-13247605096148654,-13247603792440361],[268959883,268435593,13247603792440361,13247605096148654],[268959883,268435594,-13247605096148654,-13247603792440361],[268959885,524289,1975301885638544,1975303134066536],[268959885,524292,-1975303134066536,-1975301885638544],[268959885,524425,1975301885638544,1975303134066536],[268959885,524428,-1975303134066536,-1975301885638544],[268959885,268435457,-1975303134066536,-1975301885638544],[268959885,268435460,1975301885638544,1975303134066536],[268959885,268435593,-1975303134066536,-1975301885638544],[268959885,268435596,1975301885638544,1975303134066536],[268959886,524290,-1975303134066536,-1975301885638544],[268959886,524292,13247603792440361,13247605096148654],[268959886,524296,-11272303056635485,-11272300812248450],[268959886,524422,11272300812248450,11272303056635485],[268959886,524426,-13247605096148654,-13247603792440361],[268959886,524428,1975301885638544,1975303134066536],[268959886,268435458,1975301885638544,1975303134066536],[268959886,268435460,-13247605096148654,-13247603792440361],[268959886,268435464,11272300812248450,11272303056635485],[268959886,268435590,-11272303056635485,-11272300812248450],[268959886,268435594,13247603792440361,13247605096148654],[268959886,268435596,-1975303134066536,-1975301885638544],[268959936,131074,4648499019397906,4648500405191522],[268959936,131080,-4648500405191522,-4648499019397906],[268959936,131266,4648499019397906,4648500405191522],[268959936,131272,-4648500405191522,-4648499019397906],[268959936,131328,4648499057538562,4648500367050864],[268959936,131520,4648499057538562,4648500367050864],[268959936,132096,-4648500367050864,-4648499057538562],[268959936,132288,-4648500367050864,-4648499057538562],[268959936,524362,-19871408468202250,-19871404864681274],[268959936,524426,19871404864681274,19871408468202250],[268959936,524610,6623801107293350,6623803337001160],[268959936,524616,-6623803337001160,-6623801107293350],[268959936,524674,-6623803337001160,-6623801107293350],[268959936,524680,6623801107293350,6623803337001160],[268959936,525378,-6623803337001160,-6623801107293350],[268959936,525384,6623801107293350,6623803337001160],[268959936,525442,6623801107293350,6623803337001160],[268959936,525448,-6623803337001160,-6623801107293350],[268959936,1048578,4648499057538562,4648500367050864],[268959936,1048584,-4648500367050864,-4648499057538562],[268959936,1048770,4648499057538562,4648500367050864],[268959936,1048776,-4648500367050864,-4648499057538562],[268959936,1704000,6623801107293350,6623803337001160],[268959936,1704064,-6623803337001160,-6623801107293350],[268959936,67108866,-4648500405191522,-4648499019397906],[268959936,67108872,4648499019397906,4648500405191522],[268959936,67109058,-4648500405191522,-4648499019397906],[268959936,67109064,4648499019397906,4648500405191522],[268959936,67109120,-4648500367050864,-4648499057538562],[268959936,67109312,-4648500367050864,-4648499057538562],[268959936,67109888,4648499057538562,4648500367050864],[268959936,67110080,4648499057538562,4648500367050864],[268959936,67764288,-19871408468202250,-19871404864681274],[268959936,67764352,19871404864681274,19871408468202250],[268959936,68681792,-6623803337001160,-6623801107293350],[268959936,68681856,6623801107293350,6623803337001160],[268959936,134217730,-4648500367050864,-4648499057538562],[268959936,134217736,4648499057538562,4648500367050864],[268959936,134217922,-4648500367050864,-4648499057538562],[268959936,134217928,4648499057538562,4648500367050864],[268959936,134873152,-6623803337001160,-6623801107293350],[268959936,134873216,6623801107293350,6623803337001160],[268959936,201850944,6623801107293350,6623803337001160],[268959936,201851008,-6623803337001160,-6623801107293350],[268959936,268435530,19871404864681274,19871408468202250],[268959936,268435594,-19871408468202250,-19871404864681274],[268959936,268435778,-6623803337001160,-6623801107293350],[268959936,268435784,6623801107293350,6623803337001160],[268959936,268435842,6623801107293350,6623803337001160],[268959936,268435848,-6623803337001160,-6623801107293350],[268959936,268436546,6623801107293350,6623803337001160],[268959936,268436552,-6623803337001160,-6623801107293350],[268959936,268436610,-6623803337001160,-6623801107293350],[268959936,268436616,6623801107293350,6623803337001160],[268959936,269090818,4648499019397906,4648500405191522],[268959936,269090824,-4648500405191522,-4648499019397906],[268959936,269091010,4648499019397906,4648500405191522],[268959936,269091016,-4648500405191522,-4648499019397906],[268959936,269091072,4648499057538562,4648500367050864],[268959936,269091264,4648499057538562,4648500367050864],[268959936,269091840,-4648500367050864,-4648499057538562],[268959936,269092032,-4648500367050864,-4648499057538562],[268959936,269615168,-6623803337001160,-6623801107293350],[268959936,269615232,6623801107293350,6623803337001160],[268959936,270008322,4648499057538562,4648500367050864],[268959936,270008328,-4648500367050864,-4648499057538562],[268959936,270008514,4648499057538562,4648500367050864],[268959936,270008520,-4648500367050864,-4648499057538562],[268959936,335675456,19871404864681274,19871408468202250],[268959936,335675520,-19871408468202250,-19871404864681274],[268959936,336068610,-4648500405191522,-4648499019397906],[268959936,336068616,4648499019397906,4648500405191522],[268959936,336068802,-4648500405191522,-4648499019397906],[268959936,336068808,4648499019397906,4648500405191522],[268959936,336068864,-4648500367050864,-4648499057538562],[268959936,336069056,-4648500367050864,-4648499057538562],[268959936,336069632,4648499057538562,4648500367050864],[268959936,336069824,4648499057538562,4648500367050864],[268959936,336592960,6623801107293350,6623803337001160],[268959936,336593024,-6623803337001160,-6623801107293350],[268959936,402784320,6623801107293350,6623803337001160],[268959936,402784384,-6623803337001160,-6623801107293350],[268959936,403177474,-4648500367050864,-4648499057538562],[268959936,403177480,4648499057538562,4648500367050864],[268959936,403177666,-4648500367050864,-4648499057538562],[268959936,403177672,4648499057538562,4648500367050864],[268959936,469762112,-6623803337001160,-6623801107293350],[268959936,469762176,6623801107293350,6623803337001160],[268959936,35184372088834,-1975303193032786,-1975301826672296],[268959936,35184372088840,1975301826672296,1975303193032786],[268959936,35184372089026,-1975303193032786,-1975301826672296],[268959936,35184372089032,1975301826672296,1975303193032786],[268959936,35184372744256,11272300730744752,11272303138139186],[268959936,35184372744320,-11272303138139186,-11272300730744752],[268959936,35184439722048,-11272303138139186,-11272300730744752],[268959936,35184439722112,11272300730744752,11272303138139186],[268959936,35184640655424,-11272303138139186,-11272300730744752],[268959936,35184640655488,11272300730744752,11272303138139186],[268959936,35184641048578,-1975303193032786,-1975301826672296],[268959936,35184641048584,1975301826672296,1975303193032786],[268959936,35184641048770,-1975303193032786,-1975301826672296],[268959936,35184641048776,1975301826672296,1975303193032786],[268959936,35184707633216,11272300730744752,11272303138139186],[268959936,35184707633280,-11272303138139186,-11272300730744752],[268959939,524289,4648499059714221,4648500364875210],[268959939,524290,-4648500364875210,-4648499059714221],[268959939,524481,4648499059714221,4648500364875210],[268959939,524482,-4648500364875210,-4648499059714221],[268959939,268435457,-4648500364875210,-4648499059714221],[268959939,268435458,4648499059714221,4648500364875210],[268959939,268435649,-4648500364875210,-4648499059714221],[268959939,268435650,4648499059714221,4648500364875210],[268959946,524290,22544601129070346,22544606608697526],[268959946,524296,3950603642885640,3950606396524520],[268959946,524352,-26495210251583166,-26495207525594866],[268959946,524426,26495207525594866,26495210251583166],[268959946,524482,-3950606396524520,-3950603642885640],[268959946,524488,-22544606608697526,-22544601129070346],[268959946,268435458,-22544606608697526,-22544601129070346],[268959946,268435464,-3950606396524520,-3950603642885640],[268959946,268435520,26495207525594866,26495210251583166],[268959946,268435594,-26495210251583166,-26495207525594866],[268959946,268435650,3950603642885640,3950606396524520],[268959946,268435656,22544601129070346,22544606608697526],[268959948,524292,-4648500364875210,-4648499059714221],[268959948,524296,4648499059714221,4648500364875210],[268959948,524484,-4648500364875210,-4648499059714221],[268959948,524488,4648499059714221,4648500364875210],[268959948,268435460,4648499059714221,4648500364875210],[268959948,268435464,-4648500364875210,-4648499059714221],[268959948,268435652,4648499059714221,4648500364875210],[268959948,268435656,-4648500364875210,-4648499059714221],[268960008,524488,-6623803358085955,-6623801086208550],[268960008,524736,6623801086208550,6623803358085955],[268960008,525448,-24519907464403207,-24519905293069738],[268960008,525696,24519905293069738,24519907464403207],[268960008,268435656,6623801086208550,6623803358085955],[268960008,268435904,-6623803358085955,-6623801086208550],[268960008,268436616,24519905293069738,24519907464403207],[268960008,268436864,-24519907464403207,-24519905293069738],[268960128,131136,-4648500367050864,-4648499057538562],[268960128,131520,-4648500367050864,-4648499057538562],[268960128,132096,-1975303130040923,-1975301889664154],[268960128,132480,-1975303130040923,-1975301889664154],[268960128,524482,4648499059714221,4648500364875210],[268960128,524488,-6623803337001160,-6623801107293350],[268960128,524610,-4648500364875210,-4648499059714221],[268960128,524616,6623801107293350,6623803337001160],[268960128,525448,26495207799425147,26495209977752878],[268960128,525576,-26495209977752878,-26495207799425147],[268960128,67108928,4648499057538562,4648500367050864],[268960128,67109312,4648499057538562,4648500367050864],[268960128,67109888,1975301889664154,1975303130040923],[268960128,67110272,1975301889664154,1975303130040923],[268960128,268435650,-4648500364875210,-4648499059714221],[268960128,268435656,6623801107293350,6623803337001160],[268960128,268435778,4648499059714221,4648500364875210],[268960128,268435784,-6623803337001160,-6623801107293350],[268960128,268436616,-26495209977752878,-26495207799425147],[268960128,268436744,26495207799425147,26495209977752878],[268960128,269090880,-4648500367050864,-4648499057538562],[268960128,269091264,-4648500367050864,-4648499057538562],[268960128,269091840,-1975303130040923,-1975301889664154],[268960128,269092224,-1975303130040923,-1975301889664154],[268960128,336068672,4648499057538562,4648500367050864],[268960128,336069056,4648499057538562,4648500367050864],[268960128,336069632,1975301889664154,1975303130040923],[268960128,336070016,1975301889664154,1975303130040923],[268960194,524290,-1975303127852212,-1975301891852867],[268960194,524352,6623801107293350,6623803337001160],[268960194,524482,4648499059714221,4648500364875210],[268960194,524544,-4648500364875210,-4648499059714221],[268960194,524674,-6623803337001160,-6623801107293350],[268960194,524736,1975301891852867,1975303127852212],[268960194,268435458,1975301891852867,1975303127852212],[268960194,268435520,-6623803337001160,-6623801107293350],[268960194,268435650,-4648500364875210,-4648499059714221],[268960194,268435712,4648499059714221,4648500364875210],[268960194,268435842,6623801107293350,6623803337001160],[268960194,268435904,-1975303127852212,-1975301891852867],[268960200,524352,-13247605096148654,-13247603792440361],[268960200,524488,-13247605096148654,-13247603792440361],[268960200,524544,13247603792440361,13247605096148654],[268960200,524680,13247603792440361,13247605096148654],[268960200,268435520,13247603792440361,13247605096148654],[268960200,268435656,13247603792440361,13247605096148654],[268960200,268435712,-13247605096148654,-13247603792440361],[268960200,268435848,-13247605096148654,-13247603792440361],[268960770,524426,24519905258499972,24519907498972975],[268960770,524482,6623801102928978,6623803341365525],[268960770,525448,-24519907498972975,-24519905258499972],[268960770,525504,-6623803341365525,-6623801102928978],[268960770,268435594,-24519907498972975,-24519905258499972],[268960770,268435650,-6623803341365525,-6623801102928978],[268960770,268436616,24519905258499972,24519907498972975],[268960770,268436672,6623801102928978,6623803341365525],[268960772,524428,6623801159997192,6623803284297315],[268960772,525448,-6623803284297315,-6623801159997192],[268960772,268435596,-6623803284297315,-6623801159997192],[268960772,268436616,6623801159997192,6623803284297315],[268960776,0,22544602948688426,22544604789079442],[268960776,1032,11272301474344213,11272302394539721],[268960776,131200,8599102950409964,8599106513589621],[268960776,132232,6623801098016984,6623803346277521],[268960776,524296,-4648502482185233,-4648496942404193],[268960776,524426,-24519907498972975,-24519905258499972],[268960776,524428,-6623803284297315,-6623801159997192],[268960776,524488,-964466106,964466108],[268960776,524680,24519905293069738,24519907464403207],[268960776,525312,15920798873942155,15920804419531205],[268960776,525442,24519905258499972,24519907498972975],[268960776,525444,6623801159997192,6623803284297315],[268960776,525504,-964466108,964466106],[268960776,525696,-24519907464403207,-24519905293069738],[268960776,526472,24519905292829456,24519907464643493],[268960776,527488,-24519907464643493,-24519905292829456],[268960776,655496,-49039814989147174,-49039810525798726],[268960776,656512,51015113006242213,51015117528408767],[268960776,1048704,8599103045112288,8599106418887301],[268960776,1049736,6623801159997192,6623803284297315],[268960776,1179648,22544603239782766,22544604497985104],[268960776,1573000,51015113096137411,51015117438513567],[268960776,1574016,-49039814917723134,-49039810597222762],[268960776,1703944,26495207784975390,26495209992202640],[268960776,1704960,-3950606120324188,-3950603919085972],[268960776,67108992,-6623803346277521,-6623801098016984],[268960776,67110024,-6623803346277521,-6623801098016984],[268960776,134217856,-6623803284297315,-6623801159997192],[268960776,134218888,-6623803284297315,-6623801159997192],[268960776,268435464,15920798873942155,15920804419531205],[268960776,268435594,24519905258499972,24519907498972975],[268960776,268435596,6623801159997192,6623803284297315],[268960776,268435656,-964466108,964466106],[268960776,268435848,-24519907464403207,-24519905293069738],[268960776,268436480,-4648502482185233,-4648496942404193],[268960776,268436610,-24519907498972975,-24519905258499972],[268960776,268436612,-6623803284297315,-6623801159997192],[268960776,268436672,-964466106,964466108],[268960776,268436864,24519905293069738,24519907464403207],[268960776,268437640,-24519907464643493,-24519905292829456],[268960776,268438656,24519905292829456,24519907464643493],[268960776,268566664,51015113006242213,51015117528408767],[268960776,268567680,-49039814989147174,-49039810525798726],[268960776,268959744,11272301474344213,11272302394539721],[268960776,268960776,22544602948688426,22544604789079442],[268960776,269090944,6623801098016984,6623803346277521],[268960776,269091976,8599102950409964,8599106513589621],[268960776,269484168,-49039814917723134,-49039810597222762],[268960776,269485184,51015113096137411,51015117438513567],[268960776,269615112,-3950606120324188,-3950603919085972],[268960776,269616128,26495207784975390,26495209992202640],[268960776,270008448,6623801159997192,6623803284297315],[268960776,270009480,8599103045112288,8599106418887301],[268960776,270140424,22544603239782766,22544604497985104],[268960776,336068736,-6623803346277521,-6623801098016984],[268960776,336069768,-6623803346277521,-6623801098016984],[268960776,403177600,-6623803284297315,-6623801159997192],[268960776,403178632,-6623803284297315,-6623801159997192],[268960776,35184372088960,-24519907494573587,-24519905262899363],[268960776,35184372089992,-24519907494573587,-24519905262899363],[268960776,35184641048704,-24519907494573587,-24519905262899363],[268960776,35184641049736,-24519907494573587,-24519905262899363],[268960832,131200,6623801102928978,6623803341365525],[268960832,132288,6623801102928978,6623803341365525],[268960832,524482,-6623803341365525,-6623801102928978],[268960832,524488,-17896105125322940,-17896103187855503],[268960832,525442,6623801102928978,6623803341365525],[268960832,525448,17896103187855503,17896105125322940],[268960832,67108992,-6623803341365525,-6623801102928978],[268960832,67110080,-6623803341365525,-6623801102928978],[268960832,268435650,6623801102928978,6623803341365525],[268960832,268435656,17896103187855503,17896105125322940],[268960832,268436610,-6623803341365525,-6623801102928978],[268960832,268436616,-17896105125322940,-17896103187855503],[268960832,269090944,6623801102928978,6623803341365525],[268960832,269092032,6623801102928978,6623803341365525],[268960832,336068736,-6623803341365525,-6623801102928978],[268960832,336069824,-6623803341365525,-6623801102928978],[268960896,131080,-1975303134066535,-1975301885638543],[268960896,131136,-1975303130040923,-1975301889664154],[268960896,131328,1975301889664154,1975303130040923],[268960896,132232,-1975303134066535,-1975301885638543],[268960896,132288,-1975303130040923,-1975301889664154],[268960896,132480,1975301889664154,1975303130040923],[268960896,133120,1975301885638543,1975303134066535],[268960896,134272,1975301885638543,1975303134066535],[268960896,524488,26495207799425147,26495209977752878],[268960896,524680,-26495209977752878,-26495207799425147],[268960896,525384,-26495209977752878,-26495207799425147],[268960896,525576,26495207799425147,26495209977752878],[268960896,526472,-26495209978356470,-26495207798821558],[268960896,527368,26495207798821558,26495209978356470],[268960896,1048584,-3950606237024947,-3950603802385214],[268960896,1049736,-1975303102434961,-1975301917270118],[268960896,1179648,5925906124214463,5925908934900775],[268960896,1180800,1975300950242052,1975304069463026],[268960896,1573000,-52990419959304000,-52990415595052060],[268960896,1573896,51015113096137411,51015117438513567],[268960896,1704064,-6623804221568240,-6623800222726267],[268960896,1704960,10574405079083164,10574409404621503],[268960896,67108872,1975301885638543,1975303134066535],[268960896,67108928,1975301889664154,1975303130040923],[268960896,67109120,-1975303130040923,-1975301889664154],[268960896,67110024,1975301885638543,1975303134066535],[268960896,67110080,1975301889664154,1975303130040923],[268960896,67110272,-1975303130040923,-1975301889664154],[268960896,67110912,-1975303134066535,-1975301885638543],[268960896,67112064,-1975303134066535,-1975301885638543],[268960896,67764352,19871404874970728,19871408457912797],[268960896,67765248,-19871408457912797,-19871404874970728],[268960896,68157440,-3950606258772122,-3950603780638034],[268960896,68158592,-28470513122209439,-28470509674673669],[268960896,68681856,6623801159997192,6623803284297315],[268960896,68682752,17896101995938767,17896106317239678],[268960896,134217736,1975301917270118,1975303102434961],[268960896,134218888,1975301917270118,1975303102434961],[268960896,134873216,6623801159997192,6623803284297315],[268960896,134874112,-6623803284297315,-6623801159997192],[268960896,201851008,-6623803284297315,-6623801159997192],[268960896,201851904,6623801159997192,6623803284297315],[268960896,268435656,-26495209977752878,-26495207799425147],[268960896,268435848,26495207799425147,26495209977752878],[268960896,268436552,26495207799425147,26495209977752878],[268960896,268436744,-26495209977752878,-26495207799425147],[268960896,268437640,26495207798821558,26495209978356470],[268960896,268438536,-26495209978356470,-26495207798821558],[268960896,269090824,-1975303134066535,-1975301885638543],[268960896,269090880,-1975303130040923,-1975301889664154],[268960896,269091072,1975301889664154,1975303130040923],[268960896,269091976,-1975303134066535,-1975301885638543],[268960896,269092032,-1975303130040923,-1975301889664154],[268960896,269092224,1975301889664154,1975303130040923],[268960896,269092864,1975301885638543,1975303134066535],[268960896,269094016,1975301885638543,1975303134066535],[268960896,269484168,51015113096137411,51015117438513567],[268960896,269485064,-52990419959304000,-52990415595052060],[268960896,269615232,10574405079083164,10574409404621503],[268960896,269616128,-6623804221568240,-6623800222726267],[268960896,270008328,-1975303102434961,-1975301917270118],[268960896,270009480,-3950606237024947,-3950603802385214],[268960896,270139392,1975300950242052,1975304069463026],[268960896,270140544,5925906124214463,5925908934900775],[268960896,335675520,-19871408457912797,-19871404874970728],[268960896,335676416,19871404874970728,19871408457912797],[268960896,336068616,1975301885638543,1975303134066535],[268960896,336068672,1975301889664154,1975303130040923],[268960896,336068864,-1975303130040923,-1975301889664154],[268960896,336069768,1975301885638543,1975303134066535],[268960896,336069824,1975301889664154,1975303130040923],[268960896,336070016,-1975303130040923,-1975301889664154],[268960896,336070656,-1975303134066535,-1975301885638543],[268960896,336071808,-1975303134066535,-1975301885638543],[268960896,336593024,17896101995938767,17896106317239678],[268960896,336593920,6623801159997192,6623803284297315],[268960896,337117184,-28470513122209439,-28470509674673669],[268960896,337118336,-3950606258772122,-3950603780638034],[268960896,402784384,-6623803284297315,-6623801159997192],[268960896,402785280,6623801159997192,6623803284297315],[268960896,403177480,1975301917270118,1975303102434961],[268960896,403178632,1975301917270118,1975303102434961],[268960896,469762176,6623801159997192,6623803284297315],[268960896,469763072,-6623803284297315,-6623801159997192],[268960896,35184372088840,22544603251967752,22544604485800118],[268960896,35184372089992,22544603251967752,22544604485800118],[268960896,35184372744320,-11272303079253853,-11272300789630083],[268960896,35184372745216,11272300789630083,11272303079253853],[268960896,35184439722112,11272300789630083,11272303079253853],[268960896,35184439723008,-11272303079253853,-11272300789630083],[268960896,35184640655488,11272300789630083,11272303079253853],[268960896,35184640656384,-11272303079253853,-11272300789630083],[268960896,35184641048584,22544603251967752,22544604485800118],[268960896,35184641049736,22544603251967752,22544604485800118],[268960896,35184707633280,-11272303079253853,-11272300789630083],[268960896,35184707634176,11272300789630083,11272303079253853],[268960906,524290,13247603821617226,13247605066971786],[268960906,524296,-13247605066971786,-13247603821617226],[268960906,525442,13247603821617226,13247605066971786],[268960906,525448,-13247605066971786,-13247603821617226],[268960906,268435458,-13247605066971786,-13247603821617226],[268960906,268435464,13247603821617226,13247605066971786],[268960906,268436610,-13247605066971786,-13247603821617226],[268960906,268436616,13247603821617226,13247605066971786],[268960908,524292,13247603855419588,13247605033169427],[268960908,524296,-13247605033169427,-13247603855419588],[268960908,525444,13247603855419588,13247605033169427],[268960908,525448,-13247605033169427,-13247603855419588],[268960908,268435460,-13247605033169427,-13247603855419588],[268960908,268435464,13247603855419588,13247605033169427],[268960908,268436612,-13247605033169427,-13247603855419588],[268960908,268436616,13247603855419588,13247605033169427],[268960962,524290,13247603827010127,13247605061578886],[268960962,524352,-13247605061578886,-13247603827010127],[268960962,525442,13247603827010127,13247605061578886],[268960962,525504,-13247605061578886,-13247603827010127],[268960962,268435458,-13247605061578886,-13247603827010127],[268960962,268435520,13247603827010127,13247605061578886],[268960962,268436610,-13247605061578886,-13247603827010127],[268960962,268436672,13247603827010127,13247605061578886],[268960968,524296,-11272302707603802,-11272301161280132],[268960968,524352,-11272302707496740,-11272301161387192],[268960968,524416,31143706687525880,31143710514241570],[268960968,524488,8599103904459875,8599105559539709],[268960968,525312,-8599105559539709,-8599103904459875],[268960968,525384,-31143710514241570,-31143706687525880],[268960968,525448,11272301161387192,11272302707496740],[268960968,525504,11272301161280132,11272302707603802],[268960968,268435464,11272301161280132,11272302707603802],[268960968,268435520,11272301161387192,11272302707496740],[268960968,268435584,-31143710514241570,-31143706687525880],[268960968,268435656,-8599105559539709,-8599103904459875],[268960968,268436480,8599103904459875,8599105559539709],[268960968,268436552,31143706687525880,31143710514241570],[268960968,268436616,-11272302707496740,-11272301161387192],[268960968,268436672,-11272302707603802,-11272301161280132],[268961160,524544,-1975303134066536,-1975301885638544],[268961160,524680,-1975303134066536,-1975301885638544],[268961160,525312,1975301885638544,1975303134066536],[268961160,525448,1975301885638544,1975303134066536],[268961160,268435712,1975301885638544,1975303134066536],[268961160,268435848,1975301885638544,1975303134066536],[268961160,268436480,-1975303134066536,-1975301885638544],[268961160,268436616,-1975303134066536,-1975301885638544],[268961800,525448,-24519907464643493,-24519905292829456],[268961800,527488,24519905292829456,24519907464643493],[268961800,268436616,24519905292829456,24519907464643493],[268961800,268438656,-24519907464643493,-24519905292829456],[268961920,132096,-1975303134066535,-1975301885638543],[268961920,134272,-1975303134066535,-1975301885638543],[268961920,525448,26495207798821558,26495209978356470],[268961920,527368,-26495209978356470,-26495207798821558],[268961920,67109888,1975301885638543,1975303134066535],[268961920,67112064,1975301885638543,1975303134066535],[268961920,268436616,-26495209978356470,-26495207798821558],[268961920,268438536,26495207798821558,26495209978356470],[268961920,269091840,-1975303134066535,-1975301885638543],[268961920,269094016,-1975303134066535,-1975301885638543],[268961920,336069632,1975301885638543,1975303134066535],[268961920,336071808,1975301885638543,1975303134066535],[268962952,525312,1975301892192549,1975303127512530],[268962952,525448,1975301892192549,1975303127512530],[268962952,526336,-1975303127512530,-1975301892192549],[268962952,526472,-1975303127512530,-1975301892192549],[268962952,268436480,-1975303127512530,-1975301892192549],[268962952,268436616,-1975303127512530,-1975301892192549],[268962952,268437504,1975301892192549,1975303127512530],[268962952,268437640,1975301892192549,1975303127512530],[268992514,655370,-11272303056635485,-11272300812248450],[268992514,688136,11272300812248450,11272303056635485],[268992514,268566538,11272300812248450,11272303056635485],[268992514,268599304,-11272303056635485,-11272300812248450],[268992516,524292,-1975304605835260,-1975300413869816],[268992516,557056,1975300413869816,1975304605835260],[268992516,655372,-11272302995044411,-11272300873839524],[268992516,688136,11272300873839524,11272302995044411],[268992516,67764228,-26495209977993164,-26495207799184865],[268992516,67796992,26495207799184865,26495209977993164],[268992516,268435460,1975300413869816,1975304605835260],[268992516,268468224,-1975304605835260,-1975300413869816],[268992516,268566540,11272300873839524,11272302995044411],[268992516,268599304,-11272302995044411,-11272300873839524],[268992516,335675396,26495207799184865,26495209977993164],[268992516,335708160,-26495209977993164,-26495207799184865],[268992520,0,-18593999772903408,-18593997925454304],[268992520,32776,-9296999886451704,-9296998962727152],[268992520,131200,-6623804014035016,-6623800430259491],[268992520,163976,-11272303070687196,-11272300798196740],[268992520,524296,-1975305288493376,-1975299731211704],[268992520,557056,-7321699692989682,-7321694136484094],[268992520,655370,11272300812248450,11272303056635485],[268992520,655372,15222904792925496,15222909115368599],[268992520,655496,22544601642609286,22544606095158586],[268992520,688130,-11272303056635485,-11272300812248450],[268992520,688132,-15222909115368599,-15222904792925496],[268992520,688256,-17896106405885420,-17896101907293023],[268992520,1179648,-11272302995044411,-11272300873839524],[268992520,1212424,-11272302995044411,-11272300873839524],[268992520,67239936,42416007508284513,42416013562366883],[268992520,67272712,22544601642609286,22544606095158586],[268992520,67764232,11272299879110672,11272303989773264],[268992520,67796992,8599102641942379,8599106822057209],[268992520,134348800,11272300873839524,11272302995044411],[268992520,134381576,11272300873839524,11272302995044411],[268992520,268435464,-7321699692989682,-7321694136484094],[268992520,268468224,-1975305288493376,-1975299731211704],[268992520,268566538,-11272303056635485,-11272300812248450],[268992520,268566540,-15222909115368599,-15222904792925496],[268992520,268566664,-17896106405885420,-17896101907293023],[268992520,268599298,11272300812248450,11272303056635485],[268992520,268599300,15222904792925496,15222909115368599],[268992520,268599424,22544601642609286,22544606095158586],[268992520,268959744,-9296999886451704,-9296998962727152],[268992520,268992520,-18593999772903408,-18593997925454304],[268992520,269090944,-11272303070687196,-11272300798196740],[268992520,269123720,-6623804014035016,-6623800430259491],[268992520,270139392,-11272302995044411,-11272300873839524],[268992520,270172168,-11272302995044411,-11272300873839524],[268992520,335675400,8599102641942379,8599106822057209],[268992520,335708160,11272299879110672,11272303989773264],[268992520,336199680,22544601642609286,22544606095158586],[268992520,336232456,42416007508284513,42416013562366883],[268992520,403308544,11272300873839524,11272302995044411],[268992520,403341320,11272300873839524,11272302995044411],[268992520,1074397192,3950603932147814,3950606107262344],[268992520,1074429952,-3950606107262344,-3950603932147814],[268992520,1342308360,-3950606107262344,-3950603932147814],[268992520,1342341120,3950603932147814,3950606107262344],[268992520,35184372219904,11272300798196740,11272303070687196],[268992520,35184372252680,11272300798196740,11272303070687196],[268992520,35184641179648,11272300798196740,11272303070687196],[268992520,35184641212424,11272300798196740,11272303070687196],[268992576,131200,4648499059714221,4648500364875210],[268992576,655552,11272300812248450,11272303056635485],[268992576,688256,-6623803364300278,-6623801079994226],[268992576,268566720,-6623803364300278,-6623801079994226],[268992576,268599424,11272300812248450,11272303056635485],[268992576,269123776,4648499059714221,4648500364875210],[268992640,0,18593997925454304,18593999772903408],[268992640,32896,4648498045480100,4648501379109325],[268992640,131080,-4648500367937249,-4648499056652180],[268992640,131136,-4648500364875210,-4648499059714221],[268992640,132096,-4648500337554984,-4648499087034444],[268992640,163972,-1975303142599947,-1975301877105131],[268992640,163976,13247603786922062,13247605101666952],[268992640,524416,4648498045480101,4648501379109326],[268992640,524428,-1975303134589986,-1975301885115096],[268992640,557056,9296996568177046,9297002281001814],[268992640,557068,1975301885115096,1975303134589986],[268992640,655492,-1975303134589986,-1975301885115096],[268992640,655496,3950601481951714,3950608557458446],[268992640,655552,-11272303056635485,-11272300812248450],[268992640,656512,-11272302995044411,-11272300873839524],[268992640,688132,3950603919085972,3950606120324188],[268992640,688136,-21846713226576023,-21846705126012580],[268992640,688192,6623801079994226,6623803364300278],[268992640,689152,6623801159997192,6623803284297315],[268992640,1179648,9296998645184146,9297000203994710],[268992640,1212544,17896103248910824,17896105064267619],[268992640,1704064,17896103248910824,17896105064267619],[268992640,1736704,-26495209915574692,-26495207861603338],[268992640,67239936,-4648500367937248,-4648499056652179],[268992640,67272832,3950601491169156,3950608548241002],[268992640,67764352,13247603792440361,13247605096148654],[268992640,67796992,-21846713211925840,-21846705140662760],[268992640,134348800,-4648500337588616,-4648499087000812],[268992640,134381696,-11272302995044411,-11272300873839524],[268992640,134905856,6623801159963560,6623803284330947],[268992640,268435584,9296996568177046,9297002281001814],[268992640,268435596,1975301885115096,1975303134589986],[268992640,268468224,4648498045480101,4648501379109326],[268992640,268468236,-1975303134589986,-1975301885115096],[268992640,268566660,3950603919085972,3950606120324188],[268992640,268566664,-21846713226576023,-21846705126012580],[268992640,268566720,6623801079994226,6623803364300278],[268992640,268567680,6623801159997192,6623803284297315],[268992640,268599300,-1975303134589986,-1975301885115096],[268992640,268599304,3950601481951714,3950608557458446],[268992640,268599360,-11272303056635485,-11272300812248450],[268992640,268600320,-11272302995044411,-11272300873839524],[268992640,268959744,4648498045480100,4648501379109325],[268992640,268992640,18593997925454304,18593999772903408],[268992640,269090820,-1975303142599947,-1975301877105131],[268992640,269090824,13247603786922062,13247605101666952],[268992640,269123720,-4648500367937249,-4648499056652180],[268992640,269123776,-4648500364875210,-4648499059714221],[268992640,269124736,-4648500337554984,-4648499087034444],[268992640,269615232,-26495209915574692,-26495207861603338],[268992640,269647872,17896103248910824,17896105064267619],[268992640,270139392,17896103248910824,17896105064267619],[268992640,270172288,9296998645184146,9297000203994710],[268992640,335675520,-21846713211925840,-21846705140662760],[268992640,335708160,13247603792440361,13247605096148654],[268992640,336199680,3950601491169156,3950608548241002],[268992640,336232576,-4648500367937248,-4648499056652179],[268992640,402784384,6623801159963560,6623803284330947],[268992640,403308544,-11272302995044411,-11272300873839524],[268992640,403341440,-4648500337588616,-4648499087000812],[268992640,1073905792,-1975303130061553,-1975301889643525],[268992640,1074397312,-1975303134066536,-1975301885638544],[268992640,1074429952,3950603932147814,3950606107262344],[268992640,1140883584,-1975303130061553,-1975301889643525],[268992640,1141407744,1975301889643525,1975303130061553],[268992640,1342308480,3950603932147814,3950606107262344],[268992640,1342341120,-1975303134066536,-1975301885638544],[268992640,1342832640,-1975303130061553,-1975301889643525],[268992640,1409286272,1975301889643525,1975303130061553],[268992640,1409810432,-1975303130061553,-1975301889643525],[268992640,35184372219904,-1975303161294799,-1975301858410281],[268992640,35184372252800,-11272303070687196,-11272300798196740],[268992640,35184372776960,9296998263946318,9297000585232538],[268992640,35184640655488,9296998263946318,9297000585232538],[268992640,35184641179648,-11272303070687196,-11272300798196740],[268992640,35184641212544,-1975303161294799,-1975301858410281],[268992652,524292,-1975303134589986,-1975301885115096],[268992652,524428,-1975303134589986,-1975301885115096],[268992652,557056,1975301885115096,1975303134589986],[268992652,557192,1975301885115096,1975303134589986],[268992652,268435460,1975301885115096,1975303134589986],[268992652,268435596,1975301885115096,1975303134589986],[268992652,268468224,-1975303134589986,-1975301885115096],[268992652,268468360,-1975303134589986,-1975301885115096],[268993536,131200,4648499087034444,4648500337554984],[268993536,656512,11272300873839524,11272302995044411],[268993536,688256,-6623803284297315,-6623801159997192],[268993536,1179648,1975301917270118,1975303102434961],[268993536,1704960,-24519907391505747,-24519905365967204],[268993536,1736704,26495207861603338,26495209915574692],[268993536,268567680,-6623803284297315,-6623801159997192],[268993536,268599424,11272300873839524,11272302995044411],[268993536,269124736,4648499087034444,4648500337554984],[268993536,269616128,26495207861603338,26495209915574692],[268993536,269647872,-24519907391505747,-24519905365967204],[268993536,270173184,1975301917270118,1975303102434961],[269090817,524299,1975301857911278,1975303161793801],[269090817,524301,22544603248067364,22544604489700504],[269090817,557061,-13247605066971786,-13247603821617226],[269090817,655370,-1975303161793801,-1975301857911278],[269090817,655372,-22544604489700504,-22544603248067364],[269090817,688132,13247603821617226,13247605066971786],[269090817,268435467,-1975303161793801,-1975301857911278],[269090817,268435469,-22544604489700504,-22544603248067364],[269090817,268468229,13247603821617226,13247605066971786],[269090817,268566538,1975301857911278,1975303161793801],[269090817,268566540,22544603248067364,22544604489700504],[269090817,268599300,-13247605066971786,-13247603821617226],[269090818,136,13247603754276960,13247605134312055],[269090818,131210,15222905579272277,15222908329021818],[269090818,131266,4648499019397906,4648500405191522],[269090818,524290,-1975304416511920,-1975300603193161],[269090818,524299,-1975303161793801,-1975301857911278],[269090818,524302,-22544604489700504,-22544603248067364],[269090818,524362,-1975303194709763,-1975301824995317],[269090818,524426,-47064512135024435,-47064508360216381],[269090818,524482,-6623803429142575,-6623801015151933],[269090818,557066,24519905258499972,24519907498972975],[269090818,655360,1975300603193161,1975304416511920],[269090818,655369,1975301857911278,1975303161793801],[269090818,655372,22544603248067364,22544604489700504],[269090818,655432,1975301824995317,1975303194709763],[269090818,655496,45089206368525624,45089209107010112],[269090818,655552,1975301824995317,1975303194709763],[269090818,688136,-24519907498972975,-24519905258499972],[269090818,1048584,13247603792440361,13247605096148654],[269090818,1179658,13247603792440361,13247605096148654],[269090818,67108872,-26495210251583166,-26495207525594866],[269090818,67239946,-19871408468202250,-19871404864681274],[269090818,67633162,17896101722460043,17896106590718401],[269090818,67764232,-24519907605870334,-24519905151602618],[269090818,134217736,-13247605096148654,-13247603792440361],[269090818,134348810,-13247605096148654,-13247603792440361],[269090818,268435458,1975300603193161,1975304416511920],[269090818,268435467,1975301857911278,1975303161793801],[269090818,268435470,22544603248067364,22544604489700504],[269090818,268435530,1975301824995317,1975303194709763],[269090818,268435594,45089206368525624,45089209107010112],[269090818,268435650,1975301824995317,1975303194709763],[269090818,268468234,-24519907498972975,-24519905258499972],[269090818,268566528,-1975304416511920,-1975300603193161],[269090818,268566537,-1975303161793801,-1975301857911278],[269090818,268566540,-22544604489700504,-22544603248067364],[269090818,268566600,-1975303194709763,-1975301824995317],[269090818,268566664,-47064512135024435,-47064508360216381],[269090818,268566720,-6623803429142575,-6623801015151933],[269090818,268599304,24519905258499972,24519907498972975],[269090818,268959880,15222905579272277,15222908329021818],[269090818,268959936,4648499019397906,4648500405191522],[269090818,269090954,13247603754276960,13247605134312055],[269090818,270008328,13247603792440361,13247605096148654],[269090818,270139402,13247603792440361,13247605096148654],[269090818,335544330,-24519907605870334,-24519905151602618],[269090818,335675400,17896101722460043,17896106590718401],[269090818,336068616,-19871408468202250,-19871404864681274],[269090818,336199690,-26495210251583166,-26495207525594866],[269090818,403177480,-13247605096148654,-13247603792440361],[269090818,403308554,-13247605096148654,-13247603792440361],[269090818,35184372088840,-13247605134312055,-13247603754276960],[269090818,35184372219914,-13247605134312055,-13247603754276960],[269090818,35184641048584,-13247605134312055,-13247603754276960],[269090818,35184641179658,-13247605134312055,-13247603754276960],[269090820,136,13247603786922062,13247605101666952],[269090820,32896,-1975303142599947,-1975301877105131],[269090820,131212,17896102843574241,17896105469604200],[269090820,163972,-1975303142599947,-1975301877105131],[269090820,524292,11272298579605019,11272305289278916],[269090820,524301,-22544604489700504,-22544603248067364],[269090820,524302,-1975303161793801,-1975301857911278],[269090820,524428,-8599106519433716,-8599102944565871],[269090820,557061,13247603821617226,13247605066971786],[269090820,557068,-11272305289278916,-11272298579605019],[269090820,655360,-11272305289278916,-11272298579605019],[269090820,655369,22544603248067364,22544604489700504],[269090820,655370,1975301857911278,1975303161793801],[269090820,655496,3950603717154982,3950606322255178],[269090820,688129,-13247605066971786,-13247603821617226],[269090820,688136,11272298579605019,11272305289278916],[269090820,1048584,13247603822433492,13247605066155522],[269090820,1081344,-1975303102468593,-1975301917236486],[269090820,1179660,13247603822433492,13247605066155522],[269090820,1212420,-1975303102468593,-1975301917236486],[269090820,67108872,-26495210186613570,-26495207590564460],[269090820,67141632,3950603783705734,3950606255704424],[269090820,67239948,-19871408457912797,-19871404874970728],[269090820,67272708,-22544605576438951,-22544602161328920],[269090820,67633164,17896101912222451,17896106400955991],[269090820,67665924,-2178588643,2178588646],[269090820,67764232,-24519907498972975,-24519905258499972],[269090820,67796992,26495207799404518,26495209977773508],[269090820,134217736,-13247605066155522,-13247603822433492],[269090820,134250496,1975301917236486,1975303102468593],[269090820,134348812,-13247605066155522,-13247603822433492],[269090820,134381572,1975301917236486,1975303102468593],[269090820,268435460,-11272305289278916,-11272298579605019],[269090820,268435469,22544603248067364,22544604489700504],[269090820,268435470,1975301857911278,1975303161793801],[269090820,268435596,3950603717154982,3950606322255178],[269090820,268468229,-13247605066971786,-13247603821617226],[269090820,268468236,11272298579605019,11272305289278916],[269090820,268566528,11272298579605019,11272305289278916],[269090820,268566537,-22544604489700504,-22544603248067364],[269090820,268566538,-1975303161793801,-1975301857911278],[269090820,268566664,-8599106519433716,-8599102944565871],[269090820,268599297,13247603821617226,13247605066971786],[269090820,268599304,-11272305289278916,-11272298579605019],[269090820,268959880,17896102843574241,17896105469604200],[269090820,268992640,-1975303142599947,-1975301877105131],[269090820,269090956,13247603786922062,13247605101666952],[269090820,269123716,-1975303142599947,-1975301877105131],[269090820,270008328,13247603822433492,13247605066155522],[269090820,270041088,-1975303102468593,-1975301917236486],[269090820,270139404,13247603822433492,13247605066155522],[269090820,270172164,-1975303102468593,-1975301917236486],[269090820,335544332,-24519907498972975,-24519905258499972],[269090820,335577092,26495207799404518,26495209977773508],[269090820,335675400,17896101912222451,17896106400955991],[269090820,335708160,-2178588643,2178588646],[269090820,336068616,-19871408457912797,-19871404874970728],[269090820,336101376,-22544605576438951,-22544602161328920],[269090820,336199692,-26495210186613570,-26495207590564460],[269090820,336232452,3950603783705734,3950606255704424],[269090820,403177480,-13247605066155522,-13247603822433492],[269090820,403210240,1975301917236486,1975303102468593],[269090820,403308556,-13247605066155522,-13247603822433492],[269090820,403341316,1975301917236486,1975303102468593],[269090820,1074298884,13247603826989498,13247605061599516],[269090820,1074429952,-13247605061599516,-13247603826989498],[269090820,1342210052,-13247605061599516,-13247603826989498],[269090820,1342341120,13247603826989498,13247605061599516],[269090820,35184372088840,-13247605101666952,-13247603786922062],[269090820,35184372121600,1975301877105131,1975303142599947],[269090820,35184372219916,-13247605101666952,-13247603786922062],[269090820,35184372252676,1975301877105131,1975303142599947],[269090820,35184641048584,-13247605101666952,-13247603786922062],[269090820,35184641081344,1975301877105131,1975303142599947],[269090820,35184641179660,-13247605101666952,-13247603786922062],[269090820,35184641212420,1975301877105131,1975303142599947],[269090824,0,-98079630297168496,-98079620732723310],[269090824,130,-13247605134312055,-13247603754276960],[269090824,132,-13247605101666952,-13247603786922062],[269090824,32896,8599103418984813,8599106045014772],[269090824,131080,-63683211765177830,-63683201408715624],[269090824,131210,-15222908329021818,-15222905579272277],[269090824,131212,-17896105469604200,-17896102843574241],[269090824,131272,-4648500405191522,-4648499019397906],[269090824,132232,-1975303134066535,-1975301885638543],[269090824,163976,13247603786922062,13247605101666952],[269090824,524296,218159636069763092,218159705380447032],[269090824,524302,24519905258499972,24519907498972975],[269090824,524426,49039810351907138,49039815163038758],[269090824,524428,31143706348939894,31143710852827564],[269090824,524488,6623801015151933,6623803429142575],[269090824,525448,24519905292829456,24519907464643493],[269090824,557066,-24519907498972975,-24519905258499972],[269090824,557068,-37767512457661269,-37767509188400696],[269090824,557192,-35792210542100730,-35792206084256157],[269090824,655360,-252556117717993928,-252556061588214548],[269090824,655366,-24519907498972975,-24519905258499972],[269090824,655490,-47064512135024435,-47064508360216381],[269090824,655492,-26495210655649026,-26495207121529005],[269090824,655552,-1975303194709763,-1975301824995317],[269090824,656512,-22544604485915178,-22544603251852693],[269090824,688130,24519905258499972,24519907498972975],[269090824,688132,37767509188400696,37767512457661269],[269090824,688256,31143706348939894,31143710852827564],[269090824,1048578,-13247605096148654,-13247603792440361],[269090824,1048580,-13247605066155522,-13247603822433492],[269090824,1048704,-21846710653066666,-21846707699521935],[269090824,1081344,13247603822433492,13247605066155522],[269090824,1179658,-13247605096148654,-13247603792440361],[269090824,1179660,-13247605066155522,-13247603822433492],[269090824,1179784,-13247606060429303,-13247602828159713],[269090824,1212424,13247603822433492,13247605066155522],[269090824,1573000,-1975304733296088,-1975300286408991],[269090824,1704064,-6623804322724415,-6623800121570091],[269090824,67108866,26495207525594866,26495210251583166],[269090824,67108868,26495207590564460,26495210186613570],[269090824,67108992,58336806002895800,58336818361228957],[269090824,67141632,-21846710653152227,-21846707699436376],[269090824,67239946,19871404864681274,19871408468202250],[269090824,67239948,19871404874970728,19871408457912797],[269090824,67240072,39742810183793936,39742816481973111],[269090824,67272712,-13247606060429303,-13247602828159713],[269090824,67633162,-17896106590718401,-17896101722460043],[269090824,67633164,-17896106400955991,-17896101912222451],[269090824,67633288,-79485635001138468,-79485618330395612],[269090824,67665928,-1975304719493192,-1975300300211890],[269090824,67764226,24519905151602618,24519907605870334],[269090824,67764228,24519905258499972,24519907498972975],[269090824,67764352,98079620672804862,98079630357086928],[269090824,67796992,-6623804308921517,-6623800135372988],[269090824,68157440,8599103424503113,8599106039496475],[269090824,68288520,13247603792440361,13247605096148654],[269090824,68681736,-35792210542100730,-35792206084256157],[269090824,68812800,31143706348854335,31143710852913125],[269090824,134217730,13247603792440361,13247605096148654],[269090824,134217732,13247603822433492,13247605066155522],[269090824,134217856,26495207590564460,26495210186613570],[269090824,134250496,-13247605066155522,-13247603822433492],[269090824,134348810,13247603792440361,13247605096148654],[269090824,134348812,13247603822433492,13247605066155522],[269090824,134348936,19871404875056286,19871408457827235],[269090824,134381576,-13247605066155522,-13247603822433492],[269090824,134742152,-17896106414758888,-17896101898419553],[269090824,134873216,24519905244697076,24519907512775874],[269090824,135790600,-37767512457661269,-37767509188400696],[269090824,135921664,37767509188400696,37767512457661269],[269090824,201326592,-13247605096148654,-13247603792440361],[269090824,201457672,-17896105464085903,-17896102849092541],[269090824,201850888,31143706348854335,31143710852913125],[269090824,201981952,-26495210655649026,-26495207121529005],[269090824,268435464,-252556117717993928,-252556061588214548],[269090824,268435470,-24519907498972975,-24519905258499972],[269090824,268435594,-47064512135024435,-47064508360216381],[269090824,268435596,-26495210655649026,-26495207121529005],[269090824,268435656,-1975303194709763,-1975301824995317],[269090824,268436616,-22544604485915178,-22544603251852693],[269090824,268468234,24519905258499972,24519907498972975],[269090824,268468236,37767509188400696,37767512457661269],[269090824,268468360,31143706348939894,31143710852827564],[269090824,268566528,218159636069763092,218159705380447032],[269090824,268566534,24519905258499972,24519907498972975],[269090824,268566658,49039810351907138,49039815163038758],[269090824,268566660,31143706348939894,31143710852827564],[269090824,268566720,6623801015151933,6623803429142575],[269090824,268567680,24519905292829456,24519907464643493],[269090824,268599298,-24519907498972975,-24519905258499972],[269090824,268599300,-37767512457661269,-37767509188400696],[269090824,268599424,-35792210542100730,-35792206084256157],[269090824,268959744,-63683211765177830,-63683201408715624],[269090824,268959874,-15222908329021818,-15222905579272277],[269090824,268959876,-17896105469604200,-17896102843574241],[269090824,268959936,-4648500405191522,-4648499019397906],[269090824,268960896,-1975303134066535,-1975301885638543],[269090824,268992640,13247603786922062,13247605101666952],[269090824,269090824,-98079630297168496,-98079620732723310],[269090824,269090954,-13247605134312055,-13247603754276960],[269090824,269090956,-13247605101666952,-13247603786922062],[269090824,269123720,8599103418984813,8599106045014772],[269090824,269484168,-6623804322724415,-6623800121570091],[269090824,269615232,-1975304733296088,-1975300286408991],[269090824,270008322,-13247605096148654,-13247603792440361],[269090824,270008324,-13247605066155522,-13247603822433492],[269090824,270008448,-13247606060429303,-13247602828159713],[269090824,270041088,13247603822433492,13247605066155522],[269090824,270139402,-13247605096148654,-13247603792440361],[269090824,270139404,-13247605066155522,-13247603822433492],[269090824,270139528,-21846710653066666,-21846707699521935],[269090824,270172168,13247603822433492,13247605066155522],[269090824,335544330,24519905151602618,24519907605870334],[269090824,335544332,24519905258499972,24519907498972975],[269090824,335544456,98079620672804862,98079630357086928],[269090824,335577096,-6623804308921517,-6623800135372988],[269090824,335675394,-17896106590718401,-17896101722460043],[269090824,335675396,-17896106400955991,-17896101912222451],[269090824,335675520,-79485635001138468,-79485618330395612],[269090824,335708160,-1975304719493192,-1975300300211890],[269090824,336068610,19871404864681274,19871408468202250],[269090824,336068612,19871404874970728,19871408457912797],[269090824,336068736,39742810183793936,39742816481973111],[269090824,336101376,-13247606060429303,-13247602828159713],[269090824,336199690,26495207525594866,26495210251583166],[269090824,336199692,26495207590564460,26495210186613570],[269090824,336199816,58336806002895800,58336818361228957],[269090824,336232456,-21846710653152227,-21846707699436376],[269090824,336592904,31143706348854335,31143710852913125],[269090824,336723968,-35792210542100730,-35792206084256157],[269090824,337117184,13247603792440361,13247605096148654],[269090824,337248264,8599103424503113,8599106039496475],[269090824,402653320,24519905244697076,24519907512775874],[269090824,402784384,-17896106414758888,-17896101898419553],[269090824,403177474,13247603792440361,13247605096148654],[269090824,403177476,13247603822433492,13247605066155522],[269090824,403177600,19871404875056286,19871408457827235],[269090824,403210240,-13247605066155522,-13247603822433492],[269090824,403308554,13247603792440361,13247605096148654],[269090824,403308556,13247603822433492,13247605066155522],[269090824,403308680,26495207590564460,26495210186613570],[269090824,403341320,-13247605066155522,-13247603822433492],[269090824,403701768,37767509188400696,37767512457661269],[269090824,403832832,-37767512457661269,-37767509188400696],[269090824,469762056,-26495210655649026,-26495207121529005],[269090824,469893120,31143706348854335,31143710852913125],[269090824,470286336,-17896105464085903,-17896102849092541],[269090824,470417416,-13247605096148654,-13247603792440361],[269090824,1140981768,-1975303134066536,-1975301885638544],[269090824,1141374984,24519905292829457,24519907464643494],[269090824,1141506048,-22544604485915178,-22544603251852693],[269090824,1409286152,-22544604485915178,-22544603251852693],[269090824,1409417216,24519905292829457,24519907464643494],[269090824,1409810432,-1975303134066536,-1975301885638544],[269090824,17592253284360,13247603750907644,13247605137681374],[269090824,17592253677576,-11272303149817323,-11272300719066616],[269090824,17592253808640,-1975303200228061,-1975301819477018],[269090824,17592521588744,-1975303200228061,-1975301819477018],[269090824,17592521719808,-11272303149817323,-11272300719066616],[269090824,17592522113024,13247603750907644,13247605137681374],[269090824,35184372088834,13247603754276960,13247605134312055],[269090824,35184372088836,13247603786922062,13247605101666952],[269090824,35184372088960,26495207514558268,26495210262619762],[269090824,35184372121600,-13247605101666952,-13247603786922062],[269090824,35184372219914,13247603754276960,13247605134312055],[269090824,35184372219916,13247603786922062,13247605101666952],[269090824,35184372220040,37767509015262141,37767512630799828],[269090824,35184372252680,-13247605101666952,-13247603786922062],[269090824,35184372613256,-15222909453017315,-15222904455276782],[269090824,35184372744320,3950603736210166,3950606303199992],[269090824,35184373661704,-24519907512775874,-24519905244697076],[269090824,35184373792768,24519905244697076,24519907512775874],[269090824,35184439197696,-13247605134312055,-13247603754276960],[269090824,35184439328776,-15222908334540116,-15222905573753978],[269090824,35184439721992,49039810320897724,49039815194048170],[269090824,35184439853056,-47064512160515549,-47064508334725266],[269090824,35184506830856,24519905244697076,24519907512775874],[269090824,35184506961920,-24519907512775874,-24519905244697076],[269090824,35184640524424,3950603736210166,3950606303199992],[269090824,35184640655488,-15222909453017315,-15222904455276782],[269090824,35184641048578,13247603754276960,13247605134312055],[269090824,35184641048580,13247603786922062,13247605101666952],[269090824,35184641048704,37767509015262141,37767512630799828],[269090824,35184641081344,-13247605101666952,-13247603786922062],[269090824,35184641179658,13247603754276960,13247605134312055],[269090824,35184641179660,13247603786922062,13247605101666952],[269090824,35184641179784,26495207514558268,26495210262619762],[269090824,35184641212424,-13247605101666952,-13247603786922062],[269090824,35184641572872,24519905244697076,24519907512775874],[269090824,35184641703936,-24519907512775874,-24519905244697076],[269090824,35184707633160,-47064512160515549,-47064508334725266],[269090824,35184707764224,49039810320897724,49039815194048170],[269090824,35184708157440,-15222908334540116,-15222905573753978],[269090824,35184708288520,-13247605134312055,-13247603754276960],[269090824,35184774742024,-24519907512775874,-24519905244697076],[269090824,35184774873088,24519905244697076,24519907512775874],[269090827,524289,1975301857911278,1975303161793801],[269090827,524290,-1975303161793801,-1975301857911278],[269090827,655369,1975301857911278,1975303161793801],[269090827,655370,-1975303161793801,-1975301857911278],[269090827,268435457,-1975303161793801,-1975301857911278],[269090827,268435458,1975301857911278,1975303161793801],[269090827,268566537,-1975303161793801,-1975301857911278],[269090827,268566538,1975301857911278,1975303161793801],[269090829,524289,22544603248067364,22544604489700504],[269090829,524292,-22544604489700504,-22544603248067364],[269090829,655369,22544603248067364,22544604489700504],[269090829,655372,-22544604489700504,-22544603248067364],[269090829,268435457,-22544604489700504,-22544603248067364],[269090829,268435460,22544603248067364,22544604489700504],[269090829,268566537,-22544604489700504,-22544603248067364],[269090829,268566540,22544603248067364,22544604489700504],[269090830,524290,-22544604489700504,-22544603248067364],[269090830,524292,-1975303161793801,-1975301857911278],[269090830,524296,24519905258499972,24519907498972975],[269090830,655366,-24519907498972975,-24519905258499972],[269090830,655370,1975301857911278,1975303161793801],[269090830,655372,22544603248067364,22544604489700504],[269090830,268435458,22544603248067364,22544604489700504],[269090830,268435460,1975301857911278,1975303161793801],[269090830,268435464,-24519907498972975,-24519905258499972],[269090830,268566534,24519905258499972,24519907498972975],[269090830,268566538,-1975303161793801,-1975301857911278],[269090830,268566540,-22544604489700504,-22544603248067364],[269090880,0,-22544604890140016,-22544602847627856],[269090880,136,-1975303196554503,-1975301823150576],[269090880,32896,-4648500364875210,-4648499059714221],[269090880,131136,-15920803552528152,-15920799740945212],[269090880,131266,-4648500405191522,-4648499019397906],[269090880,131272,-1975303194709763,-1975301824995317],[269090880,131520,-4648500367050864,-4648499057538562],[269090880,132288,-1975303130040923,-1975301889664154],[269090880,524352,6623798927600937,6623805516693572],[269090880,524362,1975301824995317,1975303194709763],[269090880,524482,6623801015151933,6623803429142575],[269090880,524488,-3950609326662792,-3950600712747379],[269090880,524736,6623801086208550,6623803358085955],[269090880,525504,24519905293069738,24519907464403207],[269090880,557248,-11272303056635485,-11272300812248450],[269090880,655360,-13247606347638304,-13247602540950713],[269090880,655370,-1975303194709763,-1975301824995317],[269090880,655490,-1975303194709763,-1975301824995317],[269090880,655496,3950601242433032,3950608796977140],[269090880,655744,-1975303161793801,-1975301857911278],[269090880,656512,-22544604489700504,-22544603248067364],[269090880,688256,6623801079994226,6623803364300278],[269090880,1048704,-8599105559539709,-8599103904459875],[269090880,1179840,-964466108,964466106],[269090880,1573056,-26495209977752878,-26495207799425147],[269090880,1704064,17896103187855503,17896105125322940],[269090880,67108992,22544601129070346,22544606608697526],[269090880,67240128,6623801015151933,6623803429142575],[269090880,67633344,-8599108279903872,-8599101184095716],[269090880,67764352,24519905151602618,24519907605870334],[269090880,134217856,13247603792440361,13247605096148654],[269090880,134348992,6623801086208550,6623803358085955],[269090880,134742208,6623801107293350,6623803337001160],[269090880,268435520,-13247606347638304,-13247602540950713],[269090880,268435530,-1975303194709763,-1975301824995317],[269090880,268435650,-1975303194709763,-1975301824995317],[269090880,268435656,3950601242433032,3950608796977140],[269090880,268435904,-1975303161793801,-1975301857911278],[269090880,268436672,-22544604489700504,-22544603248067364],[269090880,268468416,6623801079994226,6623803364300278],[269090880,268566528,6623798927600937,6623805516693572],[269090880,268566538,1975301824995317,1975303194709763],[269090880,268566658,6623801015151933,6623803429142575],[269090880,268566664,-3950609326662792,-3950600712747379],[269090880,268566912,6623801086208550,6623803358085955],[269090880,268567680,24519905293069738,24519907464403207],[269090880,268599424,-11272303056635485,-11272300812248450],[269090880,268959744,-15920803552528152,-15920799740945212],[269090880,268959874,-4648500405191522,-4648499019397906],[269090880,268959880,-1975303194709763,-1975301824995317],[269090880,268960128,-4648500367050864,-4648499057538562],[269090880,268960896,-1975303130040923,-1975301889664154],[269090880,269090880,-22544604890140016,-22544602847627856],[269090880,269091016,-1975303196554503,-1975301823150576],[269090880,269123776,-4648500364875210,-4648499059714221],[269090880,269484224,17896103187855503,17896105125322940],[269090880,269615232,-26495209977752878,-26495207799425147],[269090880,270008448,-964466108,964466106],[269090880,270139584,-8599105559539709,-8599103904459875],[269090880,335544512,24519905151602618,24519907605870334],[269090880,335675520,-8599108279903872,-8599101184095716],[269090880,336068736,6623801015151933,6623803429142575],[269090880,336199872,22544601129070346,22544606608697526],[269090880,402784384,6623801107293350,6623803337001160],[269090880,403177600,6623801086208550,6623803358085955],[269090880,403308736,13247603792440361,13247605096148654],[269090880,35184372088960,13247603754276960,13247605134312055],[269090880,35184372220096,24519905182726150,24519907574746803],[269090880,35184372613312,-11272303138139186,-11272300730744752],[269090880,35184640655488,-11272303138139186,-11272300730744752],[269090880,35184641048704,24519905182726150,24519907574746803],[269090880,35184641179840,13247603754276960,13247605134312055],[269090890,524290,-1975303194709763,-1975301824995317],[269090890,524352,1975301824995317,1975303194709763],[269090890,655370,-1975303194709763,-1975301824995317],[269090890,655432,1975301824995317,1975303194709763],[269090890,268435458,1975301824995317,1975303194709763],[269090890,268435520,-1975303194709763,-1975301824995317],[269090890,268566538,1975301824995317,1975303194709763],[269090890,268566600,-1975303194709763,-1975301824995317],[269090944,0,-3681052522,3681052524],[269090944,72,1975301823150576,1975303196554503],[269090944,1032,1975301852392980,1975303167312100],[269090944,32776,4648499056652180,4648500367937249],[269090944,32832,4648499059714221,4648500364875210],[269090944,33792,4648499087034444,4648500337554984],[269090944,131200,-66663850285081034,-66663799369372644],[269090944,131272,6623801015151933,6623803429142575],[269090944,132232,6623801098016984,6623803346277521],[269090944,132288,6623801102928978,6623803341365525],[269090944,163976,-11272303070687196,-11272300798196740],[269090944,524416,-168694080794423276,-168694029929332347],[269090944,524426,-15222908329021818,-15222905579272277],[269090944,524428,-20569302600800082,-20569300117262707],[269090944,524488,-697899880612376,-697889504566882],[269090944,525448,4648494875353022,4648504549236406],[269090944,525504,-31143710514241570,-31143706687525880],[269090944,557192,11272297923178146,11272305945705791],[269090944,557248,11272300812248450,11272303056635485],[269090944,558208,11272300873839524,11272302995044411],[269090944,655360,235357851276653147,235357909101556156],[269090944,655370,15222905579272277,15222908329021818],[269090944,655372,20569300117262707,20569302600800082],[269090944,655432,-3950609326662792,-3950600712747379],[269090944,656392,-9297003434088727,-9296995415090126],[269090944,656448,24519905258499972,24519907498972975],[269090944,688136,4648494866495498,4648504558093930],[269090944,688192,-6623803364300278,-6623801079994226],[269090944,689152,-6623803284297315,-6623801159997192],[269090944,1048584,15920798685149414,15920804608323947],[269090944,1048640,8599103904459875,8599105559539709],[269090944,1049600,8599103952864898,8599105511134688],[269090944,1081344,-9297000203994710,-9296998645184146],[269090944,1179784,-3950608267983247,-3950601771426911],[269090944,1179840,-964466106,964466108],[269090944,1180800,-13247605939232943,-13247602949356073],[269090944,1212544,-17896105064267619,-17896103248910824],[269090944,1573000,11272299869063941,11272303999819992],[269090944,1573056,26495207799425147,26495209977752878],[269090944,1574016,52990415723206676,52990419831149384],[269090944,1605760,-17896105064267619,-17896103248910824],[269090944,1703944,8599102661848405,8599106802151181],[269090944,1704000,-17896105125322940,-17896103187855503],[269090944,1704960,-31143710097437046,-31143707104330412],[269090944,1736704,26495207861603338,26495209915574692],[269090944,67108872,-45089213226916902,-45089202248618840],[269090944,67108928,-22544606608697526,-22544601129070346],[269090944,67109888,-22544606464959780,-22544601272808088],[269090944,67141632,4648499056652179,4648500367937248],[269090944,67240072,-13247611779979171,-13247597108609852],[269090944,67240128,-6623803429142575,-6623801015151933],[269090944,67241088,-6623803346277521,-6623801098016984],[269090944,67272832,11272297936924019,11272305931959916],[269090944,67633288,-13247611732520567,-13247597156068460],[269090944,67633344,8599101184095716,8599108279903872],[269090944,67634304,8599101150291472,8599108313708112],[269090944,67666048,-11272303056635485,-11272300812248450],[269090944,67764232,-18594007185055848,-18593990513301844],[269090944,67764288,-24519907605870334,-24519905151602618],[269090944,67765248,-24519907498972975,-24519905258499972],[269090944,67796992,4648494894207522,4648504530381905],[269090944,68157440,15920798695415380,15920804598057982],[269090944,68288640,11272299879110672,11272303989773264],[269090944,68681856,-3950608253249321,-3950601786160837],[269090944,68812800,8599102676277534,8599106787722050],[269090944,134217736,-22544606469793008,-22544601267974862],[269090944,134217792,-13247605096148654,-13247603792440361],[269090944,134218752,-13247605066155522,-13247603822433492],[269090944,134250496,4648499087000812,4648500337588616],[269090944,134348936,8599101131740910,8599108332258679],[269090944,134348992,-6623803358085955,-6623801086208550],[269090944,134349952,-6623803284297315,-6623801159997192],[269090944,134381696,11272300873839524,11272302995044411],[269090944,134742152,-6623803346277523,-6623801098016986],[269090944,134742208,-6623803337001160,-6623801107293350],[269090944,134743168,-6623803284297315,-6623801159997192],[269090944,134873096,-24519907512775874,-24519905244697076],[269090944,134905856,-6623803284330947,-6623801159963560],[269090944,135266304,8599103952831266,8599105511168320],[269090944,135397504,52990415723206676,52990419831149384],[269090944,135790720,-13247605939232943,-13247602949356073],[269090944,135921664,-31143710097470678,-31143707104296780],[269090944,201326592,1975301857911278,1975303161793801],[269090944,201457792,4648494894531634,4648504530057793],[269090944,201851008,6623801098016986,6623803346277523],[269090944,201981952,-9297003420342855,-9296995428836002],[269090944,268435584,235357851276653147,235357909101556156],[269090944,268435594,15222905579272277,15222908329021818],[269090944,268435596,20569300117262707,20569302600800082],[269090944,268435656,-3950609326662792,-3950600712747379],[269090944,268436616,-9297003434088727,-9296995415090126],[269090944,268436672,24519905258499972,24519907498972975],[269090944,268468360,4648494866495498,4648504558093930],[269090944,268468416,-6623803364300278,-6623801079994226],[269090944,268469376,-6623803284297315,-6623801159997192],[269090944,268566528,-168694080794423276,-168694029929332347],[269090944,268566538,-15222908329021818,-15222905579272277],[269090944,268566540,-20569302600800082,-20569300117262707],[269090944,268566600,-697899880612376,-697889504566882],[269090944,268567560,4648494875353022,4648504549236406],[269090944,268567616,-31143710514241570,-31143706687525880],[269090944,268599304,11272297923178146,11272305945705791],[269090944,268599360,11272300812248450,11272303056635485],[269090944,268600320,11272300873839524,11272302995044411],[269090944,268959744,-66663850285081034,-66663799369372644],[269090944,268959816,6623801015151933,6623803429142575],[269090944,268960776,6623801098016984,6623803346277521],[269090944,268960832,6623801102928978,6623803341365525],[269090944,268992520,-11272303070687196,-11272300798196740],[269090944,269090944,-3681052522,3681052524],[269090944,269091016,1975301823150576,1975303196554503],[269090944,269091976,1975301852392980,1975303167312100],[269090944,269123720,4648499056652180,4648500367937249],[269090944,269123776,4648499059714221,4648500364875210],[269090944,269124736,4648499087034444,4648500337554984],[269090944,269484168,8599102661848405,8599106802151181],[269090944,269484224,-17896105125322940,-17896103187855503],[269090944,269485184,-31143710097437046,-31143707104330412],[269090944,269516928,26495207861603338,26495209915574692],[269090944,269615112,11272299869063941,11272303999819992],[269090944,269615168,26495207799425147,26495209977752878],[269090944,269616128,52990415723206676,52990419831149384],[269090944,269647872,-17896105064267619,-17896103248910824],[269090944,270008328,-3950608267983247,-3950601771426911],[269090944,270008384,-964466106,964466108],[269090944,270009344,-13247605939232943,-13247602949356073],[269090944,270041088,-17896105064267619,-17896103248910824],[269090944,270139528,15920798685149414,15920804608323947],[269090944,270139584,8599103904459875,8599105559539709],[269090944,270140544,8599103952864898,8599105511134688],[269090944,270172288,-9297000203994710,-9296998645184146],[269090944,335544456,-18594007185055848,-18593990513301844],[269090944,335544512,-24519907605870334,-24519905151602618],[269090944,335545472,-24519907498972975,-24519905258499972],[269090944,335577216,4648494894207522,4648504530381905],[269090944,335675400,-13247611732520567,-13247597156068460],[269090944,335675456,8599101184095716,8599108279903872],[269090944,335676416,8599101150291472,8599108313708112],[269090944,335708160,-11272303056635485,-11272300812248450],[269090944,336068616,-13247611779979171,-13247597108609852],[269090944,336068672,-6623803429142575,-6623801015151933],[269090944,336069632,-6623803346277521,-6623801098016984],[269090944,336101376,11272297936924019,11272305931959916],[269090944,336199816,-45089213226916902,-45089202248618840],[269090944,336199872,-22544606608697526,-22544601129070346],[269090944,336200832,-22544606464959780,-22544601272808088],[269090944,336232576,4648499056652179,4648500367937248],[269090944,336593024,8599102676277534,8599106787722050],[269090944,336723968,-3950608253249321,-3950601786160837],[269090944,337117184,11272299879110672,11272303989773264],[269090944,337248384,15920798695415380,15920804598057982],[269090944,402653320,-24519907512775874,-24519905244697076],[269090944,402686080,-6623803284330947,-6623801159963560],[269090944,402784264,-6623803346277523,-6623801098016986],[269090944,402784320,-6623803337001160,-6623801107293350],[269090944,402785280,-6623803284297315,-6623801159997192],[269090944,403177480,8599101131740910,8599108332258679],[269090944,403177536,-6623803358085955,-6623801086208550],[269090944,403178496,-6623803284297315,-6623801159997192],[269090944,403210240,11272300873839524,11272302995044411],[269090944,403308680,-22544606469793008,-22544601267974862],[269090944,403308736,-13247605096148654,-13247603792440361],[269090944,403309696,-13247605066155522,-13247603822433492],[269090944,403341440,4648499087000812,4648500337588616],[269090944,403701888,-31143710097470678,-31143707104296780],[269090944,403832832,-13247605939232943,-13247602949356073],[269090944,404226048,52990415723206676,52990419831149384],[269090944,404357248,8599103952831266,8599105511168320],[269090944,469762176,-9297003420342855,-9296995428836002],[269090944,469893120,6623801098016986,6623803346277523],[269090944,470286336,4648494894531634,4648504530057793],[269090944,470417536,1975301857911278,1975303161793801],[269090944,1140981888,-20569302596271653,-20569300121791140],[269090944,1141506048,20569300121791140,20569302596271653],[269090944,1409286272,20569300121791140,20569302596271653],[269090944,1409810432,-20569302596271653,-20569300121791140],[269090944,17592253284480,-15222908334540116,-15222905573753978],[269090944,17592253808640,15222905573753978,15222908334540116],[269090944,17592521588864,15222905573753978,15222908334540116],[269090944,17592522113024,-15222908334540116,-15222905573753978],[269090944,35184372088840,18593996078378526,18594001619979184],[269090944,35184372088896,-13247605134312055,-13247603754276960],[269090944,35184372089856,-13247605101666952,-13247603786922062],[269090944,35184372121600,1975301858410281,1975303161294799],[269090944,35184372220040,11272298321696800,11272305547187129],[269090944,35184372220096,-24519907574746803,-24519905182726150],[269090944,35184372221056,-24519907494573587,-24519905262899363],[269090944,35184372252800,11272300798196740,11272303070687196],[269090944,35184372613256,11272300719066616,11272303149817323],[269090944,35184372613312,11272300730744752,11272303138139186],[269090944,35184372614272,11272300789630083,11272303079253853],[269090944,35184372744200,-3950606303199992,-3950603736210166],[269090944,35184372776960,-9297000585232538,-9296998263946318],[269090944,35184373137408,11272301100150310,11272302768733624],[269090944,35184373268608,26495207784975390,26495209992202640],[269090944,35184373661824,-974533467,974533465],[269090944,35184373792768,-15222907934848161,-15222905973445933],[269090944,35184439197696,22544603189358414,22544604548409457],[269090944,35184439328896,17198204228118056,17198214699881130],[269090944,35184439722112,-11272303149817323,-11272300719066616],[269090944,35184439853056,16618691985372593,16618700693280031],[269090944,35184506437760,-13247606381210832,-13247602507378184],[269090944,35184506830976,-11272303061044145,-11272300807839789],[269090944,35184506961920,24519905244697076,24519907512775874],[269090944,35184640524424,-3950606303199992,-3950603736210166],[269090944,35184640557184,-9297000585232538,-9296998263946318],[269090944,35184640655368,11272300719066616,11272303149817323],[269090944,35184640655424,11272300730744752,11272303138139186],[269090944,35184640656384,11272300789630083,11272303079253853],[269090944,35184641048584,11272298321696800,11272305547187129],[269090944,35184641048640,-24519907574746803,-24519905182726150],[269090944,35184641049600,-24519907494573587,-24519905262899363],[269090944,35184641081344,11272300798196740,11272303070687196],[269090944,35184641179784,18593996078378526,18594001619979184],[269090944,35184641179840,-13247605134312055,-13247603754276960],[269090944,35184641180800,-13247605101666952,-13247603786922062],[269090944,35184641212544,1975301858410281,1975303161294799],[269090944,35184641572992,-15222907934848161,-15222905973445933],[269090944,35184641703936,-974533467,974533465],[269090944,35184642097152,26495207784975390,26495209992202640],[269090944,35184642228352,11272301100150310,11272302768733624],[269090944,35184707633280,16618691985372593,16618700693280031],[269090944,35184707764224,-11272303149817323,-11272300719066616],[269090944,35184708157440,17198204228118056,17198214699881130],[269090944,35184708288640,22544603189358414,22544604548409457],[269090944,35184774742144,24519905244697076,24519907512775874],[269090944,35184774873088,-11272303061044145,-11272300807839789],[269090944,35184775266304,-13247606381210832,-13247602507378184],[269090954,130,-13247605134312055,-13247603754276960],[269090954,136,13247603754276960,13247605134312055],[269090954,131074,1975301824995317,1975303194709763],[269090954,131080,-1975303194709763,-1975301824995317],[269090954,524290,-7321700711066549,-7321693118407216],[269090954,524296,-3950609856348444,-3950600183061726],[269090954,524416,-1975303194709763,-1975301824995317],[269090954,524426,-13247605134312055,-13247603754276960],[269090954,655360,13247603754276960,13247605134312055],[269090954,655370,1975301824995317,1975303194709763],[269090954,655490,-7321700711066549,-7321693118407216],[269090954,655496,18593996093162876,18594001605194824],[269090954,268435458,18593996093162876,18594001605194824],[269090954,268435464,-7321700711066549,-7321693118407216],[269090954,268435584,1975301824995317,1975303194709763],[269090954,268435594,13247603754276960,13247605134312055],[269090954,268566528,-13247605134312055,-13247603754276960],[269090954,268566538,-1975303194709763,-1975301824995317],[269090954,268566658,-3950609856348444,-3950600183061726],[269090954,268566664,-7321700711066549,-7321693118407216],[269090954,268959874,-1975303194709763,-1975301824995317],[269090954,268959880,1975301824995317,1975303194709763],[269090954,269090818,13247603754276960,13247605134312055],[269090954,269090824,-13247605134312055,-13247603754276960],[269090956,132,-13247605101666952,-13247603786922062],[269090956,136,13247603786922062,13247605101666952],[269090956,131076,4648499056652179,4648500367937248],[269090956,131080,-4648500367937248,-4648499056652179],[269090956,524292,31143705012464284,31143712189303175],[269090956,524296,-6623806745939431,-6623797698355075],[269090956,524416,-22544604485915178,-22544603251852693],[269090956,524428,1975301885115096,1975303134589986],[269090956,655360,-1975303134589986,-1975301885115096],[269090956,655372,22544603251852693,22544604485915178],[269090956,655492,-1975306059254087,-1975298960450994],[269090956,655496,-22544606482912750,-22544601254855122],[269090956,268435460,-22544606482912750,-22544601254855122],[269090956,268435464,-1975306059254087,-1975298960450994],[269090956,268435584,22544603251852693,22544604485915178],[269090956,268435596,-1975303134589986,-1975301885115096],[269090956,268566528,1975301885115096,1975303134589986],[269090956,268566540,-22544604485915178,-22544603251852693],[269090956,268566660,-6623806745939431,-6623797698355075],[269090956,268566664,31143705012464284,31143712189303175],[269090956,268959876,-4648500367937248,-4648499056652179],[269090956,268959880,4648499056652179,4648500367937248],[269090956,269090820,13247603786922062,13247605101666952],[269090956,269090824,-13247605101666952,-13247603786922062],[269091010,131074,4648499019397906,4648500405191522],[269091010,131136,-4648500405191522,-4648499019397906],[269091010,524290,-6623803429142575,-6623801015151933],[269091010,524352,6623801015151933,6623803429142575],[269091010,655490,-1975303194709763,-1975301824995317],[269091010,655552,1975301824995317,1975303194709763],[269091010,268435458,1975301824995317,1975303194709763],[269091010,268435520,-1975303194709763,-1975301824995317],[269091010,268566658,6623801015151933,6623803429142575],[269091010,268566720,-6623803429142575,-6623801015151933],[269091010,268959874,-4648500405191522,-4648499019397906],[269091010,268959936,4648499019397906,4648500405191522],[269091016,72,1975301823150576,1975303196554503],[269091016,136,-1975303196554503,-1975301823150576],[269091016,131080,-4648500405191522,-4648499019397906],[269091016,131136,-3950606391264266,-3950603648145893],[269091016,131200,8599102838302509,8599106625697078],[269091016,524296,8599102838302509,8599106625697078],[269091016,524352,47064508360216381,47064512135024435],[269091016,524416,-53688315226712860,-53688309712822464],[269091016,524488,1975301823150576,1975303196554503],[269091016,655360,-1975303196554503,-1975301823150576],[269091016,655432,47064508360216381,47064512135024435],[269091016,655496,-45089209107010112,-45089206368525624],[269091016,655552,-3950606391264266,-3950603648145893],[269091016,268435464,-3950606391264266,-3950603648145893],[269091016,268435520,-45089209107010112,-45089206368525624],[269091016,268435584,47064508360216381,47064512135024435],[269091016,268435656,-1975303196554503,-1975301823150576],[269091016,268566528,1975301823150576,1975303196554503],[269091016,268566600,-53688315226712860,-53688309712822464],[269091016,268566664,47064508360216381,47064512135024435],[269091016,268566720,8599102838302509,8599106625697078],[269091016,268959816,8599102838302509,8599106625697078],[269091016,268959880,-3950606391264266,-3950603648145893],[269091016,268959936,-4648500405191522,-4648499019397906],[269091016,269090880,-1975303196554503,-1975301823150576],[269091016,269090944,1975301823150576,1975303196554503],[269091072,131520,4648499057538562,4648500367050864],[269091072,132480,1975301889664154,1975303130040923],[269091072,524736,-6623803358085955,-6623801086208550],[269091072,525696,-24519907464403207,-24519905293069738],[269091072,655552,1975301857911278,1975303161793801],[269091072,656512,22544603248067364,22544604489700504],[269091072,1180928,-13247605061578886,-13247603827010127],[269091072,1574144,26495207799425147,26495209977752878],[269091072,1704960,-13247605066971786,-13247603821617226],[269091072,268435904,1975301857911278,1975303161793801],[269091072,268436864,22544603248067364,22544604489700504],[269091072,268566720,-6623803358085955,-6623801086208550],[269091072,268567680,-24519907464403207,-24519905293069738],[269091072,268959936,4648499057538562,4648500367050864],[269091072,268960896,1975301889664154,1975303130040923],[269091072,269485312,-13247605066971786,-13247603821617226],[269091072,269616128,26495207799425147,26495209977752878],[269091072,270009344,-13247605061578886,-13247603827010127],[269091264,131136,-4648500367050864,-4648499057538562],[269091264,131328,4648499057538562,4648500367050864],[269091264,524352,6623801086208550,6623803358085955],[269091264,524544,-6623803358085955,-6623801086208550],[269091264,655552,1975301857911278,1975303161793801],[269091264,655744,-1975303161793801,-1975301857911278],[269091264,268435520,-1975303161793801,-1975301857911278],[269091264,268435712,1975301857911278,1975303161793801],[269091264,268566720,-6623803358085955,-6623801086208550],[269091264,268566912,6623801086208550,6623803358085955],[269091264,268959936,4648499057538562,4648500367050864],[269091264,268960128,-4648500367050864,-4648499057538562],[269091840,0,-14643395680256318,-14643391978691234],[269091840,136,-1975303167312100,-1975301852392980],[269091840,32896,-4648500337554984,-4648499087034444],[269091840,132096,1277404455586225,1277411178939584],[269091840,132232,-4648500367937248,-4648499056652179],[269091840,132288,-4648500367050864,-4648499057538562],[269091840,132480,-1975303130040923,-1975301889664154],[269091840,134272,-1975303134066535,-1975301885638543],[269091840,525312,-19871412444254049,-19871400888629471],[269091840,525448,-42416014583842896,-42416006486808497],[269091840,525504,6623801086208550,6623803358085955],[269091840,525696,24519905293069738,24519907464403207],[269091840,527488,24519905292829456,24519907464643493],[269091840,558208,-11272302995044411,-11272300873839524],[269091840,655360,3950601664814648,3950608374595511],[269091840,655496,45089204203543548,45089211271992192],[269091840,655552,-1975303161793801,-1975301857911278],[269091840,655744,-22544604489700504,-22544603248067364],[269091840,657536,-22544604485915178,-22544603251852693],[269091840,688256,6623801159997192,6623803284297315],[269091840,1048584,-22544604497985104,-22544603239782766],[269091840,1048704,15920800076521641,15920803216951721],[269091840,1081344,-1975303102434961,-1975301917270118],[269091840,1180800,11272298879893047,11272304988990891],[269091840,1180928,13247603827010127,13247605061578886],[269091840,1182720,13247603821511848,13247605067077166],[269091840,1573896,3950603919085972,3950606120324188],[269091840,1574016,-3950609233926622,-3950600805483542],[269091840,1574144,-26495209977752878,-26495207799425147],[269091840,1575936,-26495209977993164,-26495207799184865],[269091840,1606656,24519905365967204,24519907391505747],[269091840,1703944,-26495209992202640,-26495207784975390],[269091840,1704064,8599101685162166,8599107778837422],[269091840,1704192,13247603821617226,13247605066971786],[269091840,1705984,13247603826875223,13247605061713792],[269091840,1736704,-26495209915574692,-26495207861603338],[269091840,3277824,13247603826875223,13247605061713792],[269091840,3671040,-26495209971802464,-26495207805375563],[269091840,3801088,13247603827702546,13247605060886466],[269091840,67108992,22544601272808088,22544606464959780],[269091840,67241088,6623801098016984,6623803346277521],[269091840,67634304,-8599108313708112,-8599101150291472],[269091840,67764352,24519905258499972,24519907498972975],[269091840,68157440,-49039815222920444,-49039810292025454],[269091840,68289536,-26495209977993164,-26495207799184865],[269091840,68682752,3950601606309328,3950608433100829],[269091840,68812800,-26495209977773508,-26495207799404518],[269091840,134217856,13247603822433492,13247605066155522],[269091840,134349952,6623801159997192,6623803284297315],[269091840,134743168,6623801159997192,6623803284297315],[269091840,135266304,-1975303102468593,-1975301917236486],[269091840,135398400,-26495212175470166,-26495205601707868],[269091840,135791616,11272298195303644,11272305673580297],[269091840,135921664,13247603826989498,13247605061599516],[269091840,268436480,3950601664814648,3950608374595511],[269091840,268436616,45089204203543548,45089211271992192],[269091840,268436672,-1975303161793801,-1975301857911278],[269091840,268436864,-22544604489700504,-22544603248067364],[269091840,268438656,-22544604485915178,-22544603251852693],[269091840,268469376,6623801159997192,6623803284297315],[269091840,268566528,-19871412444254049,-19871400888629471],[269091840,268566664,-42416014583842896,-42416006486808497],[269091840,268566720,6623801086208550,6623803358085955],[269091840,268566912,24519905293069738,24519907464403207],[269091840,268568704,24519905292829456,24519907464643493],[269091840,268599424,-11272302995044411,-11272300873839524],[269091840,268959744,1277404455586225,1277411178939584],[269091840,268959880,-4648500367937248,-4648499056652179],[269091840,268959936,-4648500367050864,-4648499057538562],[269091840,268960128,-1975303130040923,-1975301889664154],[269091840,268961920,-1975303134066535,-1975301885638543],[269091840,269091840,-14643395680256318,-14643391978691234],[269091840,269091976,-1975303167312100,-1975301852392980],[269091840,269124736,-4648500337554984,-4648499087034444],[269091840,269485064,-26495209992202640,-26495207784975390],[269091840,269485184,8599101685162166,8599107778837422],[269091840,269485312,13247603821617226,13247605066971786],[269091840,269487104,13247603826875223,13247605061713792],[269091840,269517824,-26495209915574692,-26495207861603338],[269091840,269615112,3950603919085972,3950606120324188],[269091840,269615232,-3950609233926622,-3950600805483542],[269091840,269615360,-26495209977752878,-26495207799425147],[269091840,269617152,-26495209977993164,-26495207799184865],[269091840,269647872,24519905365967204,24519907391505747],[269091840,270008448,11272298879893047,11272304988990891],[269091840,270008576,13247603827010127,13247605061578886],[269091840,270010368,13247603821511848,13247605067077166],[269091840,270140424,-22544604497985104,-22544603239782766],[269091840,270140544,15920800076521641,15920803216951721],[269091840,270173184,-1975303102434961,-1975301917270118],[269091840,271582208,13247603827702546,13247605060886466],[269091840,271712256,-26495209971802464,-26495207805375563],[269091840,272105472,13247603826875223,13247605061713792],[269091840,335545472,24519905258499972,24519907498972975],[269091840,335675520,-8599108313708112,-8599101150291472],[269091840,336068736,6623801098016984,6623803346277521],[269091840,336200832,22544601272808088,22544606464959780],[269091840,336593920,-26495209977773508,-26495207799404518],[269091840,336723968,3950601606309328,3950608433100829],[269091840,337117184,-26495209977993164,-26495207799184865],[269091840,337249280,-49039815222920444,-49039810292025454],[269091840,402784384,6623801159997192,6623803284297315],[269091840,403177600,6623801159997192,6623803284297315],[269091840,403309696,13247603822433492,13247605066155522],[269091840,403702784,13247603826989498,13247605061599516],[269091840,403832832,11272298195303644,11272305673580297],[269091840,404226048,-26495212175470166,-26495205601707868],[269091840,404358144,-1975303102468593,-1975301917236486],[269091840,35184372088960,13247603786922062,13247605101666952],[269091840,35184372221056,24519905262899363,24519907494573587],[269091840,35184372614272,-11272303079253853,-11272300789630083],[269091840,35184373137408,-1975303142599947,-1975301877105131],[269091840,35184373269504,-26495209992202640,-26495207784975390],[269091840,35184373662720,24519905280236082,24519907477236870],[269091840,35184640655488,-11272303079253853,-11272300789630083],[269091840,35184641048704,24519905262899363,24519907494573587],[269091840,35184641180800,13247603786922062,13247605101666952],[269091840,35184641703936,24519905280236082,24519907477236870],[269091840,35184642097152,-26495209992202640,-26495207784975390],[269091840,35184642229248,-1975303142599947,-1975301877105131],[269091976,136,-1975303167312100,-1975301852392980],[269091976,1032,1975301852392980,1975303167312100],[269091976,131080,-1975303134066535,-1975301885638543],[269091976,131200,8599102950409964,8599106513589621],[269091976,132096,-6623803535249348,-6623800909045159],[269091976,524296,11272300226701508,11272303642182425],[269091976,524416,-33119013675829617,-33119008545642919],[269091976,525312,8599102944565871,8599106519433716],[269091976,525448,-13247605066127948,-13247603822461068],[269091976,655360,13247603822461068,13247605066127948],[269091976,655496,-3950606322255178,-3950603717154982],[269091976,656392,26495207121529005,26495210655649026],[269091976,656512,-9297000663454110,-9296998185724745],[269091976,268435464,-9297000663454110,-9296998185724745],[269091976,268435584,26495207121529005,26495210655649026],[269091976,268436480,-3950606322255178,-3950603717154982],[269091976,268436616,13247603822461068,13247605066127948],[269091976,268566528,-13247605066127948,-13247603822461068],[269091976,268566664,8599102944565871,8599106519433716],[269091976,268567560,-33119013675829617,-33119008545642919],[269091976,268567680,11272300226701508,11272303642182425],[269091976,268959880,-6623803535249348,-6623800909045159],[269091976,268960776,8599102950409964,8599106513589621],[269091976,268960896,-1975303134066535,-1975301885638543],[269091976,269090944,1975301852392980,1975303167312100],[269091976,269091840,-1975303167312100,-1975301852392980],[269092032,131136,-1975303130040923,-1975301889664154],[269092032,131200,6623801102928978,6623803341365525],[269092032,132096,-4648500367050864,-4648499057538562],[269092032,524352,24519905293069738,24519907464403207],[269092032,524416,-31143710514241570,-31143706687525880],[269092032,525312,6623801086208550,6623803358085955],[269092032,655552,-1975303161793801,-1975301857911278],[269092032,656448,24519905258499972,24519907498972975],[269092032,656512,-22544604489700504,-22544603248067364],[269092032,268435520,-22544604489700504,-22544603248067364],[269092032,268435584,24519905258499972,24519907498972975],[269092032,268436480,-1975303161793801,-1975301857911278],[269092032,268566720,6623801086208550,6623803358085955],[269092032,268567616,-31143710514241570,-31143706687525880],[269092032,268567680,24519905293069738,24519907464403207],[269092032,268959936,-4648500367050864,-4648499057538562],[269092032,268960832,6623801102928978,6623803341365525],[269092032,268960896,-1975303130040923,-1975301889664154],[269092224,131328,1975301889664154,1975303130040923],[269092224,132096,-1975303130040923,-1975301889664154],[269092224,524544,-24519907464403207,-24519905293069738],[269092224,525312,24519905293069738,24519907464403207],[269092224,655744,-22544604489700504,-22544603248067364],[269092224,656512,22544603248067364,22544604489700504],[269092224,268435712,22544603248067364,22544604489700504],[269092224,268436480,-22544604489700504,-22544603248067364],[269092224,268566912,24519905293069738,24519907464403207],[269092224,268567680,-24519907464403207,-24519905293069738],[269092224,268960128,-1975303130040923,-1975301889664154],[269092224,268960896,1975301889664154,1975303130040923],[269092864,134272,1975301885638543,1975303134066535],[269092864,527488,-24519907464643493,-24519905292829456],[269092864,656512,22544603251852693,22544604485915178],[269092864,1182720,-13247605067077166,-13247603821511848],[269092864,1575936,26495207799184865,26495209977993164],[269092864,1704960,-13247605061713792,-13247603826875223],[269092864,3278848,-13247605061713792,-13247603826875223],[269092864,3672064,26495207805375563,26495209971802464],[269092864,3801088,-13247605060886466,-13247603827702546],[269092864,268438656,22544603251852693,22544604485915178],[269092864,268567680,-24519907464643493,-24519905292829456],[269092864,268960896,1975301885638543,1975303134066535],[269092864,269487104,-13247605061713792,-13247603826875223],[269092864,269616128,26495207799184865,26495209977993164],[269092864,270009344,-13247605067077166,-13247603821511848],[269092864,271583232,-13247605060886466,-13247603827702546],[269092864,271712256,26495207805375563,26495209971802464],[269092864,272105472,-13247605061713792,-13247603826875223],[269094016,132096,-1975303134066535,-1975301885638543],[269094016,133120,1975301885638543,1975303134066535],[269094016,525312,24519905292829456,24519907464643493],[269094016,526336,-24519907464643493,-24519905292829456],[269094016,656512,22544603251852693,22544604485915178],[269094016,657536,-22544604485915178,-22544603251852693],[269094016,268436480,-22544604485915178,-22544603251852693],[269094016,268437504,22544603251852693,22544604485915178],[269094016,268567680,-24519907464643493,-24519905292829456],[269094016,268568704,24519905292829456,24519907464643493],[269094016,268960896,1975301885638543,1975303134066535],[269094016,268961920,-1975303134066535,-1975301885638543],[269123584,132,1975301877105131,1975303142599947],[269123584,136,-1975303142599947,-1975301877105131],[269123584,163972,1975301877105131,1975303142599947],[269123584,163976,-1975303142599947,-1975301877105131],[269123584,557068,49039811037266288,49039814477679612],[269123584,655372,-49039814477679612,-49039811037266288],[269123584,1048580,1975301917236486,1975303102468593],[269123584,1048584,-1975303102468593,-1975301917236486],[269123584,1212420,1975301917236486,1975303102468593],[269123584,1212424,-1975303102468593,-1975301917236486],[269123584,1605760,6623801159963560,6623803284330947],[269123584,1704064,-6623803284330947,-6623801159963560],[269123584,67108868,-3950606255704424,-3950603783705734],[269123584,67108872,-9297000814034204,-9296998035144653],[269123584,67108992,11272300696813670,11272303172070267],[269123584,67272708,22544602161328920,22544605576438951],[269123584,67272712,1975300959240086,1975304060464994],[269123584,67272832,-1975303130061553,-1975301889643525],[269123584,67665924,-2178588646,2178588643],[269123584,67665928,-19871408879756524,-19871404453126997],[269123584,67666048,-17896106405970981,-17896101907207464],[269123584,67764228,-26495209977773508,-26495207799404518],[269123584,67764232,8599102676277534,8599106787722050],[269123584,67764352,31143706348854335,31143710852913125],[269123584,134217732,-1975303102468593,-1975301917236486],[269123584,134217736,1975301917236486,1975303102468593],[269123584,134381572,-1975303102468593,-1975301917236486],[269123584,134381576,1975301917236486,1975303102468593],[269123584,134774912,-6623803284330947,-6623801159963560],[269123584,134873216,6623801159963560,6623803284330947],[269123584,268468236,-49039814477679612,-49039811037266288],[269123584,268566540,49039811037266288,49039814477679612],[269123584,268959876,1975301877105131,1975303142599947],[269123584,268959880,-1975303142599947,-1975301877105131],[269123584,269123716,1975301877105131,1975303142599947],[269123584,269123720,-1975303142599947,-1975301877105131],[269123584,269516928,-6623803284330947,-6623801159963560],[269123584,269615232,6623801159963560,6623803284330947],[269123584,270008324,1975301917236486,1975303102468593],[269123584,270008328,-1975303102468593,-1975301917236486],[269123584,270172164,1975301917236486,1975303102468593],[269123584,270172168,-1975303102468593,-1975301917236486],[269123584,335577092,-26495209977773508,-26495207799404518],[269123584,335577096,8599102676277534,8599106787722050],[269123584,335577216,31143706348854335,31143710852913125],[269123584,335675396,-2178588646,2178588643],[269123584,335675400,-19871408879756524,-19871404453126997],[269123584,335675520,-17896106405970981,-17896101907207464],[269123584,336068612,22544602161328920,22544605576438951],[269123584,336068616,1975300959240086,1975304060464994],[269123584,336068736,-1975303130061553,-1975301889643525],[269123584,336232452,-3950606255704424,-3950603783705734],[269123584,336232456,-9297000814034204,-9296998035144653],[269123584,336232576,11272300696813670,11272303172070267],[269123584,402686080,6623801159963560,6623803284330947],[269123584,402784384,-6623803284330947,-6623801159963560],[269123584,403177476,-1975303102468593,-1975301917236486],[269123584,403177480,1975301917236486,1975303102468593],[269123584,403341316,-1975303102468593,-1975301917236486],[269123584,403341320,1975301917236486,1975303102468593],[269123584,1073741952,1975301889643525,1975303130061553],[269123584,1073905792,1975301889643525,1975303130061553],[269123584,1074298884,-26495209977773508,-26495207799404518],[269123584,1074298888,26495207799404518,26495209977773508],[269123584,1074397188,26495207799404518,26495209977773508],[269123584,1074397192,-26495209977773508,-26495207799404518],[269123584,1342210052,26495207799404518,26495209977773508],[269123584,1342210056,-26495209977773508,-26495207799404518],[269123584,1342308356,-26495209977773508,-26495207799404518],[269123584,1342308360,26495207799404518,26495209977773508],[269123584,1342701696,1975301889643525,1975303130061553],[269123584,1342865536,1975301889643525,1975303130061553],[269123584,35184372088836,-1975303142599947,-1975301877105131],[269123584,35184372088840,1975301877105131,1975303142599947],[269123584,35184372252676,-1975303142599947,-1975301877105131],[269123584,35184372252680,1975301877105131,1975303142599947],[269123584,35184372646016,-9297000585232538,-9296998263946318],[269123584,35184372744320,9296998263946318,9297000585232538],[269123584,35184640557184,9296998263946318,9297000585232538],[269123584,35184640655488,-9297000585232538,-9296998263946318],[269123584,35184641048580,-1975303142599947,-1975301877105131],[269123584,35184641048584,1975301877105131,1975303142599947],[269123584,35184641212420,-1975303142599947,-1975301877105131],[269123584,35184641212424,1975301877105131,1975303142599947],[269123589,524289,-13247605066971786,-13247603821617226],[269123589,524292,13247603821617226,13247605066971786],[269123589,688129,-13247605066971786,-13247603821617226],[269123589,688132,13247603821617226,13247605066971786],[269123589,268435457,13247603821617226,13247605066971786],[269123589,268435460,-13247605066971786,-13247603821617226],[269123589,268599297,13247603821617226,13247605066971786],[269123589,268599300,-13247605066971786,-13247603821617226],[269123594,524290,13247603821617226,13247605066971786],[269123594,524296,-13247605066971786,-13247603821617226],[269123594,688130,13247603821617226,13247605066971786],[269123594,688136,-13247605066971786,-13247603821617226],[269123594,268435458,-13247605066971786,-13247603821617226],[269123594,268435464,13247603821617226,13247605066971786],[269123594,268599298,-13247605066971786,-13247603821617226],[269123594,268599304,13247603821617226,13247605066971786],[269123596,524292,-18594001258855540,-18593996439502170],[269123596,524296,-26495210066406118,-26495207710771912],[269123596,557056,45089206505908288,45089208969627452],[269123596,655372,-45089208969627452,-45089206505908288],[269123596,688132,26495207710771912,26495210066406118],[269123596,688136,18593996439502170,18594001258855540],[269123596,268435460,18593996439502170,18594001258855540],[269123596,268435464,26495207710771912,26495210066406118],[269123596,268468224,-45089208969627452,-45089206505908288],[269123596,268566540,45089206505908288,45089208969627452],[269123596,268599300,-26495210066406118,-26495207710771912],[269123596,268599304,-18594001258855540,-18593996439502170],[269123716,132,1975301877105131,1975303142599947],[269123716,32896,-1975303142599947,-1975301877105131],[269123716,524292,-3950606120324188,-3950603919085972],[269123716,557056,3950603919085972,3950606120324188],[269123716,655492,-1975303134589986,-1975301885115096],[269123716,688256,1975301885115096,1975303134589986],[269123716,268435460,1975301885115096,1975303134589986],[269123716,268468224,-1975303134589986,-1975301885115096],[269123716,268566660,3950603919085972,3950606120324188],[269123716,268599424,-3950606120324188,-3950603919085972],[269123716,269090820,-1975303142599947,-1975301877105131],[269123716,269123584,1975301877105131,1975303142599947],[269123720,136,-1975303142599947,-1975301877105131],[269123720,32776,4648499056652180,4648500367937249],[269123720,32896,8599103418984813,8599106045014772],[269123720,131080,-4648500367937249,-4648499056652180],[269123720,131200,-6623804014035016,-6623800430259491],[269123720,524296,-9297001142627820,-9296997706551035],[269123720,524416,13247603826875223,13247605061713792],[269123720,557056,-39742815133869046,-39742811531898000],[269123720,557192,-24519908161078011,-24519904596394939],[269123720,655360,35792205719323062,35792210907033824],[269123720,655496,26495207577110300,26495210200067732],[269123720,688136,-13247605061713792,-13247603826875223],[269123720,688256,11272300692285237,11272303176598696],[269123720,268435464,11272300692285237,11272303176598696],[269123720,268435584,-13247605061713792,-13247603826875223],[269123720,268468224,26495207577110300,26495210200067732],[269123720,268468360,35792205719323062,35792210907033824],[269123720,268566528,-24519908161078011,-24519904596394939],[269123720,268566664,-39742815133869046,-39742811531898000],[269123720,268599304,13247603826875223,13247605061713792],[269123720,268599424,-9297001142627820,-9296997706551035],[269123720,268992520,-6623804014035016,-6623800430259491],[269123720,268992640,-4648500367937249,-4648499056652180],[269123720,269090824,8599103418984813,8599106045014772],[269123720,269090944,4648499056652180,4648500367937249],[269123720,269123584,-1975303142599947,-1975301877105131],[269123776,32832,4648499059714221,4648500364875210],[269123776,32896,-4648500364875210,-4648499059714221],[269123776,131136,-4648500364875210,-4648499059714221],[269123776,131200,4648499059714221,4648500364875210],[269123776,268992576,4648499059714221,4648500364875210],[269123776,268992640,-4648500364875210,-4648499059714221],[269123776,269090880,-4648500364875210,-4648499059714221],[269123776,269090944,4648499059714221,4648500364875210],[269124736,32896,-4648500337554984,-4648499087034444],[269124736,33792,4648499087034444,4648500337554984],[269124736,131200,4648499087034444,4648500337554984],[269124736,132096,-4648500337554984,-4648499087034444],[269124736,268992640,-4648500337554984,-4648499087034444],[269124736,268993536,4648499087034444,4648500337554984],[269124736,269090944,4648499087034444,4648500337554984],[269124736,269091840,-4648500337554984,-4648499087034444],[269484032,136,11272301474344213,11272302394539721],[269484032,131080,-9296999886451704,-9296998962727152],[269484032,131200,-13945502254348697,-13945496019419587],[269484032,132096,-1975305281057239,-1975299738647843],[269484032,524296,-4648505793203474,-4648493631385954],[269484032,525448,1975301885115096,1975303134589986],[269484032,656512,47064508847957192,47064511647283630],[269484032,2752640,24519905600979050,24519907156493900],[269484032,2753536,-26495209971802464,-26495207805375563],[269484032,67108992,15920798865897844,15920804427575524],[269484032,67109888,3950600828296569,3950609211113582],[269484032,67634304,3950603780638034,3950606258772122],[269484032,67764232,4648499056652179,4648500367937248],[269484032,67764352,-21846710653152227,-21846707699436376],[269484032,67765248,3950603783705734,3950606255704424],[269484032,69730432,1975301885638543,1975303134066535],[269484032,69731328,-26495209977993164,-26495207799184865],[269484032,134873216,15920800086388708,15920803207084654],[269484032,134874112,-24519908060537022,-24519904696935925],[269484032,201851008,8599103049661346,8599106414338238],[269484032,201851904,-3950609211113582,-3950600828296569],[269484032,203424768,24519905292829457,24519907464643494],[269484032,269484168,11272301474344213,11272302394539721],[269484032,269615112,-9296999886451704,-9296998962727152],[269484032,269615232,-13945502254348697,-13945496019419587],[269484032,269616128,-1975305281057239,-1975299738647843],[269484032,270008328,-4648505793203474,-4648493631385954],[269484032,270009480,1975301885115096,1975303134589986],[269484032,270140544,47064508847957192,47064511647283630],[269484032,272236672,24519905600979050,24519907156493900],[269484032,272237568,-26495209971802464,-26495207805375563],[269484032,336593024,15920798865897844,15920804427575524],[269484032,336593920,3950600828296569,3950609211113582],[269484032,337118336,3950603780638034,3950606258772122],[269484032,337248264,4648499056652179,4648500367937248],[269484032,337248384,-21846710653152227,-21846707699436376],[269484032,337249280,3950603783705734,3950606255704424],[269484032,339214464,1975301885638543,1975303134066535],[269484032,339215360,-26495209977993164,-26495207799184865],[269484032,404357248,15920800086388708,15920803207084654],[269484032,404358144,-24519908060537022,-24519904696935925],[269484032,471335040,8599103049661346,8599106414338238],[269484032,471335936,-3950609211113582,-3950600828296569],[269484032,472908800,24519905292829457,24519907464643494],[269484032,738198528,1975301892192548,1975303127512529],[269484032,1007682560,1975301892192548,1975303127512529],[269484032,35184372744320,-11272302768733624,-11272301100150310],[269484032,35184372745216,1975301877105131,1975303142599947],[269484032,35184439722112,-11272303079253853,-11272300789630083],[269484032,35184439723008,24519905280236082,24519907477236870],[269484032,35184573416448,-26495209992202640,-26495207784975390],[269484032,35184642228352,-11272302768733624,-11272301100150310],[269484032,35184642229248,1975301877105131,1975303142599947],[269484032,35184709206144,-11272303079253853,-11272300789630083],[269484032,35184709207040,24519905280236082,24519907477236870],[269484032,35184842900480,-26495209992202640,-26495207784975390],[269484032,70368945505280,22544603251967752,22544604485800118],[269484032,70369214989312,22544603251967752,22544604485800118],[269484104,524416,-31143710514241570,-31143706687525880],[269484104,524488,-31143710514241570,-31143706687525880],[269484104,270008448,-31143710514241570,-31143706687525880],[269484104,270008520,-31143710514241570,-31143706687525880],[269484162,524296,24519905258499972,24519907498972975],[269484162,524352,6623801102928978,6623803341365525],[269484162,524426,24519905258499972,24519907498972975],[269484162,524482,6623801102928978,6623803341365525],[269484162,270008328,24519905258499972,24519907498972975],[269484162,270008384,6623801102928978,6623803341365525],[269484162,270008458,24519905258499972,24519907498972975],[269484162,270008514,6623801102928978,6623803341365525],[269484164,524296,6623801159997192,6623803284297315],[269484164,524428,6623801159997192,6623803284297315],[269484164,270008328,6623801159997192,6623803284297315],[269484164,270008460,6623801159997192,6623803284297315],[269484168,0,22544602948688426,22544604789079442],[269484168,136,11272301474344213,11272302394539721],[269484168,524290,-24519907498972975,-24519905258499972],[269484168,524292,-6623803284297315,-6623801159997192],[269484168,524352,24519905258499972,24519907498972975],[269484168,524426,-24519907498972975,-24519905258499972],[269484168,524428,-6623803284297315,-6623801159997192],[269484168,524488,24519905258499972,24519907498972975],[269484168,525312,8599103045112288,8599106418887301],[269484168,525448,6623801159997192,6623803284297315],[269484168,655360,-47064513301573545,-47064507193667275],[269484168,655496,-49039814989147174,-49039810525798726],[269484168,1048584,-4648502481944947,-4648496942644475],[269484168,1048704,15920798874182437,15920804419290919],[269484168,1573896,51015113096137411,51015117438513567],[269484168,1574016,-49039814917723134,-49039810597222762],[269484168,1703944,8599102661848405,8599106802151181],[269484168,1704064,-6623804322724415,-6623800121570091],[269484168,3670024,24519905292829456,24519907464643493],[269484168,3670144,-24519907464643493,-24519905292829456],[269484168,68681736,-6623803346277521,-6623801098016984],[269484168,68681856,6623801098016984,6623803346277521],[269484168,135790600,17896102008772423,17896106304406015],[269484168,135790720,-17896106304406015,-17896102008772423],[269484168,268435464,15920798874182437,15920804419290919],[269484168,268435584,-4648502481944947,-4648496942644475],[269484168,268960776,-49039814917723134,-49039810597222762],[269484168,268960896,51015113096137411,51015117438513567],[269484168,269090824,-6623804322724415,-6623800121570091],[269484168,269090944,8599102661848405,8599106802151181],[269484168,269484032,11272301474344213,11272302394539721],[269484168,269484168,22544602948688426,22544604789079442],[269484168,270008322,-24519907498972975,-24519905258499972],[269484168,270008324,-6623803284297315,-6623801159997192],[269484168,270008384,24519905258499972,24519907498972975],[269484168,270008458,-24519907498972975,-24519905258499972],[269484168,270008460,-6623803284297315,-6623801159997192],[269484168,270008520,24519905258499972,24519907498972975],[269484168,270009344,6623801159997192,6623803284297315],[269484168,270009480,8599103045112288,8599106418887301],[269484168,270139392,-49039814989147174,-49039810525798726],[269484168,270139528,-47064513301573545,-47064507193667275],[269484168,271056904,-24519907464643493,-24519905292829456],[269484168,271057024,24519905292829456,24519907464643493],[269484168,336068616,6623801098016984,6623803346277521],[269484168,336068736,-6623803346277521,-6623801098016984],[269484168,403177480,-17896106304406015,-17896102008772423],[269484168,403177600,17896102008772423,17896106304406015],[269484168,35184373661704,-24519907494573587,-24519905262899363],[269484168,35184373661824,24519905262899363,24519907494573587],[269484168,35184641048584,24519905262899363,24519907494573587],[269484168,35184641048704,-24519907494573587,-24519905262899363],[269484224,524290,-6623803341365525,-6623801102928978],[269484224,524296,6623801102928978,6623803341365525],[269484224,524482,-6623803341365525,-6623801102928978],[269484224,524488,6623801102928978,6623803341365525],[269484224,1704000,-17896105125322940,-17896103187855503],[269484224,1704064,17896103187855503,17896105125322940],[269484224,68681792,-6623803341365525,-6623801102928978],[269484224,68681856,6623801102928978,6623803341365525],[269484224,269090880,17896103187855503,17896105125322940],[269484224,269090944,-17896105125322940,-17896103187855503],[269484224,270008322,-6623803341365525,-6623801102928978],[269484224,270008328,6623801102928978,6623803341365525],[269484224,270008514,-6623803341365525,-6623801102928978],[269484224,270008520,6623801102928978,6623803341365525],[269484224,336068672,6623801102928978,6623803341365525],[269484224,336068736,-6623803341365525,-6623801102928978],[269485064,524416,-53688314809080322,-53688310130455008],[269485064,525448,-697899214028262,-697890171151008],[269485064,656392,26495207784975390,26495209992202640],[269485064,1573000,-52990419959304000,-52990415595052060],[269485064,1703944,-26495209992202640,-26495207784975390],[269485064,134217856,-1975303102434961,-1975301917270118],[269485064,134218888,-1975303102434961,-1975301917270118],[269485064,268960896,-52990419959304000,-52990415595052060],[269485064,269091840,-26495209992202640,-26495207784975390],[269485064,270008448,-697899214028262,-697890171151008],[269485064,270009480,-53688314809080322,-53688310130455008],[269485064,270139392,26495207784975390,26495209992202640],[269485064,403701888,-1975303102434961,-1975301917270118],[269485064,403702920,-1975303102434961,-1975301917270118],[269485184,524296,47064508673192612,47064511822048211],[269485184,525448,-3950608765320955,-3950601274089200],[269485184,656512,22544602318599624,22544605419168246],[269485184,1573000,51015113096137411,51015117438513567],[269485184,1704064,8599101685162166,8599107778837422],[269485184,1704960,-31143710097437046,-31143707104330412],[269485184,67634304,28470509674673669,28470513122209439],[269485184,68681856,-8599108093729955,-8599101370269630],[269485184,68682752,-19871408304404039,-19871405028479484],[269485184,134217736,1975301917270118,1975303102434961],[269485184,134218888,1975301917270118,1975303102434961],[269485184,202375296,-1975303102468593,-1975301917236486],[269485184,202376192,1975301917236486,1975303102468593],[269485184,268960776,51015113096137411,51015117438513567],[269485184,269090944,-31143710097437046,-31143707104330412],[269485184,269091840,8599101685162166,8599107778837422],[269485184,270008328,-3950608765320955,-3950601274089200],[269485184,270009480,47064508673192612,47064511822048211],[269485184,270139392,22544602318599624,22544605419168246],[269485184,336068736,-19871408304404039,-19871405028479484],[269485184,336069632,-8599108093729955,-8599101370269630],[269485184,337117184,28470509674673669,28470513122209439],[269485184,403701768,1975301917270118,1975303102434961],[269485184,403702920,1975301917270118,1975303102434961],[269485184,469762176,1975301917236486,1975303102468593],[269485184,469763072,-1975303102468593,-1975301917236486],[269485312,1704192,13247603821617226,13247605066971786],[269485312,1704960,-13247605066971786,-13247603821617226],[269485312,68681984,13247603827010127,13247605061578886],[269485312,68682752,-13247605061578886,-13247603827010127],[269485312,202375424,-1975303127852212,-1975301891852867],[269485312,202376192,1975301891852867,1975303127852212],[269485312,269091072,-13247605066971786,-13247603821617226],[269485312,269091840,13247603821617226,13247605066971786],[269485312,336068864,-13247605061578886,-13247603827010127],[269485312,336069632,13247603827010127,13247605061578886],[269485312,469762304,1975301891852867,1975303127852212],[269485312,469763072,-1975303127852212,-1975301891852867],[269487104,1704960,-13247605061713792,-13247603826875223],[269487104,1705984,13247603826875223,13247605061713792],[269487104,68682752,-13247605067077166,-13247603821511848],[269487104,68683776,13247603821511848,13247605067077166],[269487104,202376192,1975301885638544,1975303134066536],[269487104,202377216,-1975303134066536,-1975301885638544],[269487104,269091840,13247603826875223,13247605061713792],[269487104,269092864,-13247605061713792,-13247603826875223],[269487104,336069632,13247603821511848,13247605067077166],[269487104,336070656,-13247605067077166,-13247603821511848],[269487104,469763072,-1975303134066536,-1975301885638544],[269487104,469764096,1975301885638544,1975303134066536],[269516808,655360,-13247606222252656,-13247602666336360],[269516808,688136,-13247606222252656,-13247602666336360],[269516808,270139392,-13247606222252656,-13247602666336360],[269516808,270172168,-13247606222252656,-13247602666336360],[269516928,655360,13247602666336360,13247606222252656],[269516928,688256,-6623803284297315,-6623801159997192],[269516928,1704064,-6623803284330947,-6623801159963560],[269516928,1736704,26495207861603338,26495209915574692],[269516928,269090944,26495207861603338,26495209915574692],[269516928,269123584,-6623803284330947,-6623801159963560],[269516928,270139392,-6623803284297315,-6623801159997192],[269516928,270172288,13247602666336360,13247606222252656],[269517824,689152,26495207861603338,26495209915574692],[269517824,1736704,-26495209915574692,-26495207861603338],[269517824,269091840,-26495209915574692,-26495207861603338],[269517824,270139392,26495207861603338,26495209915574692],[269615106,524296,-11272303056635485,-11272300812248450],[269615106,655370,-11272303056635485,-11272300812248450],[269615106,270008328,-11272303056635485,-11272300812248450],[269615106,270139402,-11272303056635485,-11272300812248450],[269615108,524296,-11272302995044411,-11272300873839524],[269615108,557056,24519905365967204,24519907391505747],[269615108,655372,-11272302995044411,-11272300873839524],[269615108,688132,24519905365967204,24519907391505747],[269615108,270008328,-11272302995044411,-11272300873839524],[269615108,270041088,24519905365967204,24519907391505747],[269615108,270139404,-11272302995044411,-11272300873839524],[269615108,270172164,24519905365967204,24519907391505747],[269615112,0,-18593999772903408,-18593997925454304],[269615112,131080,-9296999886451704,-9296998962727152],[269615112,524290,11272300812248450,11272303056635485],[269615112,524292,11272300873839524,11272302995044411],[269615112,524416,42416007508370071,42416013562281321],[269615112,557056,-11272302995044411,-11272300873839524],[269615112,655370,11272300812248450,11272303056635485],[269615112,655372,11272300873839524,11272302995044411],[269615112,655496,22544601642609286,22544606095158586],[269615112,688136,-11272302995044411,-11272300873839524],[269615112,1048584,-1975305275431532,-1975299744273546],[269615112,1179648,-7321699679927840,-7321694149545938],[269615112,1573000,11272299869063941,11272303999819992],[269615112,1573896,3950603919085972,3950606120324188],[269615112,1704064,8599102631895649,8599106832103938],[269615112,1704960,-3950606120324188,-3950603919085972],[269615112,3670024,3950603941250842,3950606098159314],[269615112,3801088,-3950606098159314,-3950603941250842],[269615112,67633152,-6623803999983306,-6623800444311202],[269615112,67764232,-11272303056635485,-11272300812248450],[269615112,68681736,22544601642609286,22544606095158586],[269615112,68812800,-17896106405970981,-17896101907207464],[269615112,135790600,15222904805987338,15222909102306755],[269615112,135921664,-15222909102306755,-15222904805987338],[269615112,268435464,-7321699679927840,-7321694149545938],[269615112,268566528,-1975305275431532,-1975299744273546],[269615112,268959880,8599102631895649,8599106832103938],[269615112,268960776,-3950606120324188,-3950603919085972],[269615112,269090944,11272299869063941,11272303999819992],[269615112,269091840,3950603919085972,3950606120324188],[269615112,269484032,-9296999886451704,-9296998962727152],[269615112,269615112,-18593999772903408,-18593997925454304],[269615112,270008322,11272300812248450,11272303056635485],[269615112,270008324,11272300873839524,11272302995044411],[269615112,270008448,22544601642609286,22544606095158586],[269615112,270041088,-11272302995044411,-11272300873839524],[269615112,270139402,11272300812248450,11272303056635485],[269615112,270139404,11272300873839524,11272302995044411],[269615112,270139528,42416007508370071,42416013562281321],[269615112,270172168,-11272302995044411,-11272300873839524],[269615112,271056904,-3950606098159314,-3950603941250842],[269615112,271187968,3950603941250842,3950606098159314],[269615112,336068616,-17896106405970981,-17896101907207464],[269615112,336199680,22544601642609286,22544606095158586],[269615112,337117184,-11272303056635485,-11272300812248450],[269615112,337248264,-6623803999983306,-6623800444311202],[269615112,403177480,-15222909102306755,-15222904805987338],[269615112,403308544,15222904805987338,15222909102306755],[269615112,35184373661704,11272300798196740,11272303070687196],[269615112,35184373792768,-11272303070687196,-11272300798196740],[269615112,35184641048584,-11272303070687196,-11272300798196740],[269615112,35184641179648,11272300798196740,11272303070687196],[269615168,524416,31143706687525880,31143710514241570],[269615168,655552,11272300812248450,11272303056635485],[269615168,1573056,26495207799425147,26495209977752878],[269615168,1704064,-6623803337001160,-6623801107293350],[269615168,268959936,-6623803337001160,-6623801107293350],[269615168,269090944,26495207799425147,26495209977752878],[269615168,270008448,11272300812248450,11272303056635485],[269615168,270139584,31143706687525880,31143710514241570],[269615232,0,-18594002543881458,-18593995154476254],[269615232,131200,-13945502254348697,-13945496019419587],[269615232,524296,4648493631385954,4648505793203474],[269615232,524352,-31143710514241570,-31143706687525880],[269615232,525312,19871400888629471,19871412444254049],[269615232,557056,-13247606222252656,-13247602666336360],[269615232,655496,26495204430640140,26495213346537888],[269615232,655552,-11272303056635485,-11272300812248450],[269615232,656512,13247602285191671,13247606603397346],[269615232,688256,6623801159997192,6623803284297315],[269615232,1048704,-13945502255682351,-13945496018085931],[269615232,1179648,9296996307740651,9297002541438203],[269615232,1573000,-1975304733296088,-1975300286408991],[269615232,1573056,-26495209977752878,-26495207799425147],[269615232,1574016,-3950609233926622,-3950600805483542],[269615232,1605760,6623801159963560,6623803284330947],[269615232,1703944,-19871408894185654,-19871404438697867],[269615232,1704000,6623801107293350,6623803337001160],[269615232,1704960,10574405079083164,10574409404621503],[269615232,1736704,-26495209915574692,-26495207861603338],[269615232,2621440,52990415906156016,52990419648200040],[269615232,2752640,24519905292829457,24519907464643494],[269615232,3670144,24519905292829456,24519907464643493],[269615232,3801088,3950603941250842,3950606098159314],[269615232,67633152,4648493659097978,4648505765491449],[269615232,67764352,-1975304719493192,-1975300300211890],[269615232,68681856,26495204439857584,26495213337320446],[269615232,68812800,-19871408879756524,-19871404453126997],[269615232,134742016,19871400914685277,19871412418198236],[269615232,134873216,-3950609226781738,-3950600812628424],[269615232,135790720,13247602298025327,13247606590563683],[269615232,135921664,10574405092145006,10574409391559659],[269615232,268435584,9296996307740651,9297002541438203],[269615232,268566528,-13945502255682351,-13945496018085931],[269615232,268959880,-19871408894185654,-19871404438697867],[269615232,268959936,6623801107293350,6623803337001160],[269615232,268960896,10574405079083164,10574409404621503],[269615232,268992640,-26495209915574692,-26495207861603338],[269615232,269090824,-1975304733296088,-1975300286408991],[269615232,269090880,-26495209977752878,-26495207799425147],[269615232,269091840,-3950609233926622,-3950600805483542],[269615232,269123584,6623801159963560,6623803284330947],[269615232,269484032,-13945502254348697,-13945496019419587],[269615232,269615232,-18594002543881458,-18593995154476254],[269615232,270008328,26495204430640140,26495213346537888],[269615232,270008384,-11272303056635485,-11272300812248450],[269615232,270009344,13247602285191671,13247606603397346],[269615232,270041088,6623801159997192,6623803284297315],[269615232,270139528,4648493631385954,4648505793203474],[269615232,270139584,-31143710514241570,-31143706687525880],[269615232,270140544,19871400888629471,19871412444254049],[269615232,270172288,-13247606222252656,-13247602666336360],[269615232,271057024,3950603941250842,3950606098159314],[269615232,271187968,24519905292829456,24519907464643493],[269615232,272105472,24519905292829457,24519907464643494],[269615232,272236672,52990415906156016,52990419648200040],[269615232,336068736,-19871408879756524,-19871404453126997],[269615232,336199680,26495204439857584,26495213337320446],[269615232,337117184,-1975304719493192,-1975300300211890],[269615232,337248384,4648493659097978,4648505765491449],[269615232,403177600,10574405092145006,10574409391559659],[269615232,403308544,13247602298025327,13247606590563683],[269615232,404226048,-3950609226781738,-3950600812628424],[269615232,404357248,19871400914685277,19871412418198236],[269615232,35184372613120,-13247606381210832,-13247602507378184],[269615232,35184372744320,-26495209992202640,-26495207784975390],[269615232,35184373661824,-11272303070687196,-11272300798196740],[269615232,35184373792768,24519905262899363,24519907494573587],[269615232,35184641048704,24519905262899363,24519907494573587],[269615232,35184641179648,-11272303070687196,-11272300798196740],[269615232,35184642097152,-26495209992202640,-26495207784975390],[269615232,35184642228352,-13247606381210832,-13247602507378184],[269615360,525312,-26495209977752878,-26495207799425147],[269615360,1574144,-26495209977752878,-26495207799425147],[269615360,269091840,-26495209977752878,-26495207799425147],[269615360,270140672,-26495209977752878,-26495207799425147],[269616128,0,-7901210969997192,-7901209108823124],[269616128,132096,-1975305281057239,-1975299738647843],[269616128,524416,57638914684866570,57638920294078918],[269616128,524544,26495207799425147,26495209977752878],[269616128,526336,26495207799184865,26495209977993164],[269616128,656392,-26495209992202640,-26495207784975390],[269616128,656512,11272299936568599,11272303932315336],[269616128,689152,-26495209915574692,-26495207861603338],[269616128,1049600,-3950605484998596,-3950604554411562],[269616128,1179648,-1975305281023604,-1975299738681472],[269616128,1574016,52990415723206676,52990419831149384],[269616128,1574144,26495207799425147,26495209977752878],[269616128,1575936,26495207799184865,26495209977993164],[269616128,1703944,26495207784975390,26495209992202640],[269616128,1704064,-6623804221568240,-6623800222726267],[269616128,1736704,26495207861603338,26495209915574692],[269616128,2621440,-26495209977993164,-26495207799184865],[269616128,3671040,-26495209977993164,-26495207799184865],[269616128,67765248,-2178588643,2178588646],[269616128,68812800,-2178588646,2178588643],[269616128,134742016,-24519908060482760,-24519904696990186],[269616128,134874112,52990415723206676,52990419831149384],[269616128,135791616,-26495209977752878,-26495207799425147],[269616128,135921664,-51015117307080439,-51015113227570542],[269616128,268436480,-1975305281023604,-1975299738681472],[269616128,268566528,-3950605484998596,-3950604554411562],[269616128,268960776,26495207784975390,26495209992202640],[269616128,268960896,-6623804221568240,-6623800222726267],[269616128,268993536,26495207861603338,26495209915574692],[269616128,269090944,52990415723206676,52990419831149384],[269616128,269091072,26495207799425147,26495209977752878],[269616128,269092864,26495207799184865,26495209977993164],[269616128,269484032,-1975305281057239,-1975299738647843],[269616128,269616128,-7901210969997192,-7901209108823124],[269616128,270008328,-26495209992202640,-26495207784975390],[269616128,270008448,11272299936568599,11272303932315336],[269616128,270041088,-26495209915574692,-26495207861603338],[269616128,270140544,57638914684866570,57638920294078918],[269616128,270140672,26495207799425147,26495209977752878],[269616128,270142464,26495207799184865,26495209977993164],[269616128,271187968,-26495209977993164,-26495207799184865],[269616128,272237568,-26495209977993164,-26495207799184865],[269616128,336069632,-2178588646,2178588643],[269616128,337117184,-2178588643,2178588646],[269616128,403178496,-51015117307080439,-51015113227570542],[269616128,403308544,-26495209977752878,-26495207799425147],[269616128,404226048,52990415723206676,52990419831149384],[269616128,404358144,-24519908060482760,-24519904696990186],[269616128,35184372745216,26495207784975390,26495209992202640],[269616128,35184373792768,-26495209992202640,-26495207784975390],[269616128,35184641049600,-26495209992202640,-26495207784975390],[269616128,35184642097152,26495207784975390,26495209992202640],[269617152,525312,-26495209977993164,-26495207799184865],[269617152,1575936,-26495209977993164,-26495207799184865],[269617152,2621440,-26495209971802464,-26495207805375563],[269617152,3672064,-26495209971802464,-26495207805375563],[269617152,269091840,-26495209977993164,-26495207799184865],[269617152,270142464,-26495209977993164,-26495207799184865],[269617152,271187968,-26495209971802464,-26495207805375563],[269617152,272238592,-26495209971802464,-26495207805375563],[269647872,524292,-24519907391505747,-24519905365967204],[269647872,524296,24519905365967204,24519907391505747],[269647872,688132,-24519907391505747,-24519905365967204],[269647872,688136,24519905365967204,24519907391505747],[269647872,1605760,-17896105064267619,-17896103248910824],[269647872,1606656,24519905365967204,24519907391505747],[269647872,1704064,17896103248910824,17896105064267619],[269647872,1704960,-24519907391505747,-24519905365967204],[269647872,268992640,17896103248910824,17896105064267619],[269647872,268993536,-24519907391505747,-24519905365967204],[269647872,269090944,-17896105064267619,-17896103248910824],[269647872,269091840,24519905365967204,24519907391505747],[269647872,270008324,-24519907391505747,-24519905365967204],[269647872,270008328,24519905365967204,24519907391505747],[269647872,270172164,-24519907391505747,-24519905365967204],[269647872,270172168,24519905365967204,24519907391505747],[270008322,524426,-24519907498972975,-24519905258499972],[270008322,524482,-6623803341365525,-6623801102928978],[270008322,655370,11272300812248450,11272303056635485],[270008322,1048714,1975301857911278,1975303161793801],[270008322,1048770,4648499057538562,4648500367050864],[270008322,1179658,-13247605096148654,-13247603792440361],[270008322,1573000,22544603248067364,22544604489700504],[270008322,1573056,1975301889664154,1975303130040923],[270008322,1703944,1975301885638544,1975303134066536],[270008322,268435594,22544603248067364,22544604489700504],[270008322,268435650,1975301889664154,1975303130040923],[270008322,268566538,1975301885638544,1975303134066536],[270008322,268959880,1975301857911278,1975303161793801],[270008322,268959936,4648499057538562,4648500367050864],[270008322,269090824,-13247605096148654,-13247603792440361],[270008322,269484168,-24519907498972975,-24519905258499972],[270008322,269484224,-6623803341365525,-6623801102928978],[270008322,269615112,11272300812248450,11272303056635485],[270008324,524428,-6623803284297315,-6623801159997192],[270008324,655372,11272300873839524,11272302995044411],[270008324,688132,-24519907391505747,-24519905365967204],[270008324,1048716,4648499087000812,4648500337588616],[270008324,1179660,-13247605066155522,-13247603822433492],[270008324,1212420,1975301917236486,1975303102468593],[270008324,1573000,1975301917270118,1975303102434961],[270008324,1703944,1975301917236486,1975303102468593],[270008324,1736704,22544603307191776,22544604430576096],[270008324,268435596,1975301917270118,1975303102434961],[270008324,268566540,1975301917236486,1975303102468593],[270008324,268599300,22544603307191776,22544604430576096],[270008324,268959880,4648499087000812,4648500337588616],[270008324,269090824,-13247605066155522,-13247603822433492],[270008324,269123584,1975301917236486,1975303102468593],[270008324,269484168,-6623803284297315,-6623801159997192],[270008324,269615112,11272300873839524,11272302995044411],[270008324,269647872,-24519907391505747,-24519905365967204],[270008328,0,-3950606863625138,-3950603175785018],[270008328,1152,-1975303134589986,-1975301885115096],[270008328,131200,-1975304066969121,-1975300952735957],[270008328,132096,-22544604497985104,-22544603239782766],[270008328,524296,-4648505793203474,-4648493631385954],[270008328,524426,24519905258499972,24519907498972975],[270008328,524428,6623801159997192,6623803284297315],[270008328,524488,6623801102928978,6623803341365525],[270008328,525448,-3950608765320955,-3950601274089200],[270008328,655370,-11272303056635485,-11272300812248450],[270008328,655372,-11272302995044411,-11272300873839524],[270008328,655496,26495204430640140,26495213346537888],[270008328,656392,-26495209992202640,-26495207784975390],[270008328,688136,24519905365967204,24519907391505747],[270008328,1048584,6623798624404334,6623805819890177],[270008328,1048714,-1975303161793801,-1975301857911278],[270008328,1048716,-4648500337588616,-4648499087000812],[270008328,1048776,-4648500367050864,-4648499057538562],[270008328,1049736,-1975303102434961,-1975301917270118],[270008328,1179658,13247603792440361,13247605096148654],[270008328,1179660,13247603822433492,13247605066155522],[270008328,1179784,-3950608267983247,-3950601771426911],[270008328,1212424,-1975303102468593,-1975301917236486],[270008328,1572864,-5925910964282679,-5925904094832560],[270008328,1572994,-22544604489700504,-22544603248067364],[270008328,1572996,-1975303102434961,-1975301917270118],[270008328,1573056,-1975303130040923,-1975301889664154],[270008328,1574016,3950601736070570,3950608303339582],[270008328,1703938,-1975303134066536,-1975301885638544],[270008328,1703940,-1975303102468593,-1975301917236486],[270008328,1704064,-24519909487239803,-24519903270233145],[270008328,1704960,3950603919085972,3950606120324188],[270008328,1736704,-22544604430576096,-22544603307191776],[270008328,2097280,-1975303134066536,-1975301885638544],[270008328,2228224,-22544604485915178,-22544603251852693],[270008328,2621576,-26495209977993164,-26495207799184865],[270008328,2752520,-26495209971802464,-26495207805375563],[270008328,3670144,24519905292829456,24519907464643493],[270008328,3801088,3950603941250842,3950606098159314],[270008328,67108992,13247603821511848,13247605067077166],[270008328,67239936,13247603826875223,13247605061713792],[270008328,67633288,6623801098016986,6623803346277523],[270008328,67764232,11272297936924019,11272305931959916],[270008328,68157576,6623801098016984,6623803346277521],[270008328,68288520,3950601491169156,3950608548241002],[270008328,68812800,-1975303130061553,-1975301889643525],[270008328,134217856,22544601455814116,22544606281953756],[270008328,134348800,-18594001255457720,-18593996442899990],[270008328,134742152,-8599108077216494,-8599101386783086],[270008328,134873096,-11272305272819252,-11272298596064681],[270008328,135266440,6623801159997192,6623803284297315],[270008328,135397384,-11272302995044411,-11272300873839524],[270008328,135790720,24519905293069738,24519907464403207],[270008328,135921664,3950603932147814,3950606107262344],[270008328,268435464,-5925910964282679,-5925904094832560],[270008328,268435594,-22544604489700504,-22544603248067364],[270008328,268435596,-1975303102434961,-1975301917270118],[270008328,268435656,-1975303130040923,-1975301889664154],[270008328,268436616,3950601736070570,3950608303339582],[270008328,268566538,-1975303134066536,-1975301885638544],[270008328,268566540,-1975303102468593,-1975301917236486],[270008328,268566664,-24519909487239803,-24519903270233145],[270008328,268567560,3950603919085972,3950606120324188],[270008328,268599304,-22544604430576096,-22544603307191776],[270008328,268959744,6623798624404334,6623805819890177],[270008328,268959874,-1975303161793801,-1975301857911278],[270008328,268959876,-4648500337588616,-4648499087000812],[270008328,268959936,-4648500367050864,-4648499057538562],[270008328,268960896,-1975303102434961,-1975301917270118],[270008328,269090818,13247603792440361,13247605096148654],[270008328,269090820,13247603822433492,13247605066155522],[270008328,269090944,-3950608267983247,-3950601771426911],[270008328,269123584,-1975303102468593,-1975301917236486],[270008328,269484032,-4648505793203474,-4648493631385954],[270008328,269484162,24519905258499972,24519907498972975],[270008328,269484164,6623801159997192,6623803284297315],[270008328,269484224,6623801102928978,6623803341365525],[270008328,269485184,-3950608765320955,-3950601274089200],[270008328,269615106,-11272303056635485,-11272300812248450],[270008328,269615108,-11272302995044411,-11272300873839524],[270008328,269615232,26495204430640140,26495213346537888],[270008328,269616128,-26495209992202640,-26495207784975390],[270008328,269647872,24519905365967204,24519907391505747],[270008328,270008328,-3950606863625138,-3950603175785018],[270008328,270009480,-1975303134589986,-1975301885115096],[270008328,270139528,-1975304066969121,-1975300952735957],[270008328,270140424,-22544604497985104,-22544603239782766],[270008328,270532744,24519905292829456,24519907464643493],[270008328,270663688,3950603941250842,3950606098159314],[270008328,271581312,-26495209977993164,-26495207799184865],[270008328,271712256,-26495209971802464,-26495207805375563],[270008328,272105608,-1975303134066536,-1975301885638544],[270008328,272236552,-22544604485915178,-22544603251852693],[270008328,335675400,-1975303130061553,-1975301889643525],[270008328,336068736,6623801098016984,6623803346277521],[270008328,336199680,3950601491169156,3950608548241002],[270008328,336593024,6623801098016986,6623803346277523],[270008328,336723968,11272297936924019,11272305931959916],[270008328,337117320,13247603821511848,13247605067077166],[270008328,337248264,13247603826875223,13247605061713792],[270008328,402653320,24519905293069738,24519907464403207],[270008328,402784264,3950603932147814,3950606107262344],[270008328,403177600,6623801159997192,6623803284297315],[270008328,403308544,-11272302995044411,-11272300873839524],[270008328,403701888,-8599108077216494,-8599101386783086],[270008328,403832832,-11272305272819252,-11272298596064681],[270008328,404226184,22544601455814116,22544606281953756],[270008328,404357128,-18594001255457720,-18593996442899990],[270008328,35184372088960,13247603822461068,13247605066127948],[270008328,35184372219904,13247603811716528,13247605076872486],[270008328,35184372613256,-11272303061044145,-11272300807839789],[270008328,35184372744200,24519905244697076,24519907512775874],[270008328,35184373137544,24519905262899363,24519907494573587],[270008328,35184373268488,-11272303070687196,-11272300798196740],[270008328,35184641048704,24519905262899363,24519907494573587],[270008328,35184641179648,-11272303070687196,-11272300798196740],[270008328,35184641572992,-11272303061044145,-11272300807839789],[270008328,35184641703936,24519905244697076,24519907512775874],[270008328,35184642097288,13247603822461068,13247605066127948],[270008328,35184642228232,13247603811716528,13247605076872486],[270008384,131200,-11272302707603802,-11272301161280132],[270008384,524482,6623801102928978,6623803341365525],[270008384,524488,24519905258499972,24519907498972975],[270008384,655552,-11272303056635485,-11272300812248450],[270008384,1048770,-4648500367050864,-4648499057538562],[270008384,1048776,-1975303161793801,-1975301857911278],[270008384,1179840,-964466106,964466108],[270008384,1572994,-1975303130040923,-1975301889664154],[270008384,1573000,-22544604489700504,-22544603248067364],[270008384,1704064,-932612782,932612781],[270008384,67108992,13247603827010127,13247605061578886],[270008384,67633344,6623801107293350,6623803337001160],[270008384,68157632,6623801102928978,6623803341365525],[270008384,268435650,-1975303130040923,-1975301889664154],[270008384,268435656,-22544604489700504,-22544603248067364],[270008384,268566720,-932612782,932612781],[270008384,268959874,-4648500367050864,-4648499057538562],[270008384,268959880,-1975303161793801,-1975301857911278],[270008384,269090944,-964466106,964466108],[270008384,269484162,6623801102928978,6623803341365525],[270008384,269484168,24519905258499972,24519907498972975],[270008384,269615232,-11272303056635485,-11272300812248450],[270008384,270139584,-11272302707603802,-11272301161280132],[270008384,336068736,6623801102928978,6623803341365525],[270008384,336593024,6623801107293350,6623803337001160],[270008384,337117376,13247603827010127,13247605061578886],[270008448,1032,1975301885115096,1975303134589986],[270008448,131080,11272301159430177,11272302709453757],[270008448,131136,11272301161280132,11272302707603802],[270008448,132096,18593996124609637,18594001573748076],[270008448,524488,-31143710514241570,-31143706687525880],[270008448,525448,-697899214028262,-697890171151008],[270008448,655496,22544601642609286,22544606095158586],[270008448,655552,11272300812248450,11272303056635485],[270008448,656512,11272299936568599,11272303932315336],[270008448,1048776,6623801086208550,6623803358085955],[270008448,1049736,6623801159997192,6623803284297315],[270008448,1179784,-13247606060429303,-13247602828159713],[270008448,1179840,-964466108,964466106],[270008448,1180800,11272298879893047,11272304988990891],[270008448,1572936,24519905293069738,24519907464403207],[270008448,1573896,-3950608765320955,-3950601274089200],[270008448,1703944,1975300959240085,1975304060464993],[270008448,1704000,-932612781,932612782],[270008448,1704960,-3950606995955408,-3950603043454752],[270008448,2097160,1975301885638544,1975303134066536],[270008448,2228224,-3950605802754426,-3950604236655732],[270008448,2621576,26495207799184865,26495209977993164],[270008448,2752640,-929670022,929670021],[270008448,3276928,-929670022,929670021],[270008448,3670024,-24519907464643493,-24519905292829456],[270008448,3801088,-3950606098159314,-3950603941250842],[270008448,67108872,-13247605067077166,-13247603821511848],[270008448,67108928,-13247605061578886,-13247603827010127],[270008448,67109888,-22544606285700820,-22544601452067054],[270008448,67239936,11272301159430178,11272302709453758],[270008448,67633288,-6623803346277523,-6623801098016986],[270008448,67633344,-6623803337001160,-6623801107293350],[270008448,67634304,-6623803284297315,-6623801159997192],[270008448,67764352,-13247606060429303,-13247602828159713],[270008448,68157576,-6623803346277521,-6623801098016984],[270008448,68157632,-6623803341365525,-6623801102928978],[270008448,68158592,8599101370269630,8599108093729955],[270008448,68288640,22544601642609286,22544606095158586],[270008448,68682752,-24519907477236870,-24519905280236082],[270008448,68812800,1975300959240086,1975304060464994],[270008448,69206016,1975301885638543,1975303134066535],[270008448,70254720,26495207799184865,26495209977993164],[270008448,70778880,-24519907464643494,-24519905292829457],[270008448,134217736,-22544606281953756,-22544601455814116],[270008448,134348800,18593996132872130,18594001565485586],[270008448,134742152,8599101386783086,8599108077216494],[270008448,134873216,11272298892173522,11272304976710416],[270008448,135266440,-6623803284297315,-6623801159997192],[270008448,135397504,11272299945646091,11272303923237845],[270008448,135790600,-24519907464403207,-24519905293069738],[270008448,135921664,-3950606982859932,-3950603056550226],[270008448,201326592,1975301889664154,1975303130040923],[270008448,201851008,6623801159997192,6623803284297315],[270008448,202375296,-697899197873155,-697890187306122],[270008448,202899456,-3950608753647640,-3950601285762513],[270008448,268435656,24519905293069738,24519907464403207],[270008448,268436616,-3950608765320955,-3950601274089200],[270008448,268566664,1975300959240085,1975304060464993],[270008448,268566720,-932612781,932612782],[270008448,268567680,-3950606995955408,-3950603043454752],[270008448,268959816,6623801086208550,6623803358085955],[270008448,268960776,6623801159997192,6623803284297315],[270008448,269090824,-13247606060429303,-13247602828159713],[270008448,269090880,-964466108,964466106],[270008448,269091840,11272298879893047,11272304988990891],[270008448,269484104,-31143710514241570,-31143706687525880],[270008448,269485064,-697899214028262,-697890171151008],[270008448,269615112,22544601642609286,22544606095158586],[270008448,269615168,11272300812248450,11272303056635485],[270008448,269616128,11272299936568599,11272303932315336],[270008448,270009480,1975301885115096,1975303134589986],[270008448,270139528,11272301159430177,11272302709453757],[270008448,270139584,11272301161280132,11272302707603802],[270008448,270140544,18593996124609637,18594001573748076],[270008448,270532744,-24519907464643493,-24519905292829456],[270008448,270663808,-3950606098159314,-3950603941250842],[270008448,271187968,-929670022,929670021],[270008448,271581192,26495207799184865,26495209977993164],[270008448,271712256,-929670022,929670021],[270008448,272105608,1975301885638544,1975303134066536],[270008448,272236672,-3950605802754426,-3950604236655732],[270008448,335545472,-24519907477236870,-24519905280236082],[270008448,335675520,1975300959240086,1975304060464994],[270008448,336068616,-6623803346277521,-6623801098016984],[270008448,336068672,-6623803341365525,-6623801102928978],[270008448,336069632,8599101370269630,8599108093729955],[270008448,336199680,22544601642609286,22544606095158586],[270008448,336592904,-6623803346277523,-6623801098016986],[270008448,336592960,-6623803337001160,-6623801107293350],[270008448,336593920,-6623803284297315,-6623801159997192],[270008448,336723968,-13247606060429303,-13247602828159713],[270008448,337117320,-13247605067077166,-13247603821511848],[270008448,337117376,-13247605061578886,-13247603827010127],[270008448,337118336,-22544606285700820,-22544601452067054],[270008448,337248384,11272301159430178,11272302709453758],[270008448,337641600,-24519907464643494,-24519905292829457],[270008448,338165760,26495207799184865,26495209977993164],[270008448,339214464,1975301885638543,1975303134066535],[270008448,402653320,-24519907464403207,-24519905293069738],[270008448,402784384,-3950606982859932,-3950603056550226],[270008448,403177480,-6623803284297315,-6623801159997192],[270008448,403308544,11272299945646091,11272303923237845],[270008448,403701768,8599101386783086,8599108077216494],[270008448,403832832,11272298892173522,11272304976710416],[270008448,404226184,-22544606281953756,-22544601455814116],[270008448,404357248,18593996132872130,18594001565485586],[270008448,469762176,-3950608753647640,-3950601285762513],[270008448,470286336,-697899197873155,-697890187306122],[270008448,470810624,6623801159997192,6623803284297315],[270008448,471335040,1975301889664154,1975303130040923],[270008448,35184372088840,-13247605066127948,-13247603822461068],[270008448,35184372219904,-9297000203068470,-9296998646110384],[270008448,35184372613256,11272300807839789,11272303061044145],[270008448,35184372744320,-974533465,974533467],[270008448,35184373137544,-24519907494573587,-24519905262899363],[270008448,35184373268608,11272300798196740,11272303070687196],[270008448,35184373792768,-20569302302299032,-20569300415763760],[270008448,35184439722112,-11272303079253853,-11272300789630083],[270008448,35184440246400,-13247606381210832,-13247602507378184],[270008448,35184440770560,24519905280236082,24519907477236870],[270008448,35184640655488,-20569302302299032,-20569300415763760],[270008448,35184641048584,-24519907494573587,-24519905262899363],[270008448,35184641179648,11272300798196740,11272303070687196],[270008448,35184641572872,11272300807839789,11272303061044145],[270008448,35184641703936,-974533465,974533467],[270008448,35184642097288,-13247605066127948,-13247603822461068],[270008448,35184642228352,-9297000203068470,-9296998646110384],[270008448,35184707633280,24519905280236082,24519907477236870],[270008448,35184708157440,-13247606381210832,-13247602507378184],[270008448,35184708681728,-11272303079253853,-11272300789630083],[270008458,524290,-24519907498972975,-24519905258499972],[270008458,524296,24519905258499972,24519907498972975],[270008458,1048578,1975301857911278,1975303161793801],[270008458,1048584,-1975303161793801,-1975301857911278],[270008458,1572994,-22544604489700504,-22544603248067364],[270008458,1573000,22544603248067364,22544604489700504],[270008458,268435458,22544603248067364,22544604489700504],[270008458,268435464,-22544604489700504,-22544603248067364],[270008458,268959874,-1975303161793801,-1975301857911278],[270008458,268959880,1975301857911278,1975303161793801],[270008458,269484162,24519905258499972,24519907498972975],[270008458,269484168,-24519907498972975,-24519905258499972],[270008460,524292,-6623803284297315,-6623801159997192],[270008460,524296,6623801159997192,6623803284297315],[270008460,1048580,4648499087000812,4648500337588616],[270008460,1048584,-4648500337588616,-4648499087000812],[270008460,1572996,-1975303102434961,-1975301917270118],[270008460,1573000,1975301917270118,1975303102434961],[270008460,268435460,1975301917270118,1975303102434961],[270008460,268435464,-1975303102434961,-1975301917270118],[270008460,268959876,-4648500337588616,-4648499087000812],[270008460,268959880,4648499087000812,4648500337588616],[270008460,269484164,6623801159997192,6623803284297315],[270008460,269484168,-6623803284297315,-6623801159997192],[270008514,524290,-6623803341365525,-6623801102928978],[270008514,524352,6623801102928978,6623803341365525],[270008514,1048578,4648499057538562,4648500367050864],[270008514,1048640,-4648500367050864,-4648499057538562],[270008514,1572994,-1975303130040923,-1975301889664154],[270008514,1573056,1975301889664154,1975303130040923],[270008514,268435458,1975301889664154,1975303130040923],[270008514,268435520,-1975303130040923,-1975301889664154],[270008514,268959874,-4648500367050864,-4648499057538562],[270008514,268959936,4648499057538562,4648500367050864],[270008514,269484162,6623801102928978,6623803341365525],[270008514,269484224,-6623803341365525,-6623801102928978],[270008520,524296,6623801102928978,6623803341365525],[270008520,524352,24519905258499972,24519907498972975],[270008520,524416,-31143710514241570,-31143706687525880],[270008520,1048584,-4648500367050864,-4648499057538562],[270008520,1048640,-1975303161793801,-1975301857911278],[270008520,1048704,6623801086208550,6623803358085955],[270008520,1572936,24519905293069738,24519907464403207],[270008520,1573000,-22544604489700504,-22544603248067364],[270008520,1573056,-1975303130040923,-1975301889664154],[270008520,268435464,-1975303130040923,-1975301889664154],[270008520,268435520,-22544604489700504,-22544603248067364],[270008520,268435584,24519905293069738,24519907464403207],[270008520,268959816,6623801086208550,6623803358085955],[270008520,268959880,-1975303161793801,-1975301857911278],[270008520,268959936,-4648500367050864,-4648499057538562],[270008520,269484104,-31143710514241570,-31143706687525880],[270008520,269484168,24519905258499972,24519907498972975],[270008520,269484224,6623801102928978,6623803341365525],[270008576,132096,13247603827010127,13247605061578886],[270008576,1180928,13247603827010127,13247605061578886],[270008576,67109888,-13247605061578886,-13247603827010127],[270008576,68158720,-13247605061578886,-13247603827010127],[270008576,269091840,13247603827010127,13247605061578886],[270008576,270140672,13247603827010127,13247605061578886],[270008576,336069632,-13247605061578886,-13247603827010127],[270008576,337118464,-13247605061578886,-13247603827010127],[270009344,131200,-24519907697962539,-24519905059510412],[270009344,131328,-13247605061578886,-13247603827010127],[270009344,133120,-13247605067077166,-13247603821511848],[270009344,525448,6623801159997192,6623803284297315],[270009344,656512,13247602285191671,13247606603397346],[270009344,1049736,-4648500337588616,-4648499087000812],[270009344,1180800,-13247605939232943,-13247602949356073],[270009344,1180928,-13247605061578886,-13247603827010127],[270009344,1182720,-13247605067077166,-13247603821511848],[270009344,1573000,-1975303102434961,-1975301917270118],[270009344,1704064,-24519908352868090,-24519904404604862],[270009344,2228224,13247603821511848,13247605067077166],[270009344,3277824,13247603821511848,13247605067077166],[270009344,67108992,26495207710839176,26495210066338854],[270009344,67109120,13247603827010127,13247605061578886],[270009344,67110912,13247603821511848,13247605067077166],[270009344,67634304,-17896106317239678,-17896101995938767],[270009344,67765248,-22544605576438951,-22544602161328920],[270009344,68158592,19871405028479484,19871408304404039],[270009344,68158720,13247603827010127,13247605061578886],[270009344,68160512,13247603821511848,13247605067077166],[270009344,68681856,24519905280236082,24519907477236870],[270009344,68812800,22544602161328920,22544605576438951],[270009344,69206016,-13247605067077166,-13247603821511848],[270009344,70255616,-13247605067077166,-13247603821511848],[270009344,134348800,11272300724575166,11272303144308768],[270009344,134874112,-51015117307046807,-51015113227604174],[270009344,135398400,13247603827010127,13247605061578886],[270009344,135921664,49039810731968040,49039814782977862],[270009344,201326592,-13247605061578886,-13247603827010127],[270009344,201851904,49039810731968040,49039814782977862],[270009344,202376192,-15222908164047479,-15222905744246613],[270009344,202899456,-47064511822048211,-47064508673192612],[270009344,268436616,-1975303102434961,-1975301917270118],[270009344,268567680,-24519908352868090,-24519904404604862],[270009344,268959880,-4648500337588616,-4648499087000812],[270009344,269090944,-13247605939232943,-13247602949356073],[270009344,269091072,-13247605061578886,-13247603827010127],[270009344,269092864,-13247605067077166,-13247603821511848],[270009344,269484168,6623801159997192,6623803284297315],[270009344,269615232,13247602285191671,13247606603397346],[270009344,270140544,-24519907697962539,-24519905059510412],[270009344,270140672,-13247605061578886,-13247603827010127],[270009344,270142464,-13247605067077166,-13247603821511848],[270009344,271187968,13247603821511848,13247605067077166],[270009344,272237568,13247603821511848,13247605067077166],[270009344,335545472,24519905280236082,24519907477236870],[270009344,335676416,22544602161328920,22544605576438951],[270009344,336068736,19871405028479484,19871408304404039],[270009344,336068864,13247603827010127,13247605061578886],[270009344,336070656,13247603821511848,13247605067077166],[270009344,336593024,-17896106317239678,-17896101995938767],[270009344,336723968,-22544605576438951,-22544602161328920],[270009344,337118336,26495207710839176,26495210066338854],[270009344,337118464,13247603827010127,13247605061578886],[270009344,337120256,13247603821511848,13247605067077166],[270009344,338165760,-13247605067077166,-13247603821511848],[270009344,339215360,-13247605067077166,-13247603821511848],[270009344,402785280,49039810731968040,49039814782977862],[270009344,403308544,13247603827010127,13247605061578886],[270009344,403832832,-51015117307046807,-51015113227604174],[270009344,404358144,11272300724575166,11272303144308768],[270009344,469763072,-47064511822048211,-47064508673192612],[270009344,470286336,-15222908164047479,-15222905744246613],[270009344,470810624,49039810731968040,49039814782977862],[270009344,471335936,-13247605061578886,-13247603827010127],[270009344,35184372745216,-24519907477236870,-24519905280236082],[270009344,35184373792768,24519905280236082,24519907477236870],[270009344,35184439723008,24519905280236082,24519907477236870],[270009344,35184440770560,-24519907477236870,-24519905280236082],[270009344,35184640656384,24519905280236082,24519907477236870],[270009344,35184641703936,-24519907477236870,-24519905280236082],[270009344,35184707634176,-24519907477236870,-24519905280236082],[270009344,35184708681728,24519905280236082,24519907477236870],[270009480,1032,1975301885115096,1975303134589986],[270009480,1152,-1975303134589986,-1975301885115096],[270009480,524296,47064508673192612,47064511822048211],[270009480,524416,-53688314809080322,-53688310130455008],[270009480,525312,8599103045112288,8599106418887301],[270009480,525448,1975301885115096,1975303134589986],[270009480,1048584,-3950606237024947,-3950603802385214],[270009480,1048704,8599103045112288,8599106418887301],[270009480,1049600,-4648500337588616,-4648499087000812],[270009480,1572864,-1975303134589986,-1975301885115096],[270009480,1573000,-3950606237024947,-3950603802385214],[270009480,1573896,47064508673192612,47064511822048211],[270009480,1574016,-45089208861152192,-45089206614383552],[270009480,268435464,-45089208861152192,-45089206614383552],[270009480,268435584,47064508673192612,47064511822048211],[270009480,268436480,-3950606237024947,-3950603802385214],[270009480,268436616,-1975303134589986,-1975301885115096],[270009480,268959880,-4648500337588616,-4648499087000812],[270009480,268960776,8599103045112288,8599106418887301],[270009480,268960896,-3950606237024947,-3950603802385214],[270009480,269484032,1975301885115096,1975303134589986],[270009480,269484168,8599103045112288,8599106418887301],[270009480,269485064,-53688314809080322,-53688310130455008],[270009480,269485184,47064508673192612,47064511822048211],[270009480,270008328,-1975303134589986,-1975301885115096],[270009480,270008448,1975301885115096,1975303134589986],[270010368,132096,13247603821511848,13247605067077166],[270010368,1182720,13247603821511848,13247605067077166],[270010368,2228224,13247603826875223,13247605061713792],[270010368,3278848,13247603826875223,13247605061713792],[270010368,67109888,-13247605067077166,-13247603821511848],[270010368,68160512,-13247605067077166,-13247603821511848],[270010368,69206016,-13247605061713792,-13247603826875223],[270010368,70256640,-13247605061713792,-13247603826875223],[270010368,269091840,13247603821511848,13247605067077166],[270010368,270142464,13247603821511848,13247605067077166],[270010368,271187968,13247603826875223,13247605061713792],[270010368,272238592,13247603826875223,13247605061713792],[270010368,336069632,-13247605067077166,-13247603821511848],[270010368,337120256,-13247605067077166,-13247603821511848],[270010368,338165760,-13247605061713792,-13247603826875223],[270010368,339216384,-13247605061713792,-13247603826875223],[270041088,131200,-11272302664793112,-11272301204090824],[270041088,132096,-1975303102434961,-1975301917270118],[270041088,688132,24519905365967204,24519907391505747],[270041088,688136,-11272302995044411,-11272300873839524],[270041088,688256,6623801159997192,6623803284297315],[270041088,689152,-26495209915574692,-26495207861603338],[270041088,1212420,-1975303102468593,-1975301917236486],[270041088,1212424,13247603822433492,13247605066155522],[270041088,1212544,-17896105064267619,-17896103248910824],[270041088,1703940,-22544604430576096,-22544603307191776],[270041088,1703944,-1975303102468593,-1975301917236486],[270041088,1704064,-873779583,873779583],[270041088,1704960,24519905365967204,24519907391505747],[270041088,268599300,-22544604430576096,-22544603307191776],[270041088,268599304,-1975303102468593,-1975301917236486],[270041088,268599424,-873779583,873779583],[270041088,268600320,24519905365967204,24519907391505747],[270041088,269090820,-1975303102468593,-1975301917236486],[270041088,269090824,13247603822433492,13247605066155522],[270041088,269090944,-17896105064267619,-17896103248910824],[270041088,269615108,24519905365967204,24519907391505747],[270041088,269615112,-11272302995044411,-11272300873839524],[270041088,269615232,6623801159997192,6623803284297315],[270041088,269616128,-26495209915574692,-26495207861603338],[270041088,270172288,-11272302664793112,-11272301204090824],[270041088,270173184,-1975303102434961,-1975301917270118],[270139392,136,-9297000206694220,-9296998642484636],[270139392,1032,22544603239782766,22544604497985104],[270139392,1152,-24519907169816619,-24519905587656329],[270139392,32896,11272301204090824,11272302664793112],[270139392,33792,1975301917270118,1975303102434961],[270139392,655496,-49039814989147174,-49039810525798726],[270139392,656392,26495207784975390,26495209992202640],[270139392,656512,22544602318599624,22544605419168246],[270139392,688136,-13247606222252656,-13247602666336360],[270139392,688256,-6623803284297315,-6623801159997192],[270139392,689152,26495207861603338,26495209915574692],[270139392,1179784,17198207831856214,17198211096142960],[270139392,1180800,1975300950242052,1975304069463026],[270139392,1212424,-11272302995044411,-11272300873839524],[270139392,1212544,17896103248910824,17896105064267619],[270139392,1573000,22544602310993060,22544605426774810],[270139392,1573896,-3950606120324188,-3950603919085972],[270139392,1574016,-49039814917723134,-49039810597222762],[270139392,1605640,24519905365967204,24519907391505747],[270139392,1605760,-873779583,873779583],[270139392,1606656,-24519907391505747,-24519905365967204],[270139392,2097160,22544603251852693,22544604485915178],[270139392,2097280,-24519907156493899,-24519905600979049],[270139392,2752520,26495207805375563,26495209971802464],[270139392,2752640,-923386045,923386045],[270139392,2753536,-26495209971802464,-26495207805375563],[270139392,3276928,-929670021,929670022],[270139392,3277824,-26495209977993164,-26495207799184865],[270139392,3670024,-3950606098159314,-3950603941250842],[270139392,3670144,-24519907464643493,-24519905292829456],[270139392,3671040,52990415906156016,52990419648200040],[270139392,67108872,-13247605061713792,-13247603826875223],[270139392,67108992,-22544606644811289,-22544601092956580],[270139392,67109888,49039810292025454,49039815222920444],[270139392,67764232,4648494894207522,4648504530381905],[270139392,67764352,-6623804308921517,-6623800135372988],[270139392,67765248,26495207799404518,26495209977773508],[270139392,68288520,-21846713211925840,-21846705140662760],[270139392,68288640,8599102641942379,8599106822057209],[270139392,68289536,26495207799184865,26495209977993164],[270139392,68681736,3950603932147814,3950606107262344],[270139392,68681856,-24519909474570990,-24519903282901962],[270139392,68682752,-3950608433100829,-3950601606309328],[270139392,134217736,18593996442899990,18594001255457720],[270139392,134217856,-22544606578062592,-22544601159705275],[270139392,134218752,1975301917236486,1975303102468593],[270139392,134873096,11272298596064681,11272305272819252],[270139392,134873216,8599101696810952,8599107767188634],[270139392,134874112,-26495209977773508,-26495207799404518],[270139392,135397384,11272300873839524,11272302995044411],[270139392,135397504,-6623804212490749,-6623800231803759],[270139392,135398400,11272298195290642,11272305673593300],[270139392,135790600,-3950606107262344,-3950603932147814],[270139392,135790720,-24519908340000795,-24519904417472150],[270139392,135791616,17198204951509383,17198213976489780],[270139392,268566664,22544602310993060,22544605426774810],[270139392,268567560,-3950606120324188,-3950603919085972],[270139392,268567680,-49039814917723134,-49039810597222762],[270139392,268599304,24519905365967204,24519907391505747],[270139392,268599424,-873779583,873779583],[270139392,268600320,-24519907391505747,-24519905365967204],[270139392,268959880,17198207831856214,17198211096142960],[270139392,268960896,1975300950242052,1975304069463026],[270139392,268992520,-11272302995044411,-11272300873839524],[270139392,268992640,17896103248910824,17896105064267619],[270139392,269484168,-49039814989147174,-49039810525798726],[270139392,269485064,26495207784975390,26495209992202640],[270139392,269485184,22544602318599624,22544605419168246],[270139392,269516808,-13247606222252656,-13247602666336360],[270139392,269516928,-6623803284297315,-6623801159997192],[270139392,269517824,26495207861603338,26495209915574692],[270139392,270139528,-9297000206694220,-9296998642484636],[270139392,270140424,22544603239782766,22544604497985104],[270139392,270140544,-24519907169816619,-24519905587656329],[270139392,270172288,11272301204090824,11272302664793112],[270139392,270173184,1975301917270118,1975303102434961],[270139392,270663688,-3950606098159314,-3950603941250842],[270139392,270663808,-24519907464643493,-24519905292829456],[270139392,270664704,52990415906156016,52990419648200040],[270139392,271057024,-929670021,929670022],[270139392,271057920,-26495209977993164,-26495207799184865],[270139392,271581192,26495207805375563,26495209971802464],[270139392,271581312,-923386045,923386045],[270139392,271582208,-26495209971802464,-26495207805375563],[270139392,272236552,22544603251852693,22544604485915178],[270139392,272236672,-24519907156493899,-24519905600979049],[270139392,335675400,3950603932147814,3950606107262344],[270139392,335675520,-24519909474570990,-24519903282901962],[270139392,335676416,-3950608433100829,-3950601606309328],[270139392,336068616,-21846713211925840,-21846705140662760],[270139392,336068736,8599102641942379,8599106822057209],[270139392,336069632,26495207799184865,26495209977993164],[270139392,336592904,4648494894207522,4648504530381905],[270139392,336593024,-6623804308921517,-6623800135372988],[270139392,336593920,26495207799404518,26495209977773508],[270139392,337248264,-13247605061713792,-13247603826875223],[270139392,337248384,-22544606644811289,-22544601092956580],[270139392,337249280,49039810292025454,49039815222920444],[270139392,402784264,-3950606107262344,-3950603932147814],[270139392,402784384,-24519908340000795,-24519904417472150],[270139392,402785280,17198204951509383,17198213976489780],[270139392,403177480,11272300873839524,11272302995044411],[270139392,403177600,-6623804212490749,-6623800231803759],[270139392,403178496,11272298195290642,11272305673593300],[270139392,403701768,11272298596064681,11272305272819252],[270139392,403701888,8599101696810952,8599107767188634],[270139392,403702784,-26495209977773508,-26495207799404518],[270139392,404357128,18593996442899990,18594001255457720],[270139392,404357248,-22544606578062592,-22544601159705275],[270139392,404358144,1975301917236486,1975303102468593],[270139392,35184372088840,-13247605076872486,-13247603811716528],[270139392,35184372088960,11272301153102595,11272302715781341],[270139392,35184372089856,1975301877105131,1975303142599947],[270139392,35184372744200,-24519907512775874,-24519905244697076],[270139392,35184372744320,15222905973445933,15222907934848161],[270139392,35184373268488,11272300798196740,11272303070687196],[270139392,35184373268608,-24519907494573587,-24519905262899363],[270139392,35184373269504,26495207784975390,26495209992202640],[270139392,35184373661824,20569300415763760,20569302302299032],[270139392,35184373662720,-24519907477236870,-24519905280236082],[270139392,35184640655488,20569300415763760,20569302302299032],[270139392,35184640656384,-24519907477236870,-24519905280236082],[270139392,35184641048584,11272300798196740,11272303070687196],[270139392,35184641048704,-24519907494573587,-24519905262899363],[270139392,35184641049600,26495207784975390,26495209992202640],[270139392,35184641572872,-24519907512775874,-24519905244697076],[270139392,35184641572992,15222905973445933,15222907934848161],[270139392,35184642228232,-13247605076872486,-13247603811716528],[270139392,35184642228352,11272301153102595,11272302715781341],[270139392,35184642229248,1975301877105131,1975303142599947],[270139402,524290,11272300812248450,11272303056635485],[270139402,524296,-11272303056635485,-11272300812248450],[270139402,1048578,-13247605096148654,-13247603792440361],[270139402,1048584,13247603792440361,13247605096148654],[270139402,1703938,-1975303134066536,-1975301885638544],[270139402,1703944,1975301885638544,1975303134066536],[270139402,268435458,1975301885638544,1975303134066536],[270139402,268435464,-1975303134066536,-1975301885638544],[270139402,269090818,13247603792440361,13247605096148654],[270139402,269090824,-13247605096148654,-13247603792440361],[270139402,269615106,-11272303056635485,-11272300812248450],[270139402,269615112,11272300812248450,11272303056635485],[270139404,524292,11272300873839524,11272302995044411],[270139404,524296,-11272302995044411,-11272300873839524],[270139404,1048580,-13247605066155522,-13247603822433492],[270139404,1048584,13247603822433492,13247605066155522],[270139404,1703940,-1975303102468593,-1975301917236486],[270139404,1703944,1975301917236486,1975303102468593],[270139404,268435460,1975301917236486,1975303102468593],[270139404,268435464,-1975303102468593,-1975301917236486],[270139404,269090820,13247603822433492,13247605066155522],[270139404,269090824,-13247605066155522,-13247603822433492],[270139404,269615108,-11272302995044411,-11272300873839524],[270139404,269615112,11272300873839524,11272302995044411],[270139528,136,-9297000206694220,-9296998642484636],[270139528,131080,11272301159430177,11272302709453757],[270139528,131200,-1975304066969121,-1975300952735957],[270139528,524296,4648493631385954,4648505793203474],[270139528,524416,42416007508370071,42416013562281321],[270139528,655360,-47064513301573545,-47064507193667275],[270139528,1048584,15920798685149414,15920804608323947],[270139528,1048704,-21846710653066666,-21846707699521935],[270139528,1179648,5925906044742719,5925909014372521],[270139528,1573000,31841601898078136,31841604688868588],[270139528,1703944,-9297000814034204,-9296998035144653],[270139528,1704064,-22544606653723935,-22544601084043932],[270139528,268435464,-22544606653723935,-22544601084043932],[270139528,268435584,-9297000814034204,-9296998035144653],[270139528,268566528,31841601898078136,31841604688868588],[270139528,268959880,5925906044742719,5925909014372521],[270139528,269090824,-21846710653066666,-21846707699521935],[270139528,269090944,15920798685149414,15920804608323947],[270139528,269484168,-47064513301573545,-47064507193667275],[270139528,269615112,42416007508370071,42416013562281321],[270139528,269615232,4648493631385954,4648505793203474],[270139528,270008328,-1975304066969121,-1975300952735957],[270139528,270008448,11272301159430177,11272302709453757],[270139528,270139392,-9297000206694220,-9296998642484636],[270139584,131136,11272301161280132,11272302707603802],[270139584,131200,-11272302707603802,-11272301161280132],[270139584,524352,-31143710514241570,-31143706687525880],[270139584,524416,31143706687525880,31143710514241570],[270139584,1048640,8599103904459875,8599105559539709],[270139584,1048704,-8599105559539709,-8599103904459875],[270139584,1704000,-11272302707496740,-11272301161387192],[270139584,1704064,11272301161387192,11272302707496740],[270139584,268435520,11272301161387192,11272302707496740],[270139584,268435584,-11272302707496740,-11272301161387192],[270139584,269090880,-8599105559539709,-8599103904459875],[270139584,269090944,8599103904459875,8599105559539709],[270139584,269615168,31143706687525880,31143710514241570],[270139584,269615232,-31143710514241570,-31143706687525880],[270139584,270008384,-11272302707603802,-11272301161280132],[270139584,270008448,11272301161280132,11272302707603802],[270140424,1032,22544603239782766,22544604497985104],[270140424,132096,-22544604497985104,-22544603239782766],[270140424,1048584,-22544604497985104,-22544603239782766],[270140424,1179648,22544603239782766,22544604497985104],[270140424,268960776,22544603239782766,22544604497985104],[270140424,269091840,-22544604497985104,-22544603239782766],[270140424,270008328,-22544604497985104,-22544603239782766],[270140424,270139392,22544603239782766,22544604497985104],[270140544,1152,-24519907169816619,-24519905587656329],[270140544,131200,-24519907697962539,-24519905059510412],[270140544,132096,18593996124609637,18594001573748076],[270140544,524416,57638914684866570,57638920294078918],[270140544,525312,19871400888629471,19871412444254049],[270140544,656512,47064508847957192,47064511647283630],[270140544,1048704,15920800076521641,15920803216951721],[270140544,1049600,8599103952864898,8599105511134688],[270140544,1179648,5925906124214463,5925908934900775],[270140544,1572864,-77510327129120619,-77510321182708389],[270140544,1704064,-22544606585988845,-22544601151779026],[270140544,1704960,-24519907696178166,-24519905061294785],[270140544,268435584,-24519907696178166,-24519905061294785],[270140544,268436480,-22544606585988845,-22544601151779026],[270140544,268567680,-77510327129120619,-77510321182708389],[270140544,268960896,5925906124214463,5925908934900775],[270140544,269090944,8599103952864898,8599105511134688],[270140544,269091840,15920800076521641,15920803216951721],[270140544,269484032,47064508847957192,47064511647283630],[270140544,269615232,19871400888629471,19871412444254049],[270140544,269616128,57638914684866570,57638920294078918],[270140544,270008448,18593996124609637,18594001573748076],[270140544,270009344,-24519907697962539,-24519905059510412],[270140544,270139392,-24519907169816619,-24519905587656329],[270140672,131328,-13247605061578886,-13247603827010127],[270140672,132096,13247603827010127,13247605061578886],[270140672,524544,26495207799425147,26495209977752878],[270140672,525312,-26495209977752878,-26495207799425147],[270140672,1704192,13247603821617226,13247605066971786],[270140672,1704960,-13247605066971786,-13247603821617226],[270140672,268435712,-13247605066971786,-13247603821617226],[270140672,268436480,13247603821617226,13247605066971786],[270140672,269615360,-26495209977752878,-26495207799425147],[270140672,269616128,26495207799425147,26495209977752878],[270140672,270008576,13247603827010127,13247605061578886],[270140672,270009344,-13247605061578886,-13247603827010127],[270142464,132096,13247603821511848,13247605067077166],[270142464,133120,-13247605067077166,-13247603821511848],[270142464,525312,-26495209977993164,-26495207799184865],[270142464,526336,26495207799184865,26495209977993164],[270142464,1704960,-13247605061713792,-13247603826875223],[270142464,1705984,13247603826875223,13247605061713792],[270142464,268436480,13247603826875223,13247605061713792],[270142464,268437504,-13247605061713792,-13247603826875223],[270142464,269616128,26495207799184865,26495209977993164],[270142464,269617152,-26495209977993164,-26495207799184865],[270142464,270009344,-13247605067077166,-13247603821511848],[270142464,270010368,13247603821511848,13247605067077166],[270172164,524292,-24519907391505747,-24519905365967204],[270172164,557056,24519905365967204,24519907391505747],[270172164,1048580,1975301917236486,1975303102468593],[270172164,1081344,-1975303102468593,-1975301917236486],[270172164,1703940,-22544604430576096,-22544603307191776],[270172164,1736704,22544603307191776,22544604430576096],[270172164,268435460,22544603307191776,22544604430576096],[270172164,268468224,-22544604430576096,-22544603307191776],[270172164,269090820,-1975303102468593,-1975301917236486],[270172164,269123584,1975301917236486,1975303102468593],[270172164,269615108,24519905365967204,24519907391505747],[270172164,269647872,-24519907391505747,-24519905365967204],[270172168,524296,24519905365967204,24519907391505747],[270172168,557056,-11272302995044411,-11272300873839524],[270172168,655360,-13247606222252656,-13247602666336360],[270172168,1048584,-1975303102468593,-1975301917236486],[270172168,1081344,13247603822433492,13247605066155522],[270172168,1179648,-11272302995044411,-11272300873839524],[270172168,1605640,24519905365967204,24519907391505747],[270172168,1703944,-1975303102468593,-1975301917236486],[270172168,1736704,-22544604430576096,-22544603307191776],[270172168,268435464,-22544604430576096,-22544603307191776],[270172168,268468224,-1975303102468593,-1975301917236486],[270172168,268566528,24519905365967204,24519907391505747],[270172168,268992520,-11272302995044411,-11272300873839524],[270172168,269090824,13247603822433492,13247605066155522],[270172168,269123584,-1975303102468593,-1975301917236486],[270172168,269516808,-13247606222252656,-13247602666336360],[270172168,269615112,-11272302995044411,-11272300873839524],[270172168,269647872,24519905365967204,24519907391505747],[270172288,32896,11272301204090824,11272302664793112],[270172288,131200,-11272302664793112,-11272301204090824],[270172288,557056,-13247606222252656,-13247602666336360],[270172288,655360,13247602666336360,13247606222252656],[270172288,1081344,-9297000203994710,-9296998645184146],[270172288,1179648,9296998645184146,9297000203994710],[270172288,1605760,-11272302664826744,-11272301204057192],[270172288,1704064,11272301204057192,11272302664826744],[270172288,268468224,11272301204057192,11272302664826744],[270172288,268566528,-11272302664826744,-11272301204057192],[270172288,268992640,9296998645184146,9297000203994710],[270172288,269090944,-9297000203994710,-9296998645184146],[270172288,269516928,13247602666336360,13247606222252656],[270172288,269615232,-13247606222252656,-13247602666336360],[270172288,270041088,-11272302664793112,-11272301204090824],[270172288,270139392,11272301204090824,11272302664793112],[270173184,33792,1975301917270118,1975303102434961],[270173184,132096,-1975303102434961,-1975301917270118],[270173184,1081344,-1975303102434961,-1975301917270118],[270173184,1179648,1975301917270118,1975303102434961],[270173184,268993536,1975301917270118,1975303102434961],[270173184,269091840,-1975303102434961,-1975301917270118],[270173184,270041088,-1975303102434961,-1975301917270118],[270173184,270139392,1975301917270118,1975303102434961],[270532608,1704064,-24519907156493900,-24519905600979050],[270532608,1704960,13247603826875223,13247605061713792],[270532608,1705984,13247603827702546,13247605060886466],[270532608,68681856,-1975303134066535,-1975301885638543],[270532608,68682752,13247603821511848,13247605067077166],[270532608,68683776,13247603826875223,13247605061713792],[270532608,202376192,-1975303134066536,-1975301885638544],[270532608,202377216,-22544604485915178,-22544603251852693],[270532608,272236672,-24519907156493900,-24519905600979050],[270532608,272237568,13247603826875223,13247605061713792],[270532608,272238592,13247603827702546,13247605060886466],[270532608,339214464,-1975303134066535,-1975301885638543],[270532608,339215360,13247603821511848,13247605067077166],[270532608,339216384,13247603826875223,13247605061713792],[270532608,472908800,-1975303134066536,-1975301885638544],[270532608,472909824,-22544604485915178,-22544603251852693],[270532608,738199552,-1975303127512529,-1975301892192548],[270532608,1008732160,-1975303127512529,-1975301892192548],[270532744,3670024,-24519907464643493,-24519905292829456],[270532744,3670144,24519905292829456,24519907464643493],[270532744,270008328,24519905292829456,24519907464643493],[270532744,270008448,-24519907464643493,-24519905292829456],[270663688,3670024,-3950606098159314,-3950603941250842],[270663688,3801088,3950603941250842,3950606098159314],[270663688,270008328,3950603941250842,3950606098159314],[270663688,270139392,-3950606098159314,-3950603941250842],[270663808,1572864,-52990419648200040,-52990415906156016],[270663808,1704064,-24519907464643494,-24519905292829457],[270663808,3670144,-24519907464643493,-24519905292829456],[270663808,3801088,-3950606098159314,-3950603941250842],[270663808,270008448,-3950606098159314,-3950603941250842],[270663808,270139392,-24519907464643493,-24519905292829456],[270663808,272105472,-24519907464643494,-24519905292829457],[270663808,272236672,-52990419648200040,-52990415906156016],[270664704,1572864,52990415906156016,52990419648200040],[270664704,3671040,52990415906156016,52990419648200040],[270664704,270139392,52990415906156016,52990419648200040],[270664704,272237568,52990415906156016,52990419648200040],[271056904,1048704,1975301885638544,1975303134066536],[271056904,1179648,22544603251852693,22544604485915178],[271056904,1573000,26495207799184865,26495209977993164],[271056904,1703944,26495207805375563,26495209971802464],[271056904,3670144,-24519907464643493,-24519905292829456],[271056904,3801088,-3950606098159314,-3950603941250842],[271056904,269484168,-24519907464643493,-24519905292829456],[271056904,269615112,-3950606098159314,-3950603941250842],[271056904,271581312,26495207799184865,26495209977993164],[271056904,271712256,26495207805375563,26495209971802464],[271056904,272105608,1975301885638544,1975303134066536],[271056904,272236552,22544603251852693,22544604485915178],[271057024,1048584,-1975303134066536,-1975301885638544],[271057024,1179648,3950604236655732,3950605802754426],[271057024,1573000,-26495209977993164,-26495207799184865],[271057024,1704064,-929670021,929670022],[271057024,3276928,-929670021,929670022],[271057024,3670024,24519905292829456,24519907464643493],[271057024,3801088,3950603941250842,3950606098159314],[271057024,68157440,-1975303134066535,-1975301885638543],[271057024,70254720,-26495209977993164,-26495207799184865],[271057024,70778880,24519905292829457,24519907464643494],[271057024,269484168,24519905292829456,24519907464643493],[271057024,269615232,3950603941250842,3950606098159314],[271057024,270139392,-929670021,929670022],[271057024,271581192,-26495209977993164,-26495207799184865],[271057024,271712256,-929670021,929670022],[271057024,272105608,-1975303134066536,-1975301885638544],[271057024,272236672,3950604236655732,3950605802754426],[271057024,336593024,24519905292829457,24519907464643494],[271057024,337117184,-26495209977993164,-26495207799184865],[271057024,339214464,-1975303134066535,-1975301885638543],[271057920,1179648,-26495209977993164,-26495207799184865],[271057920,3277824,-26495209977993164,-26495207799184865],[271057920,68157440,26495207799184865,26495209977993164],[271057920,70255616,26495207799184865,26495209977993164],[271057920,270139392,-26495209977993164,-26495207799184865],[271057920,272237568,-26495209977993164,-26495207799184865],[271057920,337117184,26495207799184865,26495209977993164],[271057920,339215360,26495207799184865,26495209977993164],[271187968,1048584,-22544604485915178,-22544603251852693],[271187968,1048704,24519905600979049,24519907156493899],[271187968,1703944,-26495209971802464,-26495207805375563],[271187968,1704064,-923386045,923386045],[271187968,1704960,13247603826875223,13247605061713792],[271187968,1705984,13247603827702546,13247605060886466],[271187968,3276928,-929670022,929670021],[271187968,3277824,13247603821511848,13247605067077166],[271187968,3278848,13247603826875223,13247605061713792],[271187968,3670024,3950603941250842,3950606098159314],[271187968,3670144,24519905292829456,24519907464643493],[271187968,3671040,-26495209977993164,-26495207799184865],[271187968,3672064,-26495209971802464,-26495207805375563],[271187968,269615112,3950603941250842,3950606098159314],[271187968,269615232,24519905292829456,24519907464643493],[271187968,269616128,-26495209977993164,-26495207799184865],[271187968,269617152,-26495209971802464,-26495207805375563],[271187968,270008448,-929670022,929670021],[271187968,270009344,13247603821511848,13247605067077166],[271187968,270010368,13247603826875223,13247605061713792],[271187968,271581192,-26495209971802464,-26495207805375563],[271187968,271581312,-923386045,923386045],[271187968,271582208,13247603826875223,13247605061713792],[271187968,271583232,13247603827702546,13247605060886466],[271187968,272236552,-22544604485915178,-22544603251852693],[271187968,272236672,24519905600979049,24519907156493899],[271581192,1573000,-26495209977993164,-26495207799184865],[271581192,1703944,-26495209971802464,-26495207805375563],[271581192,2621576,26495207799184865,26495209977993164],[271581192,2752520,26495207805375563,26495209971802464],[271581192,270008448,26495207799184865,26495209977993164],[271581192,270139392,26495207805375563,26495209971802464],[271581192,271057024,-26495209977993164,-26495207799184865],[271581192,271187968,-26495209971802464,-26495207805375563],[271581312,1573000,26495207799184865,26495209977993164],[271581312,1704064,-923386045,923386045],[271581312,2621576,-26495209977993164,-26495207799184865],[271581312,2752640,-923386045,923386045],[271581312,68681856,-26495209977993164,-26495207799184865],[271581312,69730432,26495207799184865,26495209977993164],[271581312,270008328,-26495209977993164,-26495207799184865],[271581312,270139392,-923386045,923386045],[271581312,271056904,26495207799184865,26495209977993164],[271581312,271187968,-923386045,923386045],[271581312,337117184,26495207799184865,26495209977993164],[271581312,338165760,-26495209977993164,-26495207799184865],[271582208,1704960,13247603826875223,13247605061713792],[271582208,2753536,-26495209971802464,-26495207805375563],[271582208,3801088,13247603827702546,13247605060886466],[271582208,68682752,13247603821511848,13247605067077166],[271582208,69731328,-26495209977993164,-26495207799184865],[271582208,70778880,13247603826875223,13247605061713792],[271582208,202376192,-1975303134066536,-1975301885638544],[271582208,203424768,24519905292829457,24519907464643494],[271582208,204472320,-22544604485915178,-22544603251852693],[271582208,269091840,13247603827702546,13247605060886466],[271582208,270139392,-26495209971802464,-26495207805375563],[271582208,271187968,13247603826875223,13247605061713792],[271582208,336069632,13247603826875223,13247605061713792],[271582208,337117184,-26495209977993164,-26495207799184865],[271582208,338165760,13247603821511848,13247605067077166],[271582208,469763072,-22544604485915178,-22544603251852693],[271582208,470810624,24519905292829457,24519907464643494],[271582208,471859200,-1975303134066536,-1975301885638544],[271583232,1705984,13247603827702546,13247605060886466],[271583232,3801088,-13247605060886466,-13247603827702546],[271583232,68683776,13247603826875223,13247605061713792],[271583232,70778880,-13247605061713792,-13247603826875223],[271583232,202377216,-22544604485915178,-22544603251852693],[271583232,204472320,22544603251852693,22544604485915178],[271583232,269092864,-13247605060886466,-13247603827702546],[271583232,271187968,13247603827702546,13247605060886466],[271583232,336070656,-13247605061713792,-13247603826875223],[271583232,338165760,13247603826875223,13247605061713792],[271583232,469764096,22544603251852693,22544604485915178],[271583232,471859200,-22544604485915178,-22544603251852693],[271712256,525312,-26495209971802464,-26495207805375563],[271712256,526336,26495207805375563,26495209971802464],[271712256,1703944,26495207805375563,26495209971802464],[271712256,1704064,-929670021,929670022],[271712256,2752520,-26495209971802464,-26495207805375563],[271712256,2752640,-929670022,929670021],[271712256,3671040,-26495209971802464,-26495207805375563],[271712256,3672064,26495207805375563,26495209971802464],[271712256,269091840,-26495209971802464,-26495207805375563],[271712256,269092864,26495207805375563,26495209971802464],[271712256,270008328,-26495209971802464,-26495207805375563],[271712256,270008448,-929670022,929670021],[271712256,271056904,26495207805375563,26495209971802464],[271712256,271057024,-929670021,929670022],[271712256,272237568,-26495209971802464,-26495207805375563],[271712256,272238592,26495207805375563,26495209971802464],[272105472,132096,13247603826875223,13247605061713792],[272105472,133120,-13247605061713792,-13247603826875223],[272105472,1704064,-24519907464643494,-24519905292829457],[272105472,2752640,24519905292829457,24519907464643494],[272105472,3277824,13247603826875223,13247605061713792],[272105472,3278848,-13247605061713792,-13247603826875223],[272105472,67109888,-13247605061713792,-13247603826875223],[272105472,67110912,13247603826875223,13247605061713792],[272105472,68681856,24519905292829457,24519907464643494],[272105472,69730432,-24519907464643494,-24519905292829457],[272105472,70255616,-13247605061713792,-13247603826875223],[272105472,70256640,13247603826875223,13247605061713792],[272105472,269091840,13247603826875223,13247605061713792],[272105472,269092864,-13247605061713792,-13247603826875223],[272105472,269615232,24519905292829457,24519907464643494],[272105472,270663808,-24519907464643494,-24519905292829457],[272105472,272237568,13247603826875223,13247605061713792],[272105472,272238592,-13247605061713792,-13247603826875223],[272105472,336069632,-13247605061713792,-13247603826875223],[272105472,336070656,13247603826875223,13247605061713792],[272105472,336593024,-24519907464643494,-24519905292829457],[272105472,337641600,24519905292829457,24519907464643494],[272105472,339215360,-13247605061713792,-13247603826875223],[272105472,339216384,13247603826875223,13247605061713792],[272105608,1048584,-1975303134066536,-1975301885638544],[272105608,1048704,1975301885638544,1975303134066536],[272105608,2097160,1975301885638544,1975303134066536],[272105608,2097280,-1975303134066536,-1975301885638544],[272105608,270008328,-1975303134066536,-1975301885638544],[272105608,270008448,1975301885638544,1975303134066536],[272105608,271056904,1975301885638544,1975303134066536],[272105608,271057024,-1975303134066536,-1975301885638544],[272236552,1048584,-22544604485915178,-22544603251852693],[272236552,1179648,22544603251852693,22544604485915178],[272236552,2097160,22544603251852693,22544604485915178],[272236552,2228224,-22544604485915178,-22544603251852693],[272236552,270008328,-22544604485915178,-22544603251852693],[272236552,270139392,22544603251852693,22544604485915178],[272236552,271056904,22544603251852693,22544604485915178],[272236552,271187968,-22544604485915178,-22544603251852693],[272236672,1048704,24519905600979049,24519907156493899],[272236672,1179648,3950604236655732,3950605802754426],[272236672,1572864,-52990419648200040,-52990415906156016],[272236672,1704064,-24519907156493900,-24519905600979050],[272236672,2097280,-24519907156493899,-24519905600979049],[272236672,2228224,-3950605802754426,-3950604236655732],[272236672,2621440,52990415906156016,52990419648200040],[272236672,2752640,24519905600979050,24519907156493900],[272236672,269484032,24519905600979050,24519907156493900],[272236672,269615232,52990415906156016,52990419648200040],[272236672,270008448,-3950605802754426,-3950604236655732],[272236672,270139392,-24519907156493899,-24519905600979049],[272236672,270532608,-24519907156493900,-24519905600979050],[272236672,270663808,-52990419648200040,-52990415906156016],[272236672,271057024,3950604236655732,3950605802754426],[272236672,271187968,24519905600979049,24519907156493899],[272237568,132096,13247603826875223,13247605061713792],[272237568,525312,-26495209971802464,-26495207805375563],[272237568,1179648,-26495209977993164,-26495207799184865],[272237568,1572864,52990415906156016,52990419648200040],[272237568,1704960,13247603826875223,13247605061713792],[272237568,2228224,13247603821511848,13247605067077166],[272237568,2621440,-26495209977993164,-26495207799184865],[272237568,2753536,-26495209971802464,-26495207805375563],[272237568,3801088,13247603827702546,13247605060886466],[272237568,268436480,13247603827702546,13247605060886466],[272237568,269484032,-26495209971802464,-26495207805375563],[272237568,269616128,-26495209977993164,-26495207799184865],[272237568,270009344,13247603821511848,13247605067077166],[272237568,270532608,13247603826875223,13247605061713792],[272237568,270664704,52990415906156016,52990419648200040],[272237568,271057920,-26495209977993164,-26495207799184865],[272237568,271712256,-26495209971802464,-26495207805375563],[272237568,272105472,13247603826875223,13247605061713792],[272238592,133120,-13247605061713792,-13247603826875223],[272238592,526336,26495207805375563,26495209971802464],[272238592,1705984,13247603827702546,13247605060886466],[272238592,2228224,13247603826875223,13247605061713792],[272238592,2621440,-26495209971802464,-26495207805375563],[272238592,3801088,-13247605060886466,-13247603827702546],[272238592,268437504,-13247605060886466,-13247603827702546],[272238592,269617152,-26495209971802464,-26495207805375563],[272238592,270010368,13247603826875223,13247605061713792],[272238592,270532608,13247603827702546,13247605060886466],[272238592,271712256,26495207805375563,26495209971802464],[272238592,272105472,-13247605061713792,-13247603826875223],[335544320,32776,11272301474344214,11272302394539722],[335544320,131080,19173508522816278,19173515424887978],[335544320,131200,20569295987453940,20569306730608851],[335544320,524296,20569295987453940,20569306730608851],[335544320,524416,19173508522816278,19173515424887978],[335544320,655496,26495207501815288,26495210275362748],[335544320,688136,-9297000198160808,-9296998651018048],[335544320,688256,-1975303134066536,-1975301885638544],[335544320,1048704,11272301474344214,11272302394539722],[335544320,1703944,-1975303134066536,-1975301885638544],[335544320,1704064,-9297000198160808,-9296998651018048],[335544320,134217736,4648497899071108,4648501525518317],[335544320,134217856,-15920803457056280,-15920799836417081],[335544320,134873096,13247603792440361,13247605096148654],[335544320,134873216,-1975303161793801,-1975301857911278],[335544320,335577096,11272301474344214,11272302394539722],[335544320,335675400,19173508522816278,19173515424887978],[335544320,335675520,20569295987453940,20569306730608851],[335544320,336068616,20569295987453940,20569306730608851],[335544320,336068736,19173508522816278,19173515424887978],[335544320,336199816,26495207501815288,26495210275362748],[335544320,336232456,-9297000198160808,-9296998651018048],[335544320,336232576,-1975303134066536,-1975301885638544],[335544320,336593024,11272301474344214,11272302394539722],[335544320,337248264,-1975303134066536,-1975301885638544],[335544320,337248384,-9297000198160808,-9296998651018048],[335544320,469762056,4648497899071108,4648501525518317],[335544320,469762176,-15920803457056280,-15920799836417081],[335544320,470417416,13247603792440361,13247605096148654],[335544320,470417536,-1975303161793801,-1975301857911278],[335544320,1073741832,-15920803457056280,-15920799836417081],[335544320,1073741952,4648497899071108,4648501525518317],[335544320,1074397192,-1975303161793801,-1975301857911278],[335544320,1074397312,13247603792440361,13247605096148654],[335544320,1409286152,-15920803457056280,-15920799836417081],[335544320,1409286272,4648497899071108,4648501525518317],[335544320,1409941512,-1975303161793801,-1975301857911278],[335544320,1409941632,13247603792440361,13247605096148654],[335544320,17592186044424,7321694955032038,7321698874441739],[335544320,17592186044544,1975300539655663,1975304480049416],[335544320,17592186699784,-22544604548409457,-22544603189358414],[335544320,17592186699904,13247603754276960,13247605134312055],[335544320,17592521588744,7321694955032038,7321698874441739],[335544320,17592521588864,1975300539655663,1975304480049416],[335544320,17592522244104,-22544604548409457,-22544603189358414],[335544320,17592522244224,13247603754276960,13247605134312055],[335544320,35184372088840,1975300539655663,1975304480049416],[335544320,35184372088960,7321694955032038,7321698874441739],[335544320,35184372744200,13247603754276960,13247605134312055],[335544320,35184372744320,-22544604548409457,-22544603189358414],[335544320,35184707633160,1975300539655663,1975304480049416],[335544320,35184707633280,7321694955032038,7321698874441739],[335544320,35184708288520,13247603754276960,13247605134312055],[335544320,35184708288640,-22544604548409457,-22544603189358414],[335544330,67108866,-4648502135287572,-4648497289301856],[335544330,67108872,4648497289301856,4648502135287572],[335544330,67764226,24519905151602618,24519907605870334],[335544330,67764232,-24519907605870334,-24519905151602618],[335544330,268435458,4648497289301856,4648502135287572],[335544330,268435464,-4648502135287572,-4648497289301856],[335544330,269090818,-24519907605870334,-24519905151602618],[335544330,269090824,24519905151602618,24519907605870334],[335544332,67108868,-4648501976324875,-4648497448264558],[335544332,67108872,4648497448264558,4648501976324875],[335544332,67272708,24519905280236082,24519907477236870],[335544332,67272712,-24519907477236870,-24519905280236082],[335544332,67764228,24519905258499972,24519907498972975],[335544332,67764232,-24519907498972975,-24519905258499972],[335544332,268435460,4648497448264558,4648501976324875],[335544332,268435464,-4648501976324875,-4648497448264558],[335544332,268599300,-24519907477236870,-24519905280236082],[335544332,268599304,24519905280236082,24519907477236870],[335544332,269090820,-24519907498972975,-24519905258499972],[335544332,269090824,24519905258499972,24519907498972975],[335544456,655360,79485623172031080,79485630159503018],[335544456,67108872,9296994579848082,9297004269330780],[335544456,67108992,-9297004269330780,-9296994579848082],[335544456,67764232,-18594007185055848,-18593990513301844],[335544456,67764352,98079620672804862,98079630357086928],[335544456,268435464,-9297004269330780,-9296994579848082],[335544456,268435584,9296994579848082,9297004269330780],[335544456,269090824,98079620672804862,98079630357086928],[335544456,269090944,-18594007185055848,-18593990513301844],[335544456,336199816,79485623172031080,79485630159503018],[335544512,67108928,4648497289301856,4648502135287572],[335544512,67108992,-4648502135287572,-4648497289301856],[335544512,67764288,-24519907605870334,-24519905151602618],[335544512,67764352,24519905151602618,24519907605870334],[335544512,268435520,-4648502135287572,-4648497289301856],[335544512,268435584,4648497289301856,4648502135287572],[335544512,269090880,24519905151602618,24519907605870334],[335544512,269090944,-24519907605870334,-24519905151602618],[335545472,67108992,-4648501976324875,-4648497448264558],[335545472,67109888,4648497448264558,4648501976324875],[335545472,67764352,24519905258499972,24519907498972975],[335545472,67765248,-24519907498972975,-24519905258499972],[335545472,68681856,24519905280236082,24519907477236870],[335545472,68682752,-24519907477236870,-24519905280236082],[335545472,268435584,4648497448264558,4648501976324875],[335545472,268436480,-4648501976324875,-4648497448264558],[335545472,269090944,-24519907498972975,-24519905258499972],[335545472,269091840,24519905258499972,24519907498972975],[335545472,270008448,-24519907477236870,-24519905280236082],[335545472,270009344,24519905280236082,24519907477236870],[335577090,67239946,6623801107293350,6623803337001160],[335577090,67272712,-6623803337001160,-6623801107293350],[335577090,268566538,-6623803337001160,-6623801107293350],[335577090,268599304,6623801107293350,6623803337001160],[335577092,67108868,-3950609211113582,-3950600828296569],[335577092,67141632,3950600828296569,3950609211113582],[335577092,67239948,6623801159997192,6623803284297315],[335577092,67272712,-6623803284297315,-6623801159997192],[335577092,67764228,-26495209977773508,-26495207799404518],[335577092,67796992,26495207799404518,26495209977773508],[335577092,268435460,3950600828296569,3950609211113582],[335577092,268468224,-3950609211113582,-3950600828296569],[335577092,268566540,-6623803284297315,-6623801159997192],[335577092,268599304,6623801159997192,6623803284297315],[335577092,269090820,26495207799404518,26495209977773508],[335577092,269123584,-26495209977773508,-26495207799404518],[335577096,0,22544602948688428,22544604789079444],[335577096,32776,11272301474344214,11272302394539722],[335577096,655360,-47064513273775962,-47064507221464861],[335577096,688136,-49039814979929732,-49039810535016170],[335577096,67108872,-4648502490229551,-4648496934359881],[335577096,67141632,15920798865897844,15920804427575524],[335577096,67239946,-6623803337001160,-6623801107293350],[335577096,67239948,17896101995938767,17896106317239678],[335577096,67240072,-6623803346277523,-6623801098016986],[335577096,67272706,6623801107293350,6623803337001160],[335577096,67272708,-17896106317239678,-17896101995938767],[335577096,67272832,6623801098016986,6623803346277523],[335577096,67764232,8599102676277534,8599106787722050],[335577096,67796992,-6623804308921517,-6623800135372988],[335577096,134348800,-6623803284330947,-6623801159963560],[335577096,134381576,-6623803284330947,-6623801159963560],[335577096,268435464,15920798865897844,15920804427575524],[335577096,268468224,-4648502490229551,-4648496934359881],[335577096,268566538,6623801107293350,6623803337001160],[335577096,268566540,-17896106317239678,-17896101995938767],[335577096,268566664,6623801098016986,6623803346277523],[335577096,268599298,-6623803337001160,-6623801107293350],[335577096,268599300,17896101995938767,17896106317239678],[335577096,268599424,-6623803346277523,-6623801098016986],[335577096,269090824,-6623804308921517,-6623800135372988],[335577096,269123584,8599102676277534,8599106787722050],[335577096,335544320,11272301474344214,11272302394539722],[335577096,335577096,22544602948688428,22544604789079444],[335577096,336199680,-49039814979929732,-49039810535016170],[335577096,336232456,-47064513273775962,-47064507221464861],[335577096,469893120,-6623803284330947,-6623801159963560],[335577096,469925896,-6623803284330947,-6623801159963560],[335577096,1073872896,8599103049607085,8599106414392500],[335577096,1073905672,6623801159963560,6623803284330947],[335577096,1140981768,51015113107810724,51015117426840252],[335577096,1141014528,-49039814910578252,-49039810604367646],[335577096,1342308360,-49039814910578252,-49039810604367646],[335577096,1342341120,51015113107810724,51015117426840252],[335577096,1409417216,6623801159963560,6623803284330947],[335577096,1409449992,8599103049607085,8599106414392500],[335577096,17592186175488,24519905244697076,24519907512775874],[335577096,17592186208264,24519905244697076,24519907512775874],[335577096,17592521719808,24519905244697076,24519907512775874],[335577096,17592521752584,24519905244697076,24519907512775874],[335577096,35184372219904,-24519907512775874,-24519905244697076],[335577096,35184372252680,-24519907512775874,-24519905244697076],[335577096,35184707764224,-24519907512775874,-24519905244697076],[335577096,35184707797000,-24519907512775874,-24519905244697076],[335577216,655360,35792205747120647,35792210879236240],[335577216,67240072,6623801098016986,6623803346277523],[335577216,67272712,-6623803346277523,-6623801098016986],[335577216,67764352,31143706348854335,31143710852913125],[335577216,67796992,4648494894207522,4648504530381905],[335577216,268566664,-6623803346277523,-6623801098016986],[335577216,268599304,6623801098016986,6623803346277523],[335577216,269090944,4648494894207522,4648504530381905],[335577216,269123584,31143706348854335,31143710852913125],[335577216,336232576,35792205747120647,35792210879236240],[335577216,1074266112,-1975303130061553,-1975301889643525],[335577216,1141407744,-1975303130061553,-1975301889643525],[335577216,1342701696,-1975303130061553,-1975301889643525],[335577216,1409843328,-1975303130061553,-1975301889643525],[335675393,67108875,4648499057538562,4648500367050864],[335675393,67108877,1975301889664154,1975303130040923],[335675393,67141637,-13247605061578886,-13247603827010127],[335675393,67239946,-4648500367050864,-4648499057538562],[335675393,67239948,-1975303130040923,-1975301889664154],[335675393,67272708,13247603827010127,13247605061578886],[335675393,268435467,-4648500367050864,-4648499057538562],[335675393,268435469,-1975303130040923,-1975301889664154],[335675393,268468229,13247603827010127,13247605061578886],[335675393,268566538,4648499057538562,4648500367050864],[335675393,268566540,1975301889664154,1975303130040923],[335675393,268599300,-13247605061578886,-13247603827010127],[335675394,524296,3950603642885640,3950606396524520],[335675394,655370,28470509652297966,28470513144585146],[335675394,67108866,-4648501614770600,-4648497809818828],[335675394,67108875,-4648500367050864,-4648499057538562],[335675394,67108878,-1975303130040923,-1975301889664154],[335675394,67108938,-4648500405191522,-4648499019397906],[335675394,67109002,-1975303194709763,-1975301824995317],[335675394,67141642,6623801102928978,6623803341365525],[335675394,67239936,4648497809818828,4648501614770600],[335675394,67239945,4648499057538562,4648500367050864],[335675394,67239948,1975301889664154,1975303130040923],[335675394,67240008,4648499019397906,4648500405191522],[335675394,67240072,1975301824995317,1975303194709763],[335675394,67272712,-6623803341365525,-6623801102928978],[335675394,67633162,-17896106590718401,-17896101722460043],[335675394,67764232,-6623803429142575,-6623801015151933],[335675394,134217736,4648499059714221,4648500364875210],[335675394,134348810,4648499059714221,4648500364875210],[335675394,268435458,4648497809818828,4648501614770600],[335675394,268435467,4648499057538562,4648500367050864],[335675394,268435470,1975301889664154,1975303130040923],[335675394,268435530,4648499019397906,4648500405191522],[335675394,268435594,1975301824995317,1975303194709763],[335675394,268468234,-6623803341365525,-6623801102928978],[335675394,268566528,-4648501614770600,-4648497809818828],[335675394,268566537,-4648500367050864,-4648499057538562],[335675394,268566540,-1975303130040923,-1975301889664154],[335675394,268566600,-4648500405191522,-4648499019397906],[335675394,268566664,-1975303194709763,-1975301824995317],[335675394,268599304,6623801102928978,6623803341365525],[335675394,268959754,-6623803429142575,-6623801015151933],[335675394,269090824,-17896106590718401,-17896101722460043],[335675394,336068616,28470509652297966,28470513144585146],[335675394,336199690,3950603642885640,3950606396524520],[335675394,469762056,4648499059714221,4648500364875210],[335675394,469893130,4648499059714221,4648500364875210],[335675394,1073741832,-4648500364875210,-4648499059714221],[335675394,1073872906,-4648500364875210,-4648499059714221],[335675394,1409286152,-4648500364875210,-4648499059714221],[335675394,1409417226,-4648500364875210,-4648499059714221],[335675394,17592186044424,-1975303196554503,-1975301823150576],[335675394,17592186175498,-1975303196554503,-1975301823150576],[335675394,17592521588744,-1975303196554503,-1975301823150576],[335675394,17592521719818,-1975303196554503,-1975301823150576],[335675394,35184372088840,1975301823150576,1975303196554503],[335675394,35184372219914,1975301823150576,1975303196554503],[335675394,35184707633160,1975301823150576,1975303196554503],[335675394,35184707764234,1975301823150576,1975303196554503],[335675396,524296,3950603721653790,3950606317756372],[335675396,557056,45089206508319720,45089208967216020],[335675396,655372,28470509608204269,28470513188678840],[335675396,688132,18593997143338122,18594000555019592],[335675396,67108868,8599101370269630,8599108093729955],[335675396,67108877,-1975303130040923,-1975301889664154],[335675396,67108878,-4648500367050864,-4648499057538562],[335675396,67109004,-4648500367937248,-4648499056652179],[335675396,67141637,13247603827010127,13247605061578886],[335675396,67141644,-8599108093729955,-8599101370269630],[335675396,67239936,-8599108093729955,-8599101370269630],[335675396,67239945,1975301889664154,1975303130040923],[335675396,67239946,4648499057538562,4648500367050864],[335675396,67240072,4648499056652179,4648500367937248],[335675396,67272705,-13247605061578886,-13247603827010127],[335675396,67272712,8599101370269630,8599108093729955],[335675396,67633164,-17896106400955991,-17896101912222451],[335675396,67665924,-2178588646,2178588643],[335675396,67764232,-6623803346277521,-6623801098016984],[335675396,67796992,26495207799184865,26495209977993164],[335675396,134217736,4648499087034444,4648500337554984],[335675396,134250496,1975301917270118,1975303102434961],[335675396,134348812,4648499087034444,4648500337554984],[335675396,134381572,1975301917270118,1975303102434961],[335675396,268435460,-8599108093729955,-8599101370269630],[335675396,268435469,1975301889664154,1975303130040923],[335675396,268435470,4648499057538562,4648500367050864],[335675396,268435596,4648499056652179,4648500367937248],[335675396,268468229,-13247605061578886,-13247603827010127],[335675396,268468236,8599101370269630,8599108093729955],[335675396,268566528,8599101370269630,8599108093729955],[335675396,268566537,-1975303130040923,-1975301889664154],[335675396,268566538,-4648500367050864,-4648499057538562],[335675396,268566664,-4648500367937248,-4648499056652179],[335675396,268599297,13247603827010127,13247605061578886],[335675396,268599304,-8599108093729955,-8599101370269630],[335675396,268959756,-6623803346277521,-6623801098016984],[335675396,268992516,26495207799184865,26495209977993164],[335675396,269090824,-17896106400955991,-17896101912222451],[335675396,269123584,-2178588646,2178588643],[335675396,336068616,28470509608204269,28470513188678840],[335675396,336101376,18593997143338122,18594000555019592],[335675396,336199692,3950603721653790,3950606317756372],[335675396,336232452,45089206508319720,45089208967216020],[335675396,469762056,4648499087034444,4648500337554984],[335675396,469794816,1975301917270118,1975303102434961],[335675396,469893132,4648499087034444,4648500337554984],[335675396,469925892,1975301917270118,1975303102434961],[335675396,1073741832,-4648500337554984,-4648499087034444],[335675396,1073774592,-1975303102434961,-1975301917270118],[335675396,1073872908,-4648500337554984,-4648499087034444],[335675396,1073905668,-15222908164034477,-15222905744259616],[335675396,1140883460,39742811633466510,39742815032300530],[335675396,1141014528,-26495210121498808,-26495207655679218],[335675396,1342210052,-26495210121498808,-26495207655679218],[335675396,1342341120,39742811633466510,39742815032300530],[335675396,1409286152,-4648500337554984,-4648499087034444],[335675396,1409318912,-15222908164034477,-15222905744259616],[335675396,1409417228,-4648500337554984,-4648499087034444],[335675396,1409449988,-1975303102434961,-1975301917270118],[335675396,17592186044424,-1975303167312100,-1975301852392980],[335675396,17592186077184,-22544604497985104,-22544603239782766],[335675396,17592186175500,-1975303167312100,-1975301852392980],[335675396,17592186208260,-22544604497985104,-22544603239782766],[335675396,17592521588744,-1975303167312100,-1975301852392980],[335675396,17592521621504,-22544604497985104,-22544603239782766],[335675396,17592521719820,-1975303167312100,-1975301852392980],[335675396,17592521752580,-22544604497985104,-22544603239782766],[335675396,35184372088840,1975301852392980,1975303167312100],[335675396,35184372121600,22544603239782766,22544604497985104],[335675396,35184372219916,1975301852392980,1975303167312100],[335675396,35184372252676,22544603239782766,22544604497985104],[335675396,35184707633160,1975301852392980,1975303167312100],[335675396,35184707665920,22544603239782766,22544604497985104],[335675396,35184707764236,1975301852392980,1975303167312100],[335675396,35184707796996,22544603239782766,22544604497985104],[335675400,0,11851812660075666,11851817458154814],[335675400,131080,19173508522816278,19173515424887978],[335675400,524290,-3950606396524520,-3950603642885640],[335675400,524292,-3950606317756372,-3950603721653790],[335675400,524416,-3950606383588294,-3950603655821866],[335675400,557056,5925906055094245,5925909004020996],[335675400,655370,-28470513144585146,-28470509652297966],[335675400,655372,-28470513188678840,-28470509608204269],[335675400,655496,-30445818898447706,-30445808918140474],[335675400,688136,17198207846590140,17198211081409034],[335675400,1703944,-1975303134066536,-1975301885638544],[335675400,67108872,-85257851747913146,-85257795604898244],[335675400,67108878,6623801102928978,6623803341365525],[335675400,67109002,6623801015151933,6623803429142575],[335675400,67109004,6623801098016984,6623803346277521],[335675400,67141642,-6623803341365525,-6623801102928978],[335675400,67141644,-19871408304404039,-19871405028479484],[335675400,67141768,-6623803346277521,-6623801098016984],[335675400,67239936,77936102841789496,77936150681548118],[335675400,67239942,-6623803341365525,-6623801102928978],[335675400,67240066,-6623803429142575,-6623801015151933],[335675400,67240068,-6623803346277521,-6623801098016984],[335675400,67272706,6623801102928978,6623803341365525],[335675400,67272708,19871405028479484,19871408304404039],[335675400,67272832,6623801098016984,6623803346277521],[335675400,67633162,17896101722460043,17896106590718401],[335675400,67633164,17896101912222451,17896106400955991],[335675400,67633288,-13247611732520567,-13247597156068460],[335675400,67665928,-19871408879756524,-19871404453126997],[335675400,67764226,6623801015151933,6623803429142575],[335675400,67764228,6623801098016984,6623803346277521],[335675400,67764352,39742810183793936,39742816481973111],[335675400,67796992,8599102641942379,8599106822057209],[335675400,68681736,3950603932147814,3950606107262344],[335675400,68812800,-1975303130061553,-1975301889643525],[335675400,134217730,-4648500364875210,-4648499059714221],[335675400,134217732,-4648500337554984,-4648499087034444],[335675400,134217856,-4648500367937249,-4648499056652180],[335675400,134250496,4648499087034444,4648500337554984],[335675400,134348810,-4648500364875210,-4648499059714221],[335675400,134348812,-4648500337554984,-4648499087034444],[335675400,134348936,-4648500367937249,-4648499056652180],[335675400,134381576,4648499087034444,4648500337554984],[335675400,134742016,4648499056652180,4648500367937249],[335675400,134873096,17896102849092541,17896105464085903],[335675400,201850888,-37767513075615154,-37767508570446813],[335675400,201981952,24519904610140814,24519908147332138],[335675400,268435464,77936102841789496,77936150681548118],[335675400,268435470,-6623803341365525,-6623801102928978],[335675400,268435594,-6623803429142575,-6623801015151933],[335675400,268435596,-6623803346277521,-6623801098016984],[335675400,268468234,6623801102928978,6623803341365525],[335675400,268468236,19871405028479484,19871408304404039],[335675400,268468360,6623801098016984,6623803346277521],[335675400,268566528,-85257851747913146,-85257795604898244],[335675400,268566534,6623801102928978,6623803341365525],[335675400,268566658,6623801015151933,6623803429142575],[335675400,268566660,6623801098016984,6623803346277521],[335675400,268599298,-6623803341365525,-6623801102928978],[335675400,268599300,-19871408304404039,-19871405028479484],[335675400,268599424,-6623803346277521,-6623801098016984],[335675400,268959754,6623801015151933,6623803429142575],[335675400,268959756,6623801098016984,6623803346277521],[335675400,268959880,39742810183793936,39742816481973111],[335675400,268992520,8599102641942379,8599106822057209],[335675400,269090818,17896101722460043,17896106590718401],[335675400,269090820,17896101912222451,17896106400955991],[335675400,269090944,-13247611732520567,-13247597156068460],[335675400,269123584,-19871408879756524,-19871404453126997],[335675400,270008328,-1975303130061553,-1975301889643525],[335675400,270139392,3950603932147814,3950606107262344],[335675400,335544320,19173508522816278,19173515424887978],[335675400,335675400,11851812660075666,11851817458154814],[335675400,336068610,-28470513144585146,-28470509652297966],[335675400,336068612,-28470513188678840,-28470509608204269],[335675400,336068736,-30445818898447706,-30445808918140474],[335675400,336101376,17198207846590140,17198211081409034],[335675400,336199690,-3950606396524520,-3950603642885640],[335675400,336199692,-3950606317756372,-3950603721653790],[335675400,336199816,-3950606383588294,-3950603655821866],[335675400,336232456,5925906055094245,5925909004020996],[335675400,337117184,-1975303134066536,-1975301885638544],[335675400,403177480,24519904610140814,24519908147332138],[335675400,403308544,-37767513075615154,-37767508570446813],[335675400,469762050,-4648500364875210,-4648499059714221],[335675400,469762052,-4648500337554984,-4648499087034444],[335675400,469762176,-4648500367937249,-4648499056652180],[335675400,469794816,4648499087034444,4648500337554984],[335675400,469893130,-4648500364875210,-4648499059714221],[335675400,469893132,-4648500337554984,-4648499087034444],[335675400,469893256,-4648500367937249,-4648499056652180],[335675400,469925896,4648499087034444,4648500337554984],[335675400,470286336,17896102849092541,17896105464085903],[335675400,470417416,4648499056652180,4648500367937249],[335675400,1073741826,4648499059714221,4648500364875210],[335675400,1073741828,4648499087034444,4648500337554984],[335675400,1073741952,4648499056652180,4648500367937249],[335675400,1073774592,-4648500337554984,-4648499087034444],[335675400,1073872906,4648499059714221,4648500364875210],[335675400,1073872908,4648499087034444,4648500337554984],[335675400,1073873032,4648499056652180,4648500367937249],[335675400,1073905672,-4648500337554984,-4648499087034444],[335675400,1074266112,-6623803529731050,-6623800914563458],[335675400,1074397192,-4648500367937249,-4648499056652180],[335675400,1141374984,35792206084485028,35792210541871860],[335675400,1141506048,-37767513075615154,-37767508570446813],[335675400,1275068424,-6623803271301876,-6623801172992632],[335675400,1275199488,6623801172992632,6623803271301876],[335675400,1342701576,-37767513075615154,-37767508570446813],[335675400,1342832640,35792206084485028,35792210541871860],[335675400,1409286146,4648499059714221,4648500364875210],[335675400,1409286148,4648499087034444,4648500337554984],[335675400,1409286272,4648499056652180,4648500367937249],[335675400,1409318912,-4648500337554984,-4648499087034444],[335675400,1409417226,4648499059714221,4648500364875210],[335675400,1409417228,4648499087034444,4648500337554984],[335675400,1409417352,4648499056652180,4648500367937249],[335675400,1409449992,-4648500337554984,-4648499087034444],[335675400,1409810432,-4648500367937249,-4648499056652180],[335675400,1409941512,-6623803529731050,-6623800914563458],[335675400,1476395016,6623801172992632,6623803271301876],[335675400,1476526080,-6623803271301876,-6623801172992632],[335675400,17592186044418,1975301823150576,1975303196554503],[335675400,17592186044420,1975301852392980,1975303167312100],[335675400,17592186044544,1975301819477018,1975303200228061],[335675400,17592186077184,-1975303167312100,-1975301852392980],[335675400,17592186175498,1975301823150576,1975303196554503],[335675400,17592186175500,1975301852392980,1975303167312100],[335675400,17592186175624,1975301819477018,1975303200228061],[335675400,17592186208264,-1975303167312100,-1975301852392980],[335675400,17592186568704,-24519907748637518,-24519905008835432],[335675400,17592186699784,-1975303200228061,-1975301819477018],[335675400,17592253677576,30445811467235518,30445816349352673],[335675400,17592253808640,-52990420219871546,-52990415334484516],[335675400,17592387371016,11272300798196740,11272303070687196],[335675400,17592387502080,-11272303070687196,-11272300798196740],[335675400,17592455004168,-52990420219871546,-52990415334484516],[335675400,17592455135232,30445811467235518,30445816349352673],[335675400,17592521588738,1975301823150576,1975303196554503],[335675400,17592521588740,1975301852392980,1975303167312100],[335675400,17592521588864,1975301819477018,1975303200228061],[335675400,17592521621504,-1975303167312100,-1975301852392980],[335675400,17592521719818,1975301823150576,1975303196554503],[335675400,17592521719820,1975301852392980,1975303167312100],[335675400,17592521719944,1975301819477018,1975303200228061],[335675400,17592521752584,-1975303167312100,-1975301852392980],[335675400,17592522113024,-1975303200228061,-1975301819477018],[335675400,17592522244104,-24519907748637518,-24519905008835432],[335675400,17592588697608,-11272303070687196,-11272300798196740],[335675400,17592588828672,11272300798196740,11272303070687196],[335675400,17593326895112,-11272303070687196,-11272300798196740],[335675400,17593327026176,11272300798196740,11272303070687196],[335675400,17593528221704,11272300798196740,11272303070687196],[335675400,17593528352768,-11272303070687196,-11272300798196740],[335675400,35184372088834,-1975303196554503,-1975301823150576],[335675400,35184372088836,-1975303167312100,-1975301852392980],[335675400,35184372088960,-1975303200228061,-1975301819477018],[335675400,35184372121600,1975301852392980,1975303167312100],[335675400,35184372219914,-1975303196554503,-1975301823150576],[335675400,35184372219916,-1975303167312100,-1975301852392980],[335675400,35184372220040,-1975303200228061,-1975301819477018],[335675400,35184372252680,1975301852392980,1975303167312100],[335675400,35184372613120,1975301819477018,1975303200228061],[335675400,35184372744200,15222905573753978,15222908334540116],[335675400,35184439721992,-52990420219871546,-52990415334484516],[335675400,35184439853056,39742811412341918,39742815253425129],[335675400,35184573415432,-11272303070687196,-11272300798196740],[335675400,35184573546496,11272300798196740,11272303070687196],[335675400,35184641048584,39742811412341918,39742815253425129],[335675400,35184641179648,-52990420219871546,-52990415334484516],[335675400,35184707633154,-1975303196554503,-1975301823150576],[335675400,35184707633156,-1975303167312100,-1975301852392980],[335675400,35184707633280,-1975303200228061,-1975301819477018],[335675400,35184707665920,1975301852392980,1975303167312100],[335675400,35184707764234,-1975303196554503,-1975301823150576],[335675400,35184707764236,-1975303167312100,-1975301852392980],[335675400,35184707764360,-1975303200228061,-1975301819477018],[335675400,35184707797000,1975301852392980,1975303167312100],[335675400,35184708157440,15222905573753978,15222908334540116],[335675400,35184708288520,1975301819477018,1975303200228061],[335675400,35184774742024,11272300798196740,11272303070687196],[335675400,35184774873088,-11272303070687196,-11272300798196740],[335675400,35185512939528,11272300798196740,11272303070687196],[335675400,35185513070592,-11272303070687196,-11272300798196740],[335675400,35185714266120,-11272303070687196,-11272300798196740],[335675400,35185714397184,11272300798196740,11272303070687196],[335675400,52776625242120,49039810952496628,49039814562449270],[335675400,52776625373184,-49039814562449270,-49039810952496628],[335675400,52776826568712,-49039814562449270,-49039810952496628],[335675400,52776826699776,49039810952496628,49039814562449270],[335675403,67108865,4648499057538562,4648500367050864],[335675403,67108866,-4648500367050864,-4648499057538562],[335675403,67239945,4648499057538562,4648500367050864],[335675403,67239946,-4648500367050864,-4648499057538562],[335675403,268435457,-4648500367050864,-4648499057538562],[335675403,268435458,4648499057538562,4648500367050864],[335675403,268566537,-4648500367050864,-4648499057538562],[335675403,268566538,4648499057538562,4648500367050864],[335675405,67108865,1975301889664154,1975303130040923],[335675405,67108868,-1975303130040923,-1975301889664154],[335675405,67239945,1975301889664154,1975303130040923],[335675405,67239948,-1975303130040923,-1975301889664154],[335675405,268435457,-1975303130040923,-1975301889664154],[335675405,268435460,1975301889664154,1975303130040923],[335675405,268566537,-1975303130040923,-1975301889664154],[335675405,268566540,1975301889664154,1975303130040923],[335675406,67108866,-1975303130040923,-1975301889664154],[335675406,67108868,-4648500367050864,-4648499057538562],[335675406,67108872,6623801102928978,6623803341365525],[335675406,67239942,-6623803341365525,-6623801102928978],[335675406,67239946,4648499057538562,4648500367050864],[335675406,67239948,1975301889664154,1975303130040923],[335675406,268435458,1975301889664154,1975303130040923],[335675406,268435460,4648499057538562,4648500367050864],[335675406,268435464,-6623803341365525,-6623801102928978],[335675406,268566534,6623801102928978,6623803341365525],[335675406,268566538,-4648500367050864,-4648499057538562],[335675406,268566540,-1975303130040923,-1975301889664154],[335675456,655552,-28470513144585146,-28470509652297966],[335675456,67108938,4648499019397906,4648500405191522],[335675456,67109064,1975301824995317,1975303194709763],[335675456,67239946,-4648500405191522,-4648499019397906],[335675456,67240072,-1975303194709763,-1975301824995317],[335675456,67633344,8599101184095716,8599108279903872],[335675456,67764352,19871404864681274,19871408468202250],[335675456,268435530,-4648500405191522,-4648499019397906],[335675456,268435656,-1975303194709763,-1975301824995317],[335675456,268566538,4648499019397906,4648500405191522],[335675456,268566664,1975301824995317,1975303194709763],[335675456,268959936,19871404864681274,19871408468202250],[335675456,269090944,8599101184095716,8599108279903872],[335675456,336068736,-28470513144585146,-28470509652297966],[335675466,67108866,-4648500405191522,-4648499019397906],[335675466,67108928,4648499019397906,4648500405191522],[335675466,67239946,-4648500405191522,-4648499019397906],[335675466,67240008,4648499019397906,4648500405191522],[335675466,268435458,4648499019397906,4648500405191522],[335675466,268435520,-4648500405191522,-4648499019397906],[335675466,268566538,4648499019397906,4648500405191522],[335675466,268566600,-4648500405191522,-4648499019397906],[335675520,0,33237389263734506,33237396093570758],[335675520,131200,20569295987453940,20569306730608851],[335675520,524296,-35792211597603263,-35792205028753624],[335675520,557056,-39742815119133304,-39742811546633741],[335675520,655496,56941019193503222,56941026400262994],[335675520,655552,28470509652297966,28470513144585146],[335675520,656512,28470509608204269,28470513188678840],[335675520,1704064,22544602323661876,22544605414105996],[335675520,67108992,20569290559759355,20569312158303430],[335675520,67109002,-4648500405191522,-4648499019397906],[335675520,67109004,-1975303134066535,-1975301885638543],[335675520,67109064,-1975303194709763,-1975301824995317],[335675520,67110024,-4648500367937248,-4648499056652179],[335675520,67141768,6623801098016984,6623803346277521],[335675520,67239936,-7901216811716128,-7901203267104184],[335675520,67239946,4648499019397906,4648500405191522],[335675520,67239948,1975301885638543,1975303134066535],[335675520,67240008,1975301824995317,1975303194709763],[335675520,67240968,4648499056652179,4648500367937248],[335675520,67272712,-6623803346277521,-6623801098016984],[335675520,67633288,-79485635001138468,-79485618330395612],[335675520,67633344,-8599108279903872,-8599101184095716],[335675520,67634304,-8599108313708112,-8599101150291472],[335675520,67666048,-17896106405970981,-17896101907207464],[335675520,67764232,-13247611779979171,-13247597108609852],[335675520,67764288,-19871408468202250,-19871404864681274],[335675520,67765248,-19871408457912797,-19871404874970728],[335675520,67796992,-21846713211925840,-21846705140662760],[335675520,68681856,-24519909474570990,-24519903282901962],[335675520,68812800,1975300959240086,1975304060464994],[335675520,134217736,4648499056652180,4648500367937249],[335675520,134348936,4648499056652180,4648500367937249],[335675520,134742016,8599102944480312,8599106519519277],[335675520,134873216,-42416014569192714,-42416006501458678],[335675520,201851008,51015113020977955,51015117513673026],[335675520,268435584,-7901216811716128,-7901203267104184],[335675520,268435594,4648499019397906,4648500405191522],[335675520,268435596,1975301885638543,1975303134066535],[335675520,268435656,1975301824995317,1975303194709763],[335675520,268436616,4648499056652179,4648500367937248],[335675520,268468360,-6623803346277521,-6623801098016984],[335675520,268566528,20569290559759355,20569312158303430],[335675520,268566538,-4648500405191522,-4648499019397906],[335675520,268566540,-1975303134066535,-1975301885638543],[335675520,268566600,-1975303194709763,-1975301824995317],[335675520,268567560,-4648500367937248,-4648499056652179],[335675520,268599304,6623801098016984,6623803346277521],[335675520,268959880,-13247611779979171,-13247597108609852],[335675520,268959936,-19871408468202250,-19871404864681274],[335675520,268960896,-19871408457912797,-19871404874970728],[335675520,268992640,-21846713211925840,-21846705140662760],[335675520,269090824,-79485635001138468,-79485618330395612],[335675520,269090880,-8599108279903872,-8599101184095716],[335675520,269091840,-8599108313708112,-8599101150291472],[335675520,269123584,-17896106405970981,-17896101907207464],[335675520,270008448,1975300959240086,1975304060464994],[335675520,270139392,-24519909474570990,-24519903282901962],[335675520,335544320,20569295987453940,20569306730608851],[335675520,335675520,33237389263734506,33237396093570758],[335675520,336068616,56941019193503222,56941026400262994],[335675520,336068672,28470509652297966,28470513144585146],[335675520,336069632,28470509608204269,28470513188678840],[335675520,336199816,-35792211597603263,-35792205028753624],[335675520,336232576,-39742815119133304,-39742811546633741],[335675520,337117184,22544602323661876,22544605414105996],[335675520,403308544,51015113020977955,51015117513673026],[335675520,469762056,4648499056652180,4648500367937249],[335675520,469893256,4648499056652180,4648500367937249],[335675520,470286336,-42416014569192714,-42416006501458678],[335675520,470417536,8599102944480312,8599106519519277],[335675520,1073741832,-4648500367937249,-4648499056652180],[335675520,1073873032,-4648500367937249,-4648499056652180],[335675520,1074266112,31143705027114464,31143712174652992],[335675520,1074397312,-8599106519519277,-8599102944480312],[335675520,1141506048,39742811546633741,39742815119133304],[335675520,1342701696,39742811546633741,39742815119133304],[335675520,1409286152,-4648500367937249,-4648499056652180],[335675520,1409417352,-4648500367937249,-4648499056652180],[335675520,1409810432,-8599106519519277,-8599102944480312],[335675520,1409941632,31143705027114464,31143712174652992],[335675520,17592186044424,-1975303200228061,-1975301819477018],[335675520,17592186175624,-1975303200228061,-1975301819477018],[335675520,17592186568704,-7321700748173631,-7321693081300137],[335675520,17592186699904,-47064512160515549,-47064508334725266],[335675520,17592253808640,39742811412341918,39742815253425129],[335675520,17592455004288,39742811412341918,39742815253425129],[335675520,17592521588744,-1975303200228061,-1975301819477018],[335675520,17592521719944,-1975303200228061,-1975301819477018],[335675520,17592522113024,-47064512160515549,-47064508334725266],[335675520,17592522244224,-7321700748173631,-7321693081300137],[335675520,35184372088840,1975301819477018,1975303200228061],[335675520,35184372220040,1975301819477018,1975303200228061],[335675520,35184372613120,47064508334725266,47064512160515549],[335675520,35184372744320,16618691985372593,16618700693280031],[335675520,35184439722112,30445811467235518,30445816349352673],[335675520,35184641179648,30445811467235518,30445816349352673],[335675520,35184707633160,1975301819477018,1975303200228061],[335675520,35184707764360,1975301819477018,1975303200228061],[335675520,35184708157440,16618691985372593,16618700693280031],[335675520,35184708288640,47064508334725266,47064512160515549],[335675530,67108866,-1975303194709763,-1975301824995317],[335675530,67108872,6623801015151933,6623803429142575],[335675530,67108992,-4648500405191522,-4648499019397906],[335675530,67239946,4648499019397906,4648500405191522],[335675530,67240066,-6623803429142575,-6623801015151933],[335675530,67240072,1975301824995317,1975303194709763],[335675530,268435458,1975301824995317,1975303194709763],[335675530,268435464,-6623803429142575,-6623801015151933],[335675530,268435584,4648499019397906,4648500405191522],[335675530,268566538,-4648500405191522,-4648499019397906],[335675530,268566658,6623801015151933,6623803429142575],[335675530,268566664,-1975303194709763,-1975301824995317],[335675532,67108868,-4648500367937248,-4648499056652179],[335675532,67108872,6623801098016984,6623803346277521],[335675532,67108992,-1975303134066535,-1975301885638543],[335675532,67239948,1975301885638543,1975303134066535],[335675532,67240068,-6623803346277521,-6623801098016984],[335675532,67240072,4648499056652179,4648500367937248],[335675532,268435460,4648499056652179,4648500367937248],[335675532,268435464,-6623803346277521,-6623801098016984],[335675532,268435584,1975301885638543,1975303134066535],[335675532,268566540,-1975303134066535,-1975301885638543],[335675532,268566660,6623801098016984,6623803346277521],[335675532,268566664,-4648500367937248,-4648499056652179],[335675592,67108928,1975301824995317,1975303194709763],[335675592,67108992,-1975303194709763,-1975301824995317],[335675592,67240008,1975301824995317,1975303194709763],[335675592,67240072,-1975303194709763,-1975301824995317],[335675592,268435520,-1975303194709763,-1975301824995317],[335675592,268435584,1975301824995317,1975303194709763],[335675592,268566600,-1975303194709763,-1975301824995317],[335675592,268566664,1975301824995317,1975303194709763],[335676416,656512,-28470513188678840,-28470509608204269],[335676416,1704960,-18594000555019592,-18593997143338122],[335676416,67110024,4648499056652179,4648500367937248],[335676416,67240072,-4648500367937248,-4648499056652179],[335676416,67634304,8599101150291472,8599108313708112],[335676416,67764352,19871404874970728,19871408457912797],[335676416,68682752,-3950608433100829,-3950601606309328],[335676416,68812800,22544602161328920,22544605576438951],[335676416,135398400,13247603826989498,13247605061599516],[335676416,202376192,-13247605061599516,-13247603826989498],[335676416,268436616,-4648500367937248,-4648499056652179],[335676416,268566664,4648499056652179,4648500367937248],[335676416,268960896,19871404874970728,19871408457912797],[335676416,269090944,8599101150291472,8599108313708112],[335676416,270009344,22544602161328920,22544605576438951],[335676416,270139392,-3950608433100829,-3950601606309328],[335676416,336068736,-28470513188678840,-28470509608204269],[335676416,337117184,-18594000555019592,-18593997143338122],[335676416,403832832,-13247605061599516,-13247603826989498],[335676416,470810624,13247603826989498,13247605061599516],[335676552,67108992,-4648500367937248,-4648499056652179],[335676552,67109888,4648499056652179,4648500367937248],[335676552,67240072,-4648500367937248,-4648499056652179],[335676552,67240968,4648499056652179,4648500367937248],[335676552,268435584,4648499056652179,4648500367937248],[335676552,268436480,-4648500367937248,-4648499056652179],[335676552,268566664,4648499056652179,4648500367937248],[335676552,268567560,-4648500367937248,-4648499056652179],[335708160,524292,-45089208967216020,-45089206508319720],[335708160,524296,31841601906990784,31841604679955942],[335708160,688132,-18594000555019592,-18593997143338122],[335708160,688136,22544602323661876,22544605414105996],[335708160,688256,-1975303134066536,-1975301885638544],[335708160,67141644,28470509674673669,28470513122209439],[335708160,67239948,-28470513122209439,-28470509674673669],[335708160,67665924,-2178588643,2178588646],[335708160,67665928,-1975304719493192,-1975300300211890],[335708160,67666048,-11272303056635485,-11272300812248450],[335708160,67764228,-26495209977993164,-26495207799184865],[335708160,67764232,11272299879110672,11272303989773264],[335708160,67764352,13247603792440361,13247605096148654],[335708160,134217732,-1975303102434961,-1975301917270118],[335708160,134217736,1975301917270118,1975303102434961],[335708160,134381572,-1975303102434961,-1975301917270118],[335708160,134381576,1975301917270118,1975303102434961],[335708160,268468236,-28470513122209439,-28470509674673669],[335708160,268566540,28470509674673669,28470513122209439],[335708160,268992516,-26495209977993164,-26495207799184865],[335708160,268992520,11272299879110672,11272303989773264],[335708160,268992640,13247603792440361,13247605096148654],[335708160,269090820,-2178588643,2178588646],[335708160,269090824,-1975304719493192,-1975300300211890],[335708160,269090944,-11272303056635485,-11272300812248450],[335708160,336068612,-18594000555019592,-18593997143338122],[335708160,336068616,22544602323661876,22544605414105996],[335708160,336068736,-1975303134066536,-1975301885638544],[335708160,336232452,-45089208967216020,-45089206508319720],[335708160,336232456,31841601906990784,31841604679955942],[335708160,469762052,-1975303102434961,-1975301917270118],[335708160,469762056,1975301917270118,1975303102434961],[335708160,469925892,-1975303102434961,-1975301917270118],[335708160,469925896,1975301917270118,1975303102434961],[335708160,1073741828,1975301917270118,1975303102434961],[335708160,1073741832,-3950606232496514,-3950603806913643],[335708160,1073905668,15222905744259616,15222908164034477],[335708160,1073905672,-1975303102434961,-1975301917270118],[335708160,1140883460,-52990419943081622,-52990415611274431],[335708160,1140883464,51015113107831353,51015117426819622],[335708160,1140981764,39742811633487139,39742815032279900],[335708160,1140981768,-52990419943081622,-52990415611274431],[335708160,1342210052,39742811633487139,39742815032279900],[335708160,1342210056,-52990419943081622,-52990415611274431],[335708160,1342308356,-52990419943081622,-52990415611274431],[335708160,1342308360,51015113107831353,51015117426819622],[335708160,1409286148,15222905744259616,15222908164034477],[335708160,1409286152,-1975303102434961,-1975301917270118],[335708160,1409449988,1975301917270118,1975303102434961],[335708160,1409449992,-3950606232496514,-3950603806913643],[335708160,17592186044420,22544603239782766,22544604497985104],[335708160,17592186044424,-22544604497985104,-22544603239782766],[335708160,17592186208260,22544603239782766,22544604497985104],[335708160,17592186208264,-22544604497985104,-22544603239782766],[335708160,17592521588740,22544603239782766,22544604497985104],[335708160,17592521588744,-22544604497985104,-22544603239782766],[335708160,17592521752580,22544603239782766,22544604497985104],[335708160,17592521752584,-22544604497985104,-22544603239782766],[335708160,35184372088836,-22544604497985104,-22544603239782766],[335708160,35184372088840,22544603239782766,22544604497985104],[335708160,35184372252676,-22544604497985104,-22544603239782766],[335708160,35184372252680,22544603239782766,22544604497985104],[335708160,35184707633156,-22544604497985104,-22544603239782766],[335708160,35184707633160,22544603239782766,22544604497985104],[335708160,35184707796996,-22544604497985104,-22544603239782766],[335708160,35184707797000,22544603239782766,22544604497985104],[335708165,67108865,-13247605061578886,-13247603827010127],[335708165,67108868,13247603827010127,13247605061578886],[335708165,67272705,-13247605061578886,-13247603827010127],[335708165,67272708,13247603827010127,13247605061578886],[335708165,268435457,13247603827010127,13247605061578886],[335708165,268435460,-13247605061578886,-13247603827010127],[335708165,268599297,13247603827010127,13247605061578886],[335708165,268599300,-13247605061578886,-13247603827010127],[335708170,67108866,13247603827010127,13247605061578886],[335708170,67108872,-13247605061578886,-13247603827010127],[335708170,67272706,13247603827010127,13247605061578886],[335708170,67272712,-13247605061578886,-13247603827010127],[335708170,268435458,-13247605061578886,-13247603827010127],[335708170,268435464,13247603827010127,13247605061578886],[335708170,268599298,-13247605061578886,-13247603827010127],[335708170,268599304,13247603827010127,13247605061578886],[335708172,67108868,22544601452067054,22544606285700820],[335708172,67108872,-26495210066338854,-26495207710839176],[335708172,67141632,3950603780638034,3950606258772122],[335708172,67239948,-3950606258772122,-3950603780638034],[335708172,67272708,26495207710839176,26495210066338854],[335708172,67272712,-22544606285700820,-22544601452067054],[335708172,268435460,-22544606285700820,-22544601452067054],[335708172,268435464,26495207710839176,26495210066338854],[335708172,268468224,-3950606258772122,-3950603780638034],[335708172,268566540,3950603780638034,3950606258772122],[335708172,268599300,-26495210066338854,-26495207710839176],[335708172,268599304,22544601452067054,22544606285700820],[335708296,67108872,-13247605067077166,-13247603821511848],[335708296,67108992,13247603821511848,13247605067077166],[335708296,67272712,-13247605067077166,-13247603821511848],[335708296,67272832,13247603821511848,13247605067077166],[335708296,268435464,13247603821511848,13247605067077166],[335708296,268435584,-13247605067077166,-13247603821511848],[335708296,268599304,13247603821511848,13247605067077166],[335708296,268599424,-13247605067077166,-13247603821511848],[336068610,655370,-28470513144585146,-28470509652297966],[336068610,67109002,-1975303194709763,-1975301824995317],[336068610,67109058,-4648500405191522,-4648499019397906],[336068610,67239946,19871404864681274,19871408468202250],[336068610,67633288,1975301824995317,1975303194709763],[336068610,67633344,4648499019397906,4648500405191522],[336068610,67764232,8599101184095716,8599108279903872],[336068610,268435594,1975301824995317,1975303194709763],[336068610,268435650,4648499019397906,4648500405191522],[336068610,268566538,8599101184095716,8599108279903872],[336068610,268959880,-1975303194709763,-1975301824995317],[336068610,268959936,-4648500405191522,-4648499019397906],[336068610,269090824,19871404864681274,19871408468202250],[336068610,335675400,-28470513144585146,-28470509652297966],[336068612,655372,-28470513188678840,-28470509608204269],[336068612,688132,-18594000555019592,-18593997143338122],[336068612,67109004,-4648500367937248,-4648499056652179],[336068612,67239948,19871404874970728,19871408457912797],[336068612,67272708,22544602161328920,22544605576438951],[336068612,67633288,4648499056652179,4648500367937248],[336068612,67764232,8599101150291472,8599108313708112],[336068612,67796992,-3950608433100829,-3950601606309328],[336068612,268435596,4648499056652179,4648500367937248],[336068612,268566540,8599101150291472,8599108313708112],[336068612,268599300,-3950608433100829,-3950601606309328],[336068612,268959880,-4648500367937248,-4648499056652179],[336068612,269090824,19871404874970728,19871408457912797],[336068612,269123584,22544602161328920,22544605576438951],[336068612,335675400,-28470513188678840,-28470509608204269],[336068612,335708160,-18594000555019592,-18593997143338122],[336068612,1074298884,13247603826989498,13247605061599516],[336068612,1141407744,-13247605061599516,-13247603826989498],[336068612,1342210052,-13247605061599516,-13247603826989498],[336068612,1409318912,13247603826989498,13247605061599516],[336068616,0,33237389263734506,33237396093570758],[336068616,131200,-35792211597603263,-35792205028753624],[336068616,524296,20569295987453940,20569306730608851],[336068616,655370,28470509652297966,28470513144585146],[336068616,655372,28470509608204269,28470513188678840],[336068616,655496,56941019193503222,56941026400262994],[336068616,688136,22544602323661876,22544605414105996],[336068616,1179648,-39742815119133304,-39742811546633741],[336068616,67108872,-7901216811716128,-7901203267104184],[336068616,67109002,1975301824995317,1975303194709763],[336068616,67109004,4648499056652179,4648500367937248],[336068616,67109064,4648499019397906,4648500405191522],[336068616,67110024,1975301885638543,1975303134066535],[336068616,67239946,-19871408468202250,-19871404864681274],[336068616,67239948,-19871408457912797,-19871404874970728],[336068616,67240072,-13247611779979171,-13247597108609852],[336068616,67272712,1975300959240086,1975304060464994],[336068616,67633152,20569290559759355,20569312158303430],[336068616,67633282,-1975303194709763,-1975301824995317],[336068616,67633284,-4648500367937248,-4648499056652179],[336068616,67633344,-4648500405191522,-4648499019397906],[336068616,67634304,-1975303134066535,-1975301885638543],[336068616,67764226,-8599108279903872,-8599101184095716],[336068616,67764228,-8599108313708112,-8599101150291472],[336068616,67764352,-79485635001138468,-79485618330395612],[336068616,67796992,-24519909474570990,-24519903282901962],[336068616,68157576,-6623803346277521,-6623801098016984],[336068616,68288520,-21846713211925840,-21846705140662760],[336068616,68681856,6623801098016984,6623803346277521],[336068616,68812800,-17896106405970981,-17896101907207464],[336068616,134217856,-4648500367937249,-4648499056652180],[336068616,134348800,31143705027114464,31143712174652992],[336068616,134742152,-4648500367937249,-4648499056652180],[336068616,134873096,-8599106519519277,-8599102944480312],[336068616,201457672,39742811546633741,39742815119133304],[336068616,268435464,20569290559759355,20569312158303430],[336068616,268435594,-1975303194709763,-1975301824995317],[336068616,268435596,-4648500367937248,-4648499056652179],[336068616,268435656,-4648500405191522,-4648499019397906],[336068616,268436616,-1975303134066535,-1975301885638543],[336068616,268566538,-8599108279903872,-8599101184095716],[336068616,268566540,-8599108313708112,-8599101150291472],[336068616,268566664,-79485635001138468,-79485618330395612],[336068616,268599304,-24519909474570990,-24519903282901962],[336068616,268959744,-7901216811716128,-7901203267104184],[336068616,268959874,1975301824995317,1975303194709763],[336068616,268959876,4648499056652179,4648500367937248],[336068616,268959936,4648499019397906,4648500405191522],[336068616,268960896,1975301885638543,1975303134066535],[336068616,269090818,-19871408468202250,-19871404864681274],[336068616,269090820,-19871408457912797,-19871404874970728],[336068616,269090944,-13247611779979171,-13247597108609852],[336068616,269123584,1975300959240086,1975304060464994],[336068616,269484168,6623801098016984,6623803346277521],[336068616,269615112,-17896106405970981,-17896101907207464],[336068616,270008448,-6623803346277521,-6623801098016984],[336068616,270139392,-21846713211925840,-21846705140662760],[336068616,335544320,20569295987453940,20569306730608851],[336068616,335675394,28470509652297966,28470513144585146],[336068616,335675396,28470509608204269,28470513188678840],[336068616,335675520,56941019193503222,56941026400262994],[336068616,335708160,22544602323661876,22544605414105996],[336068616,336068616,33237389263734506,33237396093570758],[336068616,336199816,-35792211597603263,-35792205028753624],[336068616,337248264,-39742815119133304,-39742811546633741],[336068616,403308544,39742811546633741,39742815119133304],[336068616,469762176,-4648500367937249,-4648499056652180],[336068616,469893120,-8599106519519277,-8599102944480312],[336068616,470286472,-4648500367937249,-4648499056652180],[336068616,470417416,31143705027114464,31143712174652992],[336068616,1073741952,4648499056652180,4648500367937249],[336068616,1073872896,8599102944480312,8599106519519277],[336068616,1074266248,4648499056652180,4648500367937249],[336068616,1074397192,-42416014569192714,-42416006501458678],[336068616,1141506048,51015113020977955,51015117513673026],[336068616,1342308360,51015113020977955,51015117513673026],[336068616,1409286272,4648499056652180,4648500367937249],[336068616,1409417216,-42416014569192714,-42416006501458678],[336068616,1409810568,4648499056652180,4648500367937249],[336068616,1409941512,8599102944480312,8599106519519277],[336068616,17592186044544,1975301819477018,1975303200228061],[336068616,17592186175488,47064508334725266,47064512160515549],[336068616,17592186568840,1975301819477018,1975303200228061],[336068616,17592186699784,16618691985372593,16618700693280031],[336068616,17592253808640,30445811467235518,30445816349352673],[336068616,17592454610952,30445811467235518,30445816349352673],[336068616,17592521588864,1975301819477018,1975303200228061],[336068616,17592521719808,16618691985372593,16618700693280031],[336068616,17592522113160,1975301819477018,1975303200228061],[336068616,17592522244104,47064508334725266,47064512160515549],[336068616,35184372088960,-1975303200228061,-1975301819477018],[336068616,35184372219904,-7321700748173631,-7321693081300137],[336068616,35184372613256,-1975303200228061,-1975301819477018],[336068616,35184372744200,-47064512160515549,-47064508334725266],[336068616,35184439328776,39742811412341918,39742815253425129],[336068616,35184641179648,39742811412341918,39742815253425129],[336068616,35184707633280,-1975303200228061,-1975301819477018],[336068616,35184707764224,-47064512160515549,-47064508334725266],[336068616,35184708157576,-1975303200228061,-1975301819477018],[336068616,35184708288520,-7321700748173631,-7321693081300137],[336068672,131200,3950603642885640,3950606396524520],[336068672,655552,28470509652297966,28470513144585146],[336068672,67108928,4648497809818828,4648501614770600],[336068672,67109058,4648499019397906,4648500405191522],[336068672,67109064,1975301824995317,1975303194709763],[336068672,67109312,4648499057538562,4648500367050864],[336068672,67110080,1975301889664154,1975303130040923],[336068672,67240128,-6623803429142575,-6623801015151933],[336068672,67633152,-4648501614770600,-4648497809818828],[336068672,67633282,-4648500405191522,-4648499019397906],[336068672,67633288,-1975303194709763,-1975301824995317],[336068672,67633536,-4648500367050864,-4648499057538562],[336068672,67634304,-1975303130040923,-1975301889664154],[336068672,67764352,-17896106590718401,-17896101722460043],[336068672,68157632,-6623803341365525,-6623801102928978],[336068672,68681856,6623801102928978,6623803341365525],[336068672,134217856,-4648500364875210,-4648499059714221],[336068672,134742208,-4648500364875210,-4648499059714221],[336068672,268435520,-4648501614770600,-4648497809818828],[336068672,268435650,-4648500405191522,-4648499019397906],[336068672,268435656,-1975303194709763,-1975301824995317],[336068672,268435904,-4648500367050864,-4648499057538562],[336068672,268436672,-1975303130040923,-1975301889664154],[336068672,268566720,-17896106590718401,-17896101722460043],[336068672,268959744,4648497809818828,4648501614770600],[336068672,268959874,4648499019397906,4648500405191522],[336068672,268959880,1975301824995317,1975303194709763],[336068672,268960128,4648499057538562,4648500367050864],[336068672,268960896,1975301889664154,1975303130040923],[336068672,269090944,-6623803429142575,-6623801015151933],[336068672,269484224,6623801102928978,6623803341365525],[336068672,270008448,-6623803341365525,-6623801102928978],[336068672,335675520,28470509652297966,28470513144585146],[336068672,336199872,3950603642885640,3950606396524520],[336068672,469762176,-4648500364875210,-4648499059714221],[336068672,470286528,-4648500364875210,-4648499059714221],[336068672,1073741952,4648499059714221,4648500364875210],[336068672,1074266304,4648499059714221,4648500364875210],[336068672,1409286272,4648499059714221,4648500364875210],[336068672,1409810624,4648499059714221,4648500364875210],[336068672,17592186044544,1975301823150576,1975303196554503],[336068672,17592186568896,1975301823150576,1975303196554503],[336068672,17592521588864,1975301823150576,1975303196554503],[336068672,17592522113216,1975301823150576,1975303196554503],[336068672,35184372088960,-1975303196554503,-1975301823150576],[336068672,35184372613312,-1975303196554503,-1975301823150576],[336068672,35184707633280,-1975303196554503,-1975301823150576],[336068672,35184708157632,-1975303196554503,-1975301823150576],[336068736,0,11851812660075666,11851817458154814],[336068736,131080,-3950606383588294,-3950603655821866],[336068736,131136,-3950606396524520,-3950603642885640],[336068736,132096,-3950606317756372,-3950603721653790],[336068736,524416,19173508522816278,19173515424887978],[336068736,655496,-30445818898447706,-30445808918140474],[336068736,655552,-28470513144585146,-28470509652297966],[336068736,656512,-28470513188678840,-28470509608204269],[336068736,688256,-1975303134066536,-1975301885638544],[336068736,1179648,5925906055094245,5925909004020996],[336068736,1704064,17198207846590140,17198211081409034],[336068736,67108992,77936102841789496,77936150681548118],[336068736,67109064,-6623803429142575,-6623801015151933],[336068736,67110024,-6623803346277521,-6623801098016984],[336068736,67110080,-6623803341365525,-6623801102928978],[336068736,67240072,39742810183793936,39742816481973111],[336068736,67240128,6623801015151933,6623803429142575],[336068736,67241088,6623801098016984,6623803346277521],[336068736,67272832,-1975303130061553,-1975301889643525],[336068736,67633152,-85257851747913146,-85257795604898244],[336068736,67633224,6623801015151933,6623803429142575],[336068736,67634184,6623801098016984,6623803346277521],[336068736,67634240,6623801102928978,6623803341365525],[336068736,67764232,-13247611732520567,-13247597156068460],[336068736,67764288,17896101722460043,17896106590718401],[336068736,67765248,17896101912222451,17896106400955991],[336068736,67796992,3950603932147814,3950606107262344],[336068736,68157576,6623801098016984,6623803346277521],[336068736,68157632,6623801102928978,6623803341365525],[336068736,68158592,19871405028479484,19871408304404039],[336068736,68288640,8599102641942379,8599106822057209],[336068736,68681736,-6623803346277521,-6623801098016984],[336068736,68681792,-6623803341365525,-6623801102928978],[336068736,68682752,-19871408304404039,-19871405028479484],[336068736,68812800,-19871408879756524,-19871404453126997],[336068736,134217736,4648499056652180,4648500367937249],[336068736,134217792,4648499059714221,4648500364875210],[336068736,134218752,4648499087034444,4648500337554984],[336068736,134348800,-6623803529731050,-6623800914563458],[336068736,134742152,4648499056652180,4648500367937249],[336068736,134742208,4648499059714221,4648500364875210],[336068736,134743168,4648499087034444,4648500337554984],[336068736,134873216,-4648500367937249,-4648499056652180],[336068736,135266304,-4648500337554984,-4648499087034444],[336068736,135790720,-4648500337554984,-4648499087034444],[336068736,201457792,-37767513075615154,-37767508570446813],[336068736,201981952,35792206084485028,35792210541871860],[336068736,268435584,-85257851747913146,-85257795604898244],[336068736,268435656,6623801015151933,6623803429142575],[336068736,268436616,6623801098016984,6623803346277521],[336068736,268436672,6623801102928978,6623803341365525],[336068736,268566664,-13247611732520567,-13247597156068460],[336068736,268566720,17896101722460043,17896106590718401],[336068736,268567680,17896101912222451,17896106400955991],[336068736,268599424,3950603932147814,3950606107262344],[336068736,268959744,77936102841789496,77936150681548118],[336068736,268959816,-6623803429142575,-6623801015151933],[336068736,268960776,-6623803346277521,-6623801098016984],[336068736,268960832,-6623803341365525,-6623801102928978],[336068736,269090824,39742810183793936,39742816481973111],[336068736,269090880,6623801015151933,6623803429142575],[336068736,269091840,6623801098016984,6623803346277521],[336068736,269123584,-1975303130061553,-1975301889643525],[336068736,269484168,-6623803346277521,-6623801098016984],[336068736,269484224,-6623803341365525,-6623801102928978],[336068736,269485184,-19871408304404039,-19871405028479484],[336068736,269615232,-19871408879756524,-19871404453126997],[336068736,270008328,6623801098016984,6623803346277521],[336068736,270008384,6623801102928978,6623803341365525],[336068736,270009344,19871405028479484,19871408304404039],[336068736,270139392,8599102641942379,8599106822057209],[336068736,335544320,19173508522816278,19173515424887978],[336068736,335675400,-30445818898447706,-30445808918140474],[336068736,335675456,-28470513144585146,-28470509652297966],[336068736,335676416,-28470513188678840,-28470509608204269],[336068736,335708160,-1975303134066536,-1975301885638544],[336068736,336068736,11851812660075666,11851817458154814],[336068736,336199816,-3950606383588294,-3950603655821866],[336068736,336199872,-3950606396524520,-3950603642885640],[336068736,336200832,-3950606317756372,-3950603721653790],[336068736,336723968,17198207846590140,17198211081409034],[336068736,337248384,5925906055094245,5925909004020996],[336068736,402784384,35792206084485028,35792210541871860],[336068736,403308544,-37767513075615154,-37767508570446813],[336068736,469762056,4648499056652180,4648500367937249],[336068736,469762112,4648499059714221,4648500364875210],[336068736,469763072,4648499087034444,4648500337554984],[336068736,469893120,-4648500367937249,-4648499056652180],[336068736,470286472,4648499056652180,4648500367937249],[336068736,470286528,4648499059714221,4648500364875210],[336068736,470287488,4648499087034444,4648500337554984],[336068736,470417536,-6623803529731050,-6623800914563458],[336068736,470810624,-4648500337554984,-4648499087034444],[336068736,471335040,-4648500337554984,-4648499087034444],[336068736,1073741832,-4648500367937249,-4648499056652180],[336068736,1073741888,-4648500364875210,-4648499059714221],[336068736,1073742848,-4648500337554984,-4648499087034444],[336068736,1073872896,4648499056652180,4648500367937249],[336068736,1074266248,-4648500367937249,-4648499056652180],[336068736,1074266304,-4648500364875210,-4648499059714221],[336068736,1074267264,-4648500337554984,-4648499087034444],[336068736,1074397312,17896102849092541,17896105464085903],[336068736,1074790400,4648499087034444,4648500337554984],[336068736,1075314816,4648499087034444,4648500337554984],[336068736,1140981888,24519904610140814,24519908147332138],[336068736,1141506048,-37767513075615154,-37767508570446813],[336068736,1275068544,6623801172992632,6623803271301876],[336068736,1275592704,-6623803271301876,-6623801172992632],[336068736,1342308480,-37767513075615154,-37767508570446813],[336068736,1342832640,24519904610140814,24519908147332138],[336068736,1409286152,-4648500367937249,-4648499056652180],[336068736,1409286208,-4648500364875210,-4648499059714221],[336068736,1409287168,-4648500337554984,-4648499087034444],[336068736,1409417216,17896102849092541,17896105464085903],[336068736,1409810568,-4648500367937249,-4648499056652180],[336068736,1409810624,-4648500364875210,-4648499059714221],[336068736,1409811584,-4648500337554984,-4648499087034444],[336068736,1409941632,4648499056652180,4648500367937249],[336068736,1410334720,4648499087034444,4648500337554984],[336068736,1410859136,4648499087034444,4648500337554984],[336068736,1476395136,-6623803271301876,-6623801172992632],[336068736,1476919296,6623801172992632,6623803271301876],[336068736,17592186044424,-1975303200228061,-1975301819477018],[336068736,17592186044480,-1975303196554503,-1975301823150576],[336068736,17592186045440,-1975303167312100,-1975301852392980],[336068736,17592186175488,1975301819477018,1975303200228061],[336068736,17592186568840,-1975303200228061,-1975301819477018],[336068736,17592186568896,-1975303196554503,-1975301823150576],[336068736,17592186569856,-1975303167312100,-1975301852392980],[336068736,17592186699904,15222905573753978,15222908334540116],[336068736,17592187092992,1975301852392980,1975303167312100],[336068736,17592187617408,1975301852392980,1975303167312100],[336068736,17592253284480,39742811412341918,39742815253425129],[336068736,17592253808640,-52990420219871546,-52990415334484516],[336068736,17592387371136,-11272303070687196,-11272300798196740],[336068736,17592387895296,11272300798196740,11272303070687196],[336068736,17592454611072,-52990420219871546,-52990415334484516],[336068736,17592455135232,39742811412341918,39742815253425129],[336068736,17592521588744,-1975303200228061,-1975301819477018],[336068736,17592521588800,-1975303196554503,-1975301823150576],[336068736,17592521589760,-1975303167312100,-1975301852392980],[336068736,17592521719808,15222905573753978,15222908334540116],[336068736,17592522113160,-1975303200228061,-1975301819477018],[336068736,17592522113216,-1975303196554503,-1975301823150576],[336068736,17592522114176,-1975303167312100,-1975301852392980],[336068736,17592522244224,1975301819477018,1975303200228061],[336068736,17592522637312,1975301852392980,1975303167312100],[336068736,17592523161728,1975301852392980,1975303167312100],[336068736,17592588697728,11272300798196740,11272303070687196],[336068736,17592589221888,-11272303070687196,-11272300798196740],[336068736,17593326895232,11272300798196740,11272303070687196],[336068736,17593327419392,-11272303070687196,-11272300798196740],[336068736,17593528221824,-11272303070687196,-11272300798196740],[336068736,17593528745984,11272300798196740,11272303070687196],[336068736,35184372088840,1975301819477018,1975303200228061],[336068736,35184372088896,1975301823150576,1975303196554503],[336068736,35184372089856,1975301852392980,1975303167312100],[336068736,35184372219904,-24519907748637518,-24519905008835432],[336068736,35184372613256,1975301819477018,1975303200228061],[336068736,35184372613312,1975301823150576,1975303196554503],[336068736,35184372614272,1975301852392980,1975303167312100],[336068736,35184372744320,-1975303200228061,-1975301819477018],[336068736,35184373137408,-1975303167312100,-1975301852392980],[336068736,35184373661824,-1975303167312100,-1975301852392980],[336068736,35184439328896,-52990420219871546,-52990415334484516],[336068736,35184439853056,30445811467235518,30445816349352673],[336068736,35184573415552,11272300798196740,11272303070687196],[336068736,35184573939712,-11272303070687196,-11272300798196740],[336068736,35184640655488,30445811467235518,30445816349352673],[336068736,35184641179648,-52990420219871546,-52990415334484516],[336068736,35184707633160,1975301819477018,1975303200228061],[336068736,35184707633216,1975301823150576,1975303196554503],[336068736,35184707634176,1975301852392980,1975303167312100],[336068736,35184707764224,-1975303200228061,-1975301819477018],[336068736,35184708157576,1975301819477018,1975303200228061],[336068736,35184708157632,1975301823150576,1975303196554503],[336068736,35184708158592,1975301852392980,1975303167312100],[336068736,35184708288640,-24519907748637518,-24519905008835432],[336068736,35184708681728,-1975303167312100,-1975301852392980],[336068736,35184709206144,-1975303167312100,-1975301852392980],[336068736,35184774742144,-11272303070687196,-11272300798196740],[336068736,35184775266304,11272300798196740,11272303070687196],[336068736,35185512939648,-11272303070687196,-11272300798196740],[336068736,35185513463808,11272300798196740,11272303070687196],[336068736,35185714266240,11272300798196740,11272303070687196],[336068736,35185714790400,-11272303070687196,-11272300798196740],[336068736,52776625242240,-49039814562449270,-49039810952496628],[336068736,52776625766400,49039810952496628,49039814562449270],[336068736,52776826568832,49039810952496628,49039814562449270],[336068736,52776827092992,-49039814562449270,-49039810952496628],[336068746,67108866,-1975303194709763,-1975301824995317],[336068746,67108872,1975301824995317,1975303194709763],[336068746,67633282,-1975303194709763,-1975301824995317],[336068746,67633288,1975301824995317,1975303194709763],[336068746,268435458,1975301824995317,1975303194709763],[336068746,268435464,-1975303194709763,-1975301824995317],[336068746,268959874,1975301824995317,1975303194709763],[336068746,268959880,-1975303194709763,-1975301824995317],[336068748,67108868,-4648500367937248,-4648499056652179],[336068748,67108872,4648499056652179,4648500367937248],[336068748,67633284,-4648500367937248,-4648499056652179],[336068748,67633288,4648499056652179,4648500367937248],[336068748,268435460,4648499056652179,4648500367937248],[336068748,268435464,-4648500367937248,-4648499056652179],[336068748,268959876,4648499056652179,4648500367937248],[336068748,268959880,-4648500367937248,-4648499056652179],[336068802,67108866,-4648500405191522,-4648499019397906],[336068802,67108928,4648499019397906,4648500405191522],[336068802,67633282,-4648500405191522,-4648499019397906],[336068802,67633344,4648499019397906,4648500405191522],[336068802,268435458,4648499019397906,4648500405191522],[336068802,268435520,-4648500405191522,-4648499019397906],[336068802,268959874,4648499019397906,4648500405191522],[336068802,268959936,-4648500405191522,-4648499019397906],[336068808,67108872,4648499019397906,4648500405191522],[336068808,67108928,1975301824995317,1975303194709763],[336068808,67108992,-6623803429142575,-6623801015151933],[336068808,67633224,6623801015151933,6623803429142575],[336068808,67633288,-1975303194709763,-1975301824995317],[336068808,67633344,-4648500405191522,-4648499019397906],[336068808,268435464,-4648500405191522,-4648499019397906],[336068808,268435520,-1975303194709763,-1975301824995317],[336068808,268435584,6623801015151933,6623803429142575],[336068808,268959816,-6623803429142575,-6623801015151933],[336068808,268959880,1975301824995317,1975303194709763],[336068808,268959936,4648499019397906,4648500405191522],[336068864,67109312,-4648500367050864,-4648499057538562],[336068864,67110272,-1975303130040923,-1975301889664154],[336068864,67633344,4648499057538562,4648500367050864],[336068864,67634304,1975301889664154,1975303130040923],[336068864,68158720,13247603827010127,13247605061578886],[336068864,68682752,-13247605061578886,-13247603827010127],[336068864,268435904,4648499057538562,4648500367050864],[336068864,268436864,1975301889664154,1975303130040923],[336068864,268959936,-4648500367050864,-4648499057538562],[336068864,268960896,-1975303130040923,-1975301889664154],[336068864,269485312,-13247605061578886,-13247603827010127],[336068864,270009344,13247603827010127,13247605061578886],[336069056,67108928,4648499057538562,4648500367050864],[336069056,67109120,-4648500367050864,-4648499057538562],[336069056,67633344,4648499057538562,4648500367050864],[336069056,67633536,-4648500367050864,-4648499057538562],[336069056,268435520,-4648500367050864,-4648499057538562],[336069056,268435712,4648499057538562,4648500367050864],[336069056,268959936,-4648500367050864,-4648499057538562],[336069056,268960128,4648499057538562,4648500367050864],[336069632,131200,3950603721653790,3950606317756372],[336069632,656512,28470509608204269,28470513188678840],[336069632,1179648,45089206508319720,45089208967216020],[336069632,1704960,18593997143338122,18594000555019592],[336069632,67109888,-8599108093729955,-8599101370269630],[336069632,67110024,4648499056652179,4648500367937248],[336069632,67110080,4648499057538562,4648500367050864],[336069632,67110272,1975301889664154,1975303130040923],[336069632,67112064,1975301885638543,1975303134066535],[336069632,67241088,-6623803346277521,-6623801098016984],[336069632,67633152,8599101370269630,8599108093729955],[336069632,67633288,-4648500367937248,-4648499056652179],[336069632,67633344,-4648500367050864,-4648499057538562],[336069632,67633536,-1975303130040923,-1975301889664154],[336069632,67635328,-1975303134066535,-1975301885638543],[336069632,67764352,-17896106400955991,-17896101912222451],[336069632,68158592,8599101370269630,8599108093729955],[336069632,68158720,-13247605061578886,-13247603827010127],[336069632,68160512,-13247605067077166,-13247603821511848],[336069632,68289536,26495207799184865,26495209977993164],[336069632,68681856,-8599108093729955,-8599101370269630],[336069632,68681984,13247603827010127,13247605061578886],[336069632,68683776,13247603821511848,13247605067077166],[336069632,68812800,-2178588646,2178588643],[336069632,70255616,-13247605061713792,-13247603826875223],[336069632,70778880,13247603826875223,13247605061713792],[336069632,134217856,-4648500337554984,-4648499087034444],[336069632,134743168,-4648500337554984,-4648499087034444],[336069632,135266304,-1975303102434961,-1975301917270118],[336069632,135791616,-15222908164034477,-15222905744259616],[336069632,202376192,-26495210121498808,-26495207655679218],[336069632,202899456,39742811633466510,39742815032300530],[336069632,268436480,8599101370269630,8599108093729955],[336069632,268436616,-4648500367937248,-4648499056652179],[336069632,268436672,-4648500367050864,-4648499057538562],[336069632,268436864,-1975303130040923,-1975301889664154],[336069632,268438656,-1975303134066535,-1975301885638543],[336069632,268567680,-17896106400955991,-17896101912222451],[336069632,268959744,-8599108093729955,-8599101370269630],[336069632,268959880,4648499056652179,4648500367937248],[336069632,268959936,4648499057538562,4648500367050864],[336069632,268960128,1975301889664154,1975303130040923],[336069632,268961920,1975301885638543,1975303134066535],[336069632,269090944,-6623803346277521,-6623801098016984],[336069632,269485184,-8599108093729955,-8599101370269630],[336069632,269485312,13247603827010127,13247605061578886],[336069632,269487104,13247603821511848,13247605067077166],[336069632,269616128,-2178588646,2178588643],[336069632,270008448,8599101370269630,8599108093729955],[336069632,270008576,-13247605061578886,-13247603827010127],[336069632,270010368,-13247605067077166,-13247603821511848],[336069632,270139392,26495207799184865,26495209977993164],[336069632,271582208,13247603826875223,13247605061713792],[336069632,272105472,-13247605061713792,-13247603826875223],[336069632,335675520,28470509608204269,28470513188678840],[336069632,336200832,3950603721653790,3950606317756372],[336069632,336723968,18593997143338122,18594000555019592],[336069632,337249280,45089206508319720,45089208967216020],[336069632,403702784,39742811633466510,39742815032300530],[336069632,404226048,-26495210121498808,-26495207655679218],[336069632,469762176,-4648500337554984,-4648499087034444],[336069632,470287488,-4648500337554984,-4648499087034444],[336069632,470810624,-15222908164034477,-15222905744259616],[336069632,471335936,-1975303102434961,-1975301917270118],[336069632,1073741952,4648499087034444,4648500337554984],[336069632,1074267264,4648499087034444,4648500337554984],[336069632,1074790400,1975301917270118,1975303102434961],[336069632,1075315712,1975301917270118,1975303102434961],[336069632,1409286272,4648499087034444,4648500337554984],[336069632,1409811584,4648499087034444,4648500337554984],[336069632,1410334720,1975301917270118,1975303102434961],[336069632,1410860032,1975301917270118,1975303102434961],[336069632,17592186044544,1975301852392980,1975303167312100],[336069632,17592186569856,1975301852392980,1975303167312100],[336069632,17592187092992,22544603239782766,22544604497985104],[336069632,17592187618304,22544603239782766,22544604497985104],[336069632,17592521588864,1975301852392980,1975303167312100],[336069632,17592522114176,1975301852392980,1975303167312100],[336069632,17592522637312,22544603239782766,22544604497985104],[336069632,17592523162624,22544603239782766,22544604497985104],[336069632,35184372088960,-1975303167312100,-1975301852392980],[336069632,35184372614272,-1975303167312100,-1975301852392980],[336069632,35184373137408,-22544604497985104,-22544603239782766],[336069632,35184373662720,-22544604497985104,-22544603239782766],[336069632,35184707633280,-1975303167312100,-1975301852392980],[336069632,35184708158592,-1975303167312100,-1975301852392980],[336069632,35184708681728,-22544604497985104,-22544603239782766],[336069632,35184709207040,-22544604497985104,-22544603239782766],[336069768,67108872,1975301885638543,1975303134066535],[336069768,67108992,-6623803346277521,-6623801098016984],[336069768,67109888,4648499056652179,4648500367937248],[336069768,67633288,-4648500367937248,-4648499056652179],[336069768,67634184,6623801098016984,6623803346277521],[336069768,67634304,-1975303134066535,-1975301885638543],[336069768,268435464,-1975303134066535,-1975301885638543],[336069768,268435584,6623801098016984,6623803346277521],[336069768,268436480,-4648500367937248,-4648499056652179],[336069768,268959880,4648499056652179,4648500367937248],[336069768,268960776,-6623803346277521,-6623801098016984],[336069768,268960896,1975301885638543,1975303134066535],[336069824,67108928,1975301889664154,1975303130040923],[336069824,67108992,-6623803341365525,-6623801102928978],[336069824,67109888,4648499057538562,4648500367050864],[336069824,67633344,-4648500367050864,-4648499057538562],[336069824,67634240,6623801102928978,6623803341365525],[336069824,67634304,-1975303130040923,-1975301889664154],[336069824,268435520,-1975303130040923,-1975301889664154],[336069824,268435584,6623801102928978,6623803341365525],[336069824,268436480,-4648500367050864,-4648499057538562],[336069824,268959936,4648499057538562,4648500367050864],[336069824,268960832,-6623803341365525,-6623801102928978],[336069824,268960896,1975301889664154,1975303130040923],[336070016,67109120,-1975303130040923,-1975301889664154],[336070016,67109888,1975301889664154,1975303130040923],[336070016,67633536,-1975303130040923,-1975301889664154],[336070016,67634304,1975301889664154,1975303130040923],[336070016,268435712,1975301889664154,1975303130040923],[336070016,268436480,-1975303130040923,-1975301889664154],[336070016,268960128,1975301889664154,1975303130040923],[336070016,268960896,-1975303130040923,-1975301889664154],[336070656,67112064,-1975303134066535,-1975301885638543],[336070656,67634304,1975301885638543,1975303134066535],[336070656,68160512,13247603821511848,13247605067077166],[336070656,68682752,-13247605067077166,-13247603821511848],[336070656,70256640,13247603826875223,13247605061713792],[336070656,70778880,-13247605061713792,-13247603826875223],[336070656,268438656,1975301885638543,1975303134066535],[336070656,268960896,-1975303134066535,-1975301885638543],[336070656,269487104,-13247605067077166,-13247603821511848],[336070656,270009344,13247603821511848,13247605067077166],[336070656,271583232,-13247605061713792,-13247603826875223],[336070656,272105472,13247603826875223,13247605061713792],[336071808,67109888,1975301885638543,1975303134066535],[336071808,67110912,-1975303134066535,-1975301885638543],[336071808,67634304,1975301885638543,1975303134066535],[336071808,67635328,-1975303134066535,-1975301885638543],[336071808,268436480,-1975303134066535,-1975301885638543],[336071808,268437504,1975301885638543,1975303134066535],[336071808,268960896,-1975303134066535,-1975301885638543],[336071808,268961920,1975301885638543,1975303134066535],[336101376,131200,-24519908147332138,-24519904610140814],[336101376,688132,18593997143338122,18594000555019592],[336101376,688136,17198207846590140,17198211081409034],[336101376,67272708,-22544605576438951,-22544602161328920],[336101376,67272712,-13247606060429303,-13247602828159713],[336101376,67272832,11272297936924019,11272305931959916],[336101376,67764228,3950601606309328,3950608433100829],[336101376,67764232,-3950608253249321,-3950601786160837],[336101376,67764352,-35792210542100730,-35792206084256157],[336101376,268599300,3950601606309328,3950608433100829],[336101376,268599304,-3950608253249321,-3950601786160837],[336101376,268599424,-35792210542100730,-35792206084256157],[336101376,269090820,-22544605576438951,-22544602161328920],[336101376,269090824,-13247606060429303,-13247602828159713],[336101376,269090944,11272297936924019,11272305931959916],[336101376,335675396,18593997143338122,18594000555019592],[336101376,335675400,17198207846590140,17198211081409034],[336101376,336232576,-24519908147332138,-24519904610140814],[336101376,1073741952,1975301889643525,1975303130061553],[336101376,1074298884,-13247605061599516,-13247603826989498],[336101376,1140883584,1975301889643525,1975303130061553],[336101376,1141374980,13247603826989498,13247605061599516],[336101376,1342210052,13247603826989498,13247605061599516],[336101376,1342701696,1975301889643525,1975303130061553],[336101376,1409286148,-13247605061599516,-13247603826989498],[336101376,1409843328,1975301889643525,1975303130061553],[336199680,136,26495207490199320,26495210286978712],[336199680,32896,26495207586327742,26495210190850288],[336199680,688136,-49039814979929732,-49039810535016170],[336199680,1048584,26495207586327742,26495210190850288],[336199680,1704064,-49039814979929732,-49039810535016170],[336199680,67240072,-30445818782250594,-30445809034337592],[336199680,67272712,22544601642609286,22544606095158586],[336199680,67272832,3950601491169156,3950608548241002],[336199680,67633288,56941019321316304,56941026272449914],[336199680,67665928,26495204439857584,26495213337320446],[336199680,67666048,22544601642609286,22544606095158586],[336199680,68288520,3950601491169156,3950608548241002],[336199680,68288640,22544601642609286,22544606095158586],[336199680,68681736,22544601642609286,22544606095158586],[336199680,68681856,26495204439857584,26495213337320446],[336199680,134217736,-22544606473695306,-22544601264072564],[336199680,134217856,-3950606322255178,-3950603717154982],[336199680,134873096,3950603717154982,3950606322255178],[336199680,134873216,45089204212760992,45089211262774750],[336199680,201457672,-26495210190850288,-26495207586327742],[336199680,201851008,-49039814979929732,-49039810535016170],[336199680,268566664,56941019321316304,56941026272449914],[336199680,268599304,26495204439857584,26495213337320446],[336199680,268599424,22544601642609286,22544606095158586],[336199680,268959880,-30445818782250594,-30445809034337592],[336199680,268992520,22544601642609286,22544606095158586],[336199680,268992640,3950601491169156,3950608548241002],[336199680,269615112,22544601642609286,22544606095158586],[336199680,269615232,26495204439857584,26495213337320446],[336199680,270008328,3950601491169156,3950608548241002],[336199680,270008448,22544601642609286,22544606095158586],[336199680,335577096,-49039814979929732,-49039810535016170],[336199680,336199816,26495207490199320,26495210286978712],[336199680,336232576,26495207586327742,26495210190850288],[336199680,336593024,-49039814979929732,-49039810535016170],[336199680,337248264,26495207586327742,26495210190850288],[336199680,402784384,-49039814979929732,-49039810535016170],[336199680,403177480,-26495210190850288,-26495207586327742],[336199680,469762056,3950603717154982,3950606322255178],[336199680,469762176,45089204212760992,45089211262774750],[336199680,470417416,-22544606473695306,-22544601264072564],[336199680,470417536,-3950606322255178,-3950603717154982],[336199680,1073741832,-3950606322255178,-3950603717154982],[336199680,1073741952,-22544606473695306,-22544601264072564],[336199680,1074397192,45089204212760992,45089211262774750],[336199680,1074397312,3950603717154982,3950606322255178],[336199680,1140981888,-26495210190850288,-26495207586327742],[336199680,1141374984,-49039814979929732,-49039810535016170],[336199680,1342308360,-49039814979929732,-49039810535016170],[336199680,1342701696,-26495210190850288,-26495207586327742],[336199680,1409286152,45089204212760992,45089211262774750],[336199680,1409286272,3950603717154982,3950606322255178],[336199680,1409941512,-3950606322255178,-3950603717154982],[336199680,1409941632,-22544606473695306,-22544601264072564],[336199680,17592186044424,-45089209126982928,-45089206348552808],[336199680,17592186044544,18593996061574096,18594001636783608],[336199680,17592186699784,-37188001526996408,-37187993869719008],[336199680,17592186699904,45089206348552808,45089209126982928],[336199680,17592253284480,-26495210286978712,-26495207490199320],[336199680,17592253677576,-7901212478833800,-7901207599986520],[336199680,17592454610952,-7901212478833800,-7901207599986520],[336199680,17592455004288,-26495210286978712,-26495207490199320],[336199680,17592521588744,-37188001526996408,-37187993869719008],[336199680,17592521588864,45089206348552808,45089209126982928],[336199680,17592522244104,-45089209126982928,-45089206348552808],[336199680,17592522244224,18593996061574096,18594001636783608],[336199680,35184372088840,18593996061574096,18594001636783608],[336199680,35184372088960,-45089209126982928,-45089206348552808],[336199680,35184372744200,45089206348552808,45089209126982928],[336199680,35184372744320,-37188001526996408,-37187993869719008],[336199680,35184439328776,-26495210286978712,-26495207490199320],[336199680,35184439722112,-7901212478833800,-7901207599986520],[336199680,35184640655488,-7901212478833800,-7901207599986520],[336199680,35184641048584,-26495210286978712,-26495207490199320],[336199680,35184707633160,45089206348552808,45089209126982928],[336199680,35184707633280,-37188001526996408,-37187993869719008],[336199680,35184708288520,18593996061574096,18594001636783608],[336199680,35184708288640,-45089209126982928,-45089206348552808],[336199690,524290,-3950606396524520,-3950603642885640],[336199690,524296,3950603642885640,3950606396524520],[336199690,67108866,26495207525594866,26495210251583166],[336199690,67108872,-26495210251583166,-26495207525594866],[336199690,67764226,22544601129070346,22544606608697526],[336199690,67764232,-22544606608697526,-22544601129070346],[336199690,268435458,-22544606608697526,-22544601129070346],[336199690,268435464,22544601129070346,22544606608697526],[336199690,269090818,-26495210251583166,-26495207525594866],[336199690,269090824,26495207525594866,26495210251583166],[336199690,335675394,3950603642885640,3950606396524520],[336199690,335675400,-3950606396524520,-3950603642885640],[336199692,524292,-3950606317756372,-3950603721653790],[336199692,524296,3950603721653790,3950606317756372],[336199692,67108868,26495207590564460,26495210186613570],[336199692,67108872,-26495210186613570,-26495207590564460],[336199692,67764228,22544601272808088,22544606464959780],[336199692,67764232,-22544606464959780,-22544601272808088],[336199692,268435460,-22544606464959780,-22544601272808088],[336199692,268435464,22544601272808088,22544606464959780],[336199692,269090820,-26495210186613570,-26495207590564460],[336199692,269090824,26495207590564460,26495210186613570],[336199692,335675396,3950603721653790,3950606317756372],[336199692,335675400,-3950606317756372,-3950603721653790],[336199816,136,26495207490199320,26495210286978712],[336199816,131080,-3950606383588294,-3950603655821866],[336199816,131200,-35792211597603263,-35792205028753624],[336199816,524296,-35792211597603263,-35792205028753624],[336199816,524416,-3950606383588294,-3950603655821866],[336199816,655360,79485623172031080,79485630159503018],[336199816,655496,26495207501815288,26495210275362748],[336199816,67108872,-45089213226916902,-45089202248618840],[336199816,67108992,58336806002895800,58336818361228957],[336199816,67239936,-3950606388421522,-3950603650988640],[336199816,67240072,-3950606388421522,-3950603650988640],[336199816,67633152,-35792211590820525,-35792205035536364],[336199816,67633288,-35792211590820525,-35792205035536364],[336199816,67764232,-45089213226916902,-45089202248618840],[336199816,67764352,58336806002895800,58336818361228957],[336199816,268435464,58336806002895800,58336818361228957],[336199816,268435584,-45089213226916902,-45089202248618840],[336199816,268566528,-35792211590820525,-35792205035536364],[336199816,268566664,-35792211590820525,-35792205035536364],[336199816,268959744,-3950606388421522,-3950603650988640],[336199816,268959880,-3950606388421522,-3950603650988640],[336199816,269090824,58336806002895800,58336818361228957],[336199816,269090944,-45089213226916902,-45089202248618840],[336199816,335544320,26495207501815288,26495210275362748],[336199816,335544456,79485623172031080,79485630159503018],[336199816,335675400,-3950606383588294,-3950603655821866],[336199816,335675520,-35792211597603263,-35792205028753624],[336199816,336068616,-35792211597603263,-35792205028753624],[336199816,336068736,-3950606383588294,-3950603655821866],[336199816,336199680,26495207490199320,26495210286978712],[336199872,131136,-3950606396524520,-3950603642885640],[336199872,131200,3950603642885640,3950606396524520],[336199872,67108928,-22544606608697526,-22544601129070346],[336199872,67108992,22544601129070346,22544606608697526],[336199872,67764288,-26495210251583166,-26495207525594866],[336199872,67764352,26495207525594866,26495210251583166],[336199872,268435520,26495207525594866,26495210251583166],[336199872,268435584,-26495210251583166,-26495207525594866],[336199872,269090880,22544601129070346,22544606608697526],[336199872,269090944,-22544606608697526,-22544601129070346],[336199872,336068672,3950603642885640,3950606396524520],[336199872,336068736,-3950606396524520,-3950603642885640],[336200832,131200,3950603721653790,3950606317756372],[336200832,132096,-3950606317756372,-3950603721653790],[336200832,67108992,22544601272808088,22544606464959780],[336200832,67109888,-22544606464959780,-22544601272808088],[336200832,67764352,26495207590564460,26495210186613570],[336200832,67765248,-26495210186613570,-26495207590564460],[336200832,268435584,-26495210186613570,-26495207590564460],[336200832,268436480,26495207590564460,26495210186613570],[336200832,269090944,-22544606464959780,-22544601272808088],[336200832,269091840,22544601272808088,22544606464959780],[336200832,336068736,-3950606317756372,-3950603721653790],[336200832,336069632,3950603721653790,3950606317756372],[336232452,524292,-45089208967216020,-45089206508319720],[336232452,557056,45089206508319720,45089208967216020],[336232452,67108868,-3950606255704424,-3950603783705734],[336232452,67141632,3950603783705734,3950606255704424],[336232452,67764228,-49039815222920444,-49039810292025454],[336232452,67796992,49039810292025454,49039815222920444],[336232452,268435460,49039810292025454,49039815222920444],[336232452,268468224,-49039815222920444,-49039810292025454],[336232452,269090820,3950603783705734,3950606255704424],[336232452,269123584,-3950606255704424,-3950603783705734],[336232452,335675396,45089206508319720,45089208967216020],[336232452,335708160,-45089208967216020,-45089206508319720],[336232456,524296,31841601906990784,31841604679955942],[336232456,557056,5925906055094245,5925909004020996],[336232456,655360,-47064513273775962,-47064507221464861],[336232456,688136,-9297000198160808,-9296998651018048],[336232456,67108872,-9297000814034204,-9296998035144653],[336232456,67141632,-21846710653152227,-21846707699436376],[336232456,67239936,42416007508284513,42416013562366883],[336232456,67272712,11272301159430178,11272302709453758],[336232456,67633152,-1975304058435710,-1975300961269370],[336232456,67665928,4648493659097978,4648505765491449],[336232456,67764232,15920798695415380,15920804598057982],[336232456,67796992,-22544606644811289,-22544601092956580],[336232456,268435464,-22544606644811289,-22544601092956580],[336232456,268468224,15920798695415380,15920804598057982],[336232456,268566528,4648493659097978,4648505765491449],[336232456,268599304,-1975304058435710,-1975300961269370],[336232456,268959744,11272301159430178,11272302709453758],[336232456,268992520,42416007508284513,42416013562366883],[336232456,269090824,-21846710653152227,-21846707699436376],[336232456,269123584,-9297000814034204,-9296998035144653],[336232456,335544320,-9297000198160808,-9296998651018048],[336232456,335577096,-47064513273775962,-47064507221464861],[336232456,335675400,5925906055094245,5925909004020996],[336232456,335708160,31841601906990784,31841604679955942],[336232576,32896,26495207586327742,26495210190850288],[336232576,131200,-24519908147332138,-24519904610140814],[336232576,557056,-39742815119133304,-39742811546633741],[336232576,655360,35792205747120647,35792210879236240],[336232576,688256,-1975303134066536,-1975301885638544],[336232576,67108992,11272300696813670,11272303172070267],[336232576,67141632,4648499056652179,4648500367937248],[336232576,67239936,-4648500367937248,-4648499056652179],[336232576,67272832,13247603826875223,13247605061713792],[336232576,67633152,-9297001129565978,-9296997719612879],[336232576,67666048,-6623803999983306,-6623800444311202],[336232576,67764352,8599103424503113,8599106039496475],[336232576,67796992,-13247605061713792,-13247603826875223],[336232576,268435584,-13247605061713792,-13247603826875223],[336232576,268468224,8599103424503113,8599106039496475],[336232576,268566528,-6623803999983306,-6623800444311202],[336232576,268599424,-9297001129565978,-9296997719612879],[336232576,268959744,13247603826875223,13247605061713792],[336232576,268992640,-4648500367937248,-4648499056652179],[336232576,269090944,4648499056652179,4648500367937248],[336232576,269123584,11272300696813670,11272303172070267],[336232576,335544320,-1975303134066536,-1975301885638544],[336232576,335577216,35792205747120647,35792210879236240],[336232576,335675520,-39742815119133304,-39742811546633741],[336232576,336101376,-24519908147332138,-24519904610140814],[336232576,336199680,26495207586327742,26495210190850288],[336592904,655360,35792205747120647,35792210879236240],[336592904,67633288,-6623803346277523,-6623801098016986],[336592904,67764232,4648494894207522,4648504530381905],[336592904,68681856,6623801098016986,6623803346277523],[336592904,68812800,31143706348854335,31143710852913125],[336592904,134348800,-1975303130061553,-1975301889643525],[336592904,201457672,-1975303130061553,-1975301889643525],[336592904,268959880,6623801098016986,6623803346277523],[336592904,269090824,31143706348854335,31143710852913125],[336592904,270008448,-6623803346277523,-6623801098016986],[336592904,270139392,4648494894207522,4648504530381905],[336592904,337248264,35792205747120647,35792210879236240],[336592904,403832832,-1975303130061553,-1975301889643525],[336592904,470941704,-1975303130061553,-1975301889643525],[336592960,67633344,-6623803337001160,-6623801107293350],[336592960,68681856,6623801107293350,6623803337001160],[336592960,268959936,6623801107293350,6623803337001160],[336592960,270008448,-6623803337001160,-6623801107293350],[336593024,0,22544602948688428,22544604789079444],[336593024,655360,-47064513273775962,-47064507221464861],[336593024,1048704,11272301474344214,11272302394539722],[336593024,1704064,-49039814979929732,-49039810535016170],[336593024,67108992,15920798865897844,15920804427575524],[336593024,67633288,6623801098016986,6623803346277523],[336593024,67633344,6623801107293350,6623803337001160],[336593024,67634304,-17896106317239678,-17896101995938767],[336593024,67764352,-6623804308921517,-6623800135372988],[336593024,68157440,-4648502490229551,-4648496934359881],[336593024,68681736,-6623803346277523,-6623801098016986],[336593024,68681792,-6623803337001160,-6623801107293350],[336593024,68682752,17896101995938767,17896106317239678],[336593024,68812800,8599102676277534,8599106787722050],[336593024,69730432,-24519907464643494,-24519905292829457],[336593024,70778880,24519905292829457,24519907464643494],[336593024,134742016,8599103049607085,8599106414392500],[336593024,135790720,6623801159963560,6623803284330947],[336593024,201851008,-49039814910578252,-49039810604367646],[336593024,202899456,51015113107810724,51015117426840252],[336593024,268435584,-4648502490229551,-4648496934359881],[336593024,268959880,-6623803346277523,-6623801098016986],[336593024,268959936,-6623803337001160,-6623801107293350],[336593024,268960896,17896101995938767,17896106317239678],[336593024,269090944,8599102676277534,8599106787722050],[336593024,269484032,15920798865897844,15920804427575524],[336593024,270008328,6623801098016986,6623803346277523],[336593024,270008384,6623801107293350,6623803337001160],[336593024,270009344,-17896106317239678,-17896101995938767],[336593024,270139392,-6623804308921517,-6623800135372988],[336593024,271057024,24519905292829457,24519907464643494],[336593024,272105472,-24519907464643494,-24519905292829457],[336593024,335544320,11272301474344214,11272302394539722],[336593024,336199680,-49039814979929732,-49039810535016170],[336593024,336593024,22544602948688428,22544604789079444],[336593024,337248384,-47064513273775962,-47064507221464861],[336593024,403177600,51015113107810724,51015117426840252],[336593024,404226048,-49039814910578252,-49039810604367646],[336593024,470286336,6623801159963560,6623803284330947],[336593024,471335040,8599103049607085,8599106414392500],[336593024,1074266112,-6623803284330947,-6623801159963560],[336593024,1075314816,-6623803284330947,-6623801159963560],[336593024,1409810432,-6623803284330947,-6623801159963560],[336593024,1410859136,-6623803284330947,-6623801159963560],[336593024,17592186568704,-24519907512775874,-24519905244697076],[336593024,17592187617408,-24519907512775874,-24519905244697076],[336593024,17592522113024,-24519907512775874,-24519905244697076],[336593024,17592523161728,-24519907512775874,-24519905244697076],[336593024,35184372613120,24519905244697076,24519907512775874],[336593024,35184373661824,24519905244697076,24519907512775874],[336593024,35184708157440,24519905244697076,24519907512775874],[336593024,35184709206144,24519905244697076,24519907512775874],[336593920,67109888,3950600828296569,3950609211113582],[336593920,67634304,-6623803284297315,-6623801159997192],[336593920,67765248,26495207799404518,26495209977773508],[336593920,68157440,-3950609211113582,-3950600828296569],[336593920,68681856,6623801159997192,6623803284297315],[336593920,68812800,-26495209977773508,-26495207799404518],[336593920,268436480,-3950609211113582,-3950600828296569],[336593920,268960896,6623801159997192,6623803284297315],[336593920,269091840,-26495209977773508,-26495207799404518],[336593920,269484032,3950600828296569,3950609211113582],[336593920,270008448,-6623803284297315,-6623801159997192],[336593920,270139392,26495207799404518,26495209977773508],[336723968,524296,-24519908147332138,-24519904610140814],[336723968,1704064,17198207846590140,17198211081409034],[336723968,1704960,18593997143338122,18594000555019592],[336723968,67764232,11272297936924019,11272305931959916],[336723968,67764352,-13247606060429303,-13247602828159713],[336723968,67765248,-22544605576438951,-22544602161328920],[336723968,68681736,-35792210542100730,-35792206084256157],[336723968,68681856,-3950608253249321,-3950601786160837],[336723968,68682752,3950601606309328,3950608433100829],[336723968,134217736,1975301889643525,1975303130061553],[336723968,135398400,-13247605061599516,-13247603826989498],[336723968,201457672,1975301889643525,1975303130061553],[336723968,202376192,13247603826989498,13247605061599516],[336723968,269090824,-35792210542100730,-35792206084256157],[336723968,269090944,-3950608253249321,-3950601786160837],[336723968,269091840,3950601606309328,3950608433100829],[336723968,270008328,11272297936924019,11272305931959916],[336723968,270008448,-13247606060429303,-13247602828159713],[336723968,270009344,-22544605576438951,-22544602161328920],[336723968,336068736,17198207846590140,17198211081409034],[336723968,336069632,18593997143338122,18594000555019592],[336723968,337248264,-24519908147332138,-24519904610140814],[336723968,402785280,13247603826989498,13247605061599516],[336723968,403701768,1975301889643525,1975303130061553],[336723968,469763072,-13247605061599516,-13247603826989498],[336723968,470941704,1975301889643525,1975303130061553],[337117184,131200,31841601906990784,31841604679955942],[337117184,132096,-45089208967216020,-45089206508319720],[337117184,1703944,-1975303134066536,-1975301885638544],[337117184,1704064,22544602323661876,22544605414105996],[337117184,1704960,-18594000555019592,-18593997143338122],[337117184,67634304,28470509674673669,28470513122209439],[337117184,67764232,-11272303056635485,-11272300812248450],[337117184,67764352,-1975304719493192,-1975300300211890],[337117184,67765248,-2178588643,2178588646],[337117184,68158592,-28470513122209439,-28470509674673669],[337117184,68288520,13247603792440361,13247605096148654],[337117184,68288640,11272299879110672,11272303989773264],[337117184,68289536,-26495209977993164,-26495207799184865],[337117184,69730432,26495207799184865,26495209977993164],[337117184,69731328,-26495209977993164,-26495207799184865],[337117184,70254720,-26495209977993164,-26495207799184865],[337117184,70255616,26495207799184865,26495209977993164],[337117184,134217856,-3950606232496514,-3950603806913643],[337117184,134218752,1975301917270118,1975303102434961],[337117184,135790720,-1975303102434961,-1975301917270118],[337117184,135791616,15222905744259616,15222908164034477],[337117184,201851008,51015113107831353,51015117426819622],[337117184,201851904,-52990419943081622,-52990415611274431],[337117184,202375296,-52990419943081622,-52990415611274431],[337117184,202376192,39742811633487139,39742815032279900],[337117184,268960896,-28470513122209439,-28470509674673669],[337117184,269090824,13247603792440361,13247605096148654],[337117184,269090944,11272299879110672,11272303989773264],[337117184,269091840,-26495209977993164,-26495207799184865],[337117184,269485184,28470509674673669,28470513122209439],[337117184,269615112,-11272303056635485,-11272300812248450],[337117184,269615232,-1975304719493192,-1975300300211890],[337117184,269616128,-2178588643,2178588646],[337117184,271057024,-26495209977993164,-26495207799184865],[337117184,271057920,26495207799184865,26495209977993164],[337117184,271581312,26495207799184865,26495209977993164],[337117184,271582208,-26495209977993164,-26495207799184865],[337117184,335675400,-1975303134066536,-1975301885638544],[337117184,335675520,22544602323661876,22544605414105996],[337117184,335676416,-18594000555019592,-18593997143338122],[337117184,337248384,31841601906990784,31841604679955942],[337117184,337249280,-45089208967216020,-45089206508319720],[337117184,403177600,-52990419943081622,-52990415611274431],[337117184,403178496,39742811633487139,39742815032279900],[337117184,403701888,51015113107831353,51015117426819622],[337117184,403702784,-52990419943081622,-52990415611274431],[337117184,469762176,-1975303102434961,-1975301917270118],[337117184,469763072,15222905744259616,15222908164034477],[337117184,471335040,-3950606232496514,-3950603806913643],[337117184,471335936,1975301917270118,1975303102434961],[337117184,1073741952,1975301917270118,1975303102434961],[337117184,1073742848,-1975303102434961,-1975301917270118],[337117184,1075314816,1975301917270118,1975303102434961],[337117184,1075315712,-1975303102434961,-1975301917270118],[337117184,1409286272,1975301917270118,1975303102434961],[337117184,1409287168,-1975303102434961,-1975301917270118],[337117184,1410859136,1975301917270118,1975303102434961],[337117184,1410860032,-1975303102434961,-1975301917270118],[337117184,17592186044544,22544603239782766,22544604497985104],[337117184,17592186045440,-22544604497985104,-22544603239782766],[337117184,17592187617408,22544603239782766,22544604497985104],[337117184,17592187618304,-22544604497985104,-22544603239782766],[337117184,17592521588864,22544603239782766,22544604497985104],[337117184,17592521589760,-22544604497985104,-22544603239782766],[337117184,17592523161728,22544603239782766,22544604497985104],[337117184,17592523162624,-22544604497985104,-22544603239782766],[337117184,35184372088960,-22544604497985104,-22544603239782766],[337117184,35184372089856,22544603239782766,22544604497985104],[337117184,35184373661824,-22544604497985104,-22544603239782766],[337117184,35184373662720,22544603239782766,22544604497985104],[337117184,35184707633280,-22544604497985104,-22544603239782766],[337117184,35184707634176,22544603239782766,22544604497985104],[337117184,35184709206144,-22544604497985104,-22544603239782766],[337117184,35184709207040,22544603239782766,22544604497985104],[337117320,67108872,-13247605067077166,-13247603821511848],[337117320,67108992,13247603821511848,13247605067077166],[337117320,68681736,-13247605067077166,-13247603821511848],[337117320,68681856,13247603821511848,13247605067077166],[337117320,268435464,13247603821511848,13247605067077166],[337117320,268435584,-13247605067077166,-13247603821511848],[337117320,270008328,13247603821511848,13247605067077166],[337117320,270008448,-13247605067077166,-13247603821511848],[337117376,67108928,-13247605061578886,-13247603827010127],[337117376,67108992,13247603827010127,13247605061578886],[337117376,68681792,-13247605061578886,-13247603827010127],[337117376,68681856,13247603827010127,13247605061578886],[337117376,268435520,13247603827010127,13247605061578886],[337117376,268435584,-13247605061578886,-13247603827010127],[337117376,270008384,13247603827010127,13247605061578886],[337117376,270008448,-13247605061578886,-13247603827010127],[337118336,67108992,26495207710839176,26495210066338854],[337118336,67109888,-22544606285700820,-22544601452067054],[337118336,67634304,3950603780638034,3950606258772122],[337118336,68157440,-3950606258772122,-3950603780638034],[337118336,68681856,22544601452067054,22544606285700820],[337118336,68682752,-26495210066338854,-26495207710839176],[337118336,268435584,-26495210066338854,-26495207710839176],[337118336,268436480,22544601452067054,22544606285700820],[337118336,268960896,-3950606258772122,-3950603780638034],[337118336,269484032,3950603780638034,3950606258772122],[337118336,270008448,-22544606285700820,-22544601452067054],[337118336,270009344,26495207710839176,26495210066338854],[337118464,67109120,13247603827010127,13247605061578886],[337118464,67109888,-13247605061578886,-13247603827010127],[337118464,68681984,13247603827010127,13247605061578886],[337118464,68682752,-13247605061578886,-13247603827010127],[337118464,268435712,-13247605061578886,-13247603827010127],[337118464,268436480,13247603827010127,13247605061578886],[337118464,270008576,-13247605061578886,-13247603827010127],[337118464,270009344,13247603827010127,13247605061578886],[337120256,67109888,-13247605067077166,-13247603821511848],[337120256,67110912,13247603821511848,13247605067077166],[337120256,68682752,-13247605067077166,-13247603821511848],[337120256,68683776,13247603821511848,13247605067077166],[337120256,268436480,13247603821511848,13247605067077166],[337120256,268437504,-13247605067077166,-13247603821511848],[337120256,270009344,13247603821511848,13247605067077166],[337120256,270010368,-13247605067077166,-13247603821511848],[337248264,524296,-24519908147332138,-24519904610140814],[337248264,655360,35792205747120647,35792210879236240],[337248264,1048584,26495207586327742,26495210190850288],[337248264,1179648,-39742815119133304,-39742811546633741],[337248264,1703944,-1975303134066536,-1975301885638544],[337248264,67108872,-13247605061713792,-13247603826875223],[337248264,67239936,13247603826875223,13247605061713792],[337248264,67633152,-6623803999983306,-6623800444311202],[337248264,67764232,4648499056652179,4648500367937248],[337248264,68157440,8599103424503113,8599106039496475],[337248264,68288520,-4648500367937248,-4648499056652179],[337248264,68681736,-9297001129565978,-9296997719612879],[337248264,68812800,11272300696813670,11272303172070267],[337248264,268435464,11272300696813670,11272303172070267],[337248264,268566528,-9297001129565978,-9296997719612879],[337248264,268959744,-4648500367937248,-4648499056652179],[337248264,269090824,8599103424503113,8599106039496475],[337248264,269484032,4648499056652179,4648500367937248],[337248264,269615112,-6623803999983306,-6623800444311202],[337248264,270008328,13247603826875223,13247605061713792],[337248264,270139392,-13247605061713792,-13247603826875223],[337248264,335544320,-1975303134066536,-1975301885638544],[337248264,336068616,-39742815119133304,-39742811546633741],[337248264,336199680,26495207586327742,26495210190850288],[337248264,336592904,35792205747120647,35792210879236240],[337248264,336723968,-24519908147332138,-24519904610140814],[337248384,131200,31841601906990784,31841604679955942],[337248384,655360,-47064513273775962,-47064507221464861],[337248384,1179648,5925906055094245,5925909004020996],[337248384,1704064,-9297000198160808,-9296998651018048],[337248384,67108992,-22544606644811289,-22544601092956580],[337248384,67239936,11272301159430178,11272302709453758],[337248384,67633152,4648493659097978,4648505765491449],[337248384,67764352,-21846710653152227,-21846707699436376],[337248384,68157440,15920798695415380,15920804598057982],[337248384,68288640,42416007508284513,42416013562366883],[337248384,68681856,-1975304058435710,-1975300961269370],[337248384,68812800,-9297000814034204,-9296998035144653],[337248384,268435584,-9297000814034204,-9296998035144653],[337248384,268566528,-1975304058435710,-1975300961269370],[337248384,268959744,42416007508284513,42416013562366883],[337248384,269090944,15920798695415380,15920804598057982],[337248384,269484032,-21846710653152227,-21846707699436376],[337248384,269615232,4648493659097978,4648505765491449],[337248384,270008448,11272301159430178,11272302709453758],[337248384,270139392,-22544606644811289,-22544601092956580],[337248384,335544320,-9297000198160808,-9296998651018048],[337248384,336068736,5925906055094245,5925909004020996],[337248384,336593024,-47064513273775962,-47064507221464861],[337248384,337117184,31841601906990784,31841604679955942],[337249280,132096,-45089208967216020,-45089206508319720],[337249280,1179648,45089206508319720,45089208967216020],[337249280,67109888,49039810292025454,49039815222920444],[337249280,67765248,3950603783705734,3950606255704424],[337249280,68157440,-49039815222920444,-49039810292025454],[337249280,68812800,-3950606255704424,-3950603783705734],[337249280,268436480,-3950606255704424,-3950603783705734],[337249280,269091840,-49039815222920444,-49039810292025454],[337249280,269484032,3950603783705734,3950606255704424],[337249280,270139392,49039810292025454,49039815222920444],[337249280,336069632,45089206508319720,45089208967216020],[337249280,337117184,-45089208967216020,-45089206508319720],[337641600,68681856,24519905292829457,24519907464643494],[337641600,70778880,-24519907464643494,-24519905292829457],[337641600,270008448,-24519907464643494,-24519905292829457],[337641600,272105472,24519905292829457,24519907464643494],[338165760,68681856,-26495209977993164,-26495207799184865],[338165760,68682752,13247603821511848,13247605067077166],[338165760,68683776,13247603826875223,13247605061713792],[338165760,70254720,26495207799184865,26495209977993164],[338165760,70255616,-13247605067077166,-13247603821511848],[338165760,70256640,-13247605061713792,-13247603826875223],[338165760,270008448,26495207799184865,26495209977993164],[338165760,270009344,-13247605067077166,-13247603821511848],[338165760,270010368,-13247605061713792,-13247603826875223],[338165760,271581312,-26495209977993164,-26495207799184865],[338165760,271582208,13247603821511848,13247605067077166],[338165760,271583232,13247603826875223,13247605061713792],[339214464,68157440,-1975303134066535,-1975301885638543],[339214464,68681856,-1975303134066535,-1975301885638543],[339214464,69206016,1975301885638543,1975303134066535],[339214464,69730432,1975301885638543,1975303134066535],[339214464,269484032,1975301885638543,1975303134066535],[339214464,270008448,1975301885638543,1975303134066535],[339214464,270532608,-1975303134066535,-1975301885638543],[339214464,271057024,-1975303134066535,-1975301885638543],[339215360,67109888,-13247605061713792,-13247603826875223],[339215360,68157440,26495207799184865,26495209977993164],[339215360,68682752,13247603821511848,13247605067077166],[339215360,69206016,-13247605067077166,-13247603821511848],[339215360,69731328,-26495209977993164,-26495207799184865],[339215360,70778880,13247603826875223,13247605061713792],[339215360,268436480,13247603826875223,13247605061713792],[339215360,269484032,-26495209977993164,-26495207799184865],[339215360,270009344,-13247605067077166,-13247603821511848],[339215360,270532608,13247603821511848,13247605067077166],[339215360,271057920,26495207799184865,26495209977993164],[339215360,272105472,-13247605061713792,-13247603826875223],[339216384,67110912,13247603826875223,13247605061713792],[339216384,68683776,13247603826875223,13247605061713792],[339216384,69206016,-13247605061713792,-13247603826875223],[339216384,70778880,-13247605061713792,-13247603826875223],[339216384,268437504,-13247605061713792,-13247603826875223],[339216384,270010368,-13247605061713792,-13247603826875223],[339216384,270532608,13247603826875223,13247605061713792],[339216384,272105472,13247603826875223,13247605061713792],[402653184,131200,11272301474344214,11272302394539722],[402653184,1704064,-24519907159915920,-24519905597557028],[402653184,1704960,13247603821617226,13247605066971786],[402653184,67108992,-13247606172936084,-13247602715652933],[402653184,67109888,1975300784114970,1975304235590111],[402653184,68681856,-1975303130040923,-1975301889664154],[402653184,68682752,13247603827010127,13247605061578886],[402653184,402784384,11272301474344214,11272302394539722],[402653184,404357248,-24519907159915920,-24519905597557028],[402653184,404358144,13247603821617226,13247605066971786],[402653184,469762176,-13247606172936084,-13247602715652933],[402653184,469763072,1975300784114970,1975304235590111],[402653184,471335040,-1975303130040923,-1975301889664154],[402653184,471335936,13247603827010127,13247605061578886],[402653320,134217736,4648497449753834,4648501974835595],[402653320,134217856,-4648501974835595,-4648497449753834],[402653320,134873096,-24519907512775874,-24519905244697076],[402653320,134873216,24519905244697076,24519907512775874],[402653320,135790600,-24519907464403207,-24519905293069738],[402653320,135790720,24519905293069738,24519907464403207],[402653320,268435464,-4648501974835595,-4648497449753834],[402653320,268435584,4648497449753834,4648501974835595],[402653320,269090824,24519905244697076,24519907512775874],[402653320,269090944,-24519907512775874,-24519905244697076],[402653320,270008328,24519905293069738,24519907464403207],[402653320,270008448,-24519907464403207,-24519905293069738],[402686080,134873216,6623801159963560,6623803284330947],[402686080,134905856,-6623803284330947,-6623801159963560],[402686080,269090944,-6623803284330947,-6623801159963560],[402686080,269123584,6623801159963560,6623803284330947],[402784264,134217736,6623797717533688,6623806726760819],[402784264,134348800,-6623806726760819,-6623797717533688],[402784264,134742152,-6623803346277523,-6623801098016986],[402784264,134873216,6623801098016986,6623803346277523],[402784264,135790600,-3950606107262344,-3950603932147814],[402784264,135921664,3950603932147814,3950606107262344],[402784264,268435464,-6623806726760819,-6623797717533688],[402784264,268566528,6623797717533688,6623806726760819],[402784264,268959880,6623801098016986,6623803346277523],[402784264,269090944,-6623803346277523,-6623801098016986],[402784264,270008328,3950603932147814,3950606107262344],[402784264,270139392,-3950606107262344,-3950603932147814],[402784320,134742208,-6623803337001160,-6623801107293350],[402784320,134873216,6623801107293350,6623803337001160],[402784320,268959936,6623801107293350,6623803337001160],[402784320,269090944,-6623803337001160,-6623801107293350],[402784384,0,22544602948688428,22544604789079444],[402784384,131200,11272301474344214,11272302394539722],[402784384,1572864,-77510327102997542,-77510321208831459],[402784384,1704064,-49039814910578252,-49039810604367646],[402784384,67633152,11272300231229941,11272303637653996],[402784384,67764352,24519905292829457,24519907464643494],[402784384,134217856,15920798736625752,15920804556847610],[402784384,134348800,-4648502622318527,-4648496802270899],[402784384,134742152,-17896106414758888,-17896101898419553],[402784384,134742208,6623801107293350,6623803337001160],[402784384,134743168,6623801159997192,6623803284297315],[402784384,134774912,-6623803284330947,-6623801159963560],[402784384,134873096,17896101898419553,17896106414758888],[402784384,134873152,-6623803337001160,-6623801107293350],[402784384,134874112,-6623803284297315,-6623801159997192],[402784384,134905856,6623801159963560,6623803284330947],[402784384,135790720,-24519908340000795,-24519904417472150],[402784384,135921664,-3950606982859932,-3950603056550226],[402784384,201851008,-49039814979929732,-49039810535016170],[402784384,201981952,35792206084485028,35792210541871860],[402784384,268435584,-4648502622318527,-4648496802270899],[402784384,268566528,15920798736625752,15920804556847610],[402784384,268959880,17896101898419553,17896106414758888],[402784384,268959936,-6623803337001160,-6623801107293350],[402784384,268960896,-6623803284297315,-6623801159997192],[402784384,268992640,6623801159963560,6623803284330947],[402784384,269090824,-17896106414758888,-17896101898419553],[402784384,269090880,6623801107293350,6623803337001160],[402784384,269091840,6623801159997192,6623803284297315],[402784384,269123584,-6623803284330947,-6623801159963560],[402784384,270008448,-3950606982859932,-3950603056550226],[402784384,270139392,-24519908340000795,-24519904417472150],[402784384,336068736,35792206084485028,35792210541871860],[402784384,336199680,-49039814979929732,-49039810535016170],[402784384,402653184,11272301474344214,11272302394539722],[402784384,402784384,22544602948688428,22544604789079444],[402784384,404226048,-49039814910578252,-49039810604367646],[402784384,404357248,-77510327102997542,-77510321208831459],[402784384,470286336,24519905292829457,24519907464643494],[402784384,470417536,11272300231229941,11272303637653996],[402784384,537395200,-24519907464643494,-24519905292829457],[402784384,537526400,-24519907464643494,-24519905292829457],[402784384,940048384,-24519907464643494,-24519905292829457],[402784384,940179584,-24519907464643494,-24519905292829457],[402784384,35184372613120,24519905280236082,24519907477236870],[402784384,35184372744320,24519905280236082,24519907477236870],[402784384,35184775266304,24519905280236082,24519907477236870],[402784384,35184775397504,24519905280236082,24519907477236870],[402784384,70368744701952,-24519907477236870,-24519905280236082],[402784384,70368744833152,-24519907477236870,-24519905280236082],[402784384,70369147355136,-24519907477236870,-24519905280236082],[402784384,70369147486336,-24519907477236870,-24519905280236082],[402785280,1572864,66238019734487245,66238024708457820],[402785280,68157440,13247603826989498,13247605061599516],[402785280,134743168,-6623803284297315,-6623801159997192],[402785280,134873216,6623801159997192,6623803284297315],[402785280,135791616,17198204951509383,17198213976489780],[402785280,135921664,49039810731968040,49039814782977862],[402785280,202376192,13247603826989498,13247605061599516],[402785280,268960896,6623801159997192,6623803284297315],[402785280,269090944,-6623803284297315,-6623801159997192],[402785280,270009344,49039810731968040,49039814782977862],[402785280,270139392,17198204951509383,17198213976489780],[402785280,336723968,13247603826989498,13247605061599516],[402785280,404358144,66238019734487245,66238024708457820],[402785280,470942720,13247603826989498,13247605061599516],[403177474,134217866,-1975303161793801,-1975301857911278],[403177474,134217922,-4648500367050864,-4648499057538562],[403177474,134348810,13247603792440361,13247605096148654],[403177474,134742152,1975301857911278,1975303161793801],[403177474,134742208,4648499057538562,4648500367050864],[403177474,134873096,-13247605096148654,-13247603792440361],[403177474,268435594,1975301857911278,1975303161793801],[403177474,268435650,4648499057538562,4648500367050864],[403177474,268566538,-13247605096148654,-13247603792440361],[403177474,268959880,-1975303161793801,-1975301857911278],[403177474,268959936,-4648500367050864,-4648499057538562],[403177474,269090824,13247603792440361,13247605096148654],[403177476,134217868,-4648500337588616,-4648499087000812],[403177476,134348812,13247603822433492,13247605066155522],[403177476,134381572,-1975303102468593,-1975301917236486],[403177476,134742152,4648499087000812,4648500337588616],[403177476,134873096,-13247605066155522,-13247603822433492],[403177476,134905856,1975301917236486,1975303102468593],[403177476,268435596,4648499087000812,4648500337588616],[403177476,268566540,-13247605066155522,-13247603822433492],[403177476,268599300,1975301917236486,1975303102468593],[403177476,268959880,-4648500337588616,-4648499087000812],[403177476,269090824,13247603822433492,13247605066155522],[403177476,269123584,-1975303102468593,-1975301917236486],[403177480,1048704,3950603784385098,3950606255025060],[403177480,1179648,45089206509306108,45089208966229632],[403177480,1573000,28470509691254389,28470513105628714],[403177480,1703944,49039811053725950,49039814461219948],[403177480,67108992,-1975303134066536,-1975301885638544],[403177480,67239936,-22544604485915178,-22544603251852693],[403177480,67633288,-1975303134066536,-1975301885638544],[403177480,67764232,-20569302596271653,-20569300121791140],[403177480,134217736,-8599108332258679,-8599101131740910],[403177480,134217866,1975301857911278,1975303161793801],[403177480,134217868,4648499087000812,4648500337588616],[403177480,134217928,4648499057538562,4648500367050864],[403177480,134218888,1975301917270118,1975303102434961],[403177480,134348810,-13247605096148654,-13247603792440361],[403177480,134348812,-13247605066155522,-13247603822433492],[403177480,134348936,8599101131740910,8599108332258679],[403177480,134381576,1975301917236486,1975303102468593],[403177480,134742016,8599101131740910,8599108332258679],[403177480,134742146,-1975303161793801,-1975301857911278],[403177480,134742148,-4648500337588616,-4648499087000812],[403177480,134742208,-4648500367050864,-4648499057538562],[403177480,134743168,-1975303102434961,-1975301917270118],[403177480,134873090,13247603792440361,13247605096148654],[403177480,134873092,13247603822433492,13247605066155522],[403177480,134873216,-8599108332258679,-8599101131740910],[403177480,134905856,-1975303102468593,-1975301917236486],[403177480,135266440,-6623803284297315,-6623801159997192],[403177480,135397384,11272300873839524,11272302995044411],[403177480,135790720,-17896106304406015,-17896102008772423],[403177480,135921664,-15222909102306755,-15222904805987338],[403177480,201457672,-26495210190850288,-26495207586327742],[403177480,201981952,24519904610140814,24519908147332138],[403177480,268435464,8599101131740910,8599108332258679],[403177480,268435594,-1975303161793801,-1975301857911278],[403177480,268435596,-4648500337588616,-4648499087000812],[403177480,268435656,-4648500367050864,-4648499057538562],[403177480,268436616,-1975303102434961,-1975301917270118],[403177480,268566538,13247603792440361,13247605096148654],[403177480,268566540,13247603822433492,13247605066155522],[403177480,268566664,-8599108332258679,-8599101131740910],[403177480,268599304,-1975303102468593,-1975301917236486],[403177480,268959744,-8599108332258679,-8599101131740910],[403177480,268959874,1975301857911278,1975303161793801],[403177480,268959876,4648499087000812,4648500337588616],[403177480,268959936,4648499057538562,4648500367050864],[403177480,268960896,1975301917270118,1975303102434961],[403177480,269090818,-13247605096148654,-13247603792440361],[403177480,269090820,-13247605066155522,-13247603822433492],[403177480,269090944,8599101131740910,8599108332258679],[403177480,269123584,1975301917236486,1975303102468593],[403177480,269484168,-17896106304406015,-17896102008772423],[403177480,269615112,-15222909102306755,-15222904805987338],[403177480,270008448,-6623803284297315,-6623801159997192],[403177480,270139392,11272300873839524,11272302995044411],[403177480,335675400,24519904610140814,24519908147332138],[403177480,336199680,-26495210190850288,-26495207586327742],[403177480,403701888,28470509691254389,28470513105628714],[403177480,403832832,49039811053725950,49039814461219948],[403177480,404226184,3950603784385098,3950606255025060],[403177480,404357128,45089206509306108,45089208966229632],[403177480,469762176,-1975303134066536,-1975301885638544],[403177480,469893120,-20569302596271653,-20569300121791140],[403177480,470286472,-1975303134066536,-1975301885638544],[403177480,470417416,-22544604485915178,-22544603251852693],[403177480,536871040,1975301885638544,1975303134066536],[403177480,537001984,22544603251852693,22544604485915178],[403177480,537395336,1975301885638544,1975303134066536],[403177480,537526280,22544603251852693,22544604485915178],[403177480,939524224,1975301885638544,1975303134066536],[403177480,939655168,22544603251852693,22544604485915178],[403177480,940048520,1975301885638544,1975303134066536],[403177480,940179464,22544603251852693,22544604485915178],[403177480,35184372088960,-1975303134589986,-1975301885115096],[403177480,35184372219904,-22544604497985104,-22544603239782766],[403177480,35184372613256,-1975303134589986,-1975301885115096],[403177480,35184372744200,-22544604497985104,-22544603239782766],[403177480,35184774742144,-1975303134589986,-1975301885115096],[403177480,35184774873088,-22544604497985104,-22544603239782766],[403177480,35184775266440,-1975303134589986,-1975301885115096],[403177480,35184775397384,-22544604497985104,-22544603239782766],[403177480,70368744177792,1975301885115096,1975303134589986],[403177480,70368744308736,22544603239782766,22544604497985104],[403177480,70368744702088,1975301885115096,1975303134589986],[403177480,70368744833032,22544603239782766,22544604497985104],[403177480,70369146830976,1975301885115096,1975303134589986],[403177480,70369146961920,22544603239782766,22544604497985104],[403177480,70369147355272,1975301885115096,1975303134589986],[403177480,70369147486216,22544603239782766,22544604497985104],[403177536,67108992,-1975303127852212,-1975301891852867],[403177536,67633344,-1975303127852212,-1975301891852867],[403177536,134217922,4648499057538562,4648500367050864],[403177536,134217928,1975301857911278,1975303161793801],[403177536,134348992,-6623803358085955,-6623801086208550],[403177536,134742146,-4648500367050864,-4648499057538562],[403177536,134742152,-1975303161793801,-1975301857911278],[403177536,134873216,6623801086208550,6623803358085955],[403177536,268435650,-4648500367050864,-4648499057538562],[403177536,268435656,-1975303161793801,-1975301857911278],[403177536,268566720,6623801086208550,6623803358085955],[403177536,268959874,4648499057538562,4648500367050864],[403177536,268959880,1975301857911278,1975303161793801],[403177536,269090944,-6623803358085955,-6623801086208550],[403177536,469762176,-1975303127852212,-1975301891852867],[403177536,470286528,-1975303127852212,-1975301891852867],[403177600,1048584,-3950606255025060,-3950603784385098],[403177600,1179648,5925906132510585,5925908926604650],[403177600,1573000,-28470513105628714,-28470509691254389],[403177600,1704064,1975300962522527,1975304057182551],[403177600,67108872,1975301885638544,1975303134066536],[403177600,67108928,1975301891852867,1975303127852212],[403177600,67109888,1975301917236486,1975303102468593],[403177600,67239936,-1975303134066536,-1975301885638544],[403177600,67633288,1975301885638544,1975303134066536],[403177600,67633344,1975301891852867,1975303127852212],[403177600,67634304,1975301917236486,1975303102468593],[403177600,67764352,-1975303134066536,-1975301885638544],[403177600,68157440,-3950606232509516,-3950603806900640],[403177600,68681856,-1975303102468593,-1975301917236486],[403177600,134217928,-6623803358085955,-6623801086208550],[403177600,134218888,-6623803284297315,-6623801159997192],[403177600,134348936,19871404875056286,19871408457827235],[403177600,134348992,6623801086208550,6623803358085955],[403177600,134349952,6623801159997192,6623803284297315],[403177600,134742088,6623801086208550,6623803358085955],[403177600,134743048,6623801159997192,6623803284297315],[403177600,134873096,-19871408457827235,-19871404875056286],[403177600,134873152,-6623803358085955,-6623801086208550],[403177600,134874112,-6623803284297315,-6623801159997192],[403177600,135266440,6623801159997192,6623803284297315],[403177600,135397504,-6623804212490749,-6623800231803759],[403177600,135790600,17896102008772423,17896106304406015],[403177600,135921664,10574405092145006,10574409391559659],[403177600,202375296,-52990419943081622,-52990415611274431],[403177600,202899456,51015113107810724,51015117426840252],[403177600,268435656,6623801086208550,6623803358085955],[403177600,268436616,6623801159997192,6623803284297315],[403177600,268566664,-19871408457827235,-19871404875056286],[403177600,268566720,-6623803358085955,-6623801086208550],[403177600,268567680,-6623803284297315,-6623801159997192],[403177600,268959816,-6623803358085955,-6623801086208550],[403177600,268960776,-6623803284297315,-6623801159997192],[403177600,269090824,19871404875056286,19871408457827235],[403177600,269090880,6623801086208550,6623803358085955],[403177600,269091840,6623801159997192,6623803284297315],[403177600,269484168,17896102008772423,17896106304406015],[403177600,269615232,10574405092145006,10574409391559659],[403177600,270008328,6623801159997192,6623803284297315],[403177600,270139392,-6623804212490749,-6623800231803759],[403177600,336593024,51015113107810724,51015117426840252],[403177600,337117184,-52990419943081622,-52990415611274431],[403177600,403701768,-28470513105628714,-28470509691254389],[403177600,403832832,1975300962522527,1975304057182551],[403177600,404226184,-3950606255025060,-3950603784385098],[403177600,404357248,5925906132510585,5925908926604650],[403177600,469762056,1975301885638544,1975303134066536],[403177600,469762112,1975301891852867,1975303127852212],[403177600,469763072,1975301917236486,1975303102468593],[403177600,469893120,-1975303134066536,-1975301885638544],[403177600,470286472,1975301885638544,1975303134066536],[403177600,470286528,1975301891852867,1975303127852212],[403177600,470287488,1975301917236486,1975303102468593],[403177600,470417536,-1975303134066536,-1975301885638544],[403177600,470810624,-1975303102468593,-1975301917236486],[403177600,471335040,-3950606232509516,-3950603806900640],[403177600,536870920,-1975303134066536,-1975301885638544],[403177600,537001984,1975301885638544,1975303134066536],[403177600,537395336,-1975303134066536,-1975301885638544],[403177600,537526400,1975301885638544,1975303134066536],[403177600,738197632,-26495209978356470,-26495207798821558],[403177600,738721792,26495207798821558,26495209978356470],[403177600,872415360,26495207798821558,26495209978356470],[403177600,872939520,-26495209978356470,-26495207798821558],[403177600,939524104,-1975303134066536,-1975301885638544],[403177600,939655168,1975301885638544,1975303134066536],[403177600,940048520,-1975303134066536,-1975301885638544],[403177600,940179584,1975301885638544,1975303134066536],[403177600,35184372088840,1975301885115096,1975303134589986],[403177600,35184372219904,-1975303134589986,-1975301885115096],[403177600,35184372613256,1975301885115096,1975303134589986],[403177600,35184372744320,-1975303134589986,-1975301885115096],[403177600,35184573415552,26495207784975390,26495209992202640],[403177600,35184573939712,-26495209992202640,-26495207784975390],[403177600,35184707633280,-26495209992202640,-26495207784975390],[403177600,35184708157440,26495207784975390,26495209992202640],[403177600,35184774742024,1975301885115096,1975303134589986],[403177600,35184774873088,-1975303134589986,-1975301885115096],[403177600,35184775266440,1975301885115096,1975303134589986],[403177600,35184775397504,-1975303134589986,-1975301885115096],[403177600,70368744177672,-1975303134589986,-1975301885115096],[403177600,70368744308736,1975301885115096,1975303134589986],[403177600,70368744702088,-1975303134589986,-1975301885115096],[403177600,70368744833152,1975301885115096,1975303134589986],[403177600,70368945504384,-26495209992202640,-26495207784975390],[403177600,70368946028544,26495207784975390,26495209992202640],[403177600,70369079722112,26495207784975390,26495209992202640],[403177600,70369080246272,-26495209992202640,-26495207784975390],[403177600,70369146830856,-1975303134589986,-1975301885115096],[403177600,70369146961920,1975301885115096,1975303134589986],[403177600,70369147355272,-1975303134589986,-1975301885115096],[403177600,70369147486336,1975301885115096,1975303134589986],[403177610,134217730,-1975303161793801,-1975301857911278],[403177610,134217736,1975301857911278,1975303161793801],[403177610,134742146,-1975303161793801,-1975301857911278],[403177610,134742152,1975301857911278,1975303161793801],[403177610,268435458,1975301857911278,1975303161793801],[403177610,268435464,-1975303161793801,-1975301857911278],[403177610,268959874,1975301857911278,1975303161793801],[403177610,268959880,-1975303161793801,-1975301857911278],[403177612,134217732,-4648500337588616,-4648499087000812],[403177612,134217736,4648499087000812,4648500337588616],[403177612,134742148,-4648500337588616,-4648499087000812],[403177612,134742152,4648499087000812,4648500337588616],[403177612,268435460,4648499087000812,4648500337588616],[403177612,268435464,-4648500337588616,-4648499087000812],[403177612,268959876,4648499087000812,4648500337588616],[403177612,268959880,-4648500337588616,-4648499087000812],[403177666,134217730,-4648500367050864,-4648499057538562],[403177666,134217792,4648499057538562,4648500367050864],[403177666,134742146,-4648500367050864,-4648499057538562],[403177666,134742208,4648499057538562,4648500367050864],[403177666,268435458,4648499057538562,4648500367050864],[403177666,268435520,-4648500367050864,-4648499057538562],[403177666,268959874,4648499057538562,4648500367050864],[403177666,268959936,-4648500367050864,-4648499057538562],[403177672,134217736,4648499057538562,4648500367050864],[403177672,134217792,1975301857911278,1975303161793801],[403177672,134217856,-6623803358085955,-6623801086208550],[403177672,134742088,6623801086208550,6623803358085955],[403177672,134742152,-1975303161793801,-1975301857911278],[403177672,134742208,-4648500367050864,-4648499057538562],[403177672,268435464,-4648500367050864,-4648499057538562],[403177672,268435520,-1975303161793801,-1975301857911278],[403177672,268435584,6623801086208550,6623803358085955],[403177672,268959816,-6623803358085955,-6623801086208550],[403177672,268959880,1975301857911278,1975303161793801],[403177672,268959936,4648499057538562,4648500367050864],[403178496,1179648,-39742815032279900,-39742811633487139],[403178496,67108992,-1975303102468593,-1975301917236486],[403178496,67634304,-1975303102468593,-1975301917236486],[403178496,68157440,-7321700188594704,-7321693640879080],[403178496,68682752,-47064511822081843,-47064508673158980],[403178496,134218888,4648499087000812,4648500337588616],[403178496,134349952,-6623803284297315,-6623801159997192],[403178496,134742152,-4648500337588616,-4648499087000812],[403178496,134873216,6623801159997192,6623803284297315],[403178496,135398400,11272298195290642,11272305673593300],[403178496,135921664,-51015117307080439,-51015113227570542],[403178496,202376192,39742811633487139,39742815032279900],[403178496,268436616,-4648500337588616,-4648499087000812],[403178496,268567680,6623801159997192,6623803284297315],[403178496,268959880,4648499087000812,4648500337588616],[403178496,269090944,-6623803284297315,-6623801159997192],[403178496,269616128,-51015117307080439,-51015113227570542],[403178496,270139392,11272298195290642,11272305673593300],[403178496,337117184,39742811633487139,39742815032279900],[403178496,404358144,-39742815032279900,-39742811633487139],[403178496,469762176,-1975303102468593,-1975301917236486],[403178496,470287488,-1975303102468593,-1975301917236486],[403178496,470810624,-47064511822081843,-47064508673158980],[403178496,471335936,-7321700188594704,-7321693640879080],[403178632,134217736,1975301917270118,1975303102434961],[403178632,134217856,-6623803284297315,-6623801159997192],[403178632,134218752,4648499087000812,4648500337588616],[403178632,134742152,-4648500337588616,-4648499087000812],[403178632,134743048,6623801159997192,6623803284297315],[403178632,134743168,-1975303102434961,-1975301917270118],[403178632,268435464,-1975303102434961,-1975301917270118],[403178632,268435584,6623801159997192,6623803284297315],[403178632,268436480,-4648500337588616,-4648499087000812],[403178632,268959880,4648499087000812,4648500337588616],[403178632,268960776,-6623803284297315,-6623801159997192],[403178632,268960896,1975301917270118,1975303102434961],[403210240,134381572,1975301917236486,1975303102468593],[403210240,134381576,-13247605066155522,-13247603822433492],[403210240,134381696,11272300873839524,11272302995044411],[403210240,134873092,-1975303102468593,-1975301917236486],[403210240,134873096,13247603822433492,13247605066155522],[403210240,134873216,-11272302995044411,-11272300873839524],[403210240,268599300,-1975303102468593,-1975301917236486],[403210240,268599304,13247603822433492,13247605066155522],[403210240,268599424,-11272302995044411,-11272300873839524],[403210240,269090820,1975301917236486,1975303102468593],[403210240,269090824,-13247605066155522,-13247603822433492],[403210240,269090944,11272300873839524,11272302995044411],[403308544,1048584,-45089208966229632,-45089206509306108],[403308544,1048704,47064508855883441,47064511639357377],[403308544,1703944,-49039814461219948,-49039811053725950],[403308544,1704064,22544602330282044,22544605407485828],[403308544,1704960,13247603821617226,13247605066971786],[403308544,67108872,22544603251852693,22544604485915178],[403308544,67108992,-9297000658925680,-9296998190253177],[403308544,67764232,20569300121791140,20569302596271653],[403308544,67764352,-22544604485915178,-22544603251852693],[403308544,134348936,-28470513207314965,-28470509589568145],[403308544,134381576,11272300873839524,11272302995044411],[403308544,134381696,-11272302995044411,-11272300873839524],[403308544,134742152,28470509589568145,28470513207314965],[403308544,134774792,-11272302995044411,-11272300873839524],[403308544,134774912,11272300873839524,11272302995044411],[403308544,135397384,-11272302995044411,-11272300873839524],[403308544,135397504,11272299945646091,11272303923237845],[403308544,135398400,13247603827010127,13247605061578886],[403308544,135790600,15222904805987338,15222909102306755],[403308544,135790720,13247602298025327,13247606590563683],[403308544,135791616,-26495209977752878,-26495207799425147],[403308544,201457672,39742811546633741,39742815119133304],[403308544,201457792,-37767513075615154,-37767508570446813],[403308544,201850888,-37767513075615154,-37767508570446813],[403308544,201851008,51015113020977955,51015117513673026],[403308544,268566664,28470509589568145,28470513207314965],[403308544,268599304,-11272302995044411,-11272300873839524],[403308544,268599424,11272300873839524,11272302995044411],[403308544,268959880,-28470513207314965,-28470509589568145],[403308544,268992520,11272300873839524,11272302995044411],[403308544,268992640,-11272302995044411,-11272300873839524],[403308544,269615112,15222904805987338,15222909102306755],[403308544,269615232,13247602298025327,13247606590563683],[403308544,269616128,-26495209977752878,-26495207799425147],[403308544,270008328,-11272302995044411,-11272300873839524],[403308544,270008448,11272299945646091,11272303923237845],[403308544,270009344,13247603827010127,13247605061578886],[403308544,335675400,-37767513075615154,-37767508570446813],[403308544,335675520,51015113020977955,51015117513673026],[403308544,336068616,39742811546633741,39742815119133304],[403308544,336068736,-37767513075615154,-37767508570446813],[403308544,403701768,-49039814461219948,-49039811053725950],[403308544,403701888,22544602330282044,22544605407485828],[403308544,403702784,13247603821617226,13247605066971786],[403308544,404357128,-45089208966229632,-45089206509306108],[403308544,404357248,47064508855883441,47064511639357377],[403308544,469762056,20569300121791140,20569302596271653],[403308544,469762176,-22544604485915178,-22544603251852693],[403308544,470417416,22544603251852693,22544604485915178],[403308544,470417536,-9297000658925680,-9296998190253177],[403308544,536870920,-22544604485915178,-22544603251852693],[403308544,536871040,22544603251852693,22544604485915178],[403308544,537526280,-22544604485915178,-22544603251852693],[403308544,537526400,22544603251852693,22544604485915178],[403308544,939524104,-22544604485915178,-22544603251852693],[403308544,939524224,22544603251852693,22544604485915178],[403308544,940179464,-22544604485915178,-22544603251852693],[403308544,940179584,22544603251852693,22544604485915178],[403308544,35184372088840,22544603239782766,22544604497985104],[403308544,35184372088960,-22544604497985104,-22544603239782766],[403308544,35184372744200,22544603239782766,22544604497985104],[403308544,35184372744320,-22544604497985104,-22544603239782766],[403308544,35184774742024,22544603239782766,22544604497985104],[403308544,35184774742144,-22544604497985104,-22544603239782766],[403308544,35184775397384,22544603239782766,22544604497985104],[403308544,35184775397504,-22544604497985104,-22544603239782766],[403308544,70368744177672,-22544604497985104,-22544603239782766],[403308544,70368744177792,22544603239782766,22544604497985104],[403308544,70368744833032,-22544604497985104,-22544603239782766],[403308544,70368744833152,22544603239782766,22544604497985104],[403308544,70369146830856,-22544604497985104,-22544603239782766],[403308544,70369146830976,22544603239782766,22544604497985104],[403308544,70369147486216,-22544604497985104,-22544603239782766],[403308544,70369147486336,22544603239782766,22544604497985104],[403308554,134217730,13247603792440361,13247605096148654],[403308554,134217736,-13247605096148654,-13247603792440361],[403308554,134873090,13247603792440361,13247605096148654],[403308554,134873096,-13247605096148654,-13247603792440361],[403308554,268435458,-13247605096148654,-13247603792440361],[403308554,268435464,13247603792440361,13247605096148654],[403308554,269090818,-13247605096148654,-13247603792440361],[403308554,269090824,13247603792440361,13247605096148654],[403308556,134217732,13247603822433492,13247605066155522],[403308556,134217736,-13247605066155522,-13247603822433492],[403308556,134873092,13247603822433492,13247605066155522],[403308556,134873096,-13247605066155522,-13247603822433492],[403308556,268435460,-13247605066155522,-13247603822433492],[403308556,268435464,13247603822433492,13247605066155522],[403308556,269090820,-13247605066155522,-13247603822433492],[403308556,269090824,13247603822433492,13247605066155522],[403308680,134217736,-22544606469793008,-22544601267974862],[403308680,134217856,26495207590564460,26495210186613570],[403308680,134348800,-3950606322589598,-3950603716820562],[403308680,134742152,3950603716820562,3950606322589598],[403308680,134873096,-26495210186613570,-26495207590564460],[403308680,134873216,22544601267974862,22544606469793008],[403308680,268435464,22544601267974862,22544606469793008],[403308680,268435584,-26495210186613570,-26495207590564460],[403308680,268566528,3950603716820562,3950606322589598],[403308680,268959880,-3950606322589598,-3950603716820562],[403308680,269090824,26495207590564460,26495210186613570],[403308680,269090944,-22544606469793008,-22544601267974862],[403308736,134217792,-13247605096148654,-13247603792440361],[403308736,134217856,13247603792440361,13247605096148654],[403308736,134873152,-13247605096148654,-13247603792440361],[403308736,134873216,13247603792440361,13247605096148654],[403308736,268435520,13247603792440361,13247605096148654],[403308736,268435584,-13247605096148654,-13247603792440361],[403308736,269090880,13247603792440361,13247605096148654],[403308736,269090944,-13247605096148654,-13247603792440361],[403309696,134217856,13247603822433492,13247605066155522],[403309696,134218752,-13247605066155522,-13247603822433492],[403309696,134873216,13247603822433492,13247605066155522],[403309696,134874112,-13247605066155522,-13247603822433492],[403309696,268435584,-13247605066155522,-13247603822433492],[403309696,268436480,13247603822433492,13247605066155522],[403309696,269090944,-13247605066155522,-13247603822433492],[403309696,269091840,13247603822433492,13247605066155522],[403341316,134217732,-1975303102468593,-1975301917236486],[403341316,134250496,1975301917236486,1975303102468593],[403341316,134873092,-1975303102468593,-1975301917236486],[403341316,134905856,1975301917236486,1975303102468593],[403341316,268435460,1975301917236486,1975303102468593],[403341316,268468224,-1975303102468593,-1975301917236486],[403341316,269090820,1975301917236486,1975303102468593],[403341316,269123584,-1975303102468593,-1975301917236486],[403341320,134217736,1975301917236486,1975303102468593],[403341320,134250496,-13247605066155522,-13247603822433492],[403341320,134348800,11272300873839524,11272302995044411],[403341320,134774792,-11272302995044411,-11272300873839524],[403341320,134873096,13247603822433492,13247605066155522],[403341320,134905856,-1975303102468593,-1975301917236486],[403341320,268435464,-1975303102468593,-1975301917236486],[403341320,268468224,13247603822433492,13247605066155522],[403341320,268566528,-11272302995044411,-11272300873839524],[403341320,268992520,11272300873839524,11272302995044411],[403341320,269090824,-13247605066155522,-13247603822433492],[403341320,269123584,1975301917236486,1975303102468593],[403341440,134250496,4648499087000812,4648500337588616],[403341440,134348800,-4648500337588616,-4648499087000812],[403341440,134774912,4648499087000812,4648500337588616],[403341440,134873216,-4648500337588616,-4648499087000812],[403341440,268468224,-4648500337588616,-4648499087000812],[403341440,268566528,4648499087000812,4648500337588616],[403341440,268992640,-4648500337588616,-4648499087000812],[403341440,269090944,4648499087000812,4648500337588616],[403701768,1573000,-28470513105628714,-28470509691254389],[403701768,1703944,-49039814461219948,-49039811053725950],[403701768,68288520,-1975303130061553,-1975301889643525],[403701768,134218888,1975301917270118,1975303102434961],[403701768,134742152,8599101386783086,8599108077216494],[403701768,134873096,11272298596064681,11272305272819252],[403701768,135267456,-1975303102434961,-1975301917270118],[403701768,135790720,19871405028412220,19871408304471303],[403701768,135921664,37767509188400696,37767512457661269],[403701768,201457672,1975301889643525,1975303130061553],[403701768,268436616,-1975303102434961,-1975301917270118],[403701768,268959880,19871405028412220,19871408304471303],[403701768,269090824,37767509188400696,37767512457661269],[403701768,269485184,1975301917270118,1975303102434961],[403701768,270008448,8599101386783086,8599108077216494],[403701768,270139392,11272298596064681,11272305272819252],[403701768,336723968,1975301889643525,1975303130061553],[403701768,403177600,-28470513105628714,-28470509691254389],[403701768,403308544,-49039814461219948,-49039811053725950],[403701768,469893120,-1975303130061553,-1975301889643525],[403701888,1573000,28470509691254389,28470513105628714],[403701888,1704064,22544602330282044,22544605407485828],[403701888,67109888,1975301917236486,1975303102468593],[403701888,67633152,47064508673158980,47064511822081843],[403701888,68158592,1975301917236486,1975303102468593],[403701888,68681856,-3950608753660642,-3950601285749510],[403701888,134218888,-1975303102434961,-1975301917270118],[403701888,134742152,-8599108077216494,-8599101386783086],[403701888,134873216,8599101696810952,8599107767188634],[403701888,135267336,1975301917270118,1975303102434961],[403701888,135790600,-19871408304471303,-19871405028412220],[403701888,135921664,-31143710097470678,-31143707104296780],[403701888,201851008,51015113107831353,51015117426819622],[403701888,268436616,1975301917270118,1975303102434961],[403701888,268959880,-19871408304471303,-19871405028412220],[403701888,269090944,-31143710097470678,-31143707104296780],[403701888,269485064,-1975303102434961,-1975301917270118],[403701888,270008328,-8599108077216494,-8599101386783086],[403701888,270139392,8599101696810952,8599107767188634],[403701888,337117184,51015113107831353,51015117426819622],[403701888,403177480,28470509691254389,28470513105628714],[403701888,403308544,22544602330282044,22544605407485828],[403701888,469763072,1975301917236486,1975303102468593],[403701888,470286336,-3950608753660642,-3950601285749510],[403701888,470811776,1975301917236486,1975303102468593],[403701888,471335040,47064508673158980,47064511822081843],[403702016,67109888,1975301891852867,1975303127852212],[403702016,68158720,1975301891852867,1975303127852212],[403702016,469763072,1975301891852867,1975303127852212],[403702016,470811904,1975301891852867,1975303127852212],[403702784,1704960,13247603821617226,13247605066971786],[403702784,67108992,-1975303102468593,-1975301917236486],[403702784,67109120,-1975303127852212,-1975301891852867],[403702784,67110912,-1975303134066536,-1975301885638544],[403702784,67633152,1975301917236486,1975303102468593],[403702784,68158592,-1975303102468593,-1975301917236486],[403702784,68158720,-1975303127852212,-1975301891852867],[403702784,68160512,-1975303134066536,-1975301885638544],[403702784,68682752,15222905744246613,15222908164047479],[403702784,69206016,1975301885638544,1975303134066536],[403702784,70255616,1975301885638544,1975303134066536],[403702784,134874112,-26495209977773508,-26495207799404518],[403702784,135921664,13247603826989498,13247605061599516],[403702784,201851904,-52990419943081622,-52990415611274431],[403702784,202899456,39742811633466510,39742815032300530],[403702784,269091840,13247603826989498,13247605061599516],[403702784,270139392,-26495209977773508,-26495207799404518],[403702784,336069632,39742811633466510,39742815032300530],[403702784,337117184,-52990419943081622,-52990415611274431],[403702784,403308544,13247603821617226,13247605066971786],[403702784,469762176,-1975303102468593,-1975301917236486],[403702784,469762304,-1975303127852212,-1975301891852867],[403702784,469764096,-1975303134066536,-1975301885638544],[403702784,470286336,15222905744246613,15222908164047479],[403702784,470811776,-1975303102468593,-1975301917236486],[403702784,470811904,-1975303127852212,-1975301891852867],[403702784,470813696,-1975303134066536,-1975301885638544],[403702784,471335936,1975301917236486,1975303102468593],[403702784,471859200,1975301885638544,1975303134066536],[403702784,472908800,1975301885638544,1975303134066536],[403702784,738198528,26495207798821558,26495209978356470],[403702784,739246080,-26495209978356470,-26495207798821558],[403702784,872416256,-26495209978356470,-26495207798821558],[403702784,873463808,26495207798821558,26495209978356470],[403702784,35184573416448,-26495209992202640,-26495207784975390],[403702784,35184574464000,26495207784975390,26495209992202640],[403702784,35184707634176,26495207784975390,26495209992202640],[403702784,35184708681728,-26495209992202640,-26495207784975390],[403702784,70368945505280,26495207784975390,26495209992202640],[403702784,70368946552832,-26495209992202640,-26495207784975390],[403702784,70369079723008,-26495209992202640,-26495207784975390],[403702784,70369080770560,26495207784975390,26495209992202640],[403702920,134217736,1975301917270118,1975303102434961],[403702920,134217856,-1975303102434961,-1975301917270118],[403702920,135267336,1975301917270118,1975303102434961],[403702920,135267456,-1975303102434961,-1975301917270118],[403702920,268435464,-1975303102434961,-1975301917270118],[403702920,268435584,1975301917270118,1975303102434961],[403702920,269485064,-1975303102434961,-1975301917270118],[403702920,269485184,1975301917270118,1975303102434961],[403703808,67109888,1975301885638544,1975303134066536],[403703808,68160512,1975301885638544,1975303134066536],[403703808,69206016,22544603251852693,22544604485915178],[403703808,70256640,22544603251852693,22544604485915178],[403703808,469763072,1975301885638544,1975303134066536],[403703808,470813696,1975301885638544,1975303134066536],[403703808,471859200,22544603251852693,22544604485915178],[403703808,472909824,22544603251852693,22544604485915178],[403832832,525312,-39742815032300530,-39742811633466510],[403832832,1703944,49039811053725950,49039814461219948],[403832832,1704064,1975300962522527,1975304057182551],[403832832,67109888,-13247605061599516,-13247603826989498],[403832832,68288520,1975301889643525,1975303130061553],[403832832,134873096,-11272305272819252,-11272298596064681],[403832832,134873216,11272298892173522,11272304976710416],[403832832,134874112,-51015117307046807,-51015113227604174],[403832832,135790600,-37767512457661269,-37767509188400696],[403832832,135790720,-13247605939232943,-13247602949356073],[403832832,135791616,11272298195303644,11272305673580297],[403832832,201457672,-1975303130061553,-1975301889643525],[403832832,202376192,-13247605061599516,-13247603826989498],[403832832,269090824,-37767512457661269,-37767509188400696],[403832832,269090944,-13247605939232943,-13247602949356073],[403832832,269091840,11272298195303644,11272305673580297],[403832832,270008328,-11272305272819252,-11272298596064681],[403832832,270008448,11272298892173522,11272304976710416],[403832832,270009344,-51015117307046807,-51015113227604174],[403832832,335676416,-13247605061599516,-13247603826989498],[403832832,336592904,-1975303130061553,-1975301889643525],[403832832,403177480,49039811053725950,49039814461219948],[403832832,403177600,1975300962522527,1975304057182551],[403832832,404358144,-39742815032300530,-39742811633466510],[403832832,469762056,1975301889643525,1975303130061553],[403832832,470942720,-13247605061599516,-13247603826989498],[404226048,132096,26495207655679218,26495210121498808],[404226048,1704064,-49039814910578252,-49039810604367646],[404226048,67108992,-45089208861152192,-45089206614383552],[404226048,67109888,18593996492884744,18594001205472974],[404226048,68681856,3950601743215454,3950608296194700],[404226048,68682752,45089206614383552,45089208861152192],[404226048,134873216,-3950609226781738,-3950600812628424],[404226048,134874112,52990415723206676,52990419831149384],[404226048,135397504,52990415723206676,52990419831149384],[404226048,135398400,-26495212175470166,-26495205601707868],[404226048,201851008,-49039814910578252,-49039810604367646],[404226048,202376192,-26495210121498808,-26495207655679218],[404226048,269090944,52990415723206676,52990419831149384],[404226048,269091840,-26495212175470166,-26495205601707868],[404226048,269615232,-3950609226781738,-3950600812628424],[404226048,269616128,52990415723206676,52990419831149384],[404226048,336069632,-26495210121498808,-26495207655679218],[404226048,336593024,-49039814910578252,-49039810604367646],[404226048,402784384,-49039814910578252,-49039810604367646],[404226048,404358144,26495207655679218,26495210121498808],[404226048,469762176,3950601743215454,3950608296194700],[404226048,469763072,45089206614383552,45089208861152192],[404226048,471335040,-45089208861152192,-45089206614383552],[404226048,471335936,18593996492884744,18594001205472974],[404226184,1048584,-3950606255025060,-3950603784385098],[404226184,1048704,3950603784385098,3950606255025060],[404226184,134217736,-22544606281953756,-22544601455814116],[404226184,134217856,22544601455814116,22544606281953756],[404226184,135790600,-26495210066338854,-26495207710839176],[404226184,135790720,26495207710839176,26495210066338854],[404226184,268435464,26495207710839176,26495210066338854],[404226184,268435584,-26495210066338854,-26495207710839176],[404226184,270008328,22544601455814116,22544606281953756],[404226184,270008448,-22544606281953756,-22544601455814116],[404226184,403177480,3950603784385098,3950606255025060],[404226184,403177600,-3950606255025060,-3950603784385098],[404357128,1048584,-45089208966229632,-45089206509306108],[404357128,1179648,45089206509306108,45089208966229632],[404357128,134217736,18593996442899990,18594001255457720],[404357128,134348800,-18594001255457720,-18593996442899990],[404357128,135790600,-26495210066406118,-26495207710771912],[404357128,135921664,26495207710771912,26495210066406118],[404357128,268435464,26495207710771912,26495210066406118],[404357128,268566528,-26495210066406118,-26495207710771912],[404357128,270008328,-18594001255457720,-18593996442899990],[404357128,270139392,18593996442899990,18594001255457720],[404357128,403177480,45089206509306108,45089208966229632],[404357128,403308544,-45089208966229632,-45089206509306108],[404357248,1048704,47064508855883441,47064511639357377],[404357248,1179648,5925906132510585,5925908926604650],[404357248,1572864,-77510327102997542,-77510321208831459],[404357248,1704064,-24519907159915920,-24519905597557028],[404357248,134217856,-22544606578062592,-22544601159705275],[404357248,134348800,18593996132872130,18594001565485586],[404357248,134742016,19871400914685277,19871412418198236],[404357248,134873216,15920800086388708,15920803207084654],[404357248,135266304,8599103952831266,8599105511168320],[404357248,135397504,57638914684799306,57638920294146182],[404357248,135790720,-24519907697996171,-24519905059476780],[404357248,135921664,-24519907696178166,-24519905061294785],[404357248,268435584,-24519907696178166,-24519905061294785],[404357248,268566528,-24519907697996171,-24519905059476780],[404357248,268959744,57638914684799306,57638920294146182],[404357248,269090944,8599103952831266,8599105511168320],[404357248,269484032,15920800086388708,15920803207084654],[404357248,269615232,19871400914685277,19871412418198236],[404357248,270008448,18593996132872130,18594001565485586],[404357248,270139392,-22544606578062592,-22544601159705275],[404357248,402653184,-24519907159915920,-24519905597557028],[404357248,402784384,-77510327102997542,-77510321208831459],[404357248,403177600,5925906132510585,5925908926604650],[404357248,403308544,47064508855883441,47064511639357377],[404358144,132096,26495207655679218,26495210121498808],[404358144,525312,-39742815032300530,-39742811633466510],[404358144,1179648,-39742815032279900,-39742811633487139],[404358144,1572864,66238019734487245,66238024708457820],[404358144,1704960,13247603821617226,13247605066971786],[404358144,134218752,1975301917236486,1975303102468593],[404358144,134348800,11272300724575166,11272303144308768],[404358144,134742016,-24519908060482760,-24519904696990186],[404358144,134874112,-24519908060537022,-24519904696935925],[404358144,135266304,-1975303102468593,-1975301917236486],[404358144,135398400,-1975303102434961,-1975301917270118],[404358144,135791616,1975301917270118,1975303102434961],[404358144,135921664,11272300724520905,11272303144363030],[404358144,268436480,11272300724520905,11272303144363030],[404358144,268566528,1975301917270118,1975303102434961],[404358144,268959744,-1975303102434961,-1975301917270118],[404358144,269091840,-1975303102468593,-1975301917236486],[404358144,269484032,-24519908060537022,-24519904696935925],[404358144,269616128,-24519908060482760,-24519904696990186],[404358144,270009344,11272300724575166,11272303144308768],[404358144,270139392,1975301917236486,1975303102468593],[404358144,402653184,13247603821617226,13247605066971786],[404358144,402785280,66238019734487245,66238024708457820],[404358144,403178496,-39742815032279900,-39742811633487139],[404358144,403832832,-39742815032300530,-39742811633466510],[404358144,404226048,26495207655679218,26495210121498808],[404751360,68157440,-24519907464643494,-24519905292829457],[404751360,70255616,-24519907464643494,-24519905292829457],[404751360,470810624,-24519907464643494,-24519905292829457],[404751360,472908800,-24519907464643494,-24519905292829457],[405798912,67109888,22544603251852693,22544604485915178],[405798912,67110912,-22544604485915178,-22544603251852693],[405798912,70255616,22544603251852693,22544604485915178],[405798912,70256640,-22544604485915178,-22544603251852693],[405798912,469763072,22544603251852693,22544604485915178],[405798912,469764096,-22544604485915178,-22544603251852693],[405798912,472908800,22544603251852693,22544604485915178],[405798912,472909824,-22544604485915178,-22544603251852693],[469762050,134348810,-4648500364875210,-4648499059714221],[469762050,201457672,4648499059714221,4648500364875210],[469762050,268566538,4648499059714221,4648500364875210],[469762050,335675400,-4648500364875210,-4648499059714221],[469762052,134348812,-4648500337554984,-4648499087034444],[469762052,134381572,-1975303102434961,-1975301917270118],[469762052,201457672,4648499087034444,4648500337554984],[469762052,201490432,1975301917270118,1975303102434961],[469762052,268566540,4648499087034444,4648500337554984],[469762052,268599300,1975301917270118,1975303102434961],[469762052,335675400,-4648500337554984,-4648499087034444],[469762052,335708160,-1975303102434961,-1975301917270118],[469762052,1207992324,13247603855385956,13247605033203059],[469762052,1275101184,-13247605033203059,-13247603855385956],[469762052,1342210052,-13247605033203059,-13247603855385956],[469762052,1409318912,13247603855385956,13247605033203059],[469762056,655360,-1975303130061553,-1975301889643525],[469762056,1179648,1975301889643525,1975303130061553],[469762056,67633288,1975301885638544,1975303134066536],[469762056,67764232,20569300121791140,20569302596271653],[469762056,68288520,1975301889643525,1975303130061553],[469762056,134217736,4648497899071108,4648501525518317],[469762056,134348810,4648499059714221,4648500364875210],[469762056,134348812,4648499087034444,4648500337554984],[469762056,134348936,4648499056652180,4648500367937249],[469762056,134381576,1975301917270118,1975303102434961],[469762056,134742152,4648499056652180,4648500367937249],[469762056,134873096,3950603717154982,3950606322255178],[469762056,201326592,-4648501525518317,-4648497899071108],[469762056,201457666,-4648500364875210,-4648499059714221],[469762056,201457668,-4648500337554984,-4648499087034444],[469762056,201457792,-4648500367937249,-4648499056652180],[469762056,201490432,-1975303102434961,-1975301917270118],[469762056,201851008,-6623803346277523,-6623801098016986],[469762056,201981952,-26495210655649026,-26495207121529005],[469762056,268435464,-4648501525518317,-4648497899071108],[469762056,268566538,-4648500364875210,-4648499059714221],[469762056,268566540,-4648500337554984,-4648499087034444],[469762056,268566664,-4648500367937249,-4648499056652180],[469762056,268599304,-1975303102434961,-1975301917270118],[469762056,268959880,-6623803346277523,-6623801098016986],[469762056,269090824,-26495210655649026,-26495207121529005],[469762056,335544320,4648497899071108,4648501525518317],[469762056,335675394,4648499059714221,4648500364875210],[469762056,335675396,4648499087034444,4648500337554984],[469762056,335675520,4648499056652180,4648500367937249],[469762056,335708160,1975301917270118,1975303102434961],[469762056,336068736,4648499056652180,4648500367937249],[469762056,336199680,3950603717154982,3950606322255178],[469762056,403177600,1975301885638544,1975303134066536],[469762056,403308544,20569300121791140,20569302596271653],[469762056,403832832,1975301889643525,1975303130061553],[469762056,470417416,-1975303130061553,-1975301889643525],[469762056,470941704,1975301889643525,1975303130061553],[469762056,537001984,1975301892192548,1975303127512529],[469762056,604110856,1975301892192548,1975303127512529],[469762056,939655168,1975301892192548,1975303127512529],[469762056,1006764040,1975301892192548,1975303127512529],[469762056,1208090632,-6623803284330947,-6623801159963560],[469762056,1275199488,6623801159963560,6623803284330947],[469762056,1342308360,6623801159963560,6623803284330947],[469762056,1409417216,-6623803284330947,-6623801159963560],[469762056,17592320393224,-9297000585232538,-9296998263946318],[469762056,17592387502080,9296998263946318,9297000585232538],[469762056,17592454610952,9296998263946318,9297000585232538],[469762056,17592521719808,-9297000585232538,-9296998263946318],[469762056,35184372219904,-1975303142599947,-1975301877105131],[469762056,35184439328776,-1975303142599947,-1975301877105131],[469762056,35184774873088,-1975303142599947,-1975301877105131],[469762056,35184841981960,-1975303142599947,-1975301877105131],[469762056,70368744308736,1975301877105131,1975303142599947],[469762056,70368811417608,1975301877105131,1975303142599947],[469762056,70369146961920,1975301877105131,1975303142599947],[469762056,70369214070792,1975301877105131,1975303142599947],[469762112,67633344,1975301891852867,1975303127852212],[469762112,134742208,4648499059714221,4648500364875210],[469762112,201851008,-6623803337001160,-6623801107293350],[469762112,268959936,-6623803337001160,-6623801107293350],[469762112,336068736,4648499059714221,4648500364875210],[469762112,403177600,1975301891852867,1975303127852212],[469762176,0,-22544604789079444,-22544602948688428],[469762176,655360,13247603826989498,13247605061599516],[469762176,1572864,-1975303130061553,-1975301889643525],[469762176,67108992,-13247606172936084,-13247602715652933],[469762176,67633288,-1975303134066536,-1975301885638544],[469762176,67633344,-1975303127852212,-1975301891852867],[469762176,67634304,-1975303102468593,-1975301917236486],[469762176,67764352,-22544604485915178,-22544603251852693],[469762176,68158592,-1975303102468593,-1975301917236486],[469762176,68681856,3950601743215454,3950608296194700],[469762176,134217856,-15920803457056280,-15920799836417081],[469762176,134348936,-4648500367937249,-4648499056652180],[469762176,134742152,-4648500367937249,-4648499056652180],[469762176,134742208,-4648500364875210,-4648499059714221],[469762176,134743168,-4648500337554984,-4648499087034444],[469762176,134873216,45089204212760992,45089211262774750],[469762176,135790720,-1975303102434961,-1975301917270118],[469762176,201326592,6623799170377024,6623805273917482],[469762176,201457672,4648499056652180,4648500367937249],[469762176,201850888,6623801098016986,6623803346277523],[469762176,201850944,6623801107293350,6623803337001160],[469762176,201851904,6623801159997192,6623803284297315],[469762176,201981952,-9297003420342855,-9296995428836002],[469762176,202376192,1975301917236486,1975303102468593],[469762176,202899456,-3950608753647640,-3950601285762513],[469762176,268435584,6623799170377024,6623805273917482],[469762176,268566664,4648499056652180,4648500367937249],[469762176,268959880,6623801098016986,6623803346277523],[469762176,268959936,6623801107293350,6623803337001160],[469762176,268960896,6623801159997192,6623803284297315],[469762176,269090944,-9297003420342855,-9296995428836002],[469762176,269485184,1975301917236486,1975303102468593],[469762176,270008448,-3950608753647640,-3950601285762513],[469762176,335544320,-15920803457056280,-15920799836417081],[469762176,335675400,-4648500367937249,-4648499056652180],[469762176,336068616,-4648500367937249,-4648499056652180],[469762176,336068672,-4648500364875210,-4648499059714221],[469762176,336069632,-4648500337554984,-4648499087034444],[469762176,336199680,45089204212760992,45089211262774750],[469762176,337117184,-1975303102434961,-1975301917270118],[469762176,402653184,-13247606172936084,-13247602715652933],[469762176,403177480,-1975303134066536,-1975301885638544],[469762176,403177536,-1975303127852212,-1975301891852867],[469762176,403178496,-1975303102468593,-1975301917236486],[469762176,403308544,-22544604485915178,-22544603251852693],[469762176,403702784,-1975303102468593,-1975301917236486],[469762176,404226048,3950601743215454,3950608296194700],[469762176,469762176,-22544604789079444,-22544602948688428],[469762176,470417536,13247603826989498,13247605061599516],[469762176,471335040,-1975303130061553,-1975301889643525],[469762176,537395200,-1975303127512529,-1975301892192548],[469762176,604504192,24519905292829457,24519907464643494],[469762176,738721792,-26495209978356470,-26495207798821558],[469762176,805830784,-26495209978356470,-26495207798821558],[469762176,940048384,24519905292829457,24519907464643494],[469762176,1007157376,-1975303127512529,-1975301892192548],[469762176,1074266112,13247603855385956,13247605033203059],[469762176,1208483968,6623801159963560,6623803284330947],[469762176,1275592704,6623801172992632,6623803271301876],[469762176,1342701696,6623801172992632,6623803271301876],[469762176,1409810432,6623801159963560,6623803284330947],[469762176,1544028288,13247603855385956,13247605033203059],[469762176,17592186568704,13247603811716528,13247605076872486],[469762176,17592320786560,24519905244697076,24519907512775874],[469762176,17592387895296,-11272303070687196,-11272300798196740],[469762176,17592455004288,-11272303070687196,-11272300798196740],[469762176,17592522113024,24519905244697076,24519907512775874],[469762176,17592656330880,13247603811716528,13247605076872486],[469762176,35184372613120,-11272302715781341,-11272301153102595],[469762176,35184439722112,-20569302302299032,-20569300415763760],[469762176,35184506830976,-15222907934848161,-15222905973445933],[469762176,35184573939712,24519905262899363,24519907494573587],[469762176,35184641048704,24519905262899363,24519907494573587],[469762176,35184708157440,-15222907934848161,-15222905973445933],[469762176,35184775266304,-20569302302299032,-20569300415763760],[469762176,35184842375296,-11272302715781341,-11272301153102595],[469762176,70368744701952,-1975303142599947,-1975301877105131],[469762176,70368811810944,24519905280236082,24519907477236870],[469762176,70368946028544,-26495209992202640,-26495207784975390],[469762176,70369013137536,-26495209992202640,-26495207784975390],[469762176,70369147355136,24519905280236082,24519907477236870],[469762176,70369214464128,-1975303142599947,-1975301877105131],[469762304,68158720,-1975303127852212,-1975301891852867],[469762304,202376192,1975301891852867,1975303127852212],[469762304,269485312,1975301891852867,1975303127852212],[469762304,403702784,-1975303127852212,-1975301891852867],[469763072,1179648,-13247605061599516,-13247603826989498],[469763072,1572864,13247603826989498,13247605061599516],[469763072,67109888,1975300784114970,1975304235590111],[469763072,67634304,1975301917236486,1975303102468593],[469763072,68158592,1975301917236486,1975303102468593],[469763072,68158720,1975301891852867,1975303127852212],[469763072,68160512,1975301885638544,1975303134066536],[469763072,68682752,45089206614383552,45089208861152192],[469763072,70255616,22544603251852693,22544604485915178],[469763072,134743168,4648499087034444,4648500337554984],[469763072,135398400,-13247605061599516,-13247603826989498],[469763072,135791616,15222905744259616,15222908164034477],[469763072,201326592,-1975304235590111,-1975300784114970],[469763072,201851008,-6623803284297315,-6623801159997192],[469763072,202375296,-1975303102468593,-1975301917236486],[469763072,202375424,-1975303127852212,-1975301891852867],[469763072,202377216,-1975303134066536,-1975301885638544],[469763072,202899456,-47064511822048211,-47064508673192612],[469763072,204472320,-22544604485915178,-22544603251852693],[469763072,268436480,-1975304235590111,-1975300784114970],[469763072,268960896,-6623803284297315,-6623801159997192],[469763072,269485184,-1975303102468593,-1975301917236486],[469763072,269485312,-1975303127852212,-1975301891852867],[469763072,269487104,-1975303134066536,-1975301885638544],[469763072,270009344,-47064511822048211,-47064508673192612],[469763072,271582208,-22544604485915178,-22544603251852693],[469763072,336068736,4648499087034444,4648500337554984],[469763072,336723968,-13247605061599516,-13247603826989498],[469763072,337117184,15222905744259616,15222908164034477],[469763072,402653184,1975300784114970,1975304235590111],[469763072,403177600,1975301917236486,1975303102468593],[469763072,403701888,1975301917236486,1975303102468593],[469763072,403702016,1975301891852867,1975303127852212],[469763072,403703808,1975301885638544,1975303134066536],[469763072,404226048,45089206614383552,45089208861152192],[469763072,405798912,22544603251852693,22544604485915178],[469763072,470942720,-13247605061599516,-13247603826989498],[469763072,471335936,13247603826989498,13247605061599516],[469763072,605029376,-24519907464643494,-24519905292829457],[469763072,739246080,24519905292829457,24519907464643494],[469763072,806355968,24519905292829457,24519907464643494],[469763072,940572672,-24519907464643494,-24519905292829457],[469763072,1074790400,-13247605033203059,-13247603855385956],[469763072,1209009152,-13247605033203059,-13247603855385956],[469763072,1410334720,-13247605033203059,-13247603855385956],[469763072,1544553472,-13247605033203059,-13247603855385956],[469763072,17592187092992,-13247605076872486,-13247603811716528],[469763072,17592321311744,-13247605076872486,-13247603811716528],[469763072,17592522637312,-13247605076872486,-13247603811716528],[469763072,17592656856064,-13247605076872486,-13247603811716528],[469763072,35184373137408,13247603811716528,13247605076872486],[469763072,35184507356160,13247603811716528,13247605076872486],[469763072,35184708681728,13247603811716528,13247605076872486],[469763072,35184842900480,13247603811716528,13247605076872486],[469763072,70368812336128,-3950606127442978,-3950603911967182],[469763072,70368946552832,3950603911967182,3950606127442978],[469763072,70369013662720,3950603911967182,3950606127442978],[469763072,70369147879424,-3950606127442978,-3950603911967182],[469764096,68160512,-1975303134066536,-1975301885638544],[469764096,70256640,-22544604485915178,-22544603251852693],[469764096,202376192,1975301885638544,1975303134066536],[469764096,204472320,22544603251852693,22544604485915178],[469764096,269487104,1975301885638544,1975303134066536],[469764096,271583232,22544603251852693,22544604485915178],[469764096,403702784,-1975303134066536,-1975301885638544],[469764096,405798912,-22544604485915178,-22544603251852693],[469764096,606078976,-1975303127512529,-1975301892192548],[469764096,740294656,1975301892192548,1975303127512529],[469764096,807405568,1975301892192548,1975303127512529],[469764096,941621248,-1975303127512529,-1975301892192548],[469794816,134381572,1975301917270118,1975303102434961],[469794816,134381576,4648499087034444,4648500337554984],[469794816,201457668,-1975303102434961,-1975301917270118],[469794816,201457672,-4648500337554984,-4648499087034444],[469794816,268599300,-1975303102434961,-1975301917270118],[469794816,268599304,-4648500337554984,-4648499087034444],[469794816,335675396,1975301917270118,1975303102434961],[469794816,335675400,4648499087034444,4648500337554984],[469794816,1207992324,-13247605033203059,-13247603855385956],[469794816,1275068420,13247603855385956,13247605033203059],[469794816,1342210052,13247603855385956,13247605033203059],[469794816,1409286148,-13247605033203059,-13247603855385956],[469893120,524296,1975301889643525,1975303130061553],[469893120,1048584,-1975303130061553,-1975301889643525],[469893120,67764232,-20569302596271653,-20569300121791140],[469893120,67764352,-1975303134066536,-1975301885638544],[469893120,68288520,-1975303130061553,-1975301889643525],[469893120,134381576,-6623803284330947,-6623801159963560],[469893120,134873096,-8599106519519277,-8599102944480312],[469893120,134873216,-4648500367937249,-4648499056652180],[469893120,201359368,6623801159963560,6623803284330947],[469893120,201850888,31143706348854335,31143710852913125],[469893120,201851008,6623801098016986,6623803346277523],[469893120,268599304,6623801159963560,6623803284330947],[469893120,269090824,31143706348854335,31143710852913125],[469893120,269090944,6623801098016986,6623803346277523],[469893120,335577096,-6623803284330947,-6623801159963560],[469893120,336068616,-8599106519519277,-8599102944480312],[469893120,336068736,-4648500367937249,-4648499056652180],[469893120,403177480,-20569302596271653,-20569300121791140],[469893120,403177600,-1975303134066536,-1975301885638544],[469893120,403701768,-1975303130061553,-1975301889643525],[469893120,470417416,1975301889643525,1975303130061553],[469893120,470941704,-1975303130061553,-1975301889643525],[469893120,536870920,-1975303127512529,-1975301892192548],[469893120,604110856,-1975303127512529,-1975301892192548],[469893120,939524104,-1975303127512529,-1975301892192548],[469893120,1006764040,-1975303127512529,-1975301892192548],[469893120,1208090632,6623801159963560,6623803284330947],[469893120,1275068424,-6623803284330947,-6623801159963560],[469893120,1342308360,-6623803284330947,-6623801159963560],[469893120,1409286152,6623801159963560,6623803284330947],[469893120,17592320393224,9296998263946318,9297000585232538],[469893120,17592387371016,-9297000585232538,-9296998263946318],[469893120,17592454610952,-9297000585232538,-9296998263946318],[469893120,17592521588744,9296998263946318,9297000585232538],[469893120,35184372088840,1975301877105131,1975303142599947],[469893120,35184439328776,1975301877105131,1975303142599947],[469893120,35184774742024,1975301877105131,1975303142599947],[469893120,35184841981960,1975301877105131,1975303142599947],[469893120,70368744177672,-1975303142599947,-1975301877105131],[469893120,70368811417608,-1975303142599947,-1975301877105131],[469893120,70369146830856,-1975303142599947,-1975301877105131],[469893120,70369214070792,-1975303142599947,-1975301877105131],[469893130,134217730,-4648500364875210,-4648499059714221],[469893130,134217736,4648499059714221,4648500364875210],[469893130,201457666,-4648500364875210,-4648499059714221],[469893130,201457672,4648499059714221,4648500364875210],[469893130,268435458,4648499059714221,4648500364875210],[469893130,268435464,-4648500364875210,-4648499059714221],[469893130,335675394,4648499059714221,4648500364875210],[469893130,335675400,-4648500364875210,-4648499059714221],[469893132,134217732,-4648500337554984,-4648499087034444],[469893132,134217736,4648499087034444,4648500337554984],[469893132,201457668,-4648500337554984,-4648499087034444],[469893132,201457672,4648499087034444,4648500337554984],[469893132,268435460,4648499087034444,4648500337554984],[469893132,268435464,-4648500337554984,-4648499087034444],[469893132,335675396,4648499087034444,4648500337554984],[469893132,335675400,-4648500337554984,-4648499087034444],[469893256,134217736,4648499056652180,4648500367937249],[469893256,134217856,-4648500367937249,-4648499056652180],[469893256,201457672,4648499056652180,4648500367937249],[469893256,201457792,-4648500367937249,-4648499056652180],[469893256,268435464,-4648500367937249,-4648499056652180],[469893256,268435584,4648499056652180,4648500367937249],[469893256,335675400,-4648500367937249,-4648499056652180],[469893256,335675520,4648499056652180,4648500367937249],[469925892,134217732,-1975303102434961,-1975301917270118],[469925892,134250496,1975301917270118,1975303102434961],[469925892,201457668,-1975303102434961,-1975301917270118],[469925892,201490432,1975301917270118,1975303102434961],[469925892,268435460,1975301917270118,1975303102434961],[469925892,268468224,-1975303102434961,-1975301917270118],[469925892,335675396,1975301917270118,1975303102434961],[469925892,335708160,-1975303102434961,-1975301917270118],[469925896,134217736,1975301917270118,1975303102434961],[469925896,134250496,4648499087034444,4648500337554984],[469925896,134348800,-6623803284330947,-6623801159963560],[469925896,201359368,6623801159963560,6623803284330947],[469925896,201457672,-4648500337554984,-4648499087034444],[469925896,201490432,-1975303102434961,-1975301917270118],[469925896,268435464,-1975303102434961,-1975301917270118],[469925896,268468224,-4648500337554984,-4648499087034444],[469925896,268566528,6623801159963560,6623803284330947],[469925896,335577096,-6623803284330947,-6623801159963560],[469925896,335675400,4648499087034444,4648500337554984],[469925896,335708160,1975301917270118,1975303102434961],[470286336,131200,-13247605061599516,-13247603826989498],[470286336,1048704,1975301889643525,1975303130061553],[470286336,67764352,24519905292829457,24519907464643494],[470286336,68681856,-3950608753660642,-3950601285749510],[470286336,68682752,15222905744246613,15222908164047479],[470286336,134873096,17896102849092541,17896105464085903],[470286336,134873216,-42416014569192714,-42416006501458678],[470286336,135790720,6623801159963560,6623803284330947],[470286336,201457672,-17896105464085903,-17896102849092541],[470286336,201457792,4648494894531634,4648504530057793],[470286336,202375296,-697899197873155,-697890187306122],[470286336,202376192,-15222908164047479,-15222905744246613],[470286336,269090824,-17896105464085903,-17896102849092541],[470286336,269090944,4648494894531634,4648504530057793],[470286336,270008448,-697899197873155,-697890187306122],[470286336,270009344,-15222908164047479,-15222905744246613],[470286336,335675400,17896102849092541,17896105464085903],[470286336,335675520,-42416014569192714,-42416006501458678],[470286336,336593024,6623801159963560,6623803284330947],[470286336,402784384,24519905292829457,24519907464643494],[470286336,403701888,-3950608753660642,-3950601285749510],[470286336,403702784,15222905744246613,15222908164047479],[470286336,470417536,-13247605061599516,-13247603826989498],[470286336,471335040,1975301889643525,1975303130061553],[470286336,536871040,1975301892192548,1975303127512529],[470286336,604504192,-24519907464643494,-24519905292829457],[470286336,738197632,26495207798821558,26495209978356470],[470286336,805830784,26495207798821558,26495209978356470],[470286336,939524224,-24519907464643494,-24519905292829457],[470286336,1007157376,1975301892192548,1975303127512529],[470286336,1073741952,-13247605033203059,-13247603855385956],[470286336,1208483968,-6623803284330947,-6623801159963560],[470286336,1275068544,-6623803271301876,-6623801172992632],[470286336,1342701696,-6623803271301876,-6623801172992632],[470286336,1409286272,-6623803284330947,-6623801159963560],[470286336,1544028288,-13247605033203059,-13247603855385956],[470286336,17592186044544,-13247605076872486,-13247603811716528],[470286336,17592320786560,-24519907512775874,-24519905244697076],[470286336,17592387371136,11272300798196740,11272303070687196],[470286336,17592455004288,11272300798196740,11272303070687196],[470286336,17592521588864,-24519907512775874,-24519905244697076],[470286336,17592656330880,-13247605076872486,-13247603811716528],[470286336,35184372088960,11272301153102595,11272302715781341],[470286336,35184439722112,20569300415763760,20569302302299032],[470286336,35184506830976,15222905973445933,15222907934848161],[470286336,35184573415552,-24519907494573587,-24519905262899363],[470286336,35184641048704,-24519907494573587,-24519905262899363],[470286336,35184707633280,15222905973445933,15222907934848161],[470286336,35184774742144,20569300415763760,20569302302299032],[470286336,35184842375296,11272301153102595,11272302715781341],[470286336,70368744177792,1975301877105131,1975303142599947],[470286336,70368811810944,-24519907477236870,-24519905280236082],[470286336,70368945504384,26495207784975390,26495209992202640],[470286336,70369013137536,26495207784975390,26495209992202640],[470286336,70369146830976,-24519907477236870,-24519905280236082],[470286336,70369214464128,1975301877105131,1975303142599947],[470286472,67108872,1975301885638544,1975303134066536],[470286472,67108992,-1975303134066536,-1975301885638544],[470286472,134217736,4648499056652180,4648500367937249],[470286472,134217856,-4648500367937249,-4648499056652180],[470286472,201850888,6623801098016986,6623803346277523],[470286472,201851008,-6623803346277523,-6623801098016986],[470286472,268435464,-6623803346277523,-6623801098016986],[470286472,268435584,6623801098016986,6623803346277523],[470286472,336068616,-4648500367937249,-4648499056652180],[470286472,336068736,4648499056652180,4648500367937249],[470286472,403177480,-1975303134066536,-1975301885638544],[470286472,403177600,1975301885638544,1975303134066536],[470286528,67108928,1975301891852867,1975303127852212],[470286528,67108992,-1975303127852212,-1975301891852867],[470286528,134217792,4648499059714221,4648500364875210],[470286528,134217856,-4648500364875210,-4648499059714221],[470286528,201850944,6623801107293350,6623803337001160],[470286528,201851008,-6623803337001160,-6623801107293350],[470286528,268435520,-6623803337001160,-6623801107293350],[470286528,268435584,6623801107293350,6623803337001160],[470286528,336068672,-4648500364875210,-4648499059714221],[470286528,336068736,4648499059714221,4648500364875210],[470286528,403177536,-1975303127852212,-1975301891852867],[470286528,403177600,1975301891852867,1975303127852212],[470287488,67108992,-1975303102468593,-1975301917236486],[470287488,67109888,1975301917236486,1975303102468593],[470287488,134217856,-4648500337554984,-4648499087034444],[470287488,134218752,4648499087034444,4648500337554984],[470287488,201851008,-6623803284297315,-6623801159997192],[470287488,201851904,6623801159997192,6623803284297315],[470287488,268435584,6623801159997192,6623803284297315],[470287488,268436480,-6623803284297315,-6623801159997192],[470287488,336068736,4648499087034444,4648500337554984],[470287488,336069632,-4648500337554984,-4648499087034444],[470287488,403177600,1975301917236486,1975303102468593],[470287488,403178496,-1975303102468593,-1975301917236486],[470417416,524296,1975301889643525,1975303130061553],[470417416,655360,-1975303130061553,-1975301889643525],[470417416,67108872,22544603251852693,22544604485915178],[470417416,67239936,-22544604485915178,-22544603251852693],[470417416,134217736,-22544606473695306,-22544601264072564],[470417416,134348800,31143705027114464,31143712174652992],[470417416,134742016,4648499056652180,4648500367937249],[470417416,134873096,13247603792440361,13247605096148654],[470417416,201326592,-13247605096148654,-13247603792440361],[470417416,201457672,-4648500367937249,-4648499056652180],[470417416,201850888,-6623806726760819,-6623797717533688],[470417416,201981952,-1975306045508212,-1975298974196867],[470417416,268435464,-1975306045508212,-1975298974196867],[470417416,268566528,-6623806726760819,-6623797717533688],[470417416,268959744,-4648500367937249,-4648499056652180],[470417416,269090824,-13247605096148654,-13247603792440361],[470417416,335544320,13247603792440361,13247605096148654],[470417416,335675400,4648499056652180,4648500367937249],[470417416,336068616,31143705027114464,31143712174652992],[470417416,336199680,-22544606473695306,-22544601264072564],[470417416,403177480,-22544604485915178,-22544603251852693],[470417416,403308544,22544603251852693,22544604485915178],[470417416,469762056,-1975303130061553,-1975301889643525],[470417416,469893120,1975301889643525,1975303130061553],[470417536,131200,-13247605061599516,-13247603826989498],[470417536,655360,13247603826989498,13247605061599516],[470417536,67108992,-9297000658925680,-9296998190253177],[470417536,67239936,-1975303134066536,-1975301885638544],[470417536,67633152,11272300231229941,11272303637653996],[470417536,134217856,-3950606322255178,-3950603717154982],[470417536,134348800,-6623803529731050,-6623800914563458],[470417536,134742016,8599102944480312,8599106519519277],[470417536,134873216,-1975303161793801,-1975301857911278],[470417536,201326592,1975301857911278,1975303161793801],[470417536,201457792,-33119013675915179,-33119008545557361],[470417536,201851008,8599102955928264,8599106508071324],[470417536,201981952,26495207121529005,26495210655649026],[470417536,268435584,26495207121529005,26495210655649026],[470417536,268566528,8599102955928264,8599106508071324],[470417536,268959744,-33119013675915179,-33119008545557361],[470417536,269090944,1975301857911278,1975303161793801],[470417536,335544320,-1975303161793801,-1975301857911278],[470417536,335675520,8599102944480312,8599106519519277],[470417536,336068736,-6623803529731050,-6623800914563458],[470417536,336199680,-3950606322255178,-3950603717154982],[470417536,402784384,11272300231229941,11272303637653996],[470417536,403177600,-1975303134066536,-1975301885638544],[470417536,403308544,-9297000658925680,-9296998190253177],[470417536,469762176,13247603826989498,13247605061599516],[470417536,470286336,-13247605061599516,-13247603826989498],[470810624,132096,13247603826989498,13247605061599516],[470810624,525312,-13247605061599516,-13247603826989498],[470810624,68681856,-1975303102468593,-1975301917236486],[470810624,68682752,-47064511822081843,-47064508673158980],[470810624,70255616,-24519907464643494,-24519905292829457],[470810624,135398400,13247603826989498,13247605061599516],[470810624,135790720,-4648500337554984,-4648499087034444],[470810624,135791616,-15222908164034477,-15222905744259616],[470810624,201851008,6623801159997192,6623803284297315],[470810624,201851904,49039810731968040,49039814782977862],[470810624,203424768,24519905292829457,24519907464643494],[470810624,270008448,6623801159997192,6623803284297315],[470810624,270009344,49039810731968040,49039814782977862],[470810624,271582208,24519905292829457,24519907464643494],[470810624,335676416,13247603826989498,13247605061599516],[470810624,336068736,-4648500337554984,-4648499087034444],[470810624,336069632,-15222908164034477,-15222905744259616],[470810624,403177600,-1975303102468593,-1975301917236486],[470810624,403178496,-47064511822081843,-47064508673158980],[470810624,404751360,-24519907464643494,-24519905292829457],[470810624,470942720,13247603826989498,13247605061599516],[470810624,471335936,-13247605061599516,-13247603826989498],[470810624,605029376,24519905292829457,24519907464643494],[470810624,738198528,-24519907464643494,-24519905292829457],[470810624,806355968,-24519907464643494,-24519905292829457],[470810624,939525120,24519905292829457,24519907464643494],[470810624,1073742848,13247603855385956,13247605033203059],[470810624,1209009152,13247603855385956,13247605033203059],[470810624,1409287168,13247603855385956,13247605033203059],[470810624,1544553472,13247603855385956,13247605033203059],[470810624,17592186045440,13247603811716528,13247605076872486],[470810624,17592321311744,13247603811716528,13247605076872486],[470810624,17592521589760,13247603811716528,13247605076872486],[470810624,17592656856064,13247603811716528,13247605076872486],[470810624,35184372089856,-13247605076872486,-13247603811716528],[470810624,35184507356160,-13247605076872486,-13247603811716528],[470810624,35184707634176,-13247605076872486,-13247603811716528],[470810624,35184842900480,-13247605076872486,-13247603811716528],[470810624,70368812336128,3950603911967182,3950606127442978],[470810624,70368945505280,-3950606127442978,-3950603911967182],[470810624,70369013662720,-3950606127442978,-3950603911967182],[470810624,70369146831872,3950603911967182,3950606127442978],[470811776,67108992,-1975303102468593,-1975301917236486],[470811776,67109888,1975301917236486,1975303102468593],[470811776,202375296,-1975303102468593,-1975301917236486],[470811776,202376192,1975301917236486,1975303102468593],[470811776,268435584,1975301917236486,1975303102468593],[470811776,268436480,-1975303102468593,-1975301917236486],[470811776,403701888,1975301917236486,1975303102468593],[470811776,403702784,-1975303102468593,-1975301917236486],[470811904,67109120,-1975303127852212,-1975301891852867],[470811904,67109888,1975301891852867,1975303127852212],[470811904,202375424,-1975303127852212,-1975301891852867],[470811904,202376192,1975301891852867,1975303127852212],[470811904,268435712,1975301891852867,1975303127852212],[470811904,268436480,-1975303127852212,-1975301891852867],[470811904,403702016,1975301891852867,1975303127852212],[470811904,403702784,-1975303127852212,-1975301891852867],[470813696,67109888,1975301885638544,1975303134066536],[470813696,67110912,-1975303134066536,-1975301885638544],[470813696,202376192,1975301885638544,1975303134066536],[470813696,202377216,-1975303134066536,-1975301885638544],[470813696,268436480,-1975303134066536,-1975301885638544],[470813696,268437504,1975301885638544,1975303134066536],[470813696,403702784,-1975303134066536,-1975301885638544],[470813696,403703808,1975301885638544,1975303134066536],[470941704,1048584,-1975303130061553,-1975301889643525],[470941704,1179648,1975301889643525,1975303130061553],[470941704,134217736,1975301889643525,1975303130061553],[470941704,134348800,-1975303130061553,-1975301889643525],[470941704,336592904,-1975303130061553,-1975301889643525],[470941704,336723968,1975301889643525,1975303130061553],[470941704,469762056,1975301889643525,1975303130061553],[470941704,469893120,-1975303130061553,-1975301889643525],[470942720,132096,13247603826989498,13247605061599516],[470942720,1179648,-13247605061599516,-13247603826989498],[470942720,67109888,-13247605061599516,-13247603826989498],[470942720,68157440,13247603826989498,13247605061599516],[470942720,402785280,13247603826989498,13247605061599516],[470942720,403832832,-13247605061599516,-13247603826989498],[470942720,469763072,-13247605061599516,-13247603826989498],[470942720,470810624,13247603826989498,13247605061599516],[471335040,1048704,1975301889643525,1975303130061553],[471335040,1572864,-1975303130061553,-1975301889643525],[471335040,67108992,-45089208861152192,-45089206614383552],[471335040,67633152,47064508673158980,47064511822081843],[471335040,68157440,-3950606232509516,-3950603806900640],[471335040,68681856,-1975303130040923,-1975301889664154],[471335040,134217856,-3950606232496514,-3950603806913643],[471335040,134742016,8599103049607085,8599106414392500],[471335040,135266304,-4648500337554984,-4648499087034444],[471335040,201326592,1975301889664154,1975303130040923],[471335040,201851008,8599103049661346,8599106414338238],[471335040,202375296,-53688314809147586,-53688310130387744],[471335040,202899456,47064508673192612,47064511822048211],[471335040,268435584,47064508673192612,47064511822048211],[471335040,268959744,-53688314809147586,-53688310130387744],[471335040,269484032,8599103049661346,8599106414338238],[471335040,270008448,1975301889664154,1975303130040923],[471335040,336068736,-4648500337554984,-4648499087034444],[471335040,336593024,8599103049607085,8599106414392500],[471335040,337117184,-3950606232496514,-3950603806913643],[471335040,402653184,-1975303130040923,-1975301889664154],[471335040,403177600,-3950606232509516,-3950603806900640],[471335040,403701888,47064508673158980,47064511822081843],[471335040,404226048,-45089208861152192,-45089206614383552],[471335040,469762176,-1975303130061553,-1975301889643525],[471335040,470286336,1975301889643525,1975303130061553],[471335936,525312,-13247605061599516,-13247603826989498],[471335936,1572864,13247603826989498,13247605061599516],[471335936,67109888,18593996492884744,18594001205472974],[471335936,67633152,1975301917236486,1975303102468593],[471335936,68157440,-7321700188594704,-7321693640879080],[471335936,68682752,13247603827010127,13247605061578886],[471335936,134218752,1975301917270118,1975303102434961],[471335936,135266304,-1975303102434961,-1975301917270118],[471335936,201326592,-13247605061578886,-13247603827010127],[471335936,201851904,-3950609211113582,-3950600828296569],[471335936,202376192,-1975303102468593,-1975301917236486],[471335936,202899456,-7321700188581701,-7321693640892082],[471335936,268436480,-7321700188581701,-7321693640892082],[471335936,268959744,-1975303102468593,-1975301917236486],[471335936,269484032,-3950609211113582,-3950600828296569],[471335936,270009344,-13247605061578886,-13247603827010127],[471335936,336069632,-1975303102434961,-1975301917270118],[471335936,337117184,1975301917270118,1975303102434961],[471335936,402653184,13247603827010127,13247605061578886],[471335936,403178496,-7321700188594704,-7321693640879080],[471335936,403702784,1975301917236486,1975303102468593],[471335936,404226048,18593996492884744,18594001205472974],[471335936,469763072,13247603826989498,13247605061599516],[471335936,470810624,-13247605061599516,-13247603826989498],[471859200,70255616,1975301885638544,1975303134066536],[471859200,70256640,22544603251852693,22544604485915178],[471859200,202376192,-1975303134066536,-1975301885638544],[471859200,202377216,-22544604485915178,-22544603251852693],[471859200,271582208,-1975303134066536,-1975301885638544],[471859200,271583232,-22544604485915178,-22544603251852693],[471859200,403702784,1975301885638544,1975303134066536],[471859200,403703808,22544603251852693,22544604485915178],[471859200,606078976,1975301892192548,1975303127512529],[471859200,738199552,-1975303127512529,-1975301892192548],[471859200,807405568,-1975303127512529,-1975301892192548],[471859200,939526144,1975301892192548,1975303127512529],[472908800,67109888,22544603251852693,22544604485915178],[472908800,68157440,-24519907464643494,-24519905292829457],[472908800,69206016,1975301885638544,1975303134066536],[472908800,202376192,-1975303134066536,-1975301885638544],[472908800,203424768,24519905292829457,24519907464643494],[472908800,204472320,-22544604485915178,-22544603251852693],[472908800,268436480,-22544604485915178,-22544603251852693],[472908800,269484032,24519905292829457,24519907464643494],[472908800,270532608,-1975303134066536,-1975301885638544],[472908800,403702784,1975301885638544,1975303134066536],[472908800,404751360,-24519907464643494,-24519905292829457],[472908800,405798912,22544603251852693,22544604485915178],[472909824,67110912,-22544604485915178,-22544603251852693],[472909824,69206016,22544603251852693,22544604485915178],[472909824,202377216,-22544604485915178,-22544603251852693],[472909824,204472320,22544603251852693,22544604485915178],[472909824,268437504,22544603251852693,22544604485915178],[472909824,270532608,-22544604485915178,-22544603251852693],[472909824,403703808,22544603251852693,22544604485915178],[472909824,405798912,-22544604485915178,-22544603251852693],[536870920,2100352,-1975303127512530,-1975301892192549],[536870920,3146880,-22544604485915178,-22544603251852693],[536870920,3670144,13247603826875223,13247605061713792],[536870920,3801088,13247603827702546,13247605060886466],[536870920,135267456,-1975303134066535,-1975301885638543],[536870920,135790720,13247603821511848,13247605067077166],[536870920,135921664,13247603826875223,13247605061713792],[536870920,403177600,-1975303134066536,-1975301885638544],[536870920,403308544,-22544604485915178,-22544603251852693],[536870920,469893120,-1975303127512529,-1975301892192548],[536870920,538971272,-1975303127512530,-1975301892192549],[536870920,540017800,-22544604485915178,-22544603251852693],[536870920,540541064,13247603826875223,13247605061713792],[536870920,540672008,13247603827702546,13247605060886466],[536870920,672138376,-1975303134066535,-1975301885638543],[536870920,672661640,13247603821511848,13247605067077166],[536870920,672792584,13247603826875223,13247605061713792],[536870920,940048520,-1975303134066536,-1975301885638544],[536870920,940179464,-22544604485915178,-22544603251852693],[536870920,1006764040,-1975303127512529,-1975301892192548],[536871040,2100232,1975301892192549,1975303127512530],[536871040,3146760,22544603251852693,22544604485915178],[536871040,3670024,-13247605061713792,-13247603826875223],[536871040,3801088,-13247605060886466,-13247603827702546],[536871040,135267336,1975301885638543,1975303134066535],[536871040,135790600,-13247605067077166,-13247603821511848],[536871040,135921664,-13247605061713792,-13247603826875223],[536871040,403177480,1975301885638544,1975303134066536],[536871040,403308544,22544603251852693,22544604485915178],[536871040,470286336,1975301892192548,1975303127512529],[536871040,538971272,1975301892192549,1975303127512530],[536871040,540017800,22544603251852693,22544604485915178],[536871040,540541064,-13247605061713792,-13247603826875223],[536871040,540672128,-13247605060886466,-13247603827702546],[536871040,672138376,1975301885638543,1975303134066535],[536871040,672661640,-13247605067077166,-13247603821511848],[536871040,672792704,-13247605061713792,-13247603826875223],[536871040,940048520,1975301885638544,1975303134066536],[536871040,940179584,22544603251852693,22544604485915178],[536871040,1007157376,1975301892192548,1975303127512529],[536872072,2100232,1975301892192549,1975303127512530],[536872072,2100352,-1975303127512530,-1975301892192549],[536872072,3146760,22544603251852693,22544604485915178],[536872072,3146880,-22544604485915178,-22544603251852693],[536872072,135267336,1975301885638543,1975303134066535],[536872072,135267456,-1975303134066535,-1975301885638543],[536872072,538970120,-1975303127512530,-1975301892192549],[536872072,538970240,1975301892192549,1975303127512530],[536872072,540016648,-22544604485915178,-22544603251852693],[536872072,540016768,22544603251852693,22544604485915178],[536872072,672137224,-1975303134066535,-1975301885638543],[536872072,672137344,1975301885638543,1975303134066535],[536873992,2097280,-1975303127512530,-1975301892192549],[536873992,2098312,-1975303127512530,-1975301892192549],[536873992,538970240,-1975303127512530,-1975301892192549],[536873992,538971272,-1975303127512530,-1975301892192549],[536874112,2097160,1975301892192549,1975303127512530],[536874112,2098312,1975301892192549,1975303127512530],[536874112,538970120,1975301892192549,1975303127512530],[536874112,538971272,1975301892192549,1975303127512530],[537001984,3670024,-13247605060886466,-13247603827702546],[537001984,3670144,-13247605061713792,-13247603826875223],[537001984,3671040,22544603251852693,22544604485915178],[537001984,3672064,1975301892192549,1975303127512530],[537001984,135790600,-13247605061713792,-13247603826875223],[537001984,135790720,-13247605067077166,-13247603821511848],[537001984,135791616,1975301885638543,1975303134066535],[537001984,403177480,22544603251852693,22544604485915178],[537001984,403177600,1975301885638544,1975303134066536],[537001984,469762056,1975301892192548,1975303127512529],[537001984,540672008,-13247605060886466,-13247603827702546],[537001984,540672128,-13247605061713792,-13247603826875223],[537001984,540673024,22544603251852693,22544604485915178],[537001984,540674048,1975301892192549,1975303127512530],[537001984,672792584,-13247605061713792,-13247603826875223],[537001984,672792704,-13247605067077166,-13247603821511848],[537001984,672793600,1975301885638543,1975303134066535],[537001984,940179464,22544603251852693,22544604485915178],[537001984,940179584,1975301885638544,1975303134066536],[537001984,1006764040,1975301892192548,1975303127512529],[537395200,3276928,26495207805375563,26495209971802464],[537395200,3277824,-22544604485915178,-22544603251852693],[537395200,3278848,-1975303127512530,-1975301892192549],[537395200,135397504,26495207799184865,26495209977993164],[537395200,135398400,-1975303134066535,-1975301885638543],[537395200,402784384,-24519907464643494,-24519905292829457],[537395200,469762176,-1975303127512529,-1975301892192548],[537395200,540672128,26495207805375563,26495209971802464],[537395200,540673024,-22544604485915178,-22544603251852693],[537395200,540674048,-1975303127512530,-1975301892192549],[537395200,672792704,26495207799184865,26495209977993164],[537395200,672793600,-1975303134066535,-1975301885638543],[537395200,940179584,-24519907464643494,-24519905292829457],[537395200,1007157376,-1975303127512529,-1975301892192548],[537395336,3670024,-13247605061713792,-13247603826875223],[537395336,3670144,13247603826875223,13247605061713792],[537395336,135790600,-13247605067077166,-13247603821511848],[537395336,135790720,13247603821511848,13247605067077166],[537395336,403177480,1975301885638544,1975303134066536],[537395336,403177600,-1975303134066536,-1975301885638544],[537395336,540016648,13247603826875223,13247605061713792],[537395336,540016768,-13247605061713792,-13247603826875223],[537395336,672137224,13247603821511848,13247605067077166],[537395336,672137344,-13247605067077166,-13247603821511848],[537395336,939524104,-1975303134066536,-1975301885638544],[537395336,939524224,1975301885638544,1975303134066536],[537526280,3670024,-13247605060886466,-13247603827702546],[537526280,3801088,13247603827702546,13247605060886466],[537526280,135790600,-13247605061713792,-13247603826875223],[537526280,135921664,13247603826875223,13247605061713792],[537526280,403177480,22544603251852693,22544604485915178],[537526280,403308544,-22544604485915178,-22544603251852693],[537526280,540016648,13247603827702546,13247605060886466],[537526280,540147712,-13247605060886466,-13247603827702546],[537526280,672137224,13247603826875223,13247605061713792],[537526280,672268288,-13247605061713792,-13247603826875223],[537526280,939524104,-22544604485915178,-22544603251852693],[537526280,939655168,22544603251852693,22544604485915178],[537526400,3276928,26495207805375563,26495209971802464],[537526400,3670144,-13247605061713792,-13247603826875223],[537526400,3801088,-13247605060886466,-13247603827702546],[537526400,135397504,26495207799184865,26495209977993164],[537526400,135790720,-13247605067077166,-13247603821511848],[537526400,135921664,-13247605061713792,-13247603826875223],[537526400,402784384,-24519907464643494,-24519905292829457],[537526400,403177600,1975301885638544,1975303134066536],[537526400,403308544,22544603251852693,22544604485915178],[537526400,540016768,-13247605060886466,-13247603827702546],[537526400,540147712,-13247605061713792,-13247603826875223],[537526400,540540928,26495207805375563,26495209971802464],[537526400,672137344,-13247605061713792,-13247603826875223],[537526400,672268288,-13247605067077166,-13247603821511848],[537526400,672661504,26495207799184865,26495209977993164],[537526400,939524224,22544603251852693,22544604485915178],[537526400,939655168,1975301885638544,1975303134066536],[537526400,940048384,-24519907464643494,-24519905292829457],[537527296,3277824,-26495209971802464,-26495207805375563],[537527296,3671040,26495207805375563,26495209971802464],[537527296,135398400,-26495209977993164,-26495207799184865],[537527296,135791616,26495207799184865,26495209977993164],[537527296,540147712,26495207805375563,26495209971802464],[537527296,540540928,-26495209971802464,-26495207805375563],[537527296,672268288,26495207799184865,26495209977993164],[537527296,672661504,-26495209977993164,-26495207799184865],[537920520,2097280,-22544604485915178,-22544603251852693],[537920520,2098312,-22544604485915178,-22544603251852693],[537920520,134217856,-1975303134066535,-1975301885638543],[537920520,134218888,-1975303134066535,-1975301885638543],[537920520,540016768,-22544604485915178,-22544603251852693],[537920520,540017800,-22544604485915178,-22544603251852693],[537920520,672137344,-1975303134066535,-1975301885638543],[537920520,672138376,-1975303134066535,-1975301885638543],[537920640,2097160,22544603251852693,22544604485915178],[537920640,2098312,22544603251852693,22544604485915178],[537920640,134217736,1975301885638543,1975303134066535],[537920640,134218888,1975301885638543,1975303134066535],[537920640,540016648,22544603251852693,22544604485915178],[537920640,540017800,22544603251852693,22544604485915178],[537920640,672137224,1975301885638543,1975303134066535],[537920640,672138376,1975301885638543,1975303134066535],[538050688,2621440,-26495209971802464,-26495207805375563],[538050688,2752640,-26495209971802464,-26495207805375563],[538050688,134742016,-26495209977993164,-26495207799184865],[538050688,134873216,-26495209977993164,-26495207799184865],[538050688,540540928,-26495209971802464,-26495207805375563],[538050688,540672128,-26495209971802464,-26495207805375563],[538050688,672661504,-26495209977993164,-26495207799184865],[538050688,672792704,-26495209977993164,-26495207799184865],[538051584,2621440,22544603251852693,22544604485915178],[538051584,2753536,26495207805375563,26495209971802464],[538051584,3801088,-3950606098159314,-3950603941250842],[538051584,134742016,1975301885638543,1975303134066535],[538051584,134874112,26495207799184865,26495209977993164],[538051584,135921664,-24519907464643494,-24519905292829457],[538051584,539493376,-3950606098159314,-3950603941250842],[538051584,540540928,26495207805375563,26495209971802464],[538051584,540673024,22544603251852693,22544604485915178],[538051584,671613952,-24519907464643494,-24519905292829457],[538051584,672661504,26495207799184865,26495209977993164],[538051584,672793600,1975301885638543,1975303134066535],[538052608,2621440,3950603941250842,3950606098159314],[538052608,3801088,3950603941250842,3950606098159314],[538052608,539494400,3950603941250842,3950606098159314],[538052608,540674048,3950603941250842,3950606098159314],[538443784,2097280,13247603826875223,13247605061713792],[538443784,2228224,13247603827702546,13247605060886466],[538443784,2621576,13247603826875223,13247605061713792],[538443784,2752520,13247603827702546,13247605060886466],[538443784,134217856,13247603821511848,13247605067077166],[538443784,134348800,13247603826875223,13247605061713792],[538443784,134742152,13247603821511848,13247605067077166],[538443784,134873096,13247603826875223,13247605061713792],[538443784,540016768,13247603826875223,13247605061713792],[538443784,540147712,13247603827702546,13247605060886466],[538443784,540541064,13247603826875223,13247605061713792],[538443784,540672008,13247603827702546,13247605060886466],[538443784,672137344,13247603821511848,13247605067077166],[538443784,672268288,13247603826875223,13247605061713792],[538443784,672661640,13247603821511848,13247605067077166],[538443784,672792584,13247603826875223,13247605061713792],[538443904,2097160,-13247605061713792,-13247603826875223],[538443904,2228224,13247603826875223,13247605061713792],[538443904,2621576,-13247605061713792,-13247603826875223],[538443904,2752640,13247603826875223,13247605061713792],[538443904,134217736,-13247605067077166,-13247603821511848],[538443904,134348800,13247603821511848,13247605067077166],[538443904,134742152,-13247605067077166,-13247603821511848],[538443904,134873216,13247603821511848,13247605067077166],[538443904,540016648,-13247605061713792,-13247603826875223],[538443904,540147712,13247603826875223,13247605061713792],[538443904,540541064,-13247605061713792,-13247603826875223],[538443904,540672128,13247603826875223,13247605061713792],[538443904,672137224,-13247605067077166,-13247603821511848],[538443904,672268288,13247603821511848,13247605067077166],[538443904,672661640,-13247605067077166,-13247603821511848],[538443904,672792704,13247603821511848,13247605067077166],[538444800,2228224,-22544604485915178,-22544603251852693],[538444800,2753536,-26495209971802464,-26495207805375563],[538444800,3801088,3950603941250842,3950606098159314],[538444800,134348800,-1975303134066535,-1975301885638543],[538444800,134874112,-26495209977993164,-26495207799184865],[538444800,135921664,24519905292829457,24519907464643494],[538444800,539100160,3950603941250842,3950606098159314],[538444800,540147712,-26495209971802464,-26495207805375563],[538444800,540673024,-22544604485915178,-22544603251852693],[538444800,671220736,24519905292829457,24519907464643494],[538444800,672268288,-26495209977993164,-26495207799184865],[538444800,672793600,-1975303134066535,-1975301885638543],[538445824,2228224,-3950606098159314,-3950603941250842],[538445824,3801088,-3950606098159314,-3950603941250842],[538445824,539101184,-3950606098159314,-3950603941250842],[538445824,540674048,-3950606098159314,-3950603941250842],[538574848,2097160,-13247605060886466,-13247603827702546],[538574848,2097280,13247603827702546,13247605060886466],[538574848,2752520,-13247605060886466,-13247603827702546],[538574848,2752640,13247603827702546,13247605060886466],[538574848,3277824,3950603941250842,3950606098159314],[538574848,3278848,-1975303127512530,-1975301892192549],[538574848,3671040,-3950606098159314,-3950603941250842],[538574848,3672064,1975301892192549,1975303127512530],[538574848,134217736,-13247605061713792,-13247603826875223],[538574848,134217856,13247603826875223,13247605061713792],[538574848,134873096,-13247605061713792,-13247603826875223],[538574848,134873216,13247603826875223,13247605061713792],[538574848,135398400,24519905292829457,24519907464643494],[538574848,135791616,-24519907464643494,-24519905292829457],[538574848,539100160,-3950606098159314,-3950603941250842],[538574848,539101184,1975301892192549,1975303127512530],[538574848,539493376,3950603941250842,3950606098159314],[538574848,539494400,-1975303127512530,-1975301892192549],[538574848,540016648,-13247605060886466,-13247603827702546],[538574848,540016768,13247603827702546,13247605060886466],[538574848,540672008,-13247605060886466,-13247603827702546],[538574848,540672128,13247603827702546,13247605060886466],[538574848,671220736,-24519907464643494,-24519905292829457],[538574848,671613952,24519905292829457,24519907464643494],[538574848,672137224,-13247605061713792,-13247603826875223],[538574848,672137344,13247603826875223,13247605061713792],[538574848,672792584,-13247605061713792,-13247603826875223],[538574848,672792704,13247603826875223,13247605061713792],[538970120,2098312,1975301892192549,1975303127512530],[538970120,2100352,-1975303127512530,-1975301892192549],[538970120,536872072,-1975303127512530,-1975301892192549],[538970120,536874112,1975301892192549,1975303127512530],[538970240,2098312,-1975303127512530,-1975301892192549],[538970240,2100232,1975301892192549,1975303127512530],[538970240,536872072,1975301892192549,1975303127512530],[538970240,536873992,-1975303127512530,-1975301892192549],[538971272,2097160,1975301892192549,1975303127512530],[538971272,2097280,-1975303127512530,-1975301892192549],[538971272,2100232,1975301892192549,1975303127512530],[538971272,2100352,-1975303127512530,-1975301892192549],[538971272,536870920,-1975303127512530,-1975301892192549],[538971272,536871040,1975301892192549,1975303127512530],[538971272,536873992,-1975303127512530,-1975301892192549],[538971272,536874112,1975301892192549,1975303127512530],[539100160,3671040,-3950606098159314,-3950603941250842],[539100160,3801088,3950603941250842,3950606098159314],[539100160,538444800,3950603941250842,3950606098159314],[539100160,538574848,-3950606098159314,-3950603941250842],[539101184,1705984,1975301892192548,1975303127512529],[539101184,3672064,1975301892192549,1975303127512530],[539101184,3801088,-3950606098159314,-3950603941250842],[539101184,538445824,-3950606098159314,-3950603941250842],[539101184,538574848,1975301892192549,1975303127512530],[539101184,540540928,1975301892192548,1975303127512529],[539493376,3277824,3950603941250842,3950606098159314],[539493376,3801088,-3950606098159314,-3950603941250842],[539493376,538051584,-3950606098159314,-3950603941250842],[539493376,538574848,3950603941250842,3950606098159314],[539494400,1705984,-1975303127512529,-1975301892192548],[539494400,3278848,-1975303127512530,-1975301892192549],[539494400,3801088,3950603941250842,3950606098159314],[539494400,538052608,3950603941250842,3950606098159314],[539494400,538574848,-1975303127512530,-1975301892192549],[539494400,540147712,-1975303127512529,-1975301892192548],[540016648,2098312,22544603251852693,22544604485915178],[540016648,2621576,-13247605061713792,-13247603826875223],[540016648,2752520,-13247605060886466,-13247603827702546],[540016648,3146880,-22544604485915178,-22544603251852693],[540016648,3670144,13247603826875223,13247605061713792],[540016648,3801088,13247603827702546,13247605060886466],[540016648,536872072,-22544604485915178,-22544603251852693],[540016648,537395336,13247603826875223,13247605061713792],[540016648,537526280,13247603827702546,13247605060886466],[540016648,537920640,22544603251852693,22544604485915178],[540016648,538443904,-13247605061713792,-13247603826875223],[540016648,538574848,-13247605060886466,-13247603827702546],[540016768,2098312,-22544604485915178,-22544603251852693],[540016768,2621576,13247603826875223,13247605061713792],[540016768,2752640,13247603827702546,13247605060886466],[540016768,3146760,22544603251852693,22544604485915178],[540016768,3670024,-13247605061713792,-13247603826875223],[540016768,3801088,-13247605060886466,-13247603827702546],[540016768,536872072,22544603251852693,22544604485915178],[540016768,537395336,-13247605061713792,-13247603826875223],[540016768,537526400,-13247605060886466,-13247603827702546],[540016768,537920520,-22544604485915178,-22544603251852693],[540016768,538443784,13247603826875223,13247605061713792],[540016768,538574848,13247603827702546,13247605060886466],[540017800,2097160,22544603251852693,22544604485915178],[540017800,2097280,-22544604485915178,-22544603251852693],[540017800,3146760,22544603251852693,22544604485915178],[540017800,3146880,-22544604485915178,-22544603251852693],[540017800,536870920,-22544604485915178,-22544603251852693],[540017800,536871040,22544603251852693,22544604485915178],[540017800,537920520,-22544604485915178,-22544603251852693],[540017800,537920640,22544603251852693,22544604485915178],[540147712,526336,-1975303127512529,-1975301892192548],[540147712,1705984,-1975303127512529,-1975301892192548],[540147712,2752520,13247603827702546,13247605060886466],[540147712,2752640,13247603826875223,13247605061713792],[540147712,2753536,-26495209971802464,-26495207805375563],[540147712,3670024,-13247605060886466,-13247603827702546],[540147712,3670144,-13247605061713792,-13247603826875223],[540147712,3671040,26495207805375563,26495209971802464],[540147712,537526280,-13247605060886466,-13247603827702546],[540147712,537526400,-13247605061713792,-13247603826875223],[540147712,537527296,26495207805375563,26495209971802464],[540147712,538443784,13247603827702546,13247605060886466],[540147712,538443904,13247603826875223,13247605061713792],[540147712,538444800,-26495209971802464,-26495207805375563],[540147712,539494400,-1975303127512529,-1975301892192548],[540147712,540674048,-1975303127512529,-1975301892192548],[540540928,133120,1975301892192548,1975303127512529],[540540928,1705984,1975301892192548,1975303127512529],[540540928,2752640,-26495209971802464,-26495207805375563],[540540928,2753536,26495207805375563,26495209971802464],[540540928,3276928,26495207805375563,26495209971802464],[540540928,3277824,-26495209971802464,-26495207805375563],[540540928,537526400,26495207805375563,26495209971802464],[540540928,537527296,-26495209971802464,-26495207805375563],[540540928,538050688,-26495209971802464,-26495207805375563],[540540928,538051584,26495207805375563,26495209971802464],[540540928,539101184,1975301892192548,1975303127512529],[540540928,540674048,1975301892192548,1975303127512529],[540541064,2097160,-13247605061713792,-13247603826875223],[540541064,2097280,13247603826875223,13247605061713792],[540541064,3670024,-13247605061713792,-13247603826875223],[540541064,3670144,13247603826875223,13247605061713792],[540541064,536870920,13247603826875223,13247605061713792],[540541064,536871040,-13247605061713792,-13247603826875223],[540541064,538443784,13247603826875223,13247605061713792],[540541064,538443904,-13247605061713792,-13247603826875223],[540672008,2097160,-13247605060886466,-13247603827702546],[540672008,2228224,13247603827702546,13247605060886466],[540672008,3670024,-13247605060886466,-13247603827702546],[540672008,3801088,13247603827702546,13247605060886466],[540672008,536870920,13247603827702546,13247605060886466],[540672008,537001984,-13247605060886466,-13247603827702546],[540672008,538443784,13247603827702546,13247605060886466],[540672008,538574848,-13247605060886466,-13247603827702546],[540672128,2097280,13247603827702546,13247605060886466],[540672128,2228224,13247603826875223,13247605061713792],[540672128,2621440,-26495209971802464,-26495207805375563],[540672128,3276928,26495207805375563,26495209971802464],[540672128,3670144,-13247605061713792,-13247603826875223],[540672128,3801088,-13247605060886466,-13247603827702546],[540672128,536871040,-13247605060886466,-13247603827702546],[540672128,537001984,-13247605061713792,-13247603826875223],[540672128,537395200,26495207805375563,26495209971802464],[540672128,538050688,-26495209971802464,-26495207805375563],[540672128,538443904,13247603826875223,13247605061713792],[540672128,538574848,13247603827702546,13247605060886466],[540673024,2228224,-22544604485915178,-22544603251852693],[540673024,2621440,22544603251852693,22544604485915178],[540673024,3277824,-22544604485915178,-22544603251852693],[540673024,3671040,22544603251852693,22544604485915178],[540673024,537001984,22544603251852693,22544604485915178],[540673024,537395200,-22544604485915178,-22544603251852693],[540673024,538051584,22544603251852693,22544604485915178],[540673024,538444800,-22544604485915178,-22544603251852693],[540674048,133120,1975301892192548,1975303127512529],[540674048,526336,-1975303127512529,-1975301892192548],[540674048,2228224,-3950606098159314,-3950603941250842],[540674048,2621440,3950603941250842,3950606098159314],[540674048,3278848,-1975303127512530,-1975301892192549],[540674048,3672064,1975301892192549,1975303127512530],[540674048,537001984,1975301892192549,1975303127512530],[540674048,537395200,-1975303127512530,-1975301892192549],[540674048,538052608,3950603941250842,3950606098159314],[540674048,538445824,-3950606098159314,-3950603941250842],[540674048,540147712,-1975303127512529,-1975301892192548],[540674048,540540928,1975301892192548,1975303127512529],[604110856,469762056,1975301892192548,1975303127512529],[604110856,469893120,-1975303127512529,-1975301892192548],[604110856,939524104,-1975303127512529,-1975301892192548],[604110856,939655168,1975301892192548,1975303127512529],[604504192,469762176,24519905292829457,24519907464643494],[604504192,470286336,-24519907464643494,-24519905292829457],[604504192,939524224,-24519907464643494,-24519905292829457],[604504192,940048384,24519905292829457,24519907464643494],[605029376,469763072,-24519907464643494,-24519905292829457],[605029376,470810624,24519905292829457,24519907464643494],[605029376,939525120,24519905292829457,24519907464643494],[605029376,940572672,-24519907464643494,-24519905292829457],[606078976,469764096,-1975303127512529,-1975301892192548],[606078976,471859200,1975301892192548,1975303127512529],[606078976,939526144,1975301892192548,1975303127512529],[606078976,941621248,-1975303127512529,-1975301892192548],[671220736,135791616,-24519907464643494,-24519905292829457],[671220736,135921664,24519905292829457,24519907464643494],[671220736,538444800,24519905292829457,24519907464643494],[671220736,538574848,-24519907464643494,-24519905292829457],[671613952,135398400,24519905292829457,24519907464643494],[671613952,135921664,-24519907464643494,-24519905292829457],[671613952,538051584,-24519907464643494,-24519905292829457],[671613952,538574848,24519905292829457,24519907464643494],[672137224,134218888,1975301885638543,1975303134066535],[672137224,134742152,-13247605067077166,-13247603821511848],[672137224,134873096,-13247605061713792,-13247603826875223],[672137224,135267456,-1975303134066535,-1975301885638543],[672137224,135790720,13247603821511848,13247605067077166],[672137224,135921664,13247603826875223,13247605061713792],[672137224,536872072,-1975303134066535,-1975301885638543],[672137224,537395336,13247603821511848,13247605067077166],[672137224,537526280,13247603826875223,13247605061713792],[672137224,537920640,1975301885638543,1975303134066535],[672137224,538443904,-13247605067077166,-13247603821511848],[672137224,538574848,-13247605061713792,-13247603826875223],[672137344,134218888,-1975303134066535,-1975301885638543],[672137344,134742152,13247603821511848,13247605067077166],[672137344,134873216,13247603826875223,13247605061713792],[672137344,135267336,1975301885638543,1975303134066535],[672137344,135790600,-13247605067077166,-13247603821511848],[672137344,135921664,-13247605061713792,-13247603826875223],[672137344,536872072,1975301885638543,1975303134066535],[672137344,537395336,-13247605067077166,-13247603821511848],[672137344,537526400,-13247605061713792,-13247603826875223],[672137344,537920520,-1975303134066535,-1975301885638543],[672137344,538443784,13247603821511848,13247605067077166],[672137344,538574848,13247603826875223,13247605061713792],[672138376,134217736,1975301885638543,1975303134066535],[672138376,134217856,-1975303134066535,-1975301885638543],[672138376,135267336,1975301885638543,1975303134066535],[672138376,135267456,-1975303134066535,-1975301885638543],[672138376,536870920,-1975303134066535,-1975301885638543],[672138376,536871040,1975301885638543,1975303134066535],[672138376,537920520,-1975303134066535,-1975301885638543],[672138376,537920640,1975301885638543,1975303134066535],[672268288,134873096,13247603826875223,13247605061713792],[672268288,134873216,13247603821511848,13247605067077166],[672268288,134874112,-26495209977993164,-26495207799184865],[672268288,135790600,-13247605061713792,-13247603826875223],[672268288,135790720,-13247605067077166,-13247603821511848],[672268288,135791616,26495207799184865,26495209977993164],[672268288,537526280,-13247605061713792,-13247603826875223],[672268288,537526400,-13247605067077166,-13247603821511848],[672268288,537527296,26495207799184865,26495209977993164],[672268288,538443784,13247603826875223,13247605061713792],[672268288,538443904,13247603821511848,13247605067077166],[672268288,538444800,-26495209977993164,-26495207799184865],[672661504,134873216,-26495209977993164,-26495207799184865],[672661504,134874112,26495207799184865,26495209977993164],[672661504,135397504,26495207799184865,26495209977993164],[672661504,135398400,-26495209977993164,-26495207799184865],[672661504,537526400,26495207799184865,26495209977993164],[672661504,537527296,-26495209977993164,-26495207799184865],[672661504,538050688,-26495209977993164,-26495207799184865],[672661504,538051584,26495207799184865,26495209977993164],[672661640,134217736,-13247605067077166,-13247603821511848],[672661640,134217856,13247603821511848,13247605067077166],[672661640,135790600,-13247605067077166,-13247603821511848],[672661640,135790720,13247603821511848,13247605067077166],[672661640,536870920,13247603821511848,13247605067077166],[672661640,536871040,-13247605067077166,-13247603821511848],[672661640,538443784,13247603821511848,13247605067077166],[672661640,538443904,-13247605067077166,-13247603821511848],[672792584,134217736,-13247605061713792,-13247603826875223],[672792584,134348800,13247603826875223,13247605061713792],[672792584,135790600,-13247605061713792,-13247603826875223],[672792584,135921664,13247603826875223,13247605061713792],[672792584,536870920,13247603826875223,13247605061713792],[672792584,537001984,-13247605061713792,-13247603826875223],[672792584,538443784,13247603826875223,13247605061713792],[672792584,538574848,-13247605061713792,-13247603826875223],[672792704,134217856,13247603826875223,13247605061713792],[672792704,134348800,13247603821511848,13247605067077166],[672792704,134742016,-26495209977993164,-26495207799184865],[672792704,135397504,26495207799184865,26495209977993164],[672792704,135790720,-13247605067077166,-13247603821511848],[672792704,135921664,-13247605061713792,-13247603826875223],[672792704,536871040,-13247605061713792,-13247603826875223],[672792704,537001984,-13247605067077166,-13247603821511848],[672792704,537395200,26495207799184865,26495209977993164],[672792704,538050688,-26495209977993164,-26495207799184865],[672792704,538443904,13247603821511848,13247605067077166],[672792704,538574848,13247603826875223,13247605061713792],[672793600,134348800,-1975303134066535,-1975301885638543],[672793600,134742016,1975301885638543,1975303134066535],[672793600,135398400,-1975303134066535,-1975301885638543],[672793600,135791616,1975301885638543,1975303134066535],[672793600,537001984,1975301885638543,1975303134066535],[672793600,537395200,-1975303134066535,-1975301885638543],[672793600,538051584,1975301885638543,1975303134066535],[672793600,538444800,-1975303134066535,-1975301885638543],[738197632,403177600,-26495209978356470,-26495207798821558],[738197632,470286336,26495207798821558,26495209978356470],[738197632,805830784,26495207798821558,26495209978356470],[738197632,872939520,-26495209978356470,-26495207798821558],[738198528,269484032,1975301892192548,1975303127512529],[738198528,403702784,26495207798821558,26495209978356470],[738198528,470810624,-24519907464643494,-24519905292829457],[738198528,806355968,-24519907464643494,-24519905292829457],[738198528,873463808,26495207798821558,26495209978356470],[738198528,1007682560,1975301892192548,1975303127512529],[738199552,270532608,-1975303127512529,-1975301892192548],[738199552,471859200,-1975303127512529,-1975301892192548],[738199552,807405568,-1975303127512529,-1975301892192548],[738199552,1008732160,-1975303127512529,-1975301892192548],[738721792,403177600,26495207798821558,26495209978356470],[738721792,469762176,-26495209978356470,-26495207798821558],[738721792,805830784,-26495209978356470,-26495207798821558],[738721792,872415360,26495207798821558,26495209978356470],[739246080,268436480,-1975303127512529,-1975301892192548],[739246080,403702784,-26495209978356470,-26495207798821558],[739246080,469763072,24519905292829457,24519907464643494],[739246080,806355968,24519905292829457,24519907464643494],[739246080,872416256,-26495209978356470,-26495207798821558],[739246080,1007682560,-1975303127512529,-1975301892192548],[740294656,268437504,1975301892192548,1975303127512529],[740294656,469764096,1975301892192548,1975303127512529],[740294656,807405568,1975301892192548,1975303127512529],[740294656,1008732160,1975301892192548,1975303127512529],[805437568,134742016,24519905292829457,24519907464643494],[805437568,134873216,24519905292829457,24519907464643494],[805437568,940048384,24519905292829457,24519907464643494],[805437568,940179584,24519905292829457,24519907464643494],[805830664,134217856,-1975303134066536,-1975301885638544],[805830664,134348800,-22544604485915178,-22544603251852693],[805830664,134742152,-1975303134066536,-1975301885638544],[805830664,134873096,-22544604485915178,-22544603251852693],[805830664,939524224,-1975303134066536,-1975301885638544],[805830664,939655168,-22544604485915178,-22544603251852693],[805830664,940048520,-1975303134066536,-1975301885638544],[805830664,940179464,-22544604485915178,-22544603251852693],[805830784,134217736,1975301885638544,1975303134066536],[805830784,134348800,-1975303134066536,-1975301885638544],[805830784,134742152,1975301885638544,1975303134066536],[805830784,134873216,-1975303134066536,-1975301885638544],[805830784,469762176,-26495209978356470,-26495207798821558],[805830784,470286336,26495207798821558,26495209978356470],[805830784,738197632,26495207798821558,26495209978356470],[805830784,738721792,-26495209978356470,-26495207798821558],[805830784,939524104,1975301885638544,1975303134066536],[805830784,939655168,-1975303134066536,-1975301885638544],[805830784,940048520,1975301885638544,1975303134066536],[805830784,940179584,-1975303134066536,-1975301885638544],[805961728,134217736,22544603251852693,22544604485915178],[805961728,134217856,-22544604485915178,-22544603251852693],[805961728,134873096,22544603251852693,22544604485915178],[805961728,134873216,-22544604485915178,-22544603251852693],[805961728,939524104,22544603251852693,22544604485915178],[805961728,939524224,-22544604485915178,-22544603251852693],[805961728,940179464,22544603251852693,22544604485915178],[805961728,940179584,-22544604485915178,-22544603251852693],[806355968,469763072,24519905292829457,24519907464643494],[806355968,470810624,-24519907464643494,-24519905292829457],[806355968,738198528,-24519907464643494,-24519905292829457],[806355968,739246080,24519905292829457,24519907464643494],[807405568,469764096,1975301892192548,1975303127512529],[807405568,471859200,-1975303127512529,-1975301892192548],[807405568,738199552,-1975303127512529,-1975301892192548],[807405568,740294656,1975301892192548,1975303127512529],[872415240,134348800,-1975303127512529,-1975301892192548],[872415240,201457672,-1975303127512529,-1975301892192548],[872415240,939655168,-1975303127512529,-1975301892192548],[872415240,1006764040,-1975303127512529,-1975301892192548],[872415360,134742016,1975301892192548,1975303127512529],[872415360,201851008,-24519907464643494,-24519905292829457],[872415360,403177600,26495207798821558,26495209978356470],[872415360,738721792,26495207798821558,26495209978356470],[872415360,940048384,-24519907464643494,-24519905292829457],[872415360,1007157376,1975301892192548,1975303127512529],[872416256,202376192,26495207798821558,26495209978356470],[872416256,403702784,-26495209978356470,-26495207798821558],[872416256,739246080,-26495209978356470,-26495207798821558],[872416256,940572672,26495207798821558,26495209978356470],[872546304,134217736,1975301892192548,1975303127512529],[872546304,201457672,1975301892192548,1975303127512529],[872546304,939524104,1975301892192548,1975303127512529],[872546304,1006764040,1975301892192548,1975303127512529],[872939520,134217856,-1975303127512529,-1975301892192548],[872939520,201851008,24519905292829457,24519907464643494],[872939520,403177600,-26495209978356470,-26495207798821558],[872939520,738197632,-26495209978356470,-26495207798821558],[872939520,939524224,24519905292829457,24519907464643494],[872939520,1007157376,-1975303127512529,-1975301892192548],[873463808,202376192,-26495209978356470,-26495207798821558],[873463808,403702784,26495207798821558,26495209978356470],[873463808,738198528,26495207798821558,26495209978356470],[873463808,939525120,-26495209978356470,-26495207798821558],[939524104,134742152,1975301885638544,1975303134066536],[939524104,134873096,22544603251852693,22544604485915178],[939524104,201457672,1975301892192548,1975303127512529],[939524104,403177600,-1975303134066536,-1975301885638544],[939524104,403308544,-22544604485915178,-22544603251852693],[939524104,469893120,-1975303127512529,-1975301892192548],[939524104,537395336,-1975303134066536,-1975301885638544],[939524104,537526280,-22544604485915178,-22544603251852693],[939524104,604110856,-1975303127512529,-1975301892192548],[939524104,805830784,1975301885638544,1975303134066536],[939524104,805961728,22544603251852693,22544604485915178],[939524104,872546304,1975301892192548,1975303127512529],[939524224,134742152,-1975303134066536,-1975301885638544],[939524224,134873216,-22544604485915178,-22544603251852693],[939524224,201851008,24519905292829457,24519907464643494],[939524224,403177480,1975301885638544,1975303134066536],[939524224,403308544,22544603251852693,22544604485915178],[939524224,470286336,-24519907464643494,-24519905292829457],[939524224,537395336,1975301885638544,1975303134066536],[939524224,537526400,22544603251852693,22544604485915178],[939524224,604504192,-24519907464643494,-24519905292829457],[939524224,805830664,-1975303134066536,-1975301885638544],[939524224,805961728,-22544604485915178,-22544603251852693],[939524224,872939520,24519905292829457,24519907464643494],[939525120,68157440,-1975303127512529,-1975301892192548],[939525120,202376192,-26495209978356470,-26495207798821558],[939525120,470810624,24519905292829457,24519907464643494],[939525120,605029376,24519905292829457,24519907464643494],[939525120,873463808,-26495209978356470,-26495207798821558],[939525120,1007682560,-1975303127512529,-1975301892192548],[939526144,69206016,1975301892192548,1975303127512529],[939526144,471859200,1975301892192548,1975303127512529],[939526144,606078976,1975301892192548,1975303127512529],[939526144,1008732160,1975301892192548,1975303127512529],[939655168,134873096,-22544604485915178,-22544603251852693],[939655168,134873216,-1975303134066536,-1975301885638544],[939655168,201457672,-1975303127512529,-1975301892192548],[939655168,403177480,22544603251852693,22544604485915178],[939655168,403177600,1975301885638544,1975303134066536],[939655168,469762056,1975301892192548,1975303127512529],[939655168,537526280,22544603251852693,22544604485915178],[939655168,537526400,1975301885638544,1975303134066536],[939655168,604110856,1975301892192548,1975303127512529],[939655168,805830664,-22544604485915178,-22544603251852693],[939655168,805830784,-1975303134066536,-1975301885638544],[939655168,872415240,-1975303127512529,-1975301892192548],[940048384,134873216,24519905292829457,24519907464643494],[940048384,201851008,-24519907464643494,-24519905292829457],[940048384,402784384,-24519907464643494,-24519905292829457],[940048384,469762176,24519905292829457,24519907464643494],[940048384,537526400,-24519907464643494,-24519905292829457],[940048384,604504192,24519905292829457,24519907464643494],[940048384,805437568,24519905292829457,24519907464643494],[940048384,872415360,-24519907464643494,-24519905292829457],[940048520,134217736,1975301885638544,1975303134066536],[940048520,134217856,-1975303134066536,-1975301885638544],[940048520,403177480,1975301885638544,1975303134066536],[940048520,403177600,-1975303134066536,-1975301885638544],[940048520,536870920,-1975303134066536,-1975301885638544],[940048520,536871040,1975301885638544,1975303134066536],[940048520,805830664,-1975303134066536,-1975301885638544],[940048520,805830784,1975301885638544,1975303134066536],[940179464,134217736,22544603251852693,22544604485915178],[940179464,134348800,-22544604485915178,-22544603251852693],[940179464,403177480,22544603251852693,22544604485915178],[940179464,403308544,-22544604485915178,-22544603251852693],[940179464,536870920,-22544604485915178,-22544603251852693],[940179464,537001984,22544603251852693,22544604485915178],[940179464,805830664,-22544604485915178,-22544603251852693],[940179464,805961728,22544603251852693,22544604485915178],[940179584,134217856,-22544604485915178,-22544603251852693],[940179584,134348800,-1975303134066536,-1975301885638544],[940179584,134742016,24519905292829457,24519907464643494],[940179584,402784384,-24519907464643494,-24519905292829457],[940179584,403177600,1975301885638544,1975303134066536],[940179584,403308544,22544603251852693,22544604485915178],[940179584,536871040,22544603251852693,22544604485915178],[940179584,537001984,1975301885638544,1975303134066536],[940179584,537395200,-24519907464643494,-24519905292829457],[940179584,805437568,24519905292829457,24519907464643494],[940179584,805830784,-1975303134066536,-1975301885638544],[940179584,805961728,-22544604485915178,-22544603251852693],[940572672,67109888,1975301892192548,1975303127512529],[940572672,202376192,26495207798821558,26495209978356470],[940572672,469763072,-24519907464643494,-24519905292829457],[940572672,605029376,-24519907464643494,-24519905292829457],[940572672,872416256,26495207798821558,26495209978356470],[940572672,1007682560,1975301892192548,1975303127512529],[941621248,67110912,-1975303127512529,-1975301892192548],[941621248,469764096,-1975303127512529,-1975301892192548],[941621248,606078976,-1975303127512529,-1975301892192548],[941621248,1008732160,-1975303127512529,-1975301892192548],[1006764040,134217736,1975301892192548,1975303127512529],[1006764040,134348800,-1975303127512529,-1975301892192548],[1006764040,469762056,1975301892192548,1975303127512529],[1006764040,469893120,-1975303127512529,-1975301892192548],[1006764040,536870920,-1975303127512529,-1975301892192548],[1006764040,537001984,1975301892192548,1975303127512529],[1006764040,872415240,-1975303127512529,-1975301892192548],[1006764040,872546304,1975301892192548,1975303127512529],[1007157376,134217856,-1975303127512529,-1975301892192548],[1007157376,134742016,1975301892192548,1975303127512529],[1007157376,469762176,-1975303127512529,-1975301892192548],[1007157376,470286336,1975301892192548,1975303127512529],[1007157376,536871040,1975301892192548,1975303127512529],[1007157376,537395200,-1975303127512529,-1975301892192548],[1007157376,872415360,1975301892192548,1975303127512529],[1007157376,872939520,-1975303127512529,-1975301892192548],[1007682560,67109888,1975301892192548,1975303127512529],[1007682560,68157440,-1975303127512529,-1975301892192548],[1007682560,268436480,-1975303127512529,-1975301892192548],[1007682560,269484032,1975301892192548,1975303127512529],[1007682560,738198528,1975301892192548,1975303127512529],[1007682560,739246080,-1975303127512529,-1975301892192548],[1007682560,939525120,-1975303127512529,-1975301892192548],[1007682560,940572672,1975301892192548,1975303127512529],[1008732160,67110912,-1975303127512529,-1975301892192548],[1008732160,69206016,1975301892192548,1975303127512529],[1008732160,268437504,1975301892192548,1975303127512529],[1008732160,270532608,-1975303127512529,-1975301892192548],[1008732160,738199552,-1975303127512529,-1975301892192548],[1008732160,740294656,1975301892192548,1975303127512529],[1008732160,939526144,1975301892192548,1975303127512529],[1008732160,941621248,-1975303127512529,-1975301892192548],[1073741825,0,-4648503294878728,-4648496129710712],[1073741825,6,-4648501531389499,-4648497893199929],[1073741825,12,-13247606182566277,-13247602706022740],[1073741825,32770,-4648502006549417,-4648497418040009],[1073741825,32772,118376814987968068,118376854586315852],[1073741825,32776,15920798832463209,15920804461010156],[1073741825,32782,26495207702043174,26495210075134854],[1073741825,131076,15920798832463209,15920804461010156],[1073741825,163840,-13247606182566277,-13247602706022740],[1073741825,163846,-1975303106832961,-1975301912872117],[1073741825,163850,-1975303106832961,-1975301912872117],[1073741825,163852,-45089208874918688,-45089206600617048],[1073741825,67108868,-4648502006549417,-4648497418040009],[1073741825,67141632,-4648501531389499,-4648497893199929],[1073741825,67141638,-4648500342125002,-4648499082464426],[1073741825,67141644,-1975303106832961,-1975301912872117],[1073741825,67239946,-4648500342125002,-4648499082464426],[1073741825,67239948,-1975303106832961,-1975301912872117],[1073741825,67272708,26495207702043174,26495210075134854],[1073741825,1073741825,-4648503294878728,-4648496129710712],[1073741825,1073741831,-4648501531389499,-4648497893199929],[1073741825,1073741837,-13247606182566277,-13247602706022740],[1073741825,1073774595,-4648502006549417,-4648497418040009],[1073741825,1073774597,118376814987968068,118376854586315852],[1073741825,1073774601,15920798832463209,15920804461010156],[1073741825,1073774607,26495207702043174,26495210075134854],[1073741825,1073872901,15920798832463209,15920804461010156],[1073741825,1073905665,-13247606182566277,-13247602706022740],[1073741825,1073905671,-1975303106832961,-1975301912872117],[1073741825,1073905675,-1975303106832961,-1975301912872117],[1073741825,1073905677,-45089208874918688,-45089206600617048],[1073741825,1140850693,-4648502006549417,-4648497418040009],[1073741825,1140883457,-4648501531389499,-4648497893199929],[1073741825,1140883463,-4648500342125002,-4648499082464426],[1073741825,1140883469,-1975303106832961,-1975301912872117],[1073741825,1140981771,-4648500342125002,-4648499082464426],[1073741825,1140981773,-1975303106832961,-1975301912872117],[1073741825,1141014533,26495207702043174,26495210075134854],[1073741825,140737488355332,-1975304999015964,-1975300020689110],[1073741825,140737488388096,-1975304439360326,-1975300580344758],[1073741825,140737488388102,-1975303165966039,-1975301853739043],[1073741825,140737488388108,-22544604490299392,-22544603247468479],[1073741825,140737488519172,13247603817961795,13247605070627222],[1073741825,140737555496964,11272300803168551,11272303065715385],[1073741825,140738562097157,-1975304999015964,-1975300020689110],[1073741825,140738562129921,-1975304439360326,-1975300580344758],[1073741825,140738562129927,-1975303165966039,-1975301853739043],[1073741825,140738562129933,-22544604490299392,-22544603247468479],[1073741825,140738562260997,13247603817961795,13247605070627222],[1073741825,140738629238789,11272300803168551,11272303065715385],[1073741826,5,4648497893199929,4648501531389499],[1073741826,12,1975300772161160,1975304247543921],[1073741826,32769,4648497418040009,4648502006549417],[1073741826,32772,-8599107896967374,-8599101567032212],[1073741826,32776,3950600760736484,3950609278673694],[1073741826,32781,-22544606311881030,-22544601425886842],[1073741826,32837,1975301891852867,1975303127852212],[1073741826,32844,-13247605061578886,-13247603827010127],[1073741826,32908,-13247605066971786,-13247603821617226],[1073741826,131080,-8599107896967374,-8599101567032212],[1073741826,163840,1975300772161160,1975304247543921],[1073741826,163845,1975301912872117,1975303106832961],[1073741826,163849,1975301912872117,1975303106832961],[1073741826,163852,18593996452163044,18594001246194656],[1073741826,163912,1975301889664154,1975303130040923],[1073741826,163976,22544603248067364,22544604489700504],[1073741826,688136,1975301885638544,1975303134066536],[1073741826,67108872,4648497418040009,4648502006549417],[1073741826,67141637,4648499082464426,4648500342125002],[1073741826,67141644,1975301912872117,1975303106832961],[1073741826,67239936,4648497893199929,4648501531389499],[1073741826,67239945,4648499082464426,4648500342125002],[1073741826,67239948,1975301912872117,1975303106832961],[1073741826,67240008,4648499057538562,4648500367050864],[1073741826,67240072,1975301857911278,1975303161793801],[1073741826,67272712,-22544606311881030,-22544601425886842],[1073741826,67764232,-13247605096148654,-13247603792440361],[1073741826,335675400,4648499059714221,4648500364875210],[1073741826,1073741831,4648497893199929,4648501531389499],[1073741826,1073741838,1975300772161160,1975304247543921],[1073741826,1073774595,4648497418040009,4648502006549417],[1073741826,1073774598,-8599107896967374,-8599101567032212],[1073741826,1073774602,3950600760736484,3950609278673694],[1073741826,1073774607,-22544606311881030,-22544601425886842],[1073741826,1073774663,1975301891852867,1975303127852212],[1073741826,1073774670,-13247605061578886,-13247603827010127],[1073741826,1073774734,-13247605066971786,-13247603821617226],[1073741826,1073872906,-8599107896967374,-8599101567032212],[1073741826,1073905666,1975300772161160,1975304247543921],[1073741826,1073905671,1975301912872117,1975303106832961],[1073741826,1073905675,1975301912872117,1975303106832961],[1073741826,1073905678,18593996452163044,18594001246194656],[1073741826,1073905738,1975301889664154,1975303130040923],[1073741826,1073905802,22544603248067364,22544604489700504],[1073741826,1074429962,1975301885638544,1975303134066536],[1073741826,1140850698,4648497418040009,4648502006549417],[1073741826,1140883463,4648499082464426,4648500342125002],[1073741826,1140883470,1975301912872117,1975303106832961],[1073741826,1140981762,4648497893199929,4648501531389499],[1073741826,1140981771,4648499082464426,4648500342125002],[1073741826,1140981774,1975301912872117,1975303106832961],[1073741826,1140981834,4648499057538562,4648500367050864],[1073741826,1140981898,1975301857911278,1975303161793801],[1073741826,1141014538,-22544606311881030,-22544601425886842],[1073741826,1141506058,-13247605096148654,-13247603792440361],[1073741826,1409417226,4648499059714221,4648500364875210],[1073741826,17592253284360,-13247605102529449,-13247603786059568],[1073741826,17593327026186,-13247605102529449,-13247603786059568],[1073741826,140737488388101,1975301853739043,1975303165966039],[1073741826,140737488388108,22544603247468479,22544604490299392],[1073741826,140737488519176,-13247605070627222,-13247603817961795],[1073741826,140737555595272,1975301882939439,1975303136765642],[1073741826,140738562129927,1975301853739043,1975303165966039],[1073741826,140738562129934,22544603247468479,22544604490299392],[1073741826,140738562261002,-13247605070627222,-13247603817961795],[1073741826,140738629337098,1975301882939439,1975303136765642],[1073741828,0,-53534633662818236,-53534570238879156],[1073741828,9,6623799135992659,6623805308301850],[1073741828,32769,-118376856345199404,-118376813229084520],[1073741828,32770,8599101567032212,8599107896967374],[1073741828,32776,-215060696800522478,-215060645033294693],[1073741828,32896,13247602765652131,13247606122936882],[1073741828,131073,-4648502525987800,-4648496898601629],[1073741828,131080,-7901214439889918,-7901205638930376],[1073741828,163840,332041690197650200,332041742440092355],[1073741828,163849,47064508655028107,47064511840212707],[1073741828,163850,1975301912872117,1975303106832961],[1073741828,163976,1975301917270118,1975303102434961],[1073741828,557056,-26495211786596702,-26495205990581324],[1073741828,655360,-3950605484998596,-3950604554411562],[1073741828,688136,1975301917236486,1975303102468593],[1073741828,67108865,4648497418040009,4648502006549417],[1073741828,67108872,9296995124907418,9297003724271436],[1073741828,67141632,-133599767595705506,-133599715886872508],[1073741828,67141641,6623801151062805,6623803293231701],[1073741828,67239936,-7901214462754538,-7901205616065770],[1073741828,67239945,1975301912872117,1975303106832961],[1073741828,67239946,4648499082464426,4648500342125002],[1073741828,67240072,4648499087000812,4648500337588616],[1073741828,67272705,-26495210075134854,-26495207702043174],[1073741828,67272712,-45089212389398762,-45089203086137004],[1073741828,67764232,-13247605066155522,-13247603822433492],[1073741828,67796992,1975301917236486,1975303102468593],[1073741828,268468224,13247602765618499,13247606122970514],[1073741828,335675400,4648499087034444,4648500337554984],[1073741828,335708160,1975301917270118,1975303102434961],[1073741828,1073741828,-53534633662818236,-53534570238879156],[1073741828,1073741837,6623799135992659,6623805308301850],[1073741828,1073774597,-118376856345199404,-118376813229084520],[1073741828,1073774598,8599101567032212,8599107896967374],[1073741828,1073774604,-215060696800522478,-215060645033294693],[1073741828,1073774724,13247602765652131,13247606122936882],[1073741828,1073872901,-4648502525987800,-4648496898601629],[1073741828,1073872908,-7901214439889918,-7901205638930376],[1073741828,1073905668,332041690197650200,332041742440092355],[1073741828,1073905677,47064508655028107,47064511840212707],[1073741828,1073905678,1975301912872117,1975303106832961],[1073741828,1073905804,1975301917270118,1975303102434961],[1073741828,1074298884,-26495211786596702,-26495205990581324],[1073741828,1074397188,-3950605484998596,-3950604554411562],[1073741828,1074429964,1975301917236486,1975303102468593],[1073741828,1140850693,4648497418040009,4648502006549417],[1073741828,1140850700,9296995124907418,9297003724271436],[1073741828,1140883460,-133599767595705506,-133599715886872508],[1073741828,1140883469,6623801151062805,6623803293231701],[1073741828,1140981764,-7901214462754538,-7901205616065770],[1073741828,1140981773,1975301912872117,1975303106832961],[1073741828,1140981774,4648499082464426,4648500342125002],[1073741828,1140981900,4648499087000812,4648500337588616],[1073741828,1141014533,-26495210075134854,-26495207702043174],[1073741828,1141014540,-45089212389398762,-45089203086137004],[1073741828,1141506060,-13247605066155522,-13247603822433492],[1073741828,1141538820,1975301917236486,1975303102468593],[1073741828,1342210052,13247602765618499,13247606122970514],[1073741828,1409417228,4648499087034444,4648500337554984],[1073741828,1409449988,1975301917270118,1975303102434961],[1073741828,17592186077184,11272298711597012,11272305157286919],[1073741828,17592253284360,-13247605075396206,-13247603813192808],[1073741828,17592253317120,1975301908323058,1975303111382023],[1073741828,17593259819012,11272298711597012,11272305157286919],[1073741828,17593327026188,-13247605075396206,-13247603813192808],[1073741828,17593327058948,1975301908323058,1975303111382023],[1073741828,140737488355329,1975300020689110,1975304999015964],[1073741828,140737488355336,1975300184502783,1975304835202292],[1073741828,140737488388096,193060229393271076,193060273050119596],[1073741828,140737488388105,24519905253728852,24519907503744101],[1073741828,140737488486400,-1975305379225034,-1975299640480040],[1073741828,140737488519169,-13247605070627222,-13247603817961795],[1073741828,140737488519176,-26495210084232978,-26495207692945056],[1073741828,140737555464192,-11272305103287715,-11272298765596219],[1073741828,140737555496961,-11272303065715385,-11272300803168551],[1073741828,140737555496968,-11272303013198523,-11272300855685410],[1073741828,140737555595272,1975301908323058,1975303111382023],[1073741828,140737555628032,47064508636712560,47064511858528265],[1073741828,140738562097157,1975300020689110,1975304999015964],[1073741828,140738562097164,1975300184502783,1975304835202292],[1073741828,140738562129924,193060229393271076,193060273050119596],[1073741828,140738562129933,24519905253728852,24519907503744101],[1073741828,140738562228228,-1975305379225034,-1975299640480040],[1073741828,140738562260997,-13247605070627222,-13247603817961795],[1073741828,140738562261004,-26495210084232978,-26495207692945056],[1073741828,140738629206020,-11272305103287715,-11272298765596219],[1073741828,140738629238789,-11272303065715385,-11272300803168551],[1073741828,140738629238796,-11272303013198523,-11272300855685410],[1073741828,140738629337100,1975301908323058,1975303111382023],[1073741828,140738629369860,47064508636712560,47064511858528265],[1073741828,2305843009213726720,-1975304439360326,-1975300580344758],[1073741828,2305843010287468548,-1975304439360326,-1975300580344758],[1073741831,5,4648497893199929,4648501531389499],[1073741831,6,-4648501531389499,-4648497893199929],[1073741831,32776,3950603763253824,3950606276156332],[1073741831,32779,28470509805039004,28470512991844104],[1073741831,32781,-6623803293231701,-6623801151062805],[1073741831,32782,-17896106343949595,-17896101969228851],[1073741831,32832,1975301891852867,1975303127852212],[1073741831,32835,1975301891852867,1975303127852212],[1073741831,163845,1975301912872117,1975303106832961],[1073741831,163846,-1975303106832961,-1975301912872117],[1073741831,67141637,4648499082464426,4648500342125002],[1073741831,67141638,-4648500342125002,-4648499082464426],[1073741831,1073741825,-4648501531389499,-4648497893199929],[1073741831,1073741826,4648497893199929,4648501531389499],[1073741831,1073774601,-17896106343949595,-17896101969228851],[1073741831,1073774602,-6623803293231701,-6623801151062805],[1073741831,1073774604,28470509805039004,28470512991844104],[1073741831,1073774607,3950603763253824,3950606276156332],[1073741831,1073774660,1975301891852867,1975303127852212],[1073741831,1073774663,1975301891852867,1975303127852212],[1073741831,1073905665,-1975303106832961,-1975301912872117],[1073741831,1073905666,1975301912872117,1975303106832961],[1073741831,1140883457,-4648500342125002,-4648499082464426],[1073741831,1140883458,4648499082464426,4648500342125002],[1073741831,140737488388101,1975301853739043,1975303165966039],[1073741831,140737488388102,-1975303165966039,-1975301853739043],[1073741831,140738562129921,-1975303165966039,-1975301853739043],[1073741831,140738562129922,1975301853739043,1975303165966039],[1073741832,0,-1395798588612732,-1395780181745792],[1073741832,5,-15920803465251079,-15920799828222285],[1073741832,6,-1975304247543921,-1975300772161160],[1073741832,132,-1975304216083780,-1975300803621296],[1073741832,32769,-4648502525987800,-4648496898601629],[1073741832,32770,-3950609278673694,-3950600760736484],[1073741832,32772,207738951876696445,207738996127646956],[1073741832,32775,-3950606276156332,-3950603763253824],[1073741832,32896,-3950609227302328,-3950600812107830],[1073741832,32901,-1975303127852212,-1975301891852867],[1073741832,32902,26495207799425147,26495209977752878],[1073741832,131074,8599101567032212,8599107896967374],[1073741832,131076,20569293250811822,20569309467250933],[1073741832,131200,8599101386783086,8599108077216494],[1073741832,163840,-354586345522376890,-354586294853133538],[1073741832,163845,-3950606243598603,-3950603795811556],[1073741832,163846,-7321700242729086,-7321693586744675],[1073741832,163970,-24519907464403207,-24519905293069738],[1073741832,163972,-7321700200255013,-7321693629218766],[1073741832,557056,-1975305295452736,-1975299724252344],[1073741832,655360,3950601681274309,3950608358135846],[1073741832,688130,-1975303134066536,-1975301885638544],[1073741832,688132,11272300719992475,11272303148891462],[1073741832,688256,-3950606255704424,-3950603783705734],[1073741832,67108866,-4648502006549417,-4648497418040009],[1073741832,67108868,-9297003724271436,-9296995124907418],[1073741832,67108992,-4648501974835595,-4648497449753834],[1073741832,67141632,20569293260874416,20569309457188365],[1073741832,67141637,-4648500342125002,-4648499082464426],[1073741832,67141638,-1975303106832961,-1975301912872117],[1073741832,67141764,-1975303102434961,-1975301917270118],[1073741832,67239936,126278022677218062,126278066975886174],[1073741832,67239942,-6623803293231701,-6623801151062805],[1073741832,67240066,-6623803358085955,-6623801086208550],[1073741832,67240068,-6623803284297315,-6623801159997192],[1073741832,67272706,22544601425886842,22544606311881030],[1073741832,67272708,58336806904098799,58336817460025984],[1073741832,67272832,22544601455814116,22544606281953756],[1073741832,67633152,15920798736625752,15920804556847610],[1073741832,67764226,13247603792440361,13247605096148654],[1073741832,67764228,13247603822433492,13247605066155522],[1073741832,67764352,26495207590564460,26495210186613570],[1073741832,67796992,-22544606578062592,-22544601159705275],[1073741832,268566528,-4648502477690436,-4648496946898994],[1073741832,335544320,-15920803457056280,-15920799836417081],[1073741832,335675394,-4648500364875210,-4648499059714221],[1073741832,335675396,-4648500337554984,-4648499087034444],[1073741832,335675520,-4648500367937249,-4648499056652180],[1073741832,335708160,-3950606232496514,-3950603806913643],[1073741832,336068736,-4648500367937249,-4648499056652180],[1073741832,336199680,-3950606322255178,-3950603717154982],[1073741832,1073741832,-1395798588612732,-1395780181745792],[1073741832,1073741837,-15920803465251079,-15920799828222285],[1073741832,1073741838,-1975304247543921,-1975300772161160],[1073741832,1073741964,-1975304216083780,-1975300803621296],[1073741832,1073774601,-4648502525987800,-4648496898601629],[1073741832,1073774602,-3950609278673694,-3950600760736484],[1073741832,1073774604,207738951876696445,207738996127646956],[1073741832,1073774607,-3950606276156332,-3950603763253824],[1073741832,1073774728,-3950609227302328,-3950600812107830],[1073741832,1073774733,-1975303127852212,-1975301891852867],[1073741832,1073774734,26495207799425147,26495209977752878],[1073741832,1073872906,8599101567032212,8599107896967374],[1073741832,1073872908,20569293250811822,20569309467250933],[1073741832,1073873032,8599101386783086,8599108077216494],[1073741832,1073905672,-354586345522376890,-354586294853133538],[1073741832,1073905677,-3950606243598603,-3950603795811556],[1073741832,1073905678,-7321700242729086,-7321693586744675],[1073741832,1073905802,-24519907464403207,-24519905293069738],[1073741832,1073905804,-7321700200255013,-7321693629218766],[1073741832,1074298888,-1975305295452736,-1975299724252344],[1073741832,1074397192,3950601681274309,3950608358135846],[1073741832,1074429962,-1975303134066536,-1975301885638544],[1073741832,1074429964,11272300719992475,11272303148891462],[1073741832,1074430088,-3950606255704424,-3950603783705734],[1073741832,1140850698,-4648502006549417,-4648497418040009],[1073741832,1140850700,-9297003724271436,-9296995124907418],[1073741832,1140850824,-4648501974835595,-4648497449753834],[1073741832,1140883464,20569293260874416,20569309457188365],[1073741832,1140883469,-4648500342125002,-4648499082464426],[1073741832,1140883470,-1975303106832961,-1975301912872117],[1073741832,1140883596,-1975303102434961,-1975301917270118],[1073741832,1140981768,126278022677218062,126278066975886174],[1073741832,1140981774,-6623803293231701,-6623801151062805],[1073741832,1140981898,-6623803358085955,-6623801086208550],[1073741832,1140981900,-6623803284297315,-6623801159997192],[1073741832,1141014538,22544601425886842,22544606311881030],[1073741832,1141014540,58336806904098799,58336817460025984],[1073741832,1141014664,22544601455814116,22544606281953756],[1073741832,1141374984,15920798736625752,15920804556847610],[1073741832,1141506058,13247603792440361,13247605096148654],[1073741832,1141506060,13247603822433492,13247605066155522],[1073741832,1141506184,26495207590564460,26495210186613570],[1073741832,1141538824,-22544606578062592,-22544601159705275],[1073741832,1342308360,-4648502477690436,-4648496946898994],[1073741832,1409286152,-15920803457056280,-15920799836417081],[1073741832,1409417226,-4648500364875210,-4648499059714221],[1073741832,1409417228,-4648500337554984,-4648499087034444],[1073741832,1409417352,-4648500367937249,-4648499056652180],[1073741832,1409449992,-3950606232496514,-3950603806913643],[1073741832,1409810568,-4648500367937249,-4648499056652180],[1073741832,1409941512,-3950606322255178,-3950603717154982],[1073741832,17592186175488,-1975305379225034,-1975299640480040],[1073741832,17592253153280,22544602005389605,22544605732378260],[1073741832,17592253284354,13247603786059568,13247605102529449],[1073741832,17592253284356,13247603813192808,13247605075396206],[1073741832,17592253284480,13247603788555150,13247605100033866],[1073741832,17592253317120,-24519907601681415,-24519905155791537],[1073741832,17592253808640,-1975303167312100,-1975301852392980],[1073741832,17592521719808,11272301100150310,11272302768733624],[1073741832,17593259917320,-1975305379225034,-1975299640480040],[1073741832,17593326895112,22544602005389605,22544605732378260],[1073741832,17593327026186,13247603786059568,13247605102529449],[1073741832,17593327026188,13247603813192808,13247605075396206],[1073741832,17593327026312,13247603788555150,13247605100033866],[1073741832,17593327058952,-24519907601681415,-24519905155791537],[1073741832,17593327550472,-1975303167312100,-1975301852392980],[1073741832,17593595461640,11272301100150310,11272302768733624],[1073741832,140737488355332,-1975304835202292,-1975300184502783],[1073741832,140737488388096,11272298711597012,11272305157286919],[1073741832,140737488388101,-1975303165966039,-1975301853739043],[1073741832,140737488388102,-22544604490299392,-22544603247468479],[1073741832,140737488388228,-22544604485800118,-22544603251967752],[1073741832,140737488486400,-3950609314173172,-3950600725236988],[1073741832,140737488519170,13247603817961795,13247605070627222],[1073741832,140737488519172,-18594001318589224,-18593996379768482],[1073741832,140737488519296,13247603822461068,13247605066127948],[1073741832,140737489043456,13247603811716528,13247605076872486],[1073741832,140737555464192,-1975304301048867,-1975300718656210],[1073741832,140737555496964,11272300855685410,11272303013198523],[1073741832,140737555595266,-1975303136765642,-1975301882939439],[1073741832,140737555595268,-1975303111382023,-1975301908323058],[1073741832,140737555595392,-1975303134589986,-1975301885115096],[1073741832,140737555628032,-7321700273679520,-7321693555794256],[1073741832,140737556119552,-22544604497985104,-22544603239782766],[1073741832,140737824030720,-1975303142599947,-1975301877105131],[1073741832,140738562097164,-1975304835202292,-1975300184502783],[1073741832,140738562129928,11272298711597012,11272305157286919],[1073741832,140738562129933,-1975303165966039,-1975301853739043],[1073741832,140738562129934,-22544604490299392,-22544603247468479],[1073741832,140738562130060,-22544604485800118,-22544603251967752],[1073741832,140738562228232,-3950609314173172,-3950600725236988],[1073741832,140738562261002,13247603817961795,13247605070627222],[1073741832,140738562261004,-18594001318589224,-18593996379768482],[1073741832,140738562261128,13247603822461068,13247605066127948],[1073741832,140738562785288,13247603811716528,13247605076872486],[1073741832,140738629206024,-1975304301048867,-1975300718656210],[1073741832,140738629238796,11272300855685410,11272303013198523],[1073741832,140738629337098,-1975303136765642,-1975301882939439],[1073741832,140738629337100,-1975303111382023,-1975301908323058],[1073741832,140738629337224,-1975303134589986,-1975301885115096],[1073741832,140738629369864,-7321700273679520,-7321693555794256],[1073741832,140738629861384,-22544604497985104,-22544603239782766],[1073741832,140738897772552,-1975303142599947,-1975301877105131],[1073741832,158329741639680,-45089209011534280,-45089206464001460],[1073741832,158330815381512,-45089209011534280,-45089206464001460],[1073741835,32775,-28470512991844104,-28470509805039004],[1073741835,32781,8599101567032212,8599107896967374],[1073741835,32782,19871405094876730,19871408238006792],[1073741835,163849,1975301912872117,1975303106832961],[1073741835,163850,-1975303106832961,-1975301912872117],[1073741835,67239945,4648499082464426,4648500342125002],[1073741835,67239946,-4648500342125002,-4648499082464426],[1073741835,1073774597,19871405094876730,19871408238006792],[1073741835,1073774598,8599101567032212,8599107896967374],[1073741835,1073774604,-28470512991844104,-28470509805039004],[1073741835,1073905665,-1975303106832961,-1975301912872117],[1073741835,1073905666,1975301912872117,1975303106832961],[1073741835,1140981761,-4648500342125002,-4648499082464426],[1073741835,1140981762,4648499082464426,4648500342125002],[1073741837,0,-22544604802429304,-22544602935338568],[1073741837,5,-15920803465251079,-15920799828222285],[1073741837,9,6623799135992659,6623805308301850],[1073741837,12,-13247606182566277,-13247602706022740],[1073741837,32770,22544601425886842,22544606311881030],[1073741837,32775,6623801151062805,6623803293231701],[1073741837,32779,-8599107896967374,-8599101567032212],[1073741837,32782,24519905262460552,24519907495012400],[1073741837,32896,-1975303127852212,-1975301891852867],[1073741837,32905,-26495209977752878,-26495207799425147],[1073741837,32908,24519905289421414,24519907468051532],[1073741837,163840,-1975303136765642,-1975301882939439],[1073741837,163845,-1975303106832961,-1975301912872117],[1073741837,163849,-3950608814469977,-3950601224940198],[1073741837,163852,3950601689143912,3950608350266260],[1073741837,67141637,-4648500342125002,-4648499082464426],[1073741837,67141641,6623801151062805,6623803293231701],[1073741837,67141644,-1975303106832961,-1975301912872117],[1073741837,67239945,1975301912872117,1975303106832961],[1073741837,67239948,-1975303106832961,-1975301912872117],[1073741837,1073741825,-13247606182566277,-13247602706022740],[1073741837,1073741828,6623799135992659,6623805308301850],[1073741837,1073741832,-15920803465251079,-15920799828222285],[1073741837,1073741837,-22544604802429304,-22544602935338568],[1073741837,1073774595,24519905262460552,24519907495012400],[1073741837,1073774598,-8599107896967374,-8599101567032212],[1073741837,1073774602,6623801151062805,6623803293231701],[1073741837,1073774607,22544601425886842,22544606311881030],[1073741837,1073774721,24519905289421414,24519907468051532],[1073741837,1073774724,-26495209977752878,-26495207799425147],[1073741837,1073774733,-1975303127852212,-1975301891852867],[1073741837,1073905665,3950601689143912,3950608350266260],[1073741837,1073905668,-3950608814469977,-3950601224940198],[1073741837,1073905672,-1975303106832961,-1975301912872117],[1073741837,1073905677,-1975303136765642,-1975301882939439],[1073741837,1140883457,-1975303106832961,-1975301912872117],[1073741837,1140883460,6623801151062805,6623803293231701],[1073741837,1140883464,-4648500342125002,-4648499082464426],[1073741837,1140981761,-1975303106832961,-1975301912872117],[1073741837,1140981764,1975301912872117,1975303106832961],[1073741837,140737488388101,-1975303165966039,-1975301853739043],[1073741837,140737488388105,24519905253728852,24519907503744101],[1073741837,140737488388108,-22544604490299392,-22544603247468479],[1073741837,140738562129921,-22544604490299392,-22544603247468479],[1073741837,140738562129924,24519905253728852,24519907503744101],[1073741837,140738562129928,-1975303165966039,-1975301853739043],[1073741838,6,-1975304247543921,-1975300772161160],[1073741838,12,1975300772161160,1975304247543921],[1073741838,32769,-26495210075134854,-26495207702043174],[1073741838,32775,17896101969228851,17896106343949595],[1073741838,32779,-19871408238006792,-19871405094876730],[1073741838,32781,-24519907495012400,-24519905262460552],[1073741838,32832,-13247605061578886,-13247603827010127],[1073741838,32842,-13247605061578886,-13247603827010127],[1073741838,32896,13247603827010127,13247605061578886],[1073741838,32906,13247603827010127,13247605061578886],[1073741838,163840,13247603817961795,13247605070627222],[1073741838,163846,-47064511840212707,-47064508655028107],[1073741838,163850,15222905730833912,15222908177460183],[1073741838,163852,45089206600617048,45089208874918688],[1073741838,67141638,-1975303106832961,-1975301912872117],[1073741838,67141644,1975301912872117,1975303106832961],[1073741838,67239942,-6623803293231701,-6623801151062805],[1073741838,67239946,4648499082464426,4648500342125002],[1073741838,67239948,1975301912872117,1975303106832961],[1073741838,1073741826,1975300772161160,1975304247543921],[1073741838,1073741832,-1975304247543921,-1975300772161160],[1073741838,1073774595,-24519907495012400,-24519905262460552],[1073741838,1073774597,-19871408238006792,-19871405094876730],[1073741838,1073774601,17896101969228851,17896106343949595],[1073741838,1073774607,-26495210075134854,-26495207702043174],[1073741838,1073774660,-13247605061578886,-13247603827010127],[1073741838,1073774670,-13247605061578886,-13247603827010127],[1073741838,1073774724,13247603827010127,13247605061578886],[1073741838,1073774734,13247603827010127,13247605061578886],[1073741838,1073905666,45089206600617048,45089208874918688],[1073741838,1073905668,15222905730833912,15222908177460183],[1073741838,1073905672,-47064511840212707,-47064508655028107],[1073741838,1073905678,13247603817961795,13247605070627222],[1073741838,1140883458,1975301912872117,1975303106832961],[1073741838,1140883464,-1975303106832961,-1975301912872117],[1073741838,1140981762,1975301912872117,1975303106832961],[1073741838,1140981764,4648499082464426,4648500342125002],[1073741838,1140981768,-6623803293231701,-6623801151062805],[1073741838,140737488388102,-22544604490299392,-22544603247468479],[1073741838,140737488388108,22544603247468479,22544604490299392],[1073741838,140738562129922,22544603247468479,22544604490299392],[1073741838,140738562129928,-22544604490299392,-22544603247468479],[1073741888,32775,-1975303127852212,-1975301891852867],[1073741888,32782,13247603827010127,13247605061578886],[1073741888,32908,13247603821617226,13247605066971786],[1073741888,163850,-1975303130040923,-1975301889664154],[1073741888,163976,-22544604489700504,-22544603248067364],[1073741888,688256,-1975303134066536,-1975301885638544],[1073741888,67239946,-4648500367050864,-4648499057538562],[1073741888,67240072,-1975303161793801,-1975301857911278],[1073741888,67764352,13247603792440361,13247605096148654],[1073741888,336068736,-4648500364875210,-4648499059714221],[1073741888,1073774663,-1975303127852212,-1975301891852867],[1073741888,1073774670,13247603827010127,13247605061578886],[1073741888,1073774796,13247603821617226,13247605066971786],[1073741888,1073905738,-1975303130040923,-1975301889664154],[1073741888,1073905864,-22544604489700504,-22544603248067364],[1073741888,1074430144,-1975303134066536,-1975301885638544],[1073741888,1140981834,-4648500367050864,-4648499057538562],[1073741888,1140981960,-1975303161793801,-1975301857911278],[1073741888,1141506240,13247603792440361,13247605096148654],[1073741888,1409810624,-4648500364875210,-4648499059714221],[1073741891,32775,-1975303127852212,-1975301891852867],[1073741891,32837,1975301891852867,1975303127852212],[1073741891,1073774598,1975301891852867,1975303127852212],[1073741891,1073774660,-1975303127852212,-1975301891852867],[1073741893,32770,-1975303127852212,-1975301891852867],[1073741893,32835,-1975303127852212,-1975301891852867],[1073741893,1073774598,-1975303127852212,-1975301891852867],[1073741893,1073774663,-1975303127852212,-1975301891852867],[1073741898,32782,13247603827010127,13247605061578886],[1073741898,32844,-13247605061578886,-13247603827010127],[1073741898,163850,-1975303130040923,-1975301889664154],[1073741898,163912,1975301889664154,1975303130040923],[1073741898,67239946,-4648500367050864,-4648499057538562],[1073741898,67240008,4648499057538562,4648500367050864],[1073741898,1073774598,-13247605061578886,-13247603827010127],[1073741898,1073774660,13247603827010127,13247605061578886],[1073741898,1073905666,1975301889664154,1975303130040923],[1073741898,1073905728,-1975303130040923,-1975301889664154],[1073741898,1140981762,4648499057538562,4648500367050864],[1073741898,1140981824,-4648500367050864,-4648499057538562],[1073741900,32770,13247603827010127,13247605061578886],[1073741900,32842,13247603827010127,13247605061578886],[1073741900,32896,13247603821617226,13247605066971786],[1073741900,32968,13247603821617226,13247605066971786],[1073741900,1073774598,13247603827010127,13247605061578886],[1073741900,1073774670,13247603827010127,13247605061578886],[1073741900,1073774724,13247603821617226,13247605066971786],[1073741900,1073774796,13247603821617226,13247605066971786],[1073741952,12,1975300803621296,1975304216083780],[1073741952,32772,-13247606122936882,-13247602765652131],[1073741952,32776,3950600812107830,3950609227302328],[1073741952,32781,1975301891852867,1975303127852212],[1073741952,32782,-13247605061578886,-13247603827010127],[1073741952,32844,-13247605066971786,-13247603821617226],[1073741952,33804,-13247605033169427,-13247603855419588],[1073741952,131080,-8599108077216494,-8599101386783086],[1073741952,163840,3950601587495984,3950608451914177],[1073741952,163850,1975301889664154,1975303130040923],[1073741952,163852,18593996485739860,18594001212617856],[1073741952,163912,22544603248067364,22544604489700504],[1073741952,164872,1975301917270118,1975303102434961],[1073741952,557056,1975300413869816,1975304605835260],[1073741952,557068,-13247605066127948,-13247603822461068],[1073741952,655360,-11272305272819252,-11272298596064681],[1073741952,688132,-13247605066127948,-13247603822461068],[1073741952,688136,49039810287641238,49039815227304660],[1073741952,688192,1975301885638544,1975303134066536],[1073741952,689152,1975301917236486,1975303102468593],[1073741952,1736704,22544603307191776,22544604430576096],[1073741952,67108872,4648497449753834,4648501974835595],[1073741952,67141644,1975301917270118,1975303102434961],[1073741952,67239936,-8599108332258679,-8599101131740910],[1073741952,67239946,4648499057538562,4648500367050864],[1073741952,67239948,1975301917270118,1975303102434961],[1073741952,67240008,1975301857911278,1975303161793801],[1073741952,67240968,4648499087000812,4648500337588616],[1073741952,67272712,-22544606281953756,-22544601455814116],[1073741952,67633152,6623797717533688,6623806726760819],[1073741952,67764232,-22544606469793008,-22544601267974862],[1073741952,67764288,-13247605096148654,-13247603792440361],[1073741952,67765248,-13247605066155522,-13247603822433492],[1073741952,67796992,18593996442899990,18594001255457720],[1073741952,68812800,1975301917236486,1975303102468593],[1073741952,268959744,4648498045480103,4648501379109328],[1073741952,269123584,1975301889643525,1975303130061553],[1073741952,335544320,4648497899071108,4648501525518317],[1073741952,335675400,4648499056652180,4648500367937249],[1073741952,336068616,4648499056652180,4648500367937249],[1073741952,336068672,4648499059714221,4648500364875210],[1073741952,336069632,4648499087034444,4648500337554984],[1073741952,336101376,1975301889643525,1975303130061553],[1073741952,336199680,-22544606473695306,-22544601264072564],[1073741952,337117184,1975301917270118,1975303102434961],[1073741952,470286336,-13247605033203059,-13247603855385956],[1073741952,1073741964,1975300803621296,1975304216083780],[1073741952,1073774724,-13247606122936882,-13247602765652131],[1073741952,1073774728,3950600812107830,3950609227302328],[1073741952,1073774733,1975301891852867,1975303127852212],[1073741952,1073774734,-13247605061578886,-13247603827010127],[1073741952,1073774796,-13247605066971786,-13247603821617226],[1073741952,1073775756,-13247605033169427,-13247603855419588],[1073741952,1073873032,-8599108077216494,-8599101386783086],[1073741952,1073905792,3950601587495984,3950608451914177],[1073741952,1073905802,1975301889664154,1975303130040923],[1073741952,1073905804,18593996485739860,18594001212617856],[1073741952,1073905864,22544603248067364,22544604489700504],[1073741952,1073906824,1975301917270118,1975303102434961],[1073741952,1074299008,1975300413869816,1975304605835260],[1073741952,1074299020,-13247605066127948,-13247603822461068],[1073741952,1074397312,-11272305272819252,-11272298596064681],[1073741952,1074430084,-13247605066127948,-13247603822461068],[1073741952,1074430088,49039810287641238,49039815227304660],[1073741952,1074430144,1975301885638544,1975303134066536],[1073741952,1074431104,1975301917236486,1975303102468593],[1073741952,1075478656,22544603307191776,22544604430576096],[1073741952,1140850824,4648497449753834,4648501974835595],[1073741952,1140883596,1975301917270118,1975303102434961],[1073741952,1140981888,-8599108332258679,-8599101131740910],[1073741952,1140981898,4648499057538562,4648500367050864],[1073741952,1140981900,1975301917270118,1975303102434961],[1073741952,1140981960,1975301857911278,1975303161793801],[1073741952,1140982920,4648499087000812,4648500337588616],[1073741952,1141014664,-22544606281953756,-22544601455814116],[1073741952,1141375104,6623797717533688,6623806726760819],[1073741952,1141506184,-22544606469793008,-22544601267974862],[1073741952,1141506240,-13247605096148654,-13247603792440361],[1073741952,1141507200,-13247605066155522,-13247603822433492],[1073741952,1141538944,18593996442899990,18594001255457720],[1073741952,1142554752,1975301917236486,1975303102468593],[1073741952,1342701696,4648498045480103,4648501379109328],[1073741952,1342865536,1975301889643525,1975303130061553],[1073741952,1409286272,4648497899071108,4648501525518317],[1073741952,1409417352,4648499056652180,4648500367937249],[1073741952,1409810568,4648499056652180,4648500367937249],[1073741952,1409810624,4648499059714221,4648500364875210],[1073741952,1409811584,4648499087034444,4648500337554984],[1073741952,1409843328,1975301889643525,1975303130061553],[1073741952,1409941632,-22544606473695306,-22544601264072564],[1073741952,1410859136,1975301917270118,1975303102434961],[1073741952,1544028288,-13247605033203059,-13247603855385956],[1073741952,17592253284360,-13247605100033866,-13247603788555150],[1073741952,17592253808640,1975301852392980,1975303167312100],[1073741952,17592522113024,-13247605101666952,-13247603786922062],[1073741952,17593327026312,-13247605100033866,-13247603788555150],[1073741952,17593327550592,1975301852392980,1975303167312100],[1073741952,17593595854976,-13247605101666952,-13247603786922062],[1073741952,35184708157440,1975301858410281,1975303161294799],[1073741952,35185781899392,1975301858410281,1975303161294799],[1073741952,140737488388108,22544603251967752,22544604485800118],[1073741952,140737488519176,-13247605066127948,-13247603822461068],[1073741952,140737489043456,-13247605076872486,-13247603811716528],[1073741952,140737555595272,1975301885115096,1975303134589986],[1073741952,140737556119552,22544603239782766,22544604497985104],[1073741952,140737824423936,1975301877105131,1975303142599947],[1073741952,140738562130060,22544603251967752,22544604485800118],[1073741952,140738562261128,-13247605066127948,-13247603822461068],[1073741952,140738562785408,-13247605076872486,-13247603811716528],[1073741952,140738629337224,1975301885115096,1975303134589986],[1073741952,140738629861504,22544603239782766,22544604497985104],[1073741952,140738898165888,1975301877105131,1975303142599947],[1073741957,32776,1975301891852867,1975303127852212],[1073741957,32905,26495207799425147,26495209977752878],[1073741957,32908,-24519907468051532,-24519905289421414],[1073741957,1073774601,-24519907468051532,-24519905289421414],[1073741957,1073774604,26495207799425147,26495209977752878],[1073741957,1073774733,1975301891852867,1975303127852212],[1073741958,32776,-26495209977752878,-26495207799425147],[1073741958,32906,-26495209977752878,-26495207799425147],[1073741958,1073774604,-26495209977752878,-26495207799425147],[1073741958,1073774734,-26495209977752878,-26495207799425147],[1073741961,32781,26495207799425147,26495209977752878],[1073741961,32901,-26495209977752878,-26495207799425147],[1073741961,1073774604,-26495209977752878,-26495207799425147],[1073741961,1073774724,26495207799425147,26495209977752878],[1073741962,32782,-13247605061578886,-13247603827010127],[1073741962,32902,26495207799425147,26495209977752878],[1073741962,32908,-13247605066971786,-13247603821617226],[1073741962,163850,1975301889664154,1975303130040923],[1073741962,163970,-24519907464403207,-24519905293069738],[1073741962,163976,22544603248067364,22544604489700504],[1073741962,67239946,4648499057538562,4648500367050864],[1073741962,67240066,-6623803358085955,-6623801086208550],[1073741962,67240072,1975301857911278,1975303161793801],[1073741962,1073774598,-13247605066971786,-13247603821617226],[1073741962,1073774604,26495207799425147,26495209977752878],[1073741962,1073774724,-13247605061578886,-13247603827010127],[1073741962,1073905666,22544603248067364,22544604489700504],[1073741962,1073905672,-24519907464403207,-24519905293069738],[1073741962,1073905792,1975301889664154,1975303130040923],[1073741962,1140981762,1975301857911278,1975303161793801],[1073741962,1140981768,-6623803358085955,-6623801086208550],[1073741962,1140981888,4648499057538562,4648500367050864],[1073741964,12,1975300803621296,1975304216083780],[1073741964,132,-1975304216083780,-1975300803621296],[1073741964,32770,13247603821617226,13247605066971786],[1073741964,32781,-24519907468051532,-24519905289421414],[1073741964,32832,-13247605066971786,-13247603821617226],[1073741964,32901,24519905289421414,24519907468051532],[1073741964,32906,13247603821617226,13247605066971786],[1073741964,32968,-13247605066971786,-13247603821617226],[1073741964,33792,-13247605033169427,-13247603855419588],[1073741964,33928,-13247605033169427,-13247603855419588],[1073741964,163840,13247603822461068,13247605066127948],[1073741964,163852,45089206614383552,45089208861152192],[1073741964,163972,-47064511822048211,-47064508673192612],[1073741964,163976,15222905739731186,15222908168562909],[1073741964,557056,-13247605066127948,-13247603822461068],[1073741964,557192,-13247605066127948,-13247603822461068],[1073741964,67141644,1975301917270118,1975303102434961],[1073741964,67141764,-1975303102434961,-1975301917270118],[1073741964,67239948,1975301917270118,1975303102434961],[1073741964,67240068,-6623803284297315,-6623801159997192],[1073741964,67240072,4648499087000812,4648500337588616],[1073741964,1073741832,-1975304216083780,-1975300803621296],[1073741964,1073741952,1975300803621296,1975304216083780],[1073741964,1073774598,13247603821617226,13247605066971786],[1073741964,1073774601,24519905289421414,24519907468051532],[1073741964,1073774660,-13247605066971786,-13247603821617226],[1073741964,1073774721,-24519907468051532,-24519905289421414],[1073741964,1073774734,13247603821617226,13247605066971786],[1073741964,1073774796,-13247605066971786,-13247603821617226],[1073741964,1073775620,-13247605033169427,-13247603855419588],[1073741964,1073775756,-13247605033169427,-13247603855419588],[1073741964,1073905668,15222905739731186,15222908168562909],[1073741964,1073905672,-47064511822048211,-47064508673192612],[1073741964,1073905792,45089206614383552,45089208861152192],[1073741964,1073905804,13247603822461068,13247605066127948],[1073741964,1074298884,-13247605066127948,-13247603822461068],[1073741964,1074299020,-13247605066127948,-13247603822461068],[1073741964,1140883464,-1975303102434961,-1975301917270118],[1073741964,1140883584,1975301917270118,1975303102434961],[1073741964,1140981764,4648499087000812,4648500337588616],[1073741964,1140981768,-6623803284297315,-6623801159997192],[1073741964,1140981888,1975301917270118,1975303102434961],[1073741964,140737488388108,22544603251967752,22544604485800118],[1073741964,140737488388228,-22544604485800118,-22544603251967752],[1073741964,140738562129928,-22544604485800118,-22544603251967752],[1073741964,140738562130048,22544603251967752,22544604485800118],[1073742024,32844,-13247605066971786,-13247603821617226],[1073742024,32908,13247603821617226,13247605066971786],[1073742024,163912,22544603248067364,22544604489700504],[1073742024,163976,-22544604489700504,-22544603248067364],[1073742024,67240008,1975301857911278,1975303161793801],[1073742024,67240072,-1975303161793801,-1975301857911278],[1073742024,1073774660,13247603821617226,13247605066971786],[1073742024,1073774724,-13247605066971786,-13247603821617226],[1073742024,1073905728,-22544604489700504,-22544603248067364],[1073742024,1073905792,22544603248067364,22544604489700504],[1073742024,1140981824,-1975303161793801,-1975301857911278],[1073742024,1140981888,1975301857911278,1975303161793801],[1073742848,32908,13247603855419588,13247605033169427],[1073742848,163976,-1975303102434961,-1975301917270118],[1073742848,688256,-1975303102468593,-1975301917236486],[1073742848,1736704,-22544604430576096,-22544603307191776],[1073742848,67240072,-4648500337588616,-4648499087000812],[1073742848,67764352,13247603822433492,13247605066155522],[1073742848,68812800,-1975303102468593,-1975301917236486],[1073742848,336068736,-4648500337554984,-4648499087034444],[1073742848,337117184,-1975303102434961,-1975301917270118],[1073742848,470810624,13247603855385956,13247605033203059],[1073742848,1073775756,13247603855419588,13247605033169427],[1073742848,1073906824,-1975303102434961,-1975301917270118],[1073742848,1074431104,-1975303102468593,-1975301917236486],[1073742848,1075479552,-22544604430576096,-22544603307191776],[1073742848,1140982920,-4648500337588616,-4648499087000812],[1073742848,1141507200,13247603822433492,13247605066155522],[1073742848,1142555648,-1975303102468593,-1975301917236486],[1073742848,1409811584,-4648500337554984,-4648499087034444],[1073742848,1410860032,-1975303102434961,-1975301917270118],[1073742848,1544553472,13247603855385956,13247605033203059],[1073742860,32896,13247603855419588,13247605033169427],[1073742860,33928,13247603855419588,13247605033169427],[1073742860,1073774724,13247603855419588,13247605033169427],[1073742860,1073775756,13247603855419588,13247605033169427],[1073742984,32908,13247603855419588,13247605033169427],[1073742984,33804,-13247605033169427,-13247603855419588],[1073742984,163976,-1975303102434961,-1975301917270118],[1073742984,164872,1975301917270118,1975303102434961],[1073742984,67240072,-4648500337588616,-4648499087000812],[1073742984,67240968,4648499087000812,4648500337588616],[1073742984,1073774724,-13247605033169427,-13247603855419588],[1073742984,1073775620,13247603855419588,13247605033169427],[1073742984,1073905792,1975301917270118,1975303102434961],[1073742984,1073906688,-1975303102434961,-1975301917270118],[1073742984,1140981888,4648499087000812,4648500337588616],[1073742984,1140982784,-4648500337588616,-4648499087000812],[1073774592,5,-1758883548,1758883552],[1073774592,9,11272301467669284,11272302401214652],[1073774592,12,19173508834098980,19173515113605268],[1073774592,131073,-15920803465251079,-15920799828222285],[1073774592,131076,-120352160799604924,-120352113794384070],[1073774592,131080,-63683210088709754,-63683203085183716],[1073774592,524292,17198207785357210,17198211142641961],[1073774592,524296,-3950605484998596,-3950604554411562],[1073774592,67108865,4648497893199929,4648501531389499],[1073774592,67108868,126278022677218062,126278066975886174],[1073774592,67108872,-7901214462754538,-7901205616065770],[1073774592,67239948,-3950606212356198,-3950603827053960],[1073774592,67764228,-1975303102468593,-1975301917236486],[1073774592,67764232,8599103952831266,8599105511168320],[1073774592,268435460,-13247606122970514,-13247602765618499],[1073774592,335675396,-1975303102434961,-1975301917270118],[1073774592,335675400,-4648500337554984,-4648499087034444],[1073774592,1073774597,-1758883548,1758883552],[1073774592,1073774601,11272301467669284,11272302401214652],[1073774592,1073774604,19173508834098980,19173515113605268],[1073774592,1073905665,-15920803465251079,-15920799828222285],[1073774592,1073905668,-120352160799604924,-120352113794384070],[1073774592,1073905672,-63683210088709754,-63683203085183716],[1073774592,1074298884,17198207785357210,17198211142641961],[1073774592,1074298888,-3950605484998596,-3950604554411562],[1073774592,1140883457,4648497893199929,4648501531389499],[1073774592,1140883460,126278022677218062,126278066975886174],[1073774592,1140883464,-7901214462754538,-7901205616065770],[1073774592,1141014540,-3950606212356198,-3950603827053960],[1073774592,1141538820,-1975303102468593,-1975301917236486],[1073774592,1141538824,8599103952831266,8599105511168320],[1073774592,1342210052,-13247606122970514,-13247602765618499],[1073774592,1409449988,-1975303102434961,-1975301917270118],[1073774592,1409449992,-4648500337554984,-4648499087034444],[1073774592,17592186044420,-11272305157286919,-11272298711597012],[1073774592,17592253284356,-1975303111382023,-1975301908323058],[1073774592,17592253284360,13247603813192808,13247605075396206],[1073774592,17593259819012,-11272305157286919,-11272298711597012],[1073774592,17593327058948,-1975303111382023,-1975301908323058],[1073774592,17593327058952,13247603813192808,13247605075396206],[1073774592,140737488355329,1975300580344758,1975304439360326],[1073774592,140737488355332,-187713876827545928,-187713836806076040],[1073774592,140737488355336,-11272305157286919,-11272298711597012],[1073774592,140737555595268,-35792210707429288,-35792205918927604],[1073774592,140737555595272,-1975303111382023,-1975301908323058],[1073774592,140738562129921,1975300580344758,1975304439360326],[1073774592,140738562129924,-187713876827545928,-187713836806076040],[1073774592,140738562129928,-11272305157286919,-11272298711597012],[1073774592,140738629369860,-35792210707429288,-35792205918927604],[1073774592,140738629369864,-1975303111382023,-1975301908323058],[1073774592,2305843009213693956,1975300580344758,1975304439360326],[1073774592,2305843010287468548,1975300580344758,1975304439360326],[1073774595,32769,4648497418040009,4648502006549417],[1073774595,32770,-4648502006549417,-4648497418040009],[1073774595,32781,-24519907495012400,-24519905262460552],[1073774595,32782,24519905262460552,24519907495012400],[1073774595,1073741825,-4648502006549417,-4648497418040009],[1073774595,1073741826,4648497418040009,4648502006549417],[1073774595,1073741837,24519905262460552,24519907495012400],[1073774595,1073741838,-24519907495012400,-24519905262460552],[1073774597,5,-1758883548,1758883552],[1073774597,32769,-118376856345199404,-118376813229084520],[1073774597,32772,118376814987968068,118376854586315852],[1073774597,32779,-19871408238006792,-19871405094876730],[1073774597,32782,19871405094876730,19871408238006792],[1073774597,131074,4648499082464426,4648500342125002],[1073774597,131079,4648499082464426,4648500342125002],[1073774597,131080,-4648500342125002,-4648499082464426],[1073774597,131085,-4648500342125002,-4648499082464426],[1073774597,67108866,-4648500342125002,-4648499082464426],[1073774597,67108871,-4648500342125002,-4648499082464426],[1073774597,67108872,4648499082464426,4648500342125002],[1073774597,67108877,4648499082464426,4648500342125002],[1073774597,67272705,-19871408238006792,-19871405094876730],[1073774597,67272708,19871405094876730,19871408238006792],[1073774597,1073741825,118376814987968068,118376854586315852],[1073774597,1073741828,-118376856345199404,-118376813229084520],[1073774597,1073741835,19871405094876730,19871408238006792],[1073774597,1073741838,-19871408238006792,-19871405094876730],[1073774597,1073774592,-1758883548,1758883552],[1073774597,1073905666,4648499082464426,4648500342125002],[1073774597,1073905671,4648499082464426,4648500342125002],[1073774597,1073905672,-4648500342125002,-4648499082464426],[1073774597,1073905677,-4648500342125002,-4648499082464426],[1073774597,1140883458,-4648500342125002,-4648499082464426],[1073774597,1140883463,-4648500342125002,-4648499082464426],[1073774597,1140883464,4648499082464426,4648500342125002],[1073774597,1140883469,4648499082464426,4648500342125002],[1073774597,1140981761,19871405094876730,19871408238006792],[1073774597,1140981764,-19871408238006792,-19871405094876730],[1073774597,140737488355330,-1975303165966039,-1975301853739043],[1073774597,140737488355335,-1975303165966039,-1975301853739043],[1073774597,140737488355336,1975301853739043,1975303165966039],[1073774597,140737488355341,1975301853739043,1975303165966039],[1073774597,140737488519169,11272300803168551,11272303065715385],[1073774597,140737488519172,-11272303065715385,-11272300803168551],[1073774597,140737555496961,-11272303065715385,-11272300803168551],[1073774597,140737555496964,11272300803168551,11272303065715385],[1073774597,140738562129922,-1975303165966039,-1975301853739043],[1073774597,140738562129927,-1975303165966039,-1975301853739043],[1073774597,140738562129928,1975301853739043,1975303165966039],[1073774597,140738562129933,1975301853739043,1975303165966039],[1073774597,140738562228225,-11272303065715385,-11272300803168551],[1073774597,140738562228228,11272300803168551,11272303065715385],[1073774597,140738629206017,11272300803168551,11272303065715385],[1073774597,140738629206020,-11272303065715385,-11272300803168551],[1073774598,32770,8599101567032212,8599107896967374],[1073774598,32772,-8599107896967374,-8599101567032212],[1073774598,32779,-8599107896967374,-8599101567032212],[1073774598,32781,8599101567032212,8599107896967374],[1073774598,32835,-1975303127852212,-1975301891852867],[1073774598,32837,1975301891852867,1975303127852212],[1073774598,32842,13247603827010127,13247605061578886],[1073774598,32844,-13247605061578886,-13247603827010127],[1073774598,32906,13247603821617226,13247605066971786],[1073774598,32908,-13247605066971786,-13247603821617226],[1073774598,131073,-4648500342125002,-4648499082464426],[1073774598,131079,-4648500342125002,-4648499082464426],[1073774598,131080,-1975303106832961,-1975301912872117],[1073774598,131086,-15222908177460183,-15222905730833912],[1073774598,163850,39742811597483621,39742815068283432],[1073774598,163852,-26495210148454004,-26495207628724032],[1073774598,67108865,4648499082464426,4648500342125002],[1073774598,67108871,4648499082464426,4648500342125002],[1073774598,67108872,1975301912872117,1975303106832961],[1073774598,67108878,1975301912872117,1975303106832961],[1073774598,1073741826,-8599107896967374,-8599101567032212],[1073774598,1073741828,8599101567032212,8599107896967374],[1073774598,1073741835,8599101567032212,8599107896967374],[1073774598,1073741837,-8599107896967374,-8599101567032212],[1073774598,1073741891,1975301891852867,1975303127852212],[1073774598,1073741893,-1975303127852212,-1975301891852867],[1073774598,1073741898,-13247605061578886,-13247603827010127],[1073774598,1073741900,13247603827010127,13247605061578886],[1073774598,1073741962,-13247605066971786,-13247603821617226],[1073774598,1073741964,13247603821617226,13247605066971786],[1073774598,1073872906,-26495210148454004,-26495207628724032],[1073774598,1073872908,39742811597483621,39742815068283432],[1073774598,1073905665,-4648500342125002,-4648499082464426],[1073774598,1073905671,-4648500342125002,-4648499082464426],[1073774598,1073905672,-15222908177460183,-15222905730833912],[1073774598,1073905678,-1975303106832961,-1975301912872117],[1073774598,1140883457,4648499082464426,4648500342125002],[1073774598,1140883463,4648499082464426,4648500342125002],[1073774598,1140883464,1975301912872117,1975303106832961],[1073774598,1140883470,1975301912872117,1975303106832961],[1073774598,140737488355329,1975301853739043,1975303165966039],[1073774598,140737488355335,1975301853739043,1975303165966039],[1073774598,140737488355336,22544603247468479,22544604490299392],[1073774598,140737488355342,22544603247468479,22544604490299392],[1073774598,140738562129921,1975301853739043,1975303165966039],[1073774598,140738562129927,1975301853739043,1975303165966039],[1073774598,140738562129928,22544603247468479,22544604490299392],[1073774598,140738562129934,22544603247468479,22544604490299392],[1073774601,0,22544602935338568,22544604802429304],[1073774601,9,11272301467669284,11272302401214652],[1073774601,32769,-4648502525987800,-4648496898601629],[1073774601,32775,17896101969228851,17896106343949595],[1073774601,32776,15920798832463209,15920804461010156],[1073774601,32782,-17896106343949595,-17896101969228851],[1073774601,32901,24519905289421414,24519907468051532],[1073774601,32908,-24519907468051532,-24519905289421414],[1073774601,131076,8599103034002244,8599106429997343],[1073774601,131085,6623801151062805,6623803293231701],[1073774601,163845,51015113065152905,51015117469498084],[1073774601,163852,-49039814950883308,-49039810564062600],[1073774601,67108868,-6623803293231701,-6623801151062805],[1073774601,67108877,-6623803293231701,-6623801151062805],[1073774601,1073741825,15920798832463209,15920804461010156],[1073774601,1073741831,-17896106343949595,-17896101969228851],[1073774601,1073741832,-4648502525987800,-4648496898601629],[1073774601,1073741838,17896101969228851,17896106343949595],[1073774601,1073741957,-24519907468051532,-24519905289421414],[1073774601,1073741964,24519905289421414,24519907468051532],[1073774601,1073774592,11272301467669284,11272302401214652],[1073774601,1073774601,22544602935338568,22544604802429304],[1073774601,1073872901,-49039814950883308,-49039810564062600],[1073774601,1073872908,51015113065152905,51015117469498084],[1073774601,1073905668,6623801151062805,6623803293231701],[1073774601,1073905677,8599103034002244,8599106429997343],[1073774601,1140883460,-6623803293231701,-6623801151062805],[1073774601,1140883469,-6623803293231701,-6623801151062805],[1073774601,140737488355332,-24519907503744101,-24519905253728852],[1073774601,140737488355341,-24519907503744101,-24519905253728852],[1073774601,140738562129924,-24519907503744101,-24519905253728852],[1073774601,140738562129933,-24519907503744101,-24519905253728852],[1073774602,32770,-3950609278673694,-3950600760736484],[1073774602,32775,6623801151062805,6623803293231701],[1073774602,32776,3950600760736484,3950609278673694],[1073774602,32781,-6623803293231701,-6623801151062805],[1073774602,67272706,6623801151062805,6623803293231701],[1073774602,67272712,-6623803293231701,-6623801151062805],[1073774602,1073741826,3950600760736484,3950609278673694],[1073774602,1073741831,-6623803293231701,-6623801151062805],[1073774602,1073741832,-3950609278673694,-3950600760736484],[1073774602,1073741837,6623801151062805,6623803293231701],[1073774602,1140981762,-6623803293231701,-6623801151062805],[1073774602,1140981768,6623801151062805,6623803293231701],[1073774604,0,11851812910563952,11851817207666526],[1073774604,12,19173508834098980,19173515113605268],[1073774604,32772,207738951876696445,207738996127646956],[1073774604,32775,-28470512991844104,-28470509805039004],[1073774604,32776,-215060696800522478,-215060645033294693],[1073774604,32779,28470509805039004,28470512991844104],[1073774604,32901,-26495209977752878,-26495207799425147],[1073774604,32902,26495207799425147,26495209977752878],[1073774604,32905,26495207799425147,26495209977752878],[1073774604,32906,-26495209977752878,-26495207799425147],[1073774604,131073,-3950606243598603,-3950603795811556],[1073774604,131074,1975301912872117,1975303106832961],[1073774604,131085,-1975303106832961,-1975301912872117],[1073774604,131086,15222905730833912,15222908177460183],[1073774604,131200,1975301917270118,1975303102434961],[1073774604,131212,15222905739731186,15222908168562909],[1073774604,163845,-52990419988112860,-52990415566243210],[1073774604,163846,39742811597483621,39742815068283432],[1073774604,163849,51015113065152905,51015117469498084],[1073774604,163850,-52990419988112860,-52990415566243210],[1073774604,163972,39742811621793198,39742815043973846],[1073774604,163976,-52990419959304000,-52990415595052060],[1073774604,655372,13247603811716528,13247605076872486],[1073774604,688132,13247603822461068,13247605066127948],[1073774604,688136,-26495209992202640,-26495207784975390],[1073774604,67108865,1975301912872117,1975303106832961],[1073774604,67108866,-1975303106832961,-1975301912872117],[1073774604,67108877,1975301912872117,1975303106832961],[1073774604,67108878,-1975303106832961,-1975301912872117],[1073774604,67108992,-1975303102434961,-1975301917270118],[1073774604,67109004,-1975303102434961,-1975301917270118],[1073774604,67239936,-3950606212356198,-3950603827053960],[1073774604,67239948,-30445818197184670,-30445809619403520],[1073774604,67272708,39742811571512963,39742815094254094],[1073774604,67272712,-13247609434184624,-13247599454404401],[1073774604,1073741828,-215060696800522478,-215060645033294693],[1073774604,1073741831,28470509805039004,28470512991844104],[1073774604,1073741832,207738951876696445,207738996127646956],[1073774604,1073741835,-28470512991844104,-28470509805039004],[1073774604,1073741957,26495207799425147,26495209977752878],[1073774604,1073741958,-26495209977752878,-26495207799425147],[1073774604,1073741961,-26495209977752878,-26495207799425147],[1073774604,1073741962,26495207799425147,26495209977752878],[1073774604,1073774592,19173508834098980,19173515113605268],[1073774604,1073774604,11851812910563952,11851817207666526],[1073774604,1073872901,51015113065152905,51015117469498084],[1073774604,1073872902,-52990419988112860,-52990415566243210],[1073774604,1073872905,-52990419988112860,-52990415566243210],[1073774604,1073872906,39742811597483621,39742815068283432],[1073774604,1073873028,-52990419959304000,-52990415595052060],[1073774604,1073873032,39742811621793198,39742815043973846],[1073774604,1073905665,-1975303106832961,-1975301912872117],[1073774604,1073905666,15222905730833912,15222908177460183],[1073774604,1073905677,-3950606243598603,-3950603795811556],[1073774604,1073905678,1975301912872117,1975303106832961],[1073774604,1073905792,15222905739731186,15222908168562909],[1073774604,1073905804,1975301917270118,1975303102434961],[1073774604,1074397188,-26495209992202640,-26495207784975390],[1073774604,1074397192,13247603822461068,13247605066127948],[1073774604,1074429952,13247603811716528,13247605076872486],[1073774604,1140883457,1975301912872117,1975303106832961],[1073774604,1140883458,-1975303106832961,-1975301912872117],[1073774604,1140883469,1975301912872117,1975303106832961],[1073774604,1140883470,-1975303106832961,-1975301912872117],[1073774604,1140883584,-1975303102434961,-1975301917270118],[1073774604,1140883596,-1975303102434961,-1975301917270118],[1073774604,1140981764,-13247609434184624,-13247599454404401],[1073774604,1140981768,39742811571512963,39742815094254094],[1073774604,1141014528,-30445818197184670,-30445809619403520],[1073774604,1141014540,-3950606212356198,-3950603827053960],[1073774604,140737488355329,22544603247468479,22544604490299392],[1073774604,140737488355330,-22544604490299392,-22544603247468479],[1073774604,140737488355341,22544603247468479,22544604490299392],[1073774604,140737488355342,-22544604490299392,-22544603247468479],[1073774604,140737488355456,-22544604485800118,-22544603251967752],[1073774604,140737488355468,-22544604485800118,-22544603251967752],[1073774604,140737488486400,-45089209011534280,-45089206464001460],[1073774604,140737488486412,-49039814402932400,-49039811112013498],[1073774604,140737488519172,-11272303013198523,-11272300855685410],[1073774604,140737488519176,15222904711107262,15222909197186829],[1073774604,140737555496964,11272300855685410,11272303013198523],[1073774604,140737555496968,-11272303013198523,-11272300855685410],[1073774604,140738562129921,22544603247468479,22544604490299392],[1073774604,140738562129922,-22544604490299392,-22544603247468479],[1073774604,140738562129933,22544603247468479,22544604490299392],[1073774604,140738562129934,-22544604490299392,-22544603247468479],[1073774604,140738562130048,-22544604485800118,-22544603251967752],[1073774604,140738562130060,-22544604485800118,-22544603251967752],[1073774604,140738562228228,15222904711107262,15222909197186829],[1073774604,140738562228232,-11272303013198523,-11272300855685410],[1073774604,140738562260992,-49039814402932400,-49039811112013498],[1073774604,140738562261004,-45089209011534280,-45089206464001460],[1073774604,140738629206020,-11272303013198523,-11272300855685410],[1073774604,140738629206024,11272300855685410,11272303013198523],[1073774607,32769,-26495210075134854,-26495207702043174],[1073774607,32770,22544601425886842,22544606311881030],[1073774607,32775,-3950606276156332,-3950603763253824],[1073774607,32776,3950603763253824,3950606276156332],[1073774607,32781,-22544606311881030,-22544601425886842],[1073774607,32782,26495207702043174,26495210075134854],[1073774607,1073741825,26495207702043174,26495210075134854],[1073774607,1073741826,-22544606311881030,-22544601425886842],[1073774607,1073741831,3950603763253824,3950606276156332],[1073774607,1073741832,-3950606276156332,-3950603763253824],[1073774607,1073741837,22544601425886842,22544606311881030],[1073774607,1073741838,-26495210075134854,-26495207702043174],[1073774660,32775,-1975303127852212,-1975301891852867],[1073774660,32782,13247603827010127,13247605061578886],[1073774660,32835,1975301891852867,1975303127852212],[1073774660,32842,-13247605061578886,-13247603827010127],[1073774660,32908,13247603821617226,13247605066971786],[1073774660,32968,-13247605066971786,-13247603821617226],[1073774660,1073741831,1975301891852867,1975303127852212],[1073774660,1073741838,-13247605061578886,-13247603827010127],[1073774660,1073741891,-1975303127852212,-1975301891852867],[1073774660,1073741898,13247603827010127,13247605061578886],[1073774660,1073741964,-13247605066971786,-13247603821617226],[1073774660,1073742024,13247603821617226,13247605066971786],[1073774663,32770,-1975303127852212,-1975301891852867],[1073774663,32775,-1975303127852212,-1975301891852867],[1073774663,32832,1975301891852867,1975303127852212],[1073774663,32837,1975301891852867,1975303127852212],[1073774663,1073741826,1975301891852867,1975303127852212],[1073774663,1073741831,1975301891852867,1975303127852212],[1073774663,1073741888,-1975303127852212,-1975301891852867],[1073774663,1073741893,-1975303127852212,-1975301891852867],[1073774670,32770,13247603827010127,13247605061578886],[1073774670,32782,13247603827010127,13247605061578886],[1073774670,32832,-13247605061578886,-13247603827010127],[1073774670,32844,-13247605061578886,-13247603827010127],[1073774670,1073741826,-13247605061578886,-13247603827010127],[1073774670,1073741838,-13247605061578886,-13247603827010127],[1073774670,1073741888,13247603827010127,13247605061578886],[1073774670,1073741900,13247603827010127,13247605061578886],[1073774721,32781,-24519907468051532,-24519905289421414],[1073774721,32908,24519905289421414,24519907468051532],[1073774721,1073741837,24519905289421414,24519907468051532],[1073774721,1073741964,-24519907468051532,-24519905289421414],[1073774724,32772,-13247606122936882,-13247602765652131],[1073774724,32781,26495207799425147,26495209977752878],[1073774724,32782,-13247605061578886,-13247603827010127],[1073774724,32844,-13247605066971786,-13247603821617226],[1073774724,32896,13247602765652131,13247606122936882],[1073774724,32905,-26495209977752878,-26495207799425147],[1073774724,32906,13247603827010127,13247605061578886],[1073774724,32968,13247603821617226,13247605066971786],[1073774724,33804,-13247605033169427,-13247603855419588],[1073774724,33928,13247603855419588,13247605033169427],[1073774724,131080,-1975303102434961,-1975301917270118],[1073774724,131212,-15222908168562909,-15222905739731186],[1073774724,163852,-26495210128643692,-26495207648534336],[1073774724,163976,39742811621793198,39742815043973846],[1073774724,557068,-13247605066127948,-13247603822461068],[1073774724,557192,13247603822461068,13247605066127948],[1073774724,655492,-13247605076872486,-13247603811716528],[1073774724,688132,-13247605066127948,-13247603822461068],[1073774724,688256,26495207784975390,26495209992202640],[1073774724,67108872,1975301917270118,1975303102434961],[1073774724,67109004,1975301917270118,1975303102434961],[1073774724,1073741828,13247602765652131,13247606122936882],[1073774724,1073741837,-26495209977752878,-26495207799425147],[1073774724,1073741838,13247603827010127,13247605061578886],[1073774724,1073741900,13247603821617226,13247605066971786],[1073774724,1073741952,-13247606122936882,-13247602765652131],[1073774724,1073741961,26495207799425147,26495209977752878],[1073774724,1073741962,-13247605061578886,-13247603827010127],[1073774724,1073742024,-13247605066971786,-13247603821617226],[1073774724,1073742860,13247603855419588,13247605033169427],[1073774724,1073742984,-13247605033169427,-13247603855419588],[1073774724,1073872908,39742811621793198,39742815043973846],[1073774724,1073873032,-26495210128643692,-26495207648534336],[1073774724,1073905672,-15222908168562909,-15222905739731186],[1073774724,1073905804,-1975303102434961,-1975301917270118],[1073774724,1074266124,13247603822461068,13247605066127948],[1073774724,1074266248,-13247605066127948,-13247603822461068],[1073774724,1074397188,26495207784975390,26495209992202640],[1073774724,1074397312,-13247605066127948,-13247603822461068],[1073774724,1074429952,-13247605076872486,-13247603811716528],[1073774724,1140883464,1975301917270118,1975303102434961],[1073774724,1140883596,1975301917270118,1975303102434961],[1073774724,140737488355336,22544603251967752,22544604485800118],[1073774724,140737488355468,22544603251967752,22544604485800118],[1073774724,140738562129928,22544603251967752,22544604485800118],[1073774724,140738562130060,22544603251967752,22544604485800118],[1073774728,32776,3950600812107830,3950609227302328],[1073774728,32896,-3950609227302328,-3950600812107830],[1073774728,688136,26495207784975390,26495209992202640],[1073774728,688256,-26495209992202640,-26495207784975390],[1073774728,67272712,-6623803284297315,-6623801159997192],[1073774728,67272832,6623801159997192,6623803284297315],[1073774728,1073741832,-3950609227302328,-3950600812107830],[1073774728,1073741952,3950600812107830,3950609227302328],[1073774728,1074397192,-26495209992202640,-26495207784975390],[1073774728,1074397312,26495207784975390,26495209992202640],[1073774728,1140981768,6623801159997192,6623803284297315],[1073774728,1140981888,-6623803284297315,-6623801159997192],[1073774733,32776,1975301891852867,1975303127852212],[1073774733,32781,1975301891852867,1975303127852212],[1073774733,32896,-1975303127852212,-1975301891852867],[1073774733,32901,-1975303127852212,-1975301891852867],[1073774733,1073741832,-1975303127852212,-1975301891852867],[1073774733,1073741837,-1975303127852212,-1975301891852867],[1073774733,1073741952,1975301891852867,1975303127852212],[1073774733,1073741957,1975301891852867,1975303127852212],[1073774734,32770,13247603821617226,13247605066971786],[1073774734,32776,-26495209977752878,-26495207799425147],[1073774734,32782,-13247605061578886,-13247603827010127],[1073774734,32896,13247603827010127,13247605061578886],[1073774734,32902,26495207799425147,26495209977752878],[1073774734,32908,-13247605066971786,-13247603821617226],[1073774734,1073741826,-13247605066971786,-13247603821617226],[1073774734,1073741832,26495207799425147,26495209977752878],[1073774734,1073741838,13247603827010127,13247605061578886],[1073774734,1073741952,-13247605061578886,-13247603827010127],[1073774734,1073741958,-26495209977752878,-26495207799425147],[1073774734,1073741964,13247603821617226,13247605066971786],[1073774796,32832,-13247605066971786,-13247603821617226],[1073774796,32844,-13247605066971786,-13247603821617226],[1073774796,32896,13247603821617226,13247605066971786],[1073774796,32908,13247603821617226,13247605066971786],[1073774796,1073741888,13247603821617226,13247605066971786],[1073774796,1073741900,13247603821617226,13247605066971786],[1073774796,1073741952,-13247605066971786,-13247603821617226],[1073774796,1073741964,-13247605066971786,-13247603821617226],[1073775620,32908,13247603855419588,13247605033169427],[1073775620,33928,-13247605033169427,-13247603855419588],[1073775620,1073741964,-13247605033169427,-13247603855419588],[1073775620,1073742984,13247603855419588,13247605033169427],[1073775756,32896,13247603855419588,13247605033169427],[1073775756,32908,13247603855419588,13247605033169427],[1073775756,33792,-13247605033169427,-13247603855419588],[1073775756,33804,-13247605033169427,-13247603855419588],[1073775756,1073741952,-13247605033169427,-13247603855419588],[1073775756,1073741964,-13247605033169427,-13247603855419588],[1073775756,1073742848,13247603855419588,13247605033169427],[1073775756,1073742860,13247603855419588,13247605033169427],[1073872896,5,11272301467669284,11272302401214652],[1073872896,12,20569296483878353,20569306234184452],[1073872896,32769,6623799135992659,6623805308301850],[1073872896,32770,-1975304247543921,-1975300772161160],[1073872896,32772,-222382391306796628,-222382344356494327],[1073872896,32776,320189871195698486,320189931323813606],[1073872896,32781,1975301882939439,1975303136765642],[1073872896,32782,-13247605070627222,-13247603817961795],[1073872896,32896,-3950608451914177,-3950601587495984],[1073872896,32908,-13247605066127948,-13247603822461068],[1073872896,524292,-1975305295212454,-1975299724492630],[1073872896,524296,-19871412418198236,-19871400914685277],[1073872896,557068,-39742815043973846,-39742811621793198],[1073872896,67108866,-4648501531389499,-4648497893199929],[1073872896,67108868,20569293260874416,20569309457188365],[1073872896,67108872,-133599767595705506,-133599715886872508],[1073872896,67108992,8599101131740910,8599108332258679],[1073872896,67141644,-35792211241229472,-35792205385127423],[1073872896,67665924,-24519908060482760,-24519904696990186],[1073872896,67665928,19871400914685277,19871412418198236],[1073872896,268435464,15920798878436957,15920804415036409],[1073872896,335577096,8599103049607085,8599106414392500],[1073872896,336068616,8599102944480312,8599106519519277],[1073872896,336068736,4648499056652180,4648500367937249],[1073872896,1073872901,11272301467669284,11272302401214652],[1073872896,1073872908,20569296483878353,20569306234184452],[1073872896,1073905665,6623799135992659,6623805308301850],[1073872896,1073905666,-1975304247543921,-1975300772161160],[1073872896,1073905668,-222382391306796628,-222382344356494327],[1073872896,1073905672,320189871195698486,320189931323813606],[1073872896,1073905677,1975301882939439,1975303136765642],[1073872896,1073905678,-13247605070627222,-13247603817961795],[1073872896,1073905792,-3950608451914177,-3950601587495984],[1073872896,1073905804,-13247605066127948,-13247603822461068],[1073872896,1074397188,-1975305295212454,-1975299724492630],[1073872896,1074397192,-19871412418198236,-19871400914685277],[1073872896,1074429964,-39742815043973846,-39742811621793198],[1073872896,1140981762,-4648501531389499,-4648497893199929],[1073872896,1140981764,20569293260874416,20569309457188365],[1073872896,1140981768,-133599767595705506,-133599715886872508],[1073872896,1140981888,8599101131740910,8599108332258679],[1073872896,1141014540,-35792211241229472,-35792205385127423],[1073872896,1141538820,-24519908060482760,-24519904696990186],[1073872896,1141538824,19871400914685277,19871412418198236],[1073872896,1342308360,15920798878436957,15920804415036409],[1073872896,1409449992,8599103049607085,8599106414392500],[1073872896,1409941512,8599102944480312,8599106519519277],[1073872896,1409941632,4648499056652180,4648500367937249],[1073872896,17592186044424,-7321699779192130,-7321694050281650],[1073872896,17592253186056,11272300234269956,11272303634613982],[1073872896,17592253677576,-11272303079253853,-11272300789630083],[1073872896,17592521588744,-11272302768733624,-11272301100150310],[1073872896,17593259917320,-7321699779192130,-7321694050281650],[1073872896,17593327058952,11272300234269956,11272303634613982],[1073872896,17593327550472,-11272303079253853,-11272300789630083],[1073872896,17593595461640,-11272302768733624,-11272301100150310],[1073872896,140737488355332,-7321699779192130,-7321694050281650],[1073872896,140737488355336,3950600725236988,3950609314173172],[1073872896,140737488388108,45089206464001460,45089209011534280],[1073872896,140737488912388,22544603251967752,22544604485800118],[1073872896,140737488912392,-26495209992202640,-26495207784975390],[1073872896,140737555496964,11272300234269956,11272303634613982],[1073872896,140737555496968,-3950609314173172,-3950600725236988],[1073872896,140737555988488,24519905280236082,24519907477236870],[1073872896,140737823899656,1975301877105131,1975303142599947],[1073872896,140738562228228,-7321699779192130,-7321694050281650],[1073872896,140738562228232,3950600725236988,3950609314173172],[1073872896,140738562261004,45089206464001460,45089209011534280],[1073872896,140738562785284,22544603251967752,22544604485800118],[1073872896,140738562785288,-26495209992202640,-26495207784975390],[1073872896,140738629369860,11272300234269956,11272303634613982],[1073872896,140738629369864,-3950609314173172,-3950600725236988],[1073872896,140738629861384,24519905280236082,24519907477236870],[1073872896,140738897772552,1975301877105131,1975303142599947],[1073872896,158329741508616,45089206464001460,45089209011534280],[1073872896,158330815381512,45089206464001460,45089209011534280],[1073872901,0,22544602935338568,22544604802429304],[1073872901,5,11272301467669284,11272302401214652],[1073872901,32770,-6623803293231701,-6623801151062805],[1073872901,32775,-6623803293231701,-6623801151062805],[1073872901,32776,8599103034002244,8599106429997343],[1073872901,32781,6623801151062805,6623803293231701],[1073872901,131073,-4648502525987800,-4648496898601629],[1073872901,131076,15920798832463209,15920804461010156],[1073872901,163849,51015113065152905,51015117469498084],[1073872901,163852,-49039814950883308,-49039810564062600],[1073872901,688129,24519905289421414,24519907468051532],[1073872901,688132,-24519907468051532,-24519905289421414],[1073872901,67272705,17896101969228851,17896106343949595],[1073872901,67272708,-17896106343949595,-17896101969228851],[1073872901,1073741825,15920798832463209,15920804461010156],[1073872901,1073741828,-4648502525987800,-4648496898601629],[1073872901,1073774601,-49039814950883308,-49039810564062600],[1073872901,1073774604,51015113065152905,51015117469498084],[1073872901,1073872896,11272301467669284,11272302401214652],[1073872901,1073872901,22544602935338568,22544604802429304],[1073872901,1073905666,-6623803293231701,-6623801151062805],[1073872901,1073905671,-6623803293231701,-6623801151062805],[1073872901,1073905672,6623801151062805,6623803293231701],[1073872901,1073905677,8599103034002244,8599106429997343],[1073872901,1074298881,-24519907468051532,-24519905289421414],[1073872901,1074298884,24519905289421414,24519907468051532],[1073872901,1140883457,-17896106343949595,-17896101969228851],[1073872901,1140883460,17896101969228851,17896106343949595],[1073872901,140737488519169,-24519907503744101,-24519905253728852],[1073872901,140737488519172,24519905253728852,24519907503744101],[1073872901,140738562129921,24519905253728852,24519907503744101],[1073872901,140738562129924,-24519907503744101,-24519905253728852],[1073872902,32769,6623801151062805,6623803293231701],[1073872902,32775,6623801151062805,6623803293231701],[1073872902,32776,-3950609278673694,-3950600760736484],[1073872902,32782,49039810709439166,49039814805506726],[1073872902,163850,-52990419988112860,-52990415566243210],[1073872902,67108872,6623801151062805,6623803293231701],[1073872902,67108878,6623801151062805,6623803293231701],[1073872902,1073774604,-52990419988112860,-52990415566243210],[1073872902,1073905665,6623801151062805,6623803293231701],[1073872902,1073905671,6623801151062805,6623803293231701],[1073872902,1073905672,49039810709439166,49039814805506726],[1073872902,1073905678,-3950609278673694,-3950600760736484],[1073872902,1140981768,6623801151062805,6623803293231701],[1073872902,1140981774,6623801151062805,6623803293231701],[1073872905,32770,-1975303106832961,-1975301912872117],[1073872905,32772,-53688314836179204,-53688310103356116],[1073872905,32779,-1975303106832961,-1975301912872117],[1073872905,32781,-697899269935994,-697890115243256],[1073872905,163845,-52990419988112860,-52990415566243210],[1073872905,67108866,-4648500342125002,-4648499082464426],[1073872905,67108868,-1975303106832961,-1975301912872117],[1073872905,67108875,-4648500342125002,-4648499082464426],[1073872905,67108877,-1975303106832961,-1975301912872117],[1073872905,1073774604,-52990419988112860,-52990415566243210],[1073872905,1073905666,-1975303106832961,-1975301912872117],[1073872905,1073905668,-697899269935994,-697890115243256],[1073872905,1073905675,-1975303106832961,-1975301912872117],[1073872905,1073905677,-53688314836179204,-53688310103356116],[1073872905,1140981762,-4648500342125002,-4648499082464426],[1073872905,1140981764,-1975303106832961,-1975301912872117],[1073872905,1140981771,-4648500342125002,-4648499082464426],[1073872905,1140981773,-1975303106832961,-1975301912872117],[1073872906,32769,1975301912872117,1975303106832961],[1073872906,32772,-1975303106832961,-1975301912872117],[1073872906,32779,1975301912872117,1975303106832961],[1073872906,32782,-15222908177460183,-15222905730833912],[1073872906,32832,1975301889664154,1975303130040923],[1073872906,32842,1975301889664154,1975303130040923],[1073872906,32896,-1975303130040923,-1975301889664154],[1073872906,32906,-1975303130040923,-1975301889664154],[1073872906,131074,8599101567032212,8599107896967374],[1073872906,131080,-8599107896967374,-8599101567032212],[1073872906,163846,39742811597483621,39742815068283432],[1073872906,163852,-26495210148454004,-26495207628724032],[1073872906,688130,-26495209977752878,-26495207799425147],[1073872906,688136,26495207799425147,26495209977752878],[1073872906,67108865,4648499082464426,4648500342125002],[1073872906,67108868,-4648500342125002,-4648499082464426],[1073872906,67108875,4648499082464426,4648500342125002],[1073872906,67108878,-4648500342125002,-4648499082464426],[1073872906,67108928,4648499057538562,4648500367050864],[1073872906,67108938,4648499057538562,4648500367050864],[1073872906,67108992,-4648500367050864,-4648499057538562],[1073872906,67109002,-4648500367050864,-4648499057538562],[1073872906,67272706,-8599107896967374,-8599101567032212],[1073872906,67272712,8599101567032212,8599107896967374],[1073872906,67764226,6623801107293350,6623803337001160],[1073872906,67764232,-6623803337001160,-6623801107293350],[1073872906,335675394,-4648500364875210,-4648499059714221],[1073872906,335675400,4648499059714221,4648500364875210],[1073872906,1073741826,-8599107896967374,-8599101567032212],[1073872906,1073741832,8599101567032212,8599107896967374],[1073872906,1073774598,-26495210148454004,-26495207628724032],[1073872906,1073774604,39742811597483621,39742815068283432],[1073872906,1073905665,1975301912872117,1975303106832961],[1073872906,1073905668,-15222908177460183,-15222905730833912],[1073872906,1073905675,1975301912872117,1975303106832961],[1073872906,1073905678,-1975303106832961,-1975301912872117],[1073872906,1073905728,1975301889664154,1975303130040923],[1073872906,1073905738,1975301889664154,1975303130040923],[1073872906,1073905792,-1975303130040923,-1975301889664154],[1073872906,1073905802,-1975303130040923,-1975301889664154],[1073872906,1074298882,26495207799425147,26495209977752878],[1073872906,1074298888,-26495209977752878,-26495207799425147],[1073872906,1140883458,8599101567032212,8599107896967374],[1073872906,1140883464,-8599107896967374,-8599101567032212],[1073872906,1140981761,4648499082464426,4648500342125002],[1073872906,1140981764,-4648500342125002,-4648499082464426],[1073872906,1140981771,4648499082464426,4648500342125002],[1073872906,1140981774,-4648500342125002,-4648499082464426],[1073872906,1140981824,4648499057538562,4648500367050864],[1073872906,1140981834,4648499057538562,4648500367050864],[1073872906,1140981888,-4648500367050864,-4648499057538562],[1073872906,1140981898,-4648500367050864,-4648499057538562],[1073872906,1141374978,-6623803337001160,-6623801107293350],[1073872906,1141374984,6623801107293350,6623803337001160],[1073872906,1409286146,4648499059714221,4648500364875210],[1073872906,1409286152,-4648500364875210,-4648499059714221],[1073872906,17592253284354,13247603786059568,13247605102529449],[1073872906,17592253284360,-13247605102529449,-13247603786059568],[1073872906,17593326895106,-13247605102529449,-13247603786059568],[1073872906,17593326895112,13247603786059568,13247605102529449],[1073872906,140737488519170,13247603817961795,13247605070627222],[1073872906,140737488519176,-13247605070627222,-13247603817961795],[1073872906,140737555595266,-1975303136765642,-1975301882939439],[1073872906,140737555595272,1975301882939439,1975303136765642],[1073872906,140738562129922,-13247605070627222,-13247603817961795],[1073872906,140738562129928,13247603817961795,13247605070627222],[1073872906,140738629206018,1975301882939439,1975303136765642],[1073872906,140738629206024,-1975303136765642,-1975301882939439],[1073872908,0,33237389689794910,33237395667510356],[1073872908,12,20569296483878353,20569306234184452],[1073872908,32769,47064508655028107,47064511840212707],[1073872908,32770,-7321700242729086,-7321693586744675],[1073872908,32781,-3950608814469977,-3950601224940198],[1073872908,32782,-47064511840212707,-47064508655028107],[1073872908,32896,-7321700200255013,-7321693629218766],[1073872908,32908,-47064511822048211,-47064508673192612],[1073872908,131076,20569293250811822,20569309467250933],[1073872908,131080,-7901214439889918,-7901205638930376],[1073872908,163845,51015113065152905,51015117469498084],[1073872908,163850,39742811597483621,39742815068283432],[1073872908,163976,39742811621793198,39742815043973846],[1073872908,557056,-39742815043973846,-39742811621793198],[1073872908,688132,-51015117307046807,-51015113227604174],[1073872908,688136,11272298183630328,11272305685253609],[1073872908,67108865,1975301912872117,1975303106832961],[1073872908,67108866,-1975303106832961,-1975301912872117],[1073872908,67108877,1975301912872117,1975303106832961],[1073872908,67108878,-1975303106832961,-1975301912872117],[1073872908,67108992,-1975303102434961,-1975301917270118],[1073872908,67109004,-1975303102434961,-1975301917270118],[1073872908,67141632,-35792211241229472,-35792205385127423],[1073872908,67141644,56941019780492396,56941025813273826],[1073872908,67272708,-79485631987828172,-79485621343705900],[1073872908,67272712,-13247609394938084,-13247599493650961],[1073872908,67764228,6623801159997192,6623803284297315],[1073872908,67764232,-6623803284297315,-6623801159997192],[1073872908,335675396,-4648500337554984,-4648499087034444],[1073872908,335675400,4648499087034444,4648500337554984],[1073872908,1073741828,-7901214439889918,-7901205638930376],[1073872908,1073741832,20569293250811822,20569309467250933],[1073872908,1073774598,39742811597483621,39742815068283432],[1073872908,1073774601,51015113065152905,51015117469498084],[1073872908,1073774724,39742811621793198,39742815043973846],[1073872908,1073872896,20569296483878353,20569306234184452],[1073872908,1073872908,33237389689794910,33237395667510356],[1073872908,1073905665,-3950608814469977,-3950601224940198],[1073872908,1073905666,-47064511840212707,-47064508655028107],[1073872908,1073905677,47064508655028107,47064511840212707],[1073872908,1073905678,-7321700242729086,-7321693586744675],[1073872908,1073905792,-47064511822048211,-47064508673192612],[1073872908,1073905804,-7321700200255013,-7321693629218766],[1073872908,1074298884,11272298183630328,11272305685253609],[1073872908,1074298888,-51015117307046807,-51015113227604174],[1073872908,1074429964,-39742815043973846,-39742811621793198],[1073872908,1140883460,-13247609394938084,-13247599493650961],[1073872908,1140883464,-79485631987828172,-79485621343705900],[1073872908,1140981761,1975301912872117,1975303106832961],[1073872908,1140981762,-1975303106832961,-1975301912872117],[1073872908,1140981773,1975301912872117,1975303106832961],[1073872908,1140981774,-1975303106832961,-1975301912872117],[1073872908,1140981888,-1975303102434961,-1975301917270118],[1073872908,1140981900,-1975303102434961,-1975301917270118],[1073872908,1141014528,56941019780492396,56941025813273826],[1073872908,1141014540,-35792211241229472,-35792205385127423],[1073872908,1141374980,-6623803284297315,-6623801159997192],[1073872908,1141374984,6623801159997192,6623803284297315],[1073872908,1409286148,4648499087034444,4648500337554984],[1073872908,1409286152,-4648500337554984,-4648499087034444],[1073872908,17592253284356,13247603813192808,13247605075396206],[1073872908,17592253284360,-13247605075396206,-13247603813192808],[1073872908,17593326895108,-13247605075396206,-13247603813192808],[1073872908,17593326895112,13247603813192808,13247605075396206],[1073872908,140737488388108,49039811112013498,49039814402932400],[1073872908,140737488519172,-11272305157286919,-11272298711597012],[1073872908,140737488519176,-37767512400416486,-37767509245645481],[1073872908,140737555595268,-1975303111382023,-1975301908323058],[1073872908,140737555595272,1975301908323058,1975303111382023],[1073872908,140738562129924,-37767512400416486,-37767509245645481],[1073872908,140738562129928,-11272305157286919,-11272298711597012],[1073872908,140738562260992,49039811112013498,49039814402932400],[1073872908,140738629206020,1975301908323058,1975303111382023],[1073872908,140738629206024,-1975303111382023,-1975301908323058],[1073872968,32770,-1975303130040923,-1975301889664154],[1073872968,32842,-1975303130040923,-1975301889664154],[1073872968,32896,-22544604489700504,-22544603248067364],[1073872968,32968,-22544604489700504,-22544603248067364],[1073872968,67108866,-4648500367050864,-4648499057538562],[1073872968,67108938,-4648500367050864,-4648499057538562],[1073872968,67108992,-1975303161793801,-1975301857911278],[1073872968,67109064,-1975303161793801,-1975301857911278],[1073872968,1073905666,-1975303130040923,-1975301889664154],[1073872968,1073905738,-1975303130040923,-1975301889664154],[1073872968,1073905792,-22544604489700504,-22544603248067364],[1073872968,1073905864,-22544604489700504,-22544603248067364],[1073872968,1140981762,-4648500367050864,-4648499057538562],[1073872968,1140981834,-4648500367050864,-4648499057538562],[1073872968,1140981888,-1975303161793801,-1975301857911278],[1073872968,1140981960,-1975303161793801,-1975301857911278],[1073873026,32776,24519905293069738,24519907464403207],[1073873026,32906,24519905293069738,24519907464403207],[1073873026,67108872,6623801086208550,6623803358085955],[1073873026,67109002,6623801086208550,6623803358085955],[1073873026,1073905672,24519905293069738,24519907464403207],[1073873026,1073905802,24519905293069738,24519907464403207],[1073873026,1140981768,6623801086208550,6623803358085955],[1073873026,1140981898,6623801086208550,6623803358085955],[1073873028,32776,-3950609227302328,-3950600812107830],[1073873028,32908,49039810732001672,49039814782944230],[1073873028,163976,-52990419959304000,-52990415595052060],[1073873028,557056,-26495209992202640,-26495207784975390],[1073873028,688256,-26495209992202640,-26495207784975390],[1073873028,67108872,6623801159997192,6623803284297315],[1073873028,67109004,6623801159997192,6623803284297315],[1073873028,1073774604,-52990419959304000,-52990415595052060],[1073873028,1073905672,49039810732001672,49039814782944230],[1073873028,1073905804,-3950609227302328,-3950600812107830],[1073873028,1074298884,-26495209992202640,-26495207784975390],[1073873028,1074430084,-26495209992202640,-26495207784975390],[1073873028,1140981768,6623801159997192,6623803284297315],[1073873028,1140981900,6623801159997192,6623803284297315],[1073873032,32770,-22544604489700504,-22544603248067364],[1073873032,32772,-1975303102434961,-1975301917270118],[1073873032,32832,22544603248067364,22544604489700504],[1073873032,32906,-22544604489700504,-22544603248067364],[1073873032,32908,-15222908168562909,-15222905739731186],[1073873032,32968,22544603248067364,22544604489700504],[1073873032,33792,1975301917270118,1975303102434961],[1073873032,33928,1975301917270118,1975303102434961],[1073873032,131080,-8599108077216494,-8599101386783086],[1073873032,131200,8599101386783086,8599108077216494],[1073873032,163852,-26495210128643692,-26495207648534336],[1073873032,163972,39742811621793198,39742815043973846],[1073873032,557056,45089206503935504,45089208971600236],[1073873032,557192,18593997124524774,18594000573832936],[1073873032,688136,26495207799184865,26495209977993164],[1073873032,688256,-2193017774,2193017775],[1073873032,67108866,-1975303161793801,-1975301857911278],[1073873032,67108868,-4648500337588616,-4648499087000812],[1073873032,67108928,1975301857911278,1975303161793801],[1073873032,67109002,-1975303161793801,-1975301857911278],[1073873032,67109004,-4648500337588616,-4648499087000812],[1073873032,67109064,1975301857911278,1975303161793801],[1073873032,67109888,4648499087000812,4648500337588616],[1073873032,67110024,4648499087000812,4648500337588616],[1073873032,67272712,8599101386783086,8599108077216494],[1073873032,67272832,-8599108077216494,-8599101386783086],[1073873032,67633152,3950603716820562,3950606322589598],[1073873032,67633288,28470509589568145,28470513207314965],[1073873032,67764232,-6623803346277523,-6623801098016986],[1073873032,67764352,-17896106414758888,-17896101898419553],[1073873032,335675400,4648499056652180,4648500367937249],[1073873032,335675520,-4648500367937249,-4648499056652180],[1073873032,1073741832,8599101386783086,8599108077216494],[1073873032,1073741952,-8599108077216494,-8599101386783086],[1073873032,1073774604,39742811621793198,39742815043973846],[1073873032,1073774724,-26495210128643692,-26495207648534336],[1073873032,1073905666,-22544604489700504,-22544603248067364],[1073873032,1073905668,-15222908168562909,-15222905739731186],[1073873032,1073905728,22544603248067364,22544604489700504],[1073873032,1073905802,-22544604489700504,-22544603248067364],[1073873032,1073905804,-1975303102434961,-1975301917270118],[1073873032,1073905864,22544603248067364,22544604489700504],[1073873032,1073906688,1975301917270118,1975303102434961],[1073873032,1073906824,1975301917270118,1975303102434961],[1073873032,1074298888,-2193017774,2193017775],[1073873032,1074299008,26495207799184865,26495209977993164],[1073873032,1074429952,18593997124524774,18594000573832936],[1073873032,1074430088,45089206503935504,45089208971600236],[1073873032,1140883464,-8599108077216494,-8599101386783086],[1073873032,1140883584,8599101386783086,8599108077216494],[1073873032,1140981762,-1975303161793801,-1975301857911278],[1073873032,1140981764,-4648500337588616,-4648499087000812],[1073873032,1140981824,1975301857911278,1975303161793801],[1073873032,1140981898,-1975303161793801,-1975301857911278],[1073873032,1140981900,-4648500337588616,-4648499087000812],[1073873032,1140981960,1975301857911278,1975303161793801],[1073873032,1140982784,4648499087000812,4648500337588616],[1073873032,1140982920,4648499087000812,4648500337588616],[1073873032,1141374984,-17896106414758888,-17896101898419553],[1073873032,1141375104,-6623803346277523,-6623801098016986],[1073873032,1141506048,28470509589568145,28470513207314965],[1073873032,1141506184,3950603716820562,3950606322589598],[1073873032,1409286152,-4648500367937249,-4648499056652180],[1073873032,1409286272,4648499056652180,4648500367937249],[1073873032,17592253284360,-13247605100033866,-13247603788555150],[1073873032,17592253284480,13247603788555150,13247605100033866],[1073873032,17593326895112,13247603788555150,13247605100033866],[1073873032,17593326895232,-13247605100033866,-13247603788555150],[1073873032,140737488519176,-13247605066127948,-13247603822461068],[1073873032,140737488519296,13247603822461068,13247605066127948],[1073873032,140737555595272,1975301885115096,1975303134589986],[1073873032,140737555595392,-1975303134589986,-1975301885115096],[1073873032,140738562129928,13247603822461068,13247605066127948],[1073873032,140738562130048,-13247605066127948,-13247603822461068],[1073873032,140738629206024,-1975303134589986,-1975301885115096],[1073873032,140738629206144,1975301885115096,1975303134589986],[1073873928,32896,-1975303102434961,-1975301917270118],[1073873928,33928,-1975303102434961,-1975301917270118],[1073873928,67108992,-4648500337588616,-4648499087000812],[1073873928,67110024,-4648500337588616,-4648499087000812],[1073873928,1073905792,-1975303102434961,-1975301917270118],[1073873928,1073906824,-1975303102434961,-1975301917270118],[1073873928,1140981888,-4648500337588616,-4648499087000812],[1073873928,1140982920,-4648500337588616,-4648499087000812],[1073905665,0,-22544604802429304,-22544602935338568],[1073905665,12,-1975303136765642,-1975301882939439],[1073905665,32769,6623799135992659,6623805308301850],[1073905665,32775,6623801151062805,6623803293231701],[1073905665,32779,1975301912872117,1975303106832961],[1073905665,32781,-3950608814469977,-3950601224940198],[1073905665,131073,-15920803465251079,-15920799828222285],[1073905665,131079,-4648500342125002,-4648499082464426],[1073905665,131085,-1975303106832961,-1975301912872117],[1073905665,163840,-13247606182566277,-13247602706022740],[1073905665,163846,-1975303106832961,-1975301912872117],[1073905665,163850,-1975303106832961,-1975301912872117],[1073905665,163852,3950601689143912,3950608350266260],[1073905665,524292,-1975303127852212,-1975301891852867],[1073905665,557061,-26495209977752878,-26495207799425147],[1073905665,688132,24519905289421414,24519907468051532],[1073905665,67108868,22544601425886842,22544606311881030],[1073905665,67141637,-8599107896967374,-8599101567032212],[1073905665,67239941,6623801151062805,6623803293231701],[1073905665,67272708,24519905262460552,24519907495012400],[1073905665,1073741825,-13247606182566277,-13247602706022740],[1073905665,1073741831,-1975303106832961,-1975301912872117],[1073905665,1073741835,-1975303106832961,-1975301912872117],[1073905665,1073741837,3950601689143912,3950608350266260],[1073905665,1073774592,-15920803465251079,-15920799828222285],[1073905665,1073774598,-4648500342125002,-4648499082464426],[1073905665,1073774604,-1975303106832961,-1975301912872117],[1073905665,1073872896,6623799135992659,6623805308301850],[1073905665,1073872902,6623801151062805,6623803293231701],[1073905665,1073872906,1975301912872117,1975303106832961],[1073905665,1073872908,-3950608814469977,-3950601224940198],[1073905665,1073905665,-22544604802429304,-22544602935338568],[1073905665,1073905677,-1975303136765642,-1975301882939439],[1073905665,1074266117,24519905289421414,24519907468051532],[1073905665,1074397188,-26495209977752878,-26495207799425147],[1073905665,1074429957,-1975303127852212,-1975301891852867],[1073905665,1140850693,24519905262460552,24519907495012400],[1073905665,1140883460,6623801151062805,6623803293231701],[1073905665,1140981764,-8599107896967374,-8599101567032212],[1073905665,1141014533,22544601425886842,22544606311881030],[1073905665,140737488355332,13247603817961795,13247605070627222],[1073905665,140737488388101,-11272303065715385,-11272300803168551],[1073905665,140737488486405,24519905253728852,24519907503744101],[1073905665,140738562129924,24519905253728852,24519907503744101],[1073905665,140738562228228,-11272303065715385,-11272300803168551],[1073905665,140738562260997,13247603817961795,13247605070627222],[1073905666,12,13247603817961795,13247605070627222],[1073905666,32770,-1975304247543921,-1975300772161160],[1073905666,32775,-6623803293231701,-6623801151062805],[1073905666,32779,-1975303106832961,-1975301912872117],[1073905666,32782,-47064511840212707,-47064508655028107],[1073905666,32842,-1975303130040923,-1975301889664154],[1073905666,32906,-22544604489700504,-22544603248067364],[1073905666,131079,4648499082464426,4648500342125002],[1073905666,131086,15222905730833912,15222908177460183],[1073905666,163840,1975300772161160,1975304247543921],[1073905666,163845,1975301912872117,1975303106832961],[1073905666,163849,1975301912872117,1975303106832961],[1073905666,163852,45089206600617048,45089208874918688],[1073905666,163912,1975301889664154,1975303130040923],[1073905666,163976,22544603248067364,22544604489700504],[1073905666,557066,24519905293069738,24519907464403207],[1073905666,688136,-24519907464403207,-24519905293069738],[1073905666,67108872,-26495210075134854,-26495207702043174],[1073905666,67141642,17896101969228851,17896106343949595],[1073905666,67239946,-19871408238006792,-19871405094876730],[1073905666,67272712,-24519907495012400,-24519905262460552],[1073905666,1073741826,1975300772161160,1975304247543921],[1073905666,1073741831,1975301912872117,1975303106832961],[1073905666,1073741835,1975301912872117,1975303106832961],[1073905666,1073741838,45089206600617048,45089208874918688],[1073905666,1073741898,1975301889664154,1975303130040923],[1073905666,1073741962,22544603248067364,22544604489700504],[1073905666,1073774597,4648499082464426,4648500342125002],[1073905666,1073774604,15222905730833912,15222908177460183],[1073905666,1073872896,-1975304247543921,-1975300772161160],[1073905666,1073872901,-6623803293231701,-6623801151062805],[1073905666,1073872905,-1975303106832961,-1975301912872117],[1073905666,1073872908,-47064511840212707,-47064508655028107],[1073905666,1073872968,-1975303130040923,-1975301889664154],[1073905666,1073873032,-22544604489700504,-22544603248067364],[1073905666,1073905678,13247603817961795,13247605070627222],[1073905666,1074266122,-24519907464403207,-24519905293069738],[1073905666,1074397192,24519905293069738,24519907464403207],[1073905666,1140850698,-24519907495012400,-24519905262460552],[1073905666,1140883464,-19871408238006792,-19871405094876730],[1073905666,1140981768,17896101969228851,17896106343949595],[1073905666,1141014538,-26495210075134854,-26495207702043174],[1073905666,140737488355336,-13247605070627222,-13247603817961795],[1073905666,140737488486410,-13247605070627222,-13247603817961795],[1073905666,140738562129928,-13247605070627222,-13247603817961795],[1073905666,140738562261002,-13247605070627222,-13247603817961795],[1073905668,0,-10692792130513058,-10692785489024336],[1073905668,9,1975301882939439,1975303136765642],[1073905668,32772,-222382391306796628,-222382344356494327],[1073905668,32781,-697899269935994,-697890115243256],[1073905668,32782,-15222908177460183,-15222905730833912],[1073905668,32908,-15222908168562909,-15222905739731186],[1073905668,131076,-120352160799604924,-120352113794384070],[1073905668,131085,6623801151062805,6623803293231701],[1073905668,163840,332041690197650200,332041742440092355],[1073905668,163849,-3950608814469977,-3950601224940198],[1073905668,163850,15222905730833912,15222908177460183],[1073905668,163976,15222905739731186,15222908168562909],[1073905668,524289,1975301891852867,1975303127852212],[1073905668,524296,1975301917236486,1975303102468593],[1073905668,557061,26495207799425147,26495209977752878],[1073905668,557068,11272298183630328,11272305685253609],[1073905668,655372,-26495209992202640,-26495207784975390],[1073905668,688129,-24519907468051532,-24519905289421414],[1073905668,688136,17198204925419946,17198214002579226],[1073905668,67108865,-22544606311881030,-22544601425886842],[1073905668,67108872,-45089212389398762,-45089203086137004],[1073905668,67141637,8599101567032212,8599107896967374],[1073905668,67141644,-13247609394938084,-13247599493650961],[1073905668,67239941,-6623803293231701,-6623801151062805],[1073905668,67239948,-13247609434184624,-13247599454404401],[1073905668,67272705,-24519907495012400,-24519905262460552],[1073905668,67272712,-18594006149950118,-18593991548407578],[1073905668,67633152,1975301917270118,1975303102434961],[1073905668,67665924,-26495209977752878,-26495207799425147],[1073905668,67764228,11272298195303644,11272305673580297],[1073905668,67796992,17198204951509383,17198213976489780],[1073905668,335675396,-15222908164034477,-15222905744259616],[1073905668,335708160,15222905744259616,15222908164034477],[1073905668,1073741828,332041690197650200,332041742440092355],[1073905668,1073741837,-3950608814469977,-3950601224940198],[1073905668,1073741838,15222905730833912,15222908177460183],[1073905668,1073741964,15222905739731186,15222908168562909],[1073905668,1073774592,-120352160799604924,-120352113794384070],[1073905668,1073774601,6623801151062805,6623803293231701],[1073905668,1073872896,-222382391306796628,-222382344356494327],[1073905668,1073872905,-697899269935994,-697890115243256],[1073905668,1073872906,-15222908177460183,-15222905730833912],[1073905668,1073873032,-15222908168562909,-15222905739731186],[1073905668,1073905668,-10692792130513058,-10692785489024336],[1073905668,1073905677,1975301882939439,1975303136765642],[1073905668,1074266117,-24519907468051532,-24519905289421414],[1073905668,1074266124,17198204925419946,17198214002579226],[1073905668,1074298888,-26495209992202640,-26495207784975390],[1073905668,1074397185,26495207799425147,26495209977752878],[1073905668,1074397192,11272298183630328,11272305685253609],[1073905668,1074429957,1975301891852867,1975303127852212],[1073905668,1074429964,1975301917236486,1975303102468593],[1073905668,1140850693,-24519907495012400,-24519905262460552],[1073905668,1140850700,-18594006149950118,-18593991548407578],[1073905668,1140883457,-6623803293231701,-6623801151062805],[1073905668,1140883464,-13247609434184624,-13247599454404401],[1073905668,1140981761,8599101567032212,8599107896967374],[1073905668,1140981768,-13247609394938084,-13247599493650961],[1073905668,1141014533,-22544606311881030,-22544601425886842],[1073905668,1141014540,-45089212389398762,-45089203086137004],[1073905668,1141374980,17198204951509383,17198213976489780],[1073905668,1141407744,11272298195303644,11272305673580297],[1073905668,1141506048,-26495209977752878,-26495207799425147],[1073905668,1141538820,1975301917270118,1975303102434961],[1073905668,1409286148,15222905744259616,15222908164034477],[1073905668,1409318912,-15222908164034477,-15222905744259616],[1073905668,17592253284356,-15222908182009245,-15222905726284853],[1073905668,17592253317120,15222905726284853,15222908182009245],[1073905668,17593326895108,15222905726284853,15222908182009245],[1073905668,17593326927872,-15222908182009245,-15222905726284853],[1073905668,140737488355329,-13247605070627222,-13247603817961795],[1073905668,140737488355336,18593996379768482,18594001318589224],[1073905668,140737488388101,11272300803168551,11272303065715385],[1073905668,140737488388108,11272300855685410,11272303013198523],[1073905668,140737488486405,-24519907503744101,-24519905253728852],[1073905668,140737488486412,11272298711597012,11272305157286919],[1073905668,140737488519176,-3950606183988306,-3950603855421852],[1073905668,140737488879616,22544603251967752,22544604485800118],[1073905668,140737489010692,26495207784975390,26495209992202640],[1073905668,140737489043456,-3950606127442978,-3950603911967182],[1073905668,140737555464192,22544603247468479,22544604490299392],[1073905668,140737555496964,-11272303013198523,-11272300855685410],[1073905668,140737555595268,17198204846179046,17198214081820128],[1073905668,140737555628032,16618692505223764,16618700173428866],[1073905668,140738562097164,-3950606183988306,-3950603855421852],[1073905668,140738562129921,-24519907503744101,-24519905253728852],[1073905668,140738562129928,11272298711597012,11272305157286919],[1073905668,140738562228225,11272300803168551,11272303065715385],[1073905668,140738562228232,11272300855685410,11272303013198523],[1073905668,140738562260997,-13247605070627222,-13247603817961795],[1073905668,140738562261004,18593996379768482,18594001318589224],[1073905668,140738562621444,-3950606127442978,-3950603911967182],[1073905668,140738562654208,26495207784975390,26495209992202640],[1073905668,140738562785284,22544603251967752,22544604485800118],[1073905668,140738629206020,16618692505223764,16618700173428866],[1073905668,140738629238784,17198204846179046,17198214081820128],[1073905668,140738629337088,-11272303013198523,-11272300855685410],[1073905668,140738629369860,22544603247468479,22544604490299392],[1073905671,32769,6623801151062805,6623803293231701],[1073905671,32770,-6623803293231701,-6623801151062805],[1073905671,131073,-4648500342125002,-4648499082464426],[1073905671,131074,4648499082464426,4648500342125002],[1073905671,163845,1975301912872117,1975303106832961],[1073905671,163846,-1975303106832961,-1975301912872117],[1073905671,1073741825,-1975303106832961,-1975301912872117],[1073905671,1073741826,1975301912872117,1975303106832961],[1073905671,1073774597,4648499082464426,4648500342125002],[1073905671,1073774598,-4648500342125002,-4648499082464426],[1073905671,1073872901,-6623803293231701,-6623801151062805],[1073905671,1073872902,6623801151062805,6623803293231701],[1073905672,0,-98079629592578584,-98079621437313222],[1073905672,6,-13247605070627222,-13247603817961795],[1073905672,132,-13247605066127948,-13247603822461068],[1073905672,32776,320189871195698486,320189931323813606],[1073905672,32781,6623801151062805,6623803293231701],[1073905672,32782,49039810709439166,49039814805506726],[1073905672,32906,24519905293069738,24519907464403207],[1073905672,32908,49039810732001672,49039814782944230],[1073905672,131080,-63683210088709754,-63683203085183716],[1073905672,131085,-4648500342125002,-4648499082464426],[1073905672,131086,-15222908177460183,-15222905730833912],[1073905672,131212,-15222908168562909,-15222905739731186],[1073905672,163840,-354586345522376890,-354586294853133538],[1073905672,163845,-1975303106832961,-1975301912872117],[1073905672,163846,-47064511840212707,-47064508655028107],[1073905672,163970,-24519907464403207,-24519905293069738],[1073905672,163972,-47064511822048211,-47064508673192612],[1073905672,524292,11272300719992475,11272303148891462],[1073905672,557066,-24519907464403207,-24519905293069738],[1073905672,557068,-51015117307046807,-51015113227604174],[1073905672,557192,-22544605576438951,-22544602161328920],[1073905672,655372,13247603822461068,13247605066127948],[1073905672,688130,24519905293069738,24519907464403207],[1073905672,688132,49039810732001672,49039814782944230],[1073905672,688256,22544602161328920,22544605576438951],[1073905672,67108866,26495207702043174,26495210075134854],[1073905672,67108868,58336806904098799,58336817460025984],[1073905672,67108992,26495207710839176,26495210066338854],[1073905672,67141642,-17896106343949595,-17896101969228851],[1073905672,67141644,-79485631987828172,-79485621343705900],[1073905672,67141768,-17896106304406015,-17896102008772423],[1073905672,67239946,19871405094876730,19871408238006792],[1073905672,67239948,39742811571512963,39742815094254094],[1073905672,67240072,19871405028412220,19871408304471303],[1073905672,67272706,24519905262460552,24519907495012400],[1073905672,67272708,98079621396013726,98079629633878072],[1073905672,67272832,24519905293069738,24519907464403207],[1073905672,67633152,-24519907697996171,-24519905059476780],[1073905672,67665928,13247602298025327,13247606590563683],[1073905672,67764232,-13247605939232943,-13247602949356073],[1073905672,67796992,-24519908340000795,-24519904417472150],[1073905672,335577096,6623801159963560,6623803284330947],[1073905672,335675400,-4648500337554984,-4648499087034444],[1073905672,335708160,-1975303102434961,-1975301917270118],[1073905672,1073741832,-354586345522376890,-354586294853133538],[1073905672,1073741837,-1975303106832961,-1975301912872117],[1073905672,1073741838,-47064511840212707,-47064508655028107],[1073905672,1073741962,-24519907464403207,-24519905293069738],[1073905672,1073741964,-47064511822048211,-47064508673192612],[1073905672,1073774592,-63683210088709754,-63683203085183716],[1073905672,1073774597,-4648500342125002,-4648499082464426],[1073905672,1073774598,-15222908177460183,-15222905730833912],[1073905672,1073774724,-15222908168562909,-15222905739731186],[1073905672,1073872896,320189871195698486,320189931323813606],[1073905672,1073872901,6623801151062805,6623803293231701],[1073905672,1073872902,49039810709439166,49039814805506726],[1073905672,1073873026,24519905293069738,24519907464403207],[1073905672,1073873028,49039810732001672,49039814782944230],[1073905672,1073905672,-98079629592578584,-98079621437313222],[1073905672,1073905678,-13247605070627222,-13247603817961795],[1073905672,1073905804,-13247605066127948,-13247603822461068],[1073905672,1074266122,24519905293069738,24519907464403207],[1073905672,1074266124,49039810732001672,49039814782944230],[1073905672,1074266248,22544602161328920,22544605576438951],[1073905672,1074298884,13247603822461068,13247605066127948],[1073905672,1074397186,-24519907464403207,-24519905293069738],[1073905672,1074397188,-51015117307046807,-51015113227604174],[1073905672,1074397312,-22544605576438951,-22544602161328920],[1073905672,1074429964,11272300719992475,11272303148891462],[1073905672,1140850698,24519905262460552,24519907495012400],[1073905672,1140850700,98079621396013726,98079629633878072],[1073905672,1140850824,24519905293069738,24519907464403207],[1073905672,1140883458,19871405094876730,19871408238006792],[1073905672,1140883460,39742811571512963,39742815094254094],[1073905672,1140883584,19871405028412220,19871408304471303],[1073905672,1140981762,-17896106343949595,-17896101969228851],[1073905672,1140981764,-79485631987828172,-79485621343705900],[1073905672,1140981888,-17896106304406015,-17896102008772423],[1073905672,1141014538,26495207702043174,26495210075134854],[1073905672,1141014540,58336806904098799,58336817460025984],[1073905672,1141014664,26495207710839176,26495210066338854],[1073905672,1141374984,-24519908340000795,-24519904417472150],[1073905672,1141407744,-13247605939232943,-13247602949356073],[1073905672,1141506048,13247602298025327,13247606590563683],[1073905672,1141538824,-24519907697996171,-24519905059476780],[1073905672,1409286152,-1975303102434961,-1975301917270118],[1073905672,1409318912,-4648500337554984,-4648499087034444],[1073905672,1409417216,6623801159963560,6623803284330947],[1073905672,17592253186056,-11272303013198523,-11272300855685410],[1073905672,17592253284360,13247603813192808,13247605075396206],[1073905672,17592253317120,-1975303111382023,-1975301908323058],[1073905672,17593326895112,-1975303111382023,-1975301908323058],[1073905672,17593326927872,13247603813192808,13247605075396206],[1073905672,17593327026176,-11272303013198523,-11272300855685410],[1073905672,140737488355330,13247603817961795,13247605070627222],[1073905672,140737488355332,26495207692945056,26495210084232978],[1073905672,140737488355456,13247603822461068,13247605066127948],[1073905672,140737488388108,-15222909197186829,-15222904711107262],[1073905672,140737488486410,13247603817961795,13247605070627222],[1073905672,140737488486412,37767509245645481,37767512400416486],[1073905672,140737488486536,13247603822461068,13247605066127948],[1073905672,140737488519172,3950603855421852,3950606183988306],[1073905672,140737488879616,-13247605066127948,-13247603822461068],[1073905672,140737489010696,-13247605066127948,-13247603822461068],[1073905672,140737555464192,-13247605070627222,-13247603817961795],[1073905672,140737555496968,49039810686574560,49039814828371346],[1073905672,140737555595272,-15222908182009245,-15222905726284853],[1073905672,140737555628032,-47064511858528265,-47064508636712560],[1073905672,140738562097164,3950603855421852,3950606183988306],[1073905672,140738562129922,13247603817961795,13247605070627222],[1073905672,140738562129924,37767509245645481,37767512400416486],[1073905672,140738562130048,13247603822461068,13247605066127948],[1073905672,140738562228228,-15222909197186829,-15222904711107262],[1073905672,140738562261002,13247603817961795,13247605070627222],[1073905672,140738562261004,26495207692945056,26495210084232978],[1073905672,140738562261128,13247603822461068,13247605066127948],[1073905672,140738562654208,-13247605066127948,-13247603822461068],[1073905672,140738562785288,-13247605066127948,-13247603822461068],[1073905672,140738629206024,-47064511858528265,-47064508636712560],[1073905672,140738629238784,-15222908182009245,-15222905726284853],[1073905672,140738629337088,49039810686574560,49039814828371346],[1073905672,140738629369864,-13247605070627222,-13247603817961795],[1073905675,32769,1975301912872117,1975303106832961],[1073905675,32770,-1975303106832961,-1975301912872117],[1073905675,163849,1975301912872117,1975303106832961],[1073905675,163850,-1975303106832961,-1975301912872117],[1073905675,1073741825,-1975303106832961,-1975301912872117],[1073905675,1073741826,1975301912872117,1975303106832961],[1073905675,1073872905,-1975303106832961,-1975301912872117],[1073905675,1073872906,1975301912872117,1975303106832961],[1073905677,9,1975301882939439,1975303136765642],[1073905677,12,-1975303136765642,-1975301882939439],[1073905677,32769,47064508655028107,47064511840212707],[1073905677,32772,-53688314836179204,-53688310103356116],[1073905677,32776,8599103034002244,8599106429997343],[1073905677,32781,1975301882939439,1975303136765642],[1073905677,131073,-3950606243598603,-3950603795811556],[1073905677,131076,8599103034002244,8599106429997343],[1073905677,131080,-4648500342125002,-4648499082464426],[1073905677,163840,-1975303136765642,-1975301882939439],[1073905677,163845,-3950606243598603,-3950603795811556],[1073905677,163849,47064508655028107,47064511840212707],[1073905677,163852,-45089208874918688,-45089206600617048],[1073905677,1073741825,-45089208874918688,-45089206600617048],[1073905677,1073741828,47064508655028107,47064511840212707],[1073905677,1073741832,-3950606243598603,-3950603795811556],[1073905677,1073741837,-1975303136765642,-1975301882939439],[1073905677,1073774597,-4648500342125002,-4648499082464426],[1073905677,1073774601,8599103034002244,8599106429997343],[1073905677,1073774604,-3950606243598603,-3950603795811556],[1073905677,1073872896,1975301882939439,1975303136765642],[1073905677,1073872901,8599103034002244,8599106429997343],[1073905677,1073872905,-53688314836179204,-53688310103356116],[1073905677,1073872908,47064508655028107,47064511840212707],[1073905677,1073905665,-1975303136765642,-1975301882939439],[1073905677,1073905668,1975301882939439,1975303136765642],[1073905678,6,-13247605070627222,-13247603817961795],[1073905678,12,13247603817961795,13247605070627222],[1073905678,32770,-7321700242729086,-7321693586744675],[1073905678,32772,-1975303106832961,-1975301912872117],[1073905678,32776,-3950609278673694,-3950600760736484],[1073905678,32782,-13247605070627222,-13247603817961795],[1073905678,131074,1975301912872117,1975303106832961],[1073905678,131080,-1975303106832961,-1975301912872117],[1073905678,163840,13247603817961795,13247605070627222],[1073905678,163846,-7321700242729086,-7321693586744675],[1073905678,163850,1975301912872117,1975303106832961],[1073905678,163852,18593996452163044,18594001246194656],[1073905678,1073741826,18593996452163044,18594001246194656],[1073905678,1073741828,1975301912872117,1975303106832961],[1073905678,1073741832,-7321700242729086,-7321693586744675],[1073905678,1073741838,13247603817961795,13247605070627222],[1073905678,1073774598,-1975303106832961,-1975301912872117],[1073905678,1073774604,1975301912872117,1975303106832961],[1073905678,1073872896,-13247605070627222,-13247603817961795],[1073905678,1073872902,-3950609278673694,-3950600760736484],[1073905678,1073872906,-1975303106832961,-1975301912872117],[1073905678,1073872908,-7321700242729086,-7321693586744675],[1073905678,1073905666,13247603817961795,13247605070627222],[1073905678,1073905672,-13247605070627222,-13247603817961795],[1073905728,32842,1975301889664154,1975303130040923],[1073905728,32968,22544603248067364,22544604489700504],[1073905728,163850,-1975303130040923,-1975301889664154],[1073905728,163976,-22544604489700504,-22544603248067364],[1073905728,557248,1975301885638544,1975303134066536],[1073905728,688256,-1975303134066536,-1975301885638544],[1073905728,1073741898,-1975303130040923,-1975301889664154],[1073905728,1073742024,-22544604489700504,-22544603248067364],[1073905728,1073872906,1975301889664154,1975303130040923],[1073905728,1073873032,22544603248067364,22544604489700504],[1073905728,1074266304,-1975303134066536,-1975301885638544],[1073905728,1074397312,1975301885638544,1975303134066536],[1073905738,32770,-1975303130040923,-1975301889664154],[1073905738,32832,1975301889664154,1975303130040923],[1073905738,163850,-1975303130040923,-1975301889664154],[1073905738,163912,1975301889664154,1975303130040923],[1073905738,1073741826,1975301889664154,1975303130040923],[1073905738,1073741888,-1975303130040923,-1975301889664154],[1073905738,1073872906,1975301889664154,1975303130040923],[1073905738,1073872968,-1975303130040923,-1975301889664154],[1073905792,12,13247603822461068,13247605066127948],[1073905792,32896,-3950608451914177,-3950601587495984],[1073905792,32906,-1975303130040923,-1975301889664154],[1073905792,32908,-47064511822048211,-47064508673192612],[1073905792,32968,-22544604489700504,-22544603248067364],[1073905792,33928,-1975303102434961,-1975301917270118],[1073905792,131212,15222905739731186,15222908168562909],[1073905792,163840,3950601587495984,3950608451914177],[1073905792,163850,1975301889664154,1975303130040923],[1073905792,163852,45089206614383552,45089208861152192],[1073905792,163912,22544603248067364,22544604489700504],[1073905792,164872,1975301917270118,1975303102434961],[1073905792,524292,13247603811716528,13247605076872486],[1073905792,557192,3950601587495984,3950608451914177],[1073905792,557248,-1975303134066536,-1975301885638544],[1073905792,558208,-1975303102468593,-1975301917236486],[1073905792,655492,13247603811716528,13247605076872486],[1073905792,688136,-3950608451914177,-3950601587495984],[1073905792,688192,1975301885638544,1975303134066536],[1073905792,689152,1975301917236486,1975303102468593],[1073905792,1605760,-22544604430576096,-22544603307191776],[1073905792,1736704,22544603307191776,22544604430576096],[1073905792,67108872,-26495210066338854,-26495207710839176],[1073905792,67141768,17896102008772423,17896106304406015],[1073905792,67240072,-19871408304471303,-19871405028412220],[1073905792,67272712,-24519907464403207,-24519905293069738],[1073905792,67633152,-26495210066406118,-26495207710771912],[1073905792,67666048,15222904805987338,15222909102306755],[1073905792,67764352,-37767512457661269,-37767509188400696],[1073905792,67796992,-3950606107262344,-3950603932147814],[1073905792,268992640,-1975303130061553,-1975301889643525],[1073905792,269123584,1975301889643525,1975303130061553],[1073905792,1073741952,3950601587495984,3950608451914177],[1073905792,1073741962,1975301889664154,1975303130040923],[1073905792,1073741964,45089206614383552,45089208861152192],[1073905792,1073742024,22544603248067364,22544604489700504],[1073905792,1073742984,1975301917270118,1975303102434961],[1073905792,1073774604,15222905739731186,15222908168562909],[1073905792,1073872896,-3950608451914177,-3950601587495984],[1073905792,1073872906,-1975303130040923,-1975301889664154],[1073905792,1073872908,-47064511822048211,-47064508673192612],[1073905792,1073872968,-22544604489700504,-22544603248067364],[1073905792,1073873928,-1975303102434961,-1975301917270118],[1073905792,1073905804,13247603822461068,13247605066127948],[1073905792,1074266248,-3950608451914177,-3950601587495984],[1073905792,1074266304,1975301885638544,1975303134066536],[1073905792,1074267264,1975301917236486,1975303102468593],[1073905792,1074298884,13247603811716528,13247605076872486],[1073905792,1074397192,3950601587495984,3950608451914177],[1073905792,1074397248,-1975303134066536,-1975301885638544],[1073905792,1074398208,-1975303102468593,-1975301917236486],[1073905792,1074430084,13247603811716528,13247605076872486],[1073905792,1075314816,22544603307191776,22544604430576096],[1073905792,1075445760,-22544604430576096,-22544603307191776],[1073905792,1140850824,-24519907464403207,-24519905293069738],[1073905792,1140883464,-19871408304471303,-19871405028412220],[1073905792,1140981768,17896102008772423,17896106304406015],[1073905792,1141014664,-26495210066338854,-26495207710839176],[1073905792,1141375104,-3950606107262344,-3950603932147814],[1073905792,1141407744,-37767512457661269,-37767509188400696],[1073905792,1141506048,15222904805987338,15222909102306755],[1073905792,1141538944,-26495210066406118,-26495207710771912],[1073905792,1342701696,1975301889643525,1975303130061553],[1073905792,1342832640,-1975303130061553,-1975301889643525],[1073905792,140737488355336,-13247605066127948,-13247603822461068],[1073905792,140737488486536,-13247605066127948,-13247603822461068],[1073905792,140737488879616,-13247605076872486,-13247603811716528],[1073905792,140737489010816,-13247605076872486,-13247603811716528],[1073905792,140738562129928,-13247605066127948,-13247603822461068],[1073905792,140738562261128,-13247605066127948,-13247603822461068],[1073905792,140738562654208,-13247605076872486,-13247603811716528],[1073905792,140738562785408,-13247605076872486,-13247603811716528],[1073905802,32770,-22544604489700504,-22544603248067364],[1073905802,32776,24519905293069738,24519907464403207],[1073905802,32896,-1975303130040923,-1975301889664154],[1073905802,163850,1975301889664154,1975303130040923],[1073905802,163970,-24519907464403207,-24519905293069738],[1073905802,163976,22544603248067364,22544604489700504],[1073905802,1073741826,22544603248067364,22544604489700504],[1073905802,1073741832,-24519907464403207,-24519905293069738],[1073905802,1073741952,1975301889664154,1975303130040923],[1073905802,1073872906,-1975303130040923,-1975301889664154],[1073905802,1073873026,24519905293069738,24519907464403207],[1073905802,1073873032,-22544604489700504,-22544603248067364],[1073905804,12,13247603822461068,13247605066127948],[1073905804,132,-13247605066127948,-13247603822461068],[1073905804,32772,-1975303102434961,-1975301917270118],[1073905804,32776,-3950609227302328,-3950600812107830],[1073905804,32896,-7321700200255013,-7321693629218766],[1073905804,32908,-13247605066127948,-13247603822461068],[1073905804,131080,-1975303102434961,-1975301917270118],[1073905804,131200,1975301917270118,1975303102434961],[1073905804,163840,13247603822461068,13247605066127948],[1073905804,163852,18593996485739860,18594001212617856],[1073905804,163972,-7321700200255013,-7321693629218766],[1073905804,163976,1975301917270118,1975303102434961],[1073905804,1073741828,1975301917270118,1975303102434961],[1073905804,1073741832,-7321700200255013,-7321693629218766],[1073905804,1073741952,18593996485739860,18594001212617856],[1073905804,1073741964,13247603822461068,13247605066127948],[1073905804,1073774604,1975301917270118,1975303102434961],[1073905804,1073774724,-1975303102434961,-1975301917270118],[1073905804,1073872896,-13247605066127948,-13247603822461068],[1073905804,1073872908,-7321700200255013,-7321693629218766],[1073905804,1073873028,-3950609227302328,-3950600812107830],[1073905804,1073873032,-1975303102434961,-1975301917270118],[1073905804,1073905672,-13247605066127948,-13247603822461068],[1073905804,1073905792,13247603822461068,13247605066127948],[1073905864,32832,22544603248067364,22544604489700504],[1073905864,32896,-22544604489700504,-22544603248067364],[1073905864,163912,22544603248067364,22544604489700504],[1073905864,163976,-22544604489700504,-22544603248067364],[1073905864,1073741888,-22544604489700504,-22544603248067364],[1073905864,1073741952,22544603248067364,22544604489700504],[1073905864,1073872968,-22544604489700504,-22544603248067364],[1073905864,1073873032,22544603248067364,22544604489700504],[1073906688,33928,1975301917270118,1975303102434961],[1073906688,163976,-1975303102434961,-1975301917270118],[1073906688,558208,1975301917236486,1975303102468593],[1073906688,688256,-1975303102468593,-1975301917236486],[1073906688,1606656,22544603307191776,22544604430576096],[1073906688,1736704,-22544604430576096,-22544603307191776],[1073906688,1073742984,-1975303102434961,-1975301917270118],[1073906688,1073873032,1975301917270118,1975303102434961],[1073906688,1074267264,-1975303102468593,-1975301917236486],[1073906688,1074397312,1975301917236486,1975303102468593],[1073906688,1075315712,-22544604430576096,-22544603307191776],[1073906688,1075445760,22544603307191776,22544604430576096],[1073906824,32896,-1975303102434961,-1975301917270118],[1073906824,33792,1975301917270118,1975303102434961],[1073906824,163976,-1975303102434961,-1975301917270118],[1073906824,164872,1975301917270118,1975303102434961],[1073906824,1073741952,1975301917270118,1975303102434961],[1073906824,1073742848,-1975303102434961,-1975301917270118],[1073906824,1073873032,1975301917270118,1975303102434961],[1073906824,1073873928,-1975303102434961,-1975301917270118],[1074266112,32772,17198207785323578,17198211142675593],[1074266112,32776,-1975305295486367,-1975299724218711],[1074266112,32896,-1975304605835260,-1975300413869816],[1074266112,32908,13247603822461068,13247605066127948],[1074266112,131076,-1975305295246081,-1975299724458993],[1074266112,131080,1277404472099680,1277411162426122],[1074266112,131200,11272298596064681,11272305272819252],[1074266112,163852,26495207648534336,26495210128643692],[1074266112,163972,13247603822461068,13247605066127948],[1074266112,163976,-45089208971600236,-45089206503935504],[1074266112,1212420,13247603855419588,13247605033169427],[1074266112,1212424,-1975303102434961,-1975301917270118],[1074266112,1212544,-24519907391505747,-24519905365967204],[1074266112,67108872,-4648502622318527,-4648496802270899],[1074266112,67108992,-6623806726760819,-6623797717533688],[1074266112,67240072,-3950606322589598,-3950603716820562],[1074266112,67272708,11272300724575166,11272303144308768],[1074266112,67272712,18593996132872130,18594001565485586],[1074266112,67272832,-18594001255457720,-18593996442899990],[1074266112,68288520,-4648500337588616,-4648499087000812],[1074266112,68288640,11272300873839524,11272302995044411],[1074266112,268435584,-4648501379109328,-4648498045480103],[1074266112,268599300,13247603821617226,13247605066971786],[1074266112,268599304,-22544604489700504,-22544603248067364],[1074266112,268599424,-3950606107262344,-3950603932147814],[1074266112,335577216,-1975303130061553,-1975301889643525],[1074266112,335675400,-6623803529731050,-6623800914563458],[1074266112,335675520,31143705027114464,31143712174652992],[1074266112,336593024,-6623803284330947,-6623801159963560],[1074266112,469762176,13247603855385956,13247605033203059],[1074266112,1074298884,17198207785323578,17198211142675593],[1074266112,1074298888,-1975305295486367,-1975299724218711],[1074266112,1074299008,-1975304605835260,-1975300413869816],[1074266112,1074299020,13247603822461068,13247605066127948],[1074266112,1074397188,-1975305295246081,-1975299724458993],[1074266112,1074397192,1277404472099680,1277411162426122],[1074266112,1074397312,11272298596064681,11272305272819252],[1074266112,1074429964,26495207648534336,26495210128643692],[1074266112,1074430084,13247603822461068,13247605066127948],[1074266112,1074430088,-45089208971600236,-45089206503935504],[1074266112,1075478532,13247603855419588,13247605033169427],[1074266112,1075478536,-1975303102434961,-1975301917270118],[1074266112,1075478656,-24519907391505747,-24519905365967204],[1074266112,1141374984,-4648502622318527,-4648496802270899],[1074266112,1141375104,-6623806726760819,-6623797717533688],[1074266112,1141506184,-3950606322589598,-3950603716820562],[1074266112,1141538820,11272300724575166,11272303144308768],[1074266112,1141538824,18593996132872130,18594001565485586],[1074266112,1141538944,-18594001255457720,-18593996442899990],[1074266112,1142554632,-4648500337588616,-4648499087000812],[1074266112,1142554752,11272300873839524,11272302995044411],[1074266112,1342701696,-4648501379109328,-4648498045480103],[1074266112,1342865412,13247603821617226,13247605066971786],[1074266112,1342865416,-22544604489700504,-22544603248067364],[1074266112,1342865536,-3950606107262344,-3950603932147814],[1074266112,1409843328,-1975303130061553,-1975301889643525],[1074266112,1409941512,-6623803529731050,-6623800914563458],[1074266112,1409941632,31143705027114464,31143712174652992],[1074266112,1410859136,-6623803284330947,-6623801159963560],[1074266112,1544028288,13247603855385956,13247605033203059],[1074266112,17592253284360,13247603788555150,13247605100033866],[1074266112,17592253284480,-1975303167312100,-1975301852392980],[1074266112,17592521588864,13247603786922062,13247605101666952],[1074266112,17593327550472,13247603788555150,13247605100033866],[1074266112,17593327550592,-1975303167312100,-1975301852392980],[1074266112,17593595854976,13247603786922062,13247605101666952],[1074266112,35184707633280,-1975303161294799,-1975301858410281],[1074266112,35185781899392,-1975303161294799,-1975301858410281],[1074266112,140737488519172,-22544604485800118,-22544603251967752],[1074266112,140737488519176,13247603822461068,13247605066127948],[1074266112,140737488519296,13247603811716528,13247605076872486],[1074266112,140737555595272,-1975303134589986,-1975301885115096],[1074266112,140737555595392,-22544604497985104,-22544603239782766],[1074266112,140737823899776,-1975303142599947,-1975301877105131],[1074266112,140738562785284,-22544604485800118,-22544603251967752],[1074266112,140738562785288,13247603822461068,13247605066127948],[1074266112,140738562785408,13247603811716528,13247605076872486],[1074266112,140738629861384,-1975303134589986,-1975301885115096],[1074266112,140738629861504,-22544604497985104,-22544603239782766],[1074266112,140738898165888,-1975303142599947,-1975301877105131],[1074266117,688129,-24519907468051532,-24519905289421414],[1074266117,688132,24519905289421414,24519907468051532],[1074266117,1073905665,24519905289421414,24519907468051532],[1074266117,1073905668,-24519907468051532,-24519905289421414],[1074266122,688130,24519905293069738,24519907464403207],[1074266122,688136,-24519907464403207,-24519905293069738],[1074266122,67764226,6623801086208550,6623803358085955],[1074266122,67764232,-6623803358085955,-6623801086208550],[1074266122,1073905666,-24519907464403207,-24519905293069738],[1074266122,1073905672,24519905293069738,24519907464403207],[1074266122,1140981762,-6623803358085955,-6623801086208550],[1074266122,1140981768,6623801086208550,6623803358085955],[1074266124,32896,13247603822461068,13247605066127948],[1074266124,163840,66238019708364176,66238024734580898],[1074266124,557192,13247603822461068,13247605066127948],[1074266124,688132,49039810732001672,49039814782944230],[1074266124,688136,17198204925419946,17198214002579226],[1074266124,67764228,6623801159997192,6623803284297315],[1074266124,67764232,-6623803284297315,-6623801159997192],[1074266124,1073774724,13247603822461068,13247605066127948],[1074266124,1073905668,17198204925419946,17198214002579226],[1074266124,1073905672,49039810732001672,49039814782944230],[1074266124,1074299020,13247603822461068,13247605066127948],[1074266124,1074429964,66238019708364176,66238024734580898],[1074266124,1140981764,-6623803284297315,-6623801159997192],[1074266124,1140981768,6623801159997192,6623803284297315],[1074266248,32908,13247603822461068,13247605066127948],[1074266248,163976,-18594000573832936,-18593997124524774],[1074266248,557068,-13247605066127948,-13247603822461068],[1074266248,688136,-3950608451914177,-3950601587495984],[1074266248,688256,22544602161328920,22544605576438951],[1074266248,67240072,-28470513207314965,-28470509589568145],[1074266248,67764232,8599101131740910,8599108332258679],[1074266248,67764352,19871404875056286,19871408457827235],[1074266248,336068616,4648499056652180,4648500367937249],[1074266248,336068736,-4648500367937249,-4648499056652180],[1074266248,1073774724,-13247605066127948,-13247603822461068],[1074266248,1073905672,22544602161328920,22544605576438951],[1074266248,1073905792,-3950608451914177,-3950601587495984],[1074266248,1074298884,13247603822461068,13247605066127948],[1074266248,1074429952,-18594000573832936,-18593997124524774],[1074266248,1140981768,19871404875056286,19871408457827235],[1074266248,1140981888,8599101131740910,8599108332258679],[1074266248,1141506048,-28470513207314965,-28470509589568145],[1074266248,1409286152,-4648500367937249,-4648499056652180],[1074266248,1409286272,4648499056652180,4648500367937249],[1074266304,688192,1975301885638544,1975303134066536],[1074266304,688256,-1975303134066536,-1975301885638544],[1074266304,67764288,-13247605096148654,-13247603792440361],[1074266304,67764352,13247603792440361,13247605096148654],[1074266304,336068672,4648499059714221,4648500364875210],[1074266304,336068736,-4648500364875210,-4648499059714221],[1074266304,1073905728,-1975303134066536,-1975301885638544],[1074266304,1073905792,1975301885638544,1975303134066536],[1074266304,1140981824,13247603792440361,13247605096148654],[1074266304,1140981888,-13247605096148654,-13247603792440361],[1074266304,1409286208,-4648500364875210,-4648499059714221],[1074266304,1409286272,4648499059714221,4648500364875210],[1074267264,688256,-1975303102468593,-1975301917236486],[1074267264,689152,1975301917236486,1975303102468593],[1074267264,67764352,13247603822433492,13247605066155522],[1074267264,67765248,-13247605066155522,-13247603822433492],[1074267264,336068736,-4648500337554984,-4648499087034444],[1074267264,336069632,4648499087034444,4648500337554984],[1074267264,1073905792,1975301917236486,1975303102468593],[1074267264,1073906688,-1975303102468593,-1975301917236486],[1074267264,1140981888,-13247605066155522,-13247603822433492],[1074267264,1140982784,13247603822433492,13247605066155522],[1074267264,1409286272,4648499087034444,4648500337554984],[1074267264,1409287168,-4648500337554984,-4648499087034444],[1074298881,131076,1975301891852867,1975303127852212],[1074298881,163845,26495207799425147,26495209977752878],[1074298881,688132,-24519907468051532,-24519905289421414],[1074298881,1073872901,-24519907468051532,-24519905289421414],[1074298881,1074397188,26495207799425147,26495209977752878],[1074298881,1074429957,1975301891852867,1975303127852212],[1074298882,163850,-26495209977752878,-26495207799425147],[1074298882,688136,26495207799425147,26495209977752878],[1074298882,1073872906,26495207799425147,26495209977752878],[1074298882,1074397192,-26495209977752878,-26495207799425147],[1074298884,0,7901209108823124,7901210969997192],[1074298884,32772,17198207785323578,17198211142675593],[1074298884,32908,13247603822461068,13247605066127948],[1074298884,131073,-1975303127852212,-1975301891852867],[1074298884,131080,-1975303102468593,-1975301917236486],[1074298884,163845,-26495209977752878,-26495207799425147],[1074298884,163852,-26495212182615048,-26495205594562984],[1074298884,163972,13247603822461068,13247605066127948],[1074298884,524292,17198207785357210,17198211142641961],[1074298884,557056,-26495211786596702,-26495205990581324],[1074298884,557192,-13247605066127948,-13247603822461068],[1074298884,655372,13247603822461068,13247605066127948],[1074298884,655492,13247603811716528,13247605076872486],[1074298884,688129,24519905289421414,24519907468051532],[1074298884,688136,11272298183630328,11272305685253609],[1074298884,688256,-26495209992202640,-26495207784975390],[1074298884,1212420,13247603855419588,13247605033169427],[1074298884,1703940,13247603855385956,13247605033203059],[1074298884,1736704,-26495209915574692,-26495207861603338],[1074298884,67239936,-1975303102434961,-1975301917270118],[1074298884,67272708,13247603827010127,13247605061578886],[1074298884,67764228,-26495212175470166,-26495205601707868],[1074298884,67796992,11272298195290642,11272305673593300],[1074298884,268599300,13247603821617226,13247605066971786],[1074298884,269090820,13247603826989498,13247605061599516],[1074298884,269123584,-26495209977773508,-26495207799404518],[1074298884,336068612,13247603826989498,13247605061599516],[1074298884,336101376,-13247605061599516,-13247603826989498],[1074298884,1073741828,-26495211786596702,-26495205990581324],[1074298884,1073741964,-13247605066127948,-13247603822461068],[1074298884,1073774592,17198207785357210,17198211142641961],[1074298884,1073872901,24519905289421414,24519907468051532],[1074298884,1073872908,11272298183630328,11272305685253609],[1074298884,1073873028,-26495209992202640,-26495207784975390],[1074298884,1073905672,13247603822461068,13247605066127948],[1074298884,1073905792,13247603811716528,13247605076872486],[1074298884,1074266112,17198207785323578,17198211142675593],[1074298884,1074266248,13247603822461068,13247605066127948],[1074298884,1074298884,7901209108823124,7901210969997192],[1074298884,1074397185,-26495209977752878,-26495207799425147],[1074298884,1074397192,-26495212182615048,-26495205594562984],[1074298884,1074397312,13247603822461068,13247605066127948],[1074298884,1074429957,-1975303127852212,-1975301891852867],[1074298884,1074429964,-1975303102468593,-1975301917236486],[1074298884,1074921476,-26495209915574692,-26495207861603338],[1074298884,1074954240,13247603855385956,13247605033203059],[1074298884,1075445760,13247603855419588,13247605033169427],[1074298884,1140981764,11272298195290642,11272305673593300],[1074298884,1141014528,-26495212175470166,-26495205601707868],[1074298884,1141506048,13247603827010127,13247605061578886],[1074298884,1141538820,-1975303102434961,-1975301917270118],[1074298884,1342308356,-26495209977773508,-26495207799404518],[1074298884,1342341120,13247603826989498,13247605061599516],[1074298884,1342832640,13247603821617226,13247605066971786],[1074298884,1409286148,-13247605061599516,-13247603826989498],[1074298884,1409318912,13247603826989498,13247605061599516],[1074298884,140737488486400,-22544604485800118,-22544603251967752],[1074298884,140737489010692,-26495209992202640,-26495207784975390],[1074298884,140737489043456,3950603911967182,3950606127442978],[1074298884,140738562228228,3950603911967182,3950606127442978],[1074298884,140738562260992,-26495209992202640,-26495207784975390],[1074298884,140738562785284,-22544604485800118,-22544603251967752],[1074298888,0,-7901210969997192,-7901209108823124],[1074298888,32776,-1975305295486367,-1975299724218711],[1074298888,131076,-24519908074966154,-24519904682506797],[1074298888,163850,26495207799425147,26495209977752878],[1074298888,163852,52990415723206676,52990419831149384],[1074298888,163976,-2193017775,2193017774],[1074298888,524296,-3950605484998596,-3950604554411562],[1074298888,557056,-1975305295452736,-1975299724252344],[1074298888,655372,-26495209992202640,-26495207784975390],[1074298888,688130,-26495209977752878,-26495207799425147],[1074298888,688132,-51015117307046807,-51015113227604174],[1074298888,688256,-2193017774,2193017775],[1074298888,1212424,-26495209915574692,-26495207861603338],[1074298888,1736704,26495207861603338,26495209915574692],[1074298888,67239936,57638914684799306,57638920294146182],[1074298888,67272712,11272299945646091,11272303923237845],[1074298888,67764232,52990415723206676,52990419831149384],[1074298888,67796992,-6623804212490749,-6623800231803759],[1074298888,268599304,-26495209977773508,-26495207799404518],[1074298888,269123584,26495207799404518,26495209977773508],[1074298888,1073741832,-1975305295452736,-1975299724252344],[1074298888,1073774592,-3950605484998596,-3950604554411562],[1074298888,1073872906,-26495209977752878,-26495207799425147],[1074298888,1073872908,-51015117307046807,-51015113227604174],[1074298888,1073873032,-2193017774,2193017775],[1074298888,1073905668,-26495209992202640,-26495207784975390],[1074298888,1074266112,-1975305295486367,-1975299724218711],[1074298888,1074298888,-7901210969997192,-7901209108823124],[1074298888,1074397186,26495207799425147,26495209977752878],[1074298888,1074397188,52990415723206676,52990419831149384],[1074298888,1074397312,-2193017775,2193017774],[1074298888,1074429964,-24519908074966154,-24519904682506797],[1074298888,1074921480,26495207861603338,26495209915574692],[1074298888,1075445760,-26495209915574692,-26495207861603338],[1074298888,1140981768,-6623804212490749,-6623800231803759],[1074298888,1141014528,52990415723206676,52990419831149384],[1074298888,1141506048,11272299945646091,11272303923237845],[1074298888,1141538824,57638914684799306,57638920294146182],[1074298888,1342308360,26495207799404518,26495209977773508],[1074298888,1342832640,-26495209977773508,-26495207799404518],[1074298888,140737488486400,26495207784975390,26495209992202640],[1074298888,140737489010696,26495207784975390,26495209992202640],[1074298888,140738562260992,26495207784975390,26495209992202640],[1074298888,140738562785288,26495207784975390,26495209992202640],[1074299008,32896,-1975304605835260,-1975300413869816],[1074299008,163976,-26495209977993164,-26495207799184865],[1074299008,557056,1975300413869816,1975304605835260],[1074299008,688136,26495207799184865,26495209977993164],[1074299008,67272832,-11272302995044411,-11272300873839524],[1074299008,67796992,11272300873839524,11272302995044411],[1074299008,1073741952,1975300413869816,1975304605835260],[1074299008,1073873032,26495207799184865,26495209977993164],[1074299008,1074266112,-1975304605835260,-1975300413869816],[1074299008,1074397192,-26495209977993164,-26495207799184865],[1074299008,1140981888,11272300873839524,11272302995044411],[1074299008,1141506048,-11272302995044411,-11272300873839524],[1074299020,32896,13247603822461068,13247605066127948],[1074299020,32908,13247603822461068,13247605066127948],[1074299020,557056,-13247605066127948,-13247603822461068],[1074299020,557068,-13247605066127948,-13247603822461068],[1074299020,1073741952,-13247605066127948,-13247603822461068],[1074299020,1073741964,-13247605066127948,-13247603822461068],[1074299020,1074266112,13247603822461068,13247605066127948],[1074299020,1074266124,13247603822461068,13247605066127948],[1074397185,163845,-26495209977752878,-26495207799425147],[1074397185,557061,26495207799425147,26495209977752878],[1074397185,1073905668,26495207799425147,26495209977752878],[1074397185,1074298884,-26495209977752878,-26495207799425147],[1074397186,32776,1975301885638544,1975303134066536],[1074397186,163850,26495207799425147,26495209977752878],[1074397186,557066,-24519907464403207,-24519905293069738],[1074397186,67108872,-13247605096148654,-13247603792440361],[1074397186,67239946,-6623803337001160,-6623801107293350],[1074397186,67633162,-6623803358085955,-6623801086208550],[1074397186,1073905672,-24519907464403207,-24519905293069738],[1074397186,1074298888,26495207799425147,26495209977752878],[1074397186,1074429962,1975301885638544,1975303134066536],[1074397186,1140981768,-6623803358085955,-6623801086208550],[1074397186,1141374984,-6623803337001160,-6623801107293350],[1074397186,1141506058,-13247605096148654,-13247603792440361],[1074397188,0,-7901210969997192,-7901209108823124],[1074397188,32776,-24519908074966154,-24519904682506797],[1074397188,32896,26495207784975390,26495209992202640],[1074397188,131076,-1975305295246081,-1975299724458993],[1074397188,163845,26495207799425147,26495209977752878],[1074397188,163852,52990415723206676,52990419831149384],[1074397188,524292,-1975305295212454,-1975299724492630],[1074397188,557061,-26495209977752878,-26495207799425147],[1074397188,557068,-51015117307046807,-51015113227604174],[1074397188,655360,-3950605484998596,-3950604554411562],[1074397188,688136,-26495209992202640,-26495207784975390],[1074397188,688256,26495207784975390,26495209992202640],[1074397188,1081344,26495207861603338,26495209915574692],[1074397188,1736704,26495207861603338,26495209915574692],[1074397188,67108872,-13247605066155522,-13247603822433492],[1074397188,67141632,-24519908060537022,-24519904696935925],[1074397188,67239948,-6623803284297315,-6623801159997192],[1074397188,67272708,-51015117307046807,-51015113227604174],[1074397188,67633164,-6623803284297315,-6623801159997192],[1074397188,67665924,52990415723206676,52990419831149384],[1074397188,67796992,-26495209977773508,-26495207799404518],[1074397188,268468224,26495207799404518,26495209977773508],[1074397188,269123584,26495207799404518,26495209977773508],[1074397188,1073741828,-3950605484998596,-3950604554411562],[1074397188,1073774604,-26495209992202640,-26495207784975390],[1074397188,1073774724,26495207784975390,26495209992202640],[1074397188,1073872896,-1975305295212454,-1975299724492630],[1074397188,1073905665,-26495209977752878,-26495207799425147],[1074397188,1073905672,-51015117307046807,-51015113227604174],[1074397188,1074266112,-1975305295246081,-1975299724458993],[1074397188,1074298881,26495207799425147,26495209977752878],[1074397188,1074298888,52990415723206676,52990419831149384],[1074397188,1074397188,-7901210969997192,-7901209108823124],[1074397188,1074429964,-24519908074966154,-24519904682506797],[1074397188,1074430084,26495207784975390,26495209992202640],[1074397188,1074823172,26495207861603338,26495209915574692],[1074397188,1075478532,26495207861603338,26495209915574692],[1074397188,1140883460,-26495209977773508,-26495207799404518],[1074397188,1140981768,-6623803284297315,-6623801159997192],[1074397188,1141014528,52990415723206676,52990419831149384],[1074397188,1141374984,-6623803284297315,-6623801159997192],[1074397188,1141407744,-51015117307046807,-51015113227604174],[1074397188,1141506060,-13247605066155522,-13247603822433492],[1074397188,1141538820,-24519908060537022,-24519904696935925],[1074397188,1342210052,26495207799404518,26495209977773508],[1074397188,1342865412,26495207799404518,26495209977773508],[1074397188,140737488519172,-26495209992202640,-26495207784975390],[1074397188,140737488912388,26495207784975390,26495209992202640],[1074397188,140738562260992,26495207784975390,26495209992202640],[1074397188,140738562654208,-26495209992202640,-26495207784975390],[1074397192,0,-14643395680256320,-14643391978691236],[1074397192,32770,-1975303134066536,-1975301885638544],[1074397192,32772,-1975303102468593,-1975301917236486],[1074397192,32896,-49039815227304660,-49039810287641238],[1074397192,131080,1277404472099680,1277411162426122],[1074397192,163850,-26495209977752878,-26495207799425147],[1074397192,163852,-26495212182615048,-26495205594562984],[1074397192,163976,-26495209977993164,-26495207799184865],[1074397192,524296,-19871412418198236,-19871400914685277],[1074397192,557066,24519905293069738,24519907464403207],[1074397192,557068,11272298183630328,11272305685253609],[1074397192,557192,3950601587495984,3950608451914177],[1074397192,655360,3950601681274309,3950608358135846],[1074397192,688132,13247603822461068,13247605066127948],[1074397192,688256,-26495209992202640,-26495207784975390],[1074397192,1081344,-1975303102434961,-1975301917270118],[1074397192,1605640,24519905365967204,24519907391505747],[1074397192,1736704,-26495209915574692,-26495207861603338],[1074397192,67108866,13247603792440361,13247605096148654],[1074397192,67108868,13247603822433492,13247605066155522],[1074397192,67108992,22544601267974862,22544606469793008],[1074397192,67141632,15920800086388708,15920803207084654],[1074397192,67239946,6623801107293350,6623803337001160],[1074397192,67239948,6623801159997192,6623803284297315],[1074397192,67240072,6623801098016986,6623803346277523],[1074397192,67272712,11272298892173522,11272304976710416],[1074397192,67633162,6623801086208550,6623803358085955],[1074397192,67633164,6623801159997192,6623803284297315],[1074397192,67633288,-8599108332258679,-8599101131740910],[1074397192,67665928,-3950609226781738,-3950600812628424],[1074397192,67764352,24519905244697076,24519907512775874],[1074397192,67796992,8599101696810952,8599107767188634],[1074397192,68157440,-4648500337588616,-4648499087000812],[1074397192,68681736,-11272302995044411,-11272300873839524],[1074397192,68812800,6623801159963560,6623803284330947],[1074397192,268468224,-22544604489700504,-22544603248067364],[1074397192,268992520,3950603932147814,3950606107262344],[1074397192,269123584,-26495209977773508,-26495207799404518],[1074397192,335544320,-1975303161793801,-1975301857911278],[1074397192,335675400,-4648500367937249,-4648499056652180],[1074397192,336068616,-42416014569192714,-42416006501458678],[1074397192,336199680,45089204212760992,45089211262774750],[1074397192,1073741832,3950601681274309,3950608358135846],[1074397192,1073774604,13247603822461068,13247605066127948],[1074397192,1073774728,-26495209992202640,-26495207784975390],[1074397192,1073872896,-19871412418198236,-19871400914685277],[1074397192,1073905666,24519905293069738,24519907464403207],[1074397192,1073905668,11272298183630328,11272305685253609],[1074397192,1073905792,3950601587495984,3950608451914177],[1074397192,1074266112,1277404472099680,1277411162426122],[1074397192,1074298882,-26495209977752878,-26495207799425147],[1074397192,1074298884,-26495212182615048,-26495205594562984],[1074397192,1074299008,-26495209977993164,-26495207799184865],[1074397192,1074397192,-14643395680256320,-14643391978691236],[1074397192,1074429962,-1975303134066536,-1975301885638544],[1074397192,1074429964,-1975303102468593,-1975301917236486],[1074397192,1074430088,-49039815227304660,-49039810287641238],[1074397192,1074823176,-26495209915574692,-26495207861603338],[1074397192,1074954240,24519905365967204,24519907391505747],[1074397192,1075478536,-1975303102434961,-1975301917270118],[1074397192,1140850824,24519905244697076,24519907512775874],[1074397192,1140883464,8599101696810952,8599107767188634],[1074397192,1140981762,6623801086208550,6623803358085955],[1074397192,1140981764,6623801159997192,6623803284297315],[1074397192,1140981888,-8599108332258679,-8599101131740910],[1074397192,1141014528,-3950609226781738,-3950600812628424],[1074397192,1141374978,6623801107293350,6623803337001160],[1074397192,1141374980,6623801159997192,6623803284297315],[1074397192,1141375104,6623801098016986,6623803346277523],[1074397192,1141407744,11272298892173522,11272304976710416],[1074397192,1141506058,13247603792440361,13247605096148654],[1074397192,1141506060,13247603822433492,13247605066155522],[1074397192,1141506184,22544601267974862,22544606469793008],[1074397192,1141538824,15920800086388708,15920803207084654],[1074397192,1141899272,6623801159963560,6623803284330947],[1074397192,1142030336,-11272302995044411,-11272300873839524],[1074397192,1142554632,-4648500337588616,-4648499087000812],[1074397192,1342210056,-26495209977773508,-26495207799404518],[1074397192,1342341120,3950603932147814,3950606107262344],[1074397192,1342865416,-22544604489700504,-22544603248067364],[1074397192,1409286152,45089204212760992,45089211262774750],[1074397192,1409417216,-42416014569192714,-42416006501458678],[1074397192,1409810432,-4648500367937249,-4648499056652180],[1074397192,1409941512,-1975303161793801,-1975301857911278],[1074397192,17592253284360,13247603788555150,13247605100033866],[1074397192,17592253677576,-11272303079253853,-11272300789630083],[1074397192,17592253808640,-1975303167312100,-1975301852392980],[1074397192,17593326895112,-1975303167312100,-1975301852392980],[1074397192,17593327026176,-11272303079253853,-11272300789630083],[1074397192,17593327419392,13247603788555150,13247605100033866],[1074397192,140737488519176,13247603822461068,13247605066127948],[1074397192,140737488912392,-26495209992202640,-26495207784975390],[1074397192,140737489043456,13247603811716528,13247605076872486],[1074397192,140737555595272,-1975303134589986,-1975301885115096],[1074397192,140737555988488,24519905280236082,24519907477236870],[1074397192,140737556119552,-22544604497985104,-22544603239782766],[1074397192,140738562129928,13247603811716528,13247605076872486],[1074397192,140738562260992,-26495209992202640,-26495207784975390],[1074397192,140738562654208,13247603822461068,13247605066127948],[1074397192,140738629206024,-22544604497985104,-22544603239782766],[1074397192,140738629337088,24519905280236082,24519907477236870],[1074397192,140738629730304,-1975303134589986,-1975301885115096],[1074397248,32896,-1975303134066536,-1975301885638544],[1074397248,557248,-1975303134066536,-1975301885638544],[1074397248,67108992,13247603792440361,13247605096148654],[1074397248,67633344,13247603792440361,13247605096148654],[1074397248,1073905792,-1975303134066536,-1975301885638544],[1074397248,1074430144,-1975303134066536,-1975301885638544],[1074397248,1140981888,13247603792440361,13247605096148654],[1074397248,1141506240,13247603792440361,13247605096148654],[1074397312,32776,3950603783705734,3950606255704424],[1074397312,32832,1975301885638544,1975303134066536],[1074397312,33792,1975301917236486,1975303102468593],[1074397312,131200,11272298596064681,11272305272819252],[1074397312,163972,13247603822461068,13247605066127948],[1074397312,163976,-2193017775,2193017774],[1074397312,557192,-22544605576438951,-22544602161328920],[1074397312,557248,1975301885638544,1975303134066536],[1074397312,558208,1975301917236486,1975303102468593],[1074397312,655360,-11272305272819252,-11272298596064681],[1074397312,688132,-13247605066127948,-13247603822461068],[1074397312,688136,26495207784975390,26495209992202640],[1074397312,1081344,-1975303102468593,-1975301917236486],[1074397312,1605760,-1975303102468593,-1975301917236486],[1074397312,67108872,-26495210186613570,-26495207590564460],[1074397312,67108928,-13247605096148654,-13247603792440361],[1074397312,67109888,-13247605066155522,-13247603822433492],[1074397312,67240072,17896101898419553,17896106414758888],[1074397312,67272832,-11272305272819252,-11272298596064681],[1074397312,67633288,-19871408457827235,-19871404875056286],[1074397312,67633344,-13247605096148654,-13247603792440361],[1074397312,67634304,-13247605066155522,-13247603822433492],[1074397312,67764232,-24519907512775874,-24519905244697076],[1074397312,67796992,11272298596064681,11272305272819252],[1074397312,68157440,13247603822433492,13247605066155522],[1074397312,68681856,13247603822433492,13247605066155522],[1074397312,268468224,-1975303134066536,-1975301885638544],[1074397312,268992640,-1975303134066536,-1975301885638544],[1074397312,335544320,13247603792440361,13247605096148654],[1074397312,335675520,-8599106519519277,-8599102944480312],[1074397312,336068736,17896102849092541,17896105464085903],[1074397312,336199680,3950603717154982,3950606322255178],[1074397312,1073741952,-11272305272819252,-11272298596064681],[1074397312,1073774724,-13247605066127948,-13247603822461068],[1074397312,1073774728,26495207784975390,26495209992202640],[1074397312,1073905672,-22544605576438951,-22544602161328920],[1074397312,1073905728,1975301885638544,1975303134066536],[1074397312,1073906688,1975301917236486,1975303102468593],[1074397312,1074266112,11272298596064681,11272305272819252],[1074397312,1074298884,13247603822461068,13247605066127948],[1074397312,1074298888,-2193017775,2193017774],[1074397312,1074430088,3950603783705734,3950606255704424],[1074397312,1074430144,1975301885638544,1975303134066536],[1074397312,1074431104,1975301917236486,1975303102468593],[1074397312,1074954240,-1975303102468593,-1975301917236486],[1074397312,1075478656,-1975303102468593,-1975301917236486],[1074397312,1140850824,-24519907512775874,-24519905244697076],[1074397312,1140883584,11272298596064681,11272305272819252],[1074397312,1140981768,-19871408457827235,-19871404875056286],[1074397312,1140981824,-13247605096148654,-13247603792440361],[1074397312,1140982784,-13247605066155522,-13247603822433492],[1074397312,1141374984,17896101898419553,17896106414758888],[1074397312,1141407744,-11272305272819252,-11272298596064681],[1074397312,1141506184,-26495210186613570,-26495207590564460],[1074397312,1141506240,-13247605096148654,-13247603792440361],[1074397312,1141507200,-13247605066155522,-13247603822433492],[1074397312,1142030336,13247603822433492,13247605066155522],[1074397312,1142554752,13247603822433492,13247605066155522],[1074397312,1342341120,-1975303134066536,-1975301885638544],[1074397312,1342865536,-1975303134066536,-1975301885638544],[1074397312,1409286272,3950603717154982,3950606322255178],[1074397312,1409417216,17896102849092541,17896105464085903],[1074397312,1409810432,-8599106519519277,-8599102944480312],[1074397312,1409941632,13247603792440361,13247605096148654],[1074397312,17592253284480,-1975303167312100,-1975301852392980],[1074397312,17592253808640,1975301852392980,1975303167312100],[1074397312,17593326895232,1975301852392980,1975303167312100],[1074397312,17593327419392,-1975303167312100,-1975301852392980],[1074397312,140737488519296,13247603811716528,13247605076872486],[1074397312,140737489043456,-13247605076872486,-13247603811716528],[1074397312,140737555595392,-22544604497985104,-22544603239782766],[1074397312,140737556119552,22544603239782766,22544604497985104],[1074397312,140738562130048,-13247605076872486,-13247603811716528],[1074397312,140738562654208,13247603811716528,13247605076872486],[1074397312,140738629206144,22544603239782766,22544604497985104],[1074397312,140738629730304,-22544604497985104,-22544603239782766],[1074398208,32896,-1975303102468593,-1975301917236486],[1074398208,558208,-1975303102468593,-1975301917236486],[1074398208,1081344,-22544604430576096,-22544603307191776],[1074398208,1606656,-22544604430576096,-22544603307191776],[1074398208,67108992,13247603822433492,13247605066155522],[1074398208,67634304,13247603822433492,13247605066155522],[1074398208,68157440,-1975303102468593,-1975301917236486],[1074398208,68682752,-1975303102468593,-1975301917236486],[1074398208,1073905792,-1975303102468593,-1975301917236486],[1074398208,1074431104,-1975303102468593,-1975301917236486],[1074398208,1074954240,-22544604430576096,-22544603307191776],[1074398208,1075479552,-22544604430576096,-22544603307191776],[1074398208,1140981888,13247603822433492,13247605066155522],[1074398208,1141507200,13247603822433492,13247605066155522],[1074398208,1142030336,-1975303102468593,-1975301917236486],[1074398208,1142555648,-1975303102468593,-1975301917236486],[1074429952,12,13247603811716528,13247605076872486],[1074429952,132,-13247605076872486,-13247603811716528],[1074429952,163976,-18594000573832936,-18593997124524774],[1074429952,557192,18593997124524774,18594000573832936],[1074429952,655372,13247603811716528,13247605076872486],[1074429952,655492,-13247605076872486,-13247603811716528],[1074429952,1048580,-13247605033203059,-13247603855385956],[1074429952,1212424,24519905365967204,24519907391505747],[1074429952,1212544,-24519907391505747,-24519905365967204],[1074429952,1605640,-24519907391505747,-24519905365967204],[1074429952,1605760,24519905365967204,24519907391505747],[1074429952,1703940,-13247605033203059,-13247603855385956],[1074429952,67108868,11272300724520905,11272303144363030],[1074429952,67108872,-24519907696178166,-24519905061294785],[1074429952,67108992,26495207710771912,26495210066406118],[1074429952,67272708,49039810731968040,49039814782977862],[1074429952,67272712,-3950606982859932,-3950603056550226],[1074429952,67272832,3950603932147814,3950606107262344],[1074429952,67665924,-51015117307080439,-51015113227570542],[1074429952,67665928,10574405092145006,10574409391559659],[1074429952,67666048,-15222909102306755,-15222904805987338],[1074429952,67764228,13247603826989498,13247605061599516],[1074429952,67764232,-31143710097470678,-31143707104296780],[1074429952,67764352,37767509188400696,37767512457661269],[1074429952,268435460,-13247605061599516,-13247603826989498],[1074429952,268599304,3950603932147814,3950606107262344],[1074429952,268599424,-3950606107262344,-3950603932147814],[1074429952,268992520,-3950606107262344,-3950603932147814],[1074429952,268992640,3950603932147814,3950606107262344],[1074429952,269090820,-13247605061599516,-13247603826989498],[1074429952,1073774604,13247603811716528,13247605076872486],[1074429952,1073774724,-13247605076872486,-13247603811716528],[1074429952,1073873032,18593997124524774,18594000573832936],[1074429952,1074266248,-18594000573832936,-18593997124524774],[1074429952,1074429964,13247603811716528,13247605076872486],[1074429952,1074430084,-13247605076872486,-13247603811716528],[1074429952,1074823172,-13247605033203059,-13247603855385956],[1074429952,1074921480,-24519907391505747,-24519905365967204],[1074429952,1074921600,24519905365967204,24519907391505747],[1074429952,1075314696,24519905365967204,24519907391505747],[1074429952,1075314816,-24519907391505747,-24519905365967204],[1074429952,1075478532,-13247605033203059,-13247603855385956],[1074429952,1140883460,13247603826989498,13247605061599516],[1074429952,1140883464,-31143710097470678,-31143707104296780],[1074429952,1140883584,37767509188400696,37767512457661269],[1074429952,1140981764,-51015117307080439,-51015113227570542],[1074429952,1140981768,10574405092145006,10574409391559659],[1074429952,1140981888,-15222909102306755,-15222904805987338],[1074429952,1141374980,49039810731968040,49039814782977862],[1074429952,1141374984,-3950606982859932,-3950603056550226],[1074429952,1141375104,3950603932147814,3950606107262344],[1074429952,1141538820,11272300724520905,11272303144363030],[1074429952,1141538824,-24519907696178166,-24519905061294785],[1074429952,1141538944,26495207710771912,26495210066406118],[1074429952,1342210052,-13247605061599516,-13247603826989498],[1074429952,1342308360,-3950606107262344,-3950603932147814],[1074429952,1342308480,3950603932147814,3950606107262344],[1074429952,1342701576,3950603932147814,3950606107262344],[1074429952,1342701696,-3950606107262344,-3950603932147814],[1074429952,1342865412,-13247605061599516,-13247603826989498],[1074429952,140737488355336,-13247605076872486,-13247603811716528],[1074429952,140737488355456,13247603811716528,13247605076872486],[1074429952,140737488519172,3950603911967182,3950606127442978],[1074429952,140737488912388,-3950606127442978,-3950603911967182],[1074429952,140737489010696,-13247605076872486,-13247603811716528],[1074429952,140737489010816,13247603811716528,13247605076872486],[1074429952,140738562129928,-13247605076872486,-13247603811716528],[1074429952,140738562130048,13247603811716528,13247605076872486],[1074429952,140738562228228,-3950606127442978,-3950603911967182],[1074429952,140738562621444,3950603911967182,3950606127442978],[1074429952,140738562785288,-13247605076872486,-13247603811716528],[1074429952,140738562785408,13247603811716528,13247605076872486],[1074429957,131073,-1975303127852212,-1975301891852867],[1074429957,131076,1975301891852867,1975303127852212],[1074429957,524289,1975301891852867,1975303127852212],[1074429957,524292,-1975303127852212,-1975301891852867],[1074429957,1073905665,-1975303127852212,-1975301891852867],[1074429957,1073905668,1975301891852867,1975303127852212],[1074429957,1074298881,1975301891852867,1975303127852212],[1074429957,1074298884,-1975303127852212,-1975301891852867],[1074429962,32770,-1975303134066536,-1975301885638544],[1074429962,32776,1975301885638544,1975303134066536],[1074429962,688130,-1975303134066536,-1975301885638544],[1074429962,688136,1975301885638544,1975303134066536],[1074429962,1073741826,1975301885638544,1975303134066536],[1074429962,1073741832,-1975303134066536,-1975301885638544],[1074429962,1074397186,1975301885638544,1975303134066536],[1074429962,1074397192,-1975303134066536,-1975301885638544],[1074429964,12,13247603811716528,13247605076872486],[1074429964,32772,-1975303102468593,-1975301917236486],[1074429964,32776,-24519908074966154,-24519904682506797],[1074429964,131076,-24519908074966154,-24519904682506797],[1074429964,131080,-1975303102468593,-1975301917236486],[1074429964,163840,66238019708364176,66238024734580898],[1074429964,163852,26495207648534336,26495210128643692],[1074429964,524292,11272300719992475,11272303148891462],[1074429964,524296,1975301917236486,1975303102468593],[1074429964,557056,-39742815043973846,-39742811621793198],[1074429964,557068,-39742815043973846,-39742811621793198],[1074429964,688132,11272300719992475,11272303148891462],[1074429964,688136,1975301917236486,1975303102468593],[1074429964,1073741828,1975301917236486,1975303102468593],[1074429964,1073741832,11272300719992475,11272303148891462],[1074429964,1073872896,-39742815043973846,-39742811621793198],[1074429964,1073872908,-39742815043973846,-39742811621793198],[1074429964,1073905668,1975301917236486,1975303102468593],[1074429964,1073905672,11272300719992475,11272303148891462],[1074429964,1074266112,26495207648534336,26495210128643692],[1074429964,1074266124,66238019708364176,66238024734580898],[1074429964,1074298884,-1975303102468593,-1975301917236486],[1074429964,1074298888,-24519908074966154,-24519904682506797],[1074429964,1074397188,-24519908074966154,-24519904682506797],[1074429964,1074397192,-1975303102468593,-1975301917236486],[1074429964,1074429952,13247603811716528,13247605076872486],[1074430084,132,-13247605076872486,-13247603811716528],[1074430084,32896,26495207784975390,26495209992202640],[1074430084,163972,13247603822461068,13247605066127948],[1074430084,524292,13247603811716528,13247605076872486],[1074430084,557056,-26495209992202640,-26495207784975390],[1074430084,688132,-13247605066127948,-13247603822461068],[1074430084,1073741952,-13247605066127948,-13247603822461068],[1074430084,1073873028,-26495209992202640,-26495207784975390],[1074430084,1073905792,13247603811716528,13247605076872486],[1074430084,1074266112,13247603822461068,13247605066127948],[1074430084,1074397188,26495207784975390,26495209992202640],[1074430084,1074429952,-13247605076872486,-13247603811716528],[1074430088,32776,3950603783705734,3950606255704424],[1074430088,32896,-49039815227304660,-49039810287641238],[1074430088,163976,-45089208971600236,-45089206503935504],[1074430088,557056,45089206503935504,45089208971600236],[1074430088,688136,49039810287641238,49039815227304660],[1074430088,688256,-3950606255704424,-3950603783705734],[1074430088,1073741832,-3950606255704424,-3950603783705734],[1074430088,1073741952,49039810287641238,49039815227304660],[1074430088,1073873032,45089206503935504,45089208971600236],[1074430088,1074266112,-45089208971600236,-45089206503935504],[1074430088,1074397192,-49039815227304660,-49039810287641238],[1074430088,1074397312,3950603783705734,3950606255704424],[1074430144,32832,1975301885638544,1975303134066536],[1074430144,32896,-1975303134066536,-1975301885638544],[1074430144,688192,1975301885638544,1975303134066536],[1074430144,688256,-1975303134066536,-1975301885638544],[1074430144,1073741888,-1975303134066536,-1975301885638544],[1074430144,1073741952,1975301885638544,1975303134066536],[1074430144,1074397248,-1975303134066536,-1975301885638544],[1074430144,1074397312,1975301885638544,1975303134066536],[1074431104,32896,-1975303102468593,-1975301917236486],[1074431104,33792,1975301917236486,1975303102468593],[1074431104,688256,-1975303102468593,-1975301917236486],[1074431104,689152,1975301917236486,1975303102468593],[1074431104,1073741952,1975301917236486,1975303102468593],[1074431104,1073742848,-1975303102468593,-1975301917236486],[1074431104,1074397312,1975301917236486,1975303102468593],[1074431104,1074398208,-1975303102468593,-1975301917236486],[1074790400,688132,-13247605033169427,-13247603855419588],[1074790400,688136,1975301917270118,1975303102434961],[1074790400,688256,1975301917236486,1975303102468593],[1074790400,689152,22544603307191776,22544604430576096],[1074790400,67764232,4648499087000812,4648500337588616],[1074790400,67764352,-13247605066155522,-13247603822433492],[1074790400,67765248,1975301917236486,1975303102468593],[1074790400,336068736,4648499087034444,4648500337554984],[1074790400,336069632,1975301917270118,1975303102434961],[1074790400,469763072,-13247605033203059,-13247603855385956],[1074790400,1075478532,-13247605033169427,-13247603855419588],[1074790400,1075478536,1975301917270118,1975303102434961],[1074790400,1075478656,1975301917236486,1975303102468593],[1074790400,1075479552,22544603307191776,22544604430576096],[1074790400,1142554632,4648499087000812,4648500337588616],[1074790400,1142554752,-13247605066155522,-13247603822433492],[1074790400,1142555648,1975301917236486,1975303102468593],[1074790400,1410859136,4648499087034444,4648500337554984],[1074790400,1410860032,1975301917270118,1975303102434961],[1074790400,1544553472,-13247605033203059,-13247603855385956],[1074823172,688132,-13247605033169427,-13247603855419588],[1074823172,1703940,-13247605033203059,-13247603855385956],[1074823172,1736704,26495207861603338,26495209915574692],[1074823172,1074397188,26495207861603338,26495209915574692],[1074823172,1074429952,-13247605033203059,-13247603855385956],[1074823172,1075445760,-13247605033169427,-13247603855419588],[1074823176,688136,26495207861603338,26495209915574692],[1074823176,1736704,-26495209915574692,-26495207861603338],[1074823176,1074397192,-26495209915574692,-26495207861603338],[1074823176,1075445760,26495207861603338,26495209915574692],[1074921476,557056,-26495209915574692,-26495207861603338],[1074921476,1736704,-26495209915574692,-26495207861603338],[1074921476,1074298884,-26495209915574692,-26495207861603338],[1074921476,1075478532,-26495209915574692,-26495207861603338],[1074921480,557056,1975301917270118,1975303102434961],[1074921480,1605640,-24519907391505747,-24519905365967204],[1074921480,1736704,26495207861603338,26495209915574692],[1074921480,67633152,4648499087000812,4648500337588616],[1074921480,68681736,11272300873839524,11272302995044411],[1074921480,68812800,-6623803284330947,-6623801159963560],[1074921480,1074298888,26495207861603338,26495209915574692],[1074921480,1074429952,-24519907391505747,-24519905365967204],[1074921480,1075478536,1975301917270118,1975303102434961],[1074921480,1141374984,-6623803284330947,-6623801159963560],[1074921480,1141506048,11272300873839524,11272302995044411],[1074921480,1142554632,4648499087000812,4648500337588616],[1074921600,557056,24519905365967204,24519907391505747],[1074921600,1605760,24519905365967204,24519907391505747],[1074921600,67633152,-11272302995044411,-11272300873839524],[1074921600,68681856,-11272302995044411,-11272300873839524],[1074921600,1074429952,24519905365967204,24519907391505747],[1074921600,1075478656,24519905365967204,24519907391505747],[1074921600,1141506048,-11272302995044411,-11272300873839524],[1074921600,1142554752,-11272302995044411,-11272300873839524],[1074954240,524292,13247603855385956,13247605033203059],[1074954240,688136,-24519907391505747,-24519905365967204],[1074954240,688256,1975301917236486,1975303102468593],[1074954240,689152,22544603307191776,22544604430576096],[1074954240,1605640,24519905365967204,24519907391505747],[1074954240,1605760,-1975303102468593,-1975301917236486],[1074954240,1606656,-22544604430576096,-22544603307191776],[1074954240,1703940,13247603855385956,13247605033203059],[1074954240,1074298884,13247603855385956,13247605033203059],[1074954240,1074397192,24519905365967204,24519907391505747],[1074954240,1074397312,-1975303102468593,-1975301917236486],[1074954240,1074398208,-22544604430576096,-22544603307191776],[1074954240,1075314696,-24519907391505747,-24519905365967204],[1074954240,1075314816,1975301917236486,1975303102468593],[1074954240,1075315712,22544603307191776,22544604430576096],[1074954240,1075478532,13247603855385956,13247605033203059],[1075314696,688136,-24519907391505747,-24519905365967204],[1075314696,1212424,24519905365967204,24519907391505747],[1075314696,67764232,11272300873839524,11272302995044411],[1075314696,68288520,-11272302995044411,-11272300873839524],[1075314696,1074429952,24519905365967204,24519907391505747],[1075314696,1074954240,-24519907391505747,-24519905365967204],[1075314696,1141506048,-11272302995044411,-11272300873839524],[1075314696,1142030336,11272300873839524,11272302995044411],[1075314816,688256,1975301917236486,1975303102468593],[1075314816,1212544,-24519907391505747,-24519905365967204],[1075314816,1736704,22544603307191776,22544604430576096],[1075314816,67764352,-13247605066155522,-13247603822433492],[1075314816,68288640,11272300873839524,11272302995044411],[1075314816,68812800,1975301917236486,1975303102468593],[1075314816,336068736,4648499087034444,4648500337554984],[1075314816,336593024,-6623803284330947,-6623801159963560],[1075314816,337117184,1975301917270118,1975303102434961],[1075314816,1073905792,22544603307191776,22544604430576096],[1075314816,1074429952,-24519907391505747,-24519905365967204],[1075314816,1074954240,1975301917236486,1975303102468593],[1075314816,1140981888,1975301917236486,1975303102468593],[1075314816,1141506048,11272300873839524,11272302995044411],[1075314816,1142030336,-13247605066155522,-13247603822433492],[1075314816,1409286272,1975301917270118,1975303102434961],[1075314816,1409810432,-6623803284330947,-6623801159963560],[1075314816,1410334720,4648499087034444,4648500337554984],[1075315712,689152,22544603307191776,22544604430576096],[1075315712,1736704,-22544604430576096,-22544603307191776],[1075315712,67765248,1975301917236486,1975303102468593],[1075315712,68812800,-1975303102468593,-1975301917236486],[1075315712,336069632,1975301917270118,1975303102434961],[1075315712,337117184,-1975303102434961,-1975301917270118],[1075315712,1073906688,-22544604430576096,-22544603307191776],[1075315712,1074954240,22544603307191776,22544604430576096],[1075315712,1140982784,-1975303102468593,-1975301917236486],[1075315712,1142030336,1975301917236486,1975303102468593],[1075315712,1409287168,-1975303102434961,-1975301917270118],[1075315712,1410334720,1975301917270118,1975303102434961],[1075445760,32896,-22544604430576096,-22544603307191776],[1075445760,33792,22544603307191776,22544604430576096],[1075445760,688132,-13247605033169427,-13247603855419588],[1075445760,688136,26495207861603338,26495209915574692],[1075445760,1212420,13247603855419588,13247605033169427],[1075445760,1212424,-26495209915574692,-26495207861603338],[1075445760,1605760,-22544604430576096,-22544603307191776],[1075445760,1606656,22544603307191776,22544604430576096],[1075445760,67108992,-1975303102468593,-1975301917236486],[1075445760,67109888,1975301917236486,1975303102468593],[1075445760,67764232,-6623803284330947,-6623801159963560],[1075445760,68288520,6623801159963560,6623803284330947],[1075445760,68681856,-1975303102468593,-1975301917236486],[1075445760,68682752,1975301917236486,1975303102468593],[1075445760,1073905792,-22544604430576096,-22544603307191776],[1075445760,1073906688,22544603307191776,22544604430576096],[1075445760,1074298884,13247603855419588,13247605033169427],[1075445760,1074298888,-26495209915574692,-26495207861603338],[1075445760,1074823172,-13247605033169427,-13247603855419588],[1075445760,1074823176,26495207861603338,26495209915574692],[1075445760,1075478656,-22544604430576096,-22544603307191776],[1075445760,1075479552,22544603307191776,22544604430576096],[1075445760,1140981888,-1975303102468593,-1975301917236486],[1075445760,1140982784,1975301917236486,1975303102468593],[1075445760,1141374984,6623801159963560,6623803284330947],[1075445760,1141899272,-6623803284330947,-6623801159963560],[1075445760,1142554752,-1975303102468593,-1975301917236486],[1075445760,1142555648,1975301917236486,1975303102468593],[1075478532,524292,13247603855385956,13247605033203059],[1075478532,557056,-26495209915574692,-26495207861603338],[1075478532,688132,-13247605033169427,-13247603855419588],[1075478532,1048580,-13247605033203059,-13247603855385956],[1075478532,1081344,26495207861603338,26495209915574692],[1075478532,1212420,13247603855419588,13247605033169427],[1075478532,1074266112,13247603855419588,13247605033169427],[1075478532,1074397188,26495207861603338,26495209915574692],[1075478532,1074429952,-13247605033203059,-13247603855385956],[1075478532,1074790400,-13247605033169427,-13247603855419588],[1075478532,1074921476,-26495209915574692,-26495207861603338],[1075478532,1074954240,13247603855385956,13247605033203059],[1075478536,557056,1975301917270118,1975303102434961],[1075478536,688136,1975301917270118,1975303102434961],[1075478536,1081344,-1975303102434961,-1975301917270118],[1075478536,1212424,-1975303102434961,-1975301917270118],[1075478536,1074266112,-1975303102434961,-1975301917270118],[1075478536,1074397192,-1975303102434961,-1975301917270118],[1075478536,1074790400,1975301917270118,1975303102434961],[1075478536,1074921480,1975301917270118,1975303102434961],[1075478656,32896,-22544604430576096,-22544603307191776],[1075478656,557056,24519905365967204,24519907391505747],[1075478656,688256,1975301917236486,1975303102468593],[1075478656,1081344,-1975303102468593,-1975301917236486],[1075478656,1212544,-24519907391505747,-24519905365967204],[1075478656,1736704,22544603307191776,22544604430576096],[1075478656,1073741952,22544603307191776,22544604430576096],[1075478656,1074266112,-24519907391505747,-24519905365967204],[1075478656,1074397312,-1975303102468593,-1975301917236486],[1075478656,1074790400,1975301917236486,1975303102468593],[1075478656,1074921600,24519905365967204,24519907391505747],[1075478656,1075445760,-22544604430576096,-22544603307191776],[1075479552,33792,22544603307191776,22544604430576096],[1075479552,689152,22544603307191776,22544604430576096],[1075479552,1081344,-22544604430576096,-22544603307191776],[1075479552,1736704,-22544604430576096,-22544603307191776],[1075479552,1073742848,-22544604430576096,-22544603307191776],[1075479552,1074398208,-22544604430576096,-22544603307191776],[1075479552,1074790400,22544603307191776,22544604430576096],[1075479552,1075445760,22544603307191776,22544604430576096],[1140850688,32772,19173508878057052,19173515069647194],[1140850688,32776,20569296515201551,20569306202861252],[1140850688,131076,20569296515201551,20569306202861252],[1140850688,131080,19173508878057052,19173515069647194],[1140850688,163852,26495207628724032,26495210148454004],[1140850688,524296,11272301474344214,11272302394539722],[1140850688,688132,13247603821617226,13247605066971786],[1140850688,688136,-24519907159915920,-24519905597557028],[1140850688,268435460,1975300784114970,1975304235590111],[1140850688,268435464,-13247606172936084,-13247602715652933],[1140850688,268599300,13247603827010127,13247605061578886],[1140850688,268599304,-1975303130040923,-1975301889664154],[1140850688,1140883460,19173508878057052,19173515069647194],[1140850688,1140883464,20569296515201551,20569306202861252],[1140850688,1140981764,20569296515201551,20569306202861252],[1140850688,1140981768,19173508878057052,19173515069647194],[1140850688,1141014540,26495207628724032,26495210148454004],[1140850688,1141374984,11272301474344214,11272302394539722],[1140850688,1141538820,13247603821617226,13247605066971786],[1140850688,1141538824,-24519907159915920,-24519905597557028],[1140850688,1409286148,1975300784114970,1975304235590111],[1140850688,1409286152,-13247606172936084,-13247602715652933],[1140850688,1409449988,13247603827010127,13247605061578886],[1140850688,1409449992,-1975303130040923,-1975301889664154],[1140850688,17592186044420,1975300718656210,1975304301048867],[1140850688,17592186044424,7321695128457817,7321698701015960],[1140850688,17592186208260,13247603817961795,13247605070627222],[1140850688,17592186208264,-22544604490299392,-22544603247468479],[1140850688,17593326895108,1975300718656210,1975304301048867],[1140850688,17593326895112,7321695128457817,7321698701015960],[1140850688,17593327058948,13247603817961795,13247605070627222],[1140850688,17593327058952,-22544604490299392,-22544603247468479],[1140850688,140737488355332,7321695128457817,7321698701015960],[1140850688,140737488355336,1975300718656210,1975304301048867],[1140850688,140737488519172,-22544604490299392,-22544603247468479],[1140850688,140737488519176,13247603817961795,13247605070627222],[1140850688,140738629206020,7321695128457817,7321698701015960],[1140850688,140738629206024,1975300718656210,1975304301048867],[1140850688,140738629369860,-22544604490299392,-22544603247468479],[1140850688,140738629369864,13247603817961795,13247605070627222],[1140850693,67108865,4648497418040009,4648502006549417],[1140850693,67108868,-4648502006549417,-4648497418040009],[1140850693,67272705,-24519907495012400,-24519905262460552],[1140850693,67272708,24519905262460552,24519907495012400],[1140850693,1073741825,-4648502006549417,-4648497418040009],[1140850693,1073741828,4648497418040009,4648502006549417],[1140850693,1073905665,24519905262460552,24519907495012400],[1140850693,1073905668,-24519907495012400,-24519905262460552],[1140850698,67108866,-4648502006549417,-4648497418040009],[1140850698,67108872,4648497418040009,4648502006549417],[1140850698,67272706,24519905262460552,24519907495012400],[1140850698,67272712,-24519907495012400,-24519905262460552],[1140850698,1073741826,4648497418040009,4648502006549417],[1140850698,1073741832,-4648502006549417,-4648497418040009],[1140850698,1073905666,-24519907495012400,-24519905262460552],[1140850698,1073905672,24519905262460552,24519907495012400],[1140850700,163840,79485623483927954,79485629847606148],[1140850700,67108868,-9297003724271436,-9296995124907418],[1140850700,67108872,9296995124907418,9297003724271436],[1140850700,67272708,98079621396013726,98079629633878072],[1140850700,67272712,-18594006149950118,-18593991548407578],[1140850700,1073741828,9296995124907418,9297003724271436],[1140850700,1073741832,-9297003724271436,-9296995124907418],[1140850700,1073905668,-18594006149950118,-18593991548407578],[1140850700,1073905672,98079621396013726,98079629633878072],[1140850700,1141014540,79485623483927954,79485629847606148],[1140850824,67108872,4648497449753834,4648501974835595],[1140850824,67108992,-4648501974835595,-4648497449753834],[1140850824,67272712,-24519907464403207,-24519905293069738],[1140850824,67272832,24519905293069738,24519907464403207],[1140850824,67764232,-24519907512775874,-24519905244697076],[1140850824,67764352,24519905244697076,24519907512775874],[1140850824,1073741832,-4648501974835595,-4648497449753834],[1140850824,1073741952,4648497449753834,4648501974835595],[1140850824,1073905672,24519905293069738,24519907464403207],[1140850824,1073905792,-24519907464403207,-24519905293069738],[1140850824,1074397192,24519905244697076,24519907512775874],[1140850824,1074397312,-24519907512775874,-24519905244697076],[1140883457,131076,3950603763253824,3950606276156332],[1140883457,163845,28470509805039004,28470512991844104],[1140883457,67108865,4648497893199929,4648501531389499],[1140883457,67108871,4648499082464426,4648500342125002],[1140883457,67108877,1975301912872117,1975303106832961],[1140883457,67141632,-4648501531389499,-4648497893199929],[1140883457,67141638,-4648500342125002,-4648499082464426],[1140883457,67141644,-1975303106832961,-1975301912872117],[1140883457,67239941,-6623803293231701,-6623801151062805],[1140883457,67272708,-17896106343949595,-17896101969228851],[1140883457,268435460,1975301891852867,1975303127852212],[1140883457,268468229,1975301891852867,1975303127852212],[1140883457,1073741825,-4648501531389499,-4648497893199929],[1140883457,1073741831,-4648500342125002,-4648499082464426],[1140883457,1073741837,-1975303106832961,-1975301912872117],[1140883457,1073774592,4648497893199929,4648501531389499],[1140883457,1073774598,4648499082464426,4648500342125002],[1140883457,1073774604,1975301912872117,1975303106832961],[1140883457,1073872901,-17896106343949595,-17896101969228851],[1140883457,1073905668,-6623803293231701,-6623801151062805],[1140883457,1140981764,28470509805039004,28470512991844104],[1140883457,1141014533,3950603763253824,3950606276156332],[1140883457,1409286148,1975301891852867,1975303127852212],[1140883457,1409318917,1975301891852867,1975303127852212],[1140883457,17592186044420,1975301882939439,1975303136765642],[1140883457,17592186077189,1975301882939439,1975303136765642],[1140883457,17593326895108,1975301882939439,1975303136765642],[1140883457,17593326927877,1975301882939439,1975303136765642],[1140883457,140737488355332,-1975303136765642,-1975301882939439],[1140883457,140737488388101,-1975303136765642,-1975301882939439],[1140883457,140738629206020,-1975303136765642,-1975301882939439],[1140883457,140738629238789,-1975303136765642,-1975301882939439],[1140883458,163850,-28470512991844104,-28470509805039004],[1140883458,67108871,-4648500342125002,-4648499082464426],[1140883458,67108878,-1975303106832961,-1975301912872117],[1140883458,67141637,4648499082464426,4648500342125002],[1140883458,67141644,1975301912872117,1975303106832961],[1140883458,67239946,19871405094876730,19871408238006792],[1140883458,67272712,8599101567032212,8599107896967374],[1140883458,1073741831,4648499082464426,4648500342125002],[1140883458,1073741838,1975301912872117,1975303106832961],[1140883458,1073774597,-4648500342125002,-4648499082464426],[1140883458,1073774604,-1975303106832961,-1975301912872117],[1140883458,1073872906,8599101567032212,8599107896967374],[1140883458,1073905672,19871405094876730,19871408238006792],[1140883458,1140981768,-28470512991844104,-28470509805039004],[1140883460,0,11851812927156194,11851817191074274],[1140883460,32772,19173508878057052,19173515069647194],[1140883460,131073,-3950606276156332,-3950603763253824],[1140883460,131080,-3950606208609134,-3950603830801022],[1140883460,163845,-28470512991844104,-28470509805039004],[1140883460,163852,-30445818299541794,-30445809517046374],[1140883460,688132,13247603821617226,13247605066971786],[1140883460,67108868,126278022677218062,126278066975886174],[1140883460,67108877,-6623803293231701,-6623801151062805],[1140883460,67141632,-133599767595705506,-133599715886872508],[1140883460,67141641,6623801151062805,6623803293231701],[1140883460,67239941,6623801151062805,6623803293231701],[1140883460,67239948,39742811571512963,39742815094254094],[1140883460,67272705,17896101969228851,17896106343949595],[1140883460,67272712,-13247609394938084,-13247599493650961],[1140883460,67764228,13247603826989498,13247605061599516],[1140883460,67796992,-26495209977773508,-26495207799404518],[1140883460,268435457,-1975303127852212,-1975301891852867],[1140883460,268435464,-1975303102468593,-1975301917236486],[1140883460,268468229,-1975303127852212,-1975301891852867],[1140883460,268468236,-1975303102468593,-1975301917236486],[1140883460,268566528,1975301917236486,1975303102468593],[1140883460,268599300,15222905744246613,15222908164047479],[1140883460,335675396,39742811633466510,39742815032300530],[1140883460,335708160,-52990419943081622,-52990415611274431],[1140883460,1073741828,-133599767595705506,-133599715886872508],[1140883460,1073741837,6623801151062805,6623803293231701],[1140883460,1073774592,126278022677218062,126278066975886174],[1140883460,1073774601,-6623803293231701,-6623801151062805],[1140883460,1073872901,17896101969228851,17896106343949595],[1140883460,1073872908,-13247609394938084,-13247599493650961],[1140883460,1073905665,6623801151062805,6623803293231701],[1140883460,1073905672,39742811571512963,39742815094254094],[1140883460,1074397188,-26495209977773508,-26495207799404518],[1140883460,1074429952,13247603826989498,13247605061599516],[1140883460,1140850688,19173508878057052,19173515069647194],[1140883460,1140883460,11851812927156194,11851817191074274],[1140883460,1140981761,-28470512991844104,-28470509805039004],[1140883460,1140981768,-30445818299541794,-30445809517046374],[1140883460,1141014533,-3950606276156332,-3950603763253824],[1140883460,1141014540,-3950606208609134,-3950603830801022],[1140883460,1141506048,13247603821617226,13247605066971786],[1140883460,1342308356,-52990419943081622,-52990415611274431],[1140883460,1342341120,39742811633466510,39742815032300530],[1140883460,1409286145,-1975303127852212,-1975301891852867],[1140883460,1409286152,-1975303102468593,-1975301917236486],[1140883460,1409318917,-1975303127852212,-1975301891852867],[1140883460,1409318924,-1975303102468593,-1975301917236486],[1140883460,1409417216,15222905744246613,15222908164047479],[1140883460,1409449988,1975301917236486,1975303102468593],[1140883460,17592186044417,-1975303136765642,-1975301882939439],[1140883460,17592186044424,-1975303111382023,-1975301908323058],[1140883460,17592186077189,-1975303136765642,-1975301882939439],[1140883460,17592186077196,-1975303111382023,-1975301908323058],[1140883460,17592186175488,1975301908323058,1975303111382023],[1140883460,17592186208260,15222905726284853,15222908182009245],[1140883460,17592253284356,39742811584848745,39742815080918304],[1140883460,17592253317120,-52990420000747732,-52990415553608334],[1140883460,17592521588740,26495207784975390,26495209992202640],[1140883460,17592521621504,-26495209992202640,-26495207784975390],[1140883460,17593259917316,-52990420000747732,-52990415553608334],[1140883460,17593259950080,39742811584848745,39742815080918304],[1140883460,17593326895105,-1975303136765642,-1975301882939439],[1140883460,17593326895112,-1975303111382023,-1975301908323058],[1140883460,17593326927877,-1975303136765642,-1975301882939439],[1140883460,17593326927884,-1975303111382023,-1975301908323058],[1140883460,17593327026176,15222905726284853,15222908182009245],[1140883460,17593327058948,1975301908323058,1975303111382023],[1140883460,17593528221700,-26495209992202640,-26495207784975390],[1140883460,17593528254464,26495207784975390,26495209992202640],[1140883460,140737488355329,1975301882939439,1975303136765642],[1140883460,140737488355336,1975301908323058,1975303111382023],[1140883460,140737488388101,1975301882939439,1975303136765642],[1140883460,140737488388108,1975301908323058,1975303111382023],[1140883460,140737488486400,-24519907601681415,-24519905155791537],[1140883460,140737488519172,-1975303111382023,-1975301908323058],[1140883460,140737555595268,-52990420000747732,-52990415553608334],[1140883460,140737555628032,30445811685099399,30445816131488796],[1140883460,140737823899652,-26495209992202640,-26495207784975390],[1140883460,140737823932416,26495207784975390,26495209992202640],[1140883460,140738562228228,30445811685099399,30445816131488796],[1140883460,140738562260992,-52990420000747732,-52990415553608334],[1140883460,140738629206017,1975301882939439,1975303136765642],[1140883460,140738629206024,1975301908323058,1975303111382023],[1140883460,140738629238789,1975301882939439,1975303136765642],[1140883460,140738629238796,1975301908323058,1975303111382023],[1140883460,140738629337088,-1975303111382023,-1975301908323058],[1140883460,140738629369860,-24519907601681415,-24519905155791537],[1140883460,140738830532612,26495207784975390,26495209992202640],[1140883460,140738830565376,-26495209992202640,-26495207784975390],[1140883460,158329741508612,-49039814402932400,-49039811112013498],[1140883460,158329741541376,49039811112013498,49039814402932400],[1140883460,158330748141572,49039811112013498,49039814402932400],[1140883460,158330748174336,-49039814402932400,-49039811112013498],[1140883463,67108865,4648499082464426,4648500342125002],[1140883463,67108866,-4648500342125002,-4648499082464426],[1140883463,67141637,4648499082464426,4648500342125002],[1140883463,67141638,-4648500342125002,-4648499082464426],[1140883463,1073741825,-4648500342125002,-4648499082464426],[1140883463,1073741826,4648499082464426,4648500342125002],[1140883463,1073774597,-4648500342125002,-4648499082464426],[1140883463,1073774598,4648499082464426,4648500342125002],[1140883464,0,33237389706387162,33237395650918114],[1140883464,32776,20569296515201551,20569306202861252],[1140883464,131076,-35792211250117282,-35792205376239611],[1140883464,163850,28470509805039004,28470512991844104],[1140883464,163852,56941019665500378,56941025928265826],[1140883464,163976,28470509691254389,28470513105628714],[1140883464,688136,22544602330282044,22544605407485828],[1140883464,67108872,-7901214462754538,-7901205616065770],[1140883464,67108877,4648499082464426,4648500342125002],[1140883464,67108878,1975301912872117,1975303106832961],[1140883464,67109004,1975301917270118,1975303102434961],[1140883464,67141632,20569293260874416,20569309457188365],[1140883464,67141637,-4648500342125002,-4648499082464426],[1140883464,67141638,-1975303106832961,-1975301912872117],[1140883464,67141764,-1975303102434961,-1975301917270118],[1140883464,67239946,-19871408238006792,-19871405094876730],[1140883464,67239948,-13247609434184624,-13247599454404401],[1140883464,67240072,-19871408304471303,-19871405028412220],[1140883464,67272706,-8599107896967374,-8599101567032212],[1140883464,67272708,-79485631987828172,-79485621343705900],[1140883464,67272832,-8599108077216494,-8599101386783086],[1140883464,67764232,-31143710097470678,-31143707104296780],[1140883464,67796992,8599101696810952,8599107767188634],[1140883464,268435460,1975301917236486,1975303102468593],[1140883464,268468236,1975301917236486,1975303102468593],[1140883464,268566528,47064508673158980,47064511822081843],[1140883464,268599304,-3950608753660642,-3950601285749510],[1140883464,335708160,51015113107831353,51015117426819622],[1140883464,1073741832,20569293260874416,20569309457188365],[1140883464,1073741837,-4648500342125002,-4648499082464426],[1140883464,1073741838,-1975303106832961,-1975301912872117],[1140883464,1073741964,-1975303102434961,-1975301917270118],[1140883464,1073774592,-7901214462754538,-7901205616065770],[1140883464,1073774597,4648499082464426,4648500342125002],[1140883464,1073774598,1975301912872117,1975303106832961],[1140883464,1073774724,1975301917270118,1975303102434961],[1140883464,1073872906,-8599107896967374,-8599101567032212],[1140883464,1073872908,-79485631987828172,-79485621343705900],[1140883464,1073873032,-8599108077216494,-8599101386783086],[1140883464,1073905666,-19871408238006792,-19871405094876730],[1140883464,1073905668,-13247609434184624,-13247599454404401],[1140883464,1073905792,-19871408304471303,-19871405028412220],[1140883464,1074397192,8599101696810952,8599107767188634],[1140883464,1074429952,-31143710097470678,-31143707104296780],[1140883464,1140850688,20569296515201551,20569306202861252],[1140883464,1140883464,33237389706387162,33237395650918114],[1140883464,1140981762,28470509805039004,28470512991844104],[1140883464,1140981764,56941019665500378,56941025928265826],[1140883464,1140981888,28470509691254389,28470513105628714],[1140883464,1141014540,-35792211250117282,-35792205376239611],[1140883464,1141506048,22544602330282044,22544605407485828],[1140883464,1342308360,51015113107831353,51015117426819622],[1140883464,1409286148,1975301917236486,1975303102468593],[1140883464,1409318924,1975301917236486,1975303102468593],[1140883464,1409417216,-3950608753660642,-3950601285749510],[1140883464,1409449992,47064508673158980,47064511822081843],[1140883464,17592186044420,1975301908323058,1975303111382023],[1140883464,17592186077196,1975301908323058,1975303111382023],[1140883464,17592186175488,47064508636712560,47064511858528265],[1140883464,17592186208264,16618692505223764,16618700173428866],[1140883464,17592253317120,30445811685099399,30445816131488796],[1140883464,17593259917320,30445811685099399,30445816131488796],[1140883464,17593326895108,1975301908323058,1975303111382023],[1140883464,17593326927884,1975301908323058,1975303111382023],[1140883464,17593327026176,16618692505223764,16618700173428866],[1140883464,17593327058952,47064508636712560,47064511858528265],[1140883464,140737488355332,-1975303111382023,-1975301908323058],[1140883464,140737488388108,-1975303111382023,-1975301908323058],[1140883464,140737488486400,-7321700273679520,-7321693555794256],[1140883464,140737488519176,-47064511858528265,-47064508636712560],[1140883464,140737555595272,39742811584848745,39742815080918304],[1140883464,140738562260992,39742811584848745,39742815080918304],[1140883464,140738629206020,-1975303111382023,-1975301908323058],[1140883464,140738629238796,-1975303111382023,-1975301908323058],[1140883464,140738629337088,-47064511858528265,-47064508636712560],[1140883464,140738629369864,-7321700273679520,-7321693555794256],[1140883469,67108865,1975301912872117,1975303106832961],[1140883469,67108868,-6623803293231701,-6623801151062805],[1140883469,67108872,4648499082464426,4648500342125002],[1140883469,67141637,-4648500342125002,-4648499082464426],[1140883469,67141641,6623801151062805,6623803293231701],[1140883469,67141644,-1975303106832961,-1975301912872117],[1140883469,1073741825,-1975303106832961,-1975301912872117],[1140883469,1073741828,6623801151062805,6623803293231701],[1140883469,1073741832,-4648500342125002,-4648499082464426],[1140883469,1073774597,4648499082464426,4648500342125002],[1140883469,1073774601,-6623803293231701,-6623801151062805],[1140883469,1073774604,1975301912872117,1975303106832961],[1140883470,67108866,-1975303106832961,-1975301912872117],[1140883470,67108872,1975301912872117,1975303106832961],[1140883470,67141638,-1975303106832961,-1975301912872117],[1140883470,67141644,1975301912872117,1975303106832961],[1140883470,1073741826,1975301912872117,1975303106832961],[1140883470,1073741832,-1975303106832961,-1975301912872117],[1140883470,1073774598,1975301912872117,1975303106832961],[1140883470,1073774604,-1975303106832961,-1975301912872117],[1140883584,163976,-28470513105628714,-28470509691254389],[1140883584,688256,-49039814461219948,-49039811053725950],[1140883584,67109004,-1975303102434961,-1975301917270118],[1140883584,67141644,1975301917270118,1975303102434961],[1140883584,67240072,19871405028412220,19871408304471303],[1140883584,67272712,8599101386783086,8599108077216494],[1140883584,67764352,37767509188400696,37767512457661269],[1140883584,67796992,11272298596064681,11272305272819252],[1140883584,268992640,-1975303130061553,-1975301889643525],[1140883584,336101376,1975301889643525,1975303130061553],[1140883584,1073741964,1975301917270118,1975303102434961],[1140883584,1073774604,-1975303102434961,-1975301917270118],[1140883584,1073873032,8599101386783086,8599108077216494],[1140883584,1073905672,19871405028412220,19871408304471303],[1140883584,1074397312,11272298596064681,11272305272819252],[1140883584,1074429952,37767509188400696,37767512457661269],[1140883584,1140981768,-28470513105628714,-28470509691254389],[1140883584,1141506048,-49039814461219948,-49039811053725950],[1140883584,1342701696,1975301889643525,1975303130061553],[1140883584,1409810432,-1975303130061553,-1975301889643525],[1140883596,67108872,1975301917270118,1975303102434961],[1140883596,67108992,-1975303102434961,-1975301917270118],[1140883596,67141644,1975301917270118,1975303102434961],[1140883596,67141764,-1975303102434961,-1975301917270118],[1140883596,1073741832,-1975303102434961,-1975301917270118],[1140883596,1073741952,1975301917270118,1975303102434961],[1140883596,1073774604,-1975303102434961,-1975301917270118],[1140883596,1073774724,1975301917270118,1975303102434961],[1140981761,163845,-28470512991844104,-28470509805039004],[1140981761,67108875,4648499082464426,4648500342125002],[1140981761,67108877,1975301912872117,1975303106832961],[1140981761,67141637,8599101567032212,8599107896967374],[1140981761,67239946,-4648500342125002,-4648499082464426],[1140981761,67239948,-1975303106832961,-1975301912872117],[1140981761,67272708,19871405094876730,19871408238006792],[1140981761,1073741835,-4648500342125002,-4648499082464426],[1140981761,1073741837,-1975303106832961,-1975301912872117],[1140981761,1073774597,19871405094876730,19871408238006792],[1140981761,1073872906,4648499082464426,4648500342125002],[1140981761,1073872908,1975301912872117,1975303106832961],[1140981761,1073905668,8599101567032212,8599107896967374],[1140981761,1140883460,-28470512991844104,-28470509805039004],[1140981762,32776,3950603763253824,3950606276156332],[1140981762,163850,28470509805039004,28470512991844104],[1140981762,67108866,-4648501531389499,-4648497893199929],[1140981762,67108875,-4648500342125002,-4648499082464426],[1140981762,67108878,-1975303106832961,-1975301912872117],[1140981762,67108938,-4648500367050864,-4648499057538562],[1140981762,67109002,-1975303161793801,-1975301857911278],[1140981762,67141642,-17896106343949595,-17896101969228851],[1140981762,67239936,4648497893199929,4648501531389499],[1140981762,67239945,4648499082464426,4648500342125002],[1140981762,67239948,1975301912872117,1975303106832961],[1140981762,67240008,4648499057538562,4648500367050864],[1140981762,67240072,1975301857911278,1975303161793801],[1140981762,67272712,-6623803293231701,-6623801151062805],[1140981762,67633162,6623801086208550,6623803358085955],[1140981762,67764232,-6623803358085955,-6623801086208550],[1140981762,268435464,-1975303127852212,-1975301891852867],[1140981762,268566538,-1975303127852212,-1975301891852867],[1140981762,1073741826,4648497893199929,4648501531389499],[1140981762,1073741835,4648499082464426,4648500342125002],[1140981762,1073741838,1975301912872117,1975303106832961],[1140981762,1073741898,4648499057538562,4648500367050864],[1140981762,1073741962,1975301857911278,1975303161793801],[1140981762,1073774602,-6623803293231701,-6623801151062805],[1140981762,1073872896,-4648501531389499,-4648497893199929],[1140981762,1073872905,-4648500342125002,-4648499082464426],[1140981762,1073872908,-1975303106832961,-1975301912872117],[1140981762,1073872968,-4648500367050864,-4648499057538562],[1140981762,1073873032,-1975303161793801,-1975301857911278],[1140981762,1073905672,-17896106343949595,-17896101969228851],[1140981762,1074266122,-6623803358085955,-6623801086208550],[1140981762,1074397192,6623801086208550,6623803358085955],[1140981762,1140883464,28470509805039004,28470512991844104],[1140981762,1141014538,3950603763253824,3950606276156332],[1140981762,1409286152,-1975303127852212,-1975301891852867],[1140981762,1409417226,-1975303127852212,-1975301891852867],[1140981762,17592186044424,-1975303136765642,-1975301882939439],[1140981762,17592186175498,-1975303136765642,-1975301882939439],[1140981762,17593326895112,-1975303136765642,-1975301882939439],[1140981762,17593327026186,-1975303136765642,-1975301882939439],[1140981762,140737488355336,1975301882939439,1975303136765642],[1140981762,140737488486410,1975301882939439,1975303136765642],[1140981762,140738629206024,1975301882939439,1975303136765642],[1140981762,140738629337098,1975301882939439,1975303136765642],[1140981764,0,33237389706387162,33237395650918114],[1140981764,32776,-35792211250117282,-35792205376239611],[1140981764,131076,20569296515201551,20569306202861252],[1140981764,163845,28470509805039004,28470512991844104],[1140981764,163852,56941019665500378,56941025928265826],[1140981764,557056,-39742815032279900,-39742811633487139],[1140981764,67108868,20569293260874416,20569309457188365],[1140981764,67108877,-1975303106832961,-1975301912872117],[1140981764,67108878,-4648500342125002,-4648499082464426],[1140981764,67109004,-4648500337588616,-4648499087000812],[1140981764,67141637,-8599107896967374,-8599101567032212],[1140981764,67141644,-79485631987828172,-79485621343705900],[1140981764,67239936,-7901214462754538,-7901205616065770],[1140981764,67239945,1975301912872117,1975303106832961],[1140981764,67239946,4648499082464426,4648500342125002],[1140981764,67240072,4648499087000812,4648500337588616],[1140981764,67272705,-19871408238006792,-19871405094876730],[1140981764,67272712,-13247609434184624,-13247599454404401],[1140981764,67633164,6623801159997192,6623803284297315],[1140981764,67665924,-51015117307080439,-51015113227570542],[1140981764,67764232,-6623803284297315,-6623801159997192],[1140981764,67796992,11272298195290642,11272305673593300],[1140981764,268435464,-1975303102468593,-1975301917236486],[1140981764,268468224,-7321700188594704,-7321693640879080],[1140981764,268566540,-1975303102468593,-1975301917236486],[1140981764,268599300,-47064511822081843,-47064508673158980],[1140981764,335708160,39742811633487139,39742815032279900],[1140981764,1073741828,-7901214462754538,-7901205616065770],[1140981764,1073741837,1975301912872117,1975303106832961],[1140981764,1073741838,4648499082464426,4648500342125002],[1140981764,1073741964,4648499087000812,4648500337588616],[1140981764,1073774597,-19871408238006792,-19871405094876730],[1140981764,1073774604,-13247609434184624,-13247599454404401],[1140981764,1073872896,20569293260874416,20569309457188365],[1140981764,1073872905,-1975303106832961,-1975301912872117],[1140981764,1073872906,-4648500342125002,-4648499082464426],[1140981764,1073873032,-4648500337588616,-4648499087000812],[1140981764,1073905665,-8599107896967374,-8599101567032212],[1140981764,1073905672,-79485631987828172,-79485621343705900],[1140981764,1074266124,-6623803284297315,-6623801159997192],[1140981764,1074298884,11272298195290642,11272305673593300],[1140981764,1074397192,6623801159997192,6623803284297315],[1140981764,1074429952,-51015117307080439,-51015113227570542],[1140981764,1140850688,20569296515201551,20569306202861252],[1140981764,1140883457,28470509805039004,28470512991844104],[1140981764,1140883464,56941019665500378,56941025928265826],[1140981764,1140981764,33237389706387162,33237395650918114],[1140981764,1141014540,-35792211250117282,-35792205376239611],[1140981764,1141538820,-39742815032279900,-39742811633487139],[1140981764,1342210052,39742811633487139,39742815032279900],[1140981764,1409286152,-1975303102468593,-1975301917236486],[1140981764,1409318912,-47064511822081843,-47064508673158980],[1140981764,1409417228,-1975303102468593,-1975301917236486],[1140981764,1409449988,-7321700188594704,-7321693640879080],[1140981764,17592186044424,-1975303111382023,-1975301908323058],[1140981764,17592186077184,-7321700273679520,-7321693555794256],[1140981764,17592186175500,-1975303111382023,-1975301908323058],[1140981764,17592186208260,-47064511858528265,-47064508636712560],[1140981764,17592253317120,39742811584848745,39742815080918304],[1140981764,17593259819012,39742811584848745,39742815080918304],[1140981764,17593326895112,-1975303111382023,-1975301908323058],[1140981764,17593326927872,-47064511858528265,-47064508636712560],[1140981764,17593327026188,-1975303111382023,-1975301908323058],[1140981764,17593327058948,-7321700273679520,-7321693555794256],[1140981764,140737488355336,1975301908323058,1975303111382023],[1140981764,140737488388096,47064508636712560,47064511858528265],[1140981764,140737488486412,1975301908323058,1975303111382023],[1140981764,140737488519172,16618692505223764,16618700173428866],[1140981764,140737555496964,30445811685099399,30445816131488796],[1140981764,140738562260992,30445811685099399,30445816131488796],[1140981764,140738629206024,1975301908323058,1975303111382023],[1140981764,140738629238784,16618692505223764,16618700173428866],[1140981764,140738629337100,1975301908323058,1975303111382023],[1140981764,140738629369860,47064508636712560,47064511858528265],[1140981768,0,11851812927156194,11851817191074274],[1140981768,32770,-3950606276156332,-3950603763253824],[1140981768,32772,-3950606208609134,-3950603830801022],[1140981768,32896,-3950606255025060,-3950603784385098],[1140981768,131080,19173508878057052,19173515069647194],[1140981768,163850,-28470512991844104,-28470509805039004],[1140981768,163852,-30445818299541794,-30445809517046374],[1140981768,163976,-28470513105628714,-28470509691254389],[1140981768,557056,5925906132510585,5925908926604650],[1140981768,688136,1975300962522527,1975304057182551],[1140981768,67108872,-133599767595705506,-133599715886872508],[1140981768,67108878,6623801151062805,6623803293231701],[1140981768,67109002,6623801086208550,6623803358085955],[1140981768,67109004,6623801159997192,6623803284297315],[1140981768,67141642,17896101969228851,17896106343949595],[1140981768,67141644,-13247609394938084,-13247599493650961],[1140981768,67141768,17896102008772423,17896106304406015],[1140981768,67239936,126278022677218062,126278066975886174],[1140981768,67239942,-6623803293231701,-6623801151062805],[1140981768,67240066,-6623803358085955,-6623801086208550],[1140981768,67240068,-6623803284297315,-6623801159997192],[1140981768,67272706,6623801151062805,6623803293231701],[1140981768,67272708,39742811571512963,39742815094254094],[1140981768,67272832,6623801159997192,6623803284297315],[1140981768,67633162,-6623803358085955,-6623801086208550],[1140981768,67633164,-6623803284297315,-6623801159997192],[1140981768,67633288,-19871408457827235,-19871404875056286],[1140981768,67665928,10574405092145006,10574409391559659],[1140981768,67764226,6623801086208550,6623803358085955],[1140981768,67764228,6623801159997192,6623803284297315],[1140981768,67764352,19871404875056286,19871408457827235],[1140981768,67796992,-6623804212490749,-6623800231803759],[1140981768,268435458,1975301891852867,1975303127852212],[1140981768,268435460,1975301917236486,1975303102468593],[1140981768,268435584,1975301885638544,1975303134066536],[1140981768,268468224,-3950606232509516,-3950603806900640],[1140981768,268566538,1975301891852867,1975303127852212],[1140981768,268566540,1975301917236486,1975303102468593],[1140981768,268566664,1975301885638544,1975303134066536],[1140981768,268599304,-1975303102468593,-1975301917236486],[1140981768,268959744,-1975303134066536,-1975301885638544],[1140981768,269090824,-1975303134066536,-1975301885638544],[1140981768,335577096,51015113107810724,51015117426840252],[1140981768,335708160,-52990419943081622,-52990415611274431],[1140981768,1073741832,126278022677218062,126278066975886174],[1140981768,1073741838,-6623803293231701,-6623801151062805],[1140981768,1073741962,-6623803358085955,-6623801086208550],[1140981768,1073741964,-6623803284297315,-6623801159997192],[1140981768,1073774602,6623801151062805,6623803293231701],[1140981768,1073774604,39742811571512963,39742815094254094],[1140981768,1073774728,6623801159997192,6623803284297315],[1140981768,1073872896,-133599767595705506,-133599715886872508],[1140981768,1073872902,6623801151062805,6623803293231701],[1140981768,1073873026,6623801086208550,6623803358085955],[1140981768,1073873028,6623801159997192,6623803284297315],[1140981768,1073905666,17896101969228851,17896106343949595],[1140981768,1073905668,-13247609394938084,-13247599493650961],[1140981768,1073905792,17896102008772423,17896106304406015],[1140981768,1074266122,6623801086208550,6623803358085955],[1140981768,1074266124,6623801159997192,6623803284297315],[1140981768,1074266248,19871404875056286,19871408457827235],[1140981768,1074298888,-6623804212490749,-6623800231803759],[1140981768,1074397186,-6623803358085955,-6623801086208550],[1140981768,1074397188,-6623803284297315,-6623801159997192],[1140981768,1074397312,-19871408457827235,-19871404875056286],[1140981768,1074429952,10574405092145006,10574409391559659],[1140981768,1140850688,19173508878057052,19173515069647194],[1140981768,1140883458,-28470512991844104,-28470509805039004],[1140981768,1140883460,-30445818299541794,-30445809517046374],[1140981768,1140883584,-28470513105628714,-28470509691254389],[1140981768,1140981768,11851812927156194,11851817191074274],[1140981768,1141014538,-3950606276156332,-3950603763253824],[1140981768,1141014540,-3950606208609134,-3950603830801022],[1140981768,1141014664,-3950606255025060,-3950603784385098],[1140981768,1141407744,1975300962522527,1975304057182551],[1140981768,1141538824,5925906132510585,5925908926604650],[1140981768,1342210056,-52990419943081622,-52990415611274431],[1140981768,1342341120,51015113107810724,51015117426840252],[1140981768,1409286146,1975301891852867,1975303127852212],[1140981768,1409286148,1975301917236486,1975303102468593],[1140981768,1409286272,1975301885638544,1975303134066536],[1140981768,1409318912,-1975303102468593,-1975301917236486],[1140981768,1409417226,1975301891852867,1975303127852212],[1140981768,1409417228,1975301917236486,1975303102468593],[1140981768,1409417352,1975301885638544,1975303134066536],[1140981768,1409449992,-3950606232509516,-3950603806900640],[1140981768,1409810432,-1975303134066536,-1975301885638544],[1140981768,1409941512,-1975303134066536,-1975301885638544],[1140981768,17592186044418,1975301882939439,1975303136765642],[1140981768,17592186044420,1975301908323058,1975303111382023],[1140981768,17592186044544,1975301885115096,1975303134589986],[1140981768,17592186077184,-24519907601681415,-24519905155791537],[1140981768,17592186175498,1975301882939439,1975303136765642],[1140981768,17592186175500,1975301908323058,1975303111382023],[1140981768,17592186175624,1975301885115096,1975303134589986],[1140981768,17592186208264,-1975303111382023,-1975301908323058],[1140981768,17592186568704,-1975303134589986,-1975301885115096],[1140981768,17592186699784,-1975303134589986,-1975301885115096],[1140981768,17592253186056,30445811685099399,30445816131488796],[1140981768,17592253317120,-52990420000747732,-52990415553608334],[1140981768,17592521588744,-26495209992202640,-26495207784975390],[1140981768,17592521719808,26495207784975390,26495209992202640],[1140981768,17593259819016,-52990420000747732,-52990415553608334],[1140981768,17593259950080,30445811685099399,30445816131488796],[1140981768,17593326895106,1975301882939439,1975303136765642],[1140981768,17593326895108,1975301908323058,1975303111382023],[1140981768,17593326895232,1975301885115096,1975303134589986],[1140981768,17593326927872,-1975303111382023,-1975301908323058],[1140981768,17593327026186,1975301882939439,1975303136765642],[1140981768,17593327026188,1975301908323058,1975303111382023],[1140981768,17593327026312,1975301885115096,1975303134589986],[1140981768,17593327058952,-24519907601681415,-24519905155791537],[1140981768,17593327419392,-1975303134589986,-1975301885115096],[1140981768,17593327550472,-1975303134589986,-1975301885115096],[1140981768,17593528221704,26495207784975390,26495209992202640],[1140981768,17593528352768,-26495209992202640,-26495207784975390],[1140981768,140737488355330,-1975303136765642,-1975301882939439],[1140981768,140737488355332,-1975303111382023,-1975301908323058],[1140981768,140737488355456,-1975303134589986,-1975301885115096],[1140981768,140737488388096,1975301908323058,1975303111382023],[1140981768,140737488486410,-1975303136765642,-1975301882939439],[1140981768,140737488486412,-1975303111382023,-1975301908323058],[1140981768,140737488486536,-1975303134589986,-1975301885115096],[1140981768,140737488519176,15222905726284853,15222908182009245],[1140981768,140737488879616,1975301885115096,1975303134589986],[1140981768,140737489010696,1975301885115096,1975303134589986],[1140981768,140737555496968,-52990420000747732,-52990415553608334],[1140981768,140737555628032,39742811584848745,39742815080918304],[1140981768,140737823899656,26495207784975390,26495209992202640],[1140981768,140737824030720,-26495209992202640,-26495207784975390],[1140981768,140738562129928,39742811584848745,39742815080918304],[1140981768,140738562260992,-52990420000747732,-52990415553608334],[1140981768,140738629206018,-1975303136765642,-1975301882939439],[1140981768,140738629206020,-1975303111382023,-1975301908323058],[1140981768,140738629206144,-1975303134589986,-1975301885115096],[1140981768,140738629238784,15222905726284853,15222908182009245],[1140981768,140738629337098,-1975303136765642,-1975301882939439],[1140981768,140738629337100,-1975303111382023,-1975301908323058],[1140981768,140738629337224,-1975303134589986,-1975301885115096],[1140981768,140738629369864,1975301908323058,1975303111382023],[1140981768,140738629730304,1975301885115096,1975303134589986],[1140981768,140738629861384,1975301885115096,1975303134589986],[1140981768,140738830532616,-26495209992202640,-26495207784975390],[1140981768,140738830663680,26495207784975390,26495209992202640],[1140981768,158329741508616,49039811112013498,49039814402932400],[1140981768,158329741639680,-49039814402932400,-49039811112013498],[1140981768,158330748141576,-49039814402932400,-49039811112013498],[1140981768,158330748272640,49039811112013498,49039814402932400],[1140981771,67108865,4648499082464426,4648500342125002],[1140981771,67108866,-4648500342125002,-4648499082464426],[1140981771,67239945,4648499082464426,4648500342125002],[1140981771,67239946,-4648500342125002,-4648499082464426],[1140981771,1073741825,-4648500342125002,-4648499082464426],[1140981771,1073741826,4648499082464426,4648500342125002],[1140981771,1073872905,-4648500342125002,-4648499082464426],[1140981771,1073872906,4648499082464426,4648500342125002],[1140981773,67108865,1975301912872117,1975303106832961],[1140981773,67108868,-1975303106832961,-1975301912872117],[1140981773,67239945,1975301912872117,1975303106832961],[1140981773,67239948,-1975303106832961,-1975301912872117],[1140981773,1073741825,-1975303106832961,-1975301912872117],[1140981773,1073741828,1975301912872117,1975303106832961],[1140981773,1073872905,-1975303106832961,-1975301912872117],[1140981773,1073872908,1975301912872117,1975303106832961],[1140981774,67108866,-1975303106832961,-1975301912872117],[1140981774,67108868,-4648500342125002,-4648499082464426],[1140981774,67108872,6623801151062805,6623803293231701],[1140981774,67239942,-6623803293231701,-6623801151062805],[1140981774,67239946,4648499082464426,4648500342125002],[1140981774,67239948,1975301912872117,1975303106832961],[1140981774,1073741826,1975301912872117,1975303106832961],[1140981774,1073741828,4648499082464426,4648500342125002],[1140981774,1073741832,-6623803293231701,-6623801151062805],[1140981774,1073872902,6623801151062805,6623803293231701],[1140981774,1073872906,-4648500342125002,-4648499082464426],[1140981774,1073872908,-1975303106832961,-1975301912872117],[1140981824,67108938,4648499057538562,4648500367050864],[1140981824,67109064,1975301857911278,1975303161793801],[1140981824,67239946,-4648500367050864,-4648499057538562],[1140981824,67240072,-1975303161793801,-1975301857911278],[1140981824,67633344,-13247605096148654,-13247603792440361],[1140981824,67764352,13247603792440361,13247605096148654],[1140981824,1073741898,-4648500367050864,-4648499057538562],[1140981824,1073742024,-1975303161793801,-1975301857911278],[1140981824,1073872906,4648499057538562,4648500367050864],[1140981824,1073873032,1975301857911278,1975303161793801],[1140981824,1074266304,13247603792440361,13247605096148654],[1140981824,1074397312,-13247605096148654,-13247603792440361],[1140981834,67108866,-4648500367050864,-4648499057538562],[1140981834,67108928,4648499057538562,4648500367050864],[1140981834,67239946,-4648500367050864,-4648499057538562],[1140981834,67240008,4648499057538562,4648500367050864],[1140981834,1073741826,4648499057538562,4648500367050864],[1140981834,1073741888,-4648500367050864,-4648499057538562],[1140981834,1073872906,4648499057538562,4648500367050864],[1140981834,1073872968,-4648500367050864,-4648499057538562],[1140981888,32776,3950603784385098,3950606255025060],[1140981888,163976,28470509691254389,28470513105628714],[1140981888,557056,45089206509306108,45089208966229632],[1140981888,688256,49039811053725950,49039814461219948],[1140981888,67108992,8599101131740910,8599108332258679],[1140981888,67109002,-4648500367050864,-4648499057538562],[1140981888,67109004,-1975303102434961,-1975301917270118],[1140981888,67109064,-1975303161793801,-1975301857911278],[1140981888,67110024,-4648500337588616,-4648499087000812],[1140981888,67141768,-17896106304406015,-17896102008772423],[1140981888,67239936,-8599108332258679,-8599101131740910],[1140981888,67239946,4648499057538562,4648500367050864],[1140981888,67239948,1975301917270118,1975303102434961],[1140981888,67240008,1975301857911278,1975303161793801],[1140981888,67240968,4648499087000812,4648500337588616],[1140981888,67272712,-6623803284297315,-6623801159997192],[1140981888,67633288,-8599108332258679,-8599101131740910],[1140981888,67633344,13247603792440361,13247605096148654],[1140981888,67634304,13247603822433492,13247605066155522],[1140981888,67666048,-15222909102306755,-15222904805987338],[1140981888,67764232,8599101131740910,8599108332258679],[1140981888,67764288,-13247605096148654,-13247603792440361],[1140981888,67765248,-13247605066155522,-13247603822433492],[1140981888,67796992,11272300873839524,11272302995044411],[1140981888,68681856,-1975303102468593,-1975301917236486],[1140981888,68812800,1975301917236486,1975303102468593],[1140981888,268435464,-1975303134066536,-1975301885638544],[1140981888,268566664,-1975303134066536,-1975301885638544],[1140981888,268959744,-22544604485915178,-22544603251852693],[1140981888,269090944,-20569302596271653,-20569300121791140],[1140981888,336068736,24519904610140814,24519908147332138],[1140981888,336199680,-26495210190850288,-26495207586327742],[1140981888,1073741952,-8599108332258679,-8599101131740910],[1140981888,1073741962,4648499057538562,4648500367050864],[1140981888,1073741964,1975301917270118,1975303102434961],[1140981888,1073742024,1975301857911278,1975303161793801],[1140981888,1073742984,4648499087000812,4648500337588616],[1140981888,1073774728,-6623803284297315,-6623801159997192],[1140981888,1073872896,8599101131740910,8599108332258679],[1140981888,1073872906,-4648500367050864,-4648499057538562],[1140981888,1073872908,-1975303102434961,-1975301917270118],[1140981888,1073872968,-1975303161793801,-1975301857911278],[1140981888,1073873928,-4648500337588616,-4648499087000812],[1140981888,1073905672,-17896106304406015,-17896102008772423],[1140981888,1074266248,8599101131740910,8599108332258679],[1140981888,1074266304,-13247605096148654,-13247603792440361],[1140981888,1074267264,-13247605066155522,-13247603822433492],[1140981888,1074299008,11272300873839524,11272302995044411],[1140981888,1074397192,-8599108332258679,-8599101131740910],[1140981888,1074397248,13247603792440361,13247605096148654],[1140981888,1074398208,13247603822433492,13247605066155522],[1140981888,1074429952,-15222909102306755,-15222904805987338],[1140981888,1075314816,1975301917236486,1975303102468593],[1140981888,1075445760,-1975303102468593,-1975301917236486],[1140981888,1140883464,28470509691254389,28470513105628714],[1140981888,1141014664,3950603784385098,3950606255025060],[1140981888,1141407744,49039811053725950,49039814461219948],[1140981888,1141538944,45089206509306108,45089208966229632],[1140981888,1342701696,-26495210190850288,-26495207586327742],[1140981888,1342832640,24519904610140814,24519908147332138],[1140981888,1409286152,-1975303134066536,-1975301885638544],[1140981888,1409417352,-1975303134066536,-1975301885638544],[1140981888,1409810432,-20569302596271653,-20569300121791140],[1140981888,1409941632,-22544604485915178,-22544603251852693],[1140981888,17592186044424,-1975303134589986,-1975301885115096],[1140981888,17592186175624,-1975303134589986,-1975301885115096],[1140981888,17592186568704,-22544604497985104,-22544603239782766],[1140981888,17592186699904,-22544604497985104,-22544603239782766],[1140981888,17593326895112,-1975303134589986,-1975301885115096],[1140981888,17593327026312,-1975303134589986,-1975301885115096],[1140981888,17593327419392,-22544604497985104,-22544603239782766],[1140981888,17593327550592,-22544604497985104,-22544603239782766],[1140981888,140737488355336,1975301885115096,1975303134589986],[1140981888,140737488486536,1975301885115096,1975303134589986],[1140981888,140737488879616,22544603239782766,22544604497985104],[1140981888,140737489010816,22544603239782766,22544604497985104],[1140981888,140738629206024,1975301885115096,1975303134589986],[1140981888,140738629337224,1975301885115096,1975303134589986],[1140981888,140738629730304,22544603239782766,22544604497985104],[1140981888,140738629861504,22544603239782766,22544604497985104],[1140981898,67108866,-1975303161793801,-1975301857911278],[1140981898,67108872,6623801086208550,6623803358085955],[1140981898,67108992,-4648500367050864,-4648499057538562],[1140981898,67239946,4648499057538562,4648500367050864],[1140981898,67240066,-6623803358085955,-6623801086208550],[1140981898,67240072,1975301857911278,1975303161793801],[1140981898,1073741826,1975301857911278,1975303161793801],[1140981898,1073741832,-6623803358085955,-6623801086208550],[1140981898,1073741952,4648499057538562,4648500367050864],[1140981898,1073872906,-4648500367050864,-4648499057538562],[1140981898,1073873026,6623801086208550,6623803358085955],[1140981898,1073873032,-1975303161793801,-1975301857911278],[1140981900,67108868,-4648500337588616,-4648499087000812],[1140981900,67108872,6623801159997192,6623803284297315],[1140981900,67108992,-1975303102434961,-1975301917270118],[1140981900,67239948,1975301917270118,1975303102434961],[1140981900,67240068,-6623803284297315,-6623801159997192],[1140981900,67240072,4648499087000812,4648500337588616],[1140981900,1073741828,4648499087000812,4648500337588616],[1140981900,1073741832,-6623803284297315,-6623801159997192],[1140981900,1073741952,1975301917270118,1975303102434961],[1140981900,1073872908,-1975303102434961,-1975301917270118],[1140981900,1073873028,6623801159997192,6623803284297315],[1140981900,1073873032,-4648500337588616,-4648499087000812],[1140981960,67108928,1975301857911278,1975303161793801],[1140981960,67108992,-1975303161793801,-1975301857911278],[1140981960,67240008,1975301857911278,1975303161793801],[1140981960,67240072,-1975303161793801,-1975301857911278],[1140981960,1073741888,-1975303161793801,-1975301857911278],[1140981960,1073741952,1975301857911278,1975303161793801],[1140981960,1073872968,-1975303161793801,-1975301857911278],[1140981960,1073873032,1975301857911278,1975303161793801],[1140982784,67110024,4648499087000812,4648500337588616],[1140982784,67240072,-4648500337588616,-4648499087000812],[1140982784,67634304,-13247605066155522,-13247603822433492],[1140982784,67764352,13247603822433492,13247605066155522],[1140982784,68682752,1975301917236486,1975303102468593],[1140982784,68812800,-1975303102468593,-1975301917236486],[1140982784,1073742984,-4648500337588616,-4648499087000812],[1140982784,1073873032,4648499087000812,4648500337588616],[1140982784,1074267264,13247603822433492,13247605066155522],[1140982784,1074397312,-13247605066155522,-13247603822433492],[1140982784,1075315712,-1975303102468593,-1975301917236486],[1140982784,1075445760,1975301917236486,1975303102468593],[1140982920,67108992,-4648500337588616,-4648499087000812],[1140982920,67109888,4648499087000812,4648500337588616],[1140982920,67240072,-4648500337588616,-4648499087000812],[1140982920,67240968,4648499087000812,4648500337588616],[1140982920,1073741952,4648499087000812,4648500337588616],[1140982920,1073742848,-4648500337588616,-4648499087000812],[1140982920,1073873032,4648499087000812,4648500337588616],[1140982920,1073873928,-4648500337588616,-4648499087000812],[1141014528,12,26495207616089156,26495210161088876],[1141014528,524292,26495207655679218,26495210121498808],[1141014528,688136,-49039814910578252,-49039810604367646],[1141014528,67141644,56941019780492396,56941025813273826],[1141014528,67239948,-30445818197184670,-30445809619403520],[1141014528,67665924,52990415723206676,52990419831149384],[1141014528,67665928,-3950609226781738,-3950600812628424],[1141014528,67764228,-26495212175470166,-26495205601707868],[1141014528,67764232,52990415723206676,52990419831149384],[1141014528,268435460,18593996492884744,18594001205472974],[1141014528,268435464,-45089208861152192,-45089206614383552],[1141014528,268599300,45089206614383552,45089208861152192],[1141014528,268599304,3950601743215454,3950608296194700],[1141014528,335577096,-49039814910578252,-49039810604367646],[1141014528,335675396,-26495210121498808,-26495207655679218],[1141014528,1073774604,-30445818197184670,-30445809619403520],[1141014528,1073872908,56941019780492396,56941025813273826],[1141014528,1074298884,-26495212175470166,-26495205601707868],[1141014528,1074298888,52990415723206676,52990419831149384],[1141014528,1074397188,52990415723206676,52990419831149384],[1141014528,1074397192,-3950609226781738,-3950600812628424],[1141014528,1141014540,26495207616089156,26495210161088876],[1141014528,1141374984,-49039814910578252,-49039810604367646],[1141014528,1141538820,26495207655679218,26495210121498808],[1141014528,1342210052,-26495210121498808,-26495207655679218],[1141014528,1342308360,-49039814910578252,-49039810604367646],[1141014528,1409286148,45089206614383552,45089208861152192],[1141014528,1409286152,3950601743215454,3950608296194700],[1141014528,1409449988,18593996492884744,18594001205472974],[1141014528,1409449992,-45089208861152192,-45089206614383552],[1141014528,17592186044420,18593996425761684,18594001272596028],[1141014528,17592186044424,-45089208888685184,-45089206586850560],[1141014528,17592186208260,45089206586850560,45089208888685184],[1141014528,17592186208264,-37188001072094720,-37187994324620700],[1141014528,17592253186056,-7901212262229860,-7901207816590464],[1141014528,17592253284356,-26495210161088876,-26495207616089156],[1141014528,17593259819012,-26495210161088876,-26495207616089156],[1141014528,17593259917320,-7901212262229860,-7901207816590464],[1141014528,17593326895108,45089206586850560,45089208888685184],[1141014528,17593326895112,-37188001072094720,-37187994324620700],[1141014528,17593327058948,18593996425761684,18594001272596028],[1141014528,17593327058952,-45089208888685184,-45089206586850560],[1141014528,140737488355332,-45089208888685184,-45089206586850560],[1141014528,140737488355336,18593996425761684,18594001272596028],[1141014528,140737488519172,-37188001072094720,-37187994324620700],[1141014528,140737488519176,45089206586850560,45089208888685184],[1141014528,140737555496964,-7901212262229860,-7901207816590464],[1141014528,140737555595272,-26495210161088876,-26495207616089156],[1141014528,140738562129928,-26495210161088876,-26495207616089156],[1141014528,140738562228228,-7901212262229860,-7901207816590464],[1141014528,140738629206020,-37188001072094720,-37187994324620700],[1141014528,140738629206024,45089206586850560,45089208888685184],[1141014528,140738629369860,-45089208888685184,-45089206586850560],[1141014528,140738629369864,18593996425761684,18594001272596028],[1141014533,131073,-3950606276156332,-3950603763253824],[1141014533,131076,3950603763253824,3950606276156332],[1141014533,67108865,-22544606311881030,-22544601425886842],[1141014533,67108868,22544601425886842,22544606311881030],[1141014533,67272705,-26495210075134854,-26495207702043174],[1141014533,67272708,26495207702043174,26495210075134854],[1141014533,1073741825,26495207702043174,26495210075134854],[1141014533,1073741828,-26495210075134854,-26495207702043174],[1141014533,1073905665,22544601425886842,22544606311881030],[1141014533,1073905668,-22544606311881030,-22544601425886842],[1141014533,1140883457,3950603763253824,3950606276156332],[1141014533,1140883460,-3950606276156332,-3950603763253824],[1141014538,32770,-3950606276156332,-3950603763253824],[1141014538,32776,3950603763253824,3950606276156332],[1141014538,67108866,26495207702043174,26495210075134854],[1141014538,67108872,-26495210075134854,-26495207702043174],[1141014538,67272706,22544601425886842,22544606311881030],[1141014538,67272712,-22544606311881030,-22544601425886842],[1141014538,1073741826,-22544606311881030,-22544601425886842],[1141014538,1073741832,22544601425886842,22544606311881030],[1141014538,1073905666,-26495210075134854,-26495207702043174],[1141014538,1073905672,26495207702043174,26495210075134854],[1141014538,1140981762,3950603763253824,3950606276156332],[1141014538,1140981768,-3950606276156332,-3950603763253824],[1141014540,12,26495207616089156,26495210161088876],[1141014540,32772,-3950606208609134,-3950603830801022],[1141014540,32776,-35792211250117282,-35792205376239611],[1141014540,131076,-35792211250117282,-35792205376239611],[1141014540,131080,-3950606208609134,-3950603830801022],[1141014540,163840,79485623483927954,79485629847606148],[1141014540,163852,26495207628724032,26495210148454004],[1141014540,67108868,58336806904098799,58336817460025984],[1141014540,67108872,-45089212389398762,-45089203086137004],[1141014540,67141632,-35792211241229472,-35792205385127423],[1141014540,67141644,-35792211241229472,-35792205385127423],[1141014540,67239936,-3950606212356198,-3950603827053960],[1141014540,67239948,-3950606212356198,-3950603827053960],[1141014540,67272708,58336806904098799,58336817460025984],[1141014540,67272712,-45089212389398762,-45089203086137004],[1141014540,1073741828,-45089212389398762,-45089203086137004],[1141014540,1073741832,58336806904098799,58336817460025984],[1141014540,1073774592,-3950606212356198,-3950603827053960],[1141014540,1073774604,-3950606212356198,-3950603827053960],[1141014540,1073872896,-35792211241229472,-35792205385127423],[1141014540,1073872908,-35792211241229472,-35792205385127423],[1141014540,1073905668,-45089212389398762,-45089203086137004],[1141014540,1073905672,58336806904098799,58336817460025984],[1141014540,1140850688,26495207628724032,26495210148454004],[1141014540,1140850700,79485623483927954,79485629847606148],[1141014540,1140883460,-3950606208609134,-3950603830801022],[1141014540,1140883464,-35792211250117282,-35792205376239611],[1141014540,1140981764,-35792211250117282,-35792205376239611],[1141014540,1140981768,-3950606208609134,-3950603830801022],[1141014540,1141014528,26495207616089156,26495210161088876],[1141014664,32776,3950603784385098,3950606255025060],[1141014664,32896,-3950606255025060,-3950603784385098],[1141014664,67108872,-26495210066338854,-26495207710839176],[1141014664,67108992,26495207710839176,26495210066338854],[1141014664,67272712,-22544606281953756,-22544601455814116],[1141014664,67272832,22544601455814116,22544606281953756],[1141014664,1073741832,22544601455814116,22544606281953756],[1141014664,1073741952,-22544606281953756,-22544601455814116],[1141014664,1073905672,26495207710839176,26495210066338854],[1141014664,1073905792,-26495210066338854,-26495207710839176],[1141014664,1140981768,-3950606255025060,-3950603784385098],[1141014664,1140981888,3950603784385098,3950606255025060],[1141374978,67239946,6623801107293350,6623803337001160],[1141374978,67764232,-6623803337001160,-6623801107293350],[1141374978,1073872906,-6623803337001160,-6623801107293350],[1141374978,1074397192,6623801107293350,6623803337001160],[1141374980,163840,66238019734487245,66238024708457820],[1141374980,67239948,6623801159997192,6623803284297315],[1141374980,67272708,49039810731968040,49039814782977862],[1141374980,67764232,-6623803284297315,-6623801159997192],[1141374980,67796992,17198204951509383,17198213976489780],[1141374980,268468224,13247603826989498,13247605061599516],[1141374980,336101376,13247603826989498,13247605061599516],[1141374980,1073872908,-6623803284297315,-6623801159997192],[1141374980,1073905668,17198204951509383,17198213976489780],[1141374980,1074397192,6623801159997192,6623803284297315],[1141374980,1074429952,49039810731968040,49039814782977862],[1141374980,1141538820,66238019734487245,66238024708457820],[1141374980,1342210052,13247603826989498,13247605061599516],[1141374980,1409843204,13247603826989498,13247605061599516],[1141374984,0,22544602948688428,22544604789079444],[1141374984,163840,-77510327102997542,-77510321208831459],[1141374984,524296,11272301474344214,11272302394539722],[1141374984,688136,-49039814910578252,-49039810604367646],[1141374984,67108872,-4648502622318527,-4648496802270899],[1141374984,67239946,-6623803337001160,-6623801107293350],[1141374984,67239948,-6623803284297315,-6623801159997192],[1141374984,67240072,17896101898419553,17896106414758888],[1141374984,67272712,-3950606982859932,-3950603056550226],[1141374984,67633152,15920798736625752,15920804556847610],[1141374984,67764226,6623801107293350,6623803337001160],[1141374984,67764228,6623801159997192,6623803284297315],[1141374984,67764352,-17896106414758888,-17896101898419553],[1141374984,67796992,-24519908340000795,-24519904417472150],[1141374984,68288520,6623801159963560,6623803284330947],[1141374984,68812800,-6623803284330947,-6623801159963560],[1141374984,268566528,11272300231229941,11272303637653996],[1141374984,269090824,24519905292829457,24519907464643494],[1141374984,335675400,35792206084485028,35792210541871860],[1141374984,336199680,-49039814979929732,-49039810535016170],[1141374984,1073741832,15920798736625752,15920804556847610],[1141374984,1073872906,6623801107293350,6623803337001160],[1141374984,1073872908,6623801159997192,6623803284297315],[1141374984,1073873032,-17896106414758888,-17896101898419553],[1141374984,1073905672,-24519908340000795,-24519904417472150],[1141374984,1074266112,-4648502622318527,-4648496802270899],[1141374984,1074397186,-6623803337001160,-6623801107293350],[1141374984,1074397188,-6623803284297315,-6623801159997192],[1141374984,1074397312,17896101898419553,17896106414758888],[1141374984,1074429952,-3950606982859932,-3950603056550226],[1141374984,1074921480,-6623803284330947,-6623801159963560],[1141374984,1075445760,6623801159963560,6623803284330947],[1141374984,1140850688,11272301474344214,11272302394539722],[1141374984,1141014528,-49039814910578252,-49039810604367646],[1141374984,1141374984,22544602948688428,22544604789079444],[1141374984,1141538824,-77510327102997542,-77510321208831459],[1141374984,1342308360,-49039814979929732,-49039810535016170],[1141374984,1342832640,35792206084485028,35792210541871860],[1141374984,1409417216,24519905292829457,24519907464643494],[1141374984,1409941512,11272300231229941,11272303637653996],[1141374984,17592186175488,24519905280236082,24519907477236870],[1141374984,17592186699784,24519905280236082,24519907477236870],[1141374984,17593327026176,24519905280236082,24519907477236870],[1141374984,17593327550472,24519905280236082,24519907477236870],[1141374984,140737488486400,-24519907477236870,-24519905280236082],[1141374984,140737489010696,-24519907477236870,-24519905280236082],[1141374984,140738629337088,-24519907477236870,-24519905280236082],[1141374984,140738629861384,-24519907477236870,-24519905280236082],[1141375104,67108992,-6623806726760819,-6623797717533688],[1141375104,67240072,6623801098016986,6623803346277523],[1141375104,67272832,3950603932147814,3950606107262344],[1141375104,67633152,6623797717533688,6623806726760819],[1141375104,67764232,-6623803346277523,-6623801098016986],[1141375104,67796992,-3950606107262344,-3950603932147814],[1141375104,1073741952,6623797717533688,6623806726760819],[1141375104,1073873032,-6623803346277523,-6623801098016986],[1141375104,1073905792,-3950606107262344,-3950603932147814],[1141375104,1074266112,-6623806726760819,-6623797717533688],[1141375104,1074397192,6623801098016986,6623803346277523],[1141375104,1074429952,3950603932147814,3950606107262344],[1141407744,131076,-39742815032300530,-39742811633466510],[1141407744,688136,1975300962522527,1975304057182551],[1141407744,688256,49039811053725950,49039814461219948],[1141407744,67272708,-51015117307046807,-51015113227604174],[1141407744,67272712,11272298892173522,11272304976710416],[1141407744,67272832,-11272305272819252,-11272298596064681],[1141407744,67764228,11272298195303644,11272305673580297],[1141407744,67764232,-13247605939232943,-13247602949356073],[1141407744,67764352,-37767512457661269,-37767509188400696],[1141407744,268435460,-13247605061599516,-13247603826989498],[1141407744,268992640,1975301889643525,1975303130061553],[1141407744,335577216,-1975303130061553,-1975301889643525],[1141407744,336068612,-13247605061599516,-13247603826989498],[1141407744,1073905668,11272298195303644,11272305673580297],[1141407744,1073905672,-13247605939232943,-13247602949356073],[1141407744,1073905792,-37767512457661269,-37767509188400696],[1141407744,1074397188,-51015117307046807,-51015113227604174],[1141407744,1074397192,11272298892173522,11272304976710416],[1141407744,1074397312,-11272305272819252,-11272298596064681],[1141407744,1140981768,1975300962522527,1975304057182551],[1141407744,1140981888,49039811053725950,49039814461219948],[1141407744,1141538820,-39742815032300530,-39742811633466510],[1141407744,1342210052,-13247605061599516,-13247603826989498],[1141407744,1342701696,-1975303130061553,-1975301889643525],[1141407744,1409286272,1975301889643525,1975303130061553],[1141407744,1409843204,-13247605061599516,-13247603826989498],[1141506048,32776,47064508855883441,47064511639357377],[1141506048,32896,-45089208966229632,-45089206509306108],[1141506048,688132,13247603821617226,13247605066971786],[1141506048,688136,22544602330282044,22544605407485828],[1141506048,688256,-49039814461219948,-49039811053725950],[1141506048,67240072,-28470513207314965,-28470509589568145],[1141506048,67272708,13247603827010127,13247605061578886],[1141506048,67272712,11272299945646091,11272303923237845],[1141506048,67272832,-11272302995044411,-11272300873839524],[1141506048,67633288,28470509589568145,28470513207314965],[1141506048,67665924,-26495209977752878,-26495207799425147],[1141506048,67665928,13247602298025327,13247606590563683],[1141506048,67666048,15222904805987338,15222909102306755],[1141506048,68288520,-11272302995044411,-11272300873839524],[1141506048,68288640,11272300873839524,11272302995044411],[1141506048,68681736,11272300873839524,11272302995044411],[1141506048,68681856,-11272302995044411,-11272300873839524],[1141506048,268435464,-9297000658925680,-9296998190253177],[1141506048,268435584,22544603251852693,22544604485915178],[1141506048,269090824,-22544604485915178,-22544603251852693],[1141506048,269090944,20569300121791140,20569302596271653],[1141506048,335675400,-37767513075615154,-37767508570446813],[1141506048,335675520,39742811546633741,39742815119133304],[1141506048,336068616,51015113020977955,51015117513673026],[1141506048,336068736,-37767513075615154,-37767508570446813],[1141506048,1073873032,28470509589568145,28470513207314965],[1141506048,1073905668,-26495209977752878,-26495207799425147],[1141506048,1073905672,13247602298025327,13247606590563683],[1141506048,1073905792,15222904805987338,15222909102306755],[1141506048,1074266248,-28470513207314965,-28470509589568145],[1141506048,1074298884,13247603827010127,13247605061578886],[1141506048,1074298888,11272299945646091,11272303923237845],[1141506048,1074299008,-11272302995044411,-11272300873839524],[1141506048,1074921480,11272300873839524,11272302995044411],[1141506048,1074921600,-11272302995044411,-11272300873839524],[1141506048,1075314696,-11272302995044411,-11272300873839524],[1141506048,1075314816,11272300873839524,11272302995044411],[1141506048,1140883460,13247603821617226,13247605066971786],[1141506048,1140883464,22544602330282044,22544605407485828],[1141506048,1140883584,-49039814461219948,-49039811053725950],[1141506048,1141538824,47064508855883441,47064511639357377],[1141506048,1141538944,-45089208966229632,-45089206509306108],[1141506048,1342308360,51015113020977955,51015117513673026],[1141506048,1342308480,-37767513075615154,-37767508570446813],[1141506048,1342701576,-37767513075615154,-37767508570446813],[1141506048,1342701696,39742811546633741,39742815119133304],[1141506048,1409286152,-22544604485915178,-22544603251852693],[1141506048,1409286272,20569300121791140,20569302596271653],[1141506048,1409941512,-9297000658925680,-9296998190253177],[1141506048,1409941632,22544603251852693,22544604485915178],[1141506048,17592186044424,-22544604497985104,-22544603239782766],[1141506048,17592186044544,22544603239782766,22544604497985104],[1141506048,17592186699784,-22544604497985104,-22544603239782766],[1141506048,17592186699904,22544603239782766,22544604497985104],[1141506048,17593326895112,-22544604497985104,-22544603239782766],[1141506048,17593326895232,22544603239782766,22544604497985104],[1141506048,17593327550472,-22544604497985104,-22544603239782766],[1141506048,17593327550592,22544603239782766,22544604497985104],[1141506048,140737488355336,22544603239782766,22544604497985104],[1141506048,140737488355456,-22544604497985104,-22544603239782766],[1141506048,140737489010696,22544603239782766,22544604497985104],[1141506048,140737489010816,-22544604497985104,-22544603239782766],[1141506048,140738629206024,22544603239782766,22544604497985104],[1141506048,140738629206144,-22544604497985104,-22544603239782766],[1141506048,140738629861384,22544603239782766,22544604497985104],[1141506048,140738629861504,-22544604497985104,-22544603239782766],[1141506058,67108866,13247603792440361,13247605096148654],[1141506058,67108872,-13247605096148654,-13247603792440361],[1141506058,67764226,13247603792440361,13247605096148654],[1141506058,67764232,-13247605096148654,-13247603792440361],[1141506058,1073741826,-13247605096148654,-13247603792440361],[1141506058,1073741832,13247603792440361,13247605096148654],[1141506058,1074397186,-13247605096148654,-13247603792440361],[1141506058,1074397192,13247603792440361,13247605096148654],[1141506060,67108868,13247603822433492,13247605066155522],[1141506060,67108872,-13247605066155522,-13247603822433492],[1141506060,67764228,13247603822433492,13247605066155522],[1141506060,67764232,-13247605066155522,-13247603822433492],[1141506060,1073741828,-13247605066155522,-13247603822433492],[1141506060,1073741832,13247603822433492,13247605066155522],[1141506060,1074397188,-13247605066155522,-13247603822433492],[1141506060,1074397192,13247603822433492,13247605066155522],[1141506184,67108872,-26495210186613570,-26495207590564460],[1141506184,67108992,22544601267974862,22544606469793008],[1141506184,67240072,-3950606322589598,-3950603716820562],[1141506184,67633152,3950603716820562,3950606322589598],[1141506184,67764232,-22544606469793008,-22544601267974862],[1141506184,67764352,26495207590564460,26495210186613570],[1141506184,1073741832,26495207590564460,26495210186613570],[1141506184,1073741952,-22544606469793008,-22544601267974862],[1141506184,1073873032,3950603716820562,3950606322589598],[1141506184,1074266112,-3950606322589598,-3950603716820562],[1141506184,1074397192,22544601267974862,22544606469793008],[1141506184,1074397312,-26495210186613570,-26495207590564460],[1141506240,67108928,-13247605096148654,-13247603792440361],[1141506240,67108992,13247603792440361,13247605096148654],[1141506240,67764288,-13247605096148654,-13247603792440361],[1141506240,67764352,13247603792440361,13247605096148654],[1141506240,1073741888,13247603792440361,13247605096148654],[1141506240,1073741952,-13247605096148654,-13247603792440361],[1141506240,1074397248,13247603792440361,13247605096148654],[1141506240,1074397312,-13247605096148654,-13247603792440361],[1141507200,67108992,13247603822433492,13247605066155522],[1141507200,67109888,-13247605066155522,-13247603822433492],[1141507200,67764352,13247603822433492,13247605066155522],[1141507200,67765248,-13247605066155522,-13247603822433492],[1141507200,1073741952,-13247605066155522,-13247603822433492],[1141507200,1073742848,13247603822433492,13247605066155522],[1141507200,1074397312,-13247605066155522,-13247603822433492],[1141507200,1074398208,13247603822433492,13247605066155522],[1141538820,131076,-39742815032300530,-39742811633466510],[1141538820,163840,66238019734487245,66238024708457820],[1141538820,524292,26495207655679218,26495210121498808],[1141538820,557056,-39742815032279900,-39742811633487139],[1141538820,688132,13247603821617226,13247605066971786],[1141538820,67108868,11272300724520905,11272303144363030],[1141538820,67141632,-24519908060537022,-24519904696935925],[1141538820,67239936,-1975303102434961,-1975301917270118],[1141538820,67272708,11272300724575166,11272303144308768],[1141538820,67633152,1975301917270118,1975303102434961],[1141538820,67665924,-24519908060482760,-24519904696990186],[1141538820,67764228,-1975303102468593,-1975301917236486],[1141538820,67796992,1975301917236486,1975303102468593],[1141538820,1073741828,1975301917236486,1975303102468593],[1141538820,1073774592,-1975303102468593,-1975301917236486],[1141538820,1073872896,-24519908060482760,-24519904696990186],[1141538820,1073905668,1975301917270118,1975303102434961],[1141538820,1074266112,11272300724575166,11272303144308768],[1141538820,1074298884,-1975303102434961,-1975301917270118],[1141538820,1074397188,-24519908060537022,-24519904696935925],[1141538820,1074429952,11272300724520905,11272303144363030],[1141538820,1140850688,13247603821617226,13247605066971786],[1141538820,1140981764,-39742815032279900,-39742811633487139],[1141538820,1141014528,26495207655679218,26495210121498808],[1141538820,1141374980,66238019734487245,66238024708457820],[1141538820,1141407744,-39742815032300530,-39742811633466510],[1141538824,32776,47064508855883441,47064511639357377],[1141538824,163840,-77510327102997542,-77510321208831459],[1141538824,557056,5925906132510585,5925908926604650],[1141538824,688136,-24519907159915920,-24519905597557028],[1141538824,67108872,-24519907696178166,-24519905061294785],[1141538824,67141632,15920800086388708,15920803207084654],[1141538824,67239936,57638914684799306,57638920294146182],[1141538824,67272712,18593996132872130,18594001565485586],[1141538824,67633152,-24519907697996171,-24519905059476780],[1141538824,67665928,19871400914685277,19871412418198236],[1141538824,67764232,8599103952831266,8599105511168320],[1141538824,67796992,-22544606578062592,-22544601159705275],[1141538824,1073741832,-22544606578062592,-22544601159705275],[1141538824,1073774592,8599103952831266,8599105511168320],[1141538824,1073872896,19871400914685277,19871412418198236],[1141538824,1073905672,-24519907697996171,-24519905059476780],[1141538824,1074266112,18593996132872130,18594001565485586],[1141538824,1074298888,57638914684799306,57638920294146182],[1141538824,1074397192,15920800086388708,15920803207084654],[1141538824,1074429952,-24519907696178166,-24519905061294785],[1141538824,1140850688,-24519907159915920,-24519905597557028],[1141538824,1140981768,5925906132510585,5925908926604650],[1141538824,1141374984,-77510327102997542,-77510321208831459],[1141538824,1141506048,47064508855883441,47064511639357377],[1141538944,32896,-45089208966229632,-45089206509306108],[1141538944,557056,45089206509306108,45089208966229632],[1141538944,67108992,26495207710771912,26495210066406118],[1141538944,67272832,-18594001255457720,-18593996442899990],[1141538944,67633152,-26495210066406118,-26495207710771912],[1141538944,67796992,18593996442899990,18594001255457720],[1141538944,1073741952,18593996442899990,18594001255457720],[1141538944,1073905792,-26495210066406118,-26495207710771912],[1141538944,1074266112,-18594001255457720,-18593996442899990],[1141538944,1074429952,26495207710771912,26495210066406118],[1141538944,1140981888,45089206509306108,45089208966229632],[1141538944,1141506048,-45089208966229632,-45089206509306108],[1141899272,67764232,-6623803284330947,-6623801159963560],[1141899272,68812800,6623801159963560,6623803284330947],[1141899272,1074397192,6623801159963560,6623803284330947],[1141899272,1075445760,-6623803284330947,-6623801159963560],[1142030336,67764232,11272300873839524,11272302995044411],[1142030336,67764352,-13247605066155522,-13247603822433492],[1142030336,67765248,1975301917236486,1975303102468593],[1142030336,68681736,-11272302995044411,-11272300873839524],[1142030336,68681856,13247603822433492,13247605066155522],[1142030336,68682752,-1975303102468593,-1975301917236486],[1142030336,1074397192,-11272302995044411,-11272300873839524],[1142030336,1074397312,13247603822433492,13247605066155522],[1142030336,1074398208,-1975303102468593,-1975301917236486],[1142030336,1075314696,11272300873839524,11272302995044411],[1142030336,1075314816,-13247605066155522,-13247603822433492],[1142030336,1075315712,1975301917236486,1975303102468593],[1142554632,67633152,4648499087000812,4648500337588616],[1142554632,67764232,4648499087000812,4648500337588616],[1142554632,68157440,-4648500337588616,-4648499087000812],[1142554632,68288520,-4648500337588616,-4648499087000812],[1142554632,1074266112,-4648500337588616,-4648499087000812],[1142554632,1074397192,-4648500337588616,-4648499087000812],[1142554632,1074790400,4648499087000812,4648500337588616],[1142554632,1074921480,4648499087000812,4648500337588616],[1142554752,67108992,-1975303102468593,-1975301917236486],[1142554752,67633152,-11272302995044411,-11272300873839524],[1142554752,67764352,-13247605066155522,-13247603822433492],[1142554752,68157440,13247603822433492,13247605066155522],[1142554752,68288640,11272300873839524,11272302995044411],[1142554752,68812800,1975301917236486,1975303102468593],[1142554752,1073741952,1975301917236486,1975303102468593],[1142554752,1074266112,11272300873839524,11272302995044411],[1142554752,1074397312,13247603822433492,13247605066155522],[1142554752,1074790400,-13247605066155522,-13247603822433492],[1142554752,1074921600,-11272302995044411,-11272300873839524],[1142554752,1075445760,-1975303102468593,-1975301917236486],[1142555648,67109888,1975301917236486,1975303102468593],[1142555648,67765248,1975301917236486,1975303102468593],[1142555648,68157440,-1975303102468593,-1975301917236486],[1142555648,68812800,-1975303102468593,-1975301917236486],[1142555648,1073742848,-1975303102468593,-1975301917236486],[1142555648,1074398208,-1975303102468593,-1975301917236486],[1142555648,1074790400,1975301917236486,1975303102468593],[1142555648,1075445760,1975301917236486,1975303102468593],[1207992324,469762052,13247603855385956,13247605033203059],[1207992324,469794816,-13247605033203059,-13247603855385956],[1207992324,1409286148,-13247605033203059,-13247603855385956],[1207992324,1409318912,13247603855385956,13247605033203059],[1208090632,469762056,-6623803284330947,-6623801159963560],[1208090632,469893120,6623801159963560,6623803284330947],[1208090632,1409286152,6623801159963560,6623803284330947],[1208090632,1409417216,-6623803284330947,-6623801159963560],[1208483968,469762176,6623801159963560,6623803284330947],[1208483968,470286336,-6623803284330947,-6623801159963560],[1208483968,1409286272,-6623803284330947,-6623801159963560],[1208483968,1409810432,6623801159963560,6623803284330947],[1209009152,469763072,-13247605033203059,-13247603855385956],[1209009152,470810624,13247603855385956,13247605033203059],[1209009152,1409287168,13247603855385956,13247605033203059],[1209009152,1410334720,-13247605033203059,-13247603855385956],[1275068420,268468224,13247603855385956,13247605033203059],[1275068420,469794816,13247603855385956,13247605033203059],[1275068420,1342210052,13247603855385956,13247605033203059],[1275068420,1543536644,13247603855385956,13247605033203059],[1275068424,268566528,-13247605033203059,-13247603855385956],[1275068424,335675400,-6623803271301876,-6623801172992632],[1275068424,469893120,-6623803284330947,-6623801159963560],[1275068424,1342308360,-6623803284330947,-6623801159963560],[1275068424,1476526080,-6623803271301876,-6623801172992632],[1275068424,1543634952,-13247605033203059,-13247603855385956],[1275068544,336068736,6623801172992632,6623803271301876],[1275068544,470286336,-6623803271301876,-6623801172992632],[1275068544,1342701696,-6623803271301876,-6623801172992632],[1275068544,1476919296,6623801172992632,6623803271301876],[1275101184,268435460,-13247605033203059,-13247603855385956],[1275101184,469762052,-13247605033203059,-13247603855385956],[1275101184,1342210052,-13247605033203059,-13247603855385956],[1275101184,1543536644,-13247605033203059,-13247603855385956],[1275199488,268435464,13247603855385956,13247605033203059],[1275199488,335675400,6623801172992632,6623803271301876],[1275199488,469762056,6623801159963560,6623803284330947],[1275199488,1342308360,6623801159963560,6623803284330947],[1275199488,1476395016,6623801172992632,6623803271301876],[1275199488,1543634952,13247603855385956,13247605033203059],[1275592704,336068736,-6623803271301876,-6623801172992632],[1275592704,469762176,6623801172992632,6623803271301876],[1275592704,1342701696,6623801172992632,6623803271301876],[1275592704,1476395136,-6623803271301876,-6623801172992632],[1342177280,131080,11272301474344214,11272302394539722],[1342177280,688132,-13247605066971786,-13247603821617226],[1342177280,688136,22544603248067364,22544604489700504],[1342177280,688256,1975301885638544,1975303134066536],[1342177280,67108868,-1975304235590111,-1975300784114970],[1342177280,67108872,6623799170377024,6623805273917482],[1342177280,67108992,-4648501525518317,-4648497899071108],[1342177280,67272708,-13247605061578886,-13247603827010127],[1342177280,67272712,1975301889664154,1975303130040923],[1342177280,67764232,1975301857911278,1975303161793801],[1342177280,67764352,-13247605096148654,-13247603792440361],[1342177280,1342308360,11272301474344214,11272302394539722],[1342177280,1342865412,-13247605066971786,-13247603821617226],[1342177280,1342865416,22544603248067364,22544604489700504],[1342177280,1342865536,1975301885638544,1975303134066536],[1342177280,1409286148,-1975304235590111,-1975300784114970],[1342177280,1409286152,6623799170377024,6623805273917482],[1342177280,1409286272,-4648501525518317,-4648497899071108],[1342177280,1409449988,-13247605061578886,-13247603827010127],[1342177280,1409449992,1975301889664154,1975303130040923],[1342177280,1409941512,1975301857911278,1975303161793801],[1342177280,1409941632,-13247605096148654,-13247603792440361],[1342210049,67108868,-1975303127852212,-1975301891852867],[1342210049,67141637,-1975303127852212,-1975301891852867],[1342210049,1409286148,-1975303127852212,-1975301891852867],[1342210049,1409318917,-1975303127852212,-1975301891852867],[1342210052,688132,-13247605066971786,-13247603821617226],[1342210052,67108865,1975301891852867,1975303127852212],[1342210052,67108872,1975301917236486,1975303102468593],[1342210052,67141637,1975301891852867,1975303127852212],[1342210052,67141644,1975301917236486,1975303102468593],[1342210052,67239936,-1975303102468593,-1975301917236486],[1342210052,67272708,-15222908164047479,-15222905744246613],[1342210052,268435460,-13247606122970514,-13247602765618499],[1342210052,268468224,13247602765618499,13247606122970514],[1342210052,269090820,-13247605061599516,-13247603826989498],[1342210052,269123584,26495207799404518,26495209977773508],[1342210052,335675396,-26495210121498808,-26495207655679218],[1342210052,335708160,39742811633487139,39742815032279900],[1342210052,336068612,-13247605061599516,-13247603826989498],[1342210052,336101376,13247603826989498,13247605061599516],[1342210052,469762052,-13247605033203059,-13247603855385956],[1342210052,469794816,13247603855385956,13247605033203059],[1342210052,1073741828,13247602765618499,13247606122970514],[1342210052,1073774592,-13247606122970514,-13247602765618499],[1342210052,1074397188,26495207799404518,26495209977773508],[1342210052,1074429952,-13247605061599516,-13247603826989498],[1342210052,1140981764,39742811633487139,39742815032279900],[1342210052,1141014528,-26495210121498808,-26495207655679218],[1342210052,1141374980,13247603826989498,13247605061599516],[1342210052,1141407744,-13247605061599516,-13247603826989498],[1342210052,1275068420,13247603855385956,13247605033203059],[1342210052,1275101184,-13247605033203059,-13247603855385956],[1342210052,1342832640,-13247605066971786,-13247603821617226],[1342210052,1409286145,1975301891852867,1975303127852212],[1342210052,1409286152,1975301917236486,1975303102468593],[1342210052,1409318917,1975301891852867,1975303127852212],[1342210052,1409318924,1975301917236486,1975303102468593],[1342210052,1409417216,-15222908164047479,-15222905744246613],[1342210052,1409449988,-1975303102468593,-1975301917236486],[1342210052,17592521588740,-13247605066127948,-13247603822461068],[1342210052,17592521621504,13247603822461068,13247605066127948],[1342210052,17593326895108,13247603822461068,13247605066127948],[1342210052,17593326927872,-13247605066127948,-13247603822461068],[1342210052,35184707633156,-13247605076872486,-13247603811716528],[1342210052,35184707665920,13247603811716528,13247605076872486],[1342210052,35185512939524,13247603811716528,13247605076872486],[1342210052,35185512972288,-13247605076872486,-13247603811716528],[1342210052,140737823899652,26495207784975390,26495209992202640],[1342210052,140737823932416,-26495209992202640,-26495207784975390],[1342210052,140738629206020,-26495209992202640,-26495207784975390],[1342210052,140738629238784,26495207784975390,26495209992202640],[1342210056,688136,26495207799404518,26495209977773508],[1342210056,67108868,-1975303102468593,-1975301917236486],[1342210056,67141644,-1975303102468593,-1975301917236486],[1342210056,67239936,-53688314809147586,-53688310130387744],[1342210056,67272712,-697899197873155,-697890187306122],[1342210056,269123584,-26495209977773508,-26495207799404518],[1342210056,335708160,-52990419943081622,-52990415611274431],[1342210056,1074397192,-26495209977773508,-26495207799404518],[1342210056,1140981768,-52990419943081622,-52990415611274431],[1342210056,1342832640,26495207799404518,26495209977773508],[1342210056,1409286148,-1975303102468593,-1975301917236486],[1342210056,1409318924,-1975303102468593,-1975301917236486],[1342210056,1409417216,-697899197873155,-697890187306122],[1342210056,1409449992,-53688314809147586,-53688310130387744],[1342308354,67108872,6623801107293350,6623803337001160],[1342308354,67239946,6623801107293350,6623803337001160],[1342308354,1409286152,6623801107293350,6623803337001160],[1342308354,1409417226,6623801107293350,6623803337001160],[1342308356,557056,-26495209977773508,-26495207799404518],[1342308356,67108872,6623801159997192,6623803284297315],[1342308356,67141632,-3950609211113582,-3950600828296569],[1342308356,67239948,6623801159997192,6623803284297315],[1342308356,67272708,49039810731968040,49039814782977862],[1342308356,269123584,-26495209977773508,-26495207799404518],[1342308356,335708160,-52990419943081622,-52990415611274431],[1342308356,1074298884,-26495209977773508,-26495207799404518],[1342308356,1140883460,-52990419943081622,-52990415611274431],[1342308356,1342865412,-26495209977773508,-26495207799404518],[1342308356,1409286152,6623801159997192,6623803284297315],[1342308356,1409318912,49039810731968040,49039814782977862],[1342308356,1409417228,6623801159997192,6623803284297315],[1342308356,1409449988,-3950609211113582,-3950600828296569],[1342308360,0,22544602948688428,22544604789079444],[1342308360,131080,11272301474344214,11272302394539722],[1342308360,557056,22544603248067364,22544604489700504],[1342308360,67108866,-6623803337001160,-6623801107293350],[1342308360,67108868,-6623803284297315,-6623801159997192],[1342308360,67108992,-6623803346277523,-6623801098016986],[1342308360,67141632,8599103049661346,8599106414338238],[1342308360,67239946,-6623803337001160,-6623801107293350],[1342308360,67239948,-6623803284297315,-6623801159997192],[1342308360,67240072,-6623803346277523,-6623801098016986],[1342308360,67272712,6623801159997192,6623803284297315],[1342308360,67633152,8599102955928264,8599106508071324],[1342308360,67764232,6623801098016986,6623803346277523],[1342308360,268435464,15920798878436957,15920804415036409],[1342308360,268566528,-4648502477690436,-4648496946898994],[1342308360,268992520,-3950606107262344,-3950603932147814],[1342308360,269123584,26495207799404518,26495209977773508],[1342308360,335577096,-49039814910578252,-49039810604367646],[1342308360,335708160,51015113107831353,51015117426819622],[1342308360,336068616,51015113020977955,51015117513673026],[1342308360,336199680,-49039814979929732,-49039810535016170],[1342308360,469762056,6623801159963560,6623803284330947],[1342308360,469893120,-6623803284330947,-6623801159963560],[1342308360,1073741832,-4648502477690436,-4648496946898994],[1342308360,1073872896,15920798878436957,15920804415036409],[1342308360,1074298888,26495207799404518,26495209977773508],[1342308360,1074429952,-3950606107262344,-3950603932147814],[1342308360,1140883464,51015113107831353,51015117426819622],[1342308360,1141014528,-49039814910578252,-49039810604367646],[1342308360,1141374984,-49039814979929732,-49039810535016170],[1342308360,1141506048,51015113020977955,51015117513673026],[1342308360,1275068424,-6623803284330947,-6623801159963560],[1342308360,1275199488,6623801159963560,6623803284330947],[1342308360,1342177280,11272301474344214,11272302394539722],[1342308360,1342308360,22544602948688428,22544604789079444],[1342308360,1342865416,22544603248067364,22544604489700504],[1342308360,1409286146,-6623803337001160,-6623801107293350],[1342308360,1409286148,-6623803284297315,-6623801159997192],[1342308360,1409286272,-6623803346277523,-6623801098016986],[1342308360,1409318912,6623801159997192,6623803284297315],[1342308360,1409417226,-6623803337001160,-6623801107293350],[1342308360,1409417228,-6623803284297315,-6623801159997192],[1342308360,1409417352,-6623803346277523,-6623801098016986],[1342308360,1409449992,8599103049661346,8599106414338238],[1342308360,1409810432,6623801098016986,6623803346277523],[1342308360,1409941512,8599102955928264,8599106508071324],[1342308360,17592521588744,-974533465,974533467],[1342308360,17592521719808,-974533467,974533465],[1342308360,17593326895112,-974533467,974533465],[1342308360,17593327026176,-974533465,974533467],[1342308360,35184707633160,24519905244697076,24519907512775874],[1342308360,35184707764224,-24519907512775874,-24519905244697076],[1342308360,35185512939528,-24519907512775874,-24519905244697076],[1342308360,35185513070592,24519905244697076,24519907512775874],[1342308360,140737823899656,-24519907477236870,-24519905280236082],[1342308360,140737824030720,24519905280236082,24519907477236870],[1342308360,140738629206024,24519905280236082,24519907477236870],[1342308360,140738629337088,-24519907477236870,-24519905280236082],[1342308480,557056,3950603932147814,3950606107262344],[1342308480,67108872,6623801098016986,6623803346277523],[1342308480,67240072,6623801098016986,6623803346277523],[1342308480,67633152,-6623806726760819,-6623797717533688],[1342308480,67764352,31143706348854335,31143710852913125],[1342308480,268992640,3950603932147814,3950606107262344],[1342308480,336068736,-37767513075615154,-37767508570446813],[1342308480,1074429952,3950603932147814,3950606107262344],[1342308480,1141506048,-37767513075615154,-37767508570446813],[1342308480,1342865536,3950603932147814,3950606107262344],[1342308480,1409286152,6623801098016986,6623803346277523],[1342308480,1409417352,6623801098016986,6623803346277523],[1342308480,1409810432,31143706348854335,31143710852913125],[1342308480,1409941632,-6623806726760819,-6623797717533688],[1342341120,524292,13247603826989498,13247605061599516],[1342341120,688136,-3950606107262344,-3950603932147814],[1342341120,688256,1975301885638544,1975303134066536],[1342341120,67108868,-7321700188581701,-7321693640892082],[1342341120,67108872,47064508673192612,47064511822048211],[1342341120,67272708,-47064511822048211,-47064508673192612],[1342341120,67272712,-3950608753647640,-3950601285762513],[1342341120,268992520,3950603932147814,3950606107262344],[1342341120,268992640,-1975303134066536,-1975301885638544],[1342341120,269090820,13247603826989498,13247605061599516],[1342341120,335577096,51015113107810724,51015117426840252],[1342341120,335675396,39742811633466510,39742815032300530],[1342341120,1074298884,13247603826989498,13247605061599516],[1342341120,1074397192,3950603932147814,3950606107262344],[1342341120,1074397312,-1975303134066536,-1975301885638544],[1342341120,1140883460,39742811633466510,39742815032300530],[1342341120,1140981768,51015113107810724,51015117426840252],[1342341120,1342701576,-3950606107262344,-3950603932147814],[1342341120,1342701696,1975301885638544,1975303134066536],[1342341120,1342865412,13247603826989498,13247605061599516],[1342341120,1409286148,-47064511822048211,-47064508673192612],[1342341120,1409286152,-3950608753647640,-3950601285762513],[1342341120,1409449988,-7321700188581701,-7321693640892082],[1342341120,1409449992,47064508673192612,47064511822048211],[1342701576,688136,-3950606107262344,-3950603932147814],[1342701576,67108992,-4648500367937249,-4648499056652180],[1342701576,67239936,-33119013675915179,-33119008545557361],[1342701576,67633288,-4648500367937249,-4648499056652180],[1342701576,67764232,4648494894531634,4648504530057793],[1342701576,268599304,3950603932147814,3950606107262344],[1342701576,335675400,-37767513075615154,-37767508570446813],[1342701576,1074429952,3950603932147814,3950606107262344],[1342701576,1141506048,-37767513075615154,-37767508570446813],[1342701576,1342341120,-3950606107262344,-3950603932147814],[1342701576,1409286272,-4648500367937249,-4648499056652180],[1342701576,1409417216,4648494894531634,4648504530057793],[1342701576,1409810568,-4648500367937249,-4648499056652180],[1342701576,1409941512,-33119013675915179,-33119008545557361],[1342701632,67108992,-4648500364875210,-4648499059714221],[1342701632,67633344,-4648500364875210,-4648499059714221],[1342701632,1409286272,-4648500364875210,-4648499059714221],[1342701632,1409810624,-4648500364875210,-4648499059714221],[1342701696,688256,1975301885638544,1975303134066536],[1342701696,67108872,4648499056652180,4648500367937249],[1342701696,67108928,4648499059714221,4648500364875210],[1342701696,67109888,4648499087034444,4648500337554984],[1342701696,67239936,-4648500367937249,-4648499056652180],[1342701696,67633288,4648499056652180,4648500367937249],[1342701696,67633344,4648499059714221,4648500364875210],[1342701696,67634304,4648499087034444,4648500337554984],[1342701696,67764352,-17896105464085903,-17896102849092541],[1342701696,68157440,-4648500337554984,-4648499087034444],[1342701696,68681856,-4648500337554984,-4648499087034444],[1342701696,268435584,-4648501379109328,-4648498045480103],[1342701696,268599424,-3950606107262344,-3950603932147814],[1342701696,268959744,4648498045480103,4648501379109328],[1342701696,269123584,1975301889643525,1975303130061553],[1342701696,335577216,-1975303130061553,-1975301889643525],[1342701696,335675520,39742811546633741,39742815119133304],[1342701696,336101376,1975301889643525,1975303130061553],[1342701696,336199680,-26495210190850288,-26495207586327742],[1342701696,469762176,6623801172992632,6623803271301876],[1342701696,470286336,-6623803271301876,-6623801172992632],[1342701696,1073741952,4648498045480103,4648501379109328],[1342701696,1073905792,1975301889643525,1975303130061553],[1342701696,1074266112,-4648501379109328,-4648498045480103],[1342701696,1074429952,-3950606107262344,-3950603932147814],[1342701696,1140883584,1975301889643525,1975303130061553],[1342701696,1140981888,-26495210190850288,-26495207586327742],[1342701696,1141407744,-1975303130061553,-1975301889643525],[1342701696,1141506048,39742811546633741,39742815119133304],[1342701696,1275068544,-6623803271301876,-6623801172992632],[1342701696,1275592704,6623801172992632,6623803271301876],[1342701696,1342341120,1975301885638544,1975303134066536],[1342701696,1409286152,4648499056652180,4648500367937249],[1342701696,1409286208,4648499059714221,4648500364875210],[1342701696,1409287168,4648499087034444,4648500337554984],[1342701696,1409417216,-17896105464085903,-17896102849092541],[1342701696,1409810568,4648499056652180,4648500367937249],[1342701696,1409810624,4648499059714221,4648500364875210],[1342701696,1409811584,4648499087034444,4648500337554984],[1342701696,1409941632,-4648500367937249,-4648499056652180],[1342701696,1410334720,-4648500337554984,-4648499087034444],[1342701696,1410859136,-4648500337554984,-4648499087034444],[1342701696,17592521588864,13247603786922062,13247605101666952],[1342701696,17592522113024,-13247605101666952,-13247603786922062],[1342701696,17593326895232,-13247605101666952,-13247603786922062],[1342701696,17593327419392,13247603786922062,13247605101666952],[1342701696,35184707633280,-11272303070687196,-11272300798196740],[1342701696,35184708157440,11272300798196740,11272303070687196],[1342701696,35185512939648,11272300798196740,11272303070687196],[1342701696,35185513463808,-11272303070687196,-11272300798196740],[1342701696,140737823899776,-1975303142599947,-1975301877105131],[1342701696,140737824423936,1975301877105131,1975303142599947],[1342701696,140738629206144,1975301877105131,1975303142599947],[1342701696,140738629730304,-1975303142599947,-1975301877105131],[1342702592,67108992,-4648500337554984,-4648499087034444],[1342702592,67634304,-4648500337554984,-4648499087034444],[1342702592,68157440,-1975303102434961,-1975301917270118],[1342702592,68682752,-1975303102434961,-1975301917270118],[1342702592,1409286272,-4648500337554984,-4648499087034444],[1342702592,1409811584,-4648500337554984,-4648499087034444],[1342702592,1410334720,-1975303102434961,-1975301917270118],[1342702592,1410860032,-1975303102434961,-1975301917270118],[1342832640,32896,-1975303130061553,-1975301889643525],[1342832640,688132,-13247605066971786,-13247603821617226],[1342832640,688136,26495207799404518,26495209977773508],[1342832640,67108872,26495207121529005,26495210655649026],[1342832640,67108992,-1975306045508212,-1975298974196867],[1342832640,67764232,-9297003420342855,-9296995428836002],[1342832640,67764352,-26495210655649026,-26495207121529005],[1342832640,268599300,13247603821617226,13247605066971786],[1342832640,268599304,-26495209977773508,-26495207799404518],[1342832640,268992640,-1975303130061553,-1975301889643525],[1342832640,335675400,35792206084485028,35792210541871860],[1342832640,336068736,24519904610140814,24519908147332138],[1342832640,1073905792,-1975303130061553,-1975301889643525],[1342832640,1074298884,13247603821617226,13247605066971786],[1342832640,1074298888,-26495209977773508,-26495207799404518],[1342832640,1140981888,24519904610140814,24519908147332138],[1342832640,1141374984,35792206084485028,35792210541871860],[1342832640,1342210052,-13247605066971786,-13247603821617226],[1342832640,1342210056,26495207799404518,26495209977773508],[1342832640,1342865536,-1975303130061553,-1975301889643525],[1342832640,1409286152,-9297003420342855,-9296995428836002],[1342832640,1409286272,-26495210655649026,-26495207121529005],[1342832640,1409941512,26495207121529005,26495210655649026],[1342832640,1409941632,-1975306045508212,-1975298974196867],[1342865412,524292,13247603826989498,13247605061599516],[1342865412,557056,-26495209977773508,-26495207799404518],[1342865412,688132,-13247605066971786,-13247603821617226],[1342865412,268435460,-13247605061599516,-13247603826989498],[1342865412,268468224,26495207799404518,26495209977773508],[1342865412,268599300,13247603821617226,13247605066971786],[1342865412,1074266112,13247603821617226,13247605066971786],[1342865412,1074397188,26495207799404518,26495209977773508],[1342865412,1074429952,-13247605061599516,-13247603826989498],[1342865412,1342177280,-13247605066971786,-13247603821617226],[1342865412,1342308356,-26495209977773508,-26495207799404518],[1342865412,1342341120,13247603826989498,13247605061599516],[1342865416,557056,22544603248067364,22544604489700504],[1342865416,688136,22544603248067364,22544604489700504],[1342865416,268468224,-22544604489700504,-22544603248067364],[1342865416,268599304,-22544604489700504,-22544603248067364],[1342865416,1074266112,-22544604489700504,-22544603248067364],[1342865416,1074397192,-22544604489700504,-22544603248067364],[1342865416,1342177280,22544603248067364,22544604489700504],[1342865416,1342308360,22544603248067364,22544604489700504],[1342865536,32896,-1975303130061553,-1975301889643525],[1342865536,557056,3950603932147814,3950606107262344],[1342865536,688256,1975301885638544,1975303134066536],[1342865536,268468224,-1975303134066536,-1975301885638544],[1342865536,268599424,-3950606107262344,-3950603932147814],[1342865536,269123584,1975301889643525,1975303130061553],[1342865536,1073741952,1975301889643525,1975303130061553],[1342865536,1074266112,-3950606107262344,-3950603932147814],[1342865536,1074397312,-1975303134066536,-1975301885638544],[1342865536,1342177280,1975301885638544,1975303134066536],[1342865536,1342308480,3950603932147814,3950606107262344],[1342865536,1342832640,-1975303130061553,-1975301889643525],[1343225984,67633152,6623801159963560,6623803284330947],[1343225984,68681856,6623801159963560,6623803284330947],[1343225984,1409810432,6623801159963560,6623803284330947],[1343225984,1410859136,6623801159963560,6623803284330947],[1343750144,67108992,-1975303102434961,-1975301917270118],[1343750144,67109888,1975301917270118,1975303102434961],[1343750144,68681856,-1975303102434961,-1975301917270118],[1343750144,68682752,1975301917270118,1975303102434961],[1343750144,1409286272,-1975303102434961,-1975301917270118],[1343750144,1409287168,1975301917270118,1975303102434961],[1343750144,1410859136,-1975303102434961,-1975301917270118],[1343750144,1410860032,1975301917270118,1975303102434961],[1409286145,67141637,1975301891852867,1975303127852212],[1409286145,268468229,-1975303127852212,-1975301891852867],[1409286145,1140883460,-1975303127852212,-1975301891852867],[1409286145,1342210052,1975301891852867,1975303127852212],[1409286146,67239946,-6623803337001160,-6623801107293350],[1409286146,268566538,1975301891852867,1975303127852212],[1409286146,335675400,4648499059714221,4648500364875210],[1409286146,1073872906,4648499059714221,4648500364875210],[1409286146,1140981768,1975301891852867,1975303127852212],[1409286146,1342308360,-6623803337001160,-6623801107293350],[1409286148,163840,13247603826989498,13247605061599516],[1409286148,557056,-13247605061599516,-13247603826989498],[1409286148,67108868,-1975304235590111,-1975300784114970],[1409286148,67141637,-1975303127852212,-1975301891852867],[1409286148,67141644,-1975303102468593,-1975301917236486],[1409286148,67239948,-6623803284297315,-6623801159997192],[1409286148,67272708,-47064511822048211,-47064508673192612],[1409286148,134250496,-13247605033203059,-13247603855385956],[1409286148,268435460,1975300784114970,1975304235590111],[1409286148,268468229,1975301891852867,1975303127852212],[1409286148,268468236,1975301917236486,1975303102468593],[1409286148,268566540,1975301917236486,1975303102468593],[1409286148,268599300,45089206614383552,45089208861152192],[1409286148,335675400,4648499087034444,4648500337554984],[1409286148,335708160,15222905744259616,15222908164034477],[1409286148,336101376,-13247605061599516,-13247603826989498],[1409286148,469794816,-13247605033203059,-13247603855385956],[1409286148,1073872908,4648499087034444,4648500337554984],[1409286148,1073905668,15222905744259616,15222908164034477],[1409286148,1074298884,-13247605061599516,-13247603826989498],[1409286148,1140850688,1975300784114970,1975304235590111],[1409286148,1140883457,1975301891852867,1975303127852212],[1409286148,1140883464,1975301917236486,1975303102468593],[1409286148,1140981768,1975301917236486,1975303102468593],[1409286148,1141014528,45089206614383552,45089208861152192],[1409286148,1207992324,-13247605033203059,-13247603855385956],[1409286148,1342177280,-1975304235590111,-1975300784114970],[1409286148,1342210049,-1975303127852212,-1975301891852867],[1409286148,1342210056,-1975303102468593,-1975301917236486],[1409286148,1342308360,-6623803284297315,-6623801159997192],[1409286148,1342341120,-47064511822048211,-47064508673192612],[1409286148,1409449988,13247603826989498,13247605061599516],[1409286148,1409843204,-13247605061599516,-13247603826989498],[1409286148,1543536644,-13247605033203059,-13247603855385956],[1409286148,17592186077184,13247603811716528,13247605076872486],[1409286148,17592521621504,13247603811716528,13247605076872486],[1409286148,17593259819012,13247603811716528,13247605076872486],[1409286148,17593595363332,13247603811716528,13247605076872486],[1409286148,35184372121600,-13247605076872486,-13247603811716528],[1409286148,35184707665920,-13247605076872486,-13247603811716528],[1409286148,35185445863428,-13247605076872486,-13247603811716528],[1409286148,35185781407748,-13247605076872486,-13247603811716528],[1409286148,140737555496964,3950603911967182,3950606127442978],[1409286148,140737756823556,-3950606127442978,-3950603911967182],[1409286148,140738629238784,-3950606127442978,-3950603911967182],[1409286148,140738830565376,3950603911967182,3950606127442978],[1409286152,0,-22544604789079444,-22544602948688428],[1409286152,163840,-1975303130061553,-1975301889643525],[1409286152,655360,13247603826989498,13247605061599516],[1409286152,67108872,6623799170377024,6623805273917482],[1409286152,67141644,1975301917236486,1975303102468593],[1409286152,67239946,6623801107293350,6623803337001160],[1409286152,67239948,6623801159997192,6623803284297315],[1409286152,67240072,6623801098016986,6623803346277523],[1409286152,67272712,-3950608753647640,-3950601285762513],[1409286152,67633288,4648499056652180,4648500367937249],[1409286152,67764232,-9297003420342855,-9296995428836002],[1409286152,134348800,13247603855385956,13247605033203059],[1409286152,201457672,6623801172992632,6623803271301876],[1409286152,268435464,-13247606172936084,-13247602715652933],[1409286152,268468236,-1975303102468593,-1975301917236486],[1409286152,268566538,-1975303127852212,-1975301891852867],[1409286152,268566540,-1975303102468593,-1975301917236486],[1409286152,268566664,-1975303134066536,-1975301885638544],[1409286152,268599304,3950601743215454,3950608296194700],[1409286152,269090824,-22544604485915178,-22544603251852693],[1409286152,335544320,-15920803457056280,-15920799836417081],[1409286152,335675394,-4648500364875210,-4648499059714221],[1409286152,335675396,-4648500337554984,-4648499087034444],[1409286152,335675520,-4648500367937249,-4648499056652180],[1409286152,335708160,-1975303102434961,-1975301917270118],[1409286152,336068736,-4648500367937249,-4648499056652180],[1409286152,336199680,45089204212760992,45089211262774750],[1409286152,469893120,6623801159963560,6623803284330947],[1409286152,1073741832,-15920803457056280,-15920799836417081],[1409286152,1073872906,-4648500364875210,-4648499059714221],[1409286152,1073872908,-4648500337554984,-4648499087034444],[1409286152,1073873032,-4648500367937249,-4648499056652180],[1409286152,1073905672,-1975303102434961,-1975301917270118],[1409286152,1074266248,-4648500367937249,-4648499056652180],[1409286152,1074397192,45089204212760992,45089211262774750],[1409286152,1140850688,-13247606172936084,-13247602715652933],[1409286152,1140883460,-1975303102468593,-1975301917236486],[1409286152,1140981762,-1975303127852212,-1975301891852867],[1409286152,1140981764,-1975303102468593,-1975301917236486],[1409286152,1140981888,-1975303134066536,-1975301885638544],[1409286152,1141014528,3950601743215454,3950608296194700],[1409286152,1141506048,-22544604485915178,-22544603251852693],[1409286152,1208090632,6623801159963560,6623803284330947],[1409286152,1342177280,6623799170377024,6623805273917482],[1409286152,1342210052,1975301917236486,1975303102468593],[1409286152,1342308354,6623801107293350,6623803337001160],[1409286152,1342308356,6623801159997192,6623803284297315],[1409286152,1342308480,6623801098016986,6623803346277523],[1409286152,1342341120,-3950608753647640,-3950601285762513],[1409286152,1342701696,4648499056652180,4648500367937249],[1409286152,1342832640,-9297003420342855,-9296995428836002],[1409286152,1409286152,-22544604789079444,-22544602948688428],[1409286152,1409449992,-1975303130061553,-1975301889643525],[1409286152,1409941512,13247603826989498,13247605061599516],[1409286152,1476526080,6623801172992632,6623803271301876],[1409286152,1543634952,13247603855385956,13247605033203059],[1409286152,17592186175488,-11272302715781341,-11272301153102595],[1409286152,17592253284360,24519905262899363,24519907494573587],[1409286152,17592454610952,-20569302302299032,-20569300415763760],[1409286152,17592521719808,-15222907934848161,-15222905973445933],[1409286152,17593259917320,-15222907934848161,-15222905973445933],[1409286152,17593327026176,-20569302302299032,-20569300415763760],[1409286152,17593528352768,24519905262899363,24519907494573587],[1409286152,17593595461640,-11272302715781341,-11272301153102595],[1409286152,35184372219904,13247603811716528,13247605076872486],[1409286152,35184439328776,-11272303070687196,-11272300798196740],[1409286152,35184707764224,24519905244697076,24519907512775874],[1409286152,35185445961736,24519905244697076,24519907512775874],[1409286152,35185714397184,-11272303070687196,-11272300798196740],[1409286152,35185781506056,13247603811716528,13247605076872486],[1409286152,140737488486400,-1975303142599947,-1975301877105131],[1409286152,140737555595272,-26495209992202640,-26495207784975390],[1409286152,140737756921864,24519905280236082,24519907477236870],[1409286152,140738629337088,24519905280236082,24519907477236870],[1409286152,140738830663680,-26495209992202640,-26495207784975390],[1409286152,140738897772552,-1975303142599947,-1975301877105131],[1409286208,67633344,4648499059714221,4648500364875210],[1409286208,336068736,-4648500364875210,-4648499059714221],[1409286208,1074266304,-4648500364875210,-4648499059714221],[1409286208,1342701696,4648499059714221,4648500364875210],[1409286272,557056,1975301889643525,1975303130061553],[1409286272,655360,-1975303130061553,-1975301889643525],[1409286272,67108992,-4648501525518317,-4648497899071108],[1409286272,67240072,-6623803346277523,-6623801098016986],[1409286272,67633288,-4648500367937249,-4648499056652180],[1409286272,67633344,-4648500364875210,-4648499059714221],[1409286272,67634304,-4648500337554984,-4648499087034444],[1409286272,67764352,-26495210655649026,-26495207121529005],[1409286272,68681856,-1975303102434961,-1975301917270118],[1409286272,201851008,6623801159963560,6623803284330947],[1409286272,268566664,1975301885638544,1975303134066536],[1409286272,268992640,1975301889643525,1975303130061553],[1409286272,269090944,20569300121791140,20569302596271653],[1409286272,335544320,4648497899071108,4648501525518317],[1409286272,335675400,4648499056652180,4648500367937249],[1409286272,336068616,4648499056652180,4648500367937249],[1409286272,336068672,4648499059714221,4648500364875210],[1409286272,336069632,4648499087034444,4648500337554984],[1409286272,336199680,3950603717154982,3950606322255178],[1409286272,337117184,1975301917270118,1975303102434961],[1409286272,470286336,-6623803284330947,-6623801159963560],[1409286272,1073741952,4648497899071108,4648501525518317],[1409286272,1073873032,4648499056652180,4648500367937249],[1409286272,1074266248,4648499056652180,4648500367937249],[1409286272,1074266304,4648499059714221,4648500364875210],[1409286272,1074267264,4648499087034444,4648500337554984],[1409286272,1074397312,3950603717154982,3950606322255178],[1409286272,1075314816,1975301917270118,1975303102434961],[1409286272,1140981768,1975301885638544,1975303134066536],[1409286272,1141407744,1975301889643525,1975303130061553],[1409286272,1141506048,20569300121791140,20569302596271653],[1409286272,1208483968,-6623803284330947,-6623801159963560],[1409286272,1342177280,-4648501525518317,-4648497899071108],[1409286272,1342308360,-6623803346277523,-6623801098016986],[1409286272,1342701576,-4648500367937249,-4648499056652180],[1409286272,1342701632,-4648500364875210,-4648499059714221],[1409286272,1342702592,-4648500337554984,-4648499087034444],[1409286272,1342832640,-26495210655649026,-26495207121529005],[1409286272,1343750144,-1975303102434961,-1975301917270118],[1409286272,1409843328,1975301889643525,1975303130061553],[1409286272,1409941632,-1975303130061553,-1975301889643525],[1409286272,1476919296,6623801159963560,6623803284330947],[1409286272,17592186568704,-1975303142599947,-1975301877105131],[1409286272,17592455004288,-1975303142599947,-1975301877105131],[1409286272,17593327419392,-1975303142599947,-1975301877105131],[1409286272,17593595854976,-1975303142599947,-1975301877105131],[1409286272,35184439722112,9296998263946318,9297000585232538],[1409286272,35184708157440,-9297000585232538,-9296998263946318],[1409286272,35185446355072,-9297000585232538,-9296998263946318],[1409286272,35185714790400,9296998263946318,9297000585232538],[1409286272,140737488879616,1975301877105131,1975303142599947],[1409286272,140737757315200,1975301877105131,1975303142599947],[1409286272,140738629730304,1975301877105131,1975303142599947],[1409286272,140738898165888,1975301877105131,1975303142599947],[1409287168,67634304,4648499087034444,4648500337554984],[1409287168,68682752,1975301917270118,1975303102434961],[1409287168,202376192,-13247605033203059,-13247603855385956],[1409287168,336068736,-4648500337554984,-4648499087034444],[1409287168,337117184,-1975303102434961,-1975301917270118],[1409287168,470810624,13247603855385956,13247605033203059],[1409287168,1074267264,-4648500337554984,-4648499087034444],[1409287168,1075315712,-1975303102434961,-1975301917270118],[1409287168,1209009152,13247603855385956,13247605033203059],[1409287168,1342701696,4648499087034444,4648500337554984],[1409287168,1343750144,1975301917270118,1975303102434961],[1409287168,1477443584,-13247605033203059,-13247603855385956],[1409318912,131076,-13247605061599516,-13247603826989498],[1409318912,524292,13247603826989498,13247605061599516],[1409318912,67272708,49039810731968040,49039814782977862],[1409318912,67272712,6623801159997192,6623803284297315],[1409318912,134217732,13247603855385956,13247605033203059],[1409318912,268599300,-47064511822081843,-47064508673158980],[1409318912,268599304,-1975303102468593,-1975301917236486],[1409318912,335675396,-15222908164034477,-15222905744259616],[1409318912,335675400,-4648500337554984,-4648499087034444],[1409318912,336068612,13247603826989498,13247605061599516],[1409318912,469762052,13247603855385956,13247605033203059],[1409318912,1073905668,-15222908164034477,-15222905744259616],[1409318912,1073905672,-4648500337554984,-4648499087034444],[1409318912,1074298884,13247603826989498,13247605061599516],[1409318912,1140981764,-47064511822081843,-47064508673158980],[1409318912,1140981768,-1975303102468593,-1975301917236486],[1409318912,1207992324,13247603855385956,13247605033203059],[1409318912,1342308356,49039810731968040,49039814782977862],[1409318912,1342308360,6623801159997192,6623803284297315],[1409318912,1409449988,-13247605061599516,-13247603826989498],[1409318912,1409843204,13247603826989498,13247605061599516],[1409318912,1543536644,13247603855385956,13247605033203059],[1409318912,17592186044420,-13247605076872486,-13247603811716528],[1409318912,17592521588740,-13247605076872486,-13247603811716528],[1409318912,17593259819012,-13247605076872486,-13247603811716528],[1409318912,17593595363332,-13247605076872486,-13247603811716528],[1409318912,35184372088836,13247603811716528,13247605076872486],[1409318912,35184707633156,13247603811716528,13247605076872486],[1409318912,35185445863428,13247603811716528,13247605076872486],[1409318912,35185781407748,13247603811716528,13247605076872486],[1409318912,140737555496964,-3950606127442978,-3950603911967182],[1409318912,140737756823556,3950603911967182,3950606127442978],[1409318912,140738629206020,3950603911967182,3950606127442978],[1409318912,140738830532612,-3950606127442978,-3950603911967182],[1409318917,67108865,1975301891852867,1975303127852212],[1409318917,67108868,-1975303127852212,-1975301891852867],[1409318917,268435457,-1975303127852212,-1975301891852867],[1409318917,268435460,1975301891852867,1975303127852212],[1409318917,1140883457,1975301891852867,1975303127852212],[1409318917,1140883460,-1975303127852212,-1975301891852867],[1409318917,1342210049,-1975303127852212,-1975301891852867],[1409318917,1342210052,1975301891852867,1975303127852212],[1409318924,67108868,-1975303102468593,-1975301917236486],[1409318924,67108872,1975301917236486,1975303102468593],[1409318924,268435460,1975301917236486,1975303102468593],[1409318924,268435464,-1975303102468593,-1975301917236486],[1409318924,1140883460,-1975303102468593,-1975301917236486],[1409318924,1140883464,1975301917236486,1975303102468593],[1409318924,1342210052,1975301917236486,1975303102468593],[1409318924,1342210056,-1975303102468593,-1975301917236486],[1409417216,32776,1975301889643525,1975303130061553],[1409417216,524296,-13247605061599516,-13247603826989498],[1409417216,67272708,-15222908164047479,-15222905744246613],[1409417216,67272712,-697899197873155,-697890187306122],[1409417216,67764232,4648494894531634,4648504530057793],[1409417216,67764352,-17896105464085903,-17896102849092541],[1409417216,134217736,-13247605033203059,-13247603855385956],[1409417216,201457672,-6623803271301876,-6623801172992632],[1409417216,268599300,15222905744246613,15222908164047479],[1409417216,268599304,-3950608753660642,-3950601285749510],[1409417216,269090824,24519905292829457,24519907464643494],[1409417216,335577096,6623801159963560,6623803284330947],[1409417216,336068616,-42416014569192714,-42416006501458678],[1409417216,336068736,17896102849092541,17896105464085903],[1409417216,469762056,-6623803284330947,-6623801159963560],[1409417216,1073905672,6623801159963560,6623803284330947],[1409417216,1074397192,-42416014569192714,-42416006501458678],[1409417216,1074397312,17896102849092541,17896105464085903],[1409417216,1140883460,15222905744246613,15222908164047479],[1409417216,1140883464,-3950608753660642,-3950601285749510],[1409417216,1141374984,24519905292829457,24519907464643494],[1409417216,1208090632,-6623803284330947,-6623801159963560],[1409417216,1342210052,-15222908164047479,-15222905744246613],[1409417216,1342210056,-697899197873155,-697890187306122],[1409417216,1342701576,4648494894531634,4648504530057793],[1409417216,1342701696,-17896105464085903,-17896102849092541],[1409417216,1409449992,1975301889643525,1975303130061553],[1409417216,1409941512,-13247605061599516,-13247603826989498],[1409417216,1476395016,-6623803271301876,-6623801172992632],[1409417216,1543634952,-13247605033203059,-13247603855385956],[1409417216,17592186044424,11272301153102595,11272302715781341],[1409417216,17592253284360,-24519907494573587,-24519905262899363],[1409417216,17592454610952,20569300415763760,20569302302299032],[1409417216,17592521588744,15222905973445933,15222907934848161],[1409417216,17593259917320,15222905973445933,15222907934848161],[1409417216,17593326895112,20569300415763760,20569302302299032],[1409417216,17593528221704,-24519907494573587,-24519905262899363],[1409417216,17593595461640,11272301153102595,11272302715781341],[1409417216,35184372088840,-13247605076872486,-13247603811716528],[1409417216,35184439328776,11272300798196740,11272303070687196],[1409417216,35184707633160,-24519907512775874,-24519905244697076],[1409417216,35185445961736,-24519907512775874,-24519905244697076],[1409417216,35185714266120,11272300798196740,11272303070687196],[1409417216,35185781506056,-13247605076872486,-13247603811716528],[1409417216,140737488355336,1975301877105131,1975303142599947],[1409417216,140737555595272,26495207784975390,26495209992202640],[1409417216,140737756921864,-24519907477236870,-24519905280236082],[1409417216,140738629206024,-24519907477236870,-24519905280236082],[1409417216,140738830532616,26495207784975390,26495209992202640],[1409417216,140738897772552,1975301877105131,1975303142599947],[1409417226,67108866,-6623803337001160,-6623801107293350],[1409417226,67108872,6623801107293350,6623803337001160],[1409417226,268435458,1975301891852867,1975303127852212],[1409417226,268435464,-1975303127852212,-1975301891852867],[1409417226,335675394,-4648500364875210,-4648499059714221],[1409417226,335675400,4648499059714221,4648500364875210],[1409417226,1073741826,4648499059714221,4648500364875210],[1409417226,1073741832,-4648500364875210,-4648499059714221],[1409417226,1140981762,-1975303127852212,-1975301891852867],[1409417226,1140981768,1975301891852867,1975303127852212],[1409417226,1342308354,6623801107293350,6623803337001160],[1409417226,1342308360,-6623803337001160,-6623801107293350],[1409417228,67108868,-6623803284297315,-6623801159997192],[1409417228,67108872,6623801159997192,6623803284297315],[1409417228,268435460,1975301917236486,1975303102468593],[1409417228,268435464,-1975303102468593,-1975301917236486],[1409417228,335675396,-4648500337554984,-4648499087034444],[1409417228,335675400,4648499087034444,4648500337554984],[1409417228,1073741828,4648499087034444,4648500337554984],[1409417228,1073741832,-4648500337554984,-4648499087034444],[1409417228,1140981764,-1975303102468593,-1975301917236486],[1409417228,1140981768,1975301917236486,1975303102468593],[1409417228,1342308356,6623801159997192,6623803284297315],[1409417228,1342308360,-6623803284297315,-6623801159997192],[1409417352,67108872,6623801098016986,6623803346277523],[1409417352,67108992,-6623803346277523,-6623801098016986],[1409417352,268435464,-1975303134066536,-1975301885638544],[1409417352,268435584,1975301885638544,1975303134066536],[1409417352,335675400,4648499056652180,4648500367937249],[1409417352,335675520,-4648500367937249,-4648499056652180],[1409417352,1073741832,-4648500367937249,-4648499056652180],[1409417352,1073741952,4648499056652180,4648500367937249],[1409417352,1140981768,1975301885638544,1975303134066536],[1409417352,1140981888,-1975303134066536,-1975301885638544],[1409417352,1342308360,-6623803346277523,-6623801098016986],[1409417352,1342308480,6623801098016986,6623803346277523],[1409449988,131076,-13247605061599516,-13247603826989498],[1409449988,163840,13247603826989498,13247605061599516],[1409449988,67108868,-7321700188581701,-7321693640892082],[1409449988,67141632,-3950609211113582,-3950600828296569],[1409449988,67239936,-1975303102468593,-1975301917236486],[1409449988,67272708,-13247605061578886,-13247603827010127],[1409449988,268435460,18593996492884744,18594001205472974],[1409449988,268468224,-7321700188594704,-7321693640879080],[1409449988,268566528,1975301917236486,1975303102468593],[1409449988,268599300,13247603827010127,13247605061578886],[1409449988,335675396,-1975303102434961,-1975301917270118],[1409449988,335708160,1975301917270118,1975303102434961],[1409449988,1073741828,1975301917270118,1975303102434961],[1409449988,1073774592,-1975303102434961,-1975301917270118],[1409449988,1140850688,13247603827010127,13247605061578886],[1409449988,1140883460,1975301917236486,1975303102468593],[1409449988,1140981764,-7321700188594704,-7321693640879080],[1409449988,1141014528,18593996492884744,18594001205472974],[1409449988,1342177280,-13247605061578886,-13247603827010127],[1409449988,1342210052,-1975303102468593,-1975301917236486],[1409449988,1342308356,-3950609211113582,-3950600828296569],[1409449988,1342341120,-7321700188581701,-7321693640892082],[1409449988,1409286148,13247603826989498,13247605061599516],[1409449988,1409318912,-13247605061599516,-13247603826989498],[1409449992,32776,1975301889643525,1975303130061553],[1409449992,163840,-1975303130061553,-1975301889643525],[1409449992,67108872,47064508673192612,47064511822048211],[1409449992,67141632,8599103049661346,8599106414338238],[1409449992,67239936,-53688314809147586,-53688310130387744],[1409449992,67272712,1975301889664154,1975303130040923],[1409449992,268435464,-45089208861152192,-45089206614383552],[1409449992,268468224,-3950606232509516,-3950603806900640],[1409449992,268566528,47064508673158980,47064511822081843],[1409449992,268599304,-1975303130040923,-1975301889664154],[1409449992,335577096,8599103049607085,8599106414392500],[1409449992,335675400,-4648500337554984,-4648499087034444],[1409449992,335708160,-3950606232496514,-3950603806913643],[1409449992,1073741832,-3950606232496514,-3950603806913643],[1409449992,1073774592,-4648500337554984,-4648499087034444],[1409449992,1073872896,8599103049607085,8599106414392500],[1409449992,1140850688,-1975303130040923,-1975301889664154],[1409449992,1140883464,47064508673158980,47064511822081843],[1409449992,1140981768,-3950606232509516,-3950603806900640],[1409449992,1141014528,-45089208861152192,-45089206614383552],[1409449992,1342177280,1975301889664154,1975303130040923],[1409449992,1342210056,-53688314809147586,-53688310130387744],[1409449992,1342308360,8599103049661346,8599106414338238],[1409449992,1342341120,47064508673192612,47064511822048211],[1409449992,1409286152,-1975303130061553,-1975301889643525],[1409449992,1409417216,1975301889643525,1975303130061553],[1409810432,32896,-1975303130061553,-1975301889643525],[1409810432,131200,1975301889643525,1975303130061553],[1409810432,67764232,6623801098016986,6623803346277523],[1409810432,67764352,31143706348854335,31143710852913125],[1409810432,68681856,6623801159963560,6623803284330947],[1409810432,201851008,-6623803284330947,-6623801159963560],[1409810432,268992640,-1975303130061553,-1975301889643525],[1409810432,269090824,-1975303134066536,-1975301885638544],[1409810432,269090944,-20569302596271653,-20569300121791140],[1409810432,335675400,-4648500367937249,-4648499056652180],[1409810432,335675520,-8599106519519277,-8599102944480312],[1409810432,336593024,-6623803284330947,-6623801159963560],[1409810432,469762176,6623801159963560,6623803284330947],[1409810432,1074397192,-4648500367937249,-4648499056652180],[1409810432,1074397312,-8599106519519277,-8599102944480312],[1409810432,1075314816,-6623803284330947,-6623801159963560],[1409810432,1140883584,-1975303130061553,-1975301889643525],[1409810432,1140981768,-1975303134066536,-1975301885638544],[1409810432,1140981888,-20569302596271653,-20569300121791140],[1409810432,1208483968,6623801159963560,6623803284330947],[1409810432,1342308360,6623801098016986,6623803346277523],[1409810432,1342308480,31143706348854335,31143710852913125],[1409810432,1343225984,6623801159963560,6623803284330947],[1409810432,1409843328,-1975303130061553,-1975301889643525],[1409810432,1409941632,1975301889643525,1975303130061553],[1409810432,1476395136,-6623803284330947,-6623801159963560],[1409810432,17592186044544,1975301877105131,1975303142599947],[1409810432,17592455004288,1975301877105131,1975303142599947],[1409810432,17593326895232,1975301877105131,1975303142599947],[1409810432,17593595854976,1975301877105131,1975303142599947],[1409810432,35184439722112,-9297000585232538,-9296998263946318],[1409810432,35184707633280,9296998263946318,9297000585232538],[1409810432,35185446355072,9296998263946318,9297000585232538],[1409810432,35185714266240,-9297000585232538,-9296998263946318],[1409810432,140737488355456,-1975303142599947,-1975301877105131],[1409810432,140737757315200,-1975303142599947,-1975301877105131],[1409810432,140738629206144,-1975303142599947,-1975301877105131],[1409810432,140738898165888,-1975303142599947,-1975301877105131],[1409810568,67108872,4648499056652180,4648500367937249],[1409810568,67108992,-4648500367937249,-4648499056652180],[1409810568,336068616,4648499056652180,4648500367937249],[1409810568,336068736,-4648500367937249,-4648499056652180],[1409810568,1073741832,-4648500367937249,-4648499056652180],[1409810568,1073741952,4648499056652180,4648500367937249],[1409810568,1342701576,-4648500367937249,-4648499056652180],[1409810568,1342701696,4648499056652180,4648500367937249],[1409810624,67108928,4648499059714221,4648500364875210],[1409810624,67108992,-4648500364875210,-4648499059714221],[1409810624,336068672,4648499059714221,4648500364875210],[1409810624,336068736,-4648500364875210,-4648499059714221],[1409810624,1073741888,-4648500364875210,-4648499059714221],[1409810624,1073741952,4648499059714221,4648500364875210],[1409810624,1342701632,-4648500364875210,-4648499059714221],[1409810624,1342701696,4648499059714221,4648500364875210],[1409811584,67108992,-4648500337554984,-4648499087034444],[1409811584,67109888,4648499087034444,4648500337554984],[1409811584,336068736,-4648500337554984,-4648499087034444],[1409811584,336069632,4648499087034444,4648500337554984],[1409811584,1073741952,4648499087034444,4648500337554984],[1409811584,1073742848,-4648500337554984,-4648499087034444],[1409811584,1342701696,4648499087034444,4648500337554984],[1409811584,1342702592,-4648500337554984,-4648499087034444],[1409843204,524292,13247603826989498,13247605061599516],[1409843204,557056,-13247605061599516,-13247603826989498],[1409843204,268435460,-13247605061599516,-13247603826989498],[1409843204,268468224,13247603826989498,13247605061599516],[1409843204,1141374980,13247603826989498,13247605061599516],[1409843204,1141407744,-13247605061599516,-13247603826989498],[1409843204,1409286148,-13247605061599516,-13247603826989498],[1409843204,1409318912,13247603826989498,13247605061599516],[1409843328,32896,-1975303130061553,-1975301889643525],[1409843328,557056,1975301889643525,1975303130061553],[1409843328,335577216,-1975303130061553,-1975301889643525],[1409843328,336101376,1975301889643525,1975303130061553],[1409843328,1073741952,1975301889643525,1975303130061553],[1409843328,1074266112,-1975303130061553,-1975301889643525],[1409843328,1409286272,1975301889643525,1975303130061553],[1409843328,1409810432,-1975303130061553,-1975301889643525],[1409941512,524296,-13247605061599516,-13247603826989498],[1409941512,655360,13247603826989498,13247605061599516],[1409941512,67108872,26495207121529005,26495210655649026],[1409941512,67239936,-33119013675915179,-33119008545557361],[1409941512,67633152,8599102955928264,8599106508071324],[1409941512,67764232,1975301857911278,1975303161793801],[1409941512,268435464,-9297000658925680,-9296998190253177],[1409941512,268566528,11272300231229941,11272303637653996],[1409941512,268959744,-1975303134066536,-1975301885638544],[1409941512,335544320,-1975303161793801,-1975301857911278],[1409941512,335675400,-6623803529731050,-6623800914563458],[1409941512,336068616,8599102944480312,8599106519519277],[1409941512,336199680,-3950606322255178,-3950603717154982],[1409941512,1073741832,-3950606322255178,-3950603717154982],[1409941512,1073872896,8599102944480312,8599106519519277],[1409941512,1074266112,-6623803529731050,-6623800914563458],[1409941512,1074397192,-1975303161793801,-1975301857911278],[1409941512,1140981768,-1975303134066536,-1975301885638544],[1409941512,1141374984,11272300231229941,11272303637653996],[1409941512,1141506048,-9297000658925680,-9296998190253177],[1409941512,1342177280,1975301857911278,1975303161793801],[1409941512,1342308360,8599102955928264,8599106508071324],[1409941512,1342701576,-33119013675915179,-33119008545557361],[1409941512,1342832640,26495207121529005,26495210655649026],[1409941512,1409286152,13247603826989498,13247605061599516],[1409941512,1409417216,-13247605061599516,-13247603826989498],[1409941632,131200,1975301889643525,1975303130061553],[1409941632,655360,-1975303130061553,-1975301889643525],[1409941632,67108992,-1975306045508212,-1975298974196867],[1409941632,67239936,-4648500367937249,-4648499056652180],[1409941632,67633152,-6623806726760819,-6623797717533688],[1409941632,67764352,-13247605096148654,-13247603792440361],[1409941632,268435584,22544603251852693,22544604485915178],[1409941632,268959744,-22544604485915178,-22544603251852693],[1409941632,335544320,13247603792440361,13247605096148654],[1409941632,335675520,31143705027114464,31143712174652992],[1409941632,336068736,4648499056652180,4648500367937249],[1409941632,336199680,-22544606473695306,-22544601264072564],[1409941632,1073741952,-22544606473695306,-22544601264072564],[1409941632,1073872896,4648499056652180,4648500367937249],[1409941632,1074266112,31143705027114464,31143712174652992],[1409941632,1074397312,13247603792440361,13247605096148654],[1409941632,1140981888,-22544604485915178,-22544603251852693],[1409941632,1141506048,22544603251852693,22544604485915178],[1409941632,1342177280,-13247605096148654,-13247603792440361],[1409941632,1342308480,-6623806726760819,-6623797717533688],[1409941632,1342701696,-4648500367937249,-4648499056652180],[1409941632,1342832640,-1975306045508212,-1975298974196867],[1409941632,1409286272,-1975303130061553,-1975301889643525],[1409941632,1409810432,1975301889643525,1975303130061553],[1410334720,68681856,-4648500337554984,-4648499087034444],[1410334720,68682752,-1975303102434961,-1975301917270118],[1410334720,202376192,13247603855385956,13247605033203059],[1410334720,336068736,4648499087034444,4648500337554984],[1410334720,336069632,1975301917270118,1975303102434961],[1410334720,469763072,-13247605033203059,-13247603855385956],[1410334720,1075314816,4648499087034444,4648500337554984],[1410334720,1075315712,1975301917270118,1975303102434961],[1410334720,1209009152,-13247605033203059,-13247603855385956],[1410334720,1342701696,-4648500337554984,-4648499087034444],[1410334720,1342702592,-1975303102434961,-1975301917270118],[1410334720,1476396032,13247603855385956,13247605033203059],[1410859136,67108992,-1975303102434961,-1975301917270118],[1410859136,67633152,6623801159963560,6623803284330947],[1410859136,68157440,-4648500337554984,-4648499087034444],[1410859136,336068736,4648499087034444,4648500337554984],[1410859136,336593024,-6623803284330947,-6623801159963560],[1410859136,337117184,1975301917270118,1975303102434961],[1410859136,1073741952,1975301917270118,1975303102434961],[1410859136,1074266112,-6623803284330947,-6623801159963560],[1410859136,1074790400,4648499087034444,4648500337554984],[1410859136,1342701696,-4648500337554984,-4648499087034444],[1410859136,1343225984,6623801159963560,6623803284330947],[1410859136,1343750144,-1975303102434961,-1975301917270118],[1410860032,67109888,1975301917270118,1975303102434961],[1410860032,68157440,-1975303102434961,-1975301917270118],[1410860032,336069632,1975301917270118,1975303102434961],[1410860032,337117184,-1975303102434961,-1975301917270118],[1410860032,1073742848,-1975303102434961,-1975301917270118],[1410860032,1074790400,1975301917270118,1975303102434961],[1410860032,1342702592,-1975303102434961,-1975301917270118],[1410860032,1343750144,1975301917270118,1975303102434961],[1476395016,201457672,-6623803271301876,-6623801172992632],[1476395016,335675400,6623801172992632,6623803271301876],[1476395016,1275199488,6623801172992632,6623803271301876],[1476395016,1409417216,-6623803271301876,-6623801172992632],[1476395136,67633152,-13247605033203059,-13247603855385956],[1476395136,201851008,-6623803284330947,-6623801159963560],[1476395136,336068736,-6623803271301876,-6623801172992632],[1476395136,1275592704,-6623803271301876,-6623801172992632],[1476395136,1409810432,-6623803284330947,-6623801159963560],[1476395136,1544028288,-13247605033203059,-13247603855385956],[1476396032,68157440,13247603855385956,13247605033203059],[1476396032,202376192,13247603855385956,13247605033203059],[1476396032,1410334720,13247603855385956,13247605033203059],[1476396032,1544553472,13247603855385956,13247605033203059],[1476526080,201457672,6623801172992632,6623803271301876],[1476526080,335675400,-6623803271301876,-6623801172992632],[1476526080,1275068424,-6623803271301876,-6623801172992632],[1476526080,1409286152,6623801172992632,6623803271301876],[1476919296,67108992,13247603855385956,13247605033203059],[1476919296,201851008,6623801159963560,6623803284330947],[1476919296,336068736,6623801172992632,6623803271301876],[1476919296,1275068544,6623801172992632,6623803271301876],[1476919296,1409286272,6623801159963560,6623803284330947],[1476919296,1544028288,13247603855385956,13247605033203059],[1477443584,67109888,-13247605033203059,-13247603855385956],[1477443584,202376192,-13247605033203059,-13247603855385956],[1477443584,1409287168,-13247605033203059,-13247603855385956],[1477443584,1544553472,-13247605033203059,-13247603855385956],[1543536644,134217732,13247603855385956,13247605033203059],[1543536644,134250496,-13247605033203059,-13247603855385956],[1543536644,268435460,-13247605033203059,-13247603855385956],[1543536644,268468224,13247603855385956,13247605033203059],[1543536644,1275068420,13247603855385956,13247605033203059],[1543536644,1275101184,-13247605033203059,-13247603855385956],[1543536644,1409286148,-13247605033203059,-13247603855385956],[1543536644,1409318912,13247603855385956,13247605033203059],[1543634952,134217736,-13247605033203059,-13247603855385956],[1543634952,134348800,13247603855385956,13247605033203059],[1543634952,268435464,13247603855385956,13247605033203059],[1543634952,268566528,-13247605033203059,-13247603855385956],[1543634952,1275068424,-13247605033203059,-13247603855385956],[1543634952,1275199488,13247603855385956,13247605033203059],[1543634952,1409286152,13247603855385956,13247605033203059],[1543634952,1409417216,-13247605033203059,-13247603855385956],[1544028288,67108992,13247603855385956,13247605033203059],[1544028288,67633152,-13247605033203059,-13247603855385956],[1544028288,469762176,13247603855385956,13247605033203059],[1544028288,470286336,-13247605033203059,-13247603855385956],[1544028288,1073741952,-13247605033203059,-13247603855385956],[1544028288,1074266112,13247603855385956,13247605033203059],[1544028288,1476395136,-13247605033203059,-13247603855385956],[1544028288,1476919296,13247603855385956,13247605033203059],[1544553472,67109888,-13247605033203059,-13247603855385956],[1544553472,68157440,13247603855385956,13247605033203059],[1544553472,469763072,-13247605033203059,-13247603855385956],[1544553472,470810624,13247603855385956,13247605033203059],[1544553472,1073742848,13247603855385956,13247605033203059],[1544553472,1074790400,-13247605033203059,-13247603855385956],[1544553472,1476396032,13247603855385956,13247605033203059],[1544553472,1477443584,-13247605033203059,-13247603855385956],[549755813896,2100352,-1975303104304567,-1975301915400511],[549755813896,3146880,-1975303106832961,-1975301912872117],[549755813896,3670144,13247603851021587,13247605037567427],[549755813896,3801088,13247603851851071,13247605036737943],[549755813896,33557632,-22544604432275006,-22544603305492866],[549755813896,549757914248,-1975303104304567,-1975301915400511],[549755813896,549758960776,-1975303106832961,-1975301912872117],[549755813896,549759484040,13247603851021587,13247605037567427],[549755813896,549759614984,13247603851851071,13247605036737943],[549755813896,549789371528,-22544604432275006,-22544603305492866],[549755814016,2100232,1975301915400511,1975303104304567],[549755814016,3146760,1975301912872117,1975303106832961],[549755814016,3670024,-13247605037567427,-13247603851021587],[549755814016,3801088,-13247605036737943,-13247603851851071],[549755814016,33557512,22544603305492866,22544604432275006],[549755814016,549757914248,1975301915400511,1975303104304567],[549755814016,549758960776,1975301912872117,1975303106832961],[549755814016,549759484040,-13247605037567427,-13247603851021587],[549755814016,549759615104,-13247605036737943,-13247603851851071],[549755814016,549789371528,22544603305492866,22544604432275006],[549755815048,2100232,1975301915400511,1975303104304567],[549755815048,2100352,-1975303104304567,-1975301915400511],[549755815048,3146760,1975301912872117,1975303106832961],[549755815048,3146880,-1975303106832961,-1975301912872117],[549755815048,33557512,22544603305492866,22544604432275006],[549755815048,33557632,-22544604432275006,-22544603305492866],[549755815048,549757913096,-1975303104304567,-1975301915400511],[549755815048,549757913216,1975301915400511,1975303104304567],[549755815048,549758959624,-1975303106832961,-1975301912872117],[549755815048,549758959744,1975301912872117,1975303106832961],[549755815048,549789370376,-22544604432275006,-22544603305492866],[549755815048,549789370496,22544603305492866,22544604432275006],[549755816968,2097280,-1975303104304567,-1975301915400511],[549755816968,2098312,-1975303104304567,-1975301915400511],[549755816968,33554560,-22544604432275006,-22544603305492866],[549755816968,33555592,-22544604432275006,-22544603305492866],[549755816968,549757913216,-1975303104304567,-1975301915400511],[549755816968,549757914248,-1975303104304567,-1975301915400511],[549755816968,549789370496,-22544604432275006,-22544603305492866],[549755816968,549789371528,-22544604432275006,-22544603305492866],[549755817088,2097160,1975301915400511,1975303104304567],[549755817088,2098312,1975301915400511,1975303104304567],[549755817088,33554440,22544603305492866,22544604432275006],[549755817088,33555592,22544603305492866,22544604432275006],[549755817088,549757913096,1975301915400511,1975303104304567],[549755817088,549757914248,1975301915400511,1975303104304567],[549755817088,549789370376,22544603305492866,22544604432275006],[549755817088,549789371528,22544603305492866,22544604432275006],[549755944960,3670024,-13247605036737943,-13247603851851071],[549755944960,3670144,-13247605037567427,-13247603851021587],[549755944960,3671040,1975301912872117,1975303106832961],[549755944960,3672064,1975301915400511,1975303104304567],[549755944960,37224448,22544603305492866,22544604432275006],[549755944960,549759614984,-13247605036737943,-13247603851851071],[549755944960,549759615104,-13247605037567427,-13247603851021587],[549755944960,549759616000,1975301912872117,1975303106832961],[549755944960,549759617024,1975301915400511,1975303104304567],[549755944960,549793169408,22544603305492866,22544604432275006],[549756338176,3276928,26495207853670452,26495209923507576],[549756338176,3277824,-1975303106832961,-1975301912872117],[549756338176,3278848,-1975303104304567,-1975301915400511],[549756338176,36831232,-22544604432275006,-22544603305492866],[549756338176,549759615104,26495207853670452,26495209923507576],[549756338176,549759616000,-1975303106832961,-1975301912872117],[549756338176,549759617024,-1975303104304567,-1975301915400511],[549756338176,549793169408,-22544604432275006,-22544603305492866],[549756338312,3670024,-13247605037567427,-13247603851021587],[549756338312,3670144,13247603851021587,13247605037567427],[549756338312,549758959624,13247603851021587,13247605037567427],[549756338312,549758959744,-13247605037567427,-13247603851021587],[549756469256,3670024,-13247605036737943,-13247603851851071],[549756469256,3801088,13247603851851071,13247605036737943],[549756469256,549758959624,13247603851851071,13247605036737943],[549756469256,549759090688,-13247605036737943,-13247603851851071],[549756469376,3276928,26495207853670452,26495209923507576],[549756469376,3670144,-13247605037567427,-13247603851021587],[549756469376,3801088,-13247605036737943,-13247603851851071],[549756469376,549758959744,-13247605036737943,-13247603851851071],[549756469376,549759090688,-13247605037567427,-13247603851021587],[549756469376,549759483904,26495207853670452,26495209923507576],[549756470272,3277824,-26495209923507576,-26495207853670452],[549756470272,3671040,26495207853670452,26495209923507576],[549756470272,549759090688,26495207853670452,26495209923507576],[549756470272,549759483904,-26495209923507576,-26495207853670452],[549756863496,2097280,-1975303106832961,-1975301912872117],[549756863496,2098312,-1975303106832961,-1975301912872117],[549756863496,549758959744,-1975303106832961,-1975301912872117],[549756863496,549758960776,-1975303106832961,-1975301912872117],[549756863616,2097160,1975301912872117,1975303106832961],[549756863616,2098312,1975301912872117,1975303106832961],[549756863616,549758959624,1975301912872117,1975303106832961],[549756863616,549758960776,1975301912872117,1975303106832961],[549756993664,2621440,-26495209923507576,-26495207853670452],[549756993664,2752640,-26495209923507576,-26495207853670452],[549756993664,549759483904,-26495209923507576,-26495207853670452],[549756993664,549759615104,-26495209923507576,-26495207853670452],[549756994560,2621440,1975301912872117,1975303106832961],[549756994560,2753536,26495207853670452,26495209923507576],[549756994560,3801088,-24519907395040631,-24519905362432319],[549756994560,549758436352,-24519907395040631,-24519905362432319],[549756994560,549759483904,26495207853670452,26495209923507576],[549756994560,549759616000,1975301912872117,1975303106832961],[549756995584,2621440,24519905362432319,24519907395040631],[549756995584,3801088,24519905362432319,24519907395040631],[549756995584,549758437376,24519905362432319,24519907395040631],[549756995584,549759617024,24519905362432319,24519907395040631],[549757386760,2097280,13247603851021587,13247605037567427],[549757386760,2228224,13247603851851071,13247605036737943],[549757386760,2621576,13247603851021587,13247605037567427],[549757386760,2752520,13247603851851071,13247605036737943],[549757386760,549758959744,13247603851021587,13247605037567427],[549757386760,549759090688,13247603851851071,13247605036737943],[549757386760,549759484040,13247603851021587,13247605037567427],[549757386760,549759614984,13247603851851071,13247605036737943],[549757386880,2097160,-13247605037567427,-13247603851021587],[549757386880,2228224,13247603851021587,13247605037567427],[549757386880,2621576,-13247605037567427,-13247603851021587],[549757386880,2752640,13247603851021587,13247605037567427],[549757386880,549758959624,-13247605037567427,-13247603851021587],[549757386880,549759090688,13247603851021587,13247605037567427],[549757386880,549759484040,-13247605037567427,-13247603851021587],[549757386880,549759615104,13247603851021587,13247605037567427],[549757387776,2228224,-1975303106832961,-1975301912872117],[549757387776,2753536,-26495209923507576,-26495207853670452],[549757387776,3801088,24519905362432319,24519907395040631],[549757387776,549758043136,24519905362432319,24519907395040631],[549757387776,549759090688,-26495209923507576,-26495207853670452],[549757387776,549759616000,-1975303106832961,-1975301912872117],[549757388800,2228224,-24519907395040631,-24519905362432319],[549757388800,3801088,-24519907395040631,-24519905362432319],[549757388800,549758044160,-24519907395040631,-24519905362432319],[549757388800,549759617024,-24519907395040631,-24519905362432319],[549757517824,2097160,-13247605036737943,-13247603851851071],[549757517824,2097280,13247603851851071,13247605036737943],[549757517824,2752520,-13247605036737943,-13247603851851071],[549757517824,2752640,13247603851851071,13247605036737943],[549757517824,3277824,24519905362432319,24519907395040631],[549757517824,3278848,-1975303104304567,-1975301915400511],[549757517824,3671040,-24519907395040631,-24519905362432319],[549757517824,3672064,1975301915400511,1975303104304567],[549757517824,36831232,-22544604432275006,-22544603305492866],[549757517824,37224448,22544603305492866,22544604432275006],[549757517824,549758043136,-24519907395040631,-24519905362432319],[549757517824,549758044160,1975301915400511,1975303104304567],[549757517824,549758436352,24519905362432319,24519907395040631],[549757517824,549758437376,-1975303104304567,-1975301915400511],[549757517824,549758959624,-13247605036737943,-13247603851851071],[549757517824,549758959744,13247603851851071,13247605036737943],[549757517824,549759614984,-13247605036737943,-13247603851851071],[549757517824,549759615104,13247603851851071,13247605036737943],[549757517824,549791596544,22544603305492866,22544604432275006],[549757517824,549791989760,-22544604432275006,-22544603305492866],[549757913096,2098312,1975301915400511,1975303104304567],[549757913096,2100352,-1975303104304567,-1975301915400511],[549757913096,549755815048,-1975303104304567,-1975301915400511],[549757913096,549755817088,1975301915400511,1975303104304567],[549757913216,2098312,-1975303104304567,-1975301915400511],[549757913216,2100232,1975301915400511,1975303104304567],[549757913216,549755815048,1975301915400511,1975303104304567],[549757913216,549755816968,-1975303104304567,-1975301915400511],[549757914248,2097160,1975301915400511,1975303104304567],[549757914248,2097280,-1975303104304567,-1975301915400511],[549757914248,2100232,1975301915400511,1975303104304567],[549757914248,2100352,-1975303104304567,-1975301915400511],[549757914248,549755813896,-1975303104304567,-1975301915400511],[549757914248,549755814016,1975301915400511,1975303104304567],[549757914248,549755816968,-1975303104304567,-1975301915400511],[549757914248,549755817088,1975301915400511,1975303104304567],[549758043136,3671040,-24519907395040631,-24519905362432319],[549758043136,3801088,24519905362432319,24519907395040631],[549758043136,549757387776,24519905362432319,24519907395040631],[549758043136,549757517824,-24519907395040631,-24519905362432319],[549758044160,1705984,22544603305492866,22544604432275006],[549758044160,3672064,1975301915400511,1975303104304567],[549758044160,3801088,-24519907395040631,-24519905362432319],[549758044160,549757388800,-24519907395040631,-24519905362432319],[549758044160,549757517824,1975301915400511,1975303104304567],[549758044160,549759483904,22544603305492866,22544604432275006],[549758436352,3277824,24519905362432319,24519907395040631],[549758436352,3801088,-24519907395040631,-24519905362432319],[549758436352,549756994560,-24519907395040631,-24519905362432319],[549758436352,549757517824,24519905362432319,24519907395040631],[549758437376,1705984,-22544604432275006,-22544603305492866],[549758437376,3278848,-1975303104304567,-1975301915400511],[549758437376,3801088,24519905362432319,24519907395040631],[549758437376,549756995584,24519905362432319,24519907395040631],[549758437376,549757517824,-1975303104304567,-1975301915400511],[549758437376,549759090688,-22544604432275006,-22544603305492866],[549758959624,2098312,1975301912872117,1975303106832961],[549758959624,2621576,-13247605037567427,-13247603851021587],[549758959624,2752520,-13247605036737943,-13247603851851071],[549758959624,3146880,-1975303106832961,-1975301912872117],[549758959624,3670144,13247603851021587,13247605037567427],[549758959624,3801088,13247603851851071,13247605036737943],[549758959624,549755815048,-1975303106832961,-1975301912872117],[549758959624,549756338312,13247603851021587,13247605037567427],[549758959624,549756469256,13247603851851071,13247605036737943],[549758959624,549756863616,1975301912872117,1975303106832961],[549758959624,549757386880,-13247605037567427,-13247603851021587],[549758959624,549757517824,-13247605036737943,-13247603851851071],[549758959744,2098312,-1975303106832961,-1975301912872117],[549758959744,2621576,13247603851021587,13247605037567427],[549758959744,2752640,13247603851851071,13247605036737943],[549758959744,3146760,1975301912872117,1975303106832961],[549758959744,3670024,-13247605037567427,-13247603851021587],[549758959744,3801088,-13247605036737943,-13247603851851071],[549758959744,549755815048,1975301912872117,1975303106832961],[549758959744,549756338312,-13247605037567427,-13247603851021587],[549758959744,549756469376,-13247605036737943,-13247603851851071],[549758959744,549756863496,-1975303106832961,-1975301912872117],[549758959744,549757386760,13247603851021587,13247605037567427],[549758959744,549757517824,13247603851851071,13247605036737943],[549758960776,2097160,1975301912872117,1975303106832961],[549758960776,2097280,-1975303106832961,-1975301912872117],[549758960776,3146760,1975301912872117,1975303106832961],[549758960776,3146880,-1975303106832961,-1975301912872117],[549758960776,549755813896,-1975303106832961,-1975301912872117],[549758960776,549755814016,1975301912872117,1975303106832961],[549758960776,549756863496,-1975303106832961,-1975301912872117],[549758960776,549756863616,1975301912872117,1975303106832961],[549759090688,526336,-22544604432275006,-22544603305492866],[549759090688,1705984,-22544604432275006,-22544603305492866],[549759090688,2752520,13247603851851071,13247605036737943],[549759090688,2752640,13247603851021587,13247605037567427],[549759090688,2753536,-26495209923507576,-26495207853670452],[549759090688,3670024,-13247605036737943,-13247603851851071],[549759090688,3670144,-13247605037567427,-13247603851021587],[549759090688,3671040,26495207853670452,26495209923507576],[549759090688,34078720,22544603305492866,22544604432275006],[549759090688,35258368,22544603305492866,22544604432275006],[549759090688,549756469256,-13247605036737943,-13247603851851071],[549759090688,549756469376,-13247605037567427,-13247603851021587],[549759090688,549756470272,26495207853670452,26495209923507576],[549759090688,549757386760,13247603851851071,13247605036737943],[549759090688,549757386880,13247603851021587,13247605037567427],[549759090688,549757387776,-26495209923507576,-26495207853670452],[549759090688,549758437376,-22544604432275006,-22544603305492866],[549759090688,549759617024,-22544604432275006,-22544603305492866],[549759090688,549791989760,22544603305492866,22544604432275006],[549759090688,549793169408,22544603305492866,22544604432275006],[549759483904,133120,22544603305492866,22544604432275006],[549759483904,1705984,22544603305492866,22544604432275006],[549759483904,2752640,-26495209923507576,-26495207853670452],[549759483904,2753536,26495207853670452,26495209923507576],[549759483904,3276928,26495207853670452,26495209923507576],[549759483904,3277824,-26495209923507576,-26495207853670452],[549759483904,33685504,-22544604432275006,-22544603305492866],[549759483904,35258368,-22544604432275006,-22544603305492866],[549759483904,549756469376,26495207853670452,26495209923507576],[549759483904,549756470272,-26495209923507576,-26495207853670452],[549759483904,549756993664,-26495209923507576,-26495207853670452],[549759483904,549756994560,26495207853670452,26495209923507576],[549759483904,549758044160,22544603305492866,22544604432275006],[549759483904,549759617024,22544603305492866,22544604432275006],[549759483904,549791596544,-22544604432275006,-22544603305492866],[549759483904,549793169408,-22544604432275006,-22544603305492866],[549759484040,2097160,-13247605037567427,-13247603851021587],[549759484040,2097280,13247603851021587,13247605037567427],[549759484040,3670024,-13247605037567427,-13247603851021587],[549759484040,3670144,13247603851021587,13247605037567427],[549759484040,549755813896,13247603851021587,13247605037567427],[549759484040,549755814016,-13247605037567427,-13247603851021587],[549759484040,549757386760,13247603851021587,13247605037567427],[549759484040,549757386880,-13247605037567427,-13247603851021587],[549759614984,2097160,-13247605036737943,-13247603851851071],[549759614984,2228224,13247603851851071,13247605036737943],[549759614984,3670024,-13247605036737943,-13247603851851071],[549759614984,3801088,13247603851851071,13247605036737943],[549759614984,549755813896,13247603851851071,13247605036737943],[549759614984,549755944960,-13247605036737943,-13247603851851071],[549759614984,549757386760,13247603851851071,13247605036737943],[549759614984,549757517824,-13247605036737943,-13247603851851071],[549759615104,2097280,13247603851851071,13247605036737943],[549759615104,2228224,13247603851021587,13247605037567427],[549759615104,2621440,-26495209923507576,-26495207853670452],[549759615104,3276928,26495207853670452,26495209923507576],[549759615104,3670144,-13247605037567427,-13247603851021587],[549759615104,3801088,-13247605036737943,-13247603851851071],[549759615104,549755814016,-13247605036737943,-13247603851851071],[549759615104,549755944960,-13247605037567427,-13247603851021587],[549759615104,549756338176,26495207853670452,26495209923507576],[549759615104,549756993664,-26495209923507576,-26495207853670452],[549759615104,549757386880,13247603851021587,13247605037567427],[549759615104,549757517824,13247603851851071,13247605036737943],[549759616000,2228224,-1975303106832961,-1975301912872117],[549759616000,2621440,1975301912872117,1975303106832961],[549759616000,3277824,-1975303106832961,-1975301912872117],[549759616000,3671040,1975301912872117,1975303106832961],[549759616000,549755944960,1975301912872117,1975303106832961],[549759616000,549756338176,-1975303106832961,-1975301912872117],[549759616000,549756994560,1975301912872117,1975303106832961],[549759616000,549757387776,-1975303106832961,-1975301912872117],[549759617024,133120,22544603305492866,22544604432275006],[549759617024,526336,-22544604432275006,-22544603305492866],[549759617024,2228224,-24519907395040631,-24519905362432319],[549759617024,2621440,24519905362432319,24519907395040631],[549759617024,3278848,-1975303104304567,-1975301915400511],[549759617024,3672064,1975301915400511,1975303104304567],[549759617024,549755944960,1975301915400511,1975303104304567],[549759617024,549756338176,-1975303104304567,-1975301915400511],[549759617024,549756995584,24519905362432319,24519907395040631],[549759617024,549757388800,-24519907395040631,-24519905362432319],[549759617024,549759090688,-22544604432275006,-22544603305492866],[549759617024,549759483904,22544603305492866,22544604432275006],[549789370376,33555592,22544603305492866,22544604432275006],[549789370376,33557632,-22544604432275006,-22544603305492866],[549789370376,549755815048,-22544604432275006,-22544603305492866],[549789370376,549755817088,22544603305492866,22544604432275006],[549789370496,33555592,-22544604432275006,-22544603305492866],[549789370496,33557512,22544603305492866,22544604432275006],[549789370496,549755815048,22544603305492866,22544604432275006],[549789370496,549755816968,-22544604432275006,-22544603305492866],[549789371528,33554440,22544603305492866,22544604432275006],[549789371528,33554560,-22544604432275006,-22544603305492866],[549789371528,33557512,22544603305492866,22544604432275006],[549789371528,33557632,-22544604432275006,-22544603305492866],[549789371528,549755813896,-22544604432275006,-22544603305492866],[549789371528,549755814016,22544603305492866,22544604432275006],[549789371528,549755816968,-22544604432275006,-22544603305492866],[549789371528,549755817088,22544603305492866,22544604432275006],[549791596544,35258368,-22544604432275006,-22544603305492866],[549791596544,37224448,22544603305492866,22544604432275006],[549791596544,549757517824,22544603305492866,22544604432275006],[549791596544,549759483904,-22544604432275006,-22544603305492866],[549791989760,35258368,22544603305492866,22544604432275006],[549791989760,36831232,-22544604432275006,-22544603305492866],[549791989760,549757517824,-22544604432275006,-22544603305492866],[549791989760,549759090688,22544603305492866,22544604432275006],[549793169408,33685504,-22544604432275006,-22544603305492866],[549793169408,34078720,22544603305492866,22544604432275006],[549793169408,36831232,-22544604432275006,-22544603305492866],[549793169408,37224448,22544603305492866,22544604432275006],[549793169408,549755944960,22544603305492866,22544604432275006],[549793169408,549756338176,-22544604432275006,-22544603305492866],[549793169408,549759090688,22544603305492866,22544604432275006],[549793169408,549759483904,-22544604432275006,-22544603305492866],[4398046511106,16778048,-22544604440857164,-22544603296910704],[4398046511106,4398063289154,-22544604440857164,-22544603296910704],[4398046511168,16777986,22544603296910704,22544604440857164],[4398046511168,4398063289154,22544603296910704,22544604440857164],[4398046511426,16777986,22544603296910704,22544604440857164],[4398046511426,16778048,-22544604440857164,-22544603296910704],[4398046511426,4398063288834,-22544604440857164,-22544603296910704],[4398046511426,4398063288896,22544603296910704,22544604440857164],[4398046511874,16777280,-22544604440857164,-22544603296910704],[4398046511874,16777538,-22544604440857164,-22544603296910704],[4398046511874,4398063288896,-22544604440857164,-22544603296910704],[4398046511874,4398063289154,-22544604440857164,-22544603296910704],[4398046511936,16777218,22544603296910704,22544604440857164],[4398046511936,16777538,22544603296910704,22544604440857164],[4398046511936,4398063288834,22544603296910704,22544604440857164],[4398046511936,4398063289154,22544603296910704,22544604440857164],[4398063288834,16777538,22544603296910704,22544604440857164],[4398063288834,16778048,-22544604440857164,-22544603296910704],[4398063288834,4398046511426,-22544604440857164,-22544603296910704],[4398063288834,4398046511936,22544603296910704,22544604440857164],[4398063288896,16777538,-22544604440857164,-22544603296910704],[4398063288896,16777986,22544603296910704,22544604440857164],[4398063288896,4398046511426,22544603296910704,22544604440857164],[4398063288896,4398046511874,-22544604440857164,-22544603296910704],[4398063289154,16777218,22544603296910704,22544604440857164],[4398063289154,16777280,-22544604440857164,-22544603296910704],[4398063289154,16777986,22544603296910704,22544604440857164],[4398063289154,16778048,-22544604440857164,-22544603296910704],[4398063289154,4398046511106,-22544604440857164,-22544603296910704],[4398063289154,4398046511168,22544603296910704,22544604440857164],[4398063289154,4398046511874,-22544604440857164,-22544603296910704],[4398063289154,4398046511936,22544603296910704,22544604440857164],[8796093022216,33557632,-22544604440857164,-22544603296910704],[8796093022216,8796126579848,-22544604440857164,-22544603296910704],[8796093022336,33557512,22544603296910704,22544604440857164],[8796093022336,8796126579848,22544603296910704,22544604440857164],[8796093023368,33557512,22544603296910704,22544604440857164],[8796093023368,33557632,-22544604440857164,-22544603296910704],[8796093023368,8796126578696,-22544604440857164,-22544603296910704],[8796093023368,8796126578816,22544603296910704,22544604440857164],[8796093025288,33554560,-22544604440857164,-22544603296910704],[8796093025288,33555592,-22544604440857164,-22544603296910704],[8796093025288,8796126578816,-22544604440857164,-22544603296910704],[8796093025288,8796126579848,-22544604440857164,-22544603296910704],[8796093025408,33554440,22544603296910704,22544604440857164],[8796093025408,33555592,22544603296910704,22544604440857164],[8796093025408,8796126578696,22544603296910704,22544604440857164],[8796093025408,8796126579848,22544603296910704,22544604440857164],[8796126578696,33555592,22544603296910704,22544604440857164],[8796126578696,33557632,-22544604440857164,-22544603296910704],[8796126578696,8796093023368,-22544604440857164,-22544603296910704],[8796126578696,8796093025408,22544603296910704,22544604440857164],[8796126578816,33555592,-22544604440857164,-22544603296910704],[8796126578816,33557512,22544603296910704,22544604440857164],[8796126578816,8796093023368,22544603296910704,22544604440857164],[8796126578816,8796093025288,-22544604440857164,-22544603296910704],[8796126579848,33554440,22544603296910704,22544604440857164],[8796126579848,33554560,-22544604440857164,-22544603296910704],[8796126579848,33557512,22544603296910704,22544604440857164],[8796126579848,33557632,-22544604440857164,-22544603296910704],[8796126579848,8796093022216,-22544604440857164,-22544603296910704],[8796126579848,8796093022336,22544603296910704,22544604440857164],[8796126579848,8796093025288,-22544604440857164,-22544603296910704],[8796126579848,8796093025408,22544603296910704,22544604440857164],[17592186044417,67239946,-1975303165966039,-1975301853739043],[17592186044417,67239948,-22544604490299392,-22544603247468479],[17592186044417,67272708,13247603817961795,13247605070627222],[17592186044417,1140883460,-1975303136765642,-1975301882939439],[17592186044417,17592253284363,-1975303165966039,-1975301853739043],[17592186044417,17592253284365,-22544604490299392,-22544603247468479],[17592186044417,17592253317125,13247603817961795,13247605070627222],[17592186044417,17593326927877,-1975303136765642,-1975301882939439],[17592186044417,140738562129924,13247603786059568,13247605102529449],[17592186044417,158330748174341,13247603786059568,13247605102529449],[17592186044418,131080,-13247606405704134,-13247602482884872],[17592186044418,67108872,1975300020689110,1975304999015964],[17592186044418,67239936,1975300580344758,1975304439360326],[17592186044418,67239945,1975301853739043,1975303165966039],[17592186044418,67239948,22544603247468479,22544604490299392],[17592186044418,67240008,1975301826672296,1975303193032786],[17592186044418,67240072,22544603189358414,22544604548409457],[17592186044418,67272712,-13247605070627222,-13247603817961795],[17592186044418,67764232,-13247605134312055,-13247603754276960],[17592186044418,335675400,1975301823150576,1975303196554503],[17592186044418,1140981768,1975301882939439,1975303136765642],[17592186044418,17592186175498,-13247606405704134,-13247602482884872],[17592186044418,17592253153290,1975300020689110,1975304999015964],[17592186044418,17592253284354,1975300580344758,1975304439360326],[17592186044418,17592253284363,1975301853739043,1975303165966039],[17592186044418,17592253284366,22544603247468479,22544604490299392],[17592186044418,17592253284426,1975301826672296,1975303193032786],[17592186044418,17592253284490,22544603189358414,22544604548409457],[17592186044418,17592253317130,-13247605070627222,-13247603817961795],[17592186044418,17592253808650,-13247605134312055,-13247603754276960],[17592186044418,17592521719818,1975301823150576,1975303196554503],[17592186044418,17593327026186,1975301882939439,1975303136765642],[17592186044418,35184439328776,-13247605129676795,-13247603758912222],[17592186044418,52776625373194,-13247605129676795,-13247603758912222],[17592186044418,140737555595272,-13247605102529449,-13247603786059568],[17592186044418,158329741639690,-13247605102529449,-13247603786059568],[17592186044418,4611686018494627848,-13247605142672540,-13247603745916480],[17592186044418,4611703610680672266,-13247605142672540,-13247603745916480],[17592186044420,131080,-13247606302871576,-13247602585717435],[17592186044420,163840,1975300718656210,1975304301048867],[17592186044420,67108872,1975300184502783,1975304835202292],[17592186044420,67141632,3950600725236988,3950609314173172],[17592186044420,67239936,-11272305157286919,-11272298711597012],[17592186044420,67239945,22544603247468479,22544604490299392],[17592186044420,67239946,1975301853739043,1975303165966039],[17592186044420,67240072,1975301858410281,1975303161294799],[17592186044420,67272705,-13247605070627222,-13247603817961795],[17592186044420,67272712,18593996379768482,18594001318589224],[17592186044420,67764232,-13247605101666952,-13247603786922062],[17592186044420,67796992,1975301877105131,1975303142599947],[17592186044420,335675400,1975301852392980,1975303167312100],[17592186044420,335708160,22544603239782766,22544604497985104],[17592186044420,1073774592,-11272305157286919,-11272298711597012],[17592186044420,1140850688,1975300718656210,1975304301048867],[17592186044420,1140883457,1975301882939439,1975303136765642],[17592186044420,1140883464,1975301908323058,1975303111382023],[17592186044420,1140981768,1975301908323058,1975303111382023],[17592186044420,1141014528,18593996425761684,18594001272596028],[17592186044420,1409318912,-13247605076872486,-13247603811716528],[17592186044420,17592186175500,-13247606302871576,-13247602585717435],[17592186044420,17592186208260,1975300718656210,1975304301048867],[17592186044420,17592253153292,1975300184502783,1975304835202292],[17592186044420,17592253186052,3950600725236988,3950609314173172],[17592186044420,17592253284356,-11272305157286919,-11272298711597012],[17592186044420,17592253284365,22544603247468479,22544604490299392],[17592186044420,17592253284366,1975301853739043,1975303165966039],[17592186044420,17592253284492,1975301858410281,1975303161294799],[17592186044420,17592253317125,-13247605070627222,-13247603817961795],[17592186044420,17592253317132,18593996379768482,18594001318589224],[17592186044420,17592253808652,-13247605101666952,-13247603786922062],[17592186044420,17592253841412,1975301877105131,1975303142599947],[17592186044420,17592521719820,1975301852392980,1975303167312100],[17592186044420,17592521752580,22544603239782766,22544604497985104],[17592186044420,17593259819012,-11272305157286919,-11272298711597012],[17592186044420,17593326895108,1975300718656210,1975304301048867],[17592186044420,17593326927877,1975301882939439,1975303136765642],[17592186044420,17593326927884,1975301908323058,1975303111382023],[17592186044420,17593327026188,1975301908323058,1975303111382023],[17592186044420,17593327058948,18593996425761684,18594001272596028],[17592186044420,17593595363332,-13247605076872486,-13247603811716528],[17592186044420,35184439328776,-13247605100033866,-13247603788555150],[17592186044420,35184439361536,1975301885115096,1975303134589986],[17592186044420,35185512972288,-13247605066127948,-13247603822461068],[17592186044420,52776625373196,-13247605100033866,-13247603788555150],[17592186044420,52776625405956,1975301885115096,1975303134589986],[17592186044420,52777699016708,-13247605066127948,-13247603822461068],[17592186044420,140737488388096,1975300184502783,1975304835202292],[17592186044420,140737555595272,-13247605075396206,-13247603813192808],[17592186044420,140737555628032,1975301908323058,1975303111382023],[17592186044420,140738562097152,-13247606302871576,-13247602585717435],[17592186044420,140738562129921,-13247605102529449,-13247603786059568],[17592186044420,140738562129928,-13247605075396206,-13247603813192808],[17592186044420,140738562260992,1975301908323058,1975303111382023],[17592186044420,140738629238784,18593996379768482,18594001318589224],[17592186044420,158329674432516,1975300184502783,1975304835202292],[17592186044420,158329741639692,-13247605075396206,-13247603813192808],[17592186044420,158329741672452,1975301908323058,1975303111382023],[17592186044420,158330748141572,-13247606302871576,-13247602585717435],[17592186044420,158330748174341,-13247605102529449,-13247603786059568],[17592186044420,158330748174348,-13247605075396206,-13247603813192808],[17592186044420,158330748305412,1975301908323058,1975303111382023],[17592186044420,158330815283204,18593996379768482,18594001318589224],[17592186044420,175922934218752,22544603251967752,22544604485800118],[17592186044420,193515120263172,22544603251967752,22544604485800118],[17592186044420,2305983747775823872,1975301853739043,1975303165966039],[17592186044420,2306001339961868292,1975301853739043,1975303165966039],[17592186044420,4611686018494627848,-13247605102529449,-13247603786059568],[17592186044420,4611686018494660608,1975301882939439,1975303136765642],[17592186044420,4611686019568271360,-13247605070627222,-13247603817961795],[17592186044420,4611703610680672268,-13247605102529449,-13247603786059568],[17592186044420,4611703610680705028,1975301882939439,1975303136765642],[17592186044420,4611703611754315780,-13247605070627222,-13247603817961795],[17592186044420,4611826756989517824,22544603247468479,22544604490299392],[17592186044420,4611844349175562244,22544603247468479,22544604490299392],[17592186044424,0,7901206260429784,7901213818390536],[17592186044424,131074,13247602482884872,13247606405704134],[17592186044424,131076,13247602585717435,13247606302871576],[17592186044424,131200,13247602500871785,13247606387717226],[17592186044424,163840,7321695128457817,7321698701015960],[17592186044424,655360,7321694955032038,7321698874441739],[17592186044424,67108866,-1975304999015964,-1975300020689110],[17592186044424,67108868,-1975304835202292,-1975300184502783],[17592186044424,67108992,-1975304963903298,-1975300055801777],[17592186044424,67141632,-7321699779192130,-7321694050281650],[17592186044424,67239936,-187713876827545928,-187713836806076040],[17592186044424,67239942,-24519907503744101,-24519905253728852],[17592186044424,67240066,-24519907574746803,-24519905182726150],[17592186044424,67240068,-24519907494573587,-24519905262899363],[17592186044424,67272706,13247603817961795,13247605070627222],[17592186044424,67272708,26495207692945056,26495210084232978],[17592186044424,67272832,13247603822461068,13247605066127948],[17592186044424,67633152,-7321700093132675,-7321693736341099],[17592186044424,67764226,13247603754276960,13247605134312055],[17592186044424,67764228,13247603786922062,13247605101666952],[17592186044424,67764352,26495207514558268,26495210262619762],[17592186044424,67796992,11272301153102595,11272302715781341],[17592186044424,268566528,-7321700093132675,-7321693736341099],[17592186044424,335544320,7321694955032038,7321698874441739],[17592186044424,335675394,-1975303196554503,-1975301823150576],[17592186044424,335675396,-1975303167312100,-1975301852392980],[17592186044424,335675520,-1975303200228061,-1975301819477018],[17592186044424,335708160,-22544604497985104,-22544603239782766],[17592186044424,336068736,-1975303200228061,-1975301819477018],[17592186044424,336199680,-45089209126982928,-45089206348552808],[17592186044424,1073872896,-7321699779192130,-7321694050281650],[17592186044424,1140850688,7321695128457817,7321698701015960],[17592186044424,1140883460,-1975303111382023,-1975301908323058],[17592186044424,1140981762,-1975303136765642,-1975301882939439],[17592186044424,1140981764,-1975303111382023,-1975301908323058],[17592186044424,1140981888,-1975303134589986,-1975301885115096],[17592186044424,1141014528,-45089208888685184,-45089206586850560],[17592186044424,1141506048,-22544604497985104,-22544603239782766],[17592186044424,1409417216,11272301153102595,11272302715781341],[17592186044424,17592186044424,7901206260429784,7901213818390536],[17592186044424,17592186175498,13247602482884872,13247606405704134],[17592186044424,17592186175500,13247602585717435,13247606302871576],[17592186044424,17592186175624,13247602500871785,13247606387717226],[17592186044424,17592186208264,7321695128457817,7321698701015960],[17592186044424,17592186699784,7321694955032038,7321698874441739],[17592186044424,17592253153290,-1975304999015964,-1975300020689110],[17592186044424,17592253153292,-1975304835202292,-1975300184502783],[17592186044424,17592253153416,-1975304963903298,-1975300055801777],[17592186044424,17592253186056,-7321699779192130,-7321694050281650],[17592186044424,17592253284360,-187713876827545928,-187713836806076040],[17592186044424,17592253284366,-24519907503744101,-24519905253728852],[17592186044424,17592253284490,-24519907574746803,-24519905182726150],[17592186044424,17592253284492,-24519907494573587,-24519905262899363],[17592186044424,17592253317130,13247603817961795,13247605070627222],[17592186044424,17592253317132,26495207692945056,26495210084232978],[17592186044424,17592253317256,13247603822461068,13247605066127948],[17592186044424,17592253677576,-7321700093132675,-7321693736341099],[17592186044424,17592253808650,13247603754276960,13247605134312055],[17592186044424,17592253808652,13247603786922062,13247605101666952],[17592186044424,17592253808776,26495207514558268,26495210262619762],[17592186044424,17592253841416,11272301153102595,11272302715781341],[17592186044424,17592454610952,-7321700093132675,-7321693736341099],[17592186044424,17592521588744,7321694955032038,7321698874441739],[17592186044424,17592521719818,-1975303196554503,-1975301823150576],[17592186044424,17592521719820,-1975303167312100,-1975301852392980],[17592186044424,17592521719944,-1975303200228061,-1975301819477018],[17592186044424,17592521752584,-22544604497985104,-22544603239782766],[17592186044424,17592522113160,-1975303200228061,-1975301819477018],[17592186044424,17592522244104,-45089209126982928,-45089206348552808],[17592186044424,17593259917320,-7321699779192130,-7321694050281650],[17592186044424,17593326895112,7321695128457817,7321698701015960],[17592186044424,17593326927884,-1975303111382023,-1975301908323058],[17592186044424,17593327026186,-1975303136765642,-1975301882939439],[17592186044424,17593327026188,-1975303111382023,-1975301908323058],[17592186044424,17593327026312,-1975303134589986,-1975301885115096],[17592186044424,17593327058952,-45089208888685184,-45089206586850560],[17592186044424,17593327550472,-22544604497985104,-22544603239782766],[17592186044424,17593595461640,11272301153102595,11272302715781341],[17592186044424,35184372219904,-1975304963903298,-1975300055801777],[17592186044424,35184439197696,13247602500871785,13247606387717226],[17592186044424,35184439328770,13247603758912222,13247605129676795],[17592186044424,35184439328772,13247603788555150,13247605100033866],[17592186044424,35184439328896,13247603750907644,13247605137681374],[17592186044424,35184439361536,-1975303134589986,-1975301885115096],[17592186044424,35184439853056,-1975303200228061,-1975301819477018],[17592186044424,35184641048704,13247603750907644,13247605137681374],[17592186044424,35184641179648,-1975303200228061,-1975301819477018],[17592186044424,35184707764224,26495207514558268,26495210262619762],[17592186044424,35185513070592,13247603822461068,13247605066127948],[17592186044424,52776558264328,-1975304963903298,-1975300055801777],[17592186044424,52776625242120,13247602500871785,13247606387717226],[17592186044424,52776625373194,13247603758912222,13247605129676795],[17592186044424,52776625373196,13247603788555150,13247605100033866],[17592186044424,52776625373320,13247603750907644,13247605137681374],[17592186044424,52776625405960,-1975303134589986,-1975301885115096],[17592186044424,52776625897480,-1975303200228061,-1975301819477018],[17592186044424,52776827093128,13247603750907644,13247605137681374],[17592186044424,52776827224072,-1975303200228061,-1975301819477018],[17592186044424,52776893808648,26495207514558268,26495210262619762],[17592186044424,52777699115016,13247603822461068,13247605066127948],[17592186044424,140737488486400,-1975304835202292,-1975300184502783],[17592186044424,140737555464192,13247602585717435,13247606302871576],[17592186044424,140737555595266,13247603786059568,13247605102529449],[17592186044424,140737555595268,13247603813192808,13247605075396206],[17592186044424,140737555595392,13247603788555150,13247605100033866],[17592186044424,140737555628032,-1975303111382023,-1975301908323058],[17592186044424,140737556119552,-1975303167312100,-1975301852392980],[17592186044424,140737824030720,13247603786922062,13247605101666952],[17592186044424,140738562129924,13247603813192808,13247605075396206],[17592186044424,140738562260992,-1975303111382023,-1975301908323058],[17592186044424,140738629337088,26495207692945056,26495210084232978],[17592186044424,158329674530824,-1975304835202292,-1975300184502783],[17592186044424,158329741508616,13247602585717435,13247606302871576],[17592186044424,158329741639690,13247603786059568,13247605102529449],[17592186044424,158329741639692,13247603813192808,13247605075396206],[17592186044424,158329741639816,13247603788555150,13247605100033866],[17592186044424,158329741672456,-1975303111382023,-1975301908323058],[17592186044424,158329742163976,-1975303167312100,-1975301852392980],[17592186044424,158330010075144,13247603786922062,13247605101666952],[17592186044424,158330748174348,13247603813192808,13247605075396206],[17592186044424,158330748305416,-1975303111382023,-1975301908323058],[17592186044424,158330815381512,26495207692945056,26495210084232978],[17592186044424,175921927684096,-24519907494573587,-24519905262899363],[17592186044424,193514113728520,-24519907494573587,-24519905262899363],[17592186044424,4611686018427518976,-1975304999015964,-1975300020689110],[17592186044424,4611686018494496768,13247602482884872,13247606405704134],[17592186044424,4611686018494627842,13247603745916480,13247605142672540],[17592186044424,4611686018494627844,13247603786059568,13247605102529449],[17592186044424,4611686018494627968,13247603758912222,13247605129676795],[17592186044424,4611686018494660608,-1975303136765642,-1975301882939439],[17592186044424,4611686018495152128,-1975303196554503,-1975301823150576],[17592186044424,4611686018763063296,13247603754276960,13247605134312055],[17592186044424,4611686019568369664,13247603817961795,13247605070627222],[17592186044424,4611703610613563400,-1975304999015964,-1975300020689110],[17592186044424,4611703610680541192,13247602482884872,13247606405704134],[17592186044424,4611703610680672266,13247603745916480,13247605142672540],[17592186044424,4611703610680672268,13247603786059568,13247605102529449],[17592186044424,4611703610680672392,13247603758912222,13247605129676795],[17592186044424,4611703610680705032,-1975303136765642,-1975301882939439],[17592186044424,4611703610681196552,-1975303196554503,-1975301823150576],[17592186044424,4611703610949107720,13247603754276960,13247605134312055],[17592186044424,4611703611754414088,13247603817961795,13247605070627222],[17592186044424,4611721202866716672,-24519907574746803,-24519905182726150],[17592186044424,4611738795052761096,-24519907574746803,-24519905182726150],[17592186044424,4611826755982983168,-24519907503744101,-24519905253728852],[17592186044424,4611844348169027592,-24519907503744101,-24519905253728852],[17592186044427,67239945,1975301853739043,1975303165966039],[17592186044427,67239946,-1975303165966039,-1975301853739043],[17592186044427,17592253284353,-1975303165966039,-1975301853739043],[17592186044427,17592253284354,1975301853739043,1975303165966039],[17592186044429,67239945,22544603247468479,22544604490299392],[17592186044429,67239948,-22544604490299392,-22544603247468479],[17592186044429,17592253284353,-22544604490299392,-22544603247468479],[17592186044429,17592253284356,22544603247468479,22544604490299392],[17592186044430,67239942,-24519907503744101,-24519905253728852],[17592186044430,67239946,1975301853739043,1975303165966039],[17592186044430,67239948,22544603247468479,22544604490299392],[17592186044430,17592253284354,22544603247468479,22544604490299392],[17592186044430,17592253284356,1975301853739043,1975303165966039],[17592186044430,17592253284360,-24519907503744101,-24519905253728852],[17592186044480,67239946,-1975303193032786,-1975301826672296],[17592186044480,67240072,-22544604548409457,-22544603189358414],[17592186044480,67764352,13247603754276960,13247605134312055],[17592186044480,336068736,-1975303196554503,-1975301823150576],[17592186044480,17592253284426,-1975303193032786,-1975301826672296],[17592186044480,17592253284552,-22544604548409457,-22544603189358414],[17592186044480,17592253808832,13247603754276960,13247605134312055],[17592186044480,17592522113216,-1975303196554503,-1975301823150576],[17592186044480,35184641048704,13247603758912222,13247605129676795],[17592186044480,52776827093184,13247603758912222,13247605129676795],[17592186044490,67239946,-1975303193032786,-1975301826672296],[17592186044490,67240008,1975301826672296,1975303193032786],[17592186044490,17592253284354,1975301826672296,1975303193032786],[17592186044490,17592253284416,-1975303193032786,-1975301826672296],[17592186044544,131080,-13247606387717226,-13247602500871785],[17592186044544,655360,1975300539655663,1975304480049416],[17592186044544,67108872,1975300055801777,1975304963903298],[17592186044544,67239936,-11272305547187129,-11272298321696800],[17592186044544,67239946,1975301826672296,1975303193032786],[17592186044544,67239948,22544603251967752,22544604485800118],[17592186044544,67240008,22544603189358414,22544604548409457],[17592186044544,67240968,1975301858410281,1975303161294799],[17592186044544,67272712,-13247605066127948,-13247603822461068],[17592186044544,67633152,3950600140436346,3950609898973822],[17592186044544,67764232,18593996078378526,18594001619979184],[17592186044544,67764288,-13247605134312055,-13247603754276960],[17592186044544,67765248,-13247605101666952,-13247603786922062],[17592186044544,67796992,-13247605076872486,-13247603811716528],[17592186044544,68812800,1975301877105131,1975303142599947],[17592186044544,268959744,-11272305547187129,-11272298321696800],[17592186044544,335544320,1975300539655663,1975304480049416],[17592186044544,335675400,1975301819477018,1975303200228061],[17592186044544,336068616,1975301819477018,1975303200228061],[17592186044544,336068672,1975301823150576,1975303196554503],[17592186044544,336069632,1975301852392980,1975303167312100],[17592186044544,336199680,18593996061574096,18594001636783608],[17592186044544,337117184,22544603239782766,22544604497985104],[17592186044544,470286336,-13247605076872486,-13247603811716528],[17592186044544,1140981768,1975301885115096,1975303134589986],[17592186044544,1141506048,22544603239782766,22544604497985104],[17592186044544,1409810432,1975301877105131,1975303142599947],[17592186044544,17592186175624,-13247606387717226,-13247602500871785],[17592186044544,17592186699904,1975300539655663,1975304480049416],[17592186044544,17592253153416,1975300055801777,1975304963903298],[17592186044544,17592253284480,-11272305547187129,-11272298321696800],[17592186044544,17592253284490,1975301826672296,1975303193032786],[17592186044544,17592253284492,22544603251967752,22544604485800118],[17592186044544,17592253284552,22544603189358414,22544604548409457],[17592186044544,17592253285512,1975301858410281,1975303161294799],[17592186044544,17592253317256,-13247605066127948,-13247603822461068],[17592186044544,17592253677696,3950600140436346,3950609898973822],[17592186044544,17592253808776,18593996078378526,18594001619979184],[17592186044544,17592253808832,-13247605134312055,-13247603754276960],[17592186044544,17592253809792,-13247605101666952,-13247603786922062],[17592186044544,17592253841536,-13247605076872486,-13247603811716528],[17592186044544,17592254857344,1975301877105131,1975303142599947],[17592186044544,17592455004288,-11272305547187129,-11272298321696800],[17592186044544,17592521588864,1975300539655663,1975304480049416],[17592186044544,17592521719944,1975301819477018,1975303200228061],[17592186044544,17592522113160,1975301819477018,1975303200228061],[17592186044544,17592522113216,1975301823150576,1975303196554503],[17592186044544,17592522114176,1975301852392980,1975303167312100],[17592186044544,17592522244224,18593996061574096,18594001636783608],[17592186044544,17592523161728,22544603239782766,22544604497985104],[17592186044544,17592656330880,-13247605076872486,-13247603811716528],[17592186044544,17593327026312,1975301885115096,1975303134589986],[17592186044544,17593327550592,22544603239782766,22544604497985104],[17592186044544,17593595854976,1975301877105131,1975303142599947],[17592186044544,35184372613120,1975300055801777,1975304963903298],[17592186044544,35184439328776,-13247605137681374,-13247603750907644],[17592186044544,35184439853056,1975301819477018,1975303200228061],[17592186044544,35184640524288,-13247606387717226,-13247602500871785],[17592186044544,35184641048584,-13247605137681374,-13247603750907644],[17592186044544,35184641048640,-13247605129676795,-13247603758912222],[17592186044544,35184641049600,-13247605100033866,-13247603788555150],[17592186044544,35184641179648,1975301819477018,1975303200228061],[17592186044544,35184642097152,1975301885115096,1975303134589986],[17592186044544,35184708157440,18593996078378526,18594001619979184],[17592186044544,35184775266304,-13247605066127948,-13247603822461068],[17592186044544,52776558657664,1975300055801777,1975304963903298],[17592186044544,52776625373320,-13247605137681374,-13247603750907644],[17592186044544,52776625897600,1975301819477018,1975303200228061],[17592186044544,52776826568832,-13247606387717226,-13247602500871785],[17592186044544,52776827093128,-13247605137681374,-13247603750907644],[17592186044544,52776827093184,-13247605129676795,-13247603758912222],[17592186044544,52776827094144,-13247605100033866,-13247603788555150],[17592186044544,52776827224192,1975301819477018,1975303200228061],[17592186044544,52776828141696,1975301885115096,1975303134589986],[17592186044544,52776894201984,18593996078378526,18594001619979184],[17592186044544,52776961310848,-13247605066127948,-13247603822461068],[17592186044544,105553385226240,22544603251967752,22544604485800118],[17592186044544,123145571270784,22544603251967752,22544604485800118],[17592186044544,140737555595272,-13247605100033866,-13247603788555150],[17592186044544,140737556119552,1975301852392980,1975303167312100],[17592186044544,140737824423936,-13247605101666952,-13247603786922062],[17592186044544,158329741639816,-13247605100033866,-13247603788555150],[17592186044544,158329742164096,1975301852392980,1975303167312100],[17592186044544,158330010468480,-13247605101666952,-13247603786922062],[17592186044544,175922129403904,1975301858410281,1975303161294799],[17592186044544,193514315448448,1975301858410281,1975303161294799],[17592186044544,4611686018494627848,-13247605129676795,-13247603758912222],[17592186044544,4611686018495152128,1975301823150576,1975303196554503],[17592186044544,4611686018763456512,-13247605134312055,-13247603754276960],[17592186044544,4611703610680672392,-13247605129676795,-13247603758912222],[17592186044544,4611703610681196672,1975301823150576,1975303196554503],[17592186044544,4611703610949501056,-13247605134312055,-13247603754276960],[17592186044544,4611721203068436480,22544603189358414,22544604548409457],[17592186044544,4611738795254481024,22544603189358414,22544604548409457],[17592186044544,36893523332060151808,1975301826672296,1975303193032786],[17592186044544,36893540924246196352,1975301826672296,1975303193032786],[17592186044554,67239946,1975301826672296,1975303193032786],[17592186044554,67240066,-24519907574746803,-24519905182726150],[17592186044554,67240072,22544603189358414,22544604548409457],[17592186044554,17592253284354,22544603189358414,22544604548409457],[17592186044554,17592253284360,-24519907574746803,-24519905182726150],[17592186044554,17592253284480,1975301826672296,1975303193032786],[17592186044556,67239948,22544603251967752,22544604485800118],[17592186044556,67240068,-24519907494573587,-24519905262899363],[17592186044556,67240072,1975301858410281,1975303161294799],[17592186044556,17592253284356,1975301858410281,1975303161294799],[17592186044556,17592253284360,-24519907494573587,-24519905262899363],[17592186044556,17592253284480,22544603251967752,22544604485800118],[17592186044616,67240008,22544603189358414,22544604548409457],[17592186044616,67240072,-22544604548409457,-22544603189358414],[17592186044616,17592253284416,-22544604548409457,-22544603189358414],[17592186044616,17592253284480,22544603189358414,22544604548409457],[17592186045440,67240072,-1975303161294799,-1975301858410281],[17592186045440,67764352,13247603786922062,13247605101666952],[17592186045440,68812800,-1975303142599947,-1975301877105131],[17592186045440,336068736,-1975303167312100,-1975301852392980],[17592186045440,337117184,-22544604497985104,-22544603239782766],[17592186045440,470810624,13247603811716528,13247605076872486],[17592186045440,17592253285512,-1975303161294799,-1975301858410281],[17592186045440,17592253809792,13247603786922062,13247605101666952],[17592186045440,17592254858240,-1975303142599947,-1975301877105131],[17592186045440,17592522114176,-1975303167312100,-1975301852392980],[17592186045440,17592523162624,-22544604497985104,-22544603239782766],[17592186045440,17592656856064,13247603811716528,13247605076872486],[17592186045440,35184641048704,13247603788555150,13247605100033866],[17592186045440,35184642097152,-1975303134589986,-1975301885115096],[17592186045440,35184775790592,13247603822461068,13247605066127948],[17592186045440,52776827094144,13247603788555150,13247605100033866],[17592186045440,52776828142592,-1975303134589986,-1975301885115096],[17592186045440,52776961836032,13247603822461068,13247605066127948],[17592186045440,105553251532800,-22544604485800118,-22544603251967752],[17592186045440,123145437578240,-22544604485800118,-22544603251967752],[17592186045576,67240072,-1975303161294799,-1975301858410281],[17592186045576,67240968,1975301858410281,1975303161294799],[17592186045576,17592253284480,1975301858410281,1975303161294799],[17592186045576,17592253285376,-1975303161294799,-1975301858410281],[17592186077184,131076,-1975304301048867,-1975300718656210],[17592186077184,131080,22544602005389605,22544605732378260],[17592186077184,67108868,-3950609314173172,-3950600725236988],[17592186077184,67108872,-1975305379225034,-1975299640480040],[17592186077184,67239948,-45089209011534280,-45089206464001460],[17592186077184,67764228,-1975303142599947,-1975301877105131],[17592186077184,67764232,11272301100150310,11272302768733624],[17592186077184,335675396,-22544604497985104,-22544603239782766],[17592186077184,335675400,-1975303167312100,-1975301852392980],[17592186077184,1073741828,11272298711597012,11272305157286919],[17592186077184,1140981764,-7321700273679520,-7321693555794256],[17592186077184,1140981768,-24519907601681415,-24519905155791537],[17592186077184,1409286148,13247603811716528,13247605076872486],[17592186077184,17592186208260,-1975304301048867,-1975300718656210],[17592186077184,17592186208264,22544602005389605,22544605732378260],[17592186077184,17592253186052,-3950609314173172,-3950600725236988],[17592186077184,17592253186056,-1975305379225034,-1975299640480040],[17592186077184,17592253317132,-45089209011534280,-45089206464001460],[17592186077184,17592253841412,-1975303142599947,-1975301877105131],[17592186077184,17592253841416,11272301100150310,11272302768733624],[17592186077184,17592521752580,-22544604497985104,-22544603239782766],[17592186077184,17592521752584,-1975303167312100,-1975301852392980],[17592186077184,17593259819012,11272298711597012,11272305157286919],[17592186077184,17593327058948,-7321700273679520,-7321693555794256],[17592186077184,17593327058952,-24519907601681415,-24519905155791537],[17592186077184,17593595363332,13247603811716528,13247605076872486],[17592186077184,35184439328772,-1975303134589986,-1975301885115096],[17592186077184,35184439328776,13247603788555150,13247605100033866],[17592186077184,35185512939524,13247603822461068,13247605066127948],[17592186077184,52776625405956,-1975303134589986,-1975301885115096],[17592186077184,52776625405960,13247603788555150,13247605100033866],[17592186077184,52777699016708,13247603822461068,13247605066127948],[17592186077184,140737488355332,-1975304835202292,-1975300184502783],[17592186077184,140737555595268,-1975303111382023,-1975301908323058],[17592186077184,140737555595272,13247603813192808,13247605075396206],[17592186077184,140738562228228,11272300855685410,11272303013198523],[17592186077184,140738629206020,-18594001318589224,-18593996379768482],[17592186077184,158329674432516,-1975304835202292,-1975300184502783],[17592186077184,158329741672452,-1975303111382023,-1975301908323058],[17592186077184,158329741672456,13247603813192808,13247605075396206],[17592186077184,158330748305412,11272300855685410,11272303013198523],[17592186077184,158330815283204,-18594001318589224,-18593996379768482],[17592186077184,175922934185988,-22544604485800118,-22544603251967752],[17592186077184,193515120263172,-22544604485800118,-22544603251967752],[17592186077184,2305983747775791108,-1975303165966039,-1975301853739043],[17592186077184,2306001339961868292,-1975303165966039,-1975301853739043],[17592186077184,4611686018494627844,-1975303136765642,-1975301882939439],[17592186077184,4611686018494627848,13247603786059568,13247605102529449],[17592186077184,4611686019568238596,13247603817961795,13247605070627222],[17592186077184,4611703610680705028,-1975303136765642,-1975301882939439],[17592186077184,4611703610680705032,13247603786059568,13247605102529449],[17592186077184,4611703611754315780,13247603817961795,13247605070627222],[17592186077184,4611826756989485060,-22544604490299392,-22544603247468479],[17592186077184,4611844349175562244,-22544604490299392,-22544603247468479],[17592186077189,67272705,-13247605070627222,-13247603817961795],[17592186077189,67272708,13247603817961795,13247605070627222],[17592186077189,1140883457,1975301882939439,1975303136765642],[17592186077189,1140883460,-1975303136765642,-1975301882939439],[17592186077189,17592253284353,13247603817961795,13247605070627222],[17592186077189,17592253284356,-13247605070627222,-13247603817961795],[17592186077189,17593326895105,-1975303136765642,-1975301882939439],[17592186077189,17593326895108,1975301882939439,1975303136765642],[17592186077189,140738562129921,-13247605102529449,-13247603786059568],[17592186077189,140738562129924,13247603786059568,13247605102529449],[17592186077189,158330748141569,13247603786059568,13247605102529449],[17592186077189,158330748141572,-13247605102529449,-13247603786059568],[17592186077194,67272706,24519905253728852,24519907503744101],[17592186077194,67272712,-24519907503744101,-24519905253728852],[17592186077194,17592253284354,-24519907503744101,-24519905253728852],[17592186077194,17592253284360,24519905253728852,24519907503744101],[17592186077196,67239948,-49039814402932400,-49039811112013498],[17592186077196,67272708,37767509245645481,37767512400416486],[17592186077196,67272712,11272298711597012,11272305157286919],[17592186077196,1140883460,-1975303111382023,-1975301908323058],[17592186077196,1140883464,1975301908323058,1975303111382023],[17592186077196,17592253284356,11272298711597012,11272305157286919],[17592186077196,17592253284360,37767509245645481,37767512400416486],[17592186077196,17592253317120,-49039814402932400,-49039811112013498],[17592186077196,17593326895108,1975301908323058,1975303111382023],[17592186077196,17593326895112,-1975303111382023,-1975301908323058],[17592186077196,140738562129924,13247603813192808,13247605075396206],[17592186077196,140738562129928,-13247605075396206,-13247603813192808],[17592186077196,158330748141572,-13247605075396206,-13247603813192808],[17592186077196,158330748141576,13247603813192808,13247605075396206],[17592186077320,67272712,-24519907494573587,-24519905262899363],[17592186077320,67272832,24519905262899363,24519907494573587],[17592186077320,17592253284360,24519905262899363,24519907494573587],[17592186077320,17592253284480,-24519907494573587,-24519905262899363],[17592186175488,32776,-11272305103287715,-11272298765596219],[17592186175488,524296,-11272305322642808,-11272298546241124],[17592186175488,67108866,-1975304439360326,-1975300580344758],[17592186175488,67108868,11272298711597012,11272305157286919],[17592186175488,67108872,193060229393271076,193060273050119596],[17592186175488,67108992,11272298321696800,11272305547187129],[17592186175488,67665928,-13247606381210832,-13247602507378184],[17592186175488,268435464,-1975305698740355,-1975299320964727],[17592186175488,335577096,24519905244697076,24519907512775874],[17592186175488,336068616,47064508334725266,47064512160515549],[17592186175488,336068736,1975301819477018,1975303200228061],[17592186175488,1073741832,-1975305379225034,-1975299640480040],[17592186175488,1140883460,1975301908323058,1975303111382023],[17592186175488,1140883464,47064508636712560,47064511858528265],[17592186175488,1141374984,24519905280236082,24519907477236870],[17592186175488,1409286152,-11272302715781341,-11272301153102595],[17592186175488,17592186208264,-11272305103287715,-11272298765596219],[17592186175488,17592186699784,-11272305322642808,-11272298546241124],[17592186175488,17592253284354,-1975304439360326,-1975300580344758],[17592186175488,17592253284356,11272298711597012,11272305157286919],[17592186175488,17592253284360,193060229393271076,193060273050119596],[17592186175488,17592253284480,11272298321696800,11272305547187129],[17592186175488,17592253841416,-13247606381210832,-13247602507378184],[17592186175488,17592454610952,-1975305698740355,-1975299320964727],[17592186175488,17592521752584,24519905244697076,24519907512775874],[17592186175488,17592522244104,47064508334725266,47064512160515549],[17592186175488,17592522244224,1975301819477018,1975303200228061],[17592186175488,17593259917320,-1975305379225034,-1975299640480040],[17592186175488,17593327058948,1975301908323058,1975303111382023],[17592186175488,17593327058952,47064508636712560,47064511858528265],[17592186175488,17593327550472,24519905280236082,24519907477236870],[17592186175488,17593595461640,-11272302715781341,-11272301153102595],[17592186175488,35184372088840,1975300055801777,1975304963903298],[17592186175488,35184439230472,-11272303061044145,-11272300807839789],[17592186175488,35184439721992,-11272303149817323,-11272300719066616],[17592186175488,35184641048584,1975301819477018,1975303200228061],[17592186175488,35184641048704,-13247605137681374,-13247603750907644],[17592186175488,35184707633160,-26495210262619762,-26495207514558268],[17592186175488,35185512939528,-13247605066127948,-13247603822461068],[17592186175488,52776558264328,1975300055801777,1975304963903298],[17592186175488,52776625405960,-11272303061044145,-11272300807839789],[17592186175488,52776625897480,-11272303149817323,-11272300719066616],[17592186175488,52776827224072,1975301819477018,1975303200228061],[17592186175488,52776827224192,-13247605137681374,-13247603750907644],[17592186175488,52776893808648,-26495210262619762,-26495207514558268],[17592186175488,52777699115016,-13247605066127948,-13247603822461068],[17592186175488,140737488355336,1975300184502783,1975304835202292],[17592186175488,140737555496968,-11272303013198523,-11272300855685410],[17592186175488,140737555988488,-11272303079253853,-11272300789630083],[17592186175488,140737823899656,-13247605101666952,-13247603786922062],[17592186175488,140738562129924,-13247605075396206,-13247603813192808],[17592186175488,140738562129928,1975301908323058,1975303111382023],[17592186175488,140738629206024,-26495210084232978,-26495207692945056],[17592186175488,158329674530824,1975300184502783,1975304835202292],[17592186175488,158329741672456,-11272303013198523,-11272300855685410],[17592186175488,158329742163976,-11272303079253853,-11272300789630083],[17592186175488,158330010075144,-13247605101666952,-13247603786922062],[17592186175488,158330748305412,-13247605075396206,-13247603813192808],[17592186175488,158330748305416,1975301908323058,1975303111382023],[17592186175488,158330815381512,-26495210084232978,-26495207692945056],[17592186175488,175921927553032,24519905262899363,24519907494573587],[17592186175488,193514113728520,24519905262899363,24519907494573587],[17592186175488,4611686018427387912,1975300020689110,1975304999015964],[17592186175488,4611686018494529544,-11272303065715385,-11272300803168551],[17592186175488,4611686018495021064,-11272303138139186,-11272300730744752],[17592186175488,4611686018762932232,-13247605134312055,-13247603754276960],[17592186175488,4611686019568238600,-13247605070627222,-13247603817961795],[17592186175488,4611703610613563400,1975300020689110,1975304999015964],[17592186175488,4611703610680705032,-11272303065715385,-11272300803168551],[17592186175488,4611703610681196552,-11272303138139186,-11272300730744752],[17592186175488,4611703610949107720,-13247605134312055,-13247603754276960],[17592186175488,4611703611754414088,-13247605070627222,-13247603817961795],[17592186175488,4611721202866585608,24519905182726150,24519907574746803],[17592186175488,4611738795052761096,24519905182726150,24519907574746803],[17592186175488,4611826755982852104,24519905253728852,24519907503744101],[17592186175488,4611844348169027592,24519905253728852,24519907503744101],[17592186175494,67108872,24519905253728852,24519907503744101],[17592186175494,67108878,24519905253728852,24519907503744101],[17592186175494,17592253284360,24519905253728852,24519907503744101],[17592186175494,17592253284366,24519905253728852,24519907503744101],[17592186175497,67108866,-1975303165966039,-1975301853739043],[17592186175497,67108868,-22544604490299392,-22544603247468479],[17592186175497,67108875,-1975303165966039,-1975301853739043],[17592186175497,67108877,-22544604490299392,-22544603247468479],[17592186175497,17592253284354,-1975303165966039,-1975301853739043],[17592186175497,17592253284356,-22544604490299392,-22544603247468479],[17592186175497,17592253284363,-1975303165966039,-1975301853739043],[17592186175497,17592253284365,-22544604490299392,-22544603247468479],[17592186175498,131074,13247602482884872,13247606405704134],[17592186175498,131080,-13247606405704134,-13247602482884872],[17592186175498,67108865,1975301853739043,1975303165966039],[17592186175498,67108868,-1975303165966039,-1975301853739043],[17592186175498,67108875,1975301853739043,1975303165966039],[17592186175498,67108878,-1975303165966039,-1975301853739043],[17592186175498,67108928,1975301826672296,1975303193032786],[17592186175498,67108938,1975301826672296,1975303193032786],[17592186175498,67108992,-1975303193032786,-1975301826672296],[17592186175498,67109002,-1975303193032786,-1975301826672296],[17592186175498,67272706,-11272303065715385,-11272300803168551],[17592186175498,67272712,11272300803168551,11272303065715385],[17592186175498,67764226,-11272303138139186,-11272300730744752],[17592186175498,67764232,11272300730744752,11272303138139186],[17592186175498,335675394,-1975303196554503,-1975301823150576],[17592186175498,335675400,1975301823150576,1975303196554503],[17592186175498,1140981762,-1975303136765642,-1975301882939439],[17592186175498,1140981768,1975301882939439,1975303136765642],[17592186175498,17592186044418,-13247606405704134,-13247602482884872],[17592186175498,17592186044424,13247602482884872,13247606405704134],[17592186175498,17592253186050,11272300803168551,11272303065715385],[17592186175498,17592253186056,-11272303065715385,-11272300803168551],[17592186175498,17592253284353,1975301853739043,1975303165966039],[17592186175498,17592253284356,-1975303165966039,-1975301853739043],[17592186175498,17592253284363,1975301853739043,1975303165966039],[17592186175498,17592253284366,-1975303165966039,-1975301853739043],[17592186175498,17592253284416,1975301826672296,1975303193032786],[17592186175498,17592253284426,1975301826672296,1975303193032786],[17592186175498,17592253284480,-1975303193032786,-1975301826672296],[17592186175498,17592253284490,-1975303193032786,-1975301826672296],[17592186175498,17592253677570,11272300730744752,11272303138139186],[17592186175498,17592253677576,-11272303138139186,-11272300730744752],[17592186175498,17592521588738,1975301823150576,1975303196554503],[17592186175498,17592521588744,-1975303196554503,-1975301823150576],[17592186175498,17593326895106,1975301882939439,1975303136765642],[17592186175498,17593326895112,-1975303136765642,-1975301882939439],[17592186175498,35184439328770,13247603758912222,13247605129676795],[17592186175498,35184439328776,-13247605129676795,-13247603758912222],[17592186175498,52776625242114,-13247605129676795,-13247603758912222],[17592186175498,52776625242120,13247603758912222,13247605129676795],[17592186175498,140737555595266,13247603786059568,13247605102529449],[17592186175498,140737555595272,-13247605102529449,-13247603786059568],[17592186175498,158329741508610,-13247605102529449,-13247603786059568],[17592186175498,158329741508616,13247603786059568,13247605102529449],[17592186175498,4611686018494627842,13247603745916480,13247605142672540],[17592186175498,4611686018494627848,-13247605142672540,-13247603745916480],[17592186175498,4611703610680541186,-13247605142672540,-13247603745916480],[17592186175498,4611703610680541192,13247603745916480,13247605142672540],[17592186175500,131076,13247602585717435,13247606302871576],[17592186175500,131080,-13247606302871576,-13247602585717435],[17592186175500,67108865,22544603247468479,22544604490299392],[17592186175500,67108866,-22544604490299392,-22544603247468479],[17592186175500,67108877,22544603247468479,22544604490299392],[17592186175500,67108878,-22544604490299392,-22544603247468479],[17592186175500,67108992,-22544604485800118,-22544603251967752],[17592186175500,67109004,-22544604485800118,-22544603251967752],[17592186175500,67141632,45089206464001460,45089209011534280],[17592186175500,67141644,49039811112013498,49039814402932400],[17592186175500,67272708,-15222909197186829,-15222904711107262],[17592186175500,67272712,11272300855685410,11272303013198523],[17592186175500,67764228,-11272303079253853,-11272300789630083],[17592186175500,67764232,11272300789630083,11272303079253853],[17592186175500,335675396,-1975303167312100,-1975301852392980],[17592186175500,335675400,1975301852392980,1975303167312100],[17592186175500,1140981764,-1975303111382023,-1975301908323058],[17592186175500,1140981768,1975301908323058,1975303111382023],[17592186175500,17592186044420,-13247606302871576,-13247602585717435],[17592186175500,17592186044424,13247602585717435,13247606302871576],[17592186175500,17592253186052,11272300855685410,11272303013198523],[17592186175500,17592253186056,-15222909197186829,-15222904711107262],[17592186175500,17592253284353,22544603247468479,22544604490299392],[17592186175500,17592253284354,-22544604490299392,-22544603247468479],[17592186175500,17592253284365,22544603247468479,22544604490299392],[17592186175500,17592253284366,-22544604490299392,-22544603247468479],[17592186175500,17592253284480,-22544604485800118,-22544603251967752],[17592186175500,17592253284492,-22544604485800118,-22544603251967752],[17592186175500,17592253317120,49039811112013498,49039814402932400],[17592186175500,17592253317132,45089206464001460,45089209011534280],[17592186175500,17592253677572,11272300789630083,11272303079253853],[17592186175500,17592253677576,-11272303079253853,-11272300789630083],[17592186175500,17592521588740,1975301852392980,1975303167312100],[17592186175500,17592521588744,-1975303167312100,-1975301852392980],[17592186175500,17593326895108,1975301908323058,1975303111382023],[17592186175500,17593326895112,-1975303111382023,-1975301908323058],[17592186175500,35184439328772,13247603788555150,13247605100033866],[17592186175500,35184439328776,-13247605100033866,-13247603788555150],[17592186175500,52776625242116,-13247605100033866,-13247603788555150],[17592186175500,52776625242120,13247603788555150,13247605100033866],[17592186175500,140737555595268,13247603813192808,13247605075396206],[17592186175500,140737555595272,-13247605075396206,-13247603813192808],[17592186175500,158329741508612,-13247605075396206,-13247603813192808],[17592186175500,158329741508616,13247603813192808,13247605075396206],[17592186175500,4611686018494627844,13247603786059568,13247605102529449],[17592186175500,4611686018494627848,-13247605102529449,-13247603786059568],[17592186175500,4611703610680541188,-13247605102529449,-13247603786059568],[17592186175500,4611703610680541192,13247603786059568,13247605102529449],[17592186175560,67108866,-1975303193032786,-1975301826672296],[17592186175560,67108938,-1975303193032786,-1975301826672296],[17592186175560,67108992,-22544604548409457,-22544603189358414],[17592186175560,67109064,-22544604548409457,-22544603189358414],[17592186175560,17592253284354,-1975303193032786,-1975301826672296],[17592186175560,17592253284426,-1975303193032786,-1975301826672296],[17592186175560,17592253284480,-22544604548409457,-22544603189358414],[17592186175560,17592253284552,-22544604548409457,-22544603189358414],[17592186175618,67108872,24519905182726150,24519907574746803],[17592186175618,67109002,24519905182726150,24519907574746803],[17592186175618,17592253284360,24519905182726150,24519907574746803],[17592186175618,17592253284490,24519905182726150,24519907574746803],[17592186175620,67108872,24519905262899363,24519907494573587],[17592186175620,67109004,24519905262899363,24519907494573587],[17592186175620,17592253284360,24519905262899363,24519907494573587],[17592186175620,17592253284492,24519905262899363,24519907494573587],[17592186175624,131080,-13247606387717226,-13247602500871785],[17592186175624,131200,13247602500871785,13247606387717226],[17592186175624,67108866,-22544604548409457,-22544603189358414],[17592186175624,67108868,-1975303161294799,-1975301858410281],[17592186175624,67108928,22544603189358414,22544604548409457],[17592186175624,67109002,-22544604548409457,-22544603189358414],[17592186175624,67109004,-1975303161294799,-1975301858410281],[17592186175624,67109064,22544603189358414,22544604548409457],[17592186175624,67109888,1975301858410281,1975303161294799],[17592186175624,67110024,1975301858410281,1975303161294799],[17592186175624,67272712,11272300807839789,11272303061044145],[17592186175624,67272832,-11272303061044145,-11272300807839789],[17592186175624,67633152,45089206340998288,45089209134537452],[17592186175624,67633288,49039810952496628,49039814562449270],[17592186175624,67764232,11272300719066616,11272303149817323],[17592186175624,67764352,-15222909453017315,-15222904455276782],[17592186175624,335675400,1975301819477018,1975303200228061],[17592186175624,335675520,-1975303200228061,-1975301819477018],[17592186175624,1140981768,1975301885115096,1975303134589986],[17592186175624,1140981888,-1975303134589986,-1975301885115096],[17592186175624,17592186044424,13247602500871785,13247606387717226],[17592186175624,17592186044544,-13247606387717226,-13247602500871785],[17592186175624,17592253186056,-11272303061044145,-11272300807839789],[17592186175624,17592253186176,11272300807839789,11272303061044145],[17592186175624,17592253284354,-22544604548409457,-22544603189358414],[17592186175624,17592253284356,-1975303161294799,-1975301858410281],[17592186175624,17592253284416,22544603189358414,22544604548409457],[17592186175624,17592253284490,-22544604548409457,-22544603189358414],[17592186175624,17592253284492,-1975303161294799,-1975301858410281],[17592186175624,17592253284552,22544603189358414,22544604548409457],[17592186175624,17592253285376,1975301858410281,1975303161294799],[17592186175624,17592253285512,1975301858410281,1975303161294799],[17592186175624,17592253677576,-15222909453017315,-15222904455276782],[17592186175624,17592253677696,11272300719066616,11272303149817323],[17592186175624,17592253808640,49039810952496628,49039814562449270],[17592186175624,17592253808776,45089206340998288,45089209134537452],[17592186175624,17592521588744,-1975303200228061,-1975301819477018],[17592186175624,17592521588864,1975301819477018,1975303200228061],[17592186175624,17593326895112,-1975303134589986,-1975301885115096],[17592186175624,17593326895232,1975301885115096,1975303134589986],[17592186175624,35184439328776,-13247605137681374,-13247603750907644],[17592186175624,35184439328896,13247603750907644,13247605137681374],[17592186175624,52776625242120,13247603750907644,13247605137681374],[17592186175624,52776625242240,-13247605137681374,-13247603750907644],[17592186175624,140737555595272,-13247605100033866,-13247603788555150],[17592186175624,140737555595392,13247603788555150,13247605100033866],[17592186175624,158329741508616,13247603788555150,13247605100033866],[17592186175624,158329741508736,-13247605100033866,-13247603788555150],[17592186175624,4611686018494627848,-13247605129676795,-13247603758912222],[17592186175624,4611686018494627968,13247603758912222,13247605129676795],[17592186175624,4611703610680541192,13247603758912222,13247605129676795],[17592186175624,4611703610680541312,-13247605129676795,-13247603758912222],[17592186176520,67108992,-1975303161294799,-1975301858410281],[17592186176520,67110024,-1975303161294799,-1975301858410281],[17592186176520,17592253284480,-1975303161294799,-1975301858410281],[17592186176520,17592253285512,-1975303161294799,-1975301858410281],[17592186208257,67108868,13247603817961795,13247605070627222],[17592186208257,67141637,13247603817961795,13247605070627222],[17592186208257,17592253284356,13247603817961795,13247605070627222],[17592186208257,17592253317125,13247603817961795,13247605070627222],[17592186208258,67108872,-13247605070627222,-13247603817961795],[17592186208258,67141642,-24519907503744101,-24519905253728852],[17592186208258,67239946,11272300803168551,11272303065715385],[17592186208258,17592253186056,11272300803168551,11272303065715385],[17592186208258,17592253284360,-24519907503744101,-24519905253728852],[17592186208258,17592253317130,-13247605070627222,-13247603817961795],[17592186208260,131076,-1975304301048867,-1975300718656210],[17592186208260,163840,1975300718656210,1975304301048867],[17592186208260,67108865,-13247605070627222,-13247603817961795],[17592186208260,67108872,-26495210084232978,-26495207692945056],[17592186208260,67141637,-13247605070627222,-13247603817961795],[17592186208260,67141644,-37767512400416486,-37767509245645481],[17592186208260,67239948,15222904711107262,15222909197186829],[17592186208260,67272712,-3950606183988306,-3950603855421852],[17592186208260,67764228,24519905280236082,24519907477236870],[17592186208260,67796992,-24519907477236870,-24519905280236082],[17592186208260,335675396,-22544604497985104,-22544603239782766],[17592186208260,335708160,22544603239782766,22544604497985104],[17592186208260,1140850688,13247603817961795,13247605070627222],[17592186208260,1140883460,15222905726284853,15222908182009245],[17592186208260,1140981764,-47064511858528265,-47064508636712560],[17592186208260,1141014528,45089206586850560,45089208888685184],[17592186208260,17592186044420,1975300718656210,1975304301048867],[17592186208260,17592186077184,-1975304301048867,-1975300718656210],[17592186208260,17592253153292,-3950606183988306,-3950603855421852],[17592186208260,17592253186056,15222904711107262,15222909197186829],[17592186208260,17592253284353,-13247605070627222,-13247603817961795],[17592186208260,17592253284360,-37767512400416486,-37767509245645481],[17592186208260,17592253317125,-13247605070627222,-13247603817961795],[17592186208260,17592253317132,-26495210084232978,-26495207692945056],[17592186208260,17592253677572,-24519907477236870,-24519905280236082],[17592186208260,17592253710336,24519905280236082,24519907477236870],[17592186208260,17592521588740,22544603239782766,22544604497985104],[17592186208260,17592521621504,-22544604497985104,-22544603239782766],[17592186208260,17593326895108,45089206586850560,45089208888685184],[17592186208260,17593326927872,-47064511858528265,-47064508636712560],[17592186208260,17593327026176,15222905726284853,15222908182009245],[17592186208260,17593327058948,13247603817961795,13247605070627222],[17592186208260,35184439328772,-1975303134589986,-1975301885115096],[17592186208260,35184439361536,1975301885115096,1975303134589986],[17592186208260,52776625242116,1975301885115096,1975303134589986],[17592186208260,52776625274880,-1975303134589986,-1975301885115096],[17592186208260,140737555595268,-1975303111382023,-1975301908323058],[17592186208260,140737555628032,1975301908323058,1975303111382023],[17592186208260,140738562129924,-13247605075396206,-13247603813192808],[17592186208260,140738562228228,11272300855685410,11272303013198523],[17592186208260,140738562260992,1975301908323058,1975303111382023],[17592186208260,158329741508612,1975301908323058,1975303111382023],[17592186208260,158329741541376,-1975303111382023,-1975301908323058],[17592186208260,158330748141572,1975301908323058,1975303111382023],[17592186208260,158330748174336,11272300855685410,11272303013198523],[17592186208260,158330748272640,-13247605075396206,-13247603813192808],[17592186208260,4611686018494627844,-1975303136765642,-1975301882939439],[17592186208260,4611686018494660608,1975301882939439,1975303136765642],[17592186208260,4611703610680541188,1975301882939439,1975303136765642],[17592186208260,4611703610680573952,-1975303136765642,-1975301882939439],[17592186208264,0,18593997898859016,18593999799498692],[17592186208264,32776,-11272305103287715,-11272298765596219],[17592186208264,131080,22544602005389605,22544605732378260],[17592186208264,163840,7321695128457817,7321698701015960],[17592186208264,67108866,13247603817961795,13247605070627222],[17592186208264,67108868,-18594001318589224,-18593996379768482],[17592186208264,67108992,13247603822461068,13247605066127948],[17592186208264,67141642,24519905253728852,24519907503744101],[17592186208264,67141644,-11272305157286919,-11272298711597012],[17592186208264,67141768,24519905262899363,24519907494573587],[17592186208264,67239946,-11272303065715385,-11272300803168551],[17592186208264,67239948,-11272303013198523,-11272300855685410],[17592186208264,67240072,-11272303061044145,-11272300807839789],[17592186208264,67272708,3950603855421852,3950606183988306],[17592186208264,67633152,9296998646110384,9297000203068470],[17592186208264,67665928,-11272303070687196,-11272300798196740],[17592186208264,67764232,-974533467,974533465],[17592186208264,67796992,20569300415763760,20569302302299032],[17592186208264,335577096,24519905244697076,24519907512775874],[17592186208264,335675400,-1975303167312100,-1975301852392980],[17592186208264,335708160,-22544604497985104,-22544603239782766],[17592186208264,1140850688,-22544604490299392,-22544603247468479],[17592186208264,1140883464,16618692505223764,16618700173428866],[17592186208264,1140981768,-1975303111382023,-1975301908323058],[17592186208264,1141014528,-37188001072094720,-37187994324620700],[17592186208264,17592186044424,7321695128457817,7321698701015960],[17592186208264,17592186077184,22544602005389605,22544605732378260],[17592186208264,17592186175488,-11272305103287715,-11272298765596219],[17592186208264,17592186208264,18593997898859016,18593999799498692],[17592186208264,17592253153292,3950603855421852,3950606183988306],[17592186208264,17592253186050,-11272303065715385,-11272300803168551],[17592186208264,17592253186052,-11272303013198523,-11272300855685410],[17592186208264,17592253186176,-11272303061044145,-11272300807839789],[17592186208264,17592253284354,24519905253728852,24519907503744101],[17592186208264,17592253284356,-11272305157286919,-11272298711597012],[17592186208264,17592253284480,24519905262899363,24519907494573587],[17592186208264,17592253317130,13247603817961795,13247605070627222],[17592186208264,17592253317132,-18594001318589224,-18593996379768482],[17592186208264,17592253317256,13247603822461068,13247605066127948],[17592186208264,17592253677576,20569300415763760,20569302302299032],[17592186208264,17592253710336,-974533467,974533465],[17592186208264,17592253808640,-11272303070687196,-11272300798196740],[17592186208264,17592253841416,9296998646110384,9297000203068470],[17592186208264,17592521588744,-22544604497985104,-22544603239782766],[17592186208264,17592521621504,-1975303167312100,-1975301852392980],[17592186208264,17592521719808,24519905244697076,24519907512775874],[17592186208264,17593326895112,-37188001072094720,-37187994324620700],[17592186208264,17593326927872,-1975303111382023,-1975301908323058],[17592186208264,17593327026176,16618692505223764,16618700173428866],[17592186208264,17593327058952,-22544604490299392,-22544603247468479],[17592186208264,35184439230472,-11272303061044145,-11272300807839789],[17592186208264,35184439328776,13247603788555150,13247605100033866],[17592186208264,35184439361536,-1975303134589986,-1975301885115096],[17592186208264,52776625242120,-1975303134589986,-1975301885115096],[17592186208264,52776625274880,13247603788555150,13247605100033866],[17592186208264,52776625373184,-11272303061044145,-11272300807839789],[17592186208264,140737555496968,-11272303013198523,-11272300855685410],[17592186208264,140737555595272,13247603813192808,13247605075396206],[17592186208264,140737555628032,-1975303111382023,-1975301908323058],[17592186208264,140738562129928,1975301908323058,1975303111382023],[17592186208264,140738562260992,-1975303111382023,-1975301908323058],[17592186208264,158329741508616,-1975303111382023,-1975301908323058],[17592186208264,158329741541376,13247603813192808,13247605075396206],[17592186208264,158329741639680,-11272303013198523,-11272300855685410],[17592186208264,158330748141576,-1975303111382023,-1975301908323058],[17592186208264,158330748272640,1975301908323058,1975303111382023],[17592186208264,4611686018494529544,-11272303065715385,-11272300803168551],[17592186208264,4611686018494627848,13247603786059568,13247605102529449],[17592186208264,4611686018494660608,-1975303136765642,-1975301882939439],[17592186208264,4611703610680541192,-1975303136765642,-1975301882939439],[17592186208264,4611703610680573952,13247603786059568,13247605102529449],[17592186208264,4611703610680672256,-11272303065715385,-11272300803168551],[17592186208384,67108872,-13247605066127948,-13247603822461068],[17592186208384,67141768,-24519907494573587,-24519905262899363],[17592186208384,67240072,11272300807839789,11272303061044145],[17592186208384,67633152,-13247605076872486,-13247603811716528],[17592186208384,67666048,11272300798196740,11272303070687196],[17592186208384,67764352,-24519907512775874,-24519905244697076],[17592186208384,17592253186056,11272300807839789,11272303061044145],[17592186208384,17592253284360,-24519907494573587,-24519905262899363],[17592186208384,17592253317256,-13247605066127948,-13247603822461068],[17592186208384,17592253710336,-24519907512775874,-24519905244697076],[17592186208384,17592253808640,11272300798196740,11272303070687196],[17592186208384,17592253841536,-13247605076872486,-13247603811716528],[17592186568704,131080,22544601914969187,22544605822798680],[17592186568704,131200,-1975304480049416,-1975300539655663],[17592186568704,67108872,-1975305698740355,-1975299320964727],[17592186568704,67108992,-3950609898973822,-3950600140436346],[17592186568704,67240072,-45089209134537452,-45089206340998288],[17592186568704,67272712,-9297000203068470,-9296998646110384],[17592186568704,67272832,13247603811716528,13247605076872486],[17592186568704,68288520,-1975303161294799,-1975301858410281],[17592186568704,68288640,11272300798196740,11272303070687196],[17592186568704,268435584,11272298321696800,11272305547187129],[17592186568704,335675400,-24519907748637518,-24519905008835432],[17592186568704,335675520,-7321700748173631,-7321693081300137],[17592186568704,336593024,-24519907512775874,-24519905244697076],[17592186568704,469762176,13247603811716528,13247605076872486],[17592186568704,1140981768,-1975303134589986,-1975301885115096],[17592186568704,1140981888,-22544604497985104,-22544603239782766],[17592186568704,1409286272,-1975303142599947,-1975301877105131],[17592186568704,17592186699784,22544601914969187,22544605822798680],[17592186568704,17592186699904,-1975304480049416,-1975300539655663],[17592186568704,17592253677576,-1975305698740355,-1975299320964727],[17592186568704,17592253677696,-3950609898973822,-3950600140436346],[17592186568704,17592253808776,-45089209134537452,-45089206340998288],[17592186568704,17592253841416,-9297000203068470,-9296998646110384],[17592186568704,17592253841536,13247603811716528,13247605076872486],[17592186568704,17592254857224,-1975303161294799,-1975301858410281],[17592186568704,17592254857344,11272300798196740,11272303070687196],[17592186568704,17592455004288,11272298321696800,11272305547187129],[17592186568704,17592522244104,-24519907748637518,-24519905008835432],[17592186568704,17592522244224,-7321700748173631,-7321693081300137],[17592186568704,17592523161728,-24519907512775874,-24519905244697076],[17592186568704,17592656330880,13247603811716528,13247605076872486],[17592186568704,17593327550472,-1975303134589986,-1975301885115096],[17592186568704,17593327550592,-22544604497985104,-22544603239782766],[17592186568704,17593595854976,-1975303142599947,-1975301877105131],[17592186568704,35184372088960,-1975304963903298,-1975300055801777],[17592186568704,35184439328776,13247603750907644,13247605137681374],[17592186568704,35184439328896,-1975303200228061,-1975301819477018],[17592186568704,35184640655488,11272300719066616,11272303149817323],[17592186568704,35184641572992,11272300807839789,11272303061044145],[17592186568704,35184707633280,-18594001619979184,-18593996078378526],[17592186568704,35184774742144,13247603822461068,13247605066127948],[17592186568704,52776558657664,-1975304963903298,-1975300055801777],[17592186568704,52776625897480,13247603750907644,13247605137681374],[17592186568704,52776625897600,-1975303200228061,-1975301819477018],[17592186568704,52776827224192,11272300719066616,11272303149817323],[17592186568704,52776828141696,11272300807839789,11272303061044145],[17592186568704,52776894201984,-18594001619979184,-18593996078378526],[17592186568704,52776961310848,13247603822461068,13247605066127948],[17592186568704,105553384702080,-22544604485800118,-22544603251967752],[17592186568704,123145571270784,-22544604485800118,-22544603251967752],[17592186568704,140737555595272,13247603788555150,13247605100033866],[17592186568704,140737555595392,-1975303167312100,-1975301852392980],[17592186568704,140737823899776,13247603786922062,13247605101666952],[17592186568704,158329742163976,13247603788555150,13247605100033866],[17592186568704,158329742164096,-1975303167312100,-1975301852392980],[17592186568704,158330010468480,13247603786922062,13247605101666952],[17592186568704,175922128879744,-1975303161294799,-1975301858410281],[17592186568704,193514315448448,-1975303161294799,-1975301858410281],[17592186568704,4611686018494627848,13247603758912222,13247605129676795],[17592186568704,4611686018494627968,-1975303196554503,-1975301823150576],[17592186568704,4611686018762932352,13247603754276960,13247605134312055],[17592186568704,4611703610681196552,13247603758912222,13247605129676795],[17592186568704,4611703610681196672,-1975303196554503,-1975301823150576],[17592186568704,4611703610949501056,13247603754276960,13247605134312055],[17592186568704,4611721203067912320,-22544604548409457,-22544603189358414],[17592186568704,4611738795254481024,-22544604548409457,-22544603189358414],[17592186568704,36893523332059627648,-1975303193032786,-1975301826672296],[17592186568704,36893540924246196352,-1975303193032786,-1975301826672296],[17592186568714,67764226,24519905182726150,24519907574746803],[17592186568714,67764232,-24519907574746803,-24519905182726150],[17592186568714,17592253284354,-24519907574746803,-24519905182726150],[17592186568714,17592253284360,24519905182726150,24519907574746803],[17592186568716,67764228,24519905262899363,24519907494573587],[17592186568716,67764232,-24519907494573587,-24519905262899363],[17592186568716,17592253284356,-24519907494573587,-24519905262899363],[17592186568716,17592253284360,24519905262899363,24519907494573587],[17592186568840,67240072,-49039814562449270,-49039810952496628],[17592186568840,67764232,11272298321696800,11272305547187129],[17592186568840,67764352,37767509015262141,37767512630799828],[17592186568840,336068616,1975301819477018,1975303200228061],[17592186568840,336068736,-1975303200228061,-1975301819477018],[17592186568840,17592253284360,37767509015262141,37767512630799828],[17592186568840,17592253284480,11272298321696800,11272305547187129],[17592186568840,17592253808640,-49039814562449270,-49039810952496628],[17592186568840,17592521588744,-1975303200228061,-1975301819477018],[17592186568840,17592521588864,1975301819477018,1975303200228061],[17592186568840,35184641048584,-13247605137681374,-13247603750907644],[17592186568840,35184641048704,13247603750907644,13247605137681374],[17592186568840,52776826568712,13247603750907644,13247605137681374],[17592186568840,52776826568832,-13247605137681374,-13247603750907644],[17592186568896,67764288,-13247605134312055,-13247603754276960],[17592186568896,67764352,13247603754276960,13247605134312055],[17592186568896,336068672,1975301823150576,1975303196554503],[17592186568896,336068736,-1975303196554503,-1975301823150576],[17592186568896,17592253284416,13247603754276960,13247605134312055],[17592186568896,17592253284480,-13247605134312055,-13247603754276960],[17592186568896,17592521588800,-1975303196554503,-1975301823150576],[17592186568896,17592521588864,1975301823150576,1975303196554503],[17592186568896,35184641048640,-13247605129676795,-13247603758912222],[17592186568896,35184641048704,13247603758912222,13247605129676795],[17592186568896,52776826568768,13247603758912222,13247605129676795],[17592186568896,52776826568832,-13247605129676795,-13247603758912222],[17592186569856,67764352,13247603786922062,13247605101666952],[17592186569856,67765248,-13247605101666952,-13247603786922062],[17592186569856,336068736,-1975303167312100,-1975301852392980],[17592186569856,336069632,1975301852392980,1975303167312100],[17592186569856,17592253284480,-13247605101666952,-13247603786922062],[17592186569856,17592253285376,13247603786922062,13247605101666952],[17592186569856,17592521588864,1975301852392980,1975303167312100],[17592186569856,17592521589760,-1975303167312100,-1975301852392980],[17592186569856,35184641048704,13247603788555150,13247605100033866],[17592186569856,35184641049600,-13247605100033866,-13247603788555150],[17592186569856,52776826568832,-13247605100033866,-13247603788555150],[17592186569856,52776826569728,13247603788555150,13247605100033866],[17592186601476,67764228,-26495209992202640,-26495207784975390],[17592186601476,67796992,26495207784975390,26495209992202640],[17592186601476,17592253284356,26495207784975390,26495209992202640],[17592186601476,17592253317120,-26495209992202640,-26495207784975390],[17592186601480,67239936,13247602507378184,13247606381210832],[17592186601480,67272712,11272300798196740,11272303070687196],[17592186601480,67764232,26495207784975390,26495209992202640],[17592186601480,67796992,-24519907494573587,-24519905262899363],[17592186601480,17592253284360,-24519907494573587,-24519905262899363],[17592186601480,17592253317120,26495207784975390,26495209992202640],[17592186601480,17592253808640,11272300798196740,11272303070687196],[17592186601480,17592253841416,13247602507378184,13247606381210832],[17592186601600,67272832,-11272303070687196,-11272300798196740],[17592186601600,67796992,11272300798196740,11272303070687196],[17592186601600,17592253284480,11272300798196740,11272303070687196],[17592186601600,17592253808640,-11272303070687196,-11272300798196740],[17592186699778,67108872,-13247605134312055,-13247603754276960],[17592186699778,67239946,11272300730744752,11272303138139186],[17592186699778,67633162,-24519907574746803,-24519905182726150],[17592186699778,17592253284360,-24519907574746803,-24519905182726150],[17592186699778,17592253677576,11272300730744752,11272303138139186],[17592186699778,17592253808650,-13247605134312055,-13247603754276960],[17592186699780,67108872,-13247605101666952,-13247603786922062],[17592186699780,67141632,1975301877105131,1975303142599947],[17592186699780,67239948,11272300789630083,11272303079253853],[17592186699780,67272708,-24519907477236870,-24519905280236082],[17592186699780,67633164,-24519907494573587,-24519905262899363],[17592186699780,67665924,26495207784975390,26495209992202640],[17592186699780,17592253284360,-24519907494573587,-24519905262899363],[17592186699780,17592253317120,26495207784975390,26495209992202640],[17592186699780,17592253677576,11272300789630083,11272303079253853],[17592186699780,17592253710336,-24519907477236870,-24519905280236082],[17592186699780,17592253808652,-13247605101666952,-13247603786922062],[17592186699780,17592253841412,1975301877105131,1975303142599947],[17592186699784,0,18593997808144912,18593999890212800],[17592186699784,131080,22544601914969187,22544605822798680],[17592186699784,524296,-11272305322642808,-11272298546241124],[17592186699784,655360,7321694955032038,7321698874441739],[17592186699784,67108866,13247603754276960,13247605134312055],[17592186699784,67108868,13247603786922062,13247605101666952],[17592186699784,67108992,-18594001619979184,-18593996078378526],[17592186699784,67141632,-11272302768733624,-11272301100150310],[17592186699784,67239946,-11272303138139186,-11272300730744752],[17592186699784,67239948,-11272303079253853,-11272300789630083],[17592186699784,67240072,-11272303149817323,-11272300719066616],[17592186699784,67272712,-974533465,974533467],[17592186699784,67633162,24519905182726150,24519907574746803],[17592186699784,67633164,24519905262899363,24519907494573587],[17592186699784,67633288,-11272305547187129,-11272298321696800],[17592186699784,67665928,-26495209992202640,-26495207784975390],[17592186699784,67764352,3950603736210166,3950606303199992],[17592186699784,67796992,15222905973445933,15222907934848161],[17592186699784,68157440,-1975303161294799,-1975301858410281],[17592186699784,68681736,-11272303070687196,-11272300798196740],[17592186699784,68812800,9296998263946318,9297000585232538],[17592186699784,335544320,-22544604548409457,-22544603189358414],[17592186699784,335675400,-1975303200228061,-1975301819477018],[17592186699784,336068616,16618691985372593,16618700693280031],[17592186699784,336199680,-37188001526996408,-37187993869719008],[17592186699784,1140981768,-1975303134589986,-1975301885115096],[17592186699784,1141374984,24519905280236082,24519907477236870],[17592186699784,1141506048,-22544604497985104,-22544603239782766],[17592186699784,17592186044424,7321694955032038,7321698874441739],[17592186699784,17592186175488,-11272305322642808,-11272298546241124],[17592186699784,17592186568704,22544601914969187,22544605822798680],[17592186699784,17592186699784,18593997808144912,18593999890212800],[17592186699784,17592253153416,3950603736210166,3950606303199992],[17592186699784,17592253186056,15222905973445933,15222907934848161],[17592186699784,17592253284354,24519905182726150,24519907574746803],[17592186699784,17592253284356,24519905262899363,24519907494573587],[17592186699784,17592253284480,-11272305547187129,-11272298321696800],[17592186699784,17592253317120,-26495209992202640,-26495207784975390],[17592186699784,17592253677570,-11272303138139186,-11272300730744752],[17592186699784,17592253677572,-11272303079253853,-11272300789630083],[17592186699784,17592253677696,-11272303149817323,-11272300719066616],[17592186699784,17592253710336,-974533465,974533467],[17592186699784,17592253808650,13247603754276960,13247605134312055],[17592186699784,17592253808652,13247603786922062,13247605101666952],[17592186699784,17592253808776,-18594001619979184,-18593996078378526],[17592186699784,17592253841416,-11272302768733624,-11272301100150310],[17592186699784,17592254201864,9296998263946318,9297000585232538],[17592186699784,17592254332928,-11272303070687196,-11272300798196740],[17592186699784,17592254857224,-1975303161294799,-1975301858410281],[17592186699784,17592521588744,-37188001526996408,-37187993869719008],[17592186699784,17592521719808,16618691985372593,16618700693280031],[17592186699784,17592522113024,-1975303200228061,-1975301819477018],[17592186699784,17592522244104,-22544604548409457,-22544603189358414],[17592186699784,17593326895112,-22544604497985104,-22544603239782766],[17592186699784,17593327026176,24519905280236082,24519907477236870],[17592186699784,17593327419392,-1975303134589986,-1975301885115096],[17592186699784,35184439328776,13247603750907644,13247605137681374],[17592186699784,35184439721992,-11272303149817323,-11272300719066616],[17592186699784,35184439853056,-1975303200228061,-1975301819477018],[17592186699784,35184641048584,1975301819477018,1975303200228061],[17592186699784,35184641179648,-1975303200228061,-1975301819477018],[17592186699784,52776625242120,-1975303200228061,-1975301819477018],[17592186699784,52776625373184,-11272303149817323,-11272300719066616],[17592186699784,52776625766400,13247603750907644,13247605137681374],[17592186699784,52776826568712,-1975303200228061,-1975301819477018],[17592186699784,52776826699776,1975301819477018,1975303200228061],[17592186699784,140737555595272,13247603788555150,13247605100033866],[17592186699784,140737555988488,-11272303079253853,-11272300789630083],[17592186699784,140737556119552,-1975303167312100,-1975301852392980],[17592186699784,158329741508616,-1975303167312100,-1975301852392980],[17592186699784,158329741639680,-11272303079253853,-11272300789630083],[17592186699784,158329742032896,13247603788555150,13247605100033866],[17592186699784,4611686018494627848,13247603758912222,13247605129676795],[17592186699784,4611686018495021064,-11272303138139186,-11272300730744752],[17592186699784,4611686018495152128,-1975303196554503,-1975301823150576],[17592186699784,4611703610680541192,-1975303196554503,-1975301823150576],[17592186699784,4611703610680672256,-11272303138139186,-11272300730744752],[17592186699784,4611703610681065472,13247603758912222,13247605129676795],[17592186699840,67108992,13247603754276960,13247605134312055],[17592186699840,67633344,13247603754276960,13247605134312055],[17592186699840,17592253284480,13247603754276960,13247605134312055],[17592186699840,17592253808832,13247603754276960,13247605134312055],[17592186699904,131200,-1975304480049416,-1975300539655663],[17592186699904,655360,1975300539655663,1975304480049416],[17592186699904,67108872,-26495210262619762,-26495207514558268],[17592186699904,67108928,-13247605134312055,-13247603754276960],[17592186699904,67109888,-13247605101666952,-13247603786922062],[17592186699904,67240072,15222904455276782,15222909453017315],[17592186699904,67272832,24519905244697076,24519907512775874],[17592186699904,67633288,-37767512630799828,-37767509015262141],[17592186699904,67633344,-13247605134312055,-13247603754276960],[17592186699904,67634304,-13247605101666952,-13247603786922062],[17592186699904,67764232,-3950606303199992,-3950603736210166],[17592186699904,67796992,-24519907512775874,-24519905244697076],[17592186699904,68157440,13247603786922062,13247605101666952],[17592186699904,68681856,13247603786922062,13247605101666952],[17592186699904,335544320,13247603754276960,13247605134312055],[17592186699904,335675520,-47064512160515549,-47064508334725266],[17592186699904,336068736,15222905573753978,15222908334540116],[17592186699904,336199680,45089206348552808,45089209126982928],[17592186699904,1140981888,-22544604497985104,-22544603239782766],[17592186699904,1141506048,22544603239782766,22544604497985104],[17592186699904,17592186044544,1975300539655663,1975304480049416],[17592186699904,17592186568704,-1975304480049416,-1975300539655663],[17592186699904,17592253153416,-3950606303199992,-3950603736210166],[17592186699904,17592253186176,-24519907512775874,-24519905244697076],[17592186699904,17592253284360,-37767512630799828,-37767509015262141],[17592186699904,17592253284416,-13247605134312055,-13247603754276960],[17592186699904,17592253285376,-13247605101666952,-13247603786922062],[17592186699904,17592253677576,15222904455276782,15222909453017315],[17592186699904,17592253710336,24519905244697076,24519907512775874],[17592186699904,17592253808776,-26495210262619762,-26495207514558268],[17592186699904,17592253808832,-13247605134312055,-13247603754276960],[17592186699904,17592253809792,-13247605101666952,-13247603786922062],[17592186699904,17592254332928,13247603786922062,13247605101666952],[17592186699904,17592254857344,13247603786922062,13247605101666952],[17592186699904,17592521588864,45089206348552808,45089209126982928],[17592186699904,17592521719808,15222905573753978,15222908334540116],[17592186699904,17592522113024,-47064512160515549,-47064508334725266],[17592186699904,17592522244224,13247603754276960,13247605134312055],[17592186699904,17593326895232,22544603239782766,22544604497985104],[17592186699904,17593327419392,-22544604497985104,-22544603239782766],[17592186699904,35184439328896,-1975303200228061,-1975301819477018],[17592186699904,35184439853056,1975301819477018,1975303200228061],[17592186699904,35184640655488,11272300719066616,11272303149817323],[17592186699904,35184641048704,-13247605137681374,-13247603750907644],[17592186699904,35184641179648,1975301819477018,1975303200228061],[17592186699904,52776625242240,1975301819477018,1975303200228061],[17592186699904,52776625766400,-1975303200228061,-1975301819477018],[17592186699904,52776826568832,1975301819477018,1975303200228061],[17592186699904,52776826699776,-13247605137681374,-13247603750907644],[17592186699904,52776827092992,11272300719066616,11272303149817323],[17592186699904,140737555595392,-1975303167312100,-1975301852392980],[17592186699904,140737556119552,1975301852392980,1975303167312100],[17592186699904,158329741508736,1975301852392980,1975303167312100],[17592186699904,158329742032896,-1975303167312100,-1975301852392980],[17592186699904,4611686018494627968,-1975303196554503,-1975301823150576],[17592186699904,4611686018495152128,1975301823150576,1975303196554503],[17592186699904,4611703610680541312,1975301823150576,1975303196554503],[17592186699904,4611703610681065472,-1975303196554503,-1975301823150576],[17592186700800,67108992,13247603786922062,13247605101666952],[17592186700800,67634304,13247603786922062,13247605101666952],[17592186700800,68157440,-1975303142599947,-1975301877105131],[17592186700800,68682752,-1975303142599947,-1975301877105131],[17592186700800,17592253284480,13247603786922062,13247605101666952],[17592186700800,17592253809792,13247603786922062,13247605101666952],[17592186700800,17592254332928,-1975303142599947,-1975301877105131],[17592186700800,17592254858240,-1975303142599947,-1975301877105131],[17592186732544,67108868,-1975303142599947,-1975301877105131],[17592186732544,67108872,-11272302715781341,-11272301153102595],[17592186732544,67108992,13247603811716528,13247605076872486],[17592186732544,67272708,24519905280236082,24519907477236870],[17592186732544,67272712,-20569302302299032,-20569300415763760],[17592186732544,67665924,-26495209992202640,-26495207784975390],[17592186732544,67665928,24519905262899363,24519907494573587],[17592186732544,67666048,-11272303070687196,-11272300798196740],[17592186732544,67764232,-15222907934848161,-15222905973445933],[17592186732544,67764352,24519905244697076,24519907512775874],[17592186732544,17592253186056,-15222907934848161,-15222905973445933],[17592186732544,17592253186176,24519905244697076,24519907512775874],[17592186732544,17592253284356,-26495209992202640,-26495207784975390],[17592186732544,17592253284360,24519905262899363,24519907494573587],[17592186732544,17592253284480,-11272303070687196,-11272300798196740],[17592186732544,17592253677572,24519905280236082,24519907477236870],[17592186732544,17592253677576,-20569302302299032,-20569300415763760],[17592186732544,17592253841412,-1975303142599947,-1975301877105131],[17592186732544,17592253841416,-11272302715781341,-11272301153102595],[17592186732544,17592253841536,13247603811716528,13247605076872486],[17592187092992,67764232,1975301858410281,1975303161294799],[17592187092992,67764352,-13247605101666952,-13247603786922062],[17592187092992,67765248,1975301877105131,1975303142599947],[17592187092992,336068736,1975301852392980,1975303167312100],[17592187092992,336069632,22544603239782766,22544604497985104],[17592187092992,469763072,-13247605076872486,-13247603811716528],[17592187092992,17592254857224,1975301858410281,1975303161294799],[17592187092992,17592254857344,-13247605101666952,-13247603786922062],[17592187092992,17592254858240,1975301877105131,1975303142599947],[17592187092992,17592523161728,1975301852392980,1975303167312100],[17592187092992,17592523162624,22544603239782766,22544604497985104],[17592187092992,17592656856064,-13247605076872486,-13247603811716528],[17592187092992,35184641048704,-13247605100033866,-13247603788555150],[17592187092992,35184641049600,1975301885115096,1975303134589986],[17592187092992,35184774743040,-13247605066127948,-13247603822461068],[17592187092992,52776828141696,-13247605100033866,-13247603788555150],[17592187092992,52776828142592,1975301885115096,1975303134589986],[17592187092992,52776961836032,-13247605066127948,-13247603822461068],[17592187092992,105553250485248,22544603251967752,22544604485800118],[17592187092992,123145437578240,22544603251967752,22544604485800118],[17592187224072,67633152,1975301858410281,1975303161294799],[17592187224072,68681736,11272300798196740,11272303070687196],[17592187224072,68812800,-9297000585232538,-9296998263946318],[17592187224072,17592253677576,-9297000585232538,-9296998263946318],[17592187224072,17592253808640,11272300798196740,11272303070687196],[17592187224072,17592254857224,1975301858410281,1975303161294799],[17592187224192,67633152,-11272303070687196,-11272300798196740],[17592187224192,68681856,-11272303070687196,-11272300798196740],[17592187224192,17592253808640,-11272303070687196,-11272300798196740],[17592187224192,17592254857344,-11272303070687196,-11272300798196740],[17592187617288,67764232,11272300798196740,11272303070687196],[17592187617288,68288520,-11272303070687196,-11272300798196740],[17592187617288,17592253808640,-11272303070687196,-11272300798196740],[17592187617288,17592254332928,11272300798196740,11272303070687196],[17592187617408,67764352,-13247605101666952,-13247603786922062],[17592187617408,68288640,11272300798196740,11272303070687196],[17592187617408,68812800,1975301877105131,1975303142599947],[17592187617408,336068736,1975301852392980,1975303167312100],[17592187617408,336593024,-24519907512775874,-24519905244697076],[17592187617408,337117184,22544603239782766,22544604497985104],[17592187617408,17592253284480,1975301877105131,1975303142599947],[17592187617408,17592253808640,11272300798196740,11272303070687196],[17592187617408,17592254332928,-13247605101666952,-13247603786922062],[17592187617408,17592521588864,22544603239782766,22544604497985104],[17592187617408,17592522113024,-24519907512775874,-24519905244697076],[17592187617408,17592522637312,1975301852392980,1975303167312100],[17592187617408,35184641048704,-13247605100033866,-13247603788555150],[17592187617408,35184641572992,11272300807839789,11272303061044145],[17592187617408,35184642097152,1975301885115096,1975303134589986],[17592187617408,52776826568832,1975301885115096,1975303134589986],[17592187617408,52776827092992,11272300807839789,11272303061044145],[17592187617408,52776827617280,-13247605100033866,-13247603788555150],[17592187618304,67765248,1975301877105131,1975303142599947],[17592187618304,68812800,-1975303142599947,-1975301877105131],[17592187618304,336069632,22544603239782766,22544604497985104],[17592187618304,337117184,-22544604497985104,-22544603239782766],[17592187618304,17592253285376,-1975303142599947,-1975301877105131],[17592187618304,17592254332928,1975301877105131,1975303142599947],[17592187618304,17592521589760,-22544604497985104,-22544603239782766],[17592187618304,17592522637312,22544603239782766,22544604497985104],[17592187618304,35184641049600,1975301885115096,1975303134589986],[17592187618304,35184642097152,-1975303134589986,-1975301885115096],[17592187618304,52776826569728,-1975303134589986,-1975301885115096],[17592187618304,52776827617280,1975301885115096,1975303134589986],[17592187748352,67108992,-1975303142599947,-1975301877105131],[17592187748352,67109888,1975301877105131,1975303142599947],[17592187748352,67764232,-9297000585232538,-9296998263946318],[17592187748352,68288520,9296998263946318,9297000585232538],[17592187748352,68681856,-1975303142599947,-1975301877105131],[17592187748352,68682752,1975301877105131,1975303142599947],[17592187748352,17592253284480,-1975303142599947,-1975301877105131],[17592187748352,17592253285376,1975301877105131,1975303142599947],[17592187748352,17592253677576,9296998263946318,9297000585232538],[17592187748352,17592254201864,-9297000585232538,-9296998263946318],[17592187748352,17592254857344,-1975303142599947,-1975301877105131],[17592187748352,17592254858240,1975301877105131,1975303142599947],[17592253153280,32776,-9296999899749346,-9296998949429508],[17592253153280,131080,-5346396222573668,-5346392587195036],[17592253153280,524296,-9296999945106400,-9296998904072456],[17592253153280,268435464,22544601914969187,22544605822798680],[17592253153280,1073741832,22544602005389605,22544605732378260],[17592253153280,17592253186056,-9296999899749346,-9296998949429508],[17592253153280,17592253284360,-5346396222573668,-5346392587195036],[17592253153280,17592253677576,-9296999945106400,-9296998904072456],[17592253153280,17592521588744,22544601914969187,22544605822798680],[17592253153280,17593326895112,22544602005389605,22544605732378260],[17592253153280,35184372088840,-13247606387717226,-13247602500871785],[17592253153280,52776625242120,-13247606387717226,-13247602500871785],[17592253153280,140737488355336,-13247606302871576,-13247602585717435],[17592253153280,158329741508616,-13247606302871576,-13247602585717435],[17592253153280,4611686018427387912,-13247606405704134,-13247602482884872],[17592253153280,4611703610680541192,-13247606405704134,-13247602482884872],[17592253153290,67108866,-1975304999015964,-1975300020689110],[17592253153290,67108872,1975300020689110,1975304999015964],[17592253153290,17592186044418,1975300020689110,1975304999015964],[17592253153290,17592186044424,-1975304999015964,-1975300020689110],[17592253153292,67108868,-1975304835202292,-1975300184502783],[17592253153292,67108872,1975300184502783,1975304835202292],[17592253153292,67272708,3950603855421852,3950606183988306],[17592253153292,67272712,-3950606183988306,-3950603855421852],[17592253153292,17592186044420,1975300184502783,1975304835202292],[17592253153292,17592186044424,-1975304835202292,-1975300184502783],[17592253153292,17592186208260,-3950606183988306,-3950603855421852],[17592253153292,17592186208264,3950603855421852,3950606183988306],[17592253153416,67108872,1975300055801777,1975304963903298],[17592253153416,67108992,-1975304963903298,-1975300055801777],[17592253153416,67764232,-3950606303199992,-3950603736210166],[17592253153416,67764352,3950603736210166,3950606303199992],[17592253153416,17592186044424,-1975304963903298,-1975300055801777],[17592253153416,17592186044544,1975300055801777,1975304963903298],[17592253153416,17592186699784,3950603736210166,3950606303199992],[17592253153416,17592186699904,-3950606303199992,-3950603736210166],[17592253186050,67239946,-11272303065715385,-11272300803168551],[17592253186050,67272712,11272300803168551,11272303065715385],[17592253186050,17592186175498,11272300803168551,11272303065715385],[17592253186050,17592186208264,-11272303065715385,-11272300803168551],[17592253186052,67108868,-3950609314173172,-3950600725236988],[17592253186052,67141632,3950600725236988,3950609314173172],[17592253186052,67239948,-11272303013198523,-11272300855685410],[17592253186052,67272712,11272300855685410,11272303013198523],[17592253186052,17592186044420,3950600725236988,3950609314173172],[17592253186052,17592186077184,-3950609314173172,-3950600725236988],[17592253186052,17592186175500,11272300855685410,11272303013198523],[17592253186052,17592186208264,-11272303013198523,-11272300855685410],[17592253186052,140738629206020,-11272303013198523,-11272300855685410],[17592253186052,140738629238784,11272300855685410,11272303013198523],[17592253186052,158330748141572,11272300855685410,11272303013198523],[17592253186052,158330748174336,-11272303013198523,-11272300855685410],[17592253186056,0,-18593999799498692,-18593997898859016],[17592253186056,32776,-9296999899749346,-9296998949429508],[17592253186056,67108872,-1975305379225034,-1975299640480040],[17592253186056,67141632,-7321699779192130,-7321694050281650],[17592253186056,67239946,11272300803168551,11272303065715385],[17592253186056,67239948,15222904711107262,15222909197186829],[17592253186056,67240072,11272300807839789,11272303061044145],[17592253186056,67272706,-11272303065715385,-11272300803168551],[17592253186056,67272708,-15222909197186829,-15222904711107262],[17592253186056,67272832,-11272303061044145,-11272300807839789],[17592253186056,67764232,-15222907934848161,-15222905973445933],[17592253186056,67796992,15222905973445933,15222907934848161],[17592253186056,268566528,-11272303061044145,-11272300807839789],[17592253186056,268599304,-11272303061044145,-11272300807839789],[17592253186056,1073872896,11272300234269956,11272303634613982],[17592253186056,1073905672,-11272303013198523,-11272300855685410],[17592253186056,1140981768,30445811685099399,30445816131488796],[17592253186056,1141014528,-7901212262229860,-7901207816590464],[17592253186056,17592186044424,-7321699779192130,-7321694050281650],[17592253186056,17592186077184,-1975305379225034,-1975299640480040],[17592253186056,17592186175498,-11272303065715385,-11272300803168551],[17592253186056,17592186175500,-15222909197186829,-15222904711107262],[17592253186056,17592186175624,-11272303061044145,-11272300807839789],[17592253186056,17592186208258,11272300803168551,11272303065715385],[17592253186056,17592186208260,15222904711107262,15222909197186829],[17592253186056,17592186208384,11272300807839789,11272303061044145],[17592253186056,17592186699784,15222905973445933,15222907934848161],[17592253186056,17592186732544,-15222907934848161,-15222905973445933],[17592253186056,17592253153280,-9296999899749346,-9296998949429508],[17592253186056,17592253186056,-18593999799498692,-18593997898859016],[17592253186056,17592521719808,-11272303061044145,-11272300807839789],[17592253186056,17592521752584,-11272303061044145,-11272300807839789],[17592253186056,17593259917320,-7901212262229860,-7901207816590464],[17592253186056,17593259950080,30445811685099399,30445816131488796],[17592253186056,17593327026176,-11272303013198523,-11272300855685410],[17592253186056,17593327058952,11272300234269956,11272303634613982],[17592253186056,35184372219904,11272300807839789,11272303061044145],[17592253186056,35184372252680,11272300807839789,11272303061044145],[17592253186056,52776625373184,11272300807839789,11272303061044145],[17592253186056,52776625405960,11272300807839789,11272303061044145],[17592253186056,140737488486400,11272300855685410,11272303013198523],[17592253186056,140737488519176,11272300855685410,11272303013198523],[17592253186056,158329741639680,11272300855685410,11272303013198523],[17592253186056,158329741672456,11272300855685410,11272303013198523],[17592253186056,4611686018427518976,11272300803168551,11272303065715385],[17592253186056,4611686018427551752,11272300803168551,11272303065715385],[17592253186056,4611703610680672256,11272300803168551,11272303065715385],[17592253186056,4611703610680705032,11272300803168551,11272303065715385],[17592253186176,67240072,-11272303061044145,-11272300807839789],[17592253186176,67272712,11272300807839789,11272303061044145],[17592253186176,67764352,24519905244697076,24519907512775874],[17592253186176,67796992,-24519907512775874,-24519905244697076],[17592253186176,17592186175624,11272300807839789,11272303061044145],[17592253186176,17592186208264,-11272303061044145,-11272300807839789],[17592253186176,17592186699904,-24519907512775874,-24519905244697076],[17592253186176,17592186732544,24519905244697076,24519907512775874],[17592253284353,67108875,1975301853739043,1975303165966039],[17592253284353,67108877,22544603247468479,22544604490299392],[17592253284353,67141637,-13247605070627222,-13247603817961795],[17592253284353,67239946,-1975303165966039,-1975301853739043],[17592253284353,67239948,-22544604490299392,-22544603247468479],[17592253284353,67272708,13247603817961795,13247605070627222],[17592253284353,17592186044427,-1975303165966039,-1975301853739043],[17592253284353,17592186044429,-22544604490299392,-22544603247468479],[17592253284353,17592186077189,13247603817961795,13247605070627222],[17592253284353,17592186175498,1975301853739043,1975303165966039],[17592253284353,17592186175500,22544603247468479,22544604490299392],[17592253284353,17592186208260,-13247605070627222,-13247603817961795],[17592253284354,67108866,-1975304439360326,-1975300580344758],[17592253284354,67108875,-1975303165966039,-1975301853739043],[17592253284354,67108878,-22544604490299392,-22544603247468479],[17592253284354,67108938,-1975303193032786,-1975301826672296],[17592253284354,67109002,-22544604548409457,-22544603189358414],[17592253284354,67141642,24519905253728852,24519907503744101],[17592253284354,67239936,1975300580344758,1975304439360326],[17592253284354,67239945,1975301853739043,1975303165966039],[17592253284354,67239948,22544603247468479,22544604490299392],[17592253284354,67240008,1975301826672296,1975303193032786],[17592253284354,67240072,22544603189358414,22544604548409457],[17592253284354,67272712,-24519907503744101,-24519905253728852],[17592253284354,67633162,24519905182726150,24519907574746803],[17592253284354,67764232,-24519907574746803,-24519905182726150],[17592253284354,268435464,13247603758912222,13247605129676795],[17592253284354,268566538,13247603758912222,13247605129676795],[17592253284354,1073741832,13247603786059568,13247605102529449],[17592253284354,1073872906,13247603786059568,13247605102529449],[17592253284354,17592186044418,1975300580344758,1975304439360326],[17592253284354,17592186044427,1975301853739043,1975303165966039],[17592253284354,17592186044430,22544603247468479,22544604490299392],[17592253284354,17592186044490,1975301826672296,1975303193032786],[17592253284354,17592186044554,22544603189358414,22544604548409457],[17592253284354,17592186077194,-24519907503744101,-24519905253728852],[17592253284354,17592186175488,-1975304439360326,-1975300580344758],[17592253284354,17592186175497,-1975303165966039,-1975301853739043],[17592253284354,17592186175500,-22544604490299392,-22544603247468479],[17592253284354,17592186175560,-1975303193032786,-1975301826672296],[17592253284354,17592186175624,-22544604548409457,-22544603189358414],[17592253284354,17592186208264,24519905253728852,24519907503744101],[17592253284354,17592186568714,-24519907574746803,-24519905182726150],[17592253284354,17592186699784,24519905182726150,24519907574746803],[17592253284354,17592521588744,13247603758912222,13247605129676795],[17592253284354,17592521719818,13247603758912222,13247605129676795],[17592253284354,17593326895112,13247603786059568,13247605102529449],[17592253284354,17593327026186,13247603786059568,13247605102529449],[17592253284354,35184372088840,-13247605129676795,-13247603758912222],[17592253284354,35184372219914,-13247605129676795,-13247603758912222],[17592253284354,52776625242120,-13247605129676795,-13247603758912222],[17592253284354,52776625373194,-13247605129676795,-13247603758912222],[17592253284354,140737488355336,-13247605102529449,-13247603786059568],[17592253284354,140737488486410,-13247605102529449,-13247603786059568],[17592253284354,158329741508616,-13247605102529449,-13247603786059568],[17592253284354,158329741639690,-13247605102529449,-13247603786059568],[17592253284354,4611686018427387912,-13247605142672540,-13247603745916480],[17592253284354,4611686018427518986,-13247605142672540,-13247603745916480],[17592253284354,4611703610680541192,-13247605142672540,-13247603745916480],[17592253284354,4611703610680672266,-13247605142672540,-13247603745916480],[17592253284356,67108868,11272298711597012,11272305157286919],[17592253284356,67108877,-22544604490299392,-22544603247468479],[17592253284356,67108878,-1975303165966039,-1975301853739043],[17592253284356,67109004,-1975303161294799,-1975301858410281],[17592253284356,67141637,13247603817961795,13247605070627222],[17592253284356,67141644,-11272305157286919,-11272298711597012],[17592253284356,67239936,-11272305157286919,-11272298711597012],[17592253284356,67239945,22544603247468479,22544604490299392],[17592253284356,67239946,1975301853739043,1975303165966039],[17592253284356,67240072,1975301858410281,1975303161294799],[17592253284356,67272705,-13247605070627222,-13247603817961795],[17592253284356,67272712,11272298711597012,11272305157286919],[17592253284356,67633164,24519905262899363,24519907494573587],[17592253284356,67665924,-26495209992202640,-26495207784975390],[17592253284356,67764232,-24519907494573587,-24519905262899363],[17592253284356,67796992,26495207784975390,26495209992202640],[17592253284356,268435464,13247603788555150,13247605100033866],[17592253284356,268468224,-1975303134589986,-1975301885115096],[17592253284356,268566540,13247603788555150,13247605100033866],[17592253284356,268599300,-1975303134589986,-1975301885115096],[17592253284356,1073741832,13247603813192808,13247605075396206],[17592253284356,1073774592,-1975303111382023,-1975301908323058],[17592253284356,1073872908,13247603813192808,13247605075396206],[17592253284356,1073905668,-15222908182009245,-15222905726284853],[17592253284356,1140883460,39742811584848745,39742815080918304],[17592253284356,1141014528,-26495210161088876,-26495207616089156],[17592253284356,17592186044420,-11272305157286919,-11272298711597012],[17592253284356,17592186044429,22544603247468479,22544604490299392],[17592253284356,17592186044430,1975301853739043,1975303165966039],[17592253284356,17592186044556,1975301858410281,1975303161294799],[17592253284356,17592186077189,-13247605070627222,-13247603817961795],[17592253284356,17592186077196,11272298711597012,11272305157286919],[17592253284356,17592186175488,11272298711597012,11272305157286919],[17592253284356,17592186175497,-22544604490299392,-22544603247468479],[17592253284356,17592186175498,-1975303165966039,-1975301853739043],[17592253284356,17592186175624,-1975303161294799,-1975301858410281],[17592253284356,17592186208257,13247603817961795,13247605070627222],[17592253284356,17592186208264,-11272305157286919,-11272298711597012],[17592253284356,17592186568716,-24519907494573587,-24519905262899363],[17592253284356,17592186601476,26495207784975390,26495209992202640],[17592253284356,17592186699784,24519905262899363,24519907494573587],[17592253284356,17592186732544,-26495209992202640,-26495207784975390],[17592253284356,17592521588744,13247603788555150,13247605100033866],[17592253284356,17592521621504,-1975303134589986,-1975301885115096],[17592253284356,17592521719820,13247603788555150,13247605100033866],[17592253284356,17592521752580,-1975303134589986,-1975301885115096],[17592253284356,17593259819012,-26495210161088876,-26495207616089156],[17592253284356,17593259950080,39742811584848745,39742815080918304],[17592253284356,17593326895112,13247603813192808,13247605075396206],[17592253284356,17593326927872,-15222908182009245,-15222905726284853],[17592253284356,17593327026188,13247603813192808,13247605075396206],[17592253284356,17593327058948,-1975303111382023,-1975301908323058],[17592253284356,35184372088840,-13247605100033866,-13247603788555150],[17592253284356,35184372121600,1975301885115096,1975303134589986],[17592253284356,35184372219916,-13247605100033866,-13247603788555150],[17592253284356,35184372252676,1975301885115096,1975303134589986],[17592253284356,52776625242120,-13247605100033866,-13247603788555150],[17592253284356,52776625274880,1975301885115096,1975303134589986],[17592253284356,52776625373196,-13247605100033866,-13247603788555150],[17592253284356,52776625405956,1975301885115096,1975303134589986],[17592253284356,140737488355336,-13247605075396206,-13247603813192808],[17592253284356,140737488388096,1975301908323058,1975303111382023],[17592253284356,140737488486412,-13247605075396206,-13247603813192808],[17592253284356,140737488519172,1975301908323058,1975303111382023],[17592253284356,158329741508616,-13247605075396206,-13247603813192808],[17592253284356,158329741541376,1975301908323058,1975303111382023],[17592253284356,158329741639692,-13247605075396206,-13247603813192808],[17592253284356,158329741672452,1975301908323058,1975303111382023],[17592253284356,4611686018427387912,-13247605102529449,-13247603786059568],[17592253284356,4611686018427420672,1975301882939439,1975303136765642],[17592253284356,4611686018427518988,-13247605102529449,-13247603786059568],[17592253284356,4611686018427551748,1975301882939439,1975303136765642],[17592253284356,4611703610680541192,-13247605102529449,-13247603786059568],[17592253284356,4611703610680573952,1975301882939439,1975303136765642],[17592253284356,4611703610680672268,-13247605102529449,-13247603786059568],[17592253284356,4611703610680705028,1975301882939439,1975303136765642],[17592253284360,131080,-5346396222573668,-5346392587195036],[17592253284360,67108872,193060229393271076,193060273050119596],[17592253284360,67108878,24519905253728852,24519907503744101],[17592253284360,67109002,24519905182726150,24519907574746803],[17592253284360,67109004,24519905262899363,24519907494573587],[17592253284360,67141642,-24519907503744101,-24519905253728852],[17592253284360,67141644,-37767512400416486,-37767509245645481],[17592253284360,67141768,-24519907494573587,-24519905262899363],[17592253284360,67239936,-187713876827545928,-187713836806076040],[17592253284360,67239942,-24519907503744101,-24519905253728852],[17592253284360,67240066,-24519907574746803,-24519905182726150],[17592253284360,67240068,-24519907494573587,-24519905262899363],[17592253284360,67272706,24519905253728852,24519907503744101],[17592253284360,67272708,37767509245645481,37767512400416486],[17592253284360,67272832,24519905262899363,24519907494573587],[17592253284360,67633162,-24519907574746803,-24519905182726150],[17592253284360,67633164,-24519907494573587,-24519905262899363],[17592253284360,67633288,-37767512630799828,-37767509015262141],[17592253284360,67665928,24519905262899363,24519907494573587],[17592253284360,67764226,24519905182726150,24519907574746803],[17592253284360,67764228,24519905262899363,24519907494573587],[17592253284360,67764352,37767509015262141,37767512630799828],[17592253284360,67796992,-24519907494573587,-24519905262899363],[17592253284360,268435458,-13247605129676795,-13247603758912222],[17592253284360,268435460,-13247605100033866,-13247603788555150],[17592253284360,268435584,-13247605137681374,-13247603750907644],[17592253284360,268468224,13247603788555150,13247605100033866],[17592253284360,268566538,-13247605129676795,-13247603758912222],[17592253284360,268566540,-13247605100033866,-13247603788555150],[17592253284360,268566664,-13247605137681374,-13247603750907644],[17592253284360,268599304,13247603788555150,13247605100033866],[17592253284360,268959744,13247603750907644,13247605137681374],[17592253284360,269090824,13247603750907644,13247605137681374],[17592253284360,1073741826,-13247605102529449,-13247603786059568],[17592253284360,1073741828,-13247605075396206,-13247603813192808],[17592253284360,1073741952,-13247605100033866,-13247603788555150],[17592253284360,1073774592,13247603813192808,13247605075396206],[17592253284360,1073872906,-13247605102529449,-13247603786059568],[17592253284360,1073872908,-13247605075396206,-13247603813192808],[17592253284360,1073873032,-13247605100033866,-13247603788555150],[17592253284360,1073905672,13247603813192808,13247605075396206],[17592253284360,1074266112,13247603788555150,13247605100033866],[17592253284360,1074397192,13247603788555150,13247605100033866],[17592253284360,1409286152,24519905262899363,24519907494573587],[17592253284360,1409417216,-24519907494573587,-24519905262899363],[17592253284360,17592186044424,-187713876827545928,-187713836806076040],[17592253284360,17592186044430,-24519907503744101,-24519905253728852],[17592253284360,17592186044554,-24519907574746803,-24519905182726150],[17592253284360,17592186044556,-24519907494573587,-24519905262899363],[17592253284360,17592186077194,24519905253728852,24519907503744101],[17592253284360,17592186077196,37767509245645481,37767512400416486],[17592253284360,17592186077320,24519905262899363,24519907494573587],[17592253284360,17592186175488,193060229393271076,193060273050119596],[17592253284360,17592186175494,24519905253728852,24519907503744101],[17592253284360,17592186175618,24519905182726150,24519907574746803],[17592253284360,17592186175620,24519905262899363,24519907494573587],[17592253284360,17592186208258,-24519907503744101,-24519905253728852],[17592253284360,17592186208260,-37767512400416486,-37767509245645481],[17592253284360,17592186208384,-24519907494573587,-24519905262899363],[17592253284360,17592186568714,24519905182726150,24519907574746803],[17592253284360,17592186568716,24519905262899363,24519907494573587],[17592253284360,17592186568840,37767509015262141,37767512630799828],[17592253284360,17592186601480,-24519907494573587,-24519905262899363],[17592253284360,17592186699778,-24519907574746803,-24519905182726150],[17592253284360,17592186699780,-24519907494573587,-24519905262899363],[17592253284360,17592186699904,-37767512630799828,-37767509015262141],[17592253284360,17592186732544,24519905262899363,24519907494573587],[17592253284360,17592253153280,-5346396222573668,-5346392587195036],[17592253284360,17592521588738,-13247605129676795,-13247603758912222],[17592253284360,17592521588740,-13247605100033866,-13247603788555150],[17592253284360,17592521588864,-13247605137681374,-13247603750907644],[17592253284360,17592521621504,13247603788555150,13247605100033866],[17592253284360,17592521719818,-13247605129676795,-13247603758912222],[17592253284360,17592521719820,-13247605100033866,-13247603788555150],[17592253284360,17592521719944,-13247605137681374,-13247603750907644],[17592253284360,17592521752584,13247603788555150,13247605100033866],[17592253284360,17592522113024,13247603750907644,13247605137681374],[17592253284360,17592522244104,13247603750907644,13247605137681374],[17592253284360,17593326895106,-13247605102529449,-13247603786059568],[17592253284360,17593326895108,-13247605075396206,-13247603813192808],[17592253284360,17593326895232,-13247605100033866,-13247603788555150],[17592253284360,17593326927872,13247603813192808,13247605075396206],[17592253284360,17593327026186,-13247605102529449,-13247603786059568],[17592253284360,17593327026188,-13247605075396206,-13247603813192808],[17592253284360,17593327026312,-13247605100033866,-13247603788555150],[17592253284360,17593327058952,13247603813192808,13247605075396206],[17592253284360,17593327419392,13247603788555150,13247605100033866],[17592253284360,17593327550472,13247603788555150,13247605100033866],[17592253284360,17593528221704,-24519907494573587,-24519905262899363],[17592253284360,17593528352768,24519905262899363,24519907494573587],[17592253284360,35184372088834,13247603758912222,13247605129676795],[17592253284360,35184372088836,13247603788555150,13247605100033866],[17592253284360,35184372088960,13247603750907644,13247605137681374],[17592253284360,35184372121600,-13247605100033866,-13247603788555150],[17592253284360,35184372219914,13247603758912222,13247605129676795],[17592253284360,35184372219916,13247603788555150,13247605100033866],[17592253284360,35184372220040,13247603750907644,13247605137681374],[17592253284360,35184372252680,-13247605100033866,-13247603788555150],[17592253284360,35184372613120,-13247605137681374,-13247603750907644],[17592253284360,35184372744200,-13247605137681374,-13247603750907644],[17592253284360,35184707633160,-37767512630799828,-37767509015262141],[17592253284360,35184707764224,37767509015262141,37767512630799828],[17592253284360,35185512939528,-24519907494573587,-24519905262899363],[17592253284360,35185513070592,24519905262899363,24519907494573587],[17592253284360,52776625242114,13247603758912222,13247605129676795],[17592253284360,52776625242116,13247603788555150,13247605100033866],[17592253284360,52776625242240,13247603750907644,13247605137681374],[17592253284360,52776625274880,-13247605100033866,-13247603788555150],[17592253284360,52776625373194,13247603758912222,13247605129676795],[17592253284360,52776625373196,13247603788555150,13247605100033866],[17592253284360,52776625373320,13247603750907644,13247605137681374],[17592253284360,52776625405960,-13247605100033866,-13247603788555150],[17592253284360,52776625766400,-13247605137681374,-13247603750907644],[17592253284360,52776625897480,-13247605137681374,-13247603750907644],[17592253284360,52776826568712,37767509015262141,37767512630799828],[17592253284360,52776826699776,-37767512630799828,-37767509015262141],[17592253284360,52777631875080,24519905262899363,24519907494573587],[17592253284360,52777632006144,-24519907494573587,-24519905262899363],[17592253284360,140737488355330,13247603786059568,13247605102529449],[17592253284360,140737488355332,13247603813192808,13247605075396206],[17592253284360,140737488355456,13247603788555150,13247605100033866],[17592253284360,140737488388096,-13247605075396206,-13247603813192808],[17592253284360,140737488486410,13247603786059568,13247605102529449],[17592253284360,140737488486412,13247603813192808,13247605075396206],[17592253284360,140737488486536,13247603788555150,13247605100033866],[17592253284360,140737488519176,-13247605075396206,-13247603813192808],[17592253284360,140737488879616,-13247605100033866,-13247603788555150],[17592253284360,140737489010696,-13247605100033866,-13247603788555150],[17592253284360,140737823899656,-24519907494573587,-24519905262899363],[17592253284360,140737824030720,24519905262899363,24519907494573587],[17592253284360,140738629206024,-37767512400416486,-37767509245645481],[17592253284360,140738629337088,37767509245645481,37767512400416486],[17592253284360,158329741508610,13247603786059568,13247605102529449],[17592253284360,158329741508612,13247603813192808,13247605075396206],[17592253284360,158329741508736,13247603788555150,13247605100033866],[17592253284360,158329741541376,-13247605075396206,-13247603813192808],[17592253284360,158329741639690,13247603786059568,13247605102529449],[17592253284360,158329741639692,13247603813192808,13247605075396206],[17592253284360,158329741639816,13247603788555150,13247605100033866],[17592253284360,158329741672456,-13247605075396206,-13247603813192808],[17592253284360,158329742032896,-13247605100033866,-13247603788555150],[17592253284360,158329742163976,-13247605100033866,-13247603788555150],[17592253284360,158329942835208,24519905262899363,24519907494573587],[17592253284360,158329942966272,-24519907494573587,-24519905262899363],[17592253284360,158330748141576,37767509245645481,37767512400416486],[17592253284360,158330748272640,-37767512400416486,-37767509245645481],[17592253284360,175921927553032,24519905262899363,24519907494573587],[17592253284360,175921927684096,-24519907494573587,-24519905262899363],[17592253284360,193514046488584,-24519907494573587,-24519905262899363],[17592253284360,193514046619648,24519905262899363,24519907494573587],[17592253284360,4611686018427387906,13247603745916480,13247605142672540],[17592253284360,4611686018427387908,13247603786059568,13247605102529449],[17592253284360,4611686018427388032,13247603758912222,13247605129676795],[17592253284360,4611686018427420672,-13247605102529449,-13247603786059568],[17592253284360,4611686018427518986,13247603745916480,13247605142672540],[17592253284360,4611686018427518988,13247603786059568,13247605102529449],[17592253284360,4611686018427519112,13247603758912222,13247605129676795],[17592253284360,4611686018427551752,-13247605102529449,-13247603786059568],[17592253284360,4611686018427912192,-13247605129676795,-13247603758912222],[17592253284360,4611686018428043272,-13247605129676795,-13247603758912222],[17592253284360,4611686018762932232,-24519907574746803,-24519905182726150],[17592253284360,4611686018763063296,24519905182726150,24519907574746803],[17592253284360,4611686019568238600,-24519907503744101,-24519905253728852],[17592253284360,4611686019568369664,24519905253728852,24519907503744101],[17592253284360,4611703610680541186,13247603745916480,13247605142672540],[17592253284360,4611703610680541188,13247603786059568,13247605102529449],[17592253284360,4611703610680541312,13247603758912222,13247605129676795],[17592253284360,4611703610680573952,-13247605102529449,-13247603786059568],[17592253284360,4611703610680672266,13247603745916480,13247605142672540],[17592253284360,4611703610680672268,13247603786059568,13247605102529449],[17592253284360,4611703610680672392,13247603758912222,13247605129676795],[17592253284360,4611703610680705032,-13247605102529449,-13247603786059568],[17592253284360,4611703610681065472,-13247605129676795,-13247603758912222],[17592253284360,4611703610681196552,-13247605129676795,-13247603758912222],[17592253284360,4611703610881867784,24519905182726150,24519907574746803],[17592253284360,4611703610881998848,-24519907574746803,-24519905182726150],[17592253284360,4611703611687174152,24519905253728852,24519907503744101],[17592253284360,4611703611687305216,-24519907503744101,-24519905253728852],[17592253284360,4611721202866585608,24519905182726150,24519907574746803],[17592253284360,4611721202866716672,-24519907574746803,-24519905182726150],[17592253284360,4611738794985521160,-24519907574746803,-24519905182726150],[17592253284360,4611738794985652224,24519905182726150,24519907574746803],[17592253284360,4611826755982852104,24519905253728852,24519907503744101],[17592253284360,4611826755982983168,-24519907503744101,-24519905253728852],[17592253284360,4611844348101787656,-24519907503744101,-24519905253728852],[17592253284360,4611844348101918720,24519905253728852,24519907503744101],[17592253284363,67108865,1975301853739043,1975303165966039],[17592253284363,67108866,-1975303165966039,-1975301853739043],[17592253284363,67239945,1975301853739043,1975303165966039],[17592253284363,67239946,-1975303165966039,-1975301853739043],[17592253284363,17592186044417,-1975303165966039,-1975301853739043],[17592253284363,17592186044418,1975301853739043,1975303165966039],[17592253284363,17592186175497,-1975303165966039,-1975301853739043],[17592253284363,17592186175498,1975301853739043,1975303165966039],[17592253284365,67108865,22544603247468479,22544604490299392],[17592253284365,67108868,-22544604490299392,-22544603247468479],[17592253284365,67239945,22544603247468479,22544604490299392],[17592253284365,67239948,-22544604490299392,-22544603247468479],[17592253284365,17592186044417,-22544604490299392,-22544603247468479],[17592253284365,17592186044420,22544603247468479,22544604490299392],[17592253284365,17592186175497,-22544604490299392,-22544603247468479],[17592253284365,17592186175500,22544603247468479,22544604490299392],[17592253284366,67108866,-22544604490299392,-22544603247468479],[17592253284366,67108868,-1975303165966039,-1975301853739043],[17592253284366,67108872,24519905253728852,24519907503744101],[17592253284366,67239942,-24519907503744101,-24519905253728852],[17592253284366,67239946,1975301853739043,1975303165966039],[17592253284366,67239948,22544603247468479,22544604490299392],[17592253284366,17592186044418,22544603247468479,22544604490299392],[17592253284366,17592186044420,1975301853739043,1975303165966039],[17592253284366,17592186044424,-24519907503744101,-24519905253728852],[17592253284366,17592186175494,24519905253728852,24519907503744101],[17592253284366,17592186175498,-1975303165966039,-1975301853739043],[17592253284366,17592186175500,-22544604490299392,-22544603247468479],[17592253284416,67108938,1975301826672296,1975303193032786],[17592253284416,67109064,22544603189358414,22544604548409457],[17592253284416,67239946,-1975303193032786,-1975301826672296],[17592253284416,67240072,-22544604548409457,-22544603189358414],[17592253284416,67633344,-13247605134312055,-13247603754276960],[17592253284416,67764352,13247603754276960,13247605134312055],[17592253284416,17592186044490,-1975303193032786,-1975301826672296],[17592253284416,17592186044616,-22544604548409457,-22544603189358414],[17592253284416,17592186175498,1975301826672296,1975303193032786],[17592253284416,17592186175624,22544603189358414,22544604548409457],[17592253284416,17592186568896,13247603754276960,13247605134312055],[17592253284416,17592186699904,-13247605134312055,-13247603754276960],[17592253284426,67108866,-1975303193032786,-1975301826672296],[17592253284426,67108928,1975301826672296,1975303193032786],[17592253284426,67239946,-1975303193032786,-1975301826672296],[17592253284426,67240008,1975301826672296,1975303193032786],[17592253284426,17592186044418,1975301826672296,1975303193032786],[17592253284426,17592186044480,-1975303193032786,-1975301826672296],[17592253284426,17592186175498,1975301826672296,1975303193032786],[17592253284426,17592186175560,-1975303193032786,-1975301826672296],[17592253284480,67108992,11272298321696800,11272305547187129],[17592253284480,67109002,-1975303193032786,-1975301826672296],[17592253284480,67109004,-22544604485800118,-22544603251967752],[17592253284480,67109064,-22544604548409457,-22544603189358414],[17592253284480,67110024,-1975303161294799,-1975301858410281],[17592253284480,67141768,24519905262899363,24519907494573587],[17592253284480,67239936,-11272305547187129,-11272298321696800],[17592253284480,67239946,1975301826672296,1975303193032786],[17592253284480,67239948,22544603251967752,22544604485800118],[17592253284480,67240008,22544603189358414,22544604548409457],[17592253284480,67240968,1975301858410281,1975303161294799],[17592253284480,67272712,-24519907494573587,-24519905262899363],[17592253284480,67633288,-11272305547187129,-11272298321696800],[17592253284480,67633344,13247603754276960,13247605134312055],[17592253284480,67634304,13247603786922062,13247605101666952],[17592253284480,67666048,-11272303070687196,-11272300798196740],[17592253284480,67764232,11272298321696800,11272305547187129],[17592253284480,67764288,-13247605134312055,-13247603754276960],[17592253284480,67765248,-13247605101666952,-13247603786922062],[17592253284480,67796992,11272300798196740,11272303070687196],[17592253284480,68681856,-1975303142599947,-1975301877105131],[17592253284480,68812800,1975301877105131,1975303142599947],[17592253284480,268435464,13247603750907644,13247605137681374],[17592253284480,268566664,13247603750907644,13247605137681374],[17592253284480,268959744,-1975303200228061,-1975301819477018],[17592253284480,269090944,-15222908334540116,-15222905573753978],[17592253284480,336068736,39742811412341918,39742815253425129],[17592253284480,336199680,-26495210286978712,-26495207490199320],[17592253284480,1073741832,13247603788555150,13247605100033866],[17592253284480,1073873032,13247603788555150,13247605100033866],[17592253284480,1074266112,-1975303167312100,-1975301852392980],[17592253284480,1074397312,-1975303167312100,-1975301852392980],[17592253284480,17592186044544,-11272305547187129,-11272298321696800],[17592253284480,17592186044554,1975301826672296,1975303193032786],[17592253284480,17592186044556,22544603251967752,22544604485800118],[17592253284480,17592186044616,22544603189358414,22544604548409457],[17592253284480,17592186045576,1975301858410281,1975303161294799],[17592253284480,17592186077320,-24519907494573587,-24519905262899363],[17592253284480,17592186175488,11272298321696800,11272305547187129],[17592253284480,17592186175498,-1975303193032786,-1975301826672296],[17592253284480,17592186175500,-22544604485800118,-22544603251967752],[17592253284480,17592186175560,-22544604548409457,-22544603189358414],[17592253284480,17592186176520,-1975303161294799,-1975301858410281],[17592253284480,17592186208264,24519905262899363,24519907494573587],[17592253284480,17592186568840,11272298321696800,11272305547187129],[17592253284480,17592186568896,-13247605134312055,-13247603754276960],[17592253284480,17592186569856,-13247605101666952,-13247603786922062],[17592253284480,17592186601600,11272300798196740,11272303070687196],[17592253284480,17592186699784,-11272305547187129,-11272298321696800],[17592253284480,17592186699840,13247603754276960,13247605134312055],[17592253284480,17592186700800,13247603786922062,13247605101666952],[17592253284480,17592186732544,-11272303070687196,-11272300798196740],[17592253284480,17592187617408,1975301877105131,1975303142599947],[17592253284480,17592187748352,-1975303142599947,-1975301877105131],[17592253284480,17592455004288,-26495210286978712,-26495207490199320],[17592253284480,17592455135232,39742811412341918,39742815253425129],[17592253284480,17592521588744,13247603750907644,13247605137681374],[17592253284480,17592521719944,13247603750907644,13247605137681374],[17592253284480,17592522113024,-15222908334540116,-15222905573753978],[17592253284480,17592522244224,-1975303200228061,-1975301819477018],[17592253284480,17593326895112,13247603788555150,13247605100033866],[17592253284480,17593327026312,13247603788555150,13247605100033866],[17592253284480,17593327419392,-1975303167312100,-1975301852392980],[17592253284480,17593327550592,-1975303167312100,-1975301852392980],[17592253284480,35184372088840,-13247605137681374,-13247603750907644],[17592253284480,35184372220040,-13247605137681374,-13247603750907644],[17592253284480,35184372613120,1975301819477018,1975303200228061],[17592253284480,35184372744320,1975301819477018,1975303200228061],[17592253284480,52776625242120,-13247605137681374,-13247603750907644],[17592253284480,52776625373320,-13247605137681374,-13247603750907644],[17592253284480,52776625766400,1975301819477018,1975303200228061],[17592253284480,52776625897600,1975301819477018,1975303200228061],[17592253284480,140737488355336,-13247605100033866,-13247603788555150],[17592253284480,140737488486536,-13247605100033866,-13247603788555150],[17592253284480,140737488879616,1975301852392980,1975303167312100],[17592253284480,140737489010816,1975301852392980,1975303167312100],[17592253284480,158329741508616,-13247605100033866,-13247603788555150],[17592253284480,158329741639816,-13247605100033866,-13247603788555150],[17592253284480,158329742032896,1975301852392980,1975303167312100],[17592253284480,158329742164096,1975301852392980,1975303167312100],[17592253284480,4611686018427387912,-13247605129676795,-13247603758912222],[17592253284480,4611686018427519112,-13247605129676795,-13247603758912222],[17592253284480,4611686018427912192,1975301823150576,1975303196554503],[17592253284480,4611686018428043392,1975301823150576,1975303196554503],[17592253284480,4611703610680541192,-13247605129676795,-13247603758912222],[17592253284480,4611703610680672392,-13247605129676795,-13247603758912222],[17592253284480,4611703610681065472,1975301823150576,1975303196554503],[17592253284480,4611703610681196672,1975301823150576,1975303196554503],[17592253284490,67108866,-22544604548409457,-22544603189358414],[17592253284490,67108872,24519905182726150,24519907574746803],[17592253284490,67108992,-1975303193032786,-1975301826672296],[17592253284490,67239946,1975301826672296,1975303193032786],[17592253284490,67240066,-24519907574746803,-24519905182726150],[17592253284490,67240072,22544603189358414,22544604548409457],[17592253284490,17592186044418,22544603189358414,22544604548409457],[17592253284490,17592186044424,-24519907574746803,-24519905182726150],[17592253284490,17592186044544,1975301826672296,1975303193032786],[17592253284490,17592186175498,-1975303193032786,-1975301826672296],[17592253284490,17592186175618,24519905182726150,24519907574746803],[17592253284490,17592186175624,-22544604548409457,-22544603189358414],[17592253284492,67108868,-1975303161294799,-1975301858410281],[17592253284492,67108872,24519905262899363,24519907494573587],[17592253284492,67108992,-22544604485800118,-22544603251967752],[17592253284492,67239948,22544603251967752,22544604485800118],[17592253284492,67240068,-24519907494573587,-24519905262899363],[17592253284492,67240072,1975301858410281,1975303161294799],[17592253284492,17592186044420,1975301858410281,1975303161294799],[17592253284492,17592186044424,-24519907494573587,-24519905262899363],[17592253284492,17592186044544,22544603251967752,22544604485800118],[17592253284492,17592186175500,-22544604485800118,-22544603251967752],[17592253284492,17592186175620,24519905262899363,24519907494573587],[17592253284492,17592186175624,-1975303161294799,-1975301858410281],[17592253284552,67108928,22544603189358414,22544604548409457],[17592253284552,67108992,-22544604548409457,-22544603189358414],[17592253284552,67240008,22544603189358414,22544604548409457],[17592253284552,67240072,-22544604548409457,-22544603189358414],[17592253284552,17592186044480,-22544604548409457,-22544603189358414],[17592253284552,17592186044544,22544603189358414,22544604548409457],[17592253284552,17592186175560,-22544604548409457,-22544603189358414],[17592253284552,17592186175624,22544603189358414,22544604548409457],[17592253285376,67110024,1975301858410281,1975303161294799],[17592253285376,67240072,-1975303161294799,-1975301858410281],[17592253285376,67634304,-13247605101666952,-13247603786922062],[17592253285376,67764352,13247603786922062,13247605101666952],[17592253285376,68682752,1975301877105131,1975303142599947],[17592253285376,68812800,-1975303142599947,-1975301877105131],[17592253285376,17592186045576,-1975303161294799,-1975301858410281],[17592253285376,17592186175624,1975301858410281,1975303161294799],[17592253285376,17592186569856,13247603786922062,13247605101666952],[17592253285376,17592186699904,-13247605101666952,-13247603786922062],[17592253285376,17592187618304,-1975303142599947,-1975301877105131],[17592253285376,17592187748352,1975301877105131,1975303142599947],[17592253285512,67108992,-1975303161294799,-1975301858410281],[17592253285512,67109888,1975301858410281,1975303161294799],[17592253285512,67240072,-1975303161294799,-1975301858410281],[17592253285512,67240968,1975301858410281,1975303161294799],[17592253285512,17592186044544,1975301858410281,1975303161294799],[17592253285512,17592186045440,-1975303161294799,-1975301858410281],[17592253285512,17592186175624,1975301858410281,1975303161294799],[17592253285512,17592186176520,-1975303161294799,-1975301858410281],[17592253317120,67141644,49039811112013498,49039814402932400],[17592253317120,67239948,-49039814402932400,-49039811112013498],[17592253317120,67665924,26495207784975390,26495209992202640],[17592253317120,67665928,-26495209992202640,-26495207784975390],[17592253317120,67764228,-26495209992202640,-26495207784975390],[17592253317120,67764232,26495207784975390,26495209992202640],[17592253317120,268435460,1975301885115096,1975303134589986],[17592253317120,268435464,-1975303134589986,-1975301885115096],[17592253317120,268599300,1975301885115096,1975303134589986],[17592253317120,268599304,-1975303134589986,-1975301885115096],[17592253317120,1073741828,1975301908323058,1975303111382023],[17592253317120,1073741832,-24519907601681415,-24519905155791537],[17592253317120,1073905668,15222905726284853,15222908182009245],[17592253317120,1073905672,-1975303111382023,-1975301908323058],[17592253317120,1140883460,-52990420000747732,-52990415553608334],[17592253317120,1140883464,30445811685099399,30445816131488796],[17592253317120,1140981764,39742811584848745,39742815080918304],[17592253317120,1140981768,-52990420000747732,-52990415553608334],[17592253317120,17592186077196,-49039814402932400,-49039811112013498],[17592253317120,17592186175500,49039811112013498,49039814402932400],[17592253317120,17592186601476,-26495209992202640,-26495207784975390],[17592253317120,17592186601480,26495207784975390,26495209992202640],[17592253317120,17592186699780,26495207784975390,26495209992202640],[17592253317120,17592186699784,-26495209992202640,-26495207784975390],[17592253317120,17592521588740,1975301885115096,1975303134589986],[17592253317120,17592521588744,-1975303134589986,-1975301885115096],[17592253317120,17592521752580,1975301885115096,1975303134589986],[17592253317120,17592521752584,-1975303134589986,-1975301885115096],[17592253317120,17593259819012,39742811584848745,39742815080918304],[17592253317120,17593259819016,-52990420000747732,-52990415553608334],[17592253317120,17593259917316,-52990420000747732,-52990415553608334],[17592253317120,17593259917320,30445811685099399,30445816131488796],[17592253317120,17593326895108,15222905726284853,15222908182009245],[17592253317120,17593326895112,-1975303111382023,-1975301908323058],[17592253317120,17593327058948,1975301908323058,1975303111382023],[17592253317120,17593327058952,-24519907601681415,-24519905155791537],[17592253317120,35184372088836,-1975303134589986,-1975301885115096],[17592253317120,35184372088840,1975301885115096,1975303134589986],[17592253317120,35184372252676,-1975303134589986,-1975301885115096],[17592253317120,35184372252680,1975301885115096,1975303134589986],[17592253317120,52776625242116,-1975303134589986,-1975301885115096],[17592253317120,52776625242120,1975301885115096,1975303134589986],[17592253317120,52776625405956,-1975303134589986,-1975301885115096],[17592253317120,52776625405960,1975301885115096,1975303134589986],[17592253317120,140737488355332,-1975303111382023,-1975301908323058],[17592253317120,140737488355336,1975301908323058,1975303111382023],[17592253317120,140737488519172,-1975303111382023,-1975301908323058],[17592253317120,140737488519176,1975301908323058,1975303111382023],[17592253317120,158329741508612,-1975303111382023,-1975301908323058],[17592253317120,158329741508616,1975301908323058,1975303111382023],[17592253317120,158329741672452,-1975303111382023,-1975301908323058],[17592253317120,158329741672456,1975301908323058,1975303111382023],[17592253317120,4611686018427387908,-1975303136765642,-1975301882939439],[17592253317120,4611686018427387912,1975301882939439,1975303136765642],[17592253317120,4611686018427551748,-1975303136765642,-1975301882939439],[17592253317120,4611686018427551752,1975301882939439,1975303136765642],[17592253317120,4611703610680541188,-1975303136765642,-1975301882939439],[17592253317120,4611703610680541192,1975301882939439,1975303136765642],[17592253317120,4611703610680705028,-1975303136765642,-1975301882939439],[17592253317120,4611703610680705032,1975301882939439,1975303136765642],[17592253317125,67108865,-13247605070627222,-13247603817961795],[17592253317125,67108868,13247603817961795,13247605070627222],[17592253317125,67272705,-13247605070627222,-13247603817961795],[17592253317125,67272708,13247603817961795,13247605070627222],[17592253317125,17592186044417,13247603817961795,13247605070627222],[17592253317125,17592186044420,-13247605070627222,-13247603817961795],[17592253317125,17592186208257,13247603817961795,13247605070627222],[17592253317125,17592186208260,-13247605070627222,-13247603817961795],[17592253317130,67108866,13247603817961795,13247605070627222],[17592253317130,67108872,-13247605070627222,-13247603817961795],[17592253317130,67272706,13247603817961795,13247605070627222],[17592253317130,67272712,-13247605070627222,-13247603817961795],[17592253317130,17592186044418,-13247605070627222,-13247603817961795],[17592253317130,17592186044424,13247603817961795,13247605070627222],[17592253317130,17592186208258,-13247605070627222,-13247603817961795],[17592253317130,17592186208264,13247603817961795,13247605070627222],[17592253317132,67108868,-18594001318589224,-18593996379768482],[17592253317132,67108872,-26495210084232978,-26495207692945056],[17592253317132,67141632,45089206464001460,45089209011534280],[17592253317132,67239948,-45089209011534280,-45089206464001460],[17592253317132,67272708,26495207692945056,26495210084232978],[17592253317132,67272712,18593996379768482,18594001318589224],[17592253317132,17592186044420,18593996379768482,18594001318589224],[17592253317132,17592186044424,26495207692945056,26495210084232978],[17592253317132,17592186077184,-45089209011534280,-45089206464001460],[17592253317132,17592186175500,45089206464001460,45089209011534280],[17592253317132,17592186208260,-26495210084232978,-26495207692945056],[17592253317132,17592186208264,-18594001318589224,-18593996379768482],[17592253317256,67108872,-13247605066127948,-13247603822461068],[17592253317256,67108992,13247603822461068,13247605066127948],[17592253317256,67272712,-13247605066127948,-13247603822461068],[17592253317256,67272832,13247603822461068,13247605066127948],[17592253317256,17592186044424,13247603822461068,13247605066127948],[17592253317256,17592186044544,-13247605066127948,-13247603822461068],[17592253317256,17592186208264,13247603822461068,13247605066127948],[17592253317256,17592186208384,-13247605066127948,-13247603822461068],[17592253677570,67239946,-11272303138139186,-11272300730744752],[17592253677570,67764232,11272300730744752,11272303138139186],[17592253677570,17592186175498,11272300730744752,11272303138139186],[17592253677570,17592186699784,-11272303138139186,-11272300730744752],[17592253677572,67239948,-11272303079253853,-11272300789630083],[17592253677572,67272708,24519905280236082,24519907477236870],[17592253677572,67764232,11272300789630083,11272303079253853],[17592253677572,67796992,-24519907477236870,-24519905280236082],[17592253677572,17592186175500,11272300789630083,11272303079253853],[17592253677572,17592186208260,-24519907477236870,-24519905280236082],[17592253677572,17592186699784,-11272303079253853,-11272300789630083],[17592253677572,17592186732544,24519905280236082,24519907477236870],[17592253677576,0,-18593999890212800,-18593997808144912],[17592253677576,524296,-9296999945106400,-9296998904072456],[17592253677576,67108872,-1975305698740355,-1975299320964727],[17592253677576,67239946,11272300730744752,11272303138139186],[17592253677576,67239948,11272300789630083,11272303079253853],[17592253677576,67240072,15222904455276782,15222909453017315],[17592253677576,67272712,-20569302302299032,-20569300415763760],[17592253677576,67633152,-7321700093132675,-7321693736341099],[17592253677576,67764226,-11272303138139186,-11272300730744752],[17592253677576,67764228,-11272303079253853,-11272300789630083],[17592253677576,67764352,-15222909453017315,-15222904455276782],[17592253677576,67796992,20569300415763760,20569302302299032],[17592253677576,68288520,9296998263946318,9297000585232538],[17592253677576,68812800,-9297000585232538,-9296998263946318],[17592253677576,268566528,11272300039541091,11272303829342841],[17592253677576,269090824,-11272303149817323,-11272300719066616],[17592253677576,335675400,30445811467235518,30445816349352673],[17592253677576,336199680,-7901212478833800,-7901207599986520],[17592253677576,1073872896,-11272303079253853,-11272300789630083],[17592253677576,1074397192,-11272303079253853,-11272300789630083],[17592253677576,17592186044424,-7321700093132675,-7321693736341099],[17592253677576,17592186175498,-11272303138139186,-11272300730744752],[17592253677576,17592186175500,-11272303079253853,-11272300789630083],[17592253677576,17592186175624,-15222909453017315,-15222904455276782],[17592253677576,17592186208264,20569300415763760,20569302302299032],[17592253677576,17592186568704,-1975305698740355,-1975299320964727],[17592253677576,17592186699778,11272300730744752,11272303138139186],[17592253677576,17592186699780,11272300789630083,11272303079253853],[17592253677576,17592186699904,15222904455276782,15222909453017315],[17592253677576,17592186732544,-20569302302299032,-20569300415763760],[17592253677576,17592187224072,-9297000585232538,-9296998263946318],[17592253677576,17592187748352,9296998263946318,9297000585232538],[17592253677576,17592253153280,-9296999945106400,-9296998904072456],[17592253677576,17592253677576,-18593999890212800,-18593997808144912],[17592253677576,17592454610952,-7901212478833800,-7901207599986520],[17592253677576,17592455135232,30445811467235518,30445816349352673],[17592253677576,17592521719808,-11272303149817323,-11272300719066616],[17592253677576,17592522244104,11272300039541091,11272303829342841],[17592253677576,17593327026176,-11272303079253853,-11272300789630083],[17592253677576,17593327550472,-11272303079253853,-11272300789630083],[17592253677576,35184372219904,11272300719066616,11272303149817323],[17592253677576,35184372744200,11272300719066616,11272303149817323],[17592253677576,52776625373184,11272300719066616,11272303149817323],[17592253677576,52776625897480,11272300719066616,11272303149817323],[17592253677576,140737488486400,11272300789630083,11272303079253853],[17592253677576,140737489010696,11272300789630083,11272303079253853],[17592253677576,158329741639680,11272300789630083,11272303079253853],[17592253677576,158329742163976,11272300789630083,11272303079253853],[17592253677576,4611686018427518976,11272300730744752,11272303138139186],[17592253677576,4611686018428043272,11272300730744752,11272303138139186],[17592253677576,4611703610680672256,11272300730744752,11272303138139186],[17592253677576,4611703610681196552,11272300730744752,11272303138139186],[17592253677696,67108992,-3950609898973822,-3950600140436346],[17592253677696,67240072,-11272303149817323,-11272300719066616],[17592253677696,67633152,3950600140436346,3950609898973822],[17592253677696,67764232,11272300719066616,11272303149817323],[17592253677696,17592186044544,3950600140436346,3950609898973822],[17592253677696,17592186175624,11272300719066616,11272303149817323],[17592253677696,17592186568704,-3950609898973822,-3950600140436346],[17592253677696,17592186699784,-11272303149817323,-11272300719066616],[17592253677696,35184707633280,-11272303149817323,-11272300719066616],[17592253677696,35184708157440,11272300719066616,11272303149817323],[17592253677696,52776826568832,11272300719066616,11272303149817323],[17592253677696,52776827092992,-11272303149817323,-11272300719066616],[17592253710336,67272708,-24519907477236870,-24519905280236082],[17592253710336,67272712,-974533465,974533467],[17592253710336,67272832,24519905244697076,24519907512775874],[17592253710336,67764228,24519905280236082,24519907477236870],[17592253710336,67764232,-974533467,974533465],[17592253710336,67764352,-24519907512775874,-24519905244697076],[17592253710336,17592186208260,24519905280236082,24519907477236870],[17592253710336,17592186208264,-974533467,974533465],[17592253710336,17592186208384,-24519907512775874,-24519905244697076],[17592253710336,17592186699780,-24519907477236870,-24519905280236082],[17592253710336,17592186699784,-974533465,974533467],[17592253710336,17592186699904,24519905244697076,24519907512775874],[17592253808640,67240072,-49039814562449270,-49039810952496628],[17592253808640,67272712,11272300798196740,11272303070687196],[17592253808640,67272832,-11272303070687196,-11272300798196740],[17592253808640,67633288,49039810952496628,49039814562449270],[17592253808640,67665928,-11272303070687196,-11272300798196740],[17592253808640,67666048,11272300798196740,11272303070687196],[17592253808640,68288520,-11272303070687196,-11272300798196740],[17592253808640,68288640,11272300798196740,11272303070687196],[17592253808640,68681736,11272300798196740,11272303070687196],[17592253808640,68681856,-11272303070687196,-11272300798196740],[17592253808640,268435464,-24519907748637518,-24519905008835432],[17592253808640,268435584,1975301819477018,1975303200228061],[17592253808640,269090824,-1975303200228061,-1975301819477018],[17592253808640,269090944,15222905573753978,15222908334540116],[17592253808640,335675400,-52990420219871546,-52990415334484516],[17592253808640,335675520,39742811412341918,39742815253425129],[17592253808640,336068616,30445811467235518,30445816349352673],[17592253808640,336068736,-52990420219871546,-52990415334484516],[17592253808640,1073741832,-1975303167312100,-1975301852392980],[17592253808640,1073741952,1975301852392980,1975303167312100],[17592253808640,1074397192,-1975303167312100,-1975301852392980],[17592253808640,1074397312,1975301852392980,1975303167312100],[17592253808640,17592186175624,49039810952496628,49039814562449270],[17592253808640,17592186208264,-11272303070687196,-11272300798196740],[17592253808640,17592186208384,11272300798196740,11272303070687196],[17592253808640,17592186568840,-49039814562449270,-49039810952496628],[17592253808640,17592186601480,11272300798196740,11272303070687196],[17592253808640,17592186601600,-11272303070687196,-11272300798196740],[17592253808640,17592187224072,11272300798196740,11272303070687196],[17592253808640,17592187224192,-11272303070687196,-11272300798196740],[17592253808640,17592187617288,-11272303070687196,-11272300798196740],[17592253808640,17592187617408,11272300798196740,11272303070687196],[17592253808640,17592454610952,30445811467235518,30445816349352673],[17592253808640,17592454611072,-52990420219871546,-52990415334484516],[17592253808640,17592455004168,-52990420219871546,-52990415334484516],[17592253808640,17592455004288,39742811412341918,39742815253425129],[17592253808640,17592521588744,-1975303200228061,-1975301819477018],[17592253808640,17592521588864,15222905573753978,15222908334540116],[17592253808640,17592522244104,-24519907748637518,-24519905008835432],[17592253808640,17592522244224,1975301819477018,1975303200228061],[17592253808640,17593326895112,-1975303167312100,-1975301852392980],[17592253808640,17593326895232,1975301852392980,1975303167312100],[17592253808640,17593327550472,-1975303167312100,-1975301852392980],[17592253808640,17593327550592,1975301852392980,1975303167312100],[17592253808640,35184372088840,1975301819477018,1975303200228061],[17592253808640,35184372088960,-1975303200228061,-1975301819477018],[17592253808640,35184372744200,1975301819477018,1975303200228061],[17592253808640,35184372744320,-1975303200228061,-1975301819477018],[17592253808640,52776625242120,1975301819477018,1975303200228061],[17592253808640,52776625242240,-1975303200228061,-1975301819477018],[17592253808640,52776625897480,1975301819477018,1975303200228061],[17592253808640,52776625897600,-1975303200228061,-1975301819477018],[17592253808640,140737488355336,1975301852392980,1975303167312100],[17592253808640,140737488355456,-1975303167312100,-1975301852392980],[17592253808640,140737489010696,1975301852392980,1975303167312100],[17592253808640,140737489010816,-1975303167312100,-1975301852392980],[17592253808640,158329741508616,1975301852392980,1975303167312100],[17592253808640,158329741508736,-1975303167312100,-1975301852392980],[17592253808640,158329742163976,1975301852392980,1975303167312100],[17592253808640,158329742164096,-1975303167312100,-1975301852392980],[17592253808640,4611686018427387912,1975301823150576,1975303196554503],[17592253808640,4611686018427388032,-1975303196554503,-1975301823150576],[17592253808640,4611686018428043272,1975301823150576,1975303196554503],[17592253808640,4611686018428043392,-1975303196554503,-1975301823150576],[17592253808640,4611703610680541192,1975301823150576,1975303196554503],[17592253808640,4611703610680541312,-1975303196554503,-1975301823150576],[17592253808640,4611703610681196552,1975301823150576,1975303196554503],[17592253808640,4611703610681196672,-1975303196554503,-1975301823150576],[17592253808650,67108866,13247603754276960,13247605134312055],[17592253808650,67108872,-13247605134312055,-13247603754276960],[17592253808650,67764226,13247603754276960,13247605134312055],[17592253808650,67764232,-13247605134312055,-13247603754276960],[17592253808650,17592186044418,-13247605134312055,-13247603754276960],[17592253808650,17592186044424,13247603754276960,13247605134312055],[17592253808650,17592186699778,-13247605134312055,-13247603754276960],[17592253808650,17592186699784,13247603754276960,13247605134312055],[17592253808652,67108868,13247603786922062,13247605101666952],[17592253808652,67108872,-13247605101666952,-13247603786922062],[17592253808652,67764228,13247603786922062,13247605101666952],[17592253808652,67764232,-13247605101666952,-13247603786922062],[17592253808652,17592186044420,-13247605101666952,-13247603786922062],[17592253808652,17592186044424,13247603786922062,13247605101666952],[17592253808652,17592186699780,-13247605101666952,-13247603786922062],[17592253808652,17592186699784,13247603786922062,13247605101666952],[17592253808776,67108872,-26495210262619762,-26495207514558268],[17592253808776,67108992,-18594001619979184,-18593996078378526],[17592253808776,67240072,-45089209134537452,-45089206340998288],[17592253808776,67633152,45089206340998288,45089209134537452],[17592253808776,67764232,18593996078378526,18594001619979184],[17592253808776,67764352,26495207514558268,26495210262619762],[17592253808776,17592186044424,26495207514558268,26495210262619762],[17592253808776,17592186044544,18593996078378526,18594001619979184],[17592253808776,17592186175624,45089206340998288,45089209134537452],[17592253808776,17592186568704,-45089209134537452,-45089206340998288],[17592253808776,17592186699784,-18594001619979184,-18593996078378526],[17592253808776,17592186699904,-26495210262619762,-26495207514558268],[17592253808832,67108928,-13247605134312055,-13247603754276960],[17592253808832,67108992,13247603754276960,13247605134312055],[17592253808832,67764288,-13247605134312055,-13247603754276960],[17592253808832,67764352,13247603754276960,13247605134312055],[17592253808832,17592186044480,13247603754276960,13247605134312055],[17592253808832,17592186044544,-13247605134312055,-13247603754276960],[17592253808832,17592186699840,13247603754276960,13247605134312055],[17592253808832,17592186699904,-13247605134312055,-13247603754276960],[17592253809792,67108992,13247603786922062,13247605101666952],[17592253809792,67109888,-13247605101666952,-13247603786922062],[17592253809792,67764352,13247603786922062,13247605101666952],[17592253809792,67765248,-13247605101666952,-13247603786922062],[17592253809792,17592186044544,-13247605101666952,-13247603786922062],[17592253809792,17592186045440,13247603786922062,13247605101666952],[17592253809792,17592186699904,-13247605101666952,-13247603786922062],[17592253809792,17592186700800,13247603786922062,13247605101666952],[17592253841412,67108868,-1975303142599947,-1975301877105131],[17592253841412,67141632,1975301877105131,1975303142599947],[17592253841412,67764228,-1975303142599947,-1975301877105131],[17592253841412,67796992,1975301877105131,1975303142599947],[17592253841412,17592186044420,1975301877105131,1975303142599947],[17592253841412,17592186077184,-1975303142599947,-1975301877105131],[17592253841412,17592186699780,1975301877105131,1975303142599947],[17592253841412,17592186732544,-1975303142599947,-1975301877105131],[17592253841416,67108872,-11272302715781341,-11272301153102595],[17592253841416,67141632,-11272302768733624,-11272301100150310],[17592253841416,67239936,13247602507378184,13247606381210832],[17592253841416,67272712,-9297000203068470,-9296998646110384],[17592253841416,67633152,9296998646110384,9297000203068470],[17592253841416,67665928,-13247606381210832,-13247602507378184],[17592253841416,67764232,11272301100150310,11272302768733624],[17592253841416,67796992,11272301153102595,11272302715781341],[17592253841416,17592186044424,11272301153102595,11272302715781341],[17592253841416,17592186077184,11272301100150310,11272302768733624],[17592253841416,17592186175488,-13247606381210832,-13247602507378184],[17592253841416,17592186208264,9296998646110384,9297000203068470],[17592253841416,17592186568704,-9297000203068470,-9296998646110384],[17592253841416,17592186601480,13247602507378184,13247606381210832],[17592253841416,17592186699784,-11272302768733624,-11272301100150310],[17592253841416,17592186732544,-11272302715781341,-11272301153102595],[17592253841536,67108992,13247603811716528,13247605076872486],[17592253841536,67272832,13247603811716528,13247605076872486],[17592253841536,67633152,-13247605076872486,-13247603811716528],[17592253841536,67796992,-13247605076872486,-13247603811716528],[17592253841536,17592186044544,-13247605076872486,-13247603811716528],[17592253841536,17592186208384,-13247605076872486,-13247603811716528],[17592253841536,17592186568704,13247603811716528,13247605076872486],[17592253841536,17592186732544,13247603811716528,13247605076872486],[17592254201864,67764232,-9297000585232538,-9296998263946318],[17592254201864,68812800,9296998263946318,9297000585232538],[17592254201864,17592186699784,9296998263946318,9297000585232538],[17592254201864,17592187748352,-9297000585232538,-9296998263946318],[17592254332928,67764232,11272300798196740,11272303070687196],[17592254332928,67764352,-13247605101666952,-13247603786922062],[17592254332928,67765248,1975301877105131,1975303142599947],[17592254332928,68681736,-11272303070687196,-11272300798196740],[17592254332928,68681856,13247603786922062,13247605101666952],[17592254332928,68682752,-1975303142599947,-1975301877105131],[17592254332928,17592186699784,-11272303070687196,-11272300798196740],[17592254332928,17592186699904,13247603786922062,13247605101666952],[17592254332928,17592186700800,-1975303142599947,-1975301877105131],[17592254332928,17592187617288,11272300798196740,11272303070687196],[17592254332928,17592187617408,-13247605101666952,-13247603786922062],[17592254332928,17592187618304,1975301877105131,1975303142599947],[17592254857224,67633152,1975301858410281,1975303161294799],[17592254857224,67764232,1975301858410281,1975303161294799],[17592254857224,68157440,-1975303161294799,-1975301858410281],[17592254857224,68288520,-1975303161294799,-1975301858410281],[17592254857224,17592186568704,-1975303161294799,-1975301858410281],[17592254857224,17592186699784,-1975303161294799,-1975301858410281],[17592254857224,17592187092992,1975301858410281,1975303161294799],[17592254857224,17592187224072,1975301858410281,1975303161294799],[17592254857344,67108992,-1975303142599947,-1975301877105131],[17592254857344,67633152,-11272303070687196,-11272300798196740],[17592254857344,67764352,-13247605101666952,-13247603786922062],[17592254857344,68157440,13247603786922062,13247605101666952],[17592254857344,68288640,11272300798196740,11272303070687196],[17592254857344,68812800,1975301877105131,1975303142599947],[17592254857344,17592186044544,1975301877105131,1975303142599947],[17592254857344,17592186568704,11272300798196740,11272303070687196],[17592254857344,17592186699904,13247603786922062,13247605101666952],[17592254857344,17592187092992,-13247605101666952,-13247603786922062],[17592254857344,17592187224192,-11272303070687196,-11272300798196740],[17592254857344,17592187748352,-1975303142599947,-1975301877105131],[17592254858240,67109888,1975301877105131,1975303142599947],[17592254858240,67765248,1975301877105131,1975303142599947],[17592254858240,68157440,-1975303142599947,-1975301877105131],[17592254858240,68812800,-1975303142599947,-1975301877105131],[17592254858240,17592186045440,-1975303142599947,-1975301877105131],[17592254858240,17592186700800,-1975303142599947,-1975301877105131],[17592254858240,17592187092992,1975301877105131,1975303142599947],[17592254858240,17592187748352,1975301877105131,1975303142599947],[17592320393224,469762056,-9297000585232538,-9296998263946318],[17592320393224,469893120,9296998263946318,9297000585232538],[17592320393224,17592521588744,9296998263946318,9297000585232538],[17592320393224,17592521719808,-9297000585232538,-9296998263946318],[17592320786560,469762176,24519905244697076,24519907512775874],[17592320786560,470286336,-24519907512775874,-24519905244697076],[17592320786560,17592521588864,-24519907512775874,-24519905244697076],[17592320786560,17592522113024,24519905244697076,24519907512775874],[17592320786560,35184774742144,-11272303061044145,-11272300807839789],[17592320786560,35184775266304,11272300807839789,11272303061044145],[17592320786560,52776826568832,11272300807839789,11272303061044145],[17592320786560,52776827092992,-11272303061044145,-11272300807839789],[17592321311744,469763072,-13247605076872486,-13247603811716528],[17592321311744,470810624,13247603811716528,13247605076872486],[17592321311744,17592521589760,13247603811716528,13247605076872486],[17592321311744,17592522637312,-13247605076872486,-13247603811716528],[17592321311744,35184774743040,-13247605066127948,-13247603822461068],[17592321311744,35184775790592,13247603822461068,13247605066127948],[17592321311744,52776826569728,13247603822461068,13247605066127948],[17592321311744,52776827617280,-13247605066127948,-13247603822461068],[17592321311744,105553250485248,22544603251967752,22544604485800118],[17592321311744,105553251532800,-22544604485800118,-22544603251967752],[17592321311744,123145302311936,-22544604485800118,-22544603251967752],[17592321311744,123145303359488,22544603251967752,22544604485800118],[17592387371016,268566528,1975301858410281,1975303161294799],[17592387371016,335675400,11272300798196740,11272303070687196],[17592387371016,469893120,-9297000585232538,-9296998263946318],[17592387371016,17592454610952,-9297000585232538,-9296998263946318],[17592387371016,17592588828672,11272300798196740,11272303070687196],[17592387371016,17592655937544,1975301858410281,1975303161294799],[17592387371136,336068736,-11272303070687196,-11272300798196740],[17592387371136,470286336,11272300798196740,11272303070687196],[17592387371136,17592455004288,11272300798196740,11272303070687196],[17592387371136,17592589221888,-11272303070687196,-11272300798196740],[17592387502080,268435464,-1975303161294799,-1975301858410281],[17592387502080,335675400,-11272303070687196,-11272300798196740],[17592387502080,469762056,9296998263946318,9297000585232538],[17592387502080,17592454610952,9296998263946318,9297000585232538],[17592387502080,17592588697608,-11272303070687196,-11272300798196740],[17592387502080,17592655937544,-1975303161294799,-1975301858410281],[17592387895296,336068736,11272300798196740,11272303070687196],[17592387895296,469762176,-11272303070687196,-11272300798196740],[17592387895296,17592455004288,-11272303070687196,-11272300798196740],[17592387895296,17592588697728,11272300798196740,11272303070687196],[17592454479872,131080,-9296999945106400,-9296998904072456],[17592454479872,67108872,-11272305322642808,-11272298546241124],[17592454479872,67108992,-1975304480049416,-1975300539655663],[17592454479872,67764232,22544603189358414,22544604548409457],[17592454479872,67764352,-13247605134312055,-13247603754276960],[17592454479872,17592454610952,-9296999945106400,-9296998904072456],[17592454479872,17592521588744,-11272305322642808,-11272298546241124],[17592454479872,17592521588864,-1975304480049416,-1975300539655663],[17592454479872,17592522244104,22544603189358414,22544604548409457],[17592454479872,17592522244224,-13247605134312055,-13247603754276960],[17592454479872,35184372088960,13247602500871785,13247606387717226],[17592454479872,52776826568832,13247602500871785,13247606387717226],[17592454512648,67239936,-13247606381210832,-13247602507378184],[17592454512648,67272712,-13247606381210832,-13247602507378184],[17592454512648,17592521719808,-13247606381210832,-13247602507378184],[17592454512648,17592521752584,-13247606381210832,-13247602507378184],[17592454610946,67108872,-11272303138139186,-11272300730744752],[17592454610946,67239946,-11272303138139186,-11272300730744752],[17592454610946,17592521588744,-11272303138139186,-11272300730744752],[17592454610946,17592521719818,-11272303138139186,-11272300730744752],[17592454610948,67108872,-11272303079253853,-11272300789630083],[17592454610948,67141632,24519905280236082,24519907477236870],[17592454610948,67239948,-11272303079253853,-11272300789630083],[17592454610948,67272708,24519905280236082,24519907477236870],[17592454610948,17592521588744,-11272303079253853,-11272300789630083],[17592454610948,17592521621504,24519905280236082,24519907477236870],[17592454610948,17592521719820,-11272303079253853,-11272300789630083],[17592454610948,17592521752580,24519905280236082,24519907477236870],[17592454610952,0,-18593999890212800,-18593997808144912],[17592454610952,131080,-9296999945106400,-9296998904072456],[17592454610952,67108866,11272300730744752,11272303138139186],[17592454610952,67108868,11272300789630083,11272303079253853],[17592454610952,67108992,11272300719066616,11272303149817323],[17592454610952,67141632,-11272303079253853,-11272300789630083],[17592454610952,67239946,11272300730744752,11272303138139186],[17592454610952,67239948,11272300789630083,11272303079253853],[17592454610952,67240072,11272300719066616,11272303149817323],[17592454610952,67272712,-11272303079253853,-11272300789630083],[17592454610952,67633152,11272300039541091,11272303829342841],[17592454610952,67764232,-11272303149817323,-11272300719066616],[17592454610952,268435464,-1975305698740355,-1975299320964727],[17592454610952,268566528,-7321700093132675,-7321693736341099],[17592454610952,336068616,30445811467235518,30445816349352673],[17592454610952,336199680,-7901212478833800,-7901207599986520],[17592454610952,469762056,9296998263946318,9297000585232538],[17592454610952,469893120,-9297000585232538,-9296998263946318],[17592454610952,1409286152,-20569302302299032,-20569300415763760],[17592454610952,1409417216,20569300415763760,20569302302299032],[17592454610952,17592186044424,-7321700093132675,-7321693736341099],[17592454610952,17592186175488,-1975305698740355,-1975299320964727],[17592454610952,17592253677576,-7901212478833800,-7901207599986520],[17592454610952,17592253808640,30445811467235518,30445816349352673],[17592454610952,17592387371016,-9297000585232538,-9296998263946318],[17592454610952,17592387502080,9296998263946318,9297000585232538],[17592454610952,17592454479872,-9296999945106400,-9296998904072456],[17592454610952,17592454610952,-18593999890212800,-18593997808144912],[17592454610952,17592521588738,11272300730744752,11272303138139186],[17592454610952,17592521588740,11272300789630083,11272303079253853],[17592454610952,17592521588864,11272300719066616,11272303149817323],[17592454610952,17592521621504,-11272303079253853,-11272300789630083],[17592454610952,17592521719818,11272300730744752,11272303138139186],[17592454610952,17592521719820,11272300789630083,11272303079253853],[17592454610952,17592521719944,11272300719066616,11272303149817323],[17592454610952,17592521752584,-11272303079253853,-11272300789630083],[17592454610952,17592522113024,-11272303149817323,-11272300719066616],[17592454610952,17592522244104,11272300039541091,11272303829342841],[17592454610952,17593326895112,20569300415763760,20569302302299032],[17592454610952,17593327026176,-20569302302299032,-20569300415763760],[17592454610952,35184707633160,15222904455276782,15222909453017315],[17592454610952,35184707764224,-15222909453017315,-15222904455276782],[17592454610952,52776625242120,-15222909453017315,-15222904455276782],[17592454610952,52776625373184,15222904455276782,15222909453017315],[17592454610952,140737823899656,11272300789630083,11272303079253853],[17592454610952,140737824030720,-11272303079253853,-11272300789630083],[17592454610952,158329741508616,-11272303079253853,-11272300789630083],[17592454610952,158329741639680,11272300789630083,11272303079253853],[17592454610952,4611686018762932232,11272300730744752,11272303138139186],[17592454610952,4611686018763063296,-11272303138139186,-11272300730744752],[17592454610952,4611703610680541192,-11272303138139186,-11272300730744752],[17592454610952,4611703610680672256,11272300730744752,11272303138139186],[17592454611072,67108872,-11272303149817323,-11272300719066616],[17592454611072,67240072,-11272303149817323,-11272300719066616],[17592454611072,67633152,-3950609898973822,-3950600140436346],[17592454611072,67764352,49039810320897724,49039815194048170],[17592454611072,336068736,-52990420219871546,-52990415334484516],[17592454611072,17592253808640,-52990420219871546,-52990415334484516],[17592454611072,17592521588744,-11272303149817323,-11272300719066616],[17592454611072,17592521719944,-11272303149817323,-11272300719066616],[17592454611072,17592522113024,49039810320897724,49039815194048170],[17592454611072,17592522244224,-3950609898973822,-3950600140436346],[17592454611072,35184372613120,-11272303149817323,-11272300719066616],[17592454611072,35184372744320,-11272303149817323,-11272300719066616],[17592454611072,52776827092992,-11272303149817323,-11272300719066616],[17592454611072,52776827224192,-11272303149817323,-11272300719066616],[17592454643712,67108868,-24519907477236870,-24519905280236082],[17592454643712,67108872,24519905280236082,24519907477236870],[17592454643712,67272708,-24519907477236870,-24519905280236082],[17592454643712,67272712,24519905280236082,24519907477236870],[17592454643712,17592521588740,-24519907477236870,-24519905280236082],[17592454643712,17592521588744,24519905280236082,24519907477236870],[17592454643712,17592521752580,-24519907477236870,-24519905280236082],[17592454643712,17592521752584,24519905280236082,24519907477236870],[17592455004168,67108992,-1975303200228061,-1975301819477018],[17592455004168,67239936,-35792211106366460,-35792205519990416],[17592455004168,67633288,-1975303200228061,-1975301819477018],[17592455004168,67764232,17198204228118056,17198214699881130],[17592455004168,335675400,-52990420219871546,-52990415334484516],[17592455004168,17592253808640,-52990420219871546,-52990415334484516],[17592455004168,17592521588864,-1975303200228061,-1975301819477018],[17592455004168,17592521719808,17198204228118056,17198214699881130],[17592455004168,17592522113160,-1975303200228061,-1975301819477018],[17592455004168,17592522244104,-35792211106366460,-35792205519990416],[17592455004168,35184372088960,13247603750907644,13247605137681374],[17592455004168,35184372219904,-1975303200228061,-1975301819477018],[17592455004168,35184372613256,13247603750907644,13247605137681374],[17592455004168,35184372744200,-1975303200228061,-1975301819477018],[17592455004168,52776826568832,13247603750907644,13247605137681374],[17592455004168,52776826699776,-1975303200228061,-1975301819477018],[17592455004168,52776827093128,13247603750907644,13247605137681374],[17592455004168,52776827224072,-1975303200228061,-1975301819477018],[17592455004224,67108992,-1975303196554503,-1975301823150576],[17592455004224,67633344,-1975303196554503,-1975301823150576],[17592455004224,17592521588864,-1975303196554503,-1975301823150576],[17592455004224,17592522113216,-1975303196554503,-1975301823150576],[17592455004224,35184372088960,13247603758912222,13247605129676795],[17592455004224,35184372613312,13247603758912222,13247605129676795],[17592455004224,52776826568832,13247603758912222,13247605129676795],[17592455004224,52776827093184,13247603758912222,13247605129676795],[17592455004288,67108872,1975301819477018,1975303200228061],[17592455004288,67108928,1975301823150576,1975303196554503],[17592455004288,67109888,1975301852392980,1975303167312100],[17592455004288,67239936,-1975303200228061,-1975301819477018],[17592455004288,67633288,1975301819477018,1975303200228061],[17592455004288,67633344,1975301823150576,1975303196554503],[17592455004288,67634304,1975301852392980,1975303167312100],[17592455004288,67764352,-15222908334540116,-15222905573753978],[17592455004288,68157440,-1975303167312100,-1975301852392980],[17592455004288,68681856,-1975303167312100,-1975301852392980],[17592455004288,268435584,11272298321696800,11272305547187129],[17592455004288,268959744,-11272305547187129,-11272298321696800],[17592455004288,335675520,39742811412341918,39742815253425129],[17592455004288,336199680,-26495210286978712,-26495207490199320],[17592455004288,469762176,-11272303070687196,-11272300798196740],[17592455004288,470286336,11272300798196740,11272303070687196],[17592455004288,1409286272,-1975303142599947,-1975301877105131],[17592455004288,1409810432,1975301877105131,1975303142599947],[17592455004288,17592186044544,-11272305547187129,-11272298321696800],[17592455004288,17592186568704,11272298321696800,11272305547187129],[17592455004288,17592253284480,-26495210286978712,-26495207490199320],[17592455004288,17592253808640,39742811412341918,39742815253425129],[17592455004288,17592387371136,11272300798196740,11272303070687196],[17592455004288,17592387895296,-11272303070687196,-11272300798196740],[17592455004288,17592521588744,1975301819477018,1975303200228061],[17592455004288,17592521588800,1975301823150576,1975303196554503],[17592455004288,17592521589760,1975301852392980,1975303167312100],[17592455004288,17592521719808,-15222908334540116,-15222905573753978],[17592455004288,17592522113160,1975301819477018,1975303200228061],[17592455004288,17592522113216,1975301823150576,1975303196554503],[17592455004288,17592522114176,1975301852392980,1975303167312100],[17592455004288,17592522244224,-1975303200228061,-1975301819477018],[17592455004288,17592522637312,-1975303167312100,-1975301852392980],[17592455004288,17592523161728,-1975303167312100,-1975301852392980],[17592455004288,17593326895232,1975301877105131,1975303142599947],[17592455004288,17593327419392,-1975303142599947,-1975301877105131],[17592455004288,35184372088840,-13247605137681374,-13247603750907644],[17592455004288,35184372088896,-13247605129676795,-13247603758912222],[17592455004288,35184372089856,-13247605100033866,-13247603788555150],[17592455004288,35184372219904,13247603750907644,13247605137681374],[17592455004288,35184372613256,-13247605137681374,-13247603750907644],[17592455004288,35184372613312,-13247605129676795,-13247603758912222],[17592455004288,35184372614272,-13247605100033866,-13247603788555150],[17592455004288,35184372744320,13247603750907644,13247605137681374],[17592455004288,35184373137408,13247603788555150,13247605100033866],[17592455004288,35184373661824,13247603788555150,13247605100033866],[17592455004288,35184707633280,-11272305547187129,-11272298321696800],[17592455004288,35184708157440,11272298321696800,11272305547187129],[17592455004288,35184774742144,24519905262899363,24519907494573587],[17592455004288,35184775266304,-24519907494573587,-24519905262899363],[17592455004288,52776625242240,11272298321696800,11272305547187129],[17592455004288,52776625766400,-11272305547187129,-11272298321696800],[17592455004288,52776692351104,-24519907494573587,-24519905262899363],[17592455004288,52776692875264,24519905262899363,24519907494573587],[17592455004288,52776826568712,-13247605137681374,-13247603750907644],[17592455004288,52776826568768,-13247605129676795,-13247603758912222],[17592455004288,52776826569728,-13247605100033866,-13247603788555150],[17592455004288,52776826699776,13247603750907644,13247605137681374],[17592455004288,52776827093128,-13247605137681374,-13247603750907644],[17592455004288,52776827093184,-13247605129676795,-13247603758912222],[17592455004288,52776827094144,-13247605100033866,-13247603788555150],[17592455004288,52776827224192,13247603750907644,13247605137681374],[17592455004288,52776827617280,13247603788555150,13247605100033866],[17592455004288,52776828141696,13247603788555150,13247605100033866],[17592455004288,105553384702080,-22544604485800118,-22544603251967752],[17592455004288,105553385226240,22544603251967752,22544604485800118],[17592455004288,123145302311040,22544603251967752,22544604485800118],[17592455004288,123145302835200,-22544604485800118,-22544603251967752],[17592455004288,140737823899776,13247603786922062,13247605101666952],[17592455004288,140737824423936,-13247605101666952,-13247603786922062],[17592455004288,158329741508736,-13247605101666952,-13247603786922062],[17592455004288,158329742032896,13247603786922062,13247605101666952],[17592455004288,175922128879744,-1975303161294799,-1975301858410281],[17592455004288,175922129403904,1975301858410281,1975303161294799],[17592455004288,193514046488704,1975301858410281,1975303161294799],[17592455004288,193514047012864,-1975303161294799,-1975301858410281],[17592455004288,4611686018762932352,13247603754276960,13247605134312055],[17592455004288,4611686018763456512,-13247605134312055,-13247603754276960],[17592455004288,4611703610680541312,-13247605134312055,-13247603754276960],[17592455004288,4611703610681065472,13247603754276960,13247605134312055],[17592455004288,4611721203067912320,-22544604548409457,-22544603189358414],[17592455004288,4611721203068436480,22544603189358414,22544604548409457],[17592455004288,4611738794985521280,22544603189358414,22544604548409457],[17592455004288,4611738794986045440,-22544604548409457,-22544603189358414],[17592455004288,36893523332059627648,-1975303193032786,-1975301826672296],[17592455004288,36893523332060151808,1975301826672296,1975303193032786],[17592455004288,36893540923977236608,1975301826672296,1975303193032786],[17592455004288,36893540923977760768,-1975303193032786,-1975301826672296],[17592455005184,67108992,-1975303167312100,-1975301852392980],[17592455005184,67634304,-1975303167312100,-1975301852392980],[17592455005184,68157440,-22544604497985104,-22544603239782766],[17592455005184,68682752,-22544604497985104,-22544603239782766],[17592455005184,17592521588864,-1975303167312100,-1975301852392980],[17592455005184,17592522114176,-1975303167312100,-1975301852392980],[17592455005184,17592522637312,-22544604497985104,-22544603239782766],[17592455005184,17592523162624,-22544604497985104,-22544603239782766],[17592455005184,35184372088960,13247603788555150,13247605100033866],[17592455005184,35184372614272,13247603788555150,13247605100033866],[17592455005184,35184373137408,-1975303134589986,-1975301885115096],[17592455005184,35184373662720,-1975303134589986,-1975301885115096],[17592455005184,52776826568832,13247603788555150,13247605100033866],[17592455005184,52776827094144,13247603788555150,13247605100033866],[17592455005184,52776827617280,-1975303134589986,-1975301885115096],[17592455005184,52776828142592,-1975303134589986,-1975301885115096],[17592455135232,67108872,47064508334725266,47064512160515549],[17592455135232,67108992,-7321700748173631,-7321693081300137],[17592455135232,67764232,16618691985372593,16618700693280031],[17592455135232,67764352,-47064512160515549,-47064508334725266],[17592455135232,335675400,30445811467235518,30445816349352673],[17592455135232,336068736,39742811412341918,39742815253425129],[17592455135232,17592253284480,39742811412341918,39742815253425129],[17592455135232,17592253677576,30445811467235518,30445816349352673],[17592455135232,17592521588744,16618691985372593,16618700693280031],[17592455135232,17592521588864,-47064512160515549,-47064508334725266],[17592455135232,17592522244104,47064508334725266,47064512160515549],[17592455135232,17592522244224,-7321700748173631,-7321693081300137],[17592455135232,35184372088840,1975301819477018,1975303200228061],[17592455135232,35184372088960,-1975303200228061,-1975301819477018],[17592455135232,35184372744200,1975301819477018,1975303200228061],[17592455135232,35184372744320,-1975303200228061,-1975301819477018],[17592455135232,52776826568712,1975301819477018,1975303200228061],[17592455135232,52776826568832,-1975303200228061,-1975301819477018],[17592455135232,52776827224072,1975301819477018,1975303200228061],[17592455135232,52776827224192,-1975303200228061,-1975301819477018],[17592455528576,67633152,24519905244697076,24519907512775874],[17592455528576,68681856,24519905244697076,24519907512775874],[17592455528576,17592522113024,24519905244697076,24519907512775874],[17592455528576,17592523161728,24519905244697076,24519907512775874],[17592455528576,35184372613120,-11272303061044145,-11272300807839789],[17592455528576,35184373661824,-11272303061044145,-11272300807839789],[17592455528576,52776827092992,-11272303061044145,-11272300807839789],[17592455528576,52776828141696,-11272303061044145,-11272300807839789],[17592456052736,67108992,-22544604497985104,-22544603239782766],[17592456052736,67109888,22544603239782766,22544604497985104],[17592456052736,68681856,-22544604497985104,-22544603239782766],[17592456052736,68682752,22544603239782766,22544604497985104],[17592456052736,17592521588864,-22544604497985104,-22544603239782766],[17592456052736,17592521589760,22544603239782766,22544604497985104],[17592456052736,17592523161728,-22544604497985104,-22544603239782766],[17592456052736,17592523162624,22544603239782766,22544604497985104],[17592456052736,35184372088960,-1975303134589986,-1975301885115096],[17592456052736,35184372089856,1975301885115096,1975303134589986],[17592456052736,35184373661824,-1975303134589986,-1975301885115096],[17592456052736,35184373662720,1975301885115096,1975303134589986],[17592456052736,52776826568832,-1975303134589986,-1975301885115096],[17592456052736,52776826569728,1975301885115096,1975303134589986],[17592456052736,52776828141696,-1975303134589986,-1975301885115096],[17592456052736,52776828142592,1975301885115096,1975303134589986],[17592521588738,67239946,11272300730744752,11272303138139186],[17592521588738,268566538,-13247605129676795,-13247603758912222],[17592521588738,335675400,1975301823150576,1975303196554503],[17592521588738,17592186175498,1975301823150576,1975303196554503],[17592521588738,17592253284360,-13247605129676795,-13247603758912222],[17592521588738,17592454610952,11272300730744752,11272303138139186],[17592521588740,67239948,11272300789630083,11272303079253853],[17592521588740,67272708,-24519907477236870,-24519905280236082],[17592521588740,268566540,-13247605100033866,-13247603788555150],[17592521588740,268599300,1975301885115096,1975303134589986],[17592521588740,335675400,1975301852392980,1975303167312100],[17592521588740,335708160,22544603239782766,22544604497985104],[17592521588740,1140883460,26495207784975390,26495209992202640],[17592521588740,1342210052,-13247605066127948,-13247603822461068],[17592521588740,1409318912,-13247605076872486,-13247603811716528],[17592521588740,17592186175500,1975301852392980,1975303167312100],[17592521588740,17592186208260,22544603239782766,22544604497985104],[17592521588740,17592253284360,-13247605100033866,-13247603788555150],[17592521588740,17592253317120,1975301885115096,1975303134589986],[17592521588740,17592454610952,11272300789630083,11272303079253853],[17592521588740,17592454643712,-24519907477236870,-24519905280236082],[17592521588740,17593259819012,-13247605076872486,-13247603811716528],[17592521588740,17593326927872,-13247605066127948,-13247603822461068],[17592521588740,17593528254464,26495207784975390,26495209992202640],[17592521588744,0,18593997808144912,18593999890212800],[17592521588744,655360,-22544604548409457,-22544603189358414],[17592521588744,67108872,-11272305322642808,-11272298546241124],[17592521588744,67239946,-11272303138139186,-11272300730744752],[17592521588744,67239948,-11272303079253853,-11272300789630083],[17592521588744,67240072,-11272303149817323,-11272300719066616],[17592521588744,67272712,24519905280236082,24519907477236870],[17592521588744,67633288,1975301819477018,1975303200228061],[17592521588744,67764232,16618691985372593,16618700693280031],[17592521588744,134348800,-1975303161294799,-1975301858410281],[17592521588744,201457672,-11272303070687196,-11272300798196740],[17592521588744,268435464,22544601914969187,22544605822798680],[17592521588744,268566538,13247603758912222,13247605129676795],[17592521588744,268566540,13247603788555150,13247605100033866],[17592521588744,268566664,13247603750907644,13247605137681374],[17592521588744,268599304,-1975303134589986,-1975301885115096],[17592521588744,269090824,-1975303200228061,-1975301819477018],[17592521588744,335544320,7321694955032038,7321698874441739],[17592521588744,335675394,-1975303196554503,-1975301823150576],[17592521588744,335675396,-1975303167312100,-1975301852392980],[17592521588744,335675520,-1975303200228061,-1975301819477018],[17592521588744,335708160,-22544604497985104,-22544603239782766],[17592521588744,336068736,-1975303200228061,-1975301819477018],[17592521588744,336199680,-37188001526996408,-37187993869719008],[17592521588744,469893120,9296998263946318,9297000585232538],[17592521588744,1073872896,-11272302768733624,-11272301100150310],[17592521588744,1140981768,-26495209992202640,-26495207784975390],[17592521588744,1342308360,-974533465,974533467],[17592521588744,1409417216,15222905973445933,15222907934848161],[17592521588744,17592186044424,7321694955032038,7321698874441739],[17592521588744,17592186175498,-1975303196554503,-1975301823150576],[17592521588744,17592186175500,-1975303167312100,-1975301852392980],[17592521588744,17592186175624,-1975303200228061,-1975301819477018],[17592521588744,17592186208264,-22544604497985104,-22544603239782766],[17592521588744,17592186568840,-1975303200228061,-1975301819477018],[17592521588744,17592186699784,-37188001526996408,-37187993869719008],[17592521588744,17592253153280,22544601914969187,22544605822798680],[17592521588744,17592253284354,13247603758912222,13247605129676795],[17592521588744,17592253284356,13247603788555150,13247605100033866],[17592521588744,17592253284480,13247603750907644,13247605137681374],[17592521588744,17592253317120,-1975303134589986,-1975301885115096],[17592521588744,17592253808640,-1975303200228061,-1975301819477018],[17592521588744,17592320393224,9296998263946318,9297000585232538],[17592521588744,17592454479872,-11272305322642808,-11272298546241124],[17592521588744,17592454610946,-11272303138139186,-11272300730744752],[17592521588744,17592454610948,-11272303079253853,-11272300789630083],[17592521588744,17592454611072,-11272303149817323,-11272300719066616],[17592521588744,17592454643712,24519905280236082,24519907477236870],[17592521588744,17592455004288,1975301819477018,1975303200228061],[17592521588744,17592455135232,16618691985372593,16618700693280031],[17592521588744,17592521588744,18593997808144912,18593999890212800],[17592521588744,17592522244104,-22544604548409457,-22544603189358414],[17592521588744,17592588828672,-11272303070687196,-11272300798196740],[17592521588744,17592655937544,-1975303161294799,-1975301858410281],[17592521588744,17593259917320,15222905973445933,15222907934848161],[17592521588744,17593327026176,-974533465,974533467],[17592521588744,17593528352768,-26495209992202640,-26495207784975390],[17592521588744,17593595461640,-11272302768733624,-11272301100150310],[17592521588744,35184372219904,-18594001619979184,-18593996078378526],[17592521588744,35184439328776,-11272305547187129,-11272298321696800],[17592521588744,35184640655368,-11272303149817323,-11272300719066616],[17592521588744,35184707764224,3950603736210166,3950606303199992],[17592521588744,52776558264328,3950603736210166,3950606303199992],[17592521588744,52776625373184,-11272303149817323,-11272300719066616],[17592521588744,52776826699776,-11272305547187129,-11272298321696800],[17592521588744,52776893808648,-18594001619979184,-18593996078378526],[17592521588744,140737488486400,13247603786922062,13247605101666952],[17592521588744,140737555595272,24519905262899363,24519907494573587],[17592521588744,140737756921864,-11272303079253853,-11272300789630083],[17592521588744,158329741639680,-11272303079253853,-11272300789630083],[17592521588744,158329942966272,24519905262899363,24519907494573587],[17592521588744,158330010075144,13247603786922062,13247605101666952],[17592521588744,4611686018427518976,13247603754276960,13247605134312055],[17592521588744,4611686018494627848,24519905182726150,24519907574746803],[17592521588744,4611686018695954440,-11272303138139186,-11272300730744752],[17592521588744,4611703610680672256,-11272303138139186,-11272300730744752],[17592521588744,4611703610881998848,24519905182726150,24519907574746803],[17592521588744,4611703610949107720,13247603754276960,13247605134312055],[17592521588800,67633344,1975301823150576,1975303196554503],[17592521588800,336068736,-1975303196554503,-1975301823150576],[17592521588800,17592186568896,-1975303196554503,-1975301823150576],[17592521588800,17592455004288,1975301823150576,1975303196554503],[17592521588864,655360,13247603754276960,13247605134312055],[17592521588864,67108992,-1975304480049416,-1975300539655663],[17592521588864,67240072,11272300719066616,11272303149817323],[17592521588864,67633288,-1975303200228061,-1975301819477018],[17592521588864,67633344,-1975303196554503,-1975301823150576],[17592521588864,67634304,-1975303167312100,-1975301852392980],[17592521588864,67764352,-47064512160515549,-47064508334725266],[17592521588864,68681856,-22544604497985104,-22544603239782766],[17592521588864,201851008,24519905244697076,24519907512775874],[17592521588864,268566664,-13247605137681374,-13247603750907644],[17592521588864,269090944,15222905573753978,15222908334540116],[17592521588864,335544320,1975300539655663,1975304480049416],[17592521588864,335675400,1975301819477018,1975303200228061],[17592521588864,336068616,1975301819477018,1975303200228061],[17592521588864,336068672,1975301823150576,1975303196554503],[17592521588864,336069632,1975301852392980,1975303167312100],[17592521588864,336199680,45089206348552808,45089209126982928],[17592521588864,337117184,22544603239782766,22544604497985104],[17592521588864,470286336,-24519907512775874,-24519905244697076],[17592521588864,1074266112,13247603786922062,13247605101666952],[17592521588864,1342701696,13247603786922062,13247605101666952],[17592521588864,17592186044544,1975300539655663,1975304480049416],[17592521588864,17592186175624,1975301819477018,1975303200228061],[17592521588864,17592186568840,1975301819477018,1975303200228061],[17592521588864,17592186568896,1975301823150576,1975303196554503],[17592521588864,17592186569856,1975301852392980,1975303167312100],[17592521588864,17592186699904,45089206348552808,45089209126982928],[17592521588864,17592187617408,22544603239782766,22544604497985104],[17592521588864,17592253284360,-13247605137681374,-13247603750907644],[17592521588864,17592253808640,15222905573753978,15222908334540116],[17592521588864,17592320786560,-24519907512775874,-24519905244697076],[17592521588864,17592454479872,-1975304480049416,-1975300539655663],[17592521588864,17592454610952,11272300719066616,11272303149817323],[17592521588864,17592455004168,-1975303200228061,-1975301819477018],[17592521588864,17592455004224,-1975303196554503,-1975301823150576],[17592521588864,17592455005184,-1975303167312100,-1975301852392980],[17592521588864,17592455135232,-47064512160515549,-47064508334725266],[17592521588864,17592456052736,-22544604497985104,-22544603239782766],[17592521588864,17592522244224,13247603754276960,13247605134312055],[17592521588864,17592589221888,24519905244697076,24519907512775874],[17592521588864,17593327419392,13247603786922062,13247605101666952],[17592521588864,17593595854976,13247603786922062,13247605101666952],[17592521588864,35184372613120,-26495210262619762,-26495207514558268],[17592521588864,35184439722112,15222904455276782,15222909453017315],[17592521588864,35184641048704,-37767512630799828,-37767509015262141],[17592521588864,35184708157440,-3950606303199992,-3950603736210166],[17592521588864,52776558657664,-3950606303199992,-3950603736210166],[17592521588864,52776625766400,-37767512630799828,-37767509015262141],[17592521588864,52776827092992,15222904455276782,15222909453017315],[17592521588864,52776894201984,-26495210262619762,-26495207514558268],[17592521588864,140737488879616,-13247605101666952,-13247603786922062],[17592521588864,140737757315200,-13247605101666952,-13247603786922062],[17592521588864,158329742032896,-13247605101666952,-13247603786922062],[17592521588864,158330010468480,-13247605101666952,-13247603786922062],[17592521588864,4611686018427912192,-13247605134312055,-13247603754276960],[17592521588864,4611686018696347776,-13247605134312055,-13247603754276960],[17592521588864,4611703610681065472,-13247605134312055,-13247603754276960],[17592521588864,4611703610949501056,-13247605134312055,-13247603754276960],[17592521589760,67634304,1975301852392980,1975303167312100],[17592521589760,68682752,22544603239782766,22544604497985104],[17592521589760,202376192,-13247605076872486,-13247603811716528],[17592521589760,336068736,-1975303167312100,-1975301852392980],[17592521589760,337117184,-22544604497985104,-22544603239782766],[17592521589760,470810624,13247603811716528,13247605076872486],[17592521589760,17592186569856,-1975303167312100,-1975301852392980],[17592521589760,17592187618304,-22544604497985104,-22544603239782766],[17592521589760,17592321311744,13247603811716528,13247605076872486],[17592521589760,17592455004288,1975301852392980,1975303167312100],[17592521589760,17592456052736,22544603239782766,22544604497985104],[17592521589760,17592589746176,-13247605076872486,-13247603811716528],[17592521621504,67272708,24519905280236082,24519907477236870],[17592521621504,67272712,-11272303079253853,-11272300789630083],[17592521621504,268599300,-1975303134589986,-1975301885115096],[17592521621504,268599304,13247603788555150,13247605100033866],[17592521621504,335675396,-22544604497985104,-22544603239782766],[17592521621504,335675400,-1975303167312100,-1975301852392980],[17592521621504,1140883460,-26495209992202640,-26495207784975390],[17592521621504,1342210052,13247603822461068,13247605066127948],[17592521621504,1409286148,13247603811716528,13247605076872486],[17592521621504,17592186208260,-22544604497985104,-22544603239782766],[17592521621504,17592186208264,-1975303167312100,-1975301852392980],[17592521621504,17592253284356,-1975303134589986,-1975301885115096],[17592521621504,17592253284360,13247603788555150,13247605100033866],[17592521621504,17592454610948,24519905280236082,24519907477236870],[17592521621504,17592454610952,-11272303079253853,-11272300789630083],[17592521621504,17593259819012,13247603811716528,13247605076872486],[17592521621504,17593326895108,13247603822461068,13247605066127948],[17592521621504,17593528221700,-26495209992202640,-26495207784975390],[17592521719808,524296,22544603189358414,22544604548409457],[17592521719808,67272712,-13247606381210832,-13247602507378184],[17592521719808,67764232,17198204228118056,17198214699881130],[17592521719808,67764352,-15222908334540116,-15222905573753978],[17592521719808,134217736,1975301858410281,1975303161294799],[17592521719808,201457672,11272300798196740,11272303070687196],[17592521719808,268599304,-11272303061044145,-11272300807839789],[17592521719808,269090824,-11272303149817323,-11272300719066616],[17592521719808,335577096,24519905244697076,24519907512775874],[17592521719808,336068616,16618691985372593,16618700693280031],[17592521719808,336068736,15222905573753978,15222908334540116],[17592521719808,469762056,-9297000585232538,-9296998263946318],[17592521719808,1073741832,11272301100150310,11272302768733624],[17592521719808,1140981768,26495207784975390,26495209992202640],[17592521719808,1342308360,-974533467,974533465],[17592521719808,1409286152,-15222907934848161,-15222905973445933],[17592521719808,17592186208264,24519905244697076,24519907512775874],[17592521719808,17592186699784,16618691985372593,16618700693280031],[17592521719808,17592186699904,15222905573753978,15222908334540116],[17592521719808,17592253186056,-11272303061044145,-11272300807839789],[17592521719808,17592253677576,-11272303149817323,-11272300719066616],[17592521719808,17592320393224,-9297000585232538,-9296998263946318],[17592521719808,17592454512648,-13247606381210832,-13247602507378184],[17592521719808,17592455004168,17198204228118056,17198214699881130],[17592521719808,17592455004288,-15222908334540116,-15222905573753978],[17592521719808,17592522244104,22544603189358414,22544604548409457],[17592521719808,17592588697608,11272300798196740,11272303070687196],[17592521719808,17592655937544,1975301858410281,1975303161294799],[17592521719808,17593259917320,-15222907934848161,-15222905973445933],[17592521719808,17593326895112,-974533467,974533465],[17592521719808,17593528221704,26495207784975390,26495209992202640],[17592521719808,17593595461640,11272301100150310,11272302768733624],[17592521719808,35184372088840,18593996078378526,18594001619979184],[17592521719808,35184439328776,11272298321696800,11272305547187129],[17592521719808,35184640655368,11272300719066616,11272303149817323],[17592521719808,35184707633160,-3950606303199992,-3950603736210166],[17592521719808,52776558264328,-3950606303199992,-3950603736210166],[17592521719808,52776625242120,11272300719066616,11272303149817323],[17592521719808,52776826568712,11272298321696800,11272305547187129],[17592521719808,52776893808648,18593996078378526,18594001619979184],[17592521719808,140737488355336,-13247605101666952,-13247603786922062],[17592521719808,140737555595272,-24519907494573587,-24519905262899363],[17592521719808,140737756921864,11272300789630083,11272303079253853],[17592521719808,158329741508616,11272300789630083,11272303079253853],[17592521719808,158329942835208,-24519907494573587,-24519905262899363],[17592521719808,158330010075144,-13247605101666952,-13247603786922062],[17592521719808,4611686018427387912,-13247605134312055,-13247603754276960],[17592521719808,4611686018494627848,-24519907574746803,-24519905182726150],[17592521719808,4611686018695954440,11272300730744752,11272303138139186],[17592521719808,4611703610680541192,11272300730744752,11272303138139186],[17592521719808,4611703610881867784,-24519907574746803,-24519905182726150],[17592521719808,4611703610949107720,-13247605134312055,-13247603754276960],[17592521719818,67108866,11272300730744752,11272303138139186],[17592521719818,67108872,-11272303138139186,-11272300730744752],[17592521719818,268435458,-13247605129676795,-13247603758912222],[17592521719818,268435464,13247603758912222,13247605129676795],[17592521719818,335675394,-1975303196554503,-1975301823150576],[17592521719818,335675400,1975301823150576,1975303196554503],[17592521719818,17592186044418,1975301823150576,1975303196554503],[17592521719818,17592186044424,-1975303196554503,-1975301823150576],[17592521719818,17592253284354,13247603758912222,13247605129676795],[17592521719818,17592253284360,-13247605129676795,-13247603758912222],[17592521719818,17592454610946,-11272303138139186,-11272300730744752],[17592521719818,17592454610952,11272300730744752,11272303138139186],[17592521719820,67108868,11272300789630083,11272303079253853],[17592521719820,67108872,-11272303079253853,-11272300789630083],[17592521719820,268435460,-13247605100033866,-13247603788555150],[17592521719820,268435464,13247603788555150,13247605100033866],[17592521719820,335675396,-1975303167312100,-1975301852392980],[17592521719820,335675400,1975301852392980,1975303167312100],[17592521719820,17592186044420,1975301852392980,1975303167312100],[17592521719820,17592186044424,-1975303167312100,-1975301852392980],[17592521719820,17592253284356,13247603788555150,13247605100033866],[17592521719820,17592253284360,-13247605100033866,-13247603788555150],[17592521719820,17592454610948,-11272303079253853,-11272300789630083],[17592521719820,17592454610952,11272300789630083,11272303079253853],[17592521719944,67108872,-11272303149817323,-11272300719066616],[17592521719944,67108992,11272300719066616,11272303149817323],[17592521719944,268435464,13247603750907644,13247605137681374],[17592521719944,268435584,-13247605137681374,-13247603750907644],[17592521719944,335675400,1975301819477018,1975303200228061],[17592521719944,335675520,-1975303200228061,-1975301819477018],[17592521719944,17592186044424,-1975303200228061,-1975301819477018],[17592521719944,17592186044544,1975301819477018,1975303200228061],[17592521719944,17592253284360,-13247605137681374,-13247603750907644],[17592521719944,17592253284480,13247603750907644,13247605137681374],[17592521719944,17592454610952,11272300719066616,11272303149817323],[17592521719944,17592454611072,-11272303149817323,-11272300719066616],[17592521752580,67108868,-24519907477236870,-24519905280236082],[17592521752580,67141632,24519905280236082,24519907477236870],[17592521752580,268435460,1975301885115096,1975303134589986],[17592521752580,268468224,-1975303134589986,-1975301885115096],[17592521752580,335675396,-22544604497985104,-22544603239782766],[17592521752580,335708160,22544603239782766,22544604497985104],[17592521752580,17592186044420,22544603239782766,22544604497985104],[17592521752580,17592186077184,-22544604497985104,-22544603239782766],[17592521752580,17592253284356,-1975303134589986,-1975301885115096],[17592521752580,17592253317120,1975301885115096,1975303134589986],[17592521752580,17592454610948,24519905280236082,24519907477236870],[17592521752580,17592454643712,-24519907477236870,-24519905280236082],[17592521752584,67108872,24519905280236082,24519907477236870],[17592521752584,67141632,-11272303079253853,-11272300789630083],[17592521752584,67239936,-13247606381210832,-13247602507378184],[17592521752584,268435464,-1975303134589986,-1975301885115096],[17592521752584,268468224,13247603788555150,13247605100033866],[17592521752584,268566528,-11272303061044145,-11272300807839789],[17592521752584,335577096,24519905244697076,24519907512775874],[17592521752584,335675400,-1975303167312100,-1975301852392980],[17592521752584,335708160,-22544604497985104,-22544603239782766],[17592521752584,17592186044424,-22544604497985104,-22544603239782766],[17592521752584,17592186077184,-1975303167312100,-1975301852392980],[17592521752584,17592186175488,24519905244697076,24519907512775874],[17592521752584,17592253186056,-11272303061044145,-11272300807839789],[17592521752584,17592253284360,13247603788555150,13247605100033866],[17592521752584,17592253317120,-1975303134589986,-1975301885115096],[17592521752584,17592454512648,-13247606381210832,-13247602507378184],[17592521752584,17592454610952,-11272303079253853,-11272300789630083],[17592521752584,17592454643712,24519905280236082,24519907477236870],[17592522113024,131200,-13247605134312055,-13247603754276960],[17592522113024,67764232,-11272303149817323,-11272300719066616],[17592522113024,67764352,49039810320897724,49039815194048170],[17592522113024,68681856,24519905244697076,24519907512775874],[17592522113024,201851008,-24519907512775874,-24519905244697076],[17592522113024,269090824,13247603750907644,13247605137681374],[17592522113024,269090944,-15222908334540116,-15222905573753978],[17592522113024,335675400,-1975303200228061,-1975301819477018],[17592522113024,335675520,-47064512160515549,-47064508334725266],[17592522113024,336593024,-24519907512775874,-24519905244697076],[17592522113024,469762176,24519905244697076,24519907512775874],[17592522113024,1073741952,-13247605101666952,-13247603786922062],[17592522113024,1342701696,-13247605101666952,-13247603786922062],[17592522113024,17592186699784,-1975303200228061,-1975301819477018],[17592522113024,17592186699904,-47064512160515549,-47064508334725266],[17592522113024,17592187617408,-24519907512775874,-24519905244697076],[17592522113024,17592253284360,13247603750907644,13247605137681374],[17592522113024,17592253284480,-15222908334540116,-15222905573753978],[17592522113024,17592320786560,24519905244697076,24519907512775874],[17592522113024,17592454610952,-11272303149817323,-11272300719066616],[17592522113024,17592454611072,49039810320897724,49039815194048170],[17592522113024,17592455528576,24519905244697076,24519907512775874],[17592522113024,17592522244224,-13247605134312055,-13247603754276960],[17592522113024,17592588697728,-24519907512775874,-24519905244697076],[17592522113024,17593326895232,-13247605101666952,-13247603786922062],[17592522113024,17593595854976,-13247605101666952,-13247603786922062],[17592522113024,35184372088960,26495207514558268,26495210262619762],[17592522113024,35184439722112,-15222909453017315,-15222904455276782],[17592522113024,35184641048704,37767509015262141,37767512630799828],[17592522113024,35184707633280,3950603736210166,3950606303199992],[17592522113024,52776558657664,3950603736210166,3950606303199992],[17592522113024,52776625242240,37767509015262141,37767512630799828],[17592522113024,52776826568832,-15222909453017315,-15222904455276782],[17592522113024,52776894201984,26495207514558268,26495210262619762],[17592522113024,140737488355456,13247603786922062,13247605101666952],[17592522113024,140737757315200,13247603786922062,13247605101666952],[17592522113024,158329741508736,13247603786922062,13247605101666952],[17592522113024,158330010468480,13247603786922062,13247605101666952],[17592522113024,4611686018427388032,13247603754276960,13247605134312055],[17592522113024,4611686018696347776,13247603754276960,13247605134312055],[17592522113024,4611703610680541312,13247603754276960,13247605134312055],[17592522113024,4611703610949501056,13247603754276960,13247605134312055],[17592522113160,67108872,1975301819477018,1975303200228061],[17592522113160,67108992,-1975303200228061,-1975301819477018],[17592522113160,336068616,1975301819477018,1975303200228061],[17592522113160,336068736,-1975303200228061,-1975301819477018],[17592522113160,17592186044424,-1975303200228061,-1975301819477018],[17592522113160,17592186044544,1975301819477018,1975303200228061],[17592522113160,17592455004168,-1975303200228061,-1975301819477018],[17592522113160,17592455004288,1975301819477018,1975303200228061],[17592522113216,67108928,1975301823150576,1975303196554503],[17592522113216,67108992,-1975303196554503,-1975301823150576],[17592522113216,336068672,1975301823150576,1975303196554503],[17592522113216,336068736,-1975303196554503,-1975301823150576],[17592522113216,17592186044480,-1975303196554503,-1975301823150576],[17592522113216,17592186044544,1975301823150576,1975303196554503],[17592522113216,17592455004224,-1975303196554503,-1975301823150576],[17592522113216,17592455004288,1975301823150576,1975303196554503],[17592522114176,67108992,-1975303167312100,-1975301852392980],[17592522114176,67109888,1975301852392980,1975303167312100],[17592522114176,336068736,-1975303167312100,-1975301852392980],[17592522114176,336069632,1975301852392980,1975303167312100],[17592522114176,17592186044544,1975301852392980,1975303167312100],[17592522114176,17592186045440,-1975303167312100,-1975301852392980],[17592522114176,17592455004288,1975301852392980,1975303167312100],[17592522114176,17592455005184,-1975303167312100,-1975301852392980],[17592522244104,524296,22544603189358414,22544604548409457],[17592522244104,655360,-22544604548409457,-22544603189358414],[17592522244104,67108872,47064508334725266,47064512160515549],[17592522244104,67239936,-35792211106366460,-35792205519990416],[17592522244104,67633152,11272300039541091,11272303829342841],[17592522244104,67764232,22544603189358414,22544604548409457],[17592522244104,268435464,-24519907748637518,-24519905008835432],[17592522244104,268566528,11272300039541091,11272303829342841],[17592522244104,268959744,13247603750907644,13247605137681374],[17592522244104,335544320,-22544604548409457,-22544603189358414],[17592522244104,335675400,-24519907748637518,-24519905008835432],[17592522244104,336068616,47064508334725266,47064512160515549],[17592522244104,336199680,-45089209126982928,-45089206348552808],[17592522244104,17592186044424,-45089209126982928,-45089206348552808],[17592522244104,17592186175488,47064508334725266,47064512160515549],[17592522244104,17592186568704,-24519907748637518,-24519905008835432],[17592522244104,17592186699784,-22544604548409457,-22544603189358414],[17592522244104,17592253284360,13247603750907644,13247605137681374],[17592522244104,17592253677576,11272300039541091,11272303829342841],[17592522244104,17592253808640,-24519907748637518,-24519905008835432],[17592522244104,17592454479872,22544603189358414,22544604548409457],[17592522244104,17592454610952,11272300039541091,11272303829342841],[17592522244104,17592455004168,-35792211106366460,-35792205519990416],[17592522244104,17592455135232,47064508334725266,47064512160515549],[17592522244104,17592521588744,-22544604548409457,-22544603189358414],[17592522244104,17592521719808,22544603189358414,22544604548409457],[17592522244224,131200,-13247605134312055,-13247603754276960],[17592522244224,655360,13247603754276960,13247605134312055],[17592522244224,67108992,-7321700748173631,-7321693081300137],[17592522244224,67239936,-1975303200228061,-1975301819477018],[17592522244224,67633152,-3950609898973822,-3950600140436346],[17592522244224,67764352,-13247605134312055,-13247603754276960],[17592522244224,268435584,1975301819477018,1975303200228061],[17592522244224,268959744,-1975303200228061,-1975301819477018],[17592522244224,335544320,13247603754276960,13247605134312055],[17592522244224,335675520,-7321700748173631,-7321693081300137],[17592522244224,336068736,1975301819477018,1975303200228061],[17592522244224,336199680,18593996061574096,18594001636783608],[17592522244224,17592186044544,18593996061574096,18594001636783608],[17592522244224,17592186175488,1975301819477018,1975303200228061],[17592522244224,17592186568704,-7321700748173631,-7321693081300137],[17592522244224,17592186699904,13247603754276960,13247605134312055],[17592522244224,17592253284480,-1975303200228061,-1975301819477018],[17592522244224,17592253808640,1975301819477018,1975303200228061],[17592522244224,17592454479872,-13247605134312055,-13247603754276960],[17592522244224,17592454611072,-3950609898973822,-3950600140436346],[17592522244224,17592455004288,-1975303200228061,-1975301819477018],[17592522244224,17592455135232,-7321700748173631,-7321693081300137],[17592522244224,17592521588864,13247603754276960,13247605134312055],[17592522244224,17592522113024,-13247605134312055,-13247603754276960],[17592522637312,68681856,-1975303167312100,-1975301852392980],[17592522637312,68682752,-22544604497985104,-22544603239782766],[17592522637312,202376192,13247603811716528,13247605076872486],[17592522637312,336068736,1975301852392980,1975303167312100],[17592522637312,336069632,22544603239782766,22544604497985104],[17592522637312,469763072,-13247605076872486,-13247603811716528],[17592522637312,17592187617408,1975301852392980,1975303167312100],[17592522637312,17592187618304,22544603239782766,22544604497985104],[17592522637312,17592321311744,-13247605076872486,-13247603811716528],[17592522637312,17592455004288,-1975303167312100,-1975301852392980],[17592522637312,17592455005184,-22544604497985104,-22544603239782766],[17592522637312,17592588698624,13247603811716528,13247605076872486],[17592523161728,67108992,-22544604497985104,-22544603239782766],[17592523161728,67633152,24519905244697076,24519907512775874],[17592523161728,68157440,-1975303167312100,-1975301852392980],[17592523161728,336068736,1975301852392980,1975303167312100],[17592523161728,336593024,-24519907512775874,-24519905244697076],[17592523161728,337117184,22544603239782766,22544604497985104],[17592523161728,17592186044544,22544603239782766,22544604497985104],[17592523161728,17592186568704,-24519907512775874,-24519905244697076],[17592523161728,17592187092992,1975301852392980,1975303167312100],[17592523161728,17592455004288,-1975303167312100,-1975301852392980],[17592523161728,17592455528576,24519905244697076,24519907512775874],[17592523161728,17592456052736,-22544604497985104,-22544603239782766],[17592523162624,67109888,22544603239782766,22544604497985104],[17592523162624,68157440,-22544604497985104,-22544603239782766],[17592523162624,336069632,22544603239782766,22544604497985104],[17592523162624,337117184,-22544604497985104,-22544603239782766],[17592523162624,17592186045440,-22544604497985104,-22544603239782766],[17592523162624,17592187092992,22544603239782766,22544604497985104],[17592523162624,17592455005184,-22544604497985104,-22544603239782766],[17592523162624,17592456052736,22544603239782766,22544604497985104],[17592588697608,201457672,11272300798196740,11272303070687196],[17592588697608,335675400,-11272303070687196,-11272300798196740],[17592588697608,17592387502080,-11272303070687196,-11272300798196740],[17592588697608,17592521719808,11272300798196740,11272303070687196],[17592588697728,67633152,-13247605076872486,-13247603811716528],[17592588697728,201851008,-24519907512775874,-24519905244697076],[17592588697728,336068736,11272300798196740,11272303070687196],[17592588697728,17592387895296,11272300798196740,11272303070687196],[17592588697728,17592522113024,-24519907512775874,-24519905244697076],[17592588697728,17592656330880,-13247605076872486,-13247603811716528],[17592588697728,35184372613120,-13247605066127948,-13247603822461068],[17592588697728,35184506830976,11272300807839789,11272303061044145],[17592588697728,35184641048704,-24519907494573587,-24519905262899363],[17592588697728,52776692875264,-24519907494573587,-24519905262899363],[17592588697728,52776827092992,11272300807839789,11272303061044145],[17592588697728,52776961310848,-13247605066127948,-13247603822461068],[17592588698624,68157440,13247603811716528,13247605076872486],[17592588698624,202376192,13247603811716528,13247605076872486],[17592588698624,17592522637312,13247603811716528,13247605076872486],[17592588698624,17592656856064,13247603811716528,13247605076872486],[17592588698624,35184373137408,13247603822461068,13247605066127948],[17592588698624,35184507356160,13247603822461068,13247605066127948],[17592588698624,52776827617280,13247603822461068,13247605066127948],[17592588698624,52776961836032,13247603822461068,13247605066127948],[17592588828672,201457672,-11272303070687196,-11272300798196740],[17592588828672,335675400,11272300798196740,11272303070687196],[17592588828672,17592387371016,11272300798196740,11272303070687196],[17592588828672,17592521588744,-11272303070687196,-11272300798196740],[17592589221888,67108992,13247603811716528,13247605076872486],[17592589221888,201851008,24519905244697076,24519907512775874],[17592589221888,336068736,-11272303070687196,-11272300798196740],[17592589221888,17592387371136,-11272303070687196,-11272300798196740],[17592589221888,17592521588864,24519905244697076,24519907512775874],[17592589221888,17592656330880,13247603811716528,13247605076872486],[17592589221888,35184372088960,13247603822461068,13247605066127948],[17592589221888,35184506830976,-11272303061044145,-11272300807839789],[17592589221888,35184641048704,24519905262899363,24519907494573587],[17592589221888,52776692351104,24519905262899363,24519907494573587],[17592589221888,52776826568832,-11272303061044145,-11272300807839789],[17592589221888,52776961310848,13247603822461068,13247605066127948],[17592589746176,67109888,-13247605076872486,-13247603811716528],[17592589746176,202376192,-13247605076872486,-13247603811716528],[17592589746176,17592521589760,-13247605076872486,-13247603811716528],[17592589746176,17592656856064,-13247605076872486,-13247603811716528],[17592589746176,35184372089856,-13247605066127948,-13247603822461068],[17592589746176,35184507356160,-13247605066127948,-13247603822461068],[17592589746176,52776826569728,-13247605066127948,-13247603822461068],[17592589746176,52776961836032,-13247605066127948,-13247603822461068],[17592655937544,134217736,1975301858410281,1975303161294799],[17592655937544,134348800,-1975303161294799,-1975301858410281],[17592655937544,268435464,-1975303161294799,-1975301858410281],[17592655937544,268566528,1975301858410281,1975303161294799],[17592655937544,17592387371016,1975301858410281,1975303161294799],[17592655937544,17592387502080,-1975303161294799,-1975301858410281],[17592655937544,17592521588744,-1975303161294799,-1975301858410281],[17592655937544,17592521719808,1975301858410281,1975303161294799],[17592656330880,67108992,13247603811716528,13247605076872486],[17592656330880,67633152,-13247605076872486,-13247603811716528],[17592656330880,469762176,13247603811716528,13247605076872486],[17592656330880,470286336,-13247605076872486,-13247603811716528],[17592656330880,17592186044544,-13247605076872486,-13247603811716528],[17592656330880,17592186568704,13247603811716528,13247605076872486],[17592656330880,17592588697728,-13247605076872486,-13247603811716528],[17592656330880,17592589221888,13247603811716528,13247605076872486],[17592656856064,67109888,-13247605076872486,-13247603811716528],[17592656856064,68157440,13247603811716528,13247605076872486],[17592656856064,469763072,-13247605076872486,-13247603811716528],[17592656856064,470810624,13247603811716528,13247605076872486],[17592656856064,17592186045440,13247603811716528,13247605076872486],[17592656856064,17592187092992,-13247605076872486,-13247603811716528],[17592656856064,17592588698624,13247603811716528,13247605076872486],[17592656856064,17592589746176,-13247605076872486,-13247603811716528],[17593259786240,131080,-9296999899749346,-9296998949429508],[17593259786240,67108868,-1975304301048867,-1975300718656210],[17593259786240,67108872,-11272305103287715,-11272298765596219],[17593259786240,67272708,-13247605070627222,-13247603817961795],[17593259786240,67272712,22544603247468479,22544604490299392],[17593259786240,17593259917320,-9296999899749346,-9296998949429508],[17593259786240,17593326895108,-1975304301048867,-1975300718656210],[17593259786240,17593326895112,-11272305103287715,-11272298765596219],[17593259786240,17593327058948,-13247605070627222,-13247603817961795],[17593259786240,17593327058952,22544603247468479,22544604490299392],[17593259786240,140737488355332,13247602585717435,13247606302871576],[17593259786240,158330748141572,13247602585717435,13247606302871576],[17593259819009,67108868,-1975303136765642,-1975301882939439],[17593259819009,67141637,-1975303136765642,-1975301882939439],[17593259819009,17593326895108,-1975303136765642,-1975301882939439],[17593259819009,17593326927877,-1975303136765642,-1975301882939439],[17593259819009,140737488355332,13247603786059568,13247605102529449],[17593259819009,140737488388101,13247603786059568,13247605102529449],[17593259819009,158330748141572,13247603786059568,13247605102529449],[17593259819009,158330748174341,13247603786059568,13247605102529449],[17593259819012,67108865,1975301882939439,1975303136765642],[17593259819012,67108872,1975301908323058,1975303111382023],[17593259819012,67141637,1975301882939439,1975303136765642],[17593259819012,67141644,1975301908323058,1975303111382023],[17593259819012,67239936,-1975303111382023,-1975301908323058],[17593259819012,67272708,-15222908182009245,-15222905726284853],[17593259819012,1073741828,11272298711597012,11272305157286919],[17593259819012,1073774592,-11272305157286919,-11272298711597012],[17593259819012,1140981764,39742811584848745,39742815080918304],[17593259819012,1141014528,-26495210161088876,-26495207616089156],[17593259819012,1409286148,13247603811716528,13247605076872486],[17593259819012,1409318912,-13247605076872486,-13247603811716528],[17593259819012,17592186044420,-11272305157286919,-11272298711597012],[17593259819012,17592186077184,11272298711597012,11272305157286919],[17593259819012,17592253284356,-26495210161088876,-26495207616089156],[17593259819012,17592253317120,39742811584848745,39742815080918304],[17593259819012,17592521588740,-13247605076872486,-13247603811716528],[17593259819012,17592521621504,13247603811716528,13247605076872486],[17593259819012,17593326895105,1975301882939439,1975303136765642],[17593259819012,17593326895112,1975301908323058,1975303111382023],[17593259819012,17593326927877,1975301882939439,1975303136765642],[17593259819012,17593326927884,1975301908323058,1975303111382023],[17593259819012,17593327026176,-15222908182009245,-15222905726284853],[17593259819012,17593327058948,-1975303111382023,-1975301908323058],[17593259819012,35185512939524,13247603822461068,13247605066127948],[17593259819012,35185512972288,-13247605066127948,-13247603822461068],[17593259819012,52776625242116,-13247605066127948,-13247603822461068],[17593259819012,52776625274880,13247603822461068,13247605066127948],[17593259819012,140737488355329,-13247605102529449,-13247603786059568],[17593259819012,140737488355336,-13247605075396206,-13247603813192808],[17593259819012,140737488388101,-13247605102529449,-13247603786059568],[17593259819012,140737488388108,-13247605075396206,-13247603813192808],[17593259819012,140737488486400,13247603813192808,13247605075396206],[17593259819012,140737488519172,13247603813192808,13247605075396206],[17593259819012,140738629206020,-11272305157286919,-11272298711597012],[17593259819012,140738629238784,11272298711597012,11272305157286919],[17593259819012,158329741508612,11272298711597012,11272305157286919],[17593259819012,158329741541376,-11272305157286919,-11272298711597012],[17593259819012,158330748141569,-13247605102529449,-13247603786059568],[17593259819012,158330748141576,-13247605075396206,-13247603813192808],[17593259819012,158330748174341,-13247605102529449,-13247603786059568],[17593259819012,158330748174348,-13247605075396206,-13247603813192808],[17593259819012,158330748272640,13247603813192808,13247605075396206],[17593259819012,158330748305412,13247603813192808,13247605075396206],[17593259819012,175922934185988,-22544604485800118,-22544603251967752],[17593259819012,175922934218752,22544603251967752,22544604485800118],[17593259819012,193514046488580,22544603251967752,22544604485800118],[17593259819012,193514046521344,-22544604485800118,-22544603251967752],[17593259819012,2305983747775791108,-1975303165966039,-1975301853739043],[17593259819012,2305983747775823872,1975301853739043,1975303165966039],[17593259819012,2306001338888093700,1975301853739043,1975303165966039],[17593259819012,2306001338888126464,-1975303165966039,-1975301853739043],[17593259819012,4611686019568238596,13247603817961795,13247605070627222],[17593259819012,4611686019568271360,-13247605070627222,-13247603817961795],[17593259819012,4611703610680541188,-13247605070627222,-13247603817961795],[17593259819012,4611703610680573952,13247603817961795,13247605070627222],[17593259819012,4611826756989485060,-22544604490299392,-22544603247468479],[17593259819012,4611826756989517824,22544603247468479,22544604490299392],[17593259819012,4611844348101787652,22544603247468479,22544604490299392],[17593259819012,4611844348101820416,-22544604490299392,-22544603247468479],[17593259819016,67108868,-1975303111382023,-1975301908323058],[17593259819016,67141644,-1975303111382023,-1975301908323058],[17593259819016,67239936,-35792210707429288,-35792205918927604],[17593259819016,67272712,17198204846179046,17198214081820128],[17593259819016,1140981768,-52990420000747732,-52990415553608334],[17593259819016,17592253317120,-52990420000747732,-52990415553608334],[17593259819016,17593326895108,-1975303111382023,-1975301908323058],[17593259819016,17593326927884,-1975303111382023,-1975301908323058],[17593259819016,17593327026176,17198204846179046,17198214081820128],[17593259819016,17593327058952,-35792210707429288,-35792205918927604],[17593259819016,140737488355332,13247603813192808,13247605075396206],[17593259819016,140737488388108,13247603813192808,13247605075396206],[17593259819016,140737488486400,-1975303111382023,-1975301908323058],[17593259819016,140737488519176,-1975303111382023,-1975301908323058],[17593259819016,158330748141572,13247603813192808,13247605075396206],[17593259819016,158330748174348,13247603813192808,13247605075396206],[17593259819016,158330748272640,-1975303111382023,-1975301908323058],[17593259819016,158330748305416,-1975303111382023,-1975301908323058],[17593259917314,67108872,-11272303065715385,-11272300803168551],[17593259917314,67239946,-11272303065715385,-11272300803168551],[17593259917314,17593326895112,-11272303065715385,-11272300803168551],[17593259917314,17593327026186,-11272303065715385,-11272300803168551],[17593259917316,67108872,-11272303013198523,-11272300855685410],[17593259917316,67141632,-3950609314173172,-3950600725236988],[17593259917316,67239948,-11272303013198523,-11272300855685410],[17593259917316,67272708,49039810686574560,49039814828371346],[17593259917316,1140883460,-52990420000747732,-52990415553608334],[17593259917316,17592253317120,-52990420000747732,-52990415553608334],[17593259917316,17593326895112,-11272303013198523,-11272300855685410],[17593259917316,17593326927872,49039810686574560,49039814828371346],[17593259917316,17593327026188,-11272303013198523,-11272300855685410],[17593259917316,17593327058948,-3950609314173172,-3950600725236988],[17593259917316,140737488388096,-11272303013198523,-11272300855685410],[17593259917316,140737488519172,-11272303013198523,-11272300855685410],[17593259917316,158330748174336,-11272303013198523,-11272300855685410],[17593259917316,158330748305412,-11272303013198523,-11272300855685410],[17593259917320,0,-18593999799498692,-18593997898859016],[17593259917320,131080,-9296999899749346,-9296998949429508],[17593259917320,67108866,11272300803168551,11272303065715385],[17593259917320,67108868,11272300855685410,11272303013198523],[17593259917320,67108992,11272300807839789,11272303061044145],[17593259917320,67141632,11272300234269956,11272303634613982],[17593259917320,67239946,11272300803168551,11272303065715385],[17593259917320,67239948,11272300855685410,11272303013198523],[17593259917320,67240072,11272300807839789,11272303061044145],[17593259917320,67272712,-11272303013198523,-11272300855685410],[17593259917320,67633152,-11272303061044145,-11272300807839789],[17593259917320,67764232,-11272303061044145,-11272300807839789],[17593259917320,1073741832,-1975305379225034,-1975299640480040],[17593259917320,1073872896,-7321699779192130,-7321694050281650],[17593259917320,1140883464,30445811685099399,30445816131488796],[17593259917320,1141014528,-7901212262229860,-7901207816590464],[17593259917320,1409286152,-15222907934848161,-15222905973445933],[17593259917320,1409417216,15222905973445933,15222907934848161],[17593259917320,17592186044424,-7321699779192130,-7321694050281650],[17593259917320,17592186175488,-1975305379225034,-1975299640480040],[17593259917320,17592253186056,-7901212262229860,-7901207816590464],[17593259917320,17592253317120,30445811685099399,30445816131488796],[17593259917320,17592521588744,15222905973445933,15222907934848161],[17593259917320,17592521719808,-15222907934848161,-15222905973445933],[17593259917320,17593259786240,-9296999899749346,-9296998949429508],[17593259917320,17593259917320,-18593999799498692,-18593997898859016],[17593259917320,17593326895106,11272300803168551,11272303065715385],[17593259917320,17593326895108,11272300855685410,11272303013198523],[17593259917320,17593326895232,11272300807839789,11272303061044145],[17593259917320,17593326927872,-11272303013198523,-11272300855685410],[17593259917320,17593327026186,11272300803168551,11272303065715385],[17593259917320,17593327026188,11272300855685410,11272303013198523],[17593259917320,17593327026312,11272300807839789,11272303061044145],[17593259917320,17593327058952,11272300234269956,11272303634613982],[17593259917320,17593327419392,-11272303061044145,-11272300807839789],[17593259917320,17593327550472,-11272303061044145,-11272300807839789],[17593259917320,35185512939528,11272300807839789,11272303061044145],[17593259917320,35185513070592,-11272303061044145,-11272300807839789],[17593259917320,52776625242120,-11272303061044145,-11272300807839789],[17593259917320,52776625373184,11272300807839789,11272303061044145],[17593259917320,140738629206024,15222904711107262,15222909197186829],[17593259917320,140738629337088,-15222909197186829,-15222904711107262],[17593259917320,158329741508616,-15222909197186829,-15222904711107262],[17593259917320,158329741639680,15222904711107262,15222909197186829],[17593259917320,4611686019568238600,11272300803168551,11272303065715385],[17593259917320,4611686019568369664,-11272303065715385,-11272300803168551],[17593259917320,4611703610680541192,-11272303065715385,-11272300803168551],[17593259917320,4611703610680672256,11272300803168551,11272303065715385],[17593259917440,67108872,-11272303061044145,-11272300807839789],[17593259917440,67240072,-11272303061044145,-11272300807839789],[17593259917440,67633152,24519905244697076,24519907512775874],[17593259917440,67764352,24519905244697076,24519907512775874],[17593259917440,17593326895112,-11272303061044145,-11272300807839789],[17593259917440,17593327026312,-11272303061044145,-11272300807839789],[17593259917440,17593327419392,24519905244697076,24519907512775874],[17593259917440,17593327550592,24519905244697076,24519907512775874],[17593259950080,67108868,-7321700273679520,-7321693555794256],[17593259950080,67108872,47064508636712560,47064511858528265],[17593259950080,67272708,-47064511858528265,-47064508636712560],[17593259950080,67272712,16618692505223764,16618700173428866],[17593259950080,1140883460,39742811584848745,39742815080918304],[17593259950080,1140981768,30445811685099399,30445816131488796],[17593259950080,17592253186056,30445811685099399,30445816131488796],[17593259950080,17592253284356,39742811584848745,39742815080918304],[17593259950080,17593326895108,-47064511858528265,-47064508636712560],[17593259950080,17593326895112,16618692505223764,16618700173428866],[17593259950080,17593327058948,-7321700273679520,-7321693555794256],[17593259950080,17593327058952,47064508636712560,47064511858528265],[17593259950080,140737488355332,-1975303111382023,-1975301908323058],[17593259950080,140737488355336,1975301908323058,1975303111382023],[17593259950080,140737488519172,-1975303111382023,-1975301908323058],[17593259950080,140737488519176,1975301908323058,1975303111382023],[17593259950080,158330748141572,-1975303111382023,-1975301908323058],[17593259950080,158330748141576,1975301908323058,1975303111382023],[17593259950080,158330748305412,-1975303111382023,-1975301908323058],[17593259950080,158330748305416,1975301908323058,1975303111382023],[17593260310536,67239936,-13247606381210832,-13247602507378184],[17593260310536,67764232,-13247606381210832,-13247602507378184],[17593260310536,17593327026176,-13247606381210832,-13247602507378184],[17593260310536,17593327550472,-13247606381210832,-13247602507378184],[17593260441600,67108872,24519905244697076,24519907512775874],[17593260441600,67108992,-24519907512775874,-24519905244697076],[17593260441600,67764232,24519905244697076,24519907512775874],[17593260441600,67764352,-24519907512775874,-24519905244697076],[17593260441600,17593326895112,24519905244697076,24519907512775874],[17593260441600,17593326895232,-24519907512775874,-24519905244697076],[17593260441600,17593327550472,24519905244697076,24519907512775874],[17593260441600,17593327550592,-24519907512775874,-24519905244697076],[17593326895105,67141637,1975301882939439,1975303136765642],[17593326895105,1140883460,-1975303136765642,-1975301882939439],[17593326895105,17592186077189,-1975303136765642,-1975301882939439],[17593326895105,17593259819012,1975301882939439,1975303136765642],[17593326895106,67239946,11272300803168551,11272303065715385],[17593326895106,1073872906,-13247605102529449,-13247603786059568],[17593326895106,1140981768,1975301882939439,1975303136765642],[17593326895106,17592186175498,1975301882939439,1975303136765642],[17593326895106,17592253284360,-13247605102529449,-13247603786059568],[17593326895106,17593259917320,11272300803168551,11272303065715385],[17593326895108,163840,13247603817961795,13247605070627222],[17593326895108,67108868,-1975304301048867,-1975300718656210],[17593326895108,67141637,-1975303136765642,-1975301882939439],[17593326895108,67141644,-1975303111382023,-1975301908323058],[17593326895108,67239948,11272300855685410,11272303013198523],[17593326895108,67272708,-47064511858528265,-47064508636712560],[17593326895108,268468224,13247603822461068,13247605066127948],[17593326895108,1073872908,-13247605075396206,-13247603813192808],[17593326895108,1073905668,15222905726284853,15222908182009245],[17593326895108,1140850688,1975300718656210,1975304301048867],[17593326895108,1140883457,1975301882939439,1975303136765642],[17593326895108,1140883464,1975301908323058,1975303111382023],[17593326895108,1140981768,1975301908323058,1975303111382023],[17593326895108,1141014528,45089206586850560,45089208888685184],[17593326895108,1342210052,13247603822461068,13247605066127948],[17593326895108,17592186044420,1975300718656210,1975304301048867],[17593326895108,17592186077189,1975301882939439,1975303136765642],[17593326895108,17592186077196,1975301908323058,1975303111382023],[17593326895108,17592186175500,1975301908323058,1975303111382023],[17593326895108,17592186208260,45089206586850560,45089208888685184],[17593326895108,17592253284360,-13247605075396206,-13247603813192808],[17593326895108,17592253317120,15222905726284853,15222908182009245],[17593326895108,17592521621504,13247603822461068,13247605066127948],[17593326895108,17593259786240,-1975304301048867,-1975300718656210],[17593326895108,17593259819009,-1975303136765642,-1975301882939439],[17593326895108,17593259819016,-1975303111382023,-1975301908323058],[17593326895108,17593259917320,11272300855685410,11272303013198523],[17593326895108,17593259950080,-47064511858528265,-47064508636712560],[17593326895108,17593327058948,13247603817961795,13247605070627222],[17593326895108,17593595363332,13247603822461068,13247605066127948],[17593326895108,35184372121600,-13247605066127948,-13247603822461068],[17593326895108,35185445863428,-13247605066127948,-13247603822461068],[17593326895108,52776625274880,-13247605066127948,-13247603822461068],[17593326895108,52777699016708,-13247605066127948,-13247603822461068],[17593326895108,140737488388096,-26495210084232978,-26495207692945056],[17593326895108,140737555496964,15222904711107262,15222909197186829],[17593326895108,140738562129924,-37767512400416486,-37767509245645481],[17593326895108,140738629238784,-3950606183988306,-3950603855421852],[17593326895108,158329674432516,-3950606183988306,-3950603855421852],[17593326895108,158329741541376,-37767512400416486,-37767509245645481],[17593326895108,158330748174336,15222904711107262,15222909197186829],[17593326895108,158330815283204,-26495210084232978,-26495207692945056],[17593326895108,4611686018427420672,-13247605070627222,-13247603817961795],[17593326895108,4611686019501162500,-13247605070627222,-13247603817961795],[17593326895108,4611703610680573952,-13247605070627222,-13247603817961795],[17593326895108,4611703611754315780,-13247605070627222,-13247603817961795],[17593326895112,0,18593997898859016,18593999799498692],[17593326895112,163840,-22544604490299392,-22544603247468479],[17593326895112,67108872,-11272305103287715,-11272298765596219],[17593326895112,67141644,1975301908323058,1975303111382023],[17593326895112,67239946,-11272303065715385,-11272300803168551],[17593326895112,67239948,-11272303013198523,-11272300855685410],[17593326895112,67240072,-11272303061044145,-11272300807839789],[17593326895112,67272712,16618692505223764,16618700173428866],[17593326895112,67764232,24519905244697076,24519907512775874],[17593326895112,268566528,9296998646110384,9297000203068470],[17593326895112,335675400,-11272303070687196,-11272300798196740],[17593326895112,1073741832,22544602005389605,22544605732378260],[17593326895112,1073872906,13247603786059568,13247605102529449],[17593326895112,1073872908,13247603813192808,13247605075396206],[17593326895112,1073873032,13247603788555150,13247605100033866],[17593326895112,1073905672,-1975303111382023,-1975301908323058],[17593326895112,1074397192,-1975303167312100,-1975301852392980],[17593326895112,1140850688,7321695128457817,7321698701015960],[17593326895112,1140883460,-1975303111382023,-1975301908323058],[17593326895112,1140981762,-1975303136765642,-1975301882939439],[17593326895112,1140981764,-1975303111382023,-1975301908323058],[17593326895112,1140981888,-1975303134589986,-1975301885115096],[17593326895112,1141014528,-37188001072094720,-37187994324620700],[17593326895112,1141506048,-22544604497985104,-22544603239782766],[17593326895112,1342308360,-974533467,974533465],[17593326895112,1409417216,20569300415763760,20569302302299032],[17593326895112,17592186044424,7321695128457817,7321698701015960],[17593326895112,17592186077196,-1975303111382023,-1975301908323058],[17593326895112,17592186175498,-1975303136765642,-1975301882939439],[17593326895112,17592186175500,-1975303111382023,-1975301908323058],[17593326895112,17592186175624,-1975303134589986,-1975301885115096],[17593326895112,17592186208264,-37188001072094720,-37187994324620700],[17593326895112,17592186699784,-22544604497985104,-22544603239782766],[17593326895112,17592253153280,22544602005389605,22544605732378260],[17593326895112,17592253284354,13247603786059568,13247605102529449],[17593326895112,17592253284356,13247603813192808,13247605075396206],[17593326895112,17592253284480,13247603788555150,13247605100033866],[17593326895112,17592253317120,-1975303111382023,-1975301908323058],[17593326895112,17592253808640,-1975303167312100,-1975301852392980],[17593326895112,17592454610952,20569300415763760,20569302302299032],[17593326895112,17592521719808,-974533467,974533465],[17593326895112,17593259786240,-11272305103287715,-11272298765596219],[17593326895112,17593259819012,1975301908323058,1975303111382023],[17593326895112,17593259917314,-11272303065715385,-11272300803168551],[17593326895112,17593259917316,-11272303013198523,-11272300855685410],[17593326895112,17593259917440,-11272303061044145,-11272300807839789],[17593326895112,17593259950080,16618692505223764,16618700173428866],[17593326895112,17593260441600,24519905244697076,24519907512775874],[17593326895112,17593326895112,18593997898859016,18593999799498692],[17593326895112,17593327058952,-22544604490299392,-22544603247468479],[17593326895112,17593528352768,-11272303070687196,-11272300798196740],[17593326895112,17593595461640,9296998646110384,9297000203068470],[17593326895112,35184372219904,13247603822461068,13247605066127948],[17593326895112,35184439328776,24519905262899363,24519907494573587],[17593326895112,35185445961736,-11272303061044145,-11272300807839789],[17593326895112,52776625373184,-11272303061044145,-11272300807839789],[17593326895112,52777632006144,24519905262899363,24519907494573587],[17593326895112,52777699115016,13247603822461068,13247605066127948],[17593326895112,140737488486400,-18594001318589224,-18593996379768482],[17593326895112,140737555595272,-11272305157286919,-11272298711597012],[17593326895112,140738562228232,-11272303013198523,-11272300855685410],[17593326895112,140738629337088,3950603855421852,3950606183988306],[17593326895112,158329674530824,3950603855421852,3950606183988306],[17593326895112,158329741639680,-11272303013198523,-11272300855685410],[17593326895112,158330748272640,-11272305157286919,-11272298711597012],[17593326895112,158330815381512,-18594001318589224,-18593996379768482],[17593326895112,4611686018427518976,13247603817961795,13247605070627222],[17593326895112,4611686018494627848,24519905253728852,24519907503744101],[17593326895112,4611686019501260808,-11272303065715385,-11272300803168551],[17593326895112,4611703610680672256,-11272303065715385,-11272300803168551],[17593326895112,4611703611687305216,24519905253728852,24519907503744101],[17593326895112,4611703611754414088,13247603817961795,13247605070627222],[17593326895232,67240072,11272300807839789,11272303061044145],[17593326895232,67764352,-24519907512775874,-24519905244697076],[17593326895232,336068736,11272300798196740,11272303070687196],[17593326895232,1073873032,-13247605100033866,-13247603788555150],[17593326895232,1074397312,1975301852392980,1975303167312100],[17593326895232,1140981768,1975301885115096,1975303134589986],[17593326895232,1141506048,22544603239782766,22544604497985104],[17593326895232,1342701696,-13247605101666952,-13247603786922062],[17593326895232,1409810432,1975301877105131,1975303142599947],[17593326895232,17592186175624,1975301885115096,1975303134589986],[17593326895232,17592186699904,22544603239782766,22544604497985104],[17593326895232,17592253284360,-13247605100033866,-13247603788555150],[17593326895232,17592253808640,1975301852392980,1975303167312100],[17593326895232,17592455004288,1975301877105131,1975303142599947],[17593326895232,17592522113024,-13247605101666952,-13247603786922062],[17593326895232,17593259917320,11272300807839789,11272303061044145],[17593326895232,17593260441600,-24519907512775874,-24519905244697076],[17593326895232,17593528745984,11272300798196740,11272303070687196],[17593326927872,131076,-13247605070627222,-13247603817961795],[17593326927872,67272708,49039810686574560,49039814828371346],[17593326927872,67272712,-11272303013198523,-11272300855685410],[17593326927872,268435460,-13247605066127948,-13247603822461068],[17593326927872,1073905668,-15222908182009245,-15222905726284853],[17593326927872,1073905672,13247603813192808,13247605075396206],[17593326927872,1140981764,-47064511858528265,-47064508636712560],[17593326927872,1140981768,-1975303111382023,-1975301908323058],[17593326927872,1342210052,-13247605066127948,-13247603822461068],[17593326927872,17592186208260,-47064511858528265,-47064508636712560],[17593326927872,17592186208264,-1975303111382023,-1975301908323058],[17593326927872,17592253284356,-15222908182009245,-15222905726284853],[17593326927872,17592253284360,13247603813192808,13247605075396206],[17593326927872,17592521588740,-13247605066127948,-13247603822461068],[17593326927872,17593259917316,49039810686574560,49039814828371346],[17593326927872,17593259917320,-11272303013198523,-11272300855685410],[17593326927872,17593327058948,-13247605070627222,-13247603817961795],[17593326927872,17593595363332,-13247605066127948,-13247603822461068],[17593326927872,35184372088836,13247603822461068,13247605066127948],[17593326927872,35185445863428,13247603822461068,13247605066127948],[17593326927872,52776625242116,13247603822461068,13247605066127948],[17593326927872,52777699016708,13247603822461068,13247605066127948],[17593326927872,140737488355332,26495207692945056,26495210084232978],[17593326927872,140737555496964,-15222909197186829,-15222904711107262],[17593326927872,140738562129924,37767509245645481,37767512400416486],[17593326927872,140738629206020,3950603855421852,3950606183988306],[17593326927872,158329674432516,3950603855421852,3950606183988306],[17593326927872,158329741508612,37767509245645481,37767512400416486],[17593326927872,158330748141572,-15222909197186829,-15222904711107262],[17593326927872,158330815283204,26495207692945056,26495210084232978],[17593326927872,4611686018427387908,13247603817961795,13247605070627222],[17593326927872,4611686019501162500,13247603817961795,13247605070627222],[17593326927872,4611703610680541188,13247603817961795,13247605070627222],[17593326927872,4611703611754315780,13247603817961795,13247605070627222],[17593326927877,67108865,1975301882939439,1975303136765642],[17593326927877,67108868,-1975303136765642,-1975301882939439],[17593326927877,1140883457,1975301882939439,1975303136765642],[17593326927877,1140883460,-1975303136765642,-1975301882939439],[17593326927877,17592186044417,-1975303136765642,-1975301882939439],[17593326927877,17592186044420,1975301882939439,1975303136765642],[17593326927877,17593259819009,-1975303136765642,-1975301882939439],[17593326927877,17593259819012,1975301882939439,1975303136765642],[17593326927884,67108868,-1975303111382023,-1975301908323058],[17593326927884,67108872,1975301908323058,1975303111382023],[17593326927884,1140883460,-1975303111382023,-1975301908323058],[17593326927884,1140883464,1975301908323058,1975303111382023],[17593326927884,17592186044420,1975301908323058,1975303111382023],[17593326927884,17592186044424,-1975303111382023,-1975301908323058],[17593326927884,17593259819012,1975301908323058,1975303111382023],[17593326927884,17593259819016,-1975303111382023,-1975301908323058],[17593327026176,32776,22544603247468479,22544604490299392],[17593327026176,67272708,-15222908182009245,-15222905726284853],[17593327026176,67272712,17198204846179046,17198214081820128],[17593327026176,67764232,-13247606381210832,-13247602507378184],[17593327026176,268435464,-9297000203068470,-9296998646110384],[17593327026176,335675400,11272300798196740,11272303070687196],[17593327026176,1073905672,-11272303013198523,-11272300855685410],[17593327026176,1074397192,-11272303079253853,-11272300789630083],[17593327026176,1140883460,15222905726284853,15222908182009245],[17593327026176,1140883464,16618692505223764,16618700173428866],[17593327026176,1141374984,24519905280236082,24519907477236870],[17593327026176,1342308360,-974533465,974533467],[17593327026176,1409286152,-20569302302299032,-20569300415763760],[17593327026176,17592186208260,15222905726284853,15222908182009245],[17593327026176,17592186208264,16618692505223764,16618700173428866],[17593327026176,17592186699784,24519905280236082,24519907477236870],[17593327026176,17592253186056,-11272303013198523,-11272300855685410],[17593327026176,17592253677576,-11272303079253853,-11272300789630083],[17593327026176,17592454610952,-20569302302299032,-20569300415763760],[17593327026176,17592521588744,-974533465,974533467],[17593327026176,17593259819012,-15222908182009245,-15222905726284853],[17593327026176,17593259819016,17198204846179046,17198214081820128],[17593327026176,17593260310536,-13247606381210832,-13247602507378184],[17593327026176,17593327058952,22544603247468479,22544604490299392],[17593327026176,17593528221704,11272300798196740,11272303070687196],[17593327026176,17593595461640,-9297000203068470,-9296998646110384],[17593327026176,35184372088840,-13247605066127948,-13247603822461068],[17593327026176,35184439328776,-24519907494573587,-24519905262899363],[17593327026176,35185445961736,11272300807839789,11272303061044145],[17593327026176,52776625242120,11272300807839789,11272303061044145],[17593327026176,52777631875080,-24519907494573587,-24519905262899363],[17593327026176,52777699115016,-13247605066127948,-13247603822461068],[17593327026176,140737488355336,18593996379768482,18594001318589224],[17593327026176,140737555595272,11272298711597012,11272305157286919],[17593327026176,140738562228232,11272300855685410,11272303013198523],[17593327026176,140738629206024,-3950606183988306,-3950603855421852],[17593327026176,158329674530824,-3950606183988306,-3950603855421852],[17593327026176,158329741508616,11272300855685410,11272303013198523],[17593327026176,158330748141576,11272298711597012,11272305157286919],[17593327026176,158330815381512,18593996379768482,18594001318589224],[17593327026176,4611686018427387912,-13247605070627222,-13247603817961795],[17593327026176,4611686018494627848,-24519907503744101,-24519905253728852],[17593327026176,4611686019501260808,11272300803168551,11272303065715385],[17593327026176,4611703610680541192,11272300803168551,11272303065715385],[17593327026176,4611703611687174152,-24519907503744101,-24519905253728852],[17593327026176,4611703611754414088,-13247605070627222,-13247603817961795],[17593327026186,67108866,11272300803168551,11272303065715385],[17593327026186,67108872,-11272303065715385,-11272300803168551],[17593327026186,1073741826,-13247605102529449,-13247603786059568],[17593327026186,1073741832,13247603786059568,13247605102529449],[17593327026186,1140981762,-1975303136765642,-1975301882939439],[17593327026186,1140981768,1975301882939439,1975303136765642],[17593327026186,17592186044418,1975301882939439,1975303136765642],[17593327026186,17592186044424,-1975303136765642,-1975301882939439],[17593327026186,17592253284354,13247603786059568,13247605102529449],[17593327026186,17592253284360,-13247605102529449,-13247603786059568],[17593327026186,17593259917314,-11272303065715385,-11272300803168551],[17593327026186,17593259917320,11272300803168551,11272303065715385],[17593327026188,67108868,11272300855685410,11272303013198523],[17593327026188,67108872,-11272303013198523,-11272300855685410],[17593327026188,1073741828,-13247605075396206,-13247603813192808],[17593327026188,1073741832,13247603813192808,13247605075396206],[17593327026188,1140981764,-1975303111382023,-1975301908323058],[17593327026188,1140981768,1975301908323058,1975303111382023],[17593327026188,17592186044420,1975301908323058,1975303111382023],[17593327026188,17592186044424,-1975303111382023,-1975301908323058],[17593327026188,17592253284356,13247603813192808,13247605075396206],[17593327026188,17592253284360,-13247605075396206,-13247603813192808],[17593327026188,17593259917316,-11272303013198523,-11272300855685410],[17593327026188,17593259917320,11272300855685410,11272303013198523],[17593327026312,67108872,-11272303061044145,-11272300807839789],[17593327026312,67108992,11272300807839789,11272303061044145],[17593327026312,1073741832,13247603788555150,13247605100033866],[17593327026312,1073741952,-13247605100033866,-13247603788555150],[17593327026312,1140981768,1975301885115096,1975303134589986],[17593327026312,1140981888,-1975303134589986,-1975301885115096],[17593327026312,17592186044424,-1975303134589986,-1975301885115096],[17593327026312,17592186044544,1975301885115096,1975303134589986],[17593327026312,17592253284360,-13247605100033866,-13247603788555150],[17593327026312,17592253284480,13247603788555150,13247605100033866],[17593327026312,17593259917320,11272300807839789,11272303061044145],[17593327026312,17593259917440,-11272303061044145,-11272300807839789],[17593327058948,131076,-13247605070627222,-13247603817961795],[17593327058948,163840,13247603817961795,13247605070627222],[17593327058948,67108868,-7321700273679520,-7321693555794256],[17593327058948,67141632,-3950609314173172,-3950600725236988],[17593327058948,67239936,-1975303111382023,-1975301908323058],[17593327058948,67272708,-13247605070627222,-13247603817961795],[17593327058948,1073741828,1975301908323058,1975303111382023],[17593327058948,1073774592,-1975303111382023,-1975301908323058],[17593327058948,1140850688,13247603817961795,13247605070627222],[17593327058948,1140883460,1975301908323058,1975303111382023],[17593327058948,1140981764,-7321700273679520,-7321693555794256],[17593327058948,1141014528,18593996425761684,18594001272596028],[17593327058948,17592186044420,18593996425761684,18594001272596028],[17593327058948,17592186077184,-7321700273679520,-7321693555794256],[17593327058948,17592186175488,1975301908323058,1975303111382023],[17593327058948,17592186208260,13247603817961795,13247605070627222],[17593327058948,17592253284356,-1975303111382023,-1975301908323058],[17593327058948,17592253317120,1975301908323058,1975303111382023],[17593327058948,17593259786240,-13247605070627222,-13247603817961795],[17593327058948,17593259819012,-1975303111382023,-1975301908323058],[17593327058948,17593259917316,-3950609314173172,-3950600725236988],[17593327058948,17593259950080,-7321700273679520,-7321693555794256],[17593327058948,17593326895108,13247603817961795,13247605070627222],[17593327058948,17593326927872,-13247605070627222,-13247603817961795],[17593327058952,32776,22544603247468479,22544604490299392],[17593327058952,163840,-22544604490299392,-22544603247468479],[17593327058952,67108872,47064508636712560,47064511858528265],[17593327058952,67141632,11272300234269956,11272303634613982],[17593327058952,67239936,-35792210707429288,-35792205918927604],[17593327058952,67272712,22544603247468479,22544604490299392],[17593327058952,1073741832,-24519907601681415,-24519905155791537],[17593327058952,1073774592,13247603813192808,13247605075396206],[17593327058952,1073872896,11272300234269956,11272303634613982],[17593327058952,1140850688,-22544604490299392,-22544603247468479],[17593327058952,1140883464,47064508636712560,47064511858528265],[17593327058952,1140981768,-24519907601681415,-24519905155791537],[17593327058952,1141014528,-45089208888685184,-45089206586850560],[17593327058952,17592186044424,-45089208888685184,-45089206586850560],[17593327058952,17592186077184,-24519907601681415,-24519905155791537],[17593327058952,17592186175488,47064508636712560,47064511858528265],[17593327058952,17592186208264,-22544604490299392,-22544603247468479],[17593327058952,17592253186056,11272300234269956,11272303634613982],[17593327058952,17592253284360,13247603813192808,13247605075396206],[17593327058952,17592253317120,-24519907601681415,-24519905155791537],[17593327058952,17593259786240,22544603247468479,22544604490299392],[17593327058952,17593259819016,-35792210707429288,-35792205918927604],[17593327058952,17593259917320,11272300234269956,11272303634613982],[17593327058952,17593259950080,47064508636712560,47064511858528265],[17593327058952,17593326895112,-22544604490299392,-22544603247468479],[17593327058952,17593327026176,22544603247468479,22544604490299392],[17593327419392,67764232,-11272303061044145,-11272300807839789],[17593327419392,67764352,24519905244697076,24519907512775874],[17593327419392,336068736,-11272303070687196,-11272300798196740],[17593327419392,1074397192,13247603788555150,13247605100033866],[17593327419392,1074397312,-1975303167312100,-1975301852392980],[17593327419392,1140981768,-1975303134589986,-1975301885115096],[17593327419392,1140981888,-22544604497985104,-22544603239782766],[17593327419392,1342701696,13247603786922062,13247605101666952],[17593327419392,1409286272,-1975303142599947,-1975301877105131],[17593327419392,17592186699784,-1975303134589986,-1975301885115096],[17593327419392,17592186699904,-22544604497985104,-22544603239782766],[17593327419392,17592253284360,13247603788555150,13247605100033866],[17593327419392,17592253284480,-1975303167312100,-1975301852392980],[17593327419392,17592455004288,-1975303142599947,-1975301877105131],[17593327419392,17592521588864,13247603786922062,13247605101666952],[17593327419392,17593259917320,-11272303061044145,-11272300807839789],[17593327419392,17593259917440,24519905244697076,24519907512775874],[17593327419392,17593528221824,-11272303070687196,-11272300798196740],[17593327550472,67108872,24519905244697076,24519907512775874],[17593327550472,67239936,-13247606381210832,-13247602507378184],[17593327550472,67633152,-11272303061044145,-11272300807839789],[17593327550472,1073741832,-1975303167312100,-1975301852392980],[17593327550472,1073872896,-11272303079253853,-11272300789630083],[17593327550472,1074266112,13247603788555150,13247605100033866],[17593327550472,1140981768,-1975303134589986,-1975301885115096],[17593327550472,1141374984,24519905280236082,24519907477236870],[17593327550472,1141506048,-22544604497985104,-22544603239782766],[17593327550472,17592186044424,-22544604497985104,-22544603239782766],[17593327550472,17592186175488,24519905280236082,24519907477236870],[17593327550472,17592186568704,-1975303134589986,-1975301885115096],[17593327550472,17592253284360,13247603788555150,13247605100033866],[17593327550472,17592253677576,-11272303079253853,-11272300789630083],[17593327550472,17592253808640,-1975303167312100,-1975301852392980],[17593327550472,17593259917320,-11272303061044145,-11272300807839789],[17593327550472,17593260310536,-13247606381210832,-13247602507378184],[17593327550472,17593260441600,24519905244697076,24519907512775874],[17593327550592,67108992,-24519907512775874,-24519905244697076],[17593327550592,67633152,24519905244697076,24519907512775874],[17593327550592,1073741952,1975301852392980,1975303167312100],[17593327550592,1074266112,-1975303167312100,-1975301852392980],[17593327550592,1140981888,-22544604497985104,-22544603239782766],[17593327550592,1141506048,22544603239782766,22544604497985104],[17593327550592,17592186044544,22544603239782766,22544604497985104],[17593327550592,17592186568704,-22544604497985104,-22544603239782766],[17593327550592,17592253284480,-1975303167312100,-1975301852392980],[17593327550592,17592253808640,1975301852392980,1975303167312100],[17593327550592,17593259917440,24519905244697076,24519907512775874],[17593327550592,17593260441600,-24519907512775874,-24519905244697076],[17593528221700,67141632,-26495209992202640,-26495207784975390],[17593528221700,1140883460,-26495209992202640,-26495207784975390],[17593528221700,17592521621504,-26495209992202640,-26495207784975390],[17593528221700,17593595363332,-26495209992202640,-26495207784975390],[17593528221704,67239936,13247602507378184,13247606381210832],[17593528221704,335675400,11272300798196740,11272303070687196],[17593528221704,1140981768,26495207784975390,26495209992202640],[17593528221704,1409417216,-24519907494573587,-24519905262899363],[17593528221704,17592253284360,-24519907494573587,-24519905262899363],[17593528221704,17592521719808,26495207784975390,26495209992202640],[17593528221704,17593327026176,11272300798196740,11272303070687196],[17593528221704,17593595461640,13247602507378184,13247606381210832],[17593528221824,67633152,-11272303070687196,-11272300798196740],[17593528221824,336068736,-11272303070687196,-11272300798196740],[17593528221824,17593327419392,-11272303070687196,-11272300798196740],[17593528221824,17593595854976,-11272303070687196,-11272300798196740],[17593528254464,67108868,26495207784975390,26495209992202640],[17593528254464,1140883460,26495207784975390,26495209992202640],[17593528254464,17592521588740,26495207784975390,26495209992202640],[17593528254464,17593595363332,26495207784975390,26495209992202640],[17593528352768,67108872,-13247606381210832,-13247602507378184],[17593528352768,335675400,-11272303070687196,-11272300798196740],[17593528352768,1140981768,-26495209992202640,-26495207784975390],[17593528352768,1409286152,24519905262899363,24519907494573587],[17593528352768,17592253284360,24519905262899363,24519907494573587],[17593528352768,17592521588744,-26495209992202640,-26495207784975390],[17593528352768,17593326895112,-11272303070687196,-11272300798196740],[17593528352768,17593595461640,-13247606381210832,-13247602507378184],[17593528745984,67108992,11272300798196740,11272303070687196],[17593528745984,336068736,11272300798196740,11272303070687196],[17593528745984,17593326895232,11272300798196740,11272303070687196],[17593528745984,17593595854976,11272300798196740,11272303070687196],[17593595363332,67108868,26495207784975390,26495209992202640],[17593595363332,67141632,-26495209992202640,-26495207784975390],[17593595363332,268435460,-13247605066127948,-13247603822461068],[17593595363332,268468224,13247603822461068,13247605066127948],[17593595363332,1409286148,13247603811716528,13247605076872486],[17593595363332,1409318912,-13247605076872486,-13247603811716528],[17593595363332,17592186044420,-13247605076872486,-13247603811716528],[17593595363332,17592186077184,13247603811716528,13247605076872486],[17593595363332,17593326895108,13247603822461068,13247605066127948],[17593595363332,17593326927872,-13247605066127948,-13247603822461068],[17593595363332,17593528221700,-26495209992202640,-26495207784975390],[17593595363332,17593528254464,26495207784975390,26495209992202640],[17593595461640,67108872,-13247606381210832,-13247602507378184],[17593595461640,67239936,13247602507378184,13247606381210832],[17593595461640,268435464,-9297000203068470,-9296998646110384],[17593595461640,268566528,9296998646110384,9297000203068470],[17593595461640,1073741832,11272301100150310,11272302768733624],[17593595461640,1073872896,-11272302768733624,-11272301100150310],[17593595461640,1409286152,-11272302715781341,-11272301153102595],[17593595461640,1409417216,11272301153102595,11272302715781341],[17593595461640,17592186044424,11272301153102595,11272302715781341],[17593595461640,17592186175488,-11272302715781341,-11272301153102595],[17593595461640,17592521588744,-11272302768733624,-11272301100150310],[17593595461640,17592521719808,11272301100150310,11272302768733624],[17593595461640,17593326895112,9296998646110384,9297000203068470],[17593595461640,17593327026176,-9297000203068470,-9296998646110384],[17593595461640,17593528221704,13247602507378184,13247606381210832],[17593595461640,17593528352768,-13247606381210832,-13247602507378184],[17593595854976,67108992,11272300798196740,11272303070687196],[17593595854976,67633152,-11272303070687196,-11272300798196740],[17593595854976,1073741952,-13247605101666952,-13247603786922062],[17593595854976,1074266112,13247603786922062,13247605101666952],[17593595854976,1409286272,-1975303142599947,-1975301877105131],[17593595854976,1409810432,1975301877105131,1975303142599947],[17593595854976,17592186044544,1975301877105131,1975303142599947],[17593595854976,17592186568704,-1975303142599947,-1975301877105131],[17593595854976,17592521588864,13247603786922062,13247605101666952],[17593595854976,17592522113024,-13247605101666952,-13247603786922062],[17593595854976,17593528221824,-11272303070687196,-11272300798196740],[17593595854976,17593528745984,11272300798196740,11272303070687196],[35184372088834,268959880,-22544604548409457,-22544603189358414],[35184372088834,268959936,-1975303193032786,-1975301826672296],[35184372088834,269090824,13247603754276960,13247605134312055],[35184372088834,335675400,-1975303196554503,-1975301823150576],[35184372088834,17592253284360,13247603758912222,13247605129676795],[35184372088834,35184641048714,-22544604548409457,-22544603189358414],[35184372088834,35184641048770,-1975303193032786,-1975301826672296],[35184372088834,35184641179658,13247603754276960,13247605134312055],[35184372088834,35184707764234,-1975303196554503,-1975301823150576],[35184372088834,52776625373194,13247603758912222,13247605129676795],[35184372088836,268959880,-1975303161294799,-1975301858410281],[35184372088836,269090824,13247603786922062,13247605101666952],[35184372088836,269123584,-1975303142599947,-1975301877105131],[35184372088836,335675400,-1975303167312100,-1975301852392980],[35184372088836,335708160,-22544604497985104,-22544603239782766],[35184372088836,1409318912,13247603811716528,13247605076872486],[35184372088836,17592253284360,13247603788555150,13247605100033866],[35184372088836,17592253317120,-1975303134589986,-1975301885115096],[35184372088836,17593326927872,13247603822461068,13247605066127948],[35184372088836,35184641048716,-1975303161294799,-1975301858410281],[35184372088836,35184641179660,13247603786922062,13247605101666952],[35184372088836,35184641212420,-1975303142599947,-1975301877105131],[35184372088836,35184707764236,-1975303167312100,-1975301852392980],[35184372088836,35184707796996,-22544604497985104,-22544603239782766],[35184372088836,35185781407748,13247603811716528,13247605076872486],[35184372088836,52776625373196,13247603788555150,13247605100033866],[35184372088836,52776625405956,-1975303134589986,-1975301885115096],[35184372088836,52777699016708,13247603822461068,13247605066127948],[35184372088836,158330748174336,-22544604485800118,-22544603251967752],[35184372088836,193515120263172,-22544604485800118,-22544603251967752],[35184372088840,524416,-13247606387717226,-13247602500871785],[35184372088840,655360,1975300539655663,1975304480049416],[35184372088840,67239936,-11272305547187129,-11272298321696800],[35184372088840,268435584,1975300055801777,1975304963903298],[35184372088840,268566528,3950600140436346,3950609898973822],[35184372088840,268959744,-11272305547187129,-11272298321696800],[35184372088840,268959874,22544603189358414,22544604548409457],[35184372088840,268959876,1975301858410281,1975303161294799],[35184372088840,268959936,1975301826672296,1975303193032786],[35184372088840,268960896,22544603251967752,22544604485800118],[35184372088840,269090818,-13247605134312055,-13247603754276960],[35184372088840,269090820,-13247605101666952,-13247603786922062],[35184372088840,269090944,18593996078378526,18594001619979184],[35184372088840,269123584,1975301877105131,1975303142599947],[35184372088840,270008448,-13247605066127948,-13247603822461068],[35184372088840,270139392,-13247605076872486,-13247603811716528],[35184372088840,335544320,1975300539655663,1975304480049416],[35184372088840,335675394,1975301823150576,1975303196554503],[35184372088840,335675396,1975301852392980,1975303167312100],[35184372088840,335675520,1975301819477018,1975303200228061],[35184372088840,335708160,22544603239782766,22544604497985104],[35184372088840,336068736,1975301819477018,1975303200228061],[35184372088840,336199680,18593996061574096,18594001636783608],[35184372088840,403177600,1975301885115096,1975303134589986],[35184372088840,403308544,22544603239782766,22544604497985104],[35184372088840,469893120,1975301877105131,1975303142599947],[35184372088840,1409417216,-13247605076872486,-13247603811716528],[35184372088840,17592186175488,1975300055801777,1975304963903298],[35184372088840,17592253153280,-13247606387717226,-13247602500871785],[35184372088840,17592253284354,-13247605129676795,-13247603758912222],[35184372088840,17592253284356,-13247605100033866,-13247603788555150],[35184372088840,17592253284480,-13247605137681374,-13247603750907644],[35184372088840,17592253317120,1975301885115096,1975303134589986],[35184372088840,17592253808640,1975301819477018,1975303200228061],[35184372088840,17592455004288,-13247605137681374,-13247603750907644],[35184372088840,17592455135232,1975301819477018,1975303200228061],[35184372088840,17592521719808,18593996078378526,18594001619979184],[35184372088840,17593327026176,-13247605066127948,-13247603822461068],[35184372088840,35184372613256,-13247606387717226,-13247602500871785],[35184372088840,35184372744200,1975300539655663,1975304480049416],[35184372088840,35184439328776,-11272305547187129,-11272298321696800],[35184372088840,35184640524424,1975300055801777,1975304963903298],[35184372088840,35184640655368,3950600140436346,3950609898973822],[35184372088840,35184641048584,-11272305547187129,-11272298321696800],[35184372088840,35184641048714,22544603189358414,22544604548409457],[35184372088840,35184641048716,1975301858410281,1975303161294799],[35184372088840,35184641048776,1975301826672296,1975303193032786],[35184372088840,35184641049736,22544603251967752,22544604485800118],[35184372088840,35184641179658,-13247605134312055,-13247603754276960],[35184372088840,35184641179660,-13247605101666952,-13247603786922062],[35184372088840,35184641179784,18593996078378526,18594001619979184],[35184372088840,35184641212424,1975301877105131,1975303142599947],[35184372088840,35184642097288,-13247605066127948,-13247603822461068],[35184372088840,35184642228232,-13247605076872486,-13247603811716528],[35184372088840,35184707633160,1975300539655663,1975304480049416],[35184372088840,35184707764234,1975301823150576,1975303196554503],[35184372088840,35184707764236,1975301852392980,1975303167312100],[35184372088840,35184707764360,1975301819477018,1975303200228061],[35184372088840,35184707797000,22544603239782766,22544604497985104],[35184372088840,35184708157576,1975301819477018,1975303200228061],[35184372088840,35184708288520,18593996061574096,18594001636783608],[35184372088840,35184775266440,1975301885115096,1975303134589986],[35184372088840,35184775397384,22544603239782766,22544604497985104],[35184372088840,35184841981960,1975301877105131,1975303142599947],[35184372088840,35185781506056,-13247605076872486,-13247603811716528],[35184372088840,52776558264328,1975300055801777,1975304963903298],[35184372088840,52776625242120,-13247606387717226,-13247602500871785],[35184372088840,52776625373194,-13247605129676795,-13247603758912222],[35184372088840,52776625373196,-13247605100033866,-13247603788555150],[35184372088840,52776625373320,-13247605137681374,-13247603750907644],[35184372088840,52776625405960,1975301885115096,1975303134589986],[35184372088840,52776625897480,1975301819477018,1975303200228061],[35184372088840,52776827093128,-13247605137681374,-13247603750907644],[35184372088840,52776827224072,1975301819477018,1975303200228061],[35184372088840,52776893808648,18593996078378526,18594001619979184],[35184372088840,52777699115016,-13247605066127948,-13247603822461068],[35184372088840,70369013137536,-13247605100033866,-13247603788555150],[35184372088840,70369013268480,1975301852392980,1975303167312100],[35184372088840,70369079853056,-13247605101666952,-13247603786922062],[35184372088840,87960997462016,1975301858410281,1975303161294799],[35184372088840,105553385226376,-13247605100033866,-13247603788555150],[35184372088840,105553385357320,1975301852392980,1975303167312100],[35184372088840,105553451941896,-13247605101666952,-13247603786922062],[35184372088840,123145369550856,1975301858410281,1975303161294799],[35184372088840,158329741639680,22544603251967752,22544604485800118],[35184372088840,193514113728520,22544603251967752,22544604485800118],[35184372088840,4611703610680672256,1975301826672296,1975303193032786],[35184372088840,4611738795052761096,1975301826672296,1975303193032786],[35184372088840,36893488147688063104,-13247605129676795,-13247603758912222],[35184372088840,36893488147688194048,1975301823150576,1975303196554503],[35184372088840,36893488147754778624,-13247605134312055,-13247603754276960],[35184372088840,36893505739672387584,22544603189358414,22544604548409457],[35184372088840,36893523332060151944,-13247605129676795,-13247603758912222],[35184372088840,36893523332060282888,1975301823150576,1975303196554503],[35184372088840,36893523332126867464,-13247605134312055,-13247603754276960],[35184372088840,36893540924044476424,22544603189358414,22544604548409457],[35184372088896,268959874,1975301826672296,1975303193032786],[35184372088896,268959880,22544603189358414,22544604548409457],[35184372088896,269090944,-13247605134312055,-13247603754276960],[35184372088896,336068736,1975301823150576,1975303196554503],[35184372088896,17592455004288,-13247605129676795,-13247603758912222],[35184372088896,35184641048770,1975301826672296,1975303193032786],[35184372088896,35184641048776,22544603189358414,22544604548409457],[35184372088896,35184641179840,-13247605134312055,-13247603754276960],[35184372088896,35184708157632,1975301823150576,1975303196554503],[35184372088896,52776827093184,-13247605129676795,-13247603758912222],[35184372088960,524296,13247602500871785,13247606387717226],[35184372088960,655360,7321694955032038,7321698874441739],[35184372088960,67633152,-7321700093132675,-7321693736341099],[35184372088960,268435464,-1975304963903298,-1975300055801777],[35184372088960,268566528,-7321700093132675,-7321693736341099],[35184372088960,268959816,-24519907574746803,-24519905182726150],[35184372088960,268960776,-24519907494573587,-24519905262899363],[35184372088960,269090824,26495207514558268,26495210262619762],[35184372088960,269090880,13247603754276960,13247605134312055],[35184372088960,269091840,13247603786922062,13247605101666952],[35184372088960,270008328,13247603822461068,13247605066127948],[35184372088960,270139392,11272301153102595,11272302715781341],[35184372088960,335544320,7321694955032038,7321698874441739],[35184372088960,335675400,-1975303200228061,-1975301819477018],[35184372088960,336068616,-1975303200228061,-1975301819477018],[35184372088960,336068672,-1975303196554503,-1975301823150576],[35184372088960,336069632,-1975303167312100,-1975301852392980],[35184372088960,336199680,-45089209126982928,-45089206348552808],[35184372088960,337117184,-22544604497985104,-22544603239782766],[35184372088960,403177480,-1975303134589986,-1975301885115096],[35184372088960,403308544,-22544604497985104,-22544603239782766],[35184372088960,470286336,11272301153102595,11272302715781341],[35184372088960,17592186568704,-1975304963903298,-1975300055801777],[35184372088960,17592253284360,13247603750907644,13247605137681374],[35184372088960,17592253808640,-1975303200228061,-1975301819477018],[35184372088960,17592454479872,13247602500871785,13247606387717226],[35184372088960,17592455004168,13247603750907644,13247605137681374],[35184372088960,17592455004224,13247603758912222,13247605129676795],[35184372088960,17592455005184,13247603788555150,13247605100033866],[35184372088960,17592455135232,-1975303200228061,-1975301819477018],[35184372088960,17592456052736,-1975303134589986,-1975301885115096],[35184372088960,17592522113024,26495207514558268,26495210262619762],[35184372088960,17592589221888,13247603822461068,13247605066127948],[35184372088960,35184372613256,13247602500871785,13247606387717226],[35184372088960,35184372744320,7321694955032038,7321698874441739],[35184372088960,35184439722112,-7321700093132675,-7321693736341099],[35184372088960,35184640524424,-1975304963903298,-1975300055801777],[35184372088960,35184640655488,-7321700093132675,-7321693736341099],[35184372088960,35184641048776,-24519907574746803,-24519905182726150],[35184372088960,35184641049736,-24519907494573587,-24519905262899363],[35184372088960,35184641179784,26495207514558268,26495210262619762],[35184372088960,35184641179840,13247603754276960,13247605134312055],[35184372088960,35184641180800,13247603786922062,13247605101666952],[35184372088960,35184642097288,13247603822461068,13247605066127948],[35184372088960,35184642228352,11272301153102595,11272302715781341],[35184372088960,35184707633280,7321694955032038,7321698874441739],[35184372088960,35184707764360,-1975303200228061,-1975301819477018],[35184372088960,35184708157576,-1975303200228061,-1975301819477018],[35184372088960,35184708157632,-1975303196554503,-1975301823150576],[35184372088960,35184708158592,-1975303167312100,-1975301852392980],[35184372088960,35184708288640,-45089209126982928,-45089206348552808],[35184372088960,35184709206144,-22544604497985104,-22544603239782766],[35184372088960,35184775266440,-1975303134589986,-1975301885115096],[35184372088960,35184775397504,-22544604497985104,-22544603239782766],[35184372088960,35184842375296,11272301153102595,11272302715781341],[35184372088960,52776558657664,-1975304963903298,-1975300055801777],[35184372088960,52776625373320,13247603750907644,13247605137681374],[35184372088960,52776625897600,-1975303200228061,-1975301819477018],[35184372088960,52776826568832,13247602500871785,13247606387717226],[35184372088960,52776827093128,13247603750907644,13247605137681374],[35184372088960,52776827093184,13247603758912222,13247605129676795],[35184372088960,52776827094144,13247603788555150,13247605100033866],[35184372088960,52776827224192,-1975303200228061,-1975301819477018],[35184372088960,52776828141696,-1975303134589986,-1975301885115096],[35184372088960,52776894201984,26495207514558268,26495210262619762],[35184372088960,52776961310848,13247603822461068,13247605066127948],[35184372088960,70369013137416,13247603788555150,13247605100033866],[35184372088960,70369013268480,-1975303167312100,-1975301852392980],[35184372088960,70369080246272,13247603786922062,13247605101666952],[35184372088960,87961199181824,-24519907494573587,-24519905262899363],[35184372088960,105553385226376,13247603788555150,13247605100033866],[35184372088960,105553385357440,-1975303167312100,-1975301852392980],[35184372088960,105553452335232,13247603786922062,13247605101666952],[35184372088960,123145571270784,-24519907494573587,-24519905262899363],[35184372088960,36893488147688062984,13247603758912222,13247605129676795],[35184372088960,36893488147688194048,-1975303196554503,-1975301823150576],[35184372088960,36893488147755171840,13247603754276960,13247605134312055],[35184372088960,36893505739874107392,-24519907574746803,-24519905182726150],[35184372088960,36893523332060151944,13247603758912222,13247605129676795],[35184372088960,36893523332060283008,-1975303196554503,-1975301823150576],[35184372088960,36893523332127260800,13247603754276960,13247605134312055],[35184372088960,36893540924246196352,-24519907574746803,-24519905182726150],[35184372088970,268959874,22544603189358414,22544604548409457],[35184372088970,268959880,-22544604548409457,-22544603189358414],[35184372088970,35184641048578,-22544604548409457,-22544603189358414],[35184372088970,35184641048584,22544603189358414,22544604548409457],[35184372088972,268959876,1975301858410281,1975303161294799],[35184372088972,268959880,-1975303161294799,-1975301858410281],[35184372088972,35184641048580,-1975303161294799,-1975301858410281],[35184372088972,35184641048584,1975301858410281,1975303161294799],[35184372089026,268959874,1975301826672296,1975303193032786],[35184372089026,268959936,-1975303193032786,-1975301826672296],[35184372089026,35184641048578,-1975303193032786,-1975301826672296],[35184372089026,35184641048640,1975301826672296,1975303193032786],[35184372089032,268959816,-24519907574746803,-24519905182726150],[35184372089032,268959880,22544603189358414,22544604548409457],[35184372089032,268959936,1975301826672296,1975303193032786],[35184372089032,35184641048584,1975301826672296,1975303193032786],[35184372089032,35184641048640,22544603189358414,22544604548409457],[35184372089032,35184641048704,-24519907574746803,-24519905182726150],[35184372089856,268959880,1975301858410281,1975303161294799],[35184372089856,269090944,-13247605101666952,-13247603786922062],[35184372089856,270139392,1975301877105131,1975303142599947],[35184372089856,336068736,1975301852392980,1975303167312100],[35184372089856,337117184,22544603239782766,22544604497985104],[35184372089856,470810624,-13247605076872486,-13247603811716528],[35184372089856,17592455004288,-13247605100033866,-13247603788555150],[35184372089856,17592456052736,1975301885115096,1975303134589986],[35184372089856,17592589746176,-13247605066127948,-13247603822461068],[35184372089856,35184641049736,1975301858410281,1975303161294799],[35184372089856,35184641180800,-13247605101666952,-13247603786922062],[35184372089856,35184642229248,1975301877105131,1975303142599947],[35184372089856,35184708158592,1975301852392980,1975303167312100],[35184372089856,35184709207040,22544603239782766,22544604497985104],[35184372089856,35184842900480,-13247605076872486,-13247603811716528],[35184372089856,52776827094144,-13247605100033866,-13247603788555150],[35184372089856,52776828142592,1975301885115096,1975303134589986],[35184372089856,52776961836032,-13247605066127948,-13247603822461068],[35184372089856,87961065488384,22544603251967752,22544604485800118],[35184372089856,123145437578240,22544603251967752,22544604485800118],[35184372089992,268959880,1975301858410281,1975303161294799],[35184372089992,268960776,-24519907494573587,-24519905262899363],[35184372089992,268960896,22544603251967752,22544604485800118],[35184372089992,35184641048584,22544603251967752,22544604485800118],[35184372089992,35184641048704,-24519907494573587,-24519905262899363],[35184372089992,35184641049600,1975301858410281,1975303161294799],[35184372121600,269090820,1975301877105131,1975303142599947],[35184372121600,269090824,-13247605101666952,-13247603786922062],[35184372121600,269090944,1975301858410281,1975303161294799],[35184372121600,335675396,22544603239782766,22544604497985104],[35184372121600,335675400,1975301852392980,1975303167312100],[35184372121600,1409286148,-13247605076872486,-13247603811716528],[35184372121600,17592253284356,1975301885115096,1975303134589986],[35184372121600,17592253284360,-13247605100033866,-13247603788555150],[35184372121600,17593326895108,-13247605066127948,-13247603822461068],[35184372121600,35184641212420,1975301877105131,1975303142599947],[35184372121600,35184641212424,-13247605101666952,-13247603786922062],[35184372121600,35184641212544,1975301858410281,1975303161294799],[35184372121600,35184707796996,22544603239782766,22544604497985104],[35184372121600,35184707797000,1975301852392980,1975303167312100],[35184372121600,35185781407748,-13247605076872486,-13247603811716528],[35184372121600,52776625405956,1975301885115096,1975303134589986],[35184372121600,52776625405960,-13247605100033866,-13247603788555150],[35184372121600,52777699016708,-13247605066127948,-13247603822461068],[35184372121600,158330748141572,22544603251967752,22544604485800118],[35184372121600,193515120263172,22544603251967752,22544604485800118],[35184372219904,524296,-1975304480049416,-1975300539655663],[35184372219904,524416,22544601914969187,22544605822798680],[35184372219904,67108872,11272298321696800,11272305547187129],[35184372219904,268435464,-3950609898973822,-3950600140436346],[35184372219904,268435584,-1975305698740355,-1975299320964727],[35184372219904,268959880,-45089209134537452,-45089206340998288],[35184372219904,268992520,11272300798196740,11272303070687196],[35184372219904,268992640,-1975303161294799,-1975301858410281],[35184372219904,270008328,13247603811716528,13247605076872486],[35184372219904,270008448,-9297000203068470,-9296998646110384],[35184372219904,335577096,-24519907512775874,-24519905244697076],[35184372219904,336068616,-7321700748173631,-7321693081300137],[35184372219904,336068736,-24519907748637518,-24519905008835432],[35184372219904,403177480,-22544604497985104,-22544603239782766],[35184372219904,403177600,-1975303134589986,-1975301885115096],[35184372219904,469762056,-1975303142599947,-1975301877105131],[35184372219904,1409286152,13247603811716528,13247605076872486],[35184372219904,17592186044424,-1975304963903298,-1975300055801777],[35184372219904,17592253186056,11272300807839789,11272303061044145],[35184372219904,17592253677576,11272300719066616,11272303149817323],[35184372219904,17592455004168,-1975303200228061,-1975301819477018],[35184372219904,17592455004288,13247603750907644,13247605137681374],[35184372219904,17592521588744,-18594001619979184,-18593996078378526],[35184372219904,17593326895112,13247603822461068,13247605066127948],[35184372219904,35184372744200,-1975304480049416,-1975300539655663],[35184372219904,35184372744320,22544601914969187,22544605822798680],[35184372219904,35184439328776,11272298321696800,11272305547187129],[35184372219904,35184640655368,-3950609898973822,-3950600140436346],[35184372219904,35184640655488,-1975305698740355,-1975299320964727],[35184372219904,35184641179784,-45089209134537452,-45089206340998288],[35184372219904,35184641212424,11272300798196740,11272303070687196],[35184372219904,35184641212544,-1975303161294799,-1975301858410281],[35184372219904,35184642228232,13247603811716528,13247605076872486],[35184372219904,35184642228352,-9297000203068470,-9296998646110384],[35184372219904,35184707797000,-24519907512775874,-24519905244697076],[35184372219904,35184708288520,-7321700748173631,-7321693081300137],[35184372219904,35184708288640,-24519907748637518,-24519905008835432],[35184372219904,35184775397384,-22544604497985104,-22544603239782766],[35184372219904,35184775397504,-1975303134589986,-1975301885115096],[35184372219904,35184841981960,-1975303142599947,-1975301877105131],[35184372219904,35185781506056,13247603811716528,13247605076872486],[35184372219904,52776558264328,-1975304963903298,-1975300055801777],[35184372219904,52776625405960,11272300807839789,11272303061044145],[35184372219904,52776625897480,11272300719066616,11272303149817323],[35184372219904,52776827224072,-1975303200228061,-1975301819477018],[35184372219904,52776827224192,13247603750907644,13247605137681374],[35184372219904,52776893808648,-18594001619979184,-18593996078378526],[35184372219904,52777699115016,13247603822461068,13247605066127948],[35184372219904,70369013137416,-1975303167312100,-1975301852392980],[35184372219904,70369013137536,13247603788555150,13247605100033866],[35184372219904,70369079721992,13247603786922062,13247605101666952],[35184372219904,87960997330952,-1975303161294799,-1975301858410281],[35184372219904,105553385357320,-1975303167312100,-1975301852392980],[35184372219904,105553385357440,13247603788555150,13247605100033866],[35184372219904,105553451941896,13247603786922062,13247605101666952],[35184372219904,123145369550856,-1975303161294799,-1975301858410281],[35184372219904,158329741508616,-22544604485800118,-22544603251967752],[35184372219904,193514113728520,-22544604485800118,-22544603251967752],[35184372219904,4611703610680541192,-1975303193032786,-1975301826672296],[35184372219904,4611738795052761096,-1975303193032786,-1975301826672296],[35184372219904,36893488147688062984,-1975303196554503,-1975301823150576],[35184372219904,36893488147688063104,13247603758912222,13247605129676795],[35184372219904,36893488147754647560,13247603754276960,13247605134312055],[35184372219904,36893505739672256520,-22544604548409457,-22544603189358414],[35184372219904,36893523332060282888,-1975303196554503,-1975301823150576],[35184372219904,36893523332060283008,13247603758912222,13247605129676795],[35184372219904,36893523332126867464,13247603754276960,13247605134312055],[35184372219904,36893540924044476424,-22544604548409457,-22544603189358414],[35184372219914,269090818,-13247605134312055,-13247603754276960],[35184372219914,269090824,13247603754276960,13247605134312055],[35184372219914,335675394,1975301823150576,1975303196554503],[35184372219914,335675400,-1975303196554503,-1975301823150576],[35184372219914,17592253284354,-13247605129676795,-13247603758912222],[35184372219914,17592253284360,13247603758912222,13247605129676795],[35184372219914,35184641048578,13247603754276960,13247605134312055],[35184372219914,35184641048584,-13247605134312055,-13247603754276960],[35184372219914,35184707633154,-1975303196554503,-1975301823150576],[35184372219914,35184707633160,1975301823150576,1975303196554503],[35184372219914,52776625242114,13247603758912222,13247605129676795],[35184372219914,52776625242120,-13247605129676795,-13247603758912222],[35184372219916,269090820,-13247605101666952,-13247603786922062],[35184372219916,269090824,13247603786922062,13247605101666952],[35184372219916,335675396,1975301852392980,1975303167312100],[35184372219916,335675400,-1975303167312100,-1975301852392980],[35184372219916,17592253284356,-13247605100033866,-13247603788555150],[35184372219916,17592253284360,13247603788555150,13247605100033866],[35184372219916,35184641048580,13247603786922062,13247605101666952],[35184372219916,35184641048584,-13247605101666952,-13247603786922062],[35184372219916,35184707633156,-1975303167312100,-1975301852392980],[35184372219916,35184707633160,1975301852392980,1975303167312100],[35184372219916,52776625242116,13247603788555150,13247605100033866],[35184372219916,52776625242120,-13247605100033866,-13247603788555150],[35184372220040,268959880,-49039814562449270,-49039810952496628],[35184372220040,269090824,37767509015262141,37767512630799828],[35184372220040,269090944,11272298321696800,11272305547187129],[35184372220040,335675400,-1975303200228061,-1975301819477018],[35184372220040,335675520,1975301819477018,1975303200228061],[35184372220040,17592253284360,13247603750907644,13247605137681374],[35184372220040,17592253284480,-13247605137681374,-13247603750907644],[35184372220040,35184641048584,11272298321696800,11272305547187129],[35184372220040,35184641048704,37767509015262141,37767512630799828],[35184372220040,35184641179648,-49039814562449270,-49039810952496628],[35184372220040,35184707633160,1975301819477018,1975303200228061],[35184372220040,35184707633280,-1975303200228061,-1975301819477018],[35184372220040,52776625242120,-13247605137681374,-13247603750907644],[35184372220040,52776625242240,13247603750907644,13247605137681374],[35184372220096,269090880,24519905182726150,24519907574746803],[35184372220096,269090944,-24519907574746803,-24519905182726150],[35184372220096,35184641048640,-24519907574746803,-24519905182726150],[35184372220096,35184641048704,24519905182726150,24519907574746803],[35184372221056,269090944,-24519907494573587,-24519905262899363],[35184372221056,269091840,24519905262899363,24519907494573587],[35184372221056,35184641048704,24519905262899363,24519907494573587],[35184372221056,35184641049600,-24519907494573587,-24519905262899363],[35184372252676,269090820,1975301877105131,1975303142599947],[35184372252676,269123584,-1975303142599947,-1975301877105131],[35184372252676,335675396,22544603239782766,22544604497985104],[35184372252676,335708160,-22544604497985104,-22544603239782766],[35184372252676,17592253284356,1975301885115096,1975303134589986],[35184372252676,17592253317120,-1975303134589986,-1975301885115096],[35184372252676,35184641048580,-1975303142599947,-1975301877105131],[35184372252676,35184641081344,1975301877105131,1975303142599947],[35184372252676,35184707633156,-22544604497985104,-22544603239782766],[35184372252676,35184707665920,22544603239782766,22544604497985104],[35184372252676,52776625242116,-1975303134589986,-1975301885115096],[35184372252676,52776625274880,1975301885115096,1975303134589986],[35184372252680,268992520,11272300798196740,11272303070687196],[35184372252680,269090824,-13247605101666952,-13247603786922062],[35184372252680,269123584,1975301877105131,1975303142599947],[35184372252680,335577096,-24519907512775874,-24519905244697076],[35184372252680,335675400,1975301852392980,1975303167312100],[35184372252680,335708160,22544603239782766,22544604497985104],[35184372252680,17592253186056,11272300807839789,11272303061044145],[35184372252680,17592253284360,-13247605100033866,-13247603788555150],[35184372252680,17592253317120,1975301885115096,1975303134589986],[35184372252680,35184641048584,1975301877105131,1975303142599947],[35184372252680,35184641081344,-13247605101666952,-13247603786922062],[35184372252680,35184641179648,11272300798196740,11272303070687196],[35184372252680,35184707633160,22544603239782766,22544604497985104],[35184372252680,35184707665920,1975301852392980,1975303167312100],[35184372252680,35184707764224,-24519907512775874,-24519905244697076],[35184372252680,52776625242120,1975301885115096,1975303134589986],[35184372252680,52776625274880,-13247605100033866,-13247603788555150],[35184372252680,52776625373184,11272300807839789,11272303061044145],[35184372252800,268992640,-11272303070687196,-11272300798196740],[35184372252800,269090944,11272300798196740,11272303070687196],[35184372252800,35184641081344,11272300798196740,11272303070687196],[35184372252800,35184641179648,-11272303070687196,-11272300798196740],[35184372613120,131200,-11272305322642808,-11272298546241124],[35184372613120,67108992,-1975305698740355,-1975299320964727],[35184372613120,268435464,11272298321696800,11272305547187129],[35184372613120,269615232,-13247606381210832,-13247602507378184],[35184372613120,335675400,1975301819477018,1975303200228061],[35184372613120,335675520,47064508334725266,47064512160515549],[35184372613120,336593024,24519905244697076,24519907512775874],[35184372613120,402784384,24519905280236082,24519907477236870],[35184372613120,469762176,-11272302715781341,-11272301153102595],[35184372613120,17592186044544,1975300055801777,1975304963903298],[35184372613120,17592253284360,-13247605137681374,-13247603750907644],[35184372613120,17592253284480,1975301819477018,1975303200228061],[35184372613120,17592454611072,-11272303149817323,-11272300719066616],[35184372613120,17592455528576,-11272303061044145,-11272300807839789],[35184372613120,17592521588864,-26495210262619762,-26495207514558268],[35184372613120,17592588697728,-13247605066127948,-13247603822461068],[35184372613120,35184372744320,-11272305322642808,-11272298546241124],[35184372613120,35184439722112,-1975305698740355,-1975299320964727],[35184372613120,35184641048584,11272298321696800,11272305547187129],[35184372613120,35184642228352,-13247606381210832,-13247602507378184],[35184372613120,35184708288520,1975301819477018,1975303200228061],[35184372613120,35184708288640,47064508334725266,47064512160515549],[35184372613120,35184709206144,24519905244697076,24519907512775874],[35184372613120,35184775397504,24519905280236082,24519907477236870],[35184372613120,35184842375296,-11272302715781341,-11272301153102595],[35184372613120,52776558657664,1975300055801777,1975304963903298],[35184372613120,52776625897480,-13247605137681374,-13247603750907644],[35184372613120,52776625897600,1975301819477018,1975303200228061],[35184372613120,52776827224192,-11272303149817323,-11272300719066616],[35184372613120,52776828141696,-11272303061044145,-11272300807839789],[35184372613120,52776894201984,-26495210262619762,-26495207514558268],[35184372613120,52776961310848,-13247605066127948,-13247603822461068],[35184372613120,70369012744320,-11272303079253853,-11272300789630083],[35184372613120,70369079722112,-13247605101666952,-13247603786922062],[35184372613120,87961198657664,24519905262899363,24519907494573587],[35184372613120,105553385357440,-11272303079253853,-11272300789630083],[35184372613120,105553452335232,-13247605101666952,-13247603786922062],[35184372613120,123145571270784,24519905262899363,24519907494573587],[35184372613120,36893488147687669888,-11272303138139186,-11272300730744752],[35184372613120,36893488147754647680,-13247605134312055,-13247603754276960],[35184372613120,36893505739873583232,24519905182726150,24519907574746803],[35184372613120,36893523332060283008,-11272303138139186,-11272300730744752],[35184372613120,36893523332127260800,-13247605134312055,-13247603754276960],[35184372613120,36893540924246196352,24519905182726150,24519907574746803],[35184372613192,268435584,24519905182726150,24519907574746803],[35184372613192,268435656,24519905182726150,24519907574746803],[35184372613192,35184641048704,24519905182726150,24519907574746803],[35184372613192,35184641048776,24519905182726150,24519907574746803],[35184372613250,268435464,-22544604548409457,-22544603189358414],[35184372613250,268435520,-1975303193032786,-1975301826672296],[35184372613250,268435594,-22544604548409457,-22544603189358414],[35184372613250,268435650,-1975303193032786,-1975301826672296],[35184372613250,35184641048584,-22544604548409457,-22544603189358414],[35184372613250,35184641048640,-1975303193032786,-1975301826672296],[35184372613250,35184641048714,-22544604548409457,-22544603189358414],[35184372613250,35184641048770,-1975303193032786,-1975301826672296],[35184372613252,268435464,-1975303161294799,-1975301858410281],[35184372613252,268435596,-1975303161294799,-1975301858410281],[35184372613252,35184641048584,-1975303161294799,-1975301858410281],[35184372613252,35184641048716,-1975303161294799,-1975301858410281],[35184372613256,524296,13247602500871785,13247606387717226],[35184372613256,524416,-13247606387717226,-13247602500871785],[35184372613256,268435458,22544603189358414,22544604548409457],[35184372613256,268435460,1975301858410281,1975303161294799],[35184372613256,268435520,-22544604548409457,-22544603189358414],[35184372613256,268435594,22544603189358414,22544604548409457],[35184372613256,268435596,1975301858410281,1975303161294799],[35184372613256,268435656,-22544604548409457,-22544603189358414],[35184372613256,268436480,-1975303161294799,-1975301858410281],[35184372613256,268436616,-1975303161294799,-1975301858410281],[35184372613256,268566528,45089206340998288,45089209134537452],[35184372613256,268566664,49039810952496628,49039814562449270],[35184372613256,269090824,-15222909453017315,-15222904455276782],[35184372613256,269090944,11272300719066616,11272303149817323],[35184372613256,270008328,-11272303061044145,-11272300807839789],[35184372613256,270008448,11272300807839789,11272303061044145],[35184372613256,336068616,-1975303200228061,-1975301819477018],[35184372613256,336068736,1975301819477018,1975303200228061],[35184372613256,403177480,-1975303134589986,-1975301885115096],[35184372613256,403177600,1975301885115096,1975303134589986],[35184372613256,17592455004168,13247603750907644,13247605137681374],[35184372613256,17592455004288,-13247605137681374,-13247603750907644],[35184372613256,35184372088840,-13247606387717226,-13247602500871785],[35184372613256,35184372088960,13247602500871785,13247606387717226],[35184372613256,35184640655368,11272300719066616,11272303149817323],[35184372613256,35184640655488,-15222909453017315,-15222904455276782],[35184372613256,35184641048578,22544603189358414,22544604548409457],[35184372613256,35184641048580,1975301858410281,1975303161294799],[35184372613256,35184641048640,-22544604548409457,-22544603189358414],[35184372613256,35184641048714,22544603189358414,22544604548409457],[35184372613256,35184641048716,1975301858410281,1975303161294799],[35184372613256,35184641048776,-22544604548409457,-22544603189358414],[35184372613256,35184641049600,-1975303161294799,-1975301858410281],[35184372613256,35184641049736,-1975303161294799,-1975301858410281],[35184372613256,35184641179648,49039810952496628,49039814562449270],[35184372613256,35184641179784,45089206340998288,45089209134537452],[35184372613256,35184641572872,11272300807839789,11272303061044145],[35184372613256,35184641572992,-11272303061044145,-11272300807839789],[35184372613256,35184707633160,1975301819477018,1975303200228061],[35184372613256,35184707633280,-1975303200228061,-1975301819477018],[35184372613256,35184774742024,1975301885115096,1975303134589986],[35184372613256,35184774742144,-1975303134589986,-1975301885115096],[35184372613256,52776826568712,-13247605137681374,-13247603750907644],[35184372613256,52776826568832,13247603750907644,13247605137681374],[35184372613256,70369013137416,13247603788555150,13247605100033866],[35184372613256,70369013137536,-13247605100033866,-13247603788555150],[35184372613256,105553384701960,-13247605100033866,-13247603788555150],[35184372613256,105553384702080,13247603788555150,13247605100033866],[35184372613256,36893488147688062984,13247603758912222,13247605129676795],[35184372613256,36893488147688063104,-13247605129676795,-13247603758912222],[35184372613256,36893523332059627528,-13247605129676795,-13247603758912222],[35184372613256,36893523332059627648,13247603758912222,13247605129676795],[35184372613312,268435458,1975301826672296,1975303193032786],[35184372613312,268435464,-1975303193032786,-1975301826672296],[35184372613312,268435650,1975301826672296,1975303193032786],[35184372613312,268435656,-1975303193032786,-1975301826672296],[35184372613312,269090880,-11272303138139186,-11272300730744752],[35184372613312,269090944,11272300730744752,11272303138139186],[35184372613312,336068672,-1975303196554503,-1975301823150576],[35184372613312,336068736,1975301823150576,1975303196554503],[35184372613312,17592455004224,13247603758912222,13247605129676795],[35184372613312,17592455004288,-13247605129676795,-13247603758912222],[35184372613312,35184640655424,11272300730744752,11272303138139186],[35184372613312,35184640655488,-11272303138139186,-11272300730744752],[35184372613312,35184641048578,1975301826672296,1975303193032786],[35184372613312,35184641048584,-1975303193032786,-1975301826672296],[35184372613312,35184641048770,1975301826672296,1975303193032786],[35184372613312,35184641048776,-1975303193032786,-1975301826672296],[35184372613312,35184707633216,1975301823150576,1975303196554503],[35184372613312,35184707633280,-1975303196554503,-1975301823150576],[35184372613312,52776826568768,-13247605129676795,-13247603758912222],[35184372613312,52776826568832,13247603758912222,13247605129676795],[35184372614152,268435584,24519905262899363,24519907494573587],[35184372614152,268436616,24519905262899363,24519907494573587],[35184372614152,35184641048704,24519905262899363,24519907494573587],[35184372614152,35184641049736,24519905262899363,24519907494573587],[35184372614272,268435464,-22544604485800118,-22544603251967752],[35184372614272,268436616,-22544604485800118,-22544603251967752],[35184372614272,269090944,11272300789630083,11272303079253853],[35184372614272,269091840,-11272303079253853,-11272300789630083],[35184372614272,336068736,1975301852392980,1975303167312100],[35184372614272,336069632,-1975303167312100,-1975301852392980],[35184372614272,17592455004288,-13247605100033866,-13247603788555150],[35184372614272,17592455005184,13247603788555150,13247605100033866],[35184372614272,35184640655488,-11272303079253853,-11272300789630083],[35184372614272,35184640656384,11272300789630083,11272303079253853],[35184372614272,35184641048584,-22544604485800118,-22544603251967752],[35184372614272,35184641049736,-22544604485800118,-22544603251967752],[35184372614272,35184707633280,-1975303167312100,-1975301852392980],[35184372614272,35184707634176,1975301852392980,1975303167312100],[35184372614272,52776826568832,13247603788555150,13247605100033866],[35184372614272,52776826569728,-13247605100033866,-13247603788555150],[35184372645896,268566528,-11272303070687196,-11272300798196740],[35184372645896,268599304,-11272303070687196,-11272300798196740],[35184372645896,35184641179648,-11272303070687196,-11272300798196740],[35184372645896,35184641212424,-11272303070687196,-11272300798196740],[35184372646016,268566528,1975301858410281,1975303161294799],[35184372646016,268599424,11272300798196740,11272303070687196],[35184372646016,269123584,-9297000585232538,-9296998263946318],[35184372646016,35184640655488,-9297000585232538,-9296998263946318],[35184372646016,35184641179648,11272300798196740,11272303070687196],[35184372646016,35184641212544,1975301858410281,1975303161294799],[35184372744194,268435464,13247603754276960,13247605134312055],[35184372744194,268566538,13247603754276960,13247605134312055],[35184372744194,35184641048584,13247603754276960,13247605134312055],[35184372744194,35184641179658,13247603754276960,13247605134312055],[35184372744196,268435464,13247603786922062,13247605101666952],[35184372744196,268468224,-1975303142599947,-1975301877105131],[35184372744196,268566540,13247603786922062,13247605101666952],[35184372744196,268599300,-1975303142599947,-1975301877105131],[35184372744196,35184641048584,13247603786922062,13247605101666952],[35184372744196,35184641081344,-1975303142599947,-1975301877105131],[35184372744196,35184641179660,13247603786922062,13247605101666952],[35184372744196,35184641212420,-1975303142599947,-1975301877105131],[35184372744200,524296,-1975304480049416,-1975300539655663],[35184372744200,655360,1975300539655663,1975304480049416],[35184372744200,268435458,-13247605134312055,-13247603754276960],[35184372744200,268435460,-13247605101666952,-13247603786922062],[35184372744200,268435584,-26495210262619762,-26495207514558268],[35184372744200,268468224,13247603786922062,13247605101666952],[35184372744200,268566538,-13247605134312055,-13247603754276960],[35184372744200,268566540,-13247605101666952,-13247603786922062],[35184372744200,268566664,-37767512630799828,-37767509015262141],[35184372744200,268599304,13247603786922062,13247605101666952],[35184372744200,268959880,15222904455276782,15222909453017315],[35184372744200,269090944,-3950606303199992,-3950603736210166],[35184372744200,270008328,24519905244697076,24519907512775874],[35184372744200,270139392,-24519907512775874,-24519905244697076],[35184372744200,335544320,13247603754276960,13247605134312055],[35184372744200,335675400,15222905573753978,15222908334540116],[35184372744200,336068616,-47064512160515549,-47064508334725266],[35184372744200,336199680,45089206348552808,45089209126982928],[35184372744200,403177480,-22544604497985104,-22544603239782766],[35184372744200,403308544,22544603239782766,22544604497985104],[35184372744200,17592253284360,-13247605137681374,-13247603750907644],[35184372744200,17592253677576,11272300719066616,11272303149817323],[35184372744200,17592253808640,1975301819477018,1975303200228061],[35184372744200,17592455004168,-1975303200228061,-1975301819477018],[35184372744200,17592455135232,1975301819477018,1975303200228061],[35184372744200,35184372088840,1975300539655663,1975304480049416],[35184372744200,35184372219904,-1975304480049416,-1975300539655663],[35184372744200,35184640524424,-3950606303199992,-3950603736210166],[35184372744200,35184640655488,15222904455276782,15222909453017315],[35184372744200,35184641048578,-13247605134312055,-13247603754276960],[35184372744200,35184641048580,-13247605101666952,-13247603786922062],[35184372744200,35184641048704,-37767512630799828,-37767509015262141],[35184372744200,35184641081344,13247603786922062,13247605101666952],[35184372744200,35184641179658,-13247605134312055,-13247603754276960],[35184372744200,35184641179660,-13247605101666952,-13247603786922062],[35184372744200,35184641179784,-26495210262619762,-26495207514558268],[35184372744200,35184641212424,13247603786922062,13247605101666952],[35184372744200,35184641572872,-24519907512775874,-24519905244697076],[35184372744200,35184641703936,24519905244697076,24519907512775874],[35184372744200,35184707633160,45089206348552808,45089209126982928],[35184372744200,35184707764224,-47064512160515549,-47064508334725266],[35184372744200,35184708157440,15222905573753978,15222908334540116],[35184372744200,35184708288520,13247603754276960,13247605134312055],[35184372744200,35184774742024,22544603239782766,22544604497985104],[35184372744200,35184774873088,-22544604497985104,-22544603239782766],[35184372744200,52776625242120,1975301819477018,1975303200228061],[35184372744200,52776625373184,11272300719066616,11272303149817323],[35184372744200,52776625766400,-13247605137681374,-13247603750907644],[35184372744200,52776826568712,1975301819477018,1975303200228061],[35184372744200,52776826699776,-1975303200228061,-1975301819477018],[35184372744200,70369013137416,-1975303167312100,-1975301852392980],[35184372744200,70369013268480,1975301852392980,1975303167312100],[35184372744200,105553384701960,1975301852392980,1975303167312100],[35184372744200,105553384833024,-1975303167312100,-1975301852392980],[35184372744200,36893488147688062984,-1975303196554503,-1975301823150576],[35184372744200,36893488147688194048,1975301823150576,1975303196554503],[35184372744200,36893523332059627528,1975301823150576,1975303196554503],[35184372744200,36893523332059758592,-1975303196554503,-1975301823150576],[35184372744256,268435584,-13247605134312055,-13247603754276960],[35184372744256,268566720,-24519907574746803,-24519905182726150],[35184372744256,268959936,11272300730744752,11272303138139186],[35184372744256,35184640655488,11272300730744752,11272303138139186],[35184372744256,35184641048704,-24519907574746803,-24519905182726150],[35184372744256,35184641179840,-13247605134312055,-13247603754276960],[35184372744320,0,18593997808144912,18593999890212800],[35184372744320,131200,-11272305322642808,-11272298546241124],[35184372744320,524416,22544601914969187,22544605822798680],[35184372744320,655360,7321694955032038,7321698874441739],[35184372744320,268435464,-18594001619979184,-18593996078378526],[35184372744320,268435520,13247603754276960,13247605134312055],[35184372744320,268436480,13247603786922062,13247605101666952],[35184372744320,268468224,-1975303161294799,-1975301858410281],[35184372744320,268566664,-11272305547187129,-11272298321696800],[35184372744320,268566720,24519905182726150,24519907574746803],[35184372744320,268567680,24519905262899363,24519907494573587],[35184372744320,268599424,-11272303070687196,-11272300798196740],[35184372744320,268959880,-11272303149817323,-11272300719066616],[35184372744320,268959936,-11272303138139186,-11272300730744752],[35184372744320,268960896,-11272303079253853,-11272300789630083],[35184372744320,269090824,3950603736210166,3950606303199992],[35184372744320,269123584,9296998263946318,9297000585232538],[35184372744320,269484032,-11272302768733624,-11272301100150310],[35184372744320,269615232,-26495209992202640,-26495207784975390],[35184372744320,270008448,-974533465,974533467],[35184372744320,270139392,15222905973445933,15222907934848161],[35184372744320,335544320,-22544604548409457,-22544603189358414],[35184372744320,335675520,16618691985372593,16618700693280031],[35184372744320,336068736,-1975303200228061,-1975301819477018],[35184372744320,336199680,-37188001526996408,-37187993869719008],[35184372744320,402784384,24519905280236082,24519907477236870],[35184372744320,403177600,-1975303134589986,-1975301885115096],[35184372744320,403308544,-22544604497985104,-22544603239782766],[35184372744320,17592253284480,1975301819477018,1975303200228061],[35184372744320,17592253808640,-1975303200228061,-1975301819477018],[35184372744320,17592454611072,-11272303149817323,-11272300719066616],[35184372744320,17592455004288,13247603750907644,13247605137681374],[35184372744320,17592455135232,-1975303200228061,-1975301819477018],[35184372744320,35184372088960,7321694955032038,7321698874441739],[35184372744320,35184372219904,22544601914969187,22544605822798680],[35184372744320,35184372613120,-11272305322642808,-11272298546241124],[35184372744320,35184372744320,18593997808144912,18593999890212800],[35184372744320,35184640524424,3950603736210166,3950606303199992],[35184372744320,35184640557184,9296998263946318,9297000585232538],[35184372744320,35184640655368,-11272303149817323,-11272300719066616],[35184372744320,35184640655424,-11272303138139186,-11272300730744752],[35184372744320,35184640656384,-11272303079253853,-11272300789630083],[35184372744320,35184641048584,-11272305547187129,-11272298321696800],[35184372744320,35184641048640,24519905182726150,24519907574746803],[35184372744320,35184641049600,24519905262899363,24519907494573587],[35184372744320,35184641081344,-11272303070687196,-11272300798196740],[35184372744320,35184641179784,-18594001619979184,-18593996078378526],[35184372744320,35184641179840,13247603754276960,13247605134312055],[35184372744320,35184641180800,13247603786922062,13247605101666952],[35184372744320,35184641212544,-1975303161294799,-1975301858410281],[35184372744320,35184641572992,15222905973445933,15222907934848161],[35184372744320,35184641703936,-974533465,974533467],[35184372744320,35184642097152,-26495209992202640,-26495207784975390],[35184372744320,35184642228352,-11272302768733624,-11272301100150310],[35184372744320,35184707633280,-37188001526996408,-37187993869719008],[35184372744320,35184707764224,-1975303200228061,-1975301819477018],[35184372744320,35184708157440,16618691985372593,16618700693280031],[35184372744320,35184708288640,-22544604548409457,-22544603189358414],[35184372744320,35184774742144,-22544604497985104,-22544603239782766],[35184372744320,35184774873088,-1975303134589986,-1975301885115096],[35184372744320,35184775266304,24519905280236082,24519907477236870],[35184372744320,52776625242240,-1975303200228061,-1975301819477018],[35184372744320,52776625766400,1975301819477018,1975303200228061],[35184372744320,52776826568832,-1975303200228061,-1975301819477018],[35184372744320,52776826699776,13247603750907644,13247605137681374],[35184372744320,52776827092992,-11272303149817323,-11272300719066616],[35184372744320,70369012744320,-11272303079253853,-11272300789630083],[35184372744320,70369013137536,13247603788555150,13247605100033866],[35184372744320,70369013268480,-1975303167312100,-1975301852392980],[35184372744320,105553384702080,-1975303167312100,-1975301852392980],[35184372744320,105553384833024,13247603788555150,13247605100033866],[35184372744320,105553385226240,-11272303079253853,-11272300789630083],[35184372744320,36893488147687669888,-11272303138139186,-11272300730744752],[35184372744320,36893488147688063104,13247603758912222,13247605129676795],[35184372744320,36893488147688194048,-1975303196554503,-1975301823150576],[35184372744320,36893523332059627648,-1975303196554503,-1975301823150576],[35184372744320,36893523332059758592,13247603758912222,13247605129676795],[35184372744320,36893523332060151808,-11272303138139186,-11272300730744752],[35184372745216,268435584,-13247605101666952,-13247603786922062],[35184372745216,268567680,-24519907494573587,-24519905262899363],[35184372745216,268960896,11272300789630083,11272303079253853],[35184372745216,269484032,1975301877105131,1975303142599947],[35184372745216,269616128,26495207784975390,26495209992202640],[35184372745216,270009344,-24519907477236870,-24519905280236082],[35184372745216,35184640655488,11272300789630083,11272303079253853],[35184372745216,35184641048704,-24519907494573587,-24519905262899363],[35184372745216,35184641180800,-13247605101666952,-13247603786922062],[35184372745216,35184641703936,-24519907477236870,-24519905280236082],[35184372745216,35184642097152,26495207784975390,26495209992202640],[35184372745216,35184642229248,1975301877105131,1975303142599947],[35184372776960,268435460,1975301877105131,1975303142599947],[35184372776960,268435464,-1975303142599947,-1975301877105131],[35184372776960,268599300,1975301877105131,1975303142599947],[35184372776960,268599304,-1975303142599947,-1975301877105131],[35184372776960,268992640,9296998263946318,9297000585232538],[35184372776960,269090944,-9297000585232538,-9296998263946318],[35184372776960,35184640557184,-9297000585232538,-9296998263946318],[35184372776960,35184640655488,9296998263946318,9297000585232538],[35184372776960,35184641048580,1975301877105131,1975303142599947],[35184372776960,35184641048584,-1975303142599947,-1975301877105131],[35184372776960,35184641212420,1975301877105131,1975303142599947],[35184372776960,35184641212424,-1975303142599947,-1975301877105131],[35184373137408,269090944,11272301100150310,11272302768733624],[35184373137408,269091840,-1975303142599947,-1975301877105131],[35184373137408,336068736,-1975303167312100,-1975301852392980],[35184373137408,336069632,-22544604497985104,-22544603239782766],[35184373137408,469763072,13247603811716528,13247605076872486],[35184373137408,17592455004288,13247603788555150,13247605100033866],[35184373137408,17592455005184,-1975303134589986,-1975301885115096],[35184373137408,17592588698624,13247603822461068,13247605066127948],[35184373137408,35184642228352,11272301100150310,11272302768733624],[35184373137408,35184642229248,-1975303142599947,-1975301877105131],[35184373137408,35184709206144,-1975303167312100,-1975301852392980],[35184373137408,35184709207040,-22544604497985104,-22544603239782766],[35184373137408,35184842900480,13247603811716528,13247605076872486],[35184373137408,52776828141696,13247603788555150,13247605100033866],[35184373137408,52776828142592,-1975303134589986,-1975301885115096],[35184373137408,52776961836032,13247603822461068,13247605066127948],[35184373137408,87961064440832,-22544604485800118,-22544603251967752],[35184373137408,123145437578240,-22544604485800118,-22544603251967752],[35184373137544,270008328,24519905262899363,24519907494573587],[35184373137544,270008448,-24519907494573587,-24519905262899363],[35184373137544,35184641048584,-24519907494573587,-24519905262899363],[35184373137544,35184641048704,24519905262899363,24519907494573587],[35184373268488,270008328,-11272303070687196,-11272300798196740],[35184373268488,270139392,11272300798196740,11272303070687196],[35184373268488,35184641048584,11272300798196740,11272303070687196],[35184373268488,35184641179648,-11272303070687196,-11272300798196740],[35184373268608,268959744,13247602507378184,13247606381210832],[35184373268608,269090944,26495207784975390,26495209992202640],[35184373268608,270008448,11272300798196740,11272303070687196],[35184373268608,270139392,-24519907494573587,-24519905262899363],[35184373268608,35184641048704,-24519907494573587,-24519905262899363],[35184373268608,35184641179648,11272300798196740,11272303070687196],[35184373268608,35184642097152,26495207784975390,26495209992202640],[35184373268608,35184642228352,13247602507378184,13247606381210832],[35184373269504,269091840,-26495209992202640,-26495207784975390],[35184373269504,270139392,26495207784975390,26495209992202640],[35184373269504,35184641049600,26495207784975390,26495209992202640],[35184373269504,35184642097152,-26495209992202640,-26495207784975390],[35184373661704,268435584,-13247605066127948,-13247603822461068],[35184373661704,268566528,-13247605076872486,-13247603811716528],[35184373661704,268959880,11272300807839789,11272303061044145],[35184373661704,269090824,-24519907512775874,-24519905244697076],[35184373661704,269484168,-24519907494573587,-24519905262899363],[35184373661704,269615112,11272300798196740,11272303070687196],[35184373661704,35184641048704,-24519907494573587,-24519905262899363],[35184373661704,35184641179648,11272300798196740,11272303070687196],[35184373661704,35184641572992,11272300807839789,11272303061044145],[35184373661704,35184641703936,-24519907512775874,-24519905244697076],[35184373661704,35184642097288,-13247605066127948,-13247603822461068],[35184373661704,35184642228232,-13247605076872486,-13247603811716528],[35184373661824,268435464,13247603822461068,13247605066127948],[35184373661824,268566528,9296998646110384,9297000203068470],[35184373661824,268959880,-11272303061044145,-11272300807839789],[35184373661824,269090944,-974533467,974533465],[35184373661824,269484168,24519905262899363,24519907494573587],[35184373661824,269615232,-11272303070687196,-11272300798196740],[35184373661824,270139392,20569300415763760,20569302302299032],[35184373661824,336068736,-1975303167312100,-1975301852392980],[35184373661824,336593024,24519905244697076,24519907512775874],[35184373661824,337117184,-22544604497985104,-22544603239782766],[35184373661824,17592455004288,13247603788555150,13247605100033866],[35184373661824,17592455528576,-11272303061044145,-11272300807839789],[35184373661824,17592456052736,-1975303134589986,-1975301885115096],[35184373661824,35184640655488,20569300415763760,20569302302299032],[35184373661824,35184641048584,24519905262899363,24519907494573587],[35184373661824,35184641179648,-11272303070687196,-11272300798196740],[35184373661824,35184641572872,-11272303061044145,-11272300807839789],[35184373661824,35184641703936,-974533467,974533465],[35184373661824,35184642097288,13247603822461068,13247605066127948],[35184373661824,35184642228352,9296998646110384,9297000203068470],[35184373661824,35184707633280,-22544604497985104,-22544603239782766],[35184373661824,35184708157440,24519905244697076,24519907512775874],[35184373661824,35184708681728,-1975303167312100,-1975301852392980],[35184373661824,52776826568832,-1975303134589986,-1975301885115096],[35184373661824,52776827092992,-11272303061044145,-11272300807839789],[35184373661824,52776827617280,13247603788555150,13247605100033866],[35184373662720,269091840,24519905280236082,24519907477236870],[35184373662720,270139392,-24519907477236870,-24519905280236082],[35184373662720,336069632,-22544604497985104,-22544603239782766],[35184373662720,337117184,22544603239782766,22544604497985104],[35184373662720,17592455005184,-1975303134589986,-1975301885115096],[35184373662720,17592456052736,1975301885115096,1975303134589986],[35184373662720,35184640656384,-24519907477236870,-24519905280236082],[35184373662720,35184641703936,24519905280236082,24519907477236870],[35184373662720,35184707634176,22544603239782766,22544604497985104],[35184373662720,35184708681728,-22544604497985104,-22544603239782766],[35184373662720,52776826569728,1975301885115096,1975303134589986],[35184373662720,52776827617280,-1975303134589986,-1975301885115096],[35184373792768,268435464,13247603811716528,13247605076872486],[35184373792768,268435584,-11272302715781341,-11272301153102595],[35184373792768,268436480,-1975303142599947,-1975301877105131],[35184373792768,269090824,24519905244697076,24519907512775874],[35184373792768,269090944,-15222907934848161,-15222905973445933],[35184373792768,269615112,-11272303070687196,-11272300798196740],[35184373792768,269615232,24519905262899363,24519907494573587],[35184373792768,269616128,-26495209992202640,-26495207784975390],[35184373792768,270008448,-20569302302299032,-20569300415763760],[35184373792768,270009344,24519905280236082,24519907477236870],[35184373792768,35184640655488,-20569302302299032,-20569300415763760],[35184373792768,35184640656384,24519905280236082,24519907477236870],[35184373792768,35184641048584,-11272303070687196,-11272300798196740],[35184373792768,35184641048704,24519905262899363,24519907494573587],[35184373792768,35184641049600,-26495209992202640,-26495207784975390],[35184373792768,35184641572872,24519905244697076,24519907512775874],[35184373792768,35184641572992,-15222907934848161,-15222905973445933],[35184373792768,35184642228232,13247603811716528,13247605076872486],[35184373792768,35184642228352,-11272302715781341,-11272301153102595],[35184373792768,35184642229248,-1975303142599947,-1975301877105131],[35184439197696,524416,-9296999945106400,-9296998904072456],[35184439197696,268435464,-1975304480049416,-1975300539655663],[35184439197696,268435584,-11272305322642808,-11272298546241124],[35184439197696,269090824,-13247605134312055,-13247603754276960],[35184439197696,269090944,22544603189358414,22544604548409457],[35184439197696,17592186044424,13247602500871785,13247606387717226],[35184439197696,35184439722112,-9296999945106400,-9296998904072456],[35184439197696,35184707633160,-1975304480049416,-1975300539655663],[35184439197696,35184707633280,-11272305322642808,-11272298546241124],[35184439197696,35184708288520,-13247605134312055,-13247603754276960],[35184439197696,35184708288640,22544603189358414,22544604548409457],[35184439197696,52776625242120,13247602500871785,13247606387717226],[35184439230472,268566528,24519905244697076,24519907512775874],[35184439230472,268599304,24519905244697076,24519907512775874],[35184439230472,17592186175488,-11272303061044145,-11272300807839789],[35184439230472,17592186208264,-11272303061044145,-11272300807839789],[35184439230472,35184707764224,24519905244697076,24519907512775874],[35184439230472,35184707797000,24519905244697076,24519907512775874],[35184439230472,52776625373184,-11272303061044145,-11272300807839789],[35184439230472,52776625405960,-11272303061044145,-11272300807839789],[35184439328770,268435464,-1975303196554503,-1975301823150576],[35184439328770,268566538,-1975303196554503,-1975301823150576],[35184439328770,17592186044424,13247603758912222,13247605129676795],[35184439328770,17592186175498,13247603758912222,13247605129676795],[35184439328770,35184707633160,-1975303196554503,-1975301823150576],[35184439328770,35184707764234,-1975303196554503,-1975301823150576],[35184439328770,52776625242120,13247603758912222,13247605129676795],[35184439328770,52776625373194,13247603758912222,13247605129676795],[35184439328772,268435464,-1975303167312100,-1975301852392980],[35184439328772,268468224,-22544604497985104,-22544603239782766],[35184439328772,268566540,-1975303167312100,-1975301852392980],[35184439328772,268599300,-22544604497985104,-22544603239782766],[35184439328772,17592186044424,13247603788555150,13247605100033866],[35184439328772,17592186077184,-1975303134589986,-1975301885115096],[35184439328772,17592186175500,13247603788555150,13247605100033866],[35184439328772,17592186208260,-1975303134589986,-1975301885115096],[35184439328772,35184707633160,-1975303167312100,-1975301852392980],[35184439328772,35184707665920,-22544604497985104,-22544603239782766],[35184439328772,35184707764236,-1975303167312100,-1975301852392980],[35184439328772,35184707796996,-22544604497985104,-22544603239782766],[35184439328772,52776625242120,13247603788555150,13247605100033866],[35184439328772,52776625274880,-1975303134589986,-1975301885115096],[35184439328772,52776625373196,13247603788555150,13247605100033866],[35184439328772,52776625405956,-1975303134589986,-1975301885115096],[35184439328776,67108872,11272298321696800,11272305547187129],[35184439328776,67239936,-11272305547187129,-11272298321696800],[35184439328776,268435458,1975301823150576,1975303196554503],[35184439328776,268435460,1975301852392980,1975303167312100],[35184439328776,268435584,1975301819477018,1975303200228061],[35184439328776,268468224,-1975303167312100,-1975301852392980],[35184439328776,268566538,1975301823150576,1975303196554503],[35184439328776,268566540,1975301852392980,1975303167312100],[35184439328776,268566664,1975301819477018,1975303200228061],[35184439328776,268599304,-1975303167312100,-1975301852392980],[35184439328776,268959744,-1975303200228061,-1975301819477018],[35184439328776,269090824,-15222908334540116,-15222905573753978],[35184439328776,336068616,39742811412341918,39742815253425129],[35184439328776,336199680,-26495210286978712,-26495207490199320],[35184439328776,469762056,-1975303142599947,-1975301877105131],[35184439328776,469893120,1975301877105131,1975303142599947],[35184439328776,1409286152,-11272303070687196,-11272300798196740],[35184439328776,1409417216,11272300798196740,11272303070687196],[35184439328776,17592186044418,-13247605129676795,-13247603758912222],[35184439328776,17592186044420,-13247605100033866,-13247603788555150],[35184439328776,17592186044544,-13247605137681374,-13247603750907644],[35184439328776,17592186077184,13247603788555150,13247605100033866],[35184439328776,17592186175498,-13247605129676795,-13247603758912222],[35184439328776,17592186175500,-13247605100033866,-13247603788555150],[35184439328776,17592186175624,-13247605137681374,-13247603750907644],[35184439328776,17592186208264,13247603788555150,13247605100033866],[35184439328776,17592186568704,13247603750907644,13247605137681374],[35184439328776,17592186699784,13247603750907644,13247605137681374],[35184439328776,17592521588744,-11272305547187129,-11272298321696800],[35184439328776,17592521719808,11272298321696800,11272305547187129],[35184439328776,17593326895112,24519905262899363,24519907494573587],[35184439328776,17593327026176,-24519907494573587,-24519905262899363],[35184439328776,35184372088840,-11272305547187129,-11272298321696800],[35184439328776,35184372219904,11272298321696800,11272305547187129],[35184439328776,35184641048584,-26495210286978712,-26495207490199320],[35184439328776,35184641179648,39742811412341918,39742815253425129],[35184439328776,35184707633154,1975301823150576,1975303196554503],[35184439328776,35184707633156,1975301852392980,1975303167312100],[35184439328776,35184707633280,1975301819477018,1975303200228061],[35184439328776,35184707665920,-1975303167312100,-1975301852392980],[35184439328776,35184707764234,1975301823150576,1975303196554503],[35184439328776,35184707764236,1975301852392980,1975303167312100],[35184439328776,35184707764360,1975301819477018,1975303200228061],[35184439328776,35184707797000,-1975303167312100,-1975301852392980],[35184439328776,35184708157440,-15222908334540116,-15222905573753978],[35184439328776,35184708288520,-1975303200228061,-1975301819477018],[35184439328776,35184774742024,1975301877105131,1975303142599947],[35184439328776,35184774873088,-1975303142599947,-1975301877105131],[35184439328776,35185714266120,11272300798196740,11272303070687196],[35184439328776,35185714397184,-11272303070687196,-11272300798196740],[35184439328776,52776625242114,-13247605129676795,-13247603758912222],[35184439328776,52776625242116,-13247605100033866,-13247603788555150],[35184439328776,52776625242240,-13247605137681374,-13247603750907644],[35184439328776,52776625274880,13247603788555150,13247605100033866],[35184439328776,52776625373194,-13247605129676795,-13247603758912222],[35184439328776,52776625373196,-13247605100033866,-13247603788555150],[35184439328776,52776625373320,-13247605137681374,-13247603750907644],[35184439328776,52776625405960,13247603788555150,13247605100033866],[35184439328776,52776625766400,13247603750907644,13247605137681374],[35184439328776,52776625897480,13247603750907644,13247605137681374],[35184439328776,52776826568712,11272298321696800,11272305547187129],[35184439328776,52776826699776,-11272305547187129,-11272298321696800],[35184439328776,52777631875080,-24519907494573587,-24519905262899363],[35184439328776,52777632006144,24519905262899363,24519907494573587],[35184439328776,70369079721992,13247603786922062,13247605101666952],[35184439328776,70369079853056,-13247605101666952,-13247603786922062],[35184439328776,87960997330952,-1975303161294799,-1975301858410281],[35184439328776,87960997462016,1975301858410281,1975303161294799],[35184439328776,105553384701960,-13247605101666952,-13247603786922062],[35184439328776,105553384833024,13247603786922062,13247605101666952],[35184439328776,123145302310920,1975301858410281,1975303161294799],[35184439328776,123145302441984,-1975303161294799,-1975301858410281],[35184439328776,158329741508616,-22544604485800118,-22544603251967752],[35184439328776,158329741639680,22544603251967752,22544604485800118],[35184439328776,193514046488584,22544603251967752,22544604485800118],[35184439328776,193514046619648,-22544604485800118,-22544603251967752],[35184439328776,4611703610680541192,-1975303193032786,-1975301826672296],[35184439328776,4611703610680672256,1975301826672296,1975303193032786],[35184439328776,4611738794985521160,1975301826672296,1975303193032786],[35184439328776,4611738794985652224,-1975303193032786,-1975301826672296],[35184439328776,36893488147754647560,13247603754276960,13247605134312055],[35184439328776,36893488147754778624,-13247605134312055,-13247603754276960],[35184439328776,36893505739672256520,-22544604548409457,-22544603189358414],[35184439328776,36893505739672387584,22544603189358414,22544604548409457],[35184439328776,36893523332059627528,-13247605134312055,-13247603754276960],[35184439328776,36893523332059758592,13247603754276960,13247605134312055],[35184439328776,36893540923977236488,22544603189358414,22544604548409457],[35184439328776,36893540923977367552,-22544604548409457,-22544603189358414],[35184439328896,268435464,-1975303200228061,-1975301819477018],[35184439328896,268566664,-1975303200228061,-1975301819477018],[35184439328896,268959744,-35792211106366460,-35792205519990416],[35184439328896,269090944,17198204228118056,17198214699881130],[35184439328896,336068736,-52990420219871546,-52990415334484516],[35184439328896,17592186044424,13247603750907644,13247605137681374],[35184439328896,17592186175624,13247603750907644,13247605137681374],[35184439328896,17592186568704,-1975303200228061,-1975301819477018],[35184439328896,17592186699904,-1975303200228061,-1975301819477018],[35184439328896,35184641179648,-52990420219871546,-52990415334484516],[35184439328896,35184707633160,-1975303200228061,-1975301819477018],[35184439328896,35184707764360,-1975303200228061,-1975301819477018],[35184439328896,35184708157440,17198204228118056,17198214699881130],[35184439328896,35184708288640,-35792211106366460,-35792205519990416],[35184439328896,52776625242120,13247603750907644,13247605137681374],[35184439328896,52776625373320,13247603750907644,13247605137681374],[35184439328896,52776625766400,-1975303200228061,-1975301819477018],[35184439328896,52776625897600,-1975303200228061,-1975301819477018],[35184439361536,268435460,22544603239782766,22544604497985104],[35184439361536,268435464,-22544604497985104,-22544603239782766],[35184439361536,268599300,22544603239782766,22544604497985104],[35184439361536,268599304,-22544604497985104,-22544603239782766],[35184439361536,17592186044420,1975301885115096,1975303134589986],[35184439361536,17592186044424,-1975303134589986,-1975301885115096],[35184439361536,17592186208260,1975301885115096,1975303134589986],[35184439361536,17592186208264,-1975303134589986,-1975301885115096],[35184439361536,35184707633156,22544603239782766,22544604497985104],[35184439361536,35184707633160,-22544604497985104,-22544603239782766],[35184439361536,35184707796996,22544603239782766,22544604497985104],[35184439361536,35184707797000,-22544604497985104,-22544603239782766],[35184439361536,52776625242116,1975301885115096,1975303134589986],[35184439361536,52776625242120,-1975303134589986,-1975301885115096],[35184439361536,52776625405956,1975301885115096,1975303134589986],[35184439361536,52776625405960,-1975303134589986,-1975301885115096],[35184439721992,268435584,-11272303149817323,-11272300719066616],[35184439721992,268566528,-3950609898973822,-3950600140436346],[35184439721992,268959880,-11272303149817323,-11272300719066616],[35184439721992,269090824,49039810320897724,49039815194048170],[35184439721992,335675400,-52990420219871546,-52990415334484516],[35184439721992,17592186175488,-11272303149817323,-11272300719066616],[35184439721992,17592186699784,-11272303149817323,-11272300719066616],[35184439721992,35184641179648,-52990420219871546,-52990415334484516],[35184439721992,35184707633280,-11272303149817323,-11272300719066616],[35184439721992,35184707764224,49039810320897724,49039815194048170],[35184439721992,35184708157576,-11272303149817323,-11272300719066616],[35184439721992,35184708288520,-3950609898973822,-3950600140436346],[35184439721992,52776625373184,-11272303149817323,-11272300719066616],[35184439721992,52776625897480,-11272303149817323,-11272300719066616],[35184439722048,268435584,-11272303138139186,-11272300730744752],[35184439722048,268959936,-11272303138139186,-11272300730744752],[35184439722048,35184707633280,-11272303138139186,-11272300730744752],[35184439722048,35184708157632,-11272303138139186,-11272300730744752],[35184439722112,0,-18593999890212800,-18593997808144912],[35184439722112,524416,-9296999945106400,-9296998904072456],[35184439722112,67108992,-1975305698740355,-1975299320964727],[35184439722112,67633152,-7321700093132675,-7321693736341099],[35184439722112,268435464,11272300719066616,11272303149817323],[35184439722112,268435520,11272300730744752,11272303138139186],[35184439722112,268436480,11272300789630083,11272303079253853],[35184439722112,268566528,11272300039541091,11272303829342841],[35184439722112,268959880,11272300719066616,11272303149817323],[35184439722112,268959936,11272300730744752,11272303138139186],[35184439722112,268960896,11272300789630083,11272303079253853],[35184439722112,269090944,-11272303149817323,-11272300719066616],[35184439722112,269484032,-11272303079253853,-11272300789630083],[35184439722112,270008448,-11272303079253853,-11272300789630083],[35184439722112,335675520,30445811467235518,30445816349352673],[35184439722112,336199680,-7901212478833800,-7901207599986520],[35184439722112,469762176,-20569302302299032,-20569300415763760],[35184439722112,470286336,20569300415763760,20569302302299032],[35184439722112,1409286272,9296998263946318,9297000585232538],[35184439722112,1409810432,-9297000585232538,-9296998263946318],[35184439722112,17592521588864,15222904455276782,15222909453017315],[35184439722112,17592522113024,-15222909453017315,-15222904455276782],[35184439722112,35184372088960,-7321700093132675,-7321693736341099],[35184439722112,35184372613120,-1975305698740355,-1975299320964727],[35184439722112,35184439197696,-9296999945106400,-9296998904072456],[35184439722112,35184439722112,-18593999890212800,-18593997808144912],[35184439722112,35184640655488,-7901212478833800,-7901207599986520],[35184439722112,35184641179648,30445811467235518,30445816349352673],[35184439722112,35184707633160,11272300719066616,11272303149817323],[35184439722112,35184707633216,11272300730744752,11272303138139186],[35184439722112,35184707634176,11272300789630083,11272303079253853],[35184439722112,35184707764224,-11272303149817323,-11272300719066616],[35184439722112,35184708157576,11272300719066616,11272303149817323],[35184439722112,35184708157632,11272300730744752,11272303138139186],[35184439722112,35184708158592,11272300789630083,11272303079253853],[35184439722112,35184708288640,11272300039541091,11272303829342841],[35184439722112,35184708681728,-11272303079253853,-11272300789630083],[35184439722112,35184709206144,-11272303079253853,-11272300789630083],[35184439722112,35184774742144,20569300415763760,20569302302299032],[35184439722112,35184775266304,-20569302302299032,-20569300415763760],[35184439722112,35185714266240,-9297000585232538,-9296998263946318],[35184439722112,35185714790400,9296998263946318,9297000585232538],[35184439722112,52776826568832,-15222909453017315,-15222904455276782],[35184439722112,52776827092992,15222904455276782,15222909453017315],[35184439722112,70369079722112,11272300789630083,11272303079253853],[35184439722112,70369080246272,-11272303079253853,-11272300789630083],[35184439722112,105553384702080,-11272303079253853,-11272300789630083],[35184439722112,105553385226240,11272300789630083,11272303079253853],[35184439722112,36893488147754647680,11272300730744752,11272303138139186],[35184439722112,36893488147755171840,-11272303138139186,-11272300730744752],[35184439722112,36893523332059627648,-11272303138139186,-11272300730744752],[35184439722112,36893523332060151808,11272300730744752,11272303138139186],[35184439723008,268435584,-11272303079253853,-11272300789630083],[35184439723008,268960896,-11272303079253853,-11272300789630083],[35184439723008,269484032,24519905280236082,24519907477236870],[35184439723008,270009344,24519905280236082,24519907477236870],[35184439723008,35184707633280,-11272303079253853,-11272300789630083],[35184439723008,35184708158592,-11272303079253853,-11272300789630083],[35184439723008,35184708681728,24519905280236082,24519907477236870],[35184439723008,35184709207040,24519905280236082,24519907477236870],[35184439853056,268435464,-7321700748173631,-7321693081300137],[35184439853056,268435584,47064508334725266,47064512160515549],[35184439853056,269090824,-47064512160515549,-47064508334725266],[35184439853056,269090944,16618691985372593,16618700693280031],[35184439853056,335675400,39742811412341918,39742815253425129],[35184439853056,336068736,30445811467235518,30445816349352673],[35184439853056,17592186044424,-1975303200228061,-1975301819477018],[35184439853056,17592186044544,1975301819477018,1975303200228061],[35184439853056,17592186699784,-1975303200228061,-1975301819477018],[35184439853056,17592186699904,1975301819477018,1975303200228061],[35184439853056,35184640655488,30445811467235518,30445816349352673],[35184439853056,35184641048584,39742811412341918,39742815253425129],[35184439853056,35184707633160,-47064512160515549,-47064508334725266],[35184439853056,35184707633280,16618691985372593,16618700693280031],[35184439853056,35184708288520,-7321700748173631,-7321693081300137],[35184439853056,35184708288640,47064508334725266,47064512160515549],[35184439853056,52776625242120,-1975303200228061,-1975301819477018],[35184439853056,52776625242240,1975301819477018,1975303200228061],[35184439853056,52776625897480,-1975303200228061,-1975301819477018],[35184439853056,52776625897600,1975301819477018,1975303200228061],[35184440246400,268959744,-13247606381210832,-13247602507378184],[35184440246400,270008448,-13247606381210832,-13247602507378184],[35184440246400,35184708157440,-13247606381210832,-13247602507378184],[35184440246400,35184709206144,-13247606381210832,-13247602507378184],[35184440770560,268435584,24519905280236082,24519907477236870],[35184440770560,268436480,-24519907477236870,-24519905280236082],[35184440770560,270008448,24519905280236082,24519907477236870],[35184440770560,270009344,-24519907477236870,-24519905280236082],[35184440770560,35184707633280,24519905280236082,24519907477236870],[35184440770560,35184707634176,-24519907477236870,-24519905280236082],[35184440770560,35184709206144,24519905280236082,24519907477236870],[35184440770560,35184709207040,-24519907477236870,-24519905280236082],[35184506437760,268959744,-13247606381210832,-13247602507378184],[35184506437760,269090944,-13247606381210832,-13247602507378184],[35184506437760,35184775266304,-13247606381210832,-13247602507378184],[35184506437760,35184775397504,-13247606381210832,-13247602507378184],[35184506830856,268435584,-11272303061044145,-11272300807839789],[35184506830856,268566528,24519905244697076,24519907512775874],[35184506830856,268959880,-11272303061044145,-11272300807839789],[35184506830856,269090824,24519905244697076,24519907512775874],[35184506830856,35184774742144,-11272303061044145,-11272300807839789],[35184506830856,35184774873088,24519905244697076,24519907512775874],[35184506830856,35184775266440,-11272303061044145,-11272300807839789],[35184506830856,35184775397384,24519905244697076,24519907512775874],[35184506830976,268435464,11272300807839789,11272303061044145],[35184506830976,268566528,-11272303061044145,-11272300807839789],[35184506830976,268959880,11272300807839789,11272303061044145],[35184506830976,269090944,-11272303061044145,-11272300807839789],[35184506830976,469762176,-15222907934848161,-15222905973445933],[35184506830976,470286336,15222905973445933,15222907934848161],[35184506830976,17592588697728,11272300807839789,11272303061044145],[35184506830976,17592589221888,-11272303061044145,-11272300807839789],[35184506830976,35184707633280,15222905973445933,15222907934848161],[35184506830976,35184708157440,-15222907934848161,-15222905973445933],[35184506830976,35184774742024,11272300807839789,11272303061044145],[35184506830976,35184774873088,-11272303061044145,-11272300807839789],[35184506830976,35184775266440,11272300807839789,11272303061044145],[35184506830976,35184775397504,-11272303061044145,-11272300807839789],[35184506830976,52776826568832,-11272303061044145,-11272300807839789],[35184506830976,52776827092992,11272300807839789,11272303061044145],[35184506961920,268435464,-24519907512775874,-24519905244697076],[35184506961920,268435584,24519905244697076,24519907512775874],[35184506961920,269090824,-24519907512775874,-24519905244697076],[35184506961920,269090944,24519905244697076,24519907512775874],[35184506961920,35184774742024,-24519907512775874,-24519905244697076],[35184506961920,35184774742144,24519905244697076,24519907512775874],[35184506961920,35184775397384,-24519907512775874,-24519905244697076],[35184506961920,35184775397504,24519905244697076,24519907512775874],[35184507356160,469763072,13247603811716528,13247605076872486],[35184507356160,470810624,-13247605076872486,-13247603811716528],[35184507356160,17592588698624,13247603822461068,13247605066127948],[35184507356160,17592589746176,-13247605066127948,-13247603822461068],[35184507356160,35184707634176,-13247605076872486,-13247603811716528],[35184507356160,35184708681728,13247603811716528,13247605076872486],[35184507356160,52776826569728,-13247605066127948,-13247603822461068],[35184507356160,52776827617280,13247603822461068,13247605066127948],[35184507356160,87961064440832,-22544604485800118,-22544603251967752],[35184507356160,87961065488384,22544603251967752,22544604485800118],[35184507356160,123145302311936,22544603251967752,22544604485800118],[35184507356160,123145303359488,-22544604485800118,-22544603251967752],[35184573415432,268566528,-11272303070687196,-11272300798196740],[35184573415432,335675400,-11272303070687196,-11272300798196740],[35184573415432,35184774873088,-11272303070687196,-11272300798196740],[35184573415432,35184841981960,-11272303070687196,-11272300798196740],[35184573415552,268959744,13247602507378184,13247606381210832],[35184573415552,336068736,11272300798196740,11272303070687196],[35184573415552,403177600,26495207784975390,26495209992202640],[35184573415552,470286336,-24519907494573587,-24519905262899363],[35184573415552,35184641048704,-24519907494573587,-24519905262899363],[35184573415552,35184708157440,26495207784975390,26495209992202640],[35184573415552,35184775266304,11272300798196740,11272303070687196],[35184573415552,35184842375296,13247602507378184,13247606381210832],[35184573416448,269484032,-26495209992202640,-26495207784975390],[35184573416448,403702784,-26495209992202640,-26495207784975390],[35184573416448,35184708681728,-26495209992202640,-26495207784975390],[35184573416448,35184842900480,-26495209992202640,-26495207784975390],[35184573546496,268435464,11272300798196740,11272303070687196],[35184573546496,335675400,11272300798196740,11272303070687196],[35184573546496,35184774742024,11272300798196740,11272303070687196],[35184573546496,35184841981960,11272300798196740,11272303070687196],[35184573939712,268435584,-13247606381210832,-13247602507378184],[35184573939712,336068736,-11272303070687196,-11272300798196740],[35184573939712,403177600,-26495209992202640,-26495207784975390],[35184573939712,469762176,24519905262899363,24519907494573587],[35184573939712,35184641048704,24519905262899363,24519907494573587],[35184573939712,35184707633280,-26495209992202640,-26495207784975390],[35184573939712,35184774742144,-11272303070687196,-11272300798196740],[35184573939712,35184842375296,-13247606381210832,-13247602507378184],[35184574464000,268436480,26495207784975390,26495209992202640],[35184574464000,403702784,26495207784975390,26495209992202640],[35184574464000,35184707634176,26495207784975390,26495209992202640],[35184574464000,35184842900480,26495207784975390,26495209992202640],[35184640524288,131200,-9296999945106400,-9296998904072456],[35184640524288,67108992,22544601914969187,22544605822798680],[35184640524288,17592186044544,-13247606387717226,-13247602500871785],[35184640524288,35184640655488,-9296999945106400,-9296998904072456],[35184640524288,35184707633280,22544601914969187,22544605822798680],[35184640524288,52776826568832,-13247606387717226,-13247602500871785],[35184640524424,268435464,-1975304963903298,-1975300055801777],[35184640524424,268435584,1975300055801777,1975304963903298],[35184640524424,269090824,3950603736210166,3950606303199992],[35184640524424,269090944,-3950606303199992,-3950603736210166],[35184640524424,35184372088840,1975300055801777,1975304963903298],[35184640524424,35184372088960,-1975304963903298,-1975300055801777],[35184640524424,35184372744200,-3950606303199992,-3950603736210166],[35184640524424,35184372744320,3950603736210166,3950606303199992],[35184640557184,269090944,-9297000585232538,-9296998263946318],[35184640557184,269123584,9296998263946318,9297000585232538],[35184640557184,35184372744320,9296998263946318,9297000585232538],[35184640557184,35184372776960,-9297000585232538,-9296998263946318],[35184640655368,268435464,-3950609898973822,-3950600140436346],[35184640655368,268566528,3950600140436346,3950609898973822],[35184640655368,268959880,-11272303149817323,-11272300719066616],[35184640655368,269090944,11272300719066616,11272303149817323],[35184640655368,17592521588744,-11272303149817323,-11272300719066616],[35184640655368,17592521719808,11272300719066616,11272303149817323],[35184640655368,35184372088840,3950600140436346,3950609898973822],[35184640655368,35184372219904,-3950609898973822,-3950600140436346],[35184640655368,35184372613256,11272300719066616,11272303149817323],[35184640655368,35184372744320,-11272303149817323,-11272300719066616],[35184640655368,52776625242120,11272300719066616,11272303149817323],[35184640655368,52776625373184,-11272303149817323,-11272300719066616],[35184640655424,268959936,-11272303138139186,-11272300730744752],[35184640655424,269090944,11272300730744752,11272303138139186],[35184640655424,35184372613312,11272300730744752,11272303138139186],[35184640655424,35184372744320,-11272303138139186,-11272300730744752],[35184640655488,0,-18593999890212800,-18593997808144912],[35184640655488,131200,-9296999945106400,-9296998904072456],[35184640655488,67633152,11272300039541091,11272303829342841],[35184640655488,67764352,-11272303149817323,-11272300719066616],[35184640655488,134742016,-11272303079253853,-11272300789630083],[35184640655488,134873216,-11272303079253853,-11272300789630083],[35184640655488,268435584,-1975305698740355,-1975299320964727],[35184640655488,268566528,-7321700093132675,-7321693736341099],[35184640655488,268959880,15222904455276782,15222909453017315],[35184640655488,268959936,11272300730744752,11272303138139186],[35184640655488,268960896,11272300789630083,11272303079253853],[35184640655488,268992640,9296998263946318,9297000585232538],[35184640655488,269090824,-15222909453017315,-15222904455276782],[35184640655488,269090880,-11272303138139186,-11272300730744752],[35184640655488,269091840,-11272303079253853,-11272300789630083],[35184640655488,269123584,-9297000585232538,-9296998263946318],[35184640655488,270008448,-20569302302299032,-20569300415763760],[35184640655488,270139392,20569300415763760,20569302302299032],[35184640655488,336068736,30445811467235518,30445816349352673],[35184640655488,336199680,-7901212478833800,-7901207599986520],[35184640655488,17592186568704,11272300719066616,11272303149817323],[35184640655488,17592186699904,11272300719066616,11272303149817323],[35184640655488,35184372088960,-7321700093132675,-7321693736341099],[35184640655488,35184372219904,-1975305698740355,-1975299320964727],[35184640655488,35184372613256,-15222909453017315,-15222904455276782],[35184640655488,35184372613312,-11272303138139186,-11272300730744752],[35184640655488,35184372614272,-11272303079253853,-11272300789630083],[35184640655488,35184372646016,-9297000585232538,-9296998263946318],[35184640655488,35184372744200,15222904455276782,15222909453017315],[35184640655488,35184372744256,11272300730744752,11272303138139186],[35184640655488,35184372745216,11272300789630083,11272303079253853],[35184640655488,35184372776960,9296998263946318,9297000585232538],[35184640655488,35184373661824,20569300415763760,20569302302299032],[35184640655488,35184373792768,-20569302302299032,-20569300415763760],[35184640655488,35184439722112,-7901212478833800,-7901207599986520],[35184640655488,35184439853056,30445811467235518,30445816349352673],[35184640655488,35184640524288,-9296999945106400,-9296998904072456],[35184640655488,35184640655488,-18593999890212800,-18593997808144912],[35184640655488,35184708157440,-11272303149817323,-11272300719066616],[35184640655488,35184708288640,11272300039541091,11272303829342841],[35184640655488,35184775266304,-11272303079253853,-11272300789630083],[35184640655488,35184775397504,-11272303079253853,-11272300789630083],[35184640655488,52776827092992,11272300719066616,11272303149817323],[35184640655488,52776827224192,11272300719066616,11272303149817323],[35184640655488,70368744701952,11272300789630083,11272303079253853],[35184640655488,70368744833152,11272300789630083,11272303079253853],[35184640655488,105553385226240,11272300789630083,11272303079253853],[35184640655488,105553385357440,11272300789630083,11272303079253853],[35184640655488,36893488147419627520,11272300730744752,11272303138139186],[35184640655488,36893488147419758720,11272300730744752,11272303138139186],[35184640655488,36893523332060151808,11272300730744752,11272303138139186],[35184640655488,36893523332060283008,11272300730744752,11272303138139186],[35184640656384,268960896,-11272303079253853,-11272300789630083],[35184640656384,269090944,11272300789630083,11272303079253853],[35184640656384,270009344,24519905280236082,24519907477236870],[35184640656384,270139392,-24519907477236870,-24519905280236082],[35184640656384,35184372614272,11272300789630083,11272303079253853],[35184640656384,35184372744320,-11272303079253853,-11272300789630083],[35184640656384,35184373662720,-24519907477236870,-24519905280236082],[35184640656384,35184373792768,24519905280236082,24519907477236870],[35184641048578,268435594,22544603189358414,22544604548409457],[35184641048578,268435650,1975301826672296,1975303193032786],[35184641048578,268566538,-13247605134312055,-13247603754276960],[35184641048578,268959880,-22544604548409457,-22544603189358414],[35184641048578,268959936,-1975303193032786,-1975301826672296],[35184641048578,269090824,13247603754276960,13247605134312055],[35184641048578,35184372088970,-22544604548409457,-22544603189358414],[35184641048578,35184372089026,-1975303193032786,-1975301826672296],[35184641048578,35184372219914,13247603754276960,13247605134312055],[35184641048578,35184372613256,22544603189358414,22544604548409457],[35184641048578,35184372613312,1975301826672296,1975303193032786],[35184641048578,35184372744200,-13247605134312055,-13247603754276960],[35184641048580,268435596,1975301858410281,1975303161294799],[35184641048580,268566540,-13247605101666952,-13247603786922062],[35184641048580,268599300,1975301877105131,1975303142599947],[35184641048580,268959880,-1975303161294799,-1975301858410281],[35184641048580,269090824,13247603786922062,13247605101666952],[35184641048580,269123584,-1975303142599947,-1975301877105131],[35184641048580,35184372088972,-1975303161294799,-1975301858410281],[35184641048580,35184372219916,13247603786922062,13247605101666952],[35184641048580,35184372252676,-1975303142599947,-1975301877105131],[35184641048580,35184372613256,1975301858410281,1975303161294799],[35184641048580,35184372744200,-13247605101666952,-13247603786922062],[35184641048580,35184372776960,1975301877105131,1975303142599947],[35184641048584,67108992,13247603750907644,13247605137681374],[35184641048584,67239936,-1975303200228061,-1975301819477018],[35184641048584,67633288,13247603750907644,13247605137681374],[35184641048584,67764232,-15222908334540116,-15222905573753978],[35184641048584,134217856,13247603788555150,13247605100033866],[35184641048584,134348800,-1975303167312100,-1975301852392980],[35184641048584,134742152,13247603788555150,13247605100033866],[35184641048584,134873096,-1975303167312100,-1975301852392980],[35184641048584,268435464,11272298321696800,11272305547187129],[35184641048584,268435594,-22544604548409457,-22544603189358414],[35184641048584,268435596,-1975303161294799,-1975301858410281],[35184641048584,268435656,-1975303193032786,-1975301826672296],[35184641048584,268436616,-22544604485800118,-22544603251967752],[35184641048584,268566538,13247603754276960,13247605134312055],[35184641048584,268566540,13247603786922062,13247605101666952],[35184641048584,268566664,-11272305547187129,-11272298321696800],[35184641048584,268599304,-1975303142599947,-1975301877105131],[35184641048584,268959744,-11272305547187129,-11272298321696800],[35184641048584,268959874,22544603189358414,22544604548409457],[35184641048584,268959876,1975301858410281,1975303161294799],[35184641048584,268959936,1975301826672296,1975303193032786],[35184641048584,268960896,22544603251967752,22544604485800118],[35184641048584,269090818,-13247605134312055,-13247603754276960],[35184641048584,269090820,-13247605101666952,-13247603786922062],[35184641048584,269090944,11272298321696800,11272305547187129],[35184641048584,269123584,1975301877105131,1975303142599947],[35184641048584,269484168,24519905262899363,24519907494573587],[35184641048584,269615112,-11272303070687196,-11272300798196740],[35184641048584,270008448,-24519907494573587,-24519905262899363],[35184641048584,270139392,11272300798196740,11272303070687196],[35184641048584,335675400,39742811412341918,39742815253425129],[35184641048584,336199680,-26495210286978712,-26495207490199320],[35184641048584,17592186044544,-13247605137681374,-13247603750907644],[35184641048584,17592186175488,1975301819477018,1975303200228061],[35184641048584,17592186568840,-13247605137681374,-13247603750907644],[35184641048584,17592186699784,1975301819477018,1975303200228061],[35184641048584,35184372088840,-11272305547187129,-11272298321696800],[35184641048584,35184372088970,22544603189358414,22544604548409457],[35184641048584,35184372088972,1975301858410281,1975303161294799],[35184641048584,35184372089032,1975301826672296,1975303193032786],[35184641048584,35184372089992,22544603251967752,22544604485800118],[35184641048584,35184372219914,-13247605134312055,-13247603754276960],[35184641048584,35184372219916,-13247605101666952,-13247603786922062],[35184641048584,35184372220040,11272298321696800,11272305547187129],[35184641048584,35184372252680,1975301877105131,1975303142599947],[35184641048584,35184372613120,11272298321696800,11272305547187129],[35184641048584,35184372613250,-22544604548409457,-22544603189358414],[35184641048584,35184372613252,-1975303161294799,-1975301858410281],[35184641048584,35184372613312,-1975303193032786,-1975301826672296],[35184641048584,35184372614272,-22544604485800118,-22544603251967752],[35184641048584,35184372744194,13247603754276960,13247605134312055],[35184641048584,35184372744196,13247603786922062,13247605101666952],[35184641048584,35184372744320,-11272305547187129,-11272298321696800],[35184641048584,35184372776960,-1975303142599947,-1975301877105131],[35184641048584,35184373137544,-24519907494573587,-24519905262899363],[35184641048584,35184373268488,11272300798196740,11272303070687196],[35184641048584,35184373661824,24519905262899363,24519907494573587],[35184641048584,35184373792768,-11272303070687196,-11272300798196740],[35184641048584,35184439328776,-26495210286978712,-26495207490199320],[35184641048584,35184439853056,39742811412341918,39742815253425129],[35184641048584,35184707633280,13247603750907644,13247605137681374],[35184641048584,35184707764224,-15222908334540116,-15222905573753978],[35184641048584,35184708157576,13247603750907644,13247605137681374],[35184641048584,35184708288520,-1975303200228061,-1975301819477018],[35184641048584,35184774742144,13247603788555150,13247605100033866],[35184641048584,35184774873088,-1975303167312100,-1975301852392980],[35184641048584,35184775266440,13247603788555150,13247605100033866],[35184641048584,35184775397384,-1975303167312100,-1975301852392980],[35184641048584,52776826568832,-13247605137681374,-13247603750907644],[35184641048584,52776826699776,1975301819477018,1975303200228061],[35184641048584,52776827093128,-13247605137681374,-13247603750907644],[35184641048584,52776827224072,1975301819477018,1975303200228061],[35184641048584,70368744177792,-13247605100033866,-13247603788555150],[35184641048584,70368744308736,1975301852392980,1975303167312100],[35184641048584,70368744702088,-13247605100033866,-13247603788555150],[35184641048584,70368744833032,1975301852392980,1975303167312100],[35184641048584,105553384702080,-13247605100033866,-13247603788555150],[35184641048584,105553384833024,1975301852392980,1975303167312100],[35184641048584,105553385226376,-13247605100033866,-13247603788555150],[35184641048584,105553385357320,1975301852392980,1975303167312100],[35184641048584,36893488147419103360,-13247605129676795,-13247603758912222],[35184641048584,36893488147419234304,1975301823150576,1975303196554503],[35184641048584,36893488147419627656,-13247605129676795,-13247603758912222],[35184641048584,36893488147419758600,1975301823150576,1975303196554503],[35184641048584,36893523332059627648,-13247605129676795,-13247603758912222],[35184641048584,36893523332059758592,1975301823150576,1975303196554503],[35184641048584,36893523332060151944,-13247605129676795,-13247603758912222],[35184641048584,36893523332060282888,1975301823150576,1975303196554503],[35184641048640,67108992,13247603758912222,13247605129676795],[35184641048640,67633344,13247603758912222,13247605129676795],[35184641048640,268435650,-1975303193032786,-1975301826672296],[35184641048640,268435656,-22544604548409457,-22544603189358414],[35184641048640,268566720,24519905182726150,24519907574746803],[35184641048640,268959874,1975301826672296,1975303193032786],[35184641048640,268959880,22544603189358414,22544604548409457],[35184641048640,269090944,-24519907574746803,-24519905182726150],[35184641048640,17592186044544,-13247605129676795,-13247603758912222],[35184641048640,17592186568896,-13247605129676795,-13247603758912222],[35184641048640,35184372089026,1975301826672296,1975303193032786],[35184641048640,35184372089032,22544603189358414,22544604548409457],[35184641048640,35184372220096,-24519907574746803,-24519905182726150],[35184641048640,35184372613250,-1975303193032786,-1975301826672296],[35184641048640,35184372613256,-22544604548409457,-22544603189358414],[35184641048640,35184372744320,24519905182726150,24519907574746803],[35184641048640,35184707633280,13247603758912222,13247605129676795],[35184641048640,35184708157632,13247603758912222,13247605129676795],[35184641048640,52776826568832,-13247605129676795,-13247603758912222],[35184641048640,52776827093184,-13247605129676795,-13247603758912222],[35184641048704,67108872,-13247605137681374,-13247603750907644],[35184641048704,67108928,-13247605129676795,-13247603758912222],[35184641048704,67109888,-13247605100033866,-13247603788555150],[35184641048704,67239936,13247603750907644,13247605137681374],[35184641048704,67633288,-13247605137681374,-13247603750907644],[35184641048704,67633344,-13247605129676795,-13247603758912222],[35184641048704,67634304,-13247605100033866,-13247603788555150],[35184641048704,67764352,13247603750907644,13247605137681374],[35184641048704,68157440,13247603788555150,13247605100033866],[35184641048704,68681856,13247603788555150,13247605100033866],[35184641048704,134217736,-13247605100033866,-13247603788555150],[35184641048704,134348800,13247603788555150,13247605100033866],[35184641048704,134742152,-13247605100033866,-13247603788555150],[35184641048704,134873216,13247603788555150,13247605100033866],[35184641048704,268435656,24519905182726150,24519907574746803],[35184641048704,268436616,24519905262899363,24519907494573587],[35184641048704,268566664,-37767512630799828,-37767509015262141],[35184641048704,268566720,-24519907574746803,-24519905182726150],[35184641048704,268567680,-24519907494573587,-24519905262899363],[35184641048704,268959816,-24519907574746803,-24519905182726150],[35184641048704,268960776,-24519907494573587,-24519905262899363],[35184641048704,269090824,37767509015262141,37767512630799828],[35184641048704,269090880,24519905182726150,24519907574746803],[35184641048704,269091840,24519905262899363,24519907494573587],[35184641048704,269484168,-24519907494573587,-24519905262899363],[35184641048704,269615232,24519905262899363,24519907494573587],[35184641048704,270008328,24519905262899363,24519907494573587],[35184641048704,270139392,-24519907494573587,-24519905262899363],[35184641048704,469762176,24519905262899363,24519907494573587],[35184641048704,470286336,-24519907494573587,-24519905262899363],[35184641048704,17592186044424,13247603750907644,13247605137681374],[35184641048704,17592186044480,13247603758912222,13247605129676795],[35184641048704,17592186045440,13247603788555150,13247605100033866],[35184641048704,17592186175488,-13247605137681374,-13247603750907644],[35184641048704,17592186568840,13247603750907644,13247605137681374],[35184641048704,17592186568896,13247603758912222,13247605129676795],[35184641048704,17592186569856,13247603788555150,13247605100033866],[35184641048704,17592186699904,-13247605137681374,-13247603750907644],[35184641048704,17592187092992,-13247605100033866,-13247603788555150],[35184641048704,17592187617408,-13247605100033866,-13247603788555150],[35184641048704,17592521588864,-37767512630799828,-37767509015262141],[35184641048704,17592522113024,37767509015262141,37767512630799828],[35184641048704,17592588697728,-24519907494573587,-24519905262899363],[35184641048704,17592589221888,24519905262899363,24519907494573587],[35184641048704,35184372089032,-24519907574746803,-24519905182726150],[35184641048704,35184372089992,-24519907494573587,-24519905262899363],[35184641048704,35184372220040,37767509015262141,37767512630799828],[35184641048704,35184372220096,24519905182726150,24519907574746803],[35184641048704,35184372221056,24519905262899363,24519907494573587],[35184641048704,35184372613192,24519905182726150,24519907574746803],[35184641048704,35184372614152,24519905262899363,24519907494573587],[35184641048704,35184372744200,-37767512630799828,-37767509015262141],[35184641048704,35184372744256,-24519907574746803,-24519905182726150],[35184641048704,35184372745216,-24519907494573587,-24519905262899363],[35184641048704,35184373137544,24519905262899363,24519907494573587],[35184641048704,35184373268608,-24519907494573587,-24519905262899363],[35184641048704,35184373661704,-24519907494573587,-24519905262899363],[35184641048704,35184373792768,24519905262899363,24519907494573587],[35184641048704,35184573415552,-24519907494573587,-24519905262899363],[35184641048704,35184573939712,24519905262899363,24519907494573587],[35184641048704,35184707633160,-13247605137681374,-13247603750907644],[35184641048704,35184707633216,-13247605129676795,-13247603758912222],[35184641048704,35184707634176,-13247605100033866,-13247603788555150],[35184641048704,35184707764224,13247603750907644,13247605137681374],[35184641048704,35184708157576,-13247605137681374,-13247603750907644],[35184641048704,35184708157632,-13247605129676795,-13247603758912222],[35184641048704,35184708158592,-13247605100033866,-13247603788555150],[35184641048704,35184708288640,13247603750907644,13247605137681374],[35184641048704,35184708681728,13247603788555150,13247605100033866],[35184641048704,35184709206144,13247603788555150,13247605100033866],[35184641048704,35184774742024,-13247605100033866,-13247603788555150],[35184641048704,35184774873088,13247603788555150,13247605100033866],[35184641048704,35184775266440,-13247605100033866,-13247603788555150],[35184641048704,35184775397504,13247603788555150,13247605100033866],[35184641048704,52776625242240,37767509015262141,37767512630799828],[35184641048704,52776625766400,-37767512630799828,-37767509015262141],[35184641048704,52776692351104,24519905262899363,24519907494573587],[35184641048704,52776692875264,-24519907494573587,-24519905262899363],[35184641048704,52776826568712,13247603750907644,13247605137681374],[35184641048704,52776826568768,13247603758912222,13247605129676795],[35184641048704,52776826569728,13247603788555150,13247605100033866],[35184641048704,52776826699776,-13247605137681374,-13247603750907644],[35184641048704,52776827093128,13247603750907644,13247605137681374],[35184641048704,52776827093184,13247603758912222,13247605129676795],[35184641048704,52776827094144,13247603788555150,13247605100033866],[35184641048704,52776827224192,-13247605137681374,-13247603750907644],[35184641048704,52776827617280,-13247605100033866,-13247603788555150],[35184641048704,52776828141696,-13247605100033866,-13247603788555150],[35184641048704,70368744177672,13247603788555150,13247605100033866],[35184641048704,70368744308736,-13247605100033866,-13247603788555150],[35184641048704,70368744702088,13247603788555150,13247605100033866],[35184641048704,70368744833152,-13247605100033866,-13247603788555150],[35184641048704,70369079722112,-24519907494573587,-24519905262899363],[35184641048704,70369080246272,24519905262899363,24519907494573587],[35184641048704,87961198657664,24519905262899363,24519907494573587],[35184641048704,87961199181824,-24519907494573587,-24519905262899363],[35184641048704,105553183375488,24519905262899363,24519907494573587],[35184641048704,105553183899648,-24519907494573587,-24519905262899363],[35184641048704,105553384701960,13247603788555150,13247605100033866],[35184641048704,105553384833024,-13247605100033866,-13247603788555150],[35184641048704,105553385226376,13247603788555150,13247605100033866],[35184641048704,105553385357440,-13247605100033866,-13247603788555150],[35184641048704,123145302311040,-24519907494573587,-24519905262899363],[35184641048704,123145302835200,24519905262899363,24519907494573587],[35184641048704,36893488147419103240,13247603758912222,13247605129676795],[35184641048704,36893488147419234304,-13247605129676795,-13247603758912222],[35184641048704,36893488147419627656,13247603758912222,13247605129676795],[35184641048704,36893488147419758720,-13247605129676795,-13247603758912222],[35184641048704,36893488147754647680,-24519907574746803,-24519905182726150],[35184641048704,36893488147755171840,24519905182726150,24519907574746803],[35184641048704,36893505739873583232,24519905182726150,24519907574746803],[35184641048704,36893505739874107392,-24519907574746803,-24519905182726150],[35184641048704,36893523331858301056,24519905182726150,24519907574746803],[35184641048704,36893523331858825216,-24519907574746803,-24519905182726150],[35184641048704,36893523332059627528,13247603758912222,13247605129676795],[35184641048704,36893523332059758592,-13247605129676795,-13247603758912222],[35184641048704,36893523332060151944,13247603758912222,13247605129676795],[35184641048704,36893523332060283008,-13247605129676795,-13247603758912222],[35184641048704,36893540923977236608,-24519907574746803,-24519905182726150],[35184641048704,36893540923977760768,24519905182726150,24519907574746803],[35184641048714,268435458,22544603189358414,22544604548409457],[35184641048714,268435464,-22544604548409457,-22544603189358414],[35184641048714,268959874,22544603189358414,22544604548409457],[35184641048714,268959880,-22544604548409457,-22544603189358414],[35184641048714,35184372088834,-22544604548409457,-22544603189358414],[35184641048714,35184372088840,22544603189358414,22544604548409457],[35184641048714,35184372613250,-22544604548409457,-22544603189358414],[35184641048714,35184372613256,22544603189358414,22544604548409457],[35184641048716,268435460,1975301858410281,1975303161294799],[35184641048716,268435464,-1975303161294799,-1975301858410281],[35184641048716,268959876,1975301858410281,1975303161294799],[35184641048716,268959880,-1975303161294799,-1975301858410281],[35184641048716,35184372088836,-1975303161294799,-1975301858410281],[35184641048716,35184372088840,1975301858410281,1975303161294799],[35184641048716,35184372613252,-1975303161294799,-1975301858410281],[35184641048716,35184372613256,1975301858410281,1975303161294799],[35184641048770,268435458,1975301826672296,1975303193032786],[35184641048770,268435520,-1975303193032786,-1975301826672296],[35184641048770,268959874,1975301826672296,1975303193032786],[35184641048770,268959936,-1975303193032786,-1975301826672296],[35184641048770,35184372088834,-1975303193032786,-1975301826672296],[35184641048770,35184372088896,1975301826672296,1975303193032786],[35184641048770,35184372613250,-1975303193032786,-1975301826672296],[35184641048770,35184372613312,1975301826672296,1975303193032786],[35184641048776,268435464,-1975303193032786,-1975301826672296],[35184641048776,268435520,-22544604548409457,-22544603189358414],[35184641048776,268435584,24519905182726150,24519907574746803],[35184641048776,268959816,-24519907574746803,-24519905182726150],[35184641048776,268959880,22544603189358414,22544604548409457],[35184641048776,268959936,1975301826672296,1975303193032786],[35184641048776,35184372088840,1975301826672296,1975303193032786],[35184641048776,35184372088896,22544603189358414,22544604548409457],[35184641048776,35184372088960,-24519907574746803,-24519905182726150],[35184641048776,35184372613192,24519905182726150,24519907574746803],[35184641048776,35184372613256,-22544604548409457,-22544603189358414],[35184641048776,35184372613312,-1975303193032786,-1975301826672296],[35184641049600,67108992,13247603788555150,13247605100033866],[35184641049600,67634304,13247603788555150,13247605100033866],[35184641049600,68157440,-1975303134589986,-1975301885115096],[35184641049600,68682752,-1975303134589986,-1975301885115096],[35184641049600,268436616,-1975303161294799,-1975301858410281],[35184641049600,268567680,24519905262899363,24519907494573587],[35184641049600,268959880,1975301858410281,1975303161294799],[35184641049600,269090944,-24519907494573587,-24519905262899363],[35184641049600,269616128,-26495209992202640,-26495207784975390],[35184641049600,270139392,26495207784975390,26495209992202640],[35184641049600,17592186044544,-13247605100033866,-13247603788555150],[35184641049600,17592186569856,-13247605100033866,-13247603788555150],[35184641049600,17592187092992,1975301885115096,1975303134589986],[35184641049600,17592187618304,1975301885115096,1975303134589986],[35184641049600,35184372089992,1975301858410281,1975303161294799],[35184641049600,35184372221056,-24519907494573587,-24519905262899363],[35184641049600,35184372613256,-1975303161294799,-1975301858410281],[35184641049600,35184372744320,24519905262899363,24519907494573587],[35184641049600,35184373269504,26495207784975390,26495209992202640],[35184641049600,35184373792768,-26495209992202640,-26495207784975390],[35184641049600,35184707633280,13247603788555150,13247605100033866],[35184641049600,35184708158592,13247603788555150,13247605100033866],[35184641049600,35184708681728,-1975303134589986,-1975301885115096],[35184641049600,35184709207040,-1975303134589986,-1975301885115096],[35184641049600,52776826568832,-13247605100033866,-13247603788555150],[35184641049600,52776827094144,-13247605100033866,-13247603788555150],[35184641049600,52776827617280,1975301885115096,1975303134589986],[35184641049600,52776828142592,1975301885115096,1975303134589986],[35184641049736,268435464,-22544604485800118,-22544603251967752],[35184641049736,268435584,24519905262899363,24519907494573587],[35184641049736,268436480,-1975303161294799,-1975301858410281],[35184641049736,268959880,1975301858410281,1975303161294799],[35184641049736,268960776,-24519907494573587,-24519905262899363],[35184641049736,268960896,22544603251967752,22544604485800118],[35184641049736,35184372088840,22544603251967752,22544604485800118],[35184641049736,35184372088960,-24519907494573587,-24519905262899363],[35184641049736,35184372089856,1975301858410281,1975303161294799],[35184641049736,35184372613256,-1975303161294799,-1975301858410281],[35184641049736,35184372614152,24519905262899363,24519907494573587],[35184641049736,35184372614272,-22544604485800118,-22544603251967752],[35184641081344,268599300,-1975303142599947,-1975301877105131],[35184641081344,268599304,13247603786922062,13247605101666952],[35184641081344,268599424,-11272303070687196,-11272300798196740],[35184641081344,269090820,1975301877105131,1975303142599947],[35184641081344,269090824,-13247605101666952,-13247603786922062],[35184641081344,269090944,11272300798196740,11272303070687196],[35184641081344,35184372252676,1975301877105131,1975303142599947],[35184641081344,35184372252680,-13247605101666952,-13247603786922062],[35184641081344,35184372252800,11272300798196740,11272303070687196],[35184641081344,35184372744196,-1975303142599947,-1975301877105131],[35184641081344,35184372744200,13247603786922062,13247605101666952],[35184641081344,35184372744320,-11272303070687196,-11272300798196740],[35184641179648,67108872,1975301819477018,1975303200228061],[35184641179648,67108992,-24519907748637518,-24519905008835432],[35184641179648,67764232,15222905573753978,15222908334540116],[35184641179648,67764352,-1975303200228061,-1975301819477018],[35184641179648,134217736,1975301852392980,1975303167312100],[35184641179648,134217856,-1975303167312100,-1975301852392980],[35184641179648,134873096,1975301852392980,1975303167312100],[35184641179648,134873216,-1975303167312100,-1975301852392980],[35184641179648,268566664,49039810952496628,49039814562449270],[35184641179648,268599304,-11272303070687196,-11272300798196740],[35184641179648,268599424,11272300798196740,11272303070687196],[35184641179648,268959880,-49039814562449270,-49039810952496628],[35184641179648,268992520,11272300798196740,11272303070687196],[35184641179648,268992640,-11272303070687196,-11272300798196740],[35184641179648,269615112,11272300798196740,11272303070687196],[35184641179648,269615232,-11272303070687196,-11272300798196740],[35184641179648,270008328,-11272303070687196,-11272300798196740],[35184641179648,270008448,11272300798196740,11272303070687196],[35184641179648,335675400,-52990420219871546,-52990415334484516],[35184641179648,335675520,30445811467235518,30445816349352673],[35184641179648,336068616,39742811412341918,39742815253425129],[35184641179648,336068736,-52990420219871546,-52990415334484516],[35184641179648,17592186044424,-1975303200228061,-1975301819477018],[35184641179648,17592186044544,1975301819477018,1975303200228061],[35184641179648,17592186699784,-1975303200228061,-1975301819477018],[35184641179648,17592186699904,1975301819477018,1975303200228061],[35184641179648,35184372220040,-49039814562449270,-49039810952496628],[35184641179648,35184372252680,11272300798196740,11272303070687196],[35184641179648,35184372252800,-11272303070687196,-11272300798196740],[35184641179648,35184372613256,49039810952496628,49039814562449270],[35184641179648,35184372645896,-11272303070687196,-11272300798196740],[35184641179648,35184372646016,11272300798196740,11272303070687196],[35184641179648,35184373268488,-11272303070687196,-11272300798196740],[35184641179648,35184373268608,11272300798196740,11272303070687196],[35184641179648,35184373661704,11272300798196740,11272303070687196],[35184641179648,35184373661824,-11272303070687196,-11272300798196740],[35184641179648,35184439328776,39742811412341918,39742815253425129],[35184641179648,35184439328896,-52990420219871546,-52990415334484516],[35184641179648,35184439721992,-52990420219871546,-52990415334484516],[35184641179648,35184439722112,30445811467235518,30445816349352673],[35184641179648,35184707633160,15222905573753978,15222908334540116],[35184641179648,35184707633280,-1975303200228061,-1975301819477018],[35184641179648,35184708288520,1975301819477018,1975303200228061],[35184641179648,35184708288640,-24519907748637518,-24519905008835432],[35184641179648,35184774742024,1975301852392980,1975303167312100],[35184641179648,35184774742144,-1975303167312100,-1975301852392980],[35184641179648,35184775397384,1975301852392980,1975303167312100],[35184641179648,35184775397504,-1975303167312100,-1975301852392980],[35184641179648,52776826568712,-1975303200228061,-1975301819477018],[35184641179648,52776826568832,1975301819477018,1975303200228061],[35184641179648,52776827224072,-1975303200228061,-1975301819477018],[35184641179648,52776827224192,1975301819477018,1975303200228061],[35184641179648,70368744177672,-1975303167312100,-1975301852392980],[35184641179648,70368744177792,1975301852392980,1975303167312100],[35184641179648,70368744833032,-1975303167312100,-1975301852392980],[35184641179648,70368744833152,1975301852392980,1975303167312100],[35184641179648,105553384701960,-1975303167312100,-1975301852392980],[35184641179648,105553384702080,1975301852392980,1975303167312100],[35184641179648,105553385357320,-1975303167312100,-1975301852392980],[35184641179648,105553385357440,1975301852392980,1975303167312100],[35184641179648,36893488147419103240,-1975303196554503,-1975301823150576],[35184641179648,36893488147419103360,1975301823150576,1975303196554503],[35184641179648,36893488147419758600,-1975303196554503,-1975301823150576],[35184641179648,36893488147419758720,1975301823150576,1975303196554503],[35184641179648,36893523332059627528,-1975303196554503,-1975301823150576],[35184641179648,36893523332059627648,1975301823150576,1975303196554503],[35184641179648,36893523332060282888,-1975303196554503,-1975301823150576],[35184641179648,36893523332060283008,1975301823150576,1975303196554503],[35184641179658,268435458,-13247605134312055,-13247603754276960],[35184641179658,268435464,13247603754276960,13247605134312055],[35184641179658,269090818,-13247605134312055,-13247603754276960],[35184641179658,269090824,13247603754276960,13247605134312055],[35184641179658,35184372088834,13247603754276960,13247605134312055],[35184641179658,35184372088840,-13247605134312055,-13247603754276960],[35184641179658,35184372744194,13247603754276960,13247605134312055],[35184641179658,35184372744200,-13247605134312055,-13247603754276960],[35184641179660,268435460,-13247605101666952,-13247603786922062],[35184641179660,268435464,13247603786922062,13247605101666952],[35184641179660,269090820,-13247605101666952,-13247603786922062],[35184641179660,269090824,13247603786922062,13247605101666952],[35184641179660,35184372088836,13247603786922062,13247605101666952],[35184641179660,35184372088840,-13247605101666952,-13247603786922062],[35184641179660,35184372744196,13247603786922062,13247605101666952],[35184641179660,35184372744200,-13247605101666952,-13247603786922062],[35184641179784,268435464,-18594001619979184,-18593996078378526],[35184641179784,268435584,-26495210262619762,-26495207514558268],[35184641179784,268566528,45089206340998288,45089209134537452],[35184641179784,268959880,-45089209134537452,-45089206340998288],[35184641179784,269090824,26495207514558268,26495210262619762],[35184641179784,269090944,18593996078378526,18594001619979184],[35184641179784,35184372088840,18593996078378526,18594001619979184],[35184641179784,35184372088960,26495207514558268,26495210262619762],[35184641179784,35184372219904,-45089209134537452,-45089206340998288],[35184641179784,35184372613256,45089206340998288,45089209134537452],[35184641179784,35184372744200,-26495210262619762,-26495207514558268],[35184641179784,35184372744320,-18594001619979184,-18593996078378526],[35184641179840,268435520,13247603754276960,13247605134312055],[35184641179840,268435584,-13247605134312055,-13247603754276960],[35184641179840,269090880,13247603754276960,13247605134312055],[35184641179840,269090944,-13247605134312055,-13247603754276960],[35184641179840,35184372088896,-13247605134312055,-13247603754276960],[35184641179840,35184372088960,13247603754276960,13247605134312055],[35184641179840,35184372744256,-13247605134312055,-13247603754276960],[35184641179840,35184372744320,13247603754276960,13247605134312055],[35184641180800,268435584,-13247605101666952,-13247603786922062],[35184641180800,268436480,13247603786922062,13247605101666952],[35184641180800,269090944,-13247605101666952,-13247603786922062],[35184641180800,269091840,13247603786922062,13247605101666952],[35184641180800,35184372088960,13247603786922062,13247605101666952],[35184641180800,35184372089856,-13247605101666952,-13247603786922062],[35184641180800,35184372744320,13247603786922062,13247605101666952],[35184641180800,35184372745216,-13247605101666952,-13247603786922062],[35184641212420,268435460,1975301877105131,1975303142599947],[35184641212420,268468224,-1975303142599947,-1975301877105131],[35184641212420,269090820,1975301877105131,1975303142599947],[35184641212420,269123584,-1975303142599947,-1975301877105131],[35184641212420,35184372088836,-1975303142599947,-1975301877105131],[35184641212420,35184372121600,1975301877105131,1975303142599947],[35184641212420,35184372744196,-1975303142599947,-1975301877105131],[35184641212420,35184372776960,1975301877105131,1975303142599947],[35184641212424,268435464,-1975303142599947,-1975301877105131],[35184641212424,268468224,13247603786922062,13247605101666952],[35184641212424,268566528,-11272303070687196,-11272300798196740],[35184641212424,268992520,11272300798196740,11272303070687196],[35184641212424,269090824,-13247605101666952,-13247603786922062],[35184641212424,269123584,1975301877105131,1975303142599947],[35184641212424,35184372088840,1975301877105131,1975303142599947],[35184641212424,35184372121600,-13247605101666952,-13247603786922062],[35184641212424,35184372219904,11272300798196740,11272303070687196],[35184641212424,35184372645896,-11272303070687196,-11272300798196740],[35184641212424,35184372744200,13247603786922062,13247605101666952],[35184641212424,35184372776960,-1975303142599947,-1975301877105131],[35184641212544,268468224,-1975303161294799,-1975301858410281],[35184641212544,268566528,1975301858410281,1975303161294799],[35184641212544,268992640,-1975303161294799,-1975301858410281],[35184641212544,269090944,1975301858410281,1975303161294799],[35184641212544,35184372121600,1975301858410281,1975303161294799],[35184641212544,35184372219904,-1975303161294799,-1975301858410281],[35184641212544,35184372646016,1975301858410281,1975303161294799],[35184641212544,35184372744320,-1975303161294799,-1975301858410281],[35184641572872,268959880,-11272303061044145,-11272300807839789],[35184641572872,269090824,24519905244697076,24519907512775874],[35184641572872,270008448,11272300807839789,11272303061044145],[35184641572872,270139392,-24519907512775874,-24519905244697076],[35184641572872,35184372613256,11272300807839789,11272303061044145],[35184641572872,35184372744200,-24519907512775874,-24519905244697076],[35184641572872,35184373661824,-11272303061044145,-11272300807839789],[35184641572872,35184373792768,24519905244697076,24519907512775874],[35184641572992,67633152,-11272303061044145,-11272300807839789],[35184641572992,68681856,-11272303061044145,-11272300807839789],[35184641572992,268959880,11272300807839789,11272303061044145],[35184641572992,269090944,-15222907934848161,-15222905973445933],[35184641572992,270008328,-11272303061044145,-11272300807839789],[35184641572992,270139392,15222905973445933,15222907934848161],[35184641572992,17592186568704,11272300807839789,11272303061044145],[35184641572992,17592187617408,11272300807839789,11272303061044145],[35184641572992,35184372613256,-11272303061044145,-11272300807839789],[35184641572992,35184372744320,15222905973445933,15222907934848161],[35184641572992,35184373661704,11272300807839789,11272303061044145],[35184641572992,35184373792768,-15222907934848161,-15222905973445933],[35184641572992,35184708157440,-11272303061044145,-11272300807839789],[35184641572992,35184709206144,-11272303061044145,-11272300807839789],[35184641572992,52776827092992,11272300807839789,11272303061044145],[35184641572992,52776828141696,11272300807839789,11272303061044145],[35184641703936,269090824,-24519907512775874,-24519905244697076],[35184641703936,269090944,-974533467,974533465],[35184641703936,269091840,24519905280236082,24519907477236870],[35184641703936,270008328,24519905244697076,24519907512775874],[35184641703936,270008448,-974533465,974533467],[35184641703936,270009344,-24519907477236870,-24519905280236082],[35184641703936,35184372744200,24519905244697076,24519907512775874],[35184641703936,35184372744320,-974533465,974533467],[35184641703936,35184372745216,-24519907477236870,-24519905280236082],[35184641703936,35184373661704,-24519907512775874,-24519905244697076],[35184641703936,35184373661824,-974533467,974533465],[35184641703936,35184373662720,24519905280236082,24519907477236870],[35184642097152,67108992,-1975303134589986,-1975301885115096],[35184642097152,67109888,1975301885115096,1975303134589986],[35184642097152,68681856,-1975303134589986,-1975301885115096],[35184642097152,68682752,1975301885115096,1975303134589986],[35184642097152,269090944,26495207784975390,26495209992202640],[35184642097152,269091840,-26495209992202640,-26495207784975390],[35184642097152,269615232,-26495209992202640,-26495207784975390],[35184642097152,269616128,26495207784975390,26495209992202640],[35184642097152,17592186044544,1975301885115096,1975303134589986],[35184642097152,17592186045440,-1975303134589986,-1975301885115096],[35184642097152,17592187617408,1975301885115096,1975303134589986],[35184642097152,17592187618304,-1975303134589986,-1975301885115096],[35184642097152,35184372744320,-26495209992202640,-26495207784975390],[35184642097152,35184372745216,26495207784975390,26495209992202640],[35184642097152,35184373268608,26495207784975390,26495209992202640],[35184642097152,35184373269504,-26495209992202640,-26495207784975390],[35184642097152,35184707633280,-1975303134589986,-1975301885115096],[35184642097152,35184707634176,1975301885115096,1975303134589986],[35184642097152,35184709206144,-1975303134589986,-1975301885115096],[35184642097152,35184709207040,1975301885115096,1975303134589986],[35184642097152,52776826568832,1975301885115096,1975303134589986],[35184642097152,52776826569728,-1975303134589986,-1975301885115096],[35184642097152,52776828141696,1975301885115096,1975303134589986],[35184642097152,52776828142592,-1975303134589986,-1975301885115096],[35184642097288,268435464,13247603822461068,13247605066127948],[35184642097288,268435584,-13247605066127948,-13247603822461068],[35184642097288,270008328,13247603822461068,13247605066127948],[35184642097288,270008448,-13247605066127948,-13247603822461068],[35184642097288,35184372088840,-13247605066127948,-13247603822461068],[35184642097288,35184372088960,13247603822461068,13247605066127948],[35184642097288,35184373661704,-13247605066127948,-13247603822461068],[35184642097288,35184373661824,13247603822461068,13247605066127948],[35184642228232,268435464,13247603811716528,13247605076872486],[35184642228232,268566528,-13247605076872486,-13247603811716528],[35184642228232,270008328,13247603811716528,13247605076872486],[35184642228232,270139392,-13247605076872486,-13247603811716528],[35184642228232,35184372088840,-13247605076872486,-13247603811716528],[35184642228232,35184372219904,13247603811716528,13247605076872486],[35184642228232,35184373661704,-13247605076872486,-13247603811716528],[35184642228232,35184373792768,13247603811716528,13247605076872486],[35184642228352,268435584,-11272302715781341,-11272301153102595],[35184642228352,268566528,9296998646110384,9297000203068470],[35184642228352,268959744,13247602507378184,13247606381210832],[35184642228352,269090944,11272301100150310,11272302768733624],[35184642228352,269484032,-11272302768733624,-11272301100150310],[35184642228352,269615232,-13247606381210832,-13247602507378184],[35184642228352,270008448,-9297000203068470,-9296998646110384],[35184642228352,270139392,11272301153102595,11272302715781341],[35184642228352,35184372088960,11272301153102595,11272302715781341],[35184642228352,35184372219904,-9297000203068470,-9296998646110384],[35184642228352,35184372613120,-13247606381210832,-13247602507378184],[35184642228352,35184372744320,-11272302768733624,-11272301100150310],[35184642228352,35184373137408,11272301100150310,11272302768733624],[35184642228352,35184373268608,13247602507378184,13247606381210832],[35184642228352,35184373661824,9296998646110384,9297000203068470],[35184642228352,35184373792768,-11272302715781341,-11272301153102595],[35184642229248,268436480,-1975303142599947,-1975301877105131],[35184642229248,269091840,-1975303142599947,-1975301877105131],[35184642229248,269484032,1975301877105131,1975303142599947],[35184642229248,270139392,1975301877105131,1975303142599947],[35184642229248,35184372089856,1975301877105131,1975303142599947],[35184642229248,35184372745216,1975301877105131,1975303142599947],[35184642229248,35184373137408,-1975303142599947,-1975301877105131],[35184642229248,35184373792768,-1975303142599947,-1975301877105131],[35184707633154,268566538,1975301823150576,1975303196554503],[35184707633154,335675400,-1975303196554503,-1975301823150576],[35184707633154,35184372219914,-1975303196554503,-1975301823150576],[35184707633154,35184439328776,1975301823150576,1975303196554503],[35184707633156,268566540,1975301852392980,1975303167312100],[35184707633156,268599300,22544603239782766,22544604497985104],[35184707633156,335675400,-1975303167312100,-1975301852392980],[35184707633156,335708160,-22544604497985104,-22544603239782766],[35184707633156,1342210052,-13247605076872486,-13247603811716528],[35184707633156,1409318912,13247603811716528,13247605076872486],[35184707633156,35184372219916,-1975303167312100,-1975301852392980],[35184707633156,35184372252676,-22544604497985104,-22544603239782766],[35184707633156,35184439328776,1975301852392980,1975303167312100],[35184707633156,35184439361536,22544603239782766,22544604497985104],[35184707633156,35185445863428,13247603811716528,13247605076872486],[35184707633156,35185512972288,-13247605076872486,-13247603811716528],[35184707633160,655360,13247603754276960,13247605134312055],[35184707633160,67633288,-13247605137681374,-13247603750907644],[35184707633160,67764232,15222905573753978,15222908334540116],[35184707633160,134348800,13247603786922062,13247605101666952],[35184707633160,201457672,13247603786922062,13247605101666952],[35184707633160,268435464,-1975304480049416,-1975300539655663],[35184707633160,268566538,-1975303196554503,-1975301823150576],[35184707633160,268566540,-1975303167312100,-1975301852392980],[35184707633160,268566664,-1975303200228061,-1975301819477018],[35184707633160,268599304,-22544604497985104,-22544603239782766],[35184707633160,268959880,11272300719066616,11272303149817323],[35184707633160,269090824,-47064512160515549,-47064508334725266],[35184707633160,335544320,1975300539655663,1975304480049416],[35184707633160,335675394,1975301823150576,1975303196554503],[35184707633160,335675396,1975301852392980,1975303167312100],[35184707633160,335675520,1975301819477018,1975303200228061],[35184707633160,335708160,22544603239782766,22544604497985104],[35184707633160,336068736,1975301819477018,1975303200228061],[35184707633160,336199680,45089206348552808,45089209126982928],[35184707633160,1342308360,24519905244697076,24519907512775874],[35184707633160,1409417216,-24519907512775874,-24519905244697076],[35184707633160,17592186175488,-26495210262619762,-26495207514558268],[35184707633160,17592253284360,-37767512630799828,-37767509015262141],[35184707633160,17592454610952,15222904455276782,15222909453017315],[35184707633160,17592521719808,-3950606303199992,-3950603736210166],[35184707633160,35184372088840,1975300539655663,1975304480049416],[35184707633160,35184372219914,1975301823150576,1975303196554503],[35184707633160,35184372219916,1975301852392980,1975303167312100],[35184707633160,35184372220040,1975301819477018,1975303200228061],[35184707633160,35184372252680,22544603239782766,22544604497985104],[35184707633160,35184372613256,1975301819477018,1975303200228061],[35184707633160,35184372744200,45089206348552808,45089209126982928],[35184707633160,35184439197696,-1975304480049416,-1975300539655663],[35184707633160,35184439328770,-1975303196554503,-1975301823150576],[35184707633160,35184439328772,-1975303167312100,-1975301852392980],[35184707633160,35184439328896,-1975303200228061,-1975301819477018],[35184707633160,35184439361536,-22544604497985104,-22544603239782766],[35184707633160,35184439722112,11272300719066616,11272303149817323],[35184707633160,35184439853056,-47064512160515549,-47064508334725266],[35184707633160,35184641048704,-13247605137681374,-13247603750907644],[35184707633160,35184641179648,15222905573753978,15222908334540116],[35184707633160,35184708288520,13247603754276960,13247605134312055],[35184707633160,35184774873088,13247603786922062,13247605101666952],[35184707633160,35184841981960,13247603786922062,13247605101666952],[35184707633160,35185445961736,-24519907512775874,-24519905244697076],[35184707633160,35185513070592,24519905244697076,24519907512775874],[35184707633160,52776558264328,-3950606303199992,-3950603736210166],[35184707633160,52776625373184,15222904455276782,15222909453017315],[35184707633160,52776826699776,-37767512630799828,-37767509015262141],[35184707633160,52776893808648,-26495210262619762,-26495207514558268],[35184707633160,70368744308736,-13247605101666952,-13247603786922062],[35184707633160,70368811417608,-13247605101666952,-13247603786922062],[35184707633160,105553384833024,-13247605101666952,-13247603786922062],[35184707633160,105553451941896,-13247605101666952,-13247603786922062],[35184707633160,36893488147419234304,-13247605134312055,-13247603754276960],[35184707633160,36893488147486343176,-13247605134312055,-13247603754276960],[35184707633160,36893523332059758592,-13247605134312055,-13247603754276960],[35184707633160,36893523332126867464,-13247605134312055,-13247603754276960],[35184707633216,67633344,-13247605129676795,-13247603758912222],[35184707633216,268959936,11272300730744752,11272303138139186],[35184707633216,336068736,1975301823150576,1975303196554503],[35184707633216,35184372613312,1975301823150576,1975303196554503],[35184707633216,35184439722112,11272300730744752,11272303138139186],[35184707633216,35184641048704,-13247605129676795,-13247603758912222],[35184707633280,0,18593997808144912,18593999890212800],[35184707633280,655360,-22544604548409457,-22544603189358414],[35184707633280,67108992,22544601914969187,22544605822798680],[35184707633280,67633288,13247603750907644,13247605137681374],[35184707633280,67633344,13247603758912222,13247605129676795],[35184707633280,67634304,13247603788555150,13247605100033866],[35184707633280,67764352,-1975303200228061,-1975301819477018],[35184707633280,68681856,-1975303134589986,-1975301885115096],[35184707633280,134742016,-11272302768733624,-11272301100150310],[35184707633280,201851008,-974533465,974533467],[35184707633280,268435584,-11272305322642808,-11272298546241124],[35184707633280,268566664,1975301819477018,1975303200228061],[35184707633280,268959880,-11272303149817323,-11272300719066616],[35184707633280,268959936,-11272303138139186,-11272300730744752],[35184707633280,268960896,-11272303079253853,-11272300789630083],[35184707633280,269090944,16618691985372593,16618700693280031],[35184707633280,270008448,24519905280236082,24519907477236870],[35184707633280,335544320,7321694955032038,7321698874441739],[35184707633280,335675400,-1975303200228061,-1975301819477018],[35184707633280,336068616,-1975303200228061,-1975301819477018],[35184707633280,336068672,-1975303196554503,-1975301823150576],[35184707633280,336069632,-1975303167312100,-1975301852392980],[35184707633280,336199680,-37188001526996408,-37187993869719008],[35184707633280,337117184,-22544604497985104,-22544603239782766],[35184707633280,403177600,-26495209992202640,-26495207784975390],[35184707633280,470286336,15222905973445933,15222907934848161],[35184707633280,1074266112,-1975303161294799,-1975301858410281],[35184707633280,1342701696,-11272303070687196,-11272300798196740],[35184707633280,1409810432,9296998263946318,9297000585232538],[35184707633280,17592186568704,-18594001619979184,-18593996078378526],[35184707633280,17592253677696,-11272303149817323,-11272300719066616],[35184707633280,17592455004288,-11272305547187129,-11272298321696800],[35184707633280,17592522113024,3950603736210166,3950606303199992],[35184707633280,35184372088960,7321694955032038,7321698874441739],[35184707633280,35184372220040,-1975303200228061,-1975301819477018],[35184707633280,35184372613256,-1975303200228061,-1975301819477018],[35184707633280,35184372613312,-1975303196554503,-1975301823150576],[35184707633280,35184372614272,-1975303167312100,-1975301852392980],[35184707633280,35184372744320,-37188001526996408,-37187993869719008],[35184707633280,35184373661824,-22544604497985104,-22544603239782766],[35184707633280,35184439197696,-11272305322642808,-11272298546241124],[35184707633280,35184439328776,1975301819477018,1975303200228061],[35184707633280,35184439721992,-11272303149817323,-11272300719066616],[35184707633280,35184439722048,-11272303138139186,-11272300730744752],[35184707633280,35184439723008,-11272303079253853,-11272300789630083],[35184707633280,35184439853056,16618691985372593,16618700693280031],[35184707633280,35184440770560,24519905280236082,24519907477236870],[35184707633280,35184506830976,15222905973445933,15222907934848161],[35184707633280,35184573939712,-26495209992202640,-26495207784975390],[35184707633280,35184640524288,22544601914969187,22544605822798680],[35184707633280,35184641048584,13247603750907644,13247605137681374],[35184707633280,35184641048640,13247603758912222,13247605129676795],[35184707633280,35184641049600,13247603788555150,13247605100033866],[35184707633280,35184641179648,-1975303200228061,-1975301819477018],[35184707633280,35184642097152,-1975303134589986,-1975301885115096],[35184707633280,35184707633280,18593997808144912,18593999890212800],[35184707633280,35184708288640,-22544604548409457,-22544603189358414],[35184707633280,35184775266304,-974533465,974533467],[35184707633280,35184842375296,-11272302768733624,-11272301100150310],[35184707633280,35185446355072,9296998263946318,9297000585232538],[35184707633280,35185513463808,-11272303070687196,-11272300798196740],[35184707633280,35185781899392,-1975303161294799,-1975301858410281],[35184707633280,52776558657664,3950603736210166,3950606303199992],[35184707633280,52776625766400,-11272305547187129,-11272298321696800],[35184707633280,52776827092992,-11272303149817323,-11272300719066616],[35184707633280,52776894201984,-18594001619979184,-18593996078378526],[35184707633280,70368744701952,13247603786922062,13247605101666952],[35184707633280,70368811810944,-11272303079253853,-11272300789630083],[35184707633280,70369013137536,24519905262899363,24519907494573587],[35184707633280,105553183899648,24519905262899363,24519907494573587],[35184707633280,105553385226240,-11272303079253853,-11272300789630083],[35184707633280,105553452335232,13247603786922062,13247605101666952],[35184707633280,36893488147419627520,13247603754276960,13247605134312055],[35184707633280,36893488147486736512,-11272303138139186,-11272300730744752],[35184707633280,36893488147688063104,24519905182726150,24519907574746803],[35184707633280,36893523331858825216,24519905182726150,24519907574746803],[35184707633280,36893523332060151808,-11272303138139186,-11272300730744752],[35184707633280,36893523332127260800,13247603754276960,13247605134312055],[35184707634176,67634304,-13247605100033866,-13247603788555150],[35184707634176,68682752,1975301885115096,1975303134589986],[35184707634176,202376192,-13247605066127948,-13247603822461068],[35184707634176,268960896,11272300789630083,11272303079253853],[35184707634176,270009344,-24519907477236870,-24519905280236082],[35184707634176,336068736,1975301852392980,1975303167312100],[35184707634176,337117184,22544603239782766,22544604497985104],[35184707634176,403702784,26495207784975390,26495209992202640],[35184707634176,470810624,-13247605076872486,-13247603811716528],[35184707634176,35184372614272,1975301852392980,1975303167312100],[35184707634176,35184373662720,22544603239782766,22544604497985104],[35184707634176,35184439722112,11272300789630083,11272303079253853],[35184707634176,35184440770560,-24519907477236870,-24519905280236082],[35184707634176,35184507356160,-13247605076872486,-13247603811716528],[35184707634176,35184574464000,26495207784975390,26495209992202640],[35184707634176,35184641048704,-13247605100033866,-13247603788555150],[35184707634176,35184642097152,1975301885115096,1975303134589986],[35184707634176,35184775790592,-13247605066127948,-13247603822461068],[35184707665920,268599300,-22544604497985104,-22544603239782766],[35184707665920,268599304,-1975303167312100,-1975301852392980],[35184707665920,335675396,22544603239782766,22544604497985104],[35184707665920,335675400,1975301852392980,1975303167312100],[35184707665920,1342210052,13247603811716528,13247605076872486],[35184707665920,1409286148,-13247605076872486,-13247603811716528],[35184707665920,35184372252676,22544603239782766,22544604497985104],[35184707665920,35184372252680,1975301852392980,1975303167312100],[35184707665920,35184439328772,-22544604497985104,-22544603239782766],[35184707665920,35184439328776,-1975303167312100,-1975301852392980],[35184707665920,35185445863428,-13247605076872486,-13247603811716528],[35184707665920,35185512939524,13247603811716528,13247605076872486],[35184707764224,524296,-13247605134312055,-13247603754276960],[35184707764224,67764232,-15222908334540116,-15222905573753978],[35184707764224,67764352,13247603750907644,13247605137681374],[35184707764224,134217736,-13247605101666952,-13247603786922062],[35184707764224,201457672,-13247605101666952,-13247603786922062],[35184707764224,268599304,24519905244697076,24519907512775874],[35184707764224,269090824,49039810320897724,49039815194048170],[35184707764224,269090944,-11272303149817323,-11272300719066616],[35184707764224,335577096,-24519907512775874,-24519905244697076],[35184707764224,336068616,-47064512160515549,-47064508334725266],[35184707764224,336068736,-1975303200228061,-1975301819477018],[35184707764224,1342308360,-24519907512775874,-24519905244697076],[35184707764224,1409286152,24519905244697076,24519907512775874],[35184707764224,17592186044424,26495207514558268,26495210262619762],[35184707764224,17592253284360,37767509015262141,37767512630799828],[35184707764224,17592454610952,-15222909453017315,-15222904455276782],[35184707764224,17592521588744,3950603736210166,3950606303199992],[35184707764224,35184372252680,-24519907512775874,-24519905244697076],[35184707764224,35184372744200,-47064512160515549,-47064508334725266],[35184707764224,35184372744320,-1975303200228061,-1975301819477018],[35184707764224,35184439230472,24519905244697076,24519907512775874],[35184707764224,35184439721992,49039810320897724,49039815194048170],[35184707764224,35184439722112,-11272303149817323,-11272300719066616],[35184707764224,35184641048584,-15222908334540116,-15222905573753978],[35184707764224,35184641048704,13247603750907644,13247605137681374],[35184707764224,35184708288520,-13247605134312055,-13247603754276960],[35184707764224,35184774742024,-13247605101666952,-13247603786922062],[35184707764224,35184841981960,-13247605101666952,-13247603786922062],[35184707764224,35185445961736,24519905244697076,24519907512775874],[35184707764224,35185512939528,-24519907512775874,-24519905244697076],[35184707764224,52776558264328,3950603736210166,3950606303199992],[35184707764224,52776625242120,-15222909453017315,-15222904455276782],[35184707764224,52776826568712,37767509015262141,37767512630799828],[35184707764224,52776893808648,26495207514558268,26495210262619762],[35184707764224,70368744177672,13247603786922062,13247605101666952],[35184707764224,70368811417608,13247603786922062,13247605101666952],[35184707764224,105553384701960,13247603786922062,13247605101666952],[35184707764224,105553451941896,13247603786922062,13247605101666952],[35184707764224,36893488147419103240,13247603754276960,13247605134312055],[35184707764224,36893488147486343176,13247603754276960,13247605134312055],[35184707764224,36893523332059627528,13247603754276960,13247605134312055],[35184707764224,36893523332126867464,13247603754276960,13247605134312055],[35184707764234,268435458,1975301823150576,1975303196554503],[35184707764234,268435464,-1975303196554503,-1975301823150576],[35184707764234,335675394,1975301823150576,1975303196554503],[35184707764234,335675400,-1975303196554503,-1975301823150576],[35184707764234,35184372088834,-1975303196554503,-1975301823150576],[35184707764234,35184372088840,1975301823150576,1975303196554503],[35184707764234,35184439328770,-1975303196554503,-1975301823150576],[35184707764234,35184439328776,1975301823150576,1975303196554503],[35184707764236,268435460,1975301852392980,1975303167312100],[35184707764236,268435464,-1975303167312100,-1975301852392980],[35184707764236,335675396,1975301852392980,1975303167312100],[35184707764236,335675400,-1975303167312100,-1975301852392980],[35184707764236,35184372088836,-1975303167312100,-1975301852392980],[35184707764236,35184372088840,1975301852392980,1975303167312100],[35184707764236,35184439328772,-1975303167312100,-1975301852392980],[35184707764236,35184439328776,1975301852392980,1975303167312100],[35184707764360,268435464,-1975303200228061,-1975301819477018],[35184707764360,268435584,1975301819477018,1975303200228061],[35184707764360,335675400,-1975303200228061,-1975301819477018],[35184707764360,335675520,1975301819477018,1975303200228061],[35184707764360,35184372088840,1975301819477018,1975303200228061],[35184707764360,35184372088960,-1975303200228061,-1975301819477018],[35184707764360,35184439328776,1975301819477018,1975303200228061],[35184707764360,35184439328896,-1975303200228061,-1975301819477018],[35184707796996,268435460,22544603239782766,22544604497985104],[35184707796996,268468224,-22544604497985104,-22544603239782766],[35184707796996,335675396,22544603239782766,22544604497985104],[35184707796996,335708160,-22544604497985104,-22544603239782766],[35184707796996,35184372088836,-22544604497985104,-22544603239782766],[35184707796996,35184372121600,22544603239782766,22544604497985104],[35184707796996,35184439328772,-22544604497985104,-22544603239782766],[35184707796996,35184439361536,22544603239782766,22544604497985104],[35184707797000,268435464,-22544604497985104,-22544603239782766],[35184707797000,268468224,-1975303167312100,-1975301852392980],[35184707797000,268566528,24519905244697076,24519907512775874],[35184707797000,335577096,-24519907512775874,-24519905244697076],[35184707797000,335675400,1975301852392980,1975303167312100],[35184707797000,335708160,22544603239782766,22544604497985104],[35184707797000,35184372088840,22544603239782766,22544604497985104],[35184707797000,35184372121600,1975301852392980,1975303167312100],[35184707797000,35184372219904,-24519907512775874,-24519905244697076],[35184707797000,35184439230472,24519905244697076,24519907512775874],[35184707797000,35184439328776,-1975303167312100,-1975301852392980],[35184707797000,35184439361536,-22544604497985104,-22544603239782766],[35184708157440,131200,22544603189358414,22544604548409457],[35184708157440,67764352,-11272303149817323,-11272300719066616],[35184708157440,68681856,-11272303061044145,-11272300807839789],[35184708157440,134217856,11272301100150310,11272302768733624],[35184708157440,201851008,-974533467,974533465],[35184708157440,269090824,-15222908334540116,-15222905573753978],[35184708157440,269090944,17198204228118056,17198214699881130],[35184708157440,270008448,-13247606381210832,-13247602507378184],[35184708157440,335675400,15222905573753978,15222908334540116],[35184708157440,335675520,16618691985372593,16618700693280031],[35184708157440,336593024,24519905244697076,24519907512775874],[35184708157440,403177600,26495207784975390,26495209992202640],[35184708157440,469762176,-15222907934848161,-15222905973445933],[35184708157440,1073741952,1975301858410281,1975303161294799],[35184708157440,1342701696,11272300798196740,11272303070687196],[35184708157440,1409286272,-9297000585232538,-9296998263946318],[35184708157440,17592186044544,18593996078378526,18594001619979184],[35184708157440,17592253677696,11272300719066616,11272303149817323],[35184708157440,17592455004288,11272298321696800,11272305547187129],[35184708157440,17592521588864,-3950606303199992,-3950603736210166],[35184708157440,35184372744200,15222905573753978,15222908334540116],[35184708157440,35184372744320,16618691985372593,16618700693280031],[35184708157440,35184373661824,24519905244697076,24519907512775874],[35184708157440,35184439328776,-15222908334540116,-15222905573753978],[35184708157440,35184439328896,17198204228118056,17198214699881130],[35184708157440,35184440246400,-13247606381210832,-13247602507378184],[35184708157440,35184506830976,-15222907934848161,-15222905973445933],[35184708157440,35184573415552,26495207784975390,26495209992202640],[35184708157440,35184640655488,-11272303149817323,-11272300719066616],[35184708157440,35184641572992,-11272303061044145,-11272300807839789],[35184708157440,35184708288640,22544603189358414,22544604548409457],[35184708157440,35184774742144,-974533467,974533465],[35184708157440,35184842375296,11272301100150310,11272302768733624],[35184708157440,35185446355072,-9297000585232538,-9296998263946318],[35184708157440,35185512939648,11272300798196740,11272303070687196],[35184708157440,35185781899392,1975301858410281,1975303161294799],[35184708157440,52776558657664,-3950606303199992,-3950603736210166],[35184708157440,52776625242240,11272298321696800,11272305547187129],[35184708157440,52776826568832,11272300719066616,11272303149817323],[35184708157440,52776894201984,18593996078378526,18594001619979184],[35184708157440,70368744177792,-13247605101666952,-13247603786922062],[35184708157440,70368811810944,11272300789630083,11272303079253853],[35184708157440,70369013137536,-24519907494573587,-24519905262899363],[35184708157440,105553183375488,-24519907494573587,-24519905262899363],[35184708157440,105553384702080,11272300789630083,11272303079253853],[35184708157440,105553452335232,-13247605101666952,-13247603786922062],[35184708157440,36893488147419103360,-13247605134312055,-13247603754276960],[35184708157440,36893488147486736512,11272300730744752,11272303138139186],[35184708157440,36893488147688063104,-24519907574746803,-24519905182726150],[35184708157440,36893523331858301056,-24519907574746803,-24519905182726150],[35184708157440,36893523332059627648,11272300730744752,11272303138139186],[35184708157440,36893523332127260800,-13247605134312055,-13247603754276960],[35184708157576,67108872,-13247605137681374,-13247603750907644],[35184708157576,67108992,13247603750907644,13247605137681374],[35184708157576,268435464,11272300719066616,11272303149817323],[35184708157576,268435584,-11272303149817323,-11272300719066616],[35184708157576,336068616,-1975303200228061,-1975301819477018],[35184708157576,336068736,1975301819477018,1975303200228061],[35184708157576,35184372088840,1975301819477018,1975303200228061],[35184708157576,35184372088960,-1975303200228061,-1975301819477018],[35184708157576,35184439721992,-11272303149817323,-11272300719066616],[35184708157576,35184439722112,11272300719066616,11272303149817323],[35184708157576,35184641048584,13247603750907644,13247605137681374],[35184708157576,35184641048704,-13247605137681374,-13247603750907644],[35184708157632,67108928,-13247605129676795,-13247603758912222],[35184708157632,67108992,13247603758912222,13247605129676795],[35184708157632,268435520,11272300730744752,11272303138139186],[35184708157632,268435584,-11272303138139186,-11272300730744752],[35184708157632,336068672,-1975303196554503,-1975301823150576],[35184708157632,336068736,1975301823150576,1975303196554503],[35184708157632,35184372088896,1975301823150576,1975303196554503],[35184708157632,35184372088960,-1975303196554503,-1975301823150576],[35184708157632,35184439722048,-11272303138139186,-11272300730744752],[35184708157632,35184439722112,11272300730744752,11272303138139186],[35184708157632,35184641048640,13247603758912222,13247605129676795],[35184708157632,35184641048704,-13247605129676795,-13247603758912222],[35184708158592,67108992,13247603788555150,13247605100033866],[35184708158592,67109888,-13247605100033866,-13247603788555150],[35184708158592,268435584,-11272303079253853,-11272300789630083],[35184708158592,268436480,11272300789630083,11272303079253853],[35184708158592,336068736,1975301852392980,1975303167312100],[35184708158592,336069632,-1975303167312100,-1975301852392980],[35184708158592,35184372088960,-1975303167312100,-1975301852392980],[35184708158592,35184372089856,1975301852392980,1975303167312100],[35184708158592,35184439722112,11272300789630083,11272303079253853],[35184708158592,35184439723008,-11272303079253853,-11272300789630083],[35184708158592,35184641048704,-13247605100033866,-13247603788555150],[35184708158592,35184641049600,13247603788555150,13247605100033866],[35184708288520,524296,-13247605134312055,-13247603754276960],[35184708288520,655360,13247603754276960,13247605134312055],[35184708288520,67108872,1975301819477018,1975303200228061],[35184708288520,67239936,-1975303200228061,-1975301819477018],[35184708288520,268435464,-7321700748173631,-7321693081300137],[35184708288520,268566528,-3950609898973822,-3950600140436346],[35184708288520,268959744,-1975303200228061,-1975301819477018],[35184708288520,269090824,-13247605134312055,-13247603754276960],[35184708288520,335544320,13247603754276960,13247605134312055],[35184708288520,335675400,1975301819477018,1975303200228061],[35184708288520,336068616,-7321700748173631,-7321693081300137],[35184708288520,336199680,18593996061574096,18594001636783608],[35184708288520,35184372088840,18593996061574096,18594001636783608],[35184708288520,35184372219904,-7321700748173631,-7321693081300137],[35184708288520,35184372613120,1975301819477018,1975303200228061],[35184708288520,35184372744200,13247603754276960,13247605134312055],[35184708288520,35184439197696,-13247605134312055,-13247603754276960],[35184708288520,35184439328776,-1975303200228061,-1975301819477018],[35184708288520,35184439721992,-3950609898973822,-3950600140436346],[35184708288520,35184439853056,-7321700748173631,-7321693081300137],[35184708288520,35184641048584,-1975303200228061,-1975301819477018],[35184708288520,35184641179648,1975301819477018,1975303200228061],[35184708288520,35184707633160,13247603754276960,13247605134312055],[35184708288520,35184707764224,-13247605134312055,-13247603754276960],[35184708288640,131200,22544603189358414,22544604548409457],[35184708288640,655360,-22544604548409457,-22544603189358414],[35184708288640,67108992,-24519907748637518,-24519905008835432],[35184708288640,67239936,13247603750907644,13247605137681374],[35184708288640,67633152,11272300039541091,11272303829342841],[35184708288640,268435584,47064508334725266,47064512160515549],[35184708288640,268566528,11272300039541091,11272303829342841],[35184708288640,268959744,-35792211106366460,-35792205519990416],[35184708288640,269090944,22544603189358414,22544604548409457],[35184708288640,335544320,-22544604548409457,-22544603189358414],[35184708288640,335675520,47064508334725266,47064512160515549],[35184708288640,336068736,-24519907748637518,-24519905008835432],[35184708288640,336199680,-45089209126982928,-45089206348552808],[35184708288640,35184372088960,-45089209126982928,-45089206348552808],[35184708288640,35184372219904,-24519907748637518,-24519905008835432],[35184708288640,35184372613120,47064508334725266,47064512160515549],[35184708288640,35184372744320,-22544604548409457,-22544603189358414],[35184708288640,35184439197696,22544603189358414,22544604548409457],[35184708288640,35184439328896,-35792211106366460,-35792205519990416],[35184708288640,35184439722112,11272300039541091,11272303829342841],[35184708288640,35184439853056,47064508334725266,47064512160515549],[35184708288640,35184640655488,11272300039541091,11272303829342841],[35184708288640,35184641048704,13247603750907644,13247605137681374],[35184708288640,35184641179648,-24519907748637518,-24519905008835432],[35184708288640,35184707633280,-22544604548409457,-22544603189358414],[35184708288640,35184708157440,22544603189358414,22544604548409457],[35184708681728,68681856,13247603788555150,13247605100033866],[35184708681728,68682752,-1975303134589986,-1975301885115096],[35184708681728,202376192,13247603822461068,13247605066127948],[35184708681728,270008448,-11272303079253853,-11272300789630083],[35184708681728,270009344,24519905280236082,24519907477236870],[35184708681728,336068736,-1975303167312100,-1975301852392980],[35184708681728,336069632,-22544604497985104,-22544603239782766],[35184708681728,403702784,-26495209992202640,-26495207784975390],[35184708681728,469763072,13247603811716528,13247605076872486],[35184708681728,35184373661824,-1975303167312100,-1975301852392980],[35184708681728,35184373662720,-22544604497985104,-22544603239782766],[35184708681728,35184439722112,-11272303079253853,-11272300789630083],[35184708681728,35184439723008,24519905280236082,24519907477236870],[35184708681728,35184507356160,13247603811716528,13247605076872486],[35184708681728,35184573416448,-26495209992202640,-26495207784975390],[35184708681728,35184641048704,13247603788555150,13247605100033866],[35184708681728,35184641049600,-1975303134589986,-1975301885115096],[35184708681728,35184774743040,13247603822461068,13247605066127948],[35184709206144,67108992,-1975303134589986,-1975301885115096],[35184709206144,67633152,-11272303061044145,-11272300807839789],[35184709206144,68157440,13247603788555150,13247605100033866],[35184709206144,268435584,24519905280236082,24519907477236870],[35184709206144,268959744,-13247606381210832,-13247602507378184],[35184709206144,269484032,-11272303079253853,-11272300789630083],[35184709206144,336068736,-1975303167312100,-1975301852392980],[35184709206144,336593024,24519905244697076,24519907512775874],[35184709206144,337117184,-22544604497985104,-22544603239782766],[35184709206144,35184372088960,-22544604497985104,-22544603239782766],[35184709206144,35184372613120,24519905244697076,24519907512775874],[35184709206144,35184373137408,-1975303167312100,-1975301852392980],[35184709206144,35184439722112,-11272303079253853,-11272300789630083],[35184709206144,35184440246400,-13247606381210832,-13247602507378184],[35184709206144,35184440770560,24519905280236082,24519907477236870],[35184709206144,35184641048704,13247603788555150,13247605100033866],[35184709206144,35184641572992,-11272303061044145,-11272300807839789],[35184709206144,35184642097152,-1975303134589986,-1975301885115096],[35184709207040,67109888,1975301885115096,1975303134589986],[35184709207040,68157440,-1975303134589986,-1975301885115096],[35184709207040,268436480,-24519907477236870,-24519905280236082],[35184709207040,269484032,24519905280236082,24519907477236870],[35184709207040,336069632,-22544604497985104,-22544603239782766],[35184709207040,337117184,22544603239782766,22544604497985104],[35184709207040,35184372089856,22544603239782766,22544604497985104],[35184709207040,35184373137408,-22544604497985104,-22544603239782766],[35184709207040,35184439723008,24519905280236082,24519907477236870],[35184709207040,35184440770560,-24519907477236870,-24519905280236082],[35184709207040,35184641049600,-1975303134589986,-1975301885115096],[35184709207040,35184642097152,1975301885115096,1975303134589986],[35184774742024,134742152,-13247605100033866,-13247603788555150],[35184774742024,134873096,1975301852392980,1975303167312100],[35184774742024,201457672,-13247605101666952,-13247603786922062],[35184774742024,268959880,11272300807839789,11272303061044145],[35184774742024,269090824,-24519907512775874,-24519905244697076],[35184774742024,335675400,11272300798196740,11272303070687196],[35184774742024,403177600,1975301885115096,1975303134589986],[35184774742024,403308544,22544603239782766,22544604497985104],[35184774742024,469893120,1975301877105131,1975303142599947],[35184774742024,35184372613256,1975301885115096,1975303134589986],[35184774742024,35184372744200,22544603239782766,22544604497985104],[35184774742024,35184439328776,1975301877105131,1975303142599947],[35184774742024,35184506830976,11272300807839789,11272303061044145],[35184774742024,35184506961920,-24519907512775874,-24519905244697076],[35184774742024,35184573546496,11272300798196740,11272303070687196],[35184774742024,35184641048704,-13247605100033866,-13247603788555150],[35184774742024,35184641179648,1975301852392980,1975303167312100],[35184774742024,35184707764224,-13247605101666952,-13247603786922062],[35184774742144,67633152,9296998646110384,9297000203068470],[35184774742144,134742152,13247603788555150,13247605100033866],[35184774742144,134873216,-1975303167312100,-1975301852392980],[35184774742144,201851008,-974533467,974533465],[35184774742144,268959880,-11272303061044145,-11272300807839789],[35184774742144,269090944,24519905244697076,24519907512775874],[35184774742144,336068736,-11272303070687196,-11272300798196740],[35184774742144,403177480,-1975303134589986,-1975301885115096],[35184774742144,403308544,-22544604497985104,-22544603239782766],[35184774742144,470286336,20569300415763760,20569302302299032],[35184774742144,17592186568704,13247603822461068,13247605066127948],[35184774742144,17592320786560,-11272303061044145,-11272300807839789],[35184774742144,17592455004288,24519905262899363,24519907494573587],[35184774742144,35184372613256,-1975303134589986,-1975301885115096],[35184774742144,35184372744320,-22544604497985104,-22544603239782766],[35184774742144,35184439722112,20569300415763760,20569302302299032],[35184774742144,35184506830856,-11272303061044145,-11272300807839789],[35184774742144,35184506961920,24519905244697076,24519907512775874],[35184774742144,35184573939712,-11272303070687196,-11272300798196740],[35184774742144,35184641048584,13247603788555150,13247605100033866],[35184774742144,35184641179648,-1975303167312100,-1975301852392980],[35184774742144,35184708157440,-974533467,974533465],[35184774742144,35184842375296,9296998646110384,9297000203068470],[35184774742144,52776692875264,24519905262899363,24519907494573587],[35184774742144,52776827092992,-11272303061044145,-11272300807839789],[35184774742144,52776961310848,13247603822461068,13247605066127948],[35184774743040,68157440,13247603822461068,13247605066127948],[35184774743040,202376192,13247603822461068,13247605066127948],[35184774743040,17592187092992,-13247605066127948,-13247603822461068],[35184774743040,17592321311744,-13247605066127948,-13247603822461068],[35184774743040,35184708681728,13247603822461068,13247605066127948],[35184774743040,35184842900480,13247603822461068,13247605066127948],[35184774743040,52776827617280,-13247605066127948,-13247603822461068],[35184774743040,52776961836032,-13247605066127948,-13247603822461068],[35184774873088,134873096,-1975303167312100,-1975301852392980],[35184774873088,134873216,13247603788555150,13247605100033866],[35184774873088,201457672,13247603786922062,13247605101666952],[35184774873088,269090824,24519905244697076,24519907512775874],[35184774873088,269090944,-11272303061044145,-11272300807839789],[35184774873088,335675400,-11272303070687196,-11272300798196740],[35184774873088,403177480,-22544604497985104,-22544603239782766],[35184774873088,403177600,-1975303134589986,-1975301885115096],[35184774873088,469762056,-1975303142599947,-1975301877105131],[35184774873088,35184372744200,-22544604497985104,-22544603239782766],[35184774873088,35184372744320,-1975303134589986,-1975301885115096],[35184774873088,35184439328776,-1975303142599947,-1975301877105131],[35184774873088,35184506830856,24519905244697076,24519907512775874],[35184774873088,35184506830976,-11272303061044145,-11272300807839789],[35184774873088,35184573415432,-11272303070687196,-11272300798196740],[35184774873088,35184641048584,-1975303167312100,-1975301852392980],[35184774873088,35184641048704,13247603788555150,13247605100033866],[35184774873088,35184707633160,13247603786922062,13247605101666952],[35184775266304,67108992,-9297000203068470,-9296998646110384],[35184775266304,134873216,-11272303079253853,-11272300789630083],[35184775266304,201851008,-974533465,974533467],[35184775266304,269090944,-13247606381210832,-13247602507378184],[35184775266304,336068736,11272300798196740,11272303070687196],[35184775266304,402784384,24519905280236082,24519907477236870],[35184775266304,469762176,-20569302302299032,-20569300415763760],[35184775266304,17592186044544,-13247605066127948,-13247603822461068],[35184775266304,17592320786560,11272300807839789,11272303061044145],[35184775266304,17592455004288,-24519907494573587,-24519905262899363],[35184775266304,35184372744320,24519905280236082,24519907477236870],[35184775266304,35184439722112,-20569302302299032,-20569300415763760],[35184775266304,35184506437760,-13247606381210832,-13247602507378184],[35184775266304,35184573415552,11272300798196740,11272303070687196],[35184775266304,35184640655488,-11272303079253853,-11272300789630083],[35184775266304,35184707633280,-974533465,974533467],[35184775266304,35184842375296,-9297000203068470,-9296998646110384],[35184775266304,52776692351104,-24519907494573587,-24519905262899363],[35184775266304,52776826568832,11272300807839789,11272303061044145],[35184775266304,52776961310848,-13247605066127948,-13247603822461068],[35184775266440,134217736,-13247605100033866,-13247603788555150],[35184775266440,134217856,13247603788555150,13247605100033866],[35184775266440,268435464,11272300807839789,11272303061044145],[35184775266440,268435584,-11272303061044145,-11272300807839789],[35184775266440,403177480,-1975303134589986,-1975301885115096],[35184775266440,403177600,1975301885115096,1975303134589986],[35184775266440,35184372088840,1975301885115096,1975303134589986],[35184775266440,35184372088960,-1975303134589986,-1975301885115096],[35184775266440,35184506830856,-11272303061044145,-11272300807839789],[35184775266440,35184506830976,11272300807839789,11272303061044145],[35184775266440,35184641048584,13247603788555150,13247605100033866],[35184775266440,35184641048704,-13247605100033866,-13247603788555150],[35184775397384,134217736,1975301852392980,1975303167312100],[35184775397384,134348800,-1975303167312100,-1975301852392980],[35184775397384,268435464,-24519907512775874,-24519905244697076],[35184775397384,268566528,24519905244697076,24519907512775874],[35184775397384,403177480,-22544604497985104,-22544603239782766],[35184775397384,403308544,22544603239782766,22544604497985104],[35184775397384,35184372088840,22544603239782766,22544604497985104],[35184775397384,35184372219904,-22544604497985104,-22544603239782766],[35184775397384,35184506830856,24519905244697076,24519907512775874],[35184775397384,35184506961920,-24519907512775874,-24519905244697076],[35184775397384,35184641048584,-1975303167312100,-1975301852392980],[35184775397384,35184641179648,1975301852392980,1975303167312100],[35184775397504,134217856,-1975303167312100,-1975301852392980],[35184775397504,134348800,13247603788555150,13247605100033866],[35184775397504,134742016,-11272303079253853,-11272300789630083],[35184775397504,268435584,24519905244697076,24519907512775874],[35184775397504,268566528,-11272303061044145,-11272300807839789],[35184775397504,268959744,-13247606381210832,-13247602507378184],[35184775397504,402784384,24519905280236082,24519907477236870],[35184775397504,403177600,-1975303134589986,-1975301885115096],[35184775397504,403308544,-22544604497985104,-22544603239782766],[35184775397504,35184372088960,-22544604497985104,-22544603239782766],[35184775397504,35184372219904,-1975303134589986,-1975301885115096],[35184775397504,35184372613120,24519905280236082,24519907477236870],[35184775397504,35184506437760,-13247606381210832,-13247602507378184],[35184775397504,35184506830976,-11272303061044145,-11272300807839789],[35184775397504,35184506961920,24519905244697076,24519907512775874],[35184775397504,35184640655488,-11272303079253853,-11272300789630083],[35184775397504,35184641048704,13247603788555150,13247605100033866],[35184775397504,35184641179648,-1975303167312100,-1975301852392980],[35184775790592,67109888,-13247605066127948,-13247603822461068],[35184775790592,202376192,-13247605066127948,-13247603822461068],[35184775790592,17592186045440,13247603822461068,13247605066127948],[35184775790592,17592321311744,13247603822461068,13247605066127948],[35184775790592,35184707634176,-13247605066127948,-13247603822461068],[35184775790592,35184842900480,-13247605066127948,-13247603822461068],[35184775790592,52776826569728,13247603822461068,13247605066127948],[35184775790592,52776961836032,13247603822461068,13247605066127948],[35184841981960,134217736,-13247605101666952,-13247603786922062],[35184841981960,134348800,13247603786922062,13247605101666952],[35184841981960,268435464,11272300798196740,11272303070687196],[35184841981960,268566528,-11272303070687196,-11272300798196740],[35184841981960,469762056,-1975303142599947,-1975301877105131],[35184841981960,469893120,1975301877105131,1975303142599947],[35184841981960,35184372088840,1975301877105131,1975303142599947],[35184841981960,35184372219904,-1975303142599947,-1975301877105131],[35184841981960,35184573415432,-11272303070687196,-11272300798196740],[35184841981960,35184573546496,11272300798196740,11272303070687196],[35184841981960,35184707633160,13247603786922062,13247605101666952],[35184841981960,35184707764224,-13247605101666952,-13247603786922062],[35184842375296,67108992,-9297000203068470,-9296998646110384],[35184842375296,67633152,9296998646110384,9297000203068470],[35184842375296,134217856,11272301100150310,11272302768733624],[35184842375296,134742016,-11272302768733624,-11272301100150310],[35184842375296,268435584,-13247606381210832,-13247602507378184],[35184842375296,268959744,13247602507378184,13247606381210832],[35184842375296,469762176,-11272302715781341,-11272301153102595],[35184842375296,470286336,11272301153102595,11272302715781341],[35184842375296,35184372088960,11272301153102595,11272302715781341],[35184842375296,35184372613120,-11272302715781341,-11272301153102595],[35184842375296,35184573415552,13247602507378184,13247606381210832],[35184842375296,35184573939712,-13247606381210832,-13247602507378184],[35184842375296,35184707633280,-11272302768733624,-11272301100150310],[35184842375296,35184708157440,11272301100150310,11272302768733624],[35184842375296,35184774742144,9296998646110384,9297000203068470],[35184842375296,35184775266304,-9297000203068470,-9296998646110384],[35184842900480,67109888,-13247605066127948,-13247603822461068],[35184842900480,68157440,13247603822461068,13247605066127948],[35184842900480,268436480,26495207784975390,26495209992202640],[35184842900480,269484032,-26495209992202640,-26495207784975390],[35184842900480,469763072,13247603811716528,13247605076872486],[35184842900480,470810624,-13247605076872486,-13247603811716528],[35184842900480,35184372089856,-13247605076872486,-13247603811716528],[35184842900480,35184373137408,13247603811716528,13247605076872486],[35184842900480,35184573416448,-26495209992202640,-26495207784975390],[35184842900480,35184574464000,26495207784975390,26495209992202640],[35184842900480,35184774743040,13247603822461068,13247605066127948],[35184842900480,35184775790592,-13247605066127948,-13247603822461068],[35185445863428,1409286148,-13247605076872486,-13247603811716528],[35185445863428,1409318912,13247603811716528,13247605076872486],[35185445863428,17593326895108,-13247605066127948,-13247603822461068],[35185445863428,17593326927872,13247603822461068,13247605066127948],[35185445863428,35184707633156,13247603811716528,13247605076872486],[35185445863428,35184707665920,-13247605076872486,-13247603811716528],[35185445863428,52776625242116,13247603822461068,13247605066127948],[35185445863428,52776625274880,-13247605066127948,-13247603822461068],[35185445863428,158330748141572,22544603251967752,22544604485800118],[35185445863428,158330748174336,-22544604485800118,-22544603251967752],[35185445863428,193514046488580,-22544604485800118,-22544603251967752],[35185445863428,193514046521344,22544603251967752,22544604485800118],[35185445961736,1409286152,24519905244697076,24519907512775874],[35185445961736,1409417216,-24519907512775874,-24519905244697076],[35185445961736,17593326895112,-11272303061044145,-11272300807839789],[35185445961736,17593327026176,11272300807839789,11272303061044145],[35185445961736,35184707633160,-24519907512775874,-24519905244697076],[35185445961736,35184707764224,24519905244697076,24519907512775874],[35185445961736,52776625242120,11272300807839789,11272303061044145],[35185445961736,52776625373184,-11272303061044145,-11272300807839789],[35185446355072,1409286272,-9297000585232538,-9296998263946318],[35185446355072,1409810432,9296998263946318,9297000585232538],[35185446355072,35184707633280,9296998263946318,9297000585232538],[35185446355072,35184708157440,-9297000585232538,-9296998263946318],[35185512939524,268468224,13247603811716528,13247605076872486],[35185512939524,1342210052,13247603811716528,13247605076872486],[35185512939524,17592186077184,13247603822461068,13247605066127948],[35185512939524,17593259819012,13247603822461068,13247605066127948],[35185512939524,35184707665920,13247603811716528,13247605076872486],[35185512939524,35185781407748,13247603811716528,13247605076872486],[35185512939524,52776625274880,13247603822461068,13247605066127948],[35185512939524,52777699016708,13247603822461068,13247605066127948],[35185512939528,268566528,-13247605076872486,-13247603811716528],[35185512939528,335675400,11272300798196740,11272303070687196],[35185512939528,1342308360,-24519907512775874,-24519905244697076],[35185512939528,17592186175488,-13247605066127948,-13247603822461068],[35185512939528,17592253284360,-24519907494573587,-24519905262899363],[35185512939528,17593259917320,11272300807839789,11272303061044145],[35185512939528,35184707764224,-24519907512775874,-24519905244697076],[35185512939528,35185714397184,11272300798196740,11272303070687196],[35185512939528,35185781506056,-13247605076872486,-13247603811716528],[35185512939528,52776625373184,11272300807839789,11272303061044145],[35185512939528,52777632006144,-24519907494573587,-24519905262899363],[35185512939528,52777699115016,-13247605066127948,-13247603822461068],[35185512939648,336068736,-11272303070687196,-11272300798196740],[35185512939648,1342701696,11272300798196740,11272303070687196],[35185512939648,35184708157440,11272300798196740,11272303070687196],[35185512939648,35185714790400,-11272303070687196,-11272300798196740],[35185512972288,268435460,-13247605076872486,-13247603811716528],[35185512972288,1342210052,-13247605076872486,-13247603811716528],[35185512972288,17592186044420,-13247605066127948,-13247603822461068],[35185512972288,17593259819012,-13247605066127948,-13247603822461068],[35185512972288,35184707633156,-13247605076872486,-13247603811716528],[35185512972288,35185781407748,-13247605076872486,-13247603811716528],[35185512972288,52776625242116,-13247605066127948,-13247603822461068],[35185512972288,52777699016708,-13247605066127948,-13247603822461068],[35185513070592,268435464,13247603811716528,13247605076872486],[35185513070592,335675400,-11272303070687196,-11272300798196740],[35185513070592,1342308360,24519905244697076,24519907512775874],[35185513070592,17592186044424,13247603822461068,13247605066127948],[35185513070592,17592253284360,24519905262899363,24519907494573587],[35185513070592,17593259917320,-11272303061044145,-11272300807839789],[35185513070592,35184707633160,24519905244697076,24519907512775874],[35185513070592,35185714266120,-11272303070687196,-11272300798196740],[35185513070592,35185781506056,13247603811716528,13247605076872486],[35185513070592,52776625242120,-11272303061044145,-11272300807839789],[35185513070592,52777631875080,24519905262899363,24519907494573587],[35185513070592,52777699115016,13247603822461068,13247605066127948],[35185513463808,336068736,11272300798196740,11272303070687196],[35185513463808,1342701696,-11272303070687196,-11272300798196740],[35185513463808,35184707633280,-11272303070687196,-11272300798196740],[35185513463808,35185714266240,11272300798196740,11272303070687196],[35185714266120,335675400,-11272303070687196,-11272300798196740],[35185714266120,1409417216,11272300798196740,11272303070687196],[35185714266120,35184439328776,11272300798196740,11272303070687196],[35185714266120,35185513070592,-11272303070687196,-11272300798196740],[35185714266240,67633152,1975301858410281,1975303161294799],[35185714266240,336068736,11272300798196740,11272303070687196],[35185714266240,1409810432,-9297000585232538,-9296998263946318],[35185714266240,35184439722112,-9297000585232538,-9296998263946318],[35185714266240,35185513463808,11272300798196740,11272303070687196],[35185714266240,35185781899392,1975301858410281,1975303161294799],[35185714397184,335675400,11272300798196740,11272303070687196],[35185714397184,1409286152,-11272303070687196,-11272300798196740],[35185714397184,35184439328776,-11272303070687196,-11272300798196740],[35185714397184,35185512939528,11272300798196740,11272303070687196],[35185714790400,67108992,-1975303161294799,-1975301858410281],[35185714790400,336068736,-11272303070687196,-11272300798196740],[35185714790400,1409286272,9296998263946318,9297000585232538],[35185714790400,35184439722112,9296998263946318,9297000585232538],[35185714790400,35185512939648,-11272303070687196,-11272300798196740],[35185714790400,35185781899392,-1975303161294799,-1975301858410281],[35185781407748,268435460,-13247605076872486,-13247603811716528],[35185781407748,268468224,13247603811716528,13247605076872486],[35185781407748,1409286148,-13247605076872486,-13247603811716528],[35185781407748,1409318912,13247603811716528,13247605076872486],[35185781407748,35184372088836,13247603811716528,13247605076872486],[35185781407748,35184372121600,-13247605076872486,-13247603811716528],[35185781407748,35185512939524,13247603811716528,13247605076872486],[35185781407748,35185512972288,-13247605076872486,-13247603811716528],[35185781506056,268435464,13247603811716528,13247605076872486],[35185781506056,268566528,-13247605076872486,-13247603811716528],[35185781506056,1409286152,13247603811716528,13247605076872486],[35185781506056,1409417216,-13247605076872486,-13247603811716528],[35185781506056,35184372088840,-13247605076872486,-13247603811716528],[35185781506056,35184372219904,13247603811716528,13247605076872486],[35185781506056,35185512939528,-13247605076872486,-13247603811716528],[35185781506056,35185513070592,13247603811716528,13247605076872486],[35185781899392,67108992,-1975303161294799,-1975301858410281],[35185781899392,67633152,1975301858410281,1975303161294799],[35185781899392,1073741952,1975301858410281,1975303161294799],[35185781899392,1074266112,-1975303161294799,-1975301858410281],[35185781899392,35184707633280,-1975303161294799,-1975301858410281],[35185781899392,35184708157440,1975301858410281,1975303161294799],[35185781899392,35185714266240,1975301858410281,1975303161294799],[35185781899392,35185714790400,-1975303161294799,-1975301858410281],[52776558264328,17592186044424,-1975304963903298,-1975300055801777],[52776558264328,17592186175488,1975300055801777,1975304963903298],[52776558264328,17592521588744,3950603736210166,3950606303199992],[52776558264328,17592521719808,-3950606303199992,-3950603736210166],[52776558264328,35184372088840,1975300055801777,1975304963903298],[52776558264328,35184372219904,-1975304963903298,-1975300055801777],[52776558264328,35184707633160,-3950606303199992,-3950603736210166],[52776558264328,35184707764224,3950603736210166,3950606303199992],[52776558657664,17592186044544,1975300055801777,1975304963903298],[52776558657664,17592186568704,-1975304963903298,-1975300055801777],[52776558657664,17592521588864,-3950606303199992,-3950603736210166],[52776558657664,17592522113024,3950603736210166,3950606303199992],[52776558657664,35184372088960,-1975304963903298,-1975300055801777],[52776558657664,35184372613120,1975300055801777,1975304963903298],[52776558657664,35184707633280,3950603736210166,3950606303199992],[52776558657664,35184708157440,-3950606303199992,-3950603736210166],[52776625242114,17592186175498,-13247605129676795,-13247603758912222],[52776625242114,17592253284360,13247603758912222,13247605129676795],[52776625242114,35184372219914,13247603758912222,13247605129676795],[52776625242114,35184439328776,-13247605129676795,-13247603758912222],[52776625242116,17592186175500,-13247605100033866,-13247603788555150],[52776625242116,17592186208260,1975301885115096,1975303134589986],[52776625242116,17592253284360,13247603788555150,13247605100033866],[52776625242116,17592253317120,-1975303134589986,-1975301885115096],[52776625242116,17593259819012,-13247605066127948,-13247603822461068],[52776625242116,17593326927872,13247603822461068,13247605066127948],[52776625242116,35184372219916,13247603788555150,13247605100033866],[52776625242116,35184372252676,-1975303134589986,-1975301885115096],[52776625242116,35184439328776,-13247605100033866,-13247603788555150],[52776625242116,35184439361536,1975301885115096,1975303134589986],[52776625242116,35185445863428,13247603822461068,13247605066127948],[52776625242116,35185512972288,-13247605066127948,-13247603822461068],[52776625242120,268566528,45089206340998288,45089209134537452],[52776625242120,335675400,49039810952496628,49039814562449270],[52776625242120,17592186044424,13247602500871785,13247606387717226],[52776625242120,17592186175498,13247603758912222,13247605129676795],[52776625242120,17592186175500,13247603788555150,13247605100033866],[52776625242120,17592186175624,13247603750907644,13247605137681374],[52776625242120,17592186208264,-1975303134589986,-1975301885115096],[52776625242120,17592186699784,-1975303200228061,-1975301819477018],[52776625242120,17592253153280,-13247606387717226,-13247602500871785],[52776625242120,17592253284354,-13247605129676795,-13247603758912222],[52776625242120,17592253284356,-13247605100033866,-13247603788555150],[52776625242120,17592253284480,-13247605137681374,-13247603750907644],[52776625242120,17592253317120,1975301885115096,1975303134589986],[52776625242120,17592253808640,1975301819477018,1975303200228061],[52776625242120,17592454610952,-15222909453017315,-15222904455276782],[52776625242120,17592521719808,11272300719066616,11272303149817323],[52776625242120,17593259917320,-11272303061044145,-11272300807839789],[52776625242120,17593327026176,11272300807839789,11272303061044145],[52776625242120,35184372088840,-13247606387717226,-13247602500871785],[52776625242120,35184372219914,-13247605129676795,-13247603758912222],[52776625242120,35184372219916,-13247605100033866,-13247603788555150],[52776625242120,35184372220040,-13247605137681374,-13247603750907644],[52776625242120,35184372252680,1975301885115096,1975303134589986],[52776625242120,35184372744200,1975301819477018,1975303200228061],[52776625242120,35184439197696,13247602500871785,13247606387717226],[52776625242120,35184439328770,13247603758912222,13247605129676795],[52776625242120,35184439328772,13247603788555150,13247605100033866],[52776625242120,35184439328896,13247603750907644,13247605137681374],[52776625242120,35184439361536,-1975303134589986,-1975301885115096],[52776625242120,35184439853056,-1975303200228061,-1975301819477018],[52776625242120,35184640655368,11272300719066616,11272303149817323],[52776625242120,35184707764224,-15222909453017315,-15222904455276782],[52776625242120,35185445961736,11272300807839789,11272303061044145],[52776625242120,35185513070592,-11272303061044145,-11272300807839789],[52776625242120,52776826699776,49039810952496628,49039814562449270],[52776625242120,52776893808648,45089206340998288,45089209134537452],[52776625242120,70368744308736,1975301858410281,1975303161294799],[52776625242120,70368811417608,1975301858410281,1975303161294799],[52776625242120,123145302441984,1975301858410281,1975303161294799],[52776625242120,123145369550856,1975301858410281,1975303161294799],[52776625242120,140737488486400,-1975303161294799,-1975301858410281],[52776625242120,140737555595272,-1975303161294799,-1975301858410281],[52776625242120,193514046619648,-1975303161294799,-1975301858410281],[52776625242120,193514113728520,-1975303161294799,-1975301858410281],[52776625242120,4611686018427518976,-22544604548409457,-22544603189358414],[52776625242120,4611686018494627848,-22544604548409457,-22544603189358414],[52776625242120,4611738794985652224,-22544604548409457,-22544603189358414],[52776625242120,4611738795052761096,-22544604548409457,-22544603189358414],[52776625242120,36893488147419234304,22544603189358414,22544604548409457],[52776625242120,36893488147486343176,22544603189358414,22544604548409457],[52776625242120,36893540923977367552,22544603189358414,22544604548409457],[52776625242120,36893540924044476424,22544603189358414,22544604548409457],[52776625242240,336068736,-49039814562449270,-49039810952496628],[52776625242240,17592186175624,-13247605137681374,-13247603750907644],[52776625242240,17592186699904,1975301819477018,1975303200228061],[52776625242240,17592253284360,13247603750907644,13247605137681374],[52776625242240,17592253808640,-1975303200228061,-1975301819477018],[52776625242240,17592455004288,11272298321696800,11272305547187129],[52776625242240,17592522113024,37767509015262141,37767512630799828],[52776625242240,35184372220040,13247603750907644,13247605137681374],[52776625242240,35184372744320,-1975303200228061,-1975301819477018],[52776625242240,35184439328776,-13247605137681374,-13247603750907644],[52776625242240,35184439853056,1975301819477018,1975303200228061],[52776625242240,35184641048704,37767509015262141,37767512630799828],[52776625242240,35184708157440,11272298321696800,11272305547187129],[52776625242240,52776827092992,-49039814562449270,-49039810952496628],[52776625274880,17592186208260,-1975303134589986,-1975301885115096],[52776625274880,17592186208264,13247603788555150,13247605100033866],[52776625274880,17592253284356,1975301885115096,1975303134589986],[52776625274880,17592253284360,-13247605100033866,-13247603788555150],[52776625274880,17593259819012,13247603822461068,13247605066127948],[52776625274880,17593326895108,-13247605066127948,-13247603822461068],[52776625274880,35184372252676,1975301885115096,1975303134589986],[52776625274880,35184372252680,-13247605100033866,-13247603788555150],[52776625274880,35184439328772,-1975303134589986,-1975301885115096],[52776625274880,35184439328776,13247603788555150,13247605100033866],[52776625274880,35185445863428,-13247605066127948,-13247603822461068],[52776625274880,35185512939524,13247603822461068,13247605066127948],[52776625373184,268435464,-45089209134537452,-45089206340998288],[52776625373184,335675400,-49039814562449270,-49039810952496628],[52776625373184,17592186208264,-11272303061044145,-11272300807839789],[52776625373184,17592186699784,-11272303149817323,-11272300719066616],[52776625373184,17592253186056,11272300807839789,11272303061044145],[52776625373184,17592253677576,11272300719066616,11272303149817323],[52776625373184,17592454610952,15222904455276782,15222909453017315],[52776625373184,17592521588744,-11272303149817323,-11272300719066616],[52776625373184,17593259917320,11272300807839789,11272303061044145],[52776625373184,17593326895112,-11272303061044145,-11272300807839789],[52776625373184,35184372252680,11272300807839789,11272303061044145],[52776625373184,35184372744200,11272300719066616,11272303149817323],[52776625373184,35184439230472,-11272303061044145,-11272300807839789],[52776625373184,35184439721992,-11272303149817323,-11272300719066616],[52776625373184,35184640655368,-11272303149817323,-11272300719066616],[52776625373184,35184707633160,15222904455276782,15222909453017315],[52776625373184,35185445961736,-11272303061044145,-11272300807839789],[52776625373184,35185512939528,11272300807839789,11272303061044145],[52776625373184,52776826568712,-49039814562449270,-49039810952496628],[52776625373184,52776893808648,-45089209134537452,-45089206340998288],[52776625373184,70368744177672,-1975303161294799,-1975301858410281],[52776625373184,70368811417608,-1975303161294799,-1975301858410281],[52776625373184,123145302310920,-1975303161294799,-1975301858410281],[52776625373184,123145369550856,-1975303161294799,-1975301858410281],[52776625373184,140737488355336,1975301858410281,1975303161294799],[52776625373184,140737555595272,1975301858410281,1975303161294799],[52776625373184,193514046488584,1975301858410281,1975303161294799],[52776625373184,193514113728520,1975301858410281,1975303161294799],[52776625373184,4611686018427387912,22544603189358414,22544604548409457],[52776625373184,4611686018494627848,22544603189358414,22544604548409457],[52776625373184,4611738794985521160,22544603189358414,22544604548409457],[52776625373184,4611738795052761096,22544603189358414,22544604548409457],[52776625373184,36893488147419103240,-22544604548409457,-22544603189358414],[52776625373184,36893488147486343176,-22544604548409457,-22544603189358414],[52776625373184,36893540923977236488,-22544604548409457,-22544603189358414],[52776625373184,36893540924044476424,-22544604548409457,-22544603189358414],[52776625373194,17592186044418,-13247605129676795,-13247603758912222],[52776625373194,17592186044424,13247603758912222,13247605129676795],[52776625373194,17592253284354,-13247605129676795,-13247603758912222],[52776625373194,17592253284360,13247603758912222,13247605129676795],[52776625373194,35184372088834,13247603758912222,13247605129676795],[52776625373194,35184372088840,-13247605129676795,-13247603758912222],[52776625373194,35184439328770,13247603758912222,13247605129676795],[52776625373194,35184439328776,-13247605129676795,-13247603758912222],[52776625373196,17592186044420,-13247605100033866,-13247603788555150],[52776625373196,17592186044424,13247603788555150,13247605100033866],[52776625373196,17592253284356,-13247605100033866,-13247603788555150],[52776625373196,17592253284360,13247603788555150,13247605100033866],[52776625373196,35184372088836,13247603788555150,13247605100033866],[52776625373196,35184372088840,-13247605100033866,-13247603788555150],[52776625373196,35184439328772,13247603788555150,13247605100033866],[52776625373196,35184439328776,-13247605100033866,-13247603788555150],[52776625373320,17592186044424,13247603750907644,13247605137681374],[52776625373320,17592186044544,-13247605137681374,-13247603750907644],[52776625373320,17592253284360,13247603750907644,13247605137681374],[52776625373320,17592253284480,-13247605137681374,-13247603750907644],[52776625373320,35184372088840,-13247605137681374,-13247603750907644],[52776625373320,35184372088960,13247603750907644,13247605137681374],[52776625373320,35184439328776,-13247605137681374,-13247603750907644],[52776625373320,35184439328896,13247603750907644,13247605137681374],[52776625405956,17592186044420,1975301885115096,1975303134589986],[52776625405956,17592186077184,-1975303134589986,-1975301885115096],[52776625405956,17592253284356,1975301885115096,1975303134589986],[52776625405956,17592253317120,-1975303134589986,-1975301885115096],[52776625405956,35184372088836,-1975303134589986,-1975301885115096],[52776625405956,35184372121600,1975301885115096,1975303134589986],[52776625405956,35184439328772,-1975303134589986,-1975301885115096],[52776625405956,35184439361536,1975301885115096,1975303134589986],[52776625405960,17592186044424,-1975303134589986,-1975301885115096],[52776625405960,17592186077184,13247603788555150,13247605100033866],[52776625405960,17592186175488,-11272303061044145,-11272300807839789],[52776625405960,17592253186056,11272300807839789,11272303061044145],[52776625405960,17592253284360,-13247605100033866,-13247603788555150],[52776625405960,17592253317120,1975301885115096,1975303134589986],[52776625405960,35184372088840,1975301885115096,1975303134589986],[52776625405960,35184372121600,-13247605100033866,-13247603788555150],[52776625405960,35184372219904,11272300807839789,11272303061044145],[52776625405960,35184439230472,-11272303061044145,-11272300807839789],[52776625405960,35184439328776,13247603788555150,13247605100033866],[52776625405960,35184439361536,-1975303134589986,-1975301885115096],[52776625766400,336068736,49039810952496628,49039814562449270],[52776625766400,17592186699784,13247603750907644,13247605137681374],[52776625766400,17592186699904,-1975303200228061,-1975301819477018],[52776625766400,17592253284360,-13247605137681374,-13247603750907644],[52776625766400,17592253284480,1975301819477018,1975303200228061],[52776625766400,17592455004288,-11272305547187129,-11272298321696800],[52776625766400,17592521588864,-37767512630799828,-37767509015262141],[52776625766400,35184372744200,-13247605137681374,-13247603750907644],[52776625766400,35184372744320,1975301819477018,1975303200228061],[52776625766400,35184439328776,13247603750907644,13247605137681374],[52776625766400,35184439328896,-1975303200228061,-1975301819477018],[52776625766400,35184641048704,-37767512630799828,-37767509015262141],[52776625766400,35184707633280,-11272305547187129,-11272298321696800],[52776625766400,52776826568832,49039810952496628,49039814562449270],[52776625897480,17592186044424,-1975303200228061,-1975301819477018],[52776625897480,17592186175488,-11272303149817323,-11272300719066616],[52776625897480,17592186568704,13247603750907644,13247605137681374],[52776625897480,17592253284360,-13247605137681374,-13247603750907644],[52776625897480,17592253677576,11272300719066616,11272303149817323],[52776625897480,17592253808640,1975301819477018,1975303200228061],[52776625897480,35184372088840,1975301819477018,1975303200228061],[52776625897480,35184372219904,11272300719066616,11272303149817323],[52776625897480,35184372613120,-13247605137681374,-13247603750907644],[52776625897480,35184439328776,13247603750907644,13247605137681374],[52776625897480,35184439721992,-11272303149817323,-11272300719066616],[52776625897480,35184439853056,-1975303200228061,-1975301819477018],[52776625897600,17592186044544,1975301819477018,1975303200228061],[52776625897600,17592186568704,-1975303200228061,-1975301819477018],[52776625897600,17592253284480,1975301819477018,1975303200228061],[52776625897600,17592253808640,-1975303200228061,-1975301819477018],[52776625897600,35184372088960,-1975303200228061,-1975301819477018],[52776625897600,35184372613120,1975301819477018,1975303200228061],[52776625897600,35184439328896,-1975303200228061,-1975301819477018],[52776625897600,35184439853056,1975301819477018,1975303200228061],[52776692351104,17592455004288,-24519907494573587,-24519905262899363],[52776692351104,17592589221888,24519905262899363,24519907494573587],[52776692351104,35184641048704,24519905262899363,24519907494573587],[52776692351104,35184775266304,-24519907494573587,-24519905262899363],[52776692875264,17592455004288,24519905262899363,24519907494573587],[52776692875264,17592588697728,-24519907494573587,-24519905262899363],[52776692875264,35184641048704,-24519907494573587,-24519905262899363],[52776692875264,35184774742144,24519905262899363,24519907494573587],[52776826568712,335675400,-49039814562449270,-49039810952496628],[52776826568712,17592186568840,13247603750907644,13247605137681374],[52776826568712,17592186699784,-1975303200228061,-1975301819477018],[52776826568712,17592253284360,37767509015262141,37767512630799828],[52776826568712,17592455004288,-13247605137681374,-13247603750907644],[52776826568712,17592455135232,1975301819477018,1975303200228061],[52776826568712,17592521719808,11272298321696800,11272305547187129],[52776826568712,35184372613256,-13247605137681374,-13247603750907644],[52776826568712,35184372744200,1975301819477018,1975303200228061],[52776826568712,35184439328776,11272298321696800,11272305547187129],[52776826568712,35184641048704,13247603750907644,13247605137681374],[52776826568712,35184641179648,-1975303200228061,-1975301819477018],[52776826568712,35184707764224,37767509015262141,37767512630799828],[52776826568712,52776625373184,-49039814562449270,-49039810952496628],[52776826568768,17592186568896,13247603758912222,13247605129676795],[52776826568768,17592455004288,-13247605129676795,-13247603758912222],[52776826568768,35184372613312,-13247605129676795,-13247603758912222],[52776826568768,35184641048704,13247603758912222,13247605129676795],[52776826568832,67633152,45089206340998288,45089209134537452],[52776826568832,336068736,49039810952496628,49039814562449270],[52776826568832,17592186044544,-13247606387717226,-13247602500871785],[52776826568832,17592186568840,-13247605137681374,-13247603750907644],[52776826568832,17592186568896,-13247605129676795,-13247603758912222],[52776826568832,17592186569856,-13247605100033866,-13247603788555150],[52776826568832,17592186699904,1975301819477018,1975303200228061],[52776826568832,17592187617408,1975301885115096,1975303134589986],[52776826568832,17592253677696,11272300719066616,11272303149817323],[52776826568832,17592320786560,11272300807839789,11272303061044145],[52776826568832,17592454479872,13247602500871785,13247606387717226],[52776826568832,17592455004168,13247603750907644,13247605137681374],[52776826568832,17592455004224,13247603758912222,13247605129676795],[52776826568832,17592455005184,13247603788555150,13247605100033866],[52776826568832,17592455135232,-1975303200228061,-1975301819477018],[52776826568832,17592456052736,-1975303134589986,-1975301885115096],[52776826568832,17592522113024,-15222909453017315,-15222904455276782],[52776826568832,17592589221888,-11272303061044145,-11272300807839789],[52776826568832,35184372088960,13247602500871785,13247606387717226],[52776826568832,35184372613256,13247603750907644,13247605137681374],[52776826568832,35184372613312,13247603758912222,13247605129676795],[52776826568832,35184372614272,13247603788555150,13247605100033866],[52776826568832,35184372744320,-1975303200228061,-1975301819477018],[52776826568832,35184373661824,-1975303134589986,-1975301885115096],[52776826568832,35184439722112,-15222909453017315,-15222904455276782],[52776826568832,35184506830976,-11272303061044145,-11272300807839789],[52776826568832,35184640524288,-13247606387717226,-13247602500871785],[52776826568832,35184641048584,-13247605137681374,-13247603750907644],[52776826568832,35184641048640,-13247605129676795,-13247603758912222],[52776826568832,35184641049600,-13247605100033866,-13247603788555150],[52776826568832,35184641179648,1975301819477018,1975303200228061],[52776826568832,35184642097152,1975301885115096,1975303134589986],[52776826568832,35184708157440,11272300719066616,11272303149817323],[52776826568832,35184775266304,11272300807839789,11272303061044145],[52776826568832,52776625766400,49039810952496628,49039814562449270],[52776826568832,52776894201984,45089206340998288,45089209134537452],[52776826568832,70368744701952,-1975303161294799,-1975301858410281],[52776826568832,70369013137536,-1975303161294799,-1975301858410281],[52776826568832,123145302835200,-1975303161294799,-1975301858410281],[52776826568832,123145571270784,-1975303161294799,-1975301858410281],[52776826568832,140737488879616,1975301858410281,1975303161294799],[52776826568832,140737757315200,1975301858410281,1975303161294799],[52776826568832,193514047012864,1975301858410281,1975303161294799],[52776826568832,193514315448448,1975301858410281,1975303161294799],[52776826568832,4611686018427912192,22544603189358414,22544604548409457],[52776826568832,4611686018696347776,22544603189358414,22544604548409457],[52776826568832,4611738794986045440,22544603189358414,22544604548409457],[52776826568832,4611738795254481024,22544603189358414,22544604548409457],[52776826568832,36893488147419627520,-22544604548409457,-22544603189358414],[52776826568832,36893488147688063104,-22544604548409457,-22544603189358414],[52776826568832,36893540923977760768,-22544604548409457,-22544603189358414],[52776826568832,36893540924246196352,-22544604548409457,-22544603189358414],[52776826569728,17592186569856,13247603788555150,13247605100033866],[52776826569728,17592187618304,-1975303134589986,-1975301885115096],[52776826569728,17592321311744,13247603822461068,13247605066127948],[52776826569728,17592455004288,-13247605100033866,-13247603788555150],[52776826569728,17592456052736,1975301885115096,1975303134589986],[52776826569728,17592589746176,-13247605066127948,-13247603822461068],[52776826569728,35184372614272,-13247605100033866,-13247603788555150],[52776826569728,35184373662720,1975301885115096,1975303134589986],[52776826569728,35184507356160,-13247605066127948,-13247603822461068],[52776826569728,35184641048704,13247603788555150,13247605100033866],[52776826569728,35184642097152,-1975303134589986,-1975301885115096],[52776826569728,35184775790592,13247603822461068,13247605066127948],[52776826699776,335675400,49039810952496628,49039814562449270],[52776826699776,17592186699784,1975301819477018,1975303200228061],[52776826699776,17592186699904,-13247605137681374,-13247603750907644],[52776826699776,17592253284360,-37767512630799828,-37767509015262141],[52776826699776,17592455004168,-1975303200228061,-1975301819477018],[52776826699776,17592455004288,13247603750907644,13247605137681374],[52776826699776,17592521588744,-11272305547187129,-11272298321696800],[52776826699776,35184372744200,-1975303200228061,-1975301819477018],[52776826699776,35184372744320,13247603750907644,13247605137681374],[52776826699776,35184439328776,-11272305547187129,-11272298321696800],[52776826699776,35184641048584,1975301819477018,1975303200228061],[52776826699776,35184641048704,-13247605137681374,-13247603750907644],[52776826699776,35184707633160,-37767512630799828,-37767509015262141],[52776826699776,52776625242120,49039810952496628,49039814562449270],[52776827092992,67108992,-45089209134537452,-45089206340998288],[52776827092992,336068736,-49039814562449270,-49039810952496628],[52776827092992,17592186699904,11272300719066616,11272303149817323],[52776827092992,17592187617408,11272300807839789,11272303061044145],[52776827092992,17592253677696,-11272303149817323,-11272300719066616],[52776827092992,17592320786560,-11272303061044145,-11272300807839789],[52776827092992,17592454611072,-11272303149817323,-11272300719066616],[52776827092992,17592455528576,-11272303061044145,-11272300807839789],[52776827092992,17592521588864,15222904455276782,15222909453017315],[52776827092992,17592588697728,11272300807839789,11272303061044145],[52776827092992,35184372744320,-11272303149817323,-11272300719066616],[52776827092992,35184373661824,-11272303061044145,-11272300807839789],[52776827092992,35184439722112,15222904455276782,15222909453017315],[52776827092992,35184506830976,11272300807839789,11272303061044145],[52776827092992,35184640655488,11272300719066616,11272303149817323],[52776827092992,35184641572992,11272300807839789,11272303061044145],[52776827092992,35184707633280,-11272303149817323,-11272300719066616],[52776827092992,35184774742144,-11272303061044145,-11272300807839789],[52776827092992,52776625242240,-49039814562449270,-49039810952496628],[52776827092992,52776894201984,-45089209134537452,-45089206340998288],[52776827092992,70368744177792,1975301858410281,1975303161294799],[52776827092992,70369013137536,1975301858410281,1975303161294799],[52776827092992,123145302311040,1975301858410281,1975303161294799],[52776827092992,123145571270784,1975301858410281,1975303161294799],[52776827092992,140737488355456,-1975303161294799,-1975301858410281],[52776827092992,140737757315200,-1975303161294799,-1975301858410281],[52776827092992,193514046488704,-1975303161294799,-1975301858410281],[52776827092992,193514315448448,-1975303161294799,-1975301858410281],[52776827092992,4611686018427388032,-22544604548409457,-22544603189358414],[52776827092992,4611686018696347776,-22544604548409457,-22544603189358414],[52776827092992,4611738794985521280,-22544604548409457,-22544603189358414],[52776827092992,4611738795254481024,-22544604548409457,-22544603189358414],[52776827092992,36893488147419103360,22544603189358414,22544604548409457],[52776827092992,36893488147688063104,22544603189358414,22544604548409457],[52776827092992,36893540923977236608,22544603189358414,22544604548409457],[52776827092992,36893540924246196352,22544603189358414,22544604548409457],[52776827093128,17592186044424,13247603750907644,13247605137681374],[52776827093128,17592186044544,-13247605137681374,-13247603750907644],[52776827093128,17592455004168,13247603750907644,13247605137681374],[52776827093128,17592455004288,-13247605137681374,-13247603750907644],[52776827093128,35184372088840,-13247605137681374,-13247603750907644],[52776827093128,35184372088960,13247603750907644,13247605137681374],[52776827093128,35184641048584,-13247605137681374,-13247603750907644],[52776827093128,35184641048704,13247603750907644,13247605137681374],[52776827093184,17592186044480,13247603758912222,13247605129676795],[52776827093184,17592186044544,-13247605129676795,-13247603758912222],[52776827093184,17592455004224,13247603758912222,13247605129676795],[52776827093184,17592455004288,-13247605129676795,-13247603758912222],[52776827093184,35184372088896,-13247605129676795,-13247603758912222],[52776827093184,35184372088960,13247603758912222,13247605129676795],[52776827093184,35184641048640,-13247605129676795,-13247603758912222],[52776827093184,35184641048704,13247603758912222,13247605129676795],[52776827094144,17592186044544,-13247605100033866,-13247603788555150],[52776827094144,17592186045440,13247603788555150,13247605100033866],[52776827094144,17592455004288,-13247605100033866,-13247603788555150],[52776827094144,17592455005184,13247603788555150,13247605100033866],[52776827094144,35184372088960,13247603788555150,13247605100033866],[52776827094144,35184372089856,-13247605100033866,-13247603788555150],[52776827094144,35184641048704,13247603788555150,13247605100033866],[52776827094144,35184641049600,-13247605100033866,-13247603788555150],[52776827224072,17592186044424,-1975303200228061,-1975301819477018],[52776827224072,17592186175488,1975301819477018,1975303200228061],[52776827224072,17592455004168,-1975303200228061,-1975301819477018],[52776827224072,17592455135232,1975301819477018,1975303200228061],[52776827224072,35184372088840,1975301819477018,1975303200228061],[52776827224072,35184372219904,-1975303200228061,-1975301819477018],[52776827224072,35184641048584,1975301819477018,1975303200228061],[52776827224072,35184641179648,-1975303200228061,-1975301819477018],[52776827224192,17592186044544,1975301819477018,1975303200228061],[52776827224192,17592186175488,-13247605137681374,-13247603750907644],[52776827224192,17592186568704,11272300719066616,11272303149817323],[52776827224192,17592454611072,-11272303149817323,-11272300719066616],[52776827224192,17592455004288,13247603750907644,13247605137681374],[52776827224192,17592455135232,-1975303200228061,-1975301819477018],[52776827224192,35184372088960,-1975303200228061,-1975301819477018],[52776827224192,35184372219904,13247603750907644,13247605137681374],[52776827224192,35184372613120,-11272303149817323,-11272300719066616],[52776827224192,35184640655488,11272300719066616,11272303149817323],[52776827224192,35184641048704,-13247605137681374,-13247603750907644],[52776827224192,35184641179648,1975301819477018,1975303200228061],[52776827617280,17592187617408,-13247605100033866,-13247603788555150],[52776827617280,17592187618304,1975301885115096,1975303134589986],[52776827617280,17592321311744,-13247605066127948,-13247603822461068],[52776827617280,17592455004288,13247603788555150,13247605100033866],[52776827617280,17592455005184,-1975303134589986,-1975301885115096],[52776827617280,17592588698624,13247603822461068,13247605066127948],[52776827617280,35184373661824,13247603788555150,13247605100033866],[52776827617280,35184373662720,-1975303134589986,-1975301885115096],[52776827617280,35184507356160,13247603822461068,13247605066127948],[52776827617280,35184641048704,-13247605100033866,-13247603788555150],[52776827617280,35184641049600,1975301885115096,1975303134589986],[52776827617280,35184774743040,-13247605066127948,-13247603822461068],[52776828141696,17592186044544,1975301885115096,1975303134589986],[52776828141696,17592186568704,11272300807839789,11272303061044145],[52776828141696,17592187092992,-13247605100033866,-13247603788555150],[52776828141696,17592455004288,13247603788555150,13247605100033866],[52776828141696,17592455528576,-11272303061044145,-11272300807839789],[52776828141696,17592456052736,-1975303134589986,-1975301885115096],[52776828141696,35184372088960,-1975303134589986,-1975301885115096],[52776828141696,35184372613120,-11272303061044145,-11272300807839789],[52776828141696,35184373137408,13247603788555150,13247605100033866],[52776828141696,35184641048704,-13247605100033866,-13247603788555150],[52776828141696,35184641572992,11272300807839789,11272303061044145],[52776828141696,35184642097152,1975301885115096,1975303134589986],[52776828142592,17592186045440,-1975303134589986,-1975301885115096],[52776828142592,17592187092992,1975301885115096,1975303134589986],[52776828142592,17592455005184,-1975303134589986,-1975301885115096],[52776828142592,17592456052736,1975301885115096,1975303134589986],[52776828142592,35184372089856,1975301885115096,1975303134589986],[52776828142592,35184373137408,-1975303134589986,-1975301885115096],[52776828142592,35184641049600,1975301885115096,1975303134589986],[52776828142592,35184642097152,-1975303134589986,-1975301885115096],[52776893808648,268435464,-45089209134537452,-45089206340998288],[52776893808648,268566528,45089206340998288,45089209134537452],[52776893808648,17592186044424,26495207514558268,26495210262619762],[52776893808648,17592186175488,-26495210262619762,-26495207514558268],[52776893808648,17592521588744,-18594001619979184,-18593996078378526],[52776893808648,17592521719808,18593996078378526,18594001619979184],[52776893808648,35184372088840,18593996078378526,18594001619979184],[52776893808648,35184372219904,-18594001619979184,-18593996078378526],[52776893808648,35184707633160,-26495210262619762,-26495207514558268],[52776893808648,35184707764224,26495207514558268,26495210262619762],[52776893808648,52776625242120,45089206340998288,45089209134537452],[52776893808648,52776625373184,-45089209134537452,-45089206340998288],[52776894201984,67108992,-45089209134537452,-45089206340998288],[52776894201984,67633152,45089206340998288,45089209134537452],[52776894201984,17592186044544,18593996078378526,18594001619979184],[52776894201984,17592186568704,-18594001619979184,-18593996078378526],[52776894201984,17592521588864,-26495210262619762,-26495207514558268],[52776894201984,17592522113024,26495207514558268,26495210262619762],[52776894201984,35184372088960,26495207514558268,26495210262619762],[52776894201984,35184372613120,-26495210262619762,-26495207514558268],[52776894201984,35184707633280,-18594001619979184,-18593996078378526],[52776894201984,35184708157440,18593996078378526,18594001619979184],[52776894201984,52776826568832,45089206340998288,45089209134537452],[52776894201984,52776827092992,-45089209134537452,-45089206340998288],[52776961310848,17592186044544,-13247605066127948,-13247603822461068],[52776961310848,17592186568704,13247603822461068,13247605066127948],[52776961310848,17592588697728,-13247605066127948,-13247603822461068],[52776961310848,17592589221888,13247603822461068,13247605066127948],[52776961310848,35184372088960,13247603822461068,13247605066127948],[52776961310848,35184372613120,-13247605066127948,-13247603822461068],[52776961310848,35184774742144,13247603822461068,13247605066127948],[52776961310848,35184775266304,-13247605066127948,-13247603822461068],[52776961836032,17592186045440,13247603822461068,13247605066127948],[52776961836032,17592187092992,-13247605066127948,-13247603822461068],[52776961836032,17592588698624,13247603822461068,13247605066127948],[52776961836032,17592589746176,-13247605066127948,-13247603822461068],[52776961836032,35184372089856,-13247605066127948,-13247603822461068],[52776961836032,35184373137408,13247603822461068,13247605066127948],[52776961836032,35184774743040,-13247605066127948,-13247603822461068],[52776961836032,35184775790592,13247603822461068,13247605066127948],[52777631875080,17592253284360,24519905262899363,24519907494573587],[52777631875080,17593327026176,-24519907494573587,-24519905262899363],[52777631875080,35184439328776,-24519907494573587,-24519905262899363],[52777631875080,35185513070592,24519905262899363,24519907494573587],[52777632006144,17592253284360,-24519907494573587,-24519905262899363],[52777632006144,17593326895112,24519905262899363,24519907494573587],[52777632006144,35184439328776,24519905262899363,24519907494573587],[52777632006144,35185512939528,-24519907494573587,-24519905262899363],[52777699016708,17592186044420,-13247605066127948,-13247603822461068],[52777699016708,17592186077184,13247603822461068,13247605066127948],[52777699016708,17593326895108,-13247605066127948,-13247603822461068],[52777699016708,17593326927872,13247603822461068,13247605066127948],[52777699016708,35184372088836,13247603822461068,13247605066127948],[52777699016708,35184372121600,-13247605066127948,-13247603822461068],[52777699016708,35185512939524,13247603822461068,13247605066127948],[52777699016708,35185512972288,-13247605066127948,-13247603822461068],[52777699115016,17592186044424,13247603822461068,13247605066127948],[52777699115016,17592186175488,-13247605066127948,-13247603822461068],[52777699115016,17593326895112,13247603822461068,13247605066127948],[52777699115016,17593327026176,-13247605066127948,-13247603822461068],[52777699115016,35184372088840,-13247605066127948,-13247603822461068],[52777699115016,35184372219904,13247603822461068,13247605066127948],[52777699115016,35185512939528,-13247605066127948,-13247603822461068],[52777699115016,35185513070592,13247603822461068,13247605066127948],[70368744177672,135267456,-22544604485800118,-22544603251967752],[70368744177672,135790720,13247603822461068,13247605066127948],[70368744177672,135921664,13247603811716528,13247605076872486],[70368744177672,403177600,-1975303134589986,-1975301885115096],[70368744177672,403308544,-22544604497985104,-22544603239782766],[70368744177672,469893120,-1975303142599947,-1975301877105131],[70368744177672,35184641048704,13247603788555150,13247605100033866],[70368744177672,35184641179648,-1975303167312100,-1975301852392980],[70368744177672,35184707764224,13247603786922062,13247605101666952],[70368744177672,52776625373184,-1975303161294799,-1975301858410281],[70368744177672,70368879445128,-22544604485800118,-22544603251967752],[70368744177672,70368879968392,13247603822461068,13247605066127948],[70368744177672,70368880099336,13247603811716528,13247605076872486],[70368744177672,70369147355272,-1975303134589986,-1975301885115096],[70368744177672,70369147486216,-22544604497985104,-22544603239782766],[70368744177672,70369214070792,-1975303142599947,-1975301877105131],[70368744177672,105553385226376,13247603788555150,13247605100033866],[70368744177672,105553385357320,-1975303167312100,-1975301852392980],[70368744177672,105553451941896,13247603786922062,13247605101666952],[70368744177672,123145369550856,-1975303161294799,-1975301858410281],[70368744177792,135267336,22544603251967752,22544604485800118],[70368744177792,135790600,-13247605066127948,-13247603822461068],[70368744177792,135921664,-13247605076872486,-13247603811716528],[70368744177792,403177480,1975301885115096,1975303134589986],[70368744177792,403308544,22544603239782766,22544604497985104],[70368744177792,470286336,1975301877105131,1975303142599947],[70368744177792,35184641048584,-13247605100033866,-13247603788555150],[70368744177792,35184641179648,1975301852392980,1975303167312100],[70368744177792,35184708157440,-13247605101666952,-13247603786922062],[70368744177792,52776827092992,1975301858410281,1975303161294799],[70368744177792,70368879445128,22544603251967752,22544604485800118],[70368744177792,70368879968392,-13247605066127948,-13247603822461068],[70368744177792,70368880099456,-13247605076872486,-13247603811716528],[70368744177792,70369147355272,1975301885115096,1975303134589986],[70368744177792,70369147486336,22544603239782766,22544604497985104],[70368744177792,70369214464128,1975301877105131,1975303142599947],[70368744177792,105553385226376,-13247605100033866,-13247603788555150],[70368744177792,105553385357440,1975301852392980,1975303167312100],[70368744177792,105553452335232,-13247605101666952,-13247603786922062],[70368744177792,123145571270784,1975301858410281,1975303161294799],[70368744178824,135267336,22544603251967752,22544604485800118],[70368744178824,135267456,-22544604485800118,-22544603251967752],[70368744178824,70368879443976,-22544604485800118,-22544603251967752],[70368744178824,70368879444096,22544603251967752,22544604485800118],[70368744308736,135790600,-13247605076872486,-13247603811716528],[70368744308736,135790720,-13247605066127948,-13247603822461068],[70368744308736,135791616,22544603251967752,22544604485800118],[70368744308736,403177480,22544603239782766,22544604497985104],[70368744308736,403177600,1975301885115096,1975303134589986],[70368744308736,469762056,1975301877105131,1975303142599947],[70368744308736,35184641048584,1975301852392980,1975303167312100],[70368744308736,35184641048704,-13247605100033866,-13247603788555150],[70368744308736,35184707633160,-13247605101666952,-13247603786922062],[70368744308736,52776625242120,1975301858410281,1975303161294799],[70368744308736,70368880099336,-13247605076872486,-13247603811716528],[70368744308736,70368880099456,-13247605066127948,-13247603822461068],[70368744308736,70368880100352,22544603251967752,22544604485800118],[70368744308736,70369147486216,22544603239782766,22544604497985104],[70368744308736,70369147486336,1975301885115096,1975303134589986],[70368744308736,70369214070792,1975301877105131,1975303142599947],[70368744308736,105553385357320,1975301852392980,1975303167312100],[70368744308736,105553385357440,-13247605100033866,-13247603788555150],[70368744308736,105553451941896,-13247605101666952,-13247603786922062],[70368744308736,123145369550856,1975301858410281,1975303161294799],[70368744701952,135397504,26495207784975390,26495209992202640],[70368744701952,135398400,-22544604485800118,-22544603251967752],[70368744701952,402784384,-24519907477236870,-24519905280236082],[70368744701952,469762176,-1975303142599947,-1975301877105131],[70368744701952,35184640655488,11272300789630083,11272303079253853],[70368744701952,35184707633280,13247603786922062,13247605101666952],[70368744701952,52776826568832,-1975303161294799,-1975301858410281],[70368744701952,70368880099456,26495207784975390,26495209992202640],[70368744701952,70368880100352,-22544604485800118,-22544603251967752],[70368744701952,70369147486336,-24519907477236870,-24519905280236082],[70368744701952,70369214464128,-1975303142599947,-1975301877105131],[70368744701952,105553385357440,11272300789630083,11272303079253853],[70368744701952,105553452335232,13247603786922062,13247605101666952],[70368744701952,123145571270784,-1975303161294799,-1975301858410281],[70368744702088,135790600,-13247605066127948,-13247603822461068],[70368744702088,135790720,13247603822461068,13247605066127948],[70368744702088,403177480,1975301885115096,1975303134589986],[70368744702088,403177600,-1975303134589986,-1975301885115096],[70368744702088,35184641048584,-13247605100033866,-13247603788555150],[70368744702088,35184641048704,13247603788555150,13247605100033866],[70368744702088,70368879443976,13247603822461068,13247605066127948],[70368744702088,70368879444096,-13247605066127948,-13247603822461068],[70368744702088,70369146830856,-1975303134589986,-1975301885115096],[70368744702088,70369146830976,1975301885115096,1975303134589986],[70368744702088,105553384701960,13247603788555150,13247605100033866],[70368744702088,105553384702080,-13247605100033866,-13247603788555150],[70368744833032,135790600,-13247605076872486,-13247603811716528],[70368744833032,135921664,13247603811716528,13247605076872486],[70368744833032,403177480,22544603239782766,22544604497985104],[70368744833032,403308544,-22544604497985104,-22544603239782766],[70368744833032,35184641048584,1975301852392980,1975303167312100],[70368744833032,35184641179648,-1975303167312100,-1975301852392980],[70368744833032,70368879443976,13247603811716528,13247605076872486],[70368744833032,70368879575040,-13247605076872486,-13247603811716528],[70368744833032,70369146830856,-22544604497985104,-22544603239782766],[70368744833032,70369146961920,22544603239782766,22544604497985104],[70368744833032,105553384701960,-1975303167312100,-1975301852392980],[70368744833032,105553384833024,1975301852392980,1975303167312100],[70368744833152,135397504,26495207784975390,26495209992202640],[70368744833152,135790720,-13247605066127948,-13247603822461068],[70368744833152,135921664,-13247605076872486,-13247603811716528],[70368744833152,402784384,-24519907477236870,-24519905280236082],[70368744833152,403177600,1975301885115096,1975303134589986],[70368744833152,403308544,22544603239782766,22544604497985104],[70368744833152,35184640655488,11272300789630083,11272303079253853],[70368744833152,35184641048704,-13247605100033866,-13247603788555150],[70368744833152,35184641179648,1975301852392980,1975303167312100],[70368744833152,70368879444096,-13247605076872486,-13247603811716528],[70368744833152,70368879575040,-13247605066127948,-13247603822461068],[70368744833152,70368879968256,26495207784975390,26495209992202640],[70368744833152,70369146830976,22544603239782766,22544604497985104],[70368744833152,70369146961920,1975301885115096,1975303134589986],[70368744833152,70369147355136,-24519907477236870,-24519905280236082],[70368744833152,105553384702080,1975301852392980,1975303167312100],[70368744833152,105553384833024,-13247605100033866,-13247603788555150],[70368744833152,105553385226240,11272300789630083,11272303079253853],[70368744834048,135398400,-26495209992202640,-26495207784975390],[70368744834048,135791616,26495207784975390,26495209992202640],[70368744834048,70368879575040,26495207784975390,26495209992202640],[70368744834048,70368879968256,-26495209992202640,-26495207784975390],[70368745227272,134217856,-22544604485800118,-22544603251967752],[70368745227272,134218888,-22544604485800118,-22544603251967752],[70368745227272,70368879444096,-22544604485800118,-22544603251967752],[70368745227272,70368879445128,-22544604485800118,-22544603251967752],[70368745227392,134217736,22544603251967752,22544604485800118],[70368745227392,134218888,22544603251967752,22544604485800118],[70368745227392,70368879443976,22544603251967752,22544604485800118],[70368745227392,70368879445128,22544603251967752,22544604485800118],[70368745357440,134742016,-26495209992202640,-26495207784975390],[70368745357440,134873216,-26495209992202640,-26495207784975390],[70368745357440,70368879968256,-26495209992202640,-26495207784975390],[70368745357440,70368880099456,-26495209992202640,-26495207784975390],[70368745358336,134742016,22544603251967752,22544604485800118],[70368745358336,134874112,26495207784975390,26495209992202640],[70368745358336,135921664,-3950606127442978,-3950603911967182],[70368745358336,70368878920704,-3950606127442978,-3950603911967182],[70368745358336,70368879968256,26495207784975390,26495209992202640],[70368745358336,70368880100352,22544603251967752,22544604485800118],[70368745750536,134217856,13247603822461068,13247605066127948],[70368745750536,134348800,13247603811716528,13247605076872486],[70368745750536,134742152,13247603822461068,13247605066127948],[70368745750536,134873096,13247603811716528,13247605076872486],[70368745750536,70368879444096,13247603822461068,13247605066127948],[70368745750536,70368879575040,13247603811716528,13247605076872486],[70368745750536,70368879968392,13247603822461068,13247605066127948],[70368745750536,70368880099336,13247603811716528,13247605076872486],[70368745750656,134217736,-13247605066127948,-13247603822461068],[70368745750656,134348800,13247603822461068,13247605066127948],[70368745750656,134742152,-13247605066127948,-13247603822461068],[70368745750656,134873216,13247603822461068,13247605066127948],[70368745750656,70368879443976,-13247605066127948,-13247603822461068],[70368745750656,70368879575040,13247603822461068,13247605066127948],[70368745750656,70368879968392,-13247605066127948,-13247603822461068],[70368745750656,70368880099456,13247603822461068,13247605066127948],[70368745751552,134348800,-22544604485800118,-22544603251967752],[70368745751552,134874112,-26495209992202640,-26495207784975390],[70368745751552,135921664,3950603911967182,3950606127442978],[70368745751552,70368878527488,3950603911967182,3950606127442978],[70368745751552,70368879575040,-26495209992202640,-26495207784975390],[70368745751552,70368880100352,-22544604485800118,-22544603251967752],[70368745881600,134217736,-13247605076872486,-13247603811716528],[70368745881600,134217856,13247603811716528,13247605076872486],[70368745881600,134873096,-13247605076872486,-13247603811716528],[70368745881600,134873216,13247603811716528,13247605076872486],[70368745881600,135398400,3950603911967182,3950606127442978],[70368745881600,135791616,-3950606127442978,-3950603911967182],[70368745881600,70368878527488,-3950606127442978,-3950603911967182],[70368745881600,70368878920704,3950603911967182,3950606127442978],[70368745881600,70368879443976,-13247605076872486,-13247603811716528],[70368745881600,70368879444096,13247603811716528,13247605076872486],[70368745881600,70368880099336,-13247605076872486,-13247603811716528],[70368745881600,70368880099456,13247603811716528,13247605076872486],[70368811417608,469762056,1975301877105131,1975303142599947],[70368811417608,469893120,-1975303142599947,-1975301877105131],[70368811417608,35184707633160,-13247605101666952,-13247603786922062],[70368811417608,35184707764224,13247603786922062,13247605101666952],[70368811417608,52776625242120,1975301858410281,1975303161294799],[70368811417608,52776625373184,-1975303161294799,-1975301858410281],[70368811417608,70369146830856,-1975303142599947,-1975301877105131],[70368811417608,70369146961920,1975301877105131,1975303142599947],[70368811417608,105553384701960,13247603786922062,13247605101666952],[70368811417608,105553384833024,-13247605101666952,-13247603786922062],[70368811417608,123145302310920,-1975303161294799,-1975301858410281],[70368811417608,123145302441984,1975301858410281,1975303161294799],[70368811810944,469762176,24519905280236082,24519907477236870],[70368811810944,470286336,-24519907477236870,-24519905280236082],[70368811810944,35184707633280,-11272303079253853,-11272300789630083],[70368811810944,35184708157440,11272300789630083,11272303079253853],[70368811810944,70369146830976,-24519907477236870,-24519905280236082],[70368811810944,70369147355136,24519905280236082,24519907477236870],[70368811810944,105553384702080,11272300789630083,11272303079253853],[70368811810944,105553385226240,-11272303079253853,-11272300789630083],[70368812336128,469763072,-3950606127442978,-3950603911967182],[70368812336128,470810624,3950603911967182,3950606127442978],[70368812336128,70369146831872,3950603911967182,3950606127442978],[70368812336128,70369147879424,-3950606127442978,-3950603911967182],[70368878527488,135791616,-3950606127442978,-3950603911967182],[70368878527488,135921664,3950603911967182,3950606127442978],[70368878527488,70368745751552,3950603911967182,3950606127442978],[70368878527488,70368745881600,-3950606127442978,-3950603911967182],[70368878920704,135398400,3950603911967182,3950606127442978],[70368878920704,135921664,-3950606127442978,-3950603911967182],[70368878920704,70368745358336,-3950606127442978,-3950603911967182],[70368878920704,70368745881600,3950603911967182,3950606127442978],[70368879443976,134218888,22544603251967752,22544604485800118],[70368879443976,134742152,-13247605066127948,-13247603822461068],[70368879443976,134873096,-13247605076872486,-13247603811716528],[70368879443976,135267456,-22544604485800118,-22544603251967752],[70368879443976,135790720,13247603822461068,13247605066127948],[70368879443976,135921664,13247603811716528,13247605076872486],[70368879443976,70368744178824,-22544604485800118,-22544603251967752],[70368879443976,70368744702088,13247603822461068,13247605066127948],[70368879443976,70368744833032,13247603811716528,13247605076872486],[70368879443976,70368745227392,22544603251967752,22544604485800118],[70368879443976,70368745750656,-13247605066127948,-13247603822461068],[70368879443976,70368745881600,-13247605076872486,-13247603811716528],[70368879444096,134218888,-22544604485800118,-22544603251967752],[70368879444096,134742152,13247603822461068,13247605066127948],[70368879444096,134873216,13247603811716528,13247605076872486],[70368879444096,135267336,22544603251967752,22544604485800118],[70368879444096,135790600,-13247605066127948,-13247603822461068],[70368879444096,135921664,-13247605076872486,-13247603811716528],[70368879444096,70368744178824,22544603251967752,22544604485800118],[70368879444096,70368744702088,-13247605066127948,-13247603822461068],[70368879444096,70368744833152,-13247605076872486,-13247603811716528],[70368879444096,70368745227272,-22544604485800118,-22544603251967752],[70368879444096,70368745750536,13247603822461068,13247605066127948],[70368879444096,70368745881600,13247603811716528,13247605076872486],[70368879445128,134217736,22544603251967752,22544604485800118],[70368879445128,134217856,-22544604485800118,-22544603251967752],[70368879445128,135267336,22544603251967752,22544604485800118],[70368879445128,135267456,-22544604485800118,-22544603251967752],[70368879445128,70368744177672,-22544604485800118,-22544603251967752],[70368879445128,70368744177792,22544603251967752,22544604485800118],[70368879445128,70368745227272,-22544604485800118,-22544603251967752],[70368879445128,70368745227392,22544603251967752,22544604485800118],[70368879575040,134873096,13247603811716528,13247605076872486],[70368879575040,134873216,13247603822461068,13247605066127948],[70368879575040,134874112,-26495209992202640,-26495207784975390],[70368879575040,135790600,-13247605076872486,-13247603811716528],[70368879575040,135790720,-13247605066127948,-13247603822461068],[70368879575040,135791616,26495207784975390,26495209992202640],[70368879575040,70368744833032,-13247605076872486,-13247603811716528],[70368879575040,70368744833152,-13247605066127948,-13247603822461068],[70368879575040,70368744834048,26495207784975390,26495209992202640],[70368879575040,70368745750536,13247603811716528,13247605076872486],[70368879575040,70368745750656,13247603822461068,13247605066127948],[70368879575040,70368745751552,-26495209992202640,-26495207784975390],[70368879968256,134873216,-26495209992202640,-26495207784975390],[70368879968256,134874112,26495207784975390,26495209992202640],[70368879968256,135397504,26495207784975390,26495209992202640],[70368879968256,135398400,-26495209992202640,-26495207784975390],[70368879968256,70368744833152,26495207784975390,26495209992202640],[70368879968256,70368744834048,-26495209992202640,-26495207784975390],[70368879968256,70368745357440,-26495209992202640,-26495207784975390],[70368879968256,70368745358336,26495207784975390,26495209992202640],[70368879968392,134217736,-13247605066127948,-13247603822461068],[70368879968392,134217856,13247603822461068,13247605066127948],[70368879968392,135790600,-13247605066127948,-13247603822461068],[70368879968392,135790720,13247603822461068,13247605066127948],[70368879968392,70368744177672,13247603822461068,13247605066127948],[70368879968392,70368744177792,-13247605066127948,-13247603822461068],[70368879968392,70368745750536,13247603822461068,13247605066127948],[70368879968392,70368745750656,-13247605066127948,-13247603822461068],[70368880099336,134217736,-13247605076872486,-13247603811716528],[70368880099336,134348800,13247603811716528,13247605076872486],[70368880099336,135790600,-13247605076872486,-13247603811716528],[70368880099336,135921664,13247603811716528,13247605076872486],[70368880099336,70368744177672,13247603811716528,13247605076872486],[70368880099336,70368744308736,-13247605076872486,-13247603811716528],[70368880099336,70368745750536,13247603811716528,13247605076872486],[70368880099336,70368745881600,-13247605076872486,-13247603811716528],[70368880099456,134217856,13247603811716528,13247605076872486],[70368880099456,134348800,13247603822461068,13247605066127948],[70368880099456,134742016,-26495209992202640,-26495207784975390],[70368880099456,135397504,26495207784975390,26495209992202640],[70368880099456,135790720,-13247605066127948,-13247603822461068],[70368880099456,135921664,-13247605076872486,-13247603811716528],[70368880099456,70368744177792,-13247605076872486,-13247603811716528],[70368880099456,70368744308736,-13247605066127948,-13247603822461068],[70368880099456,70368744701952,26495207784975390,26495209992202640],[70368880099456,70368745357440,-26495209992202640,-26495207784975390],[70368880099456,70368745750656,13247603822461068,13247605066127948],[70368880099456,70368745881600,13247603811716528,13247605076872486],[70368880100352,134348800,-22544604485800118,-22544603251967752],[70368880100352,134742016,22544603251967752,22544604485800118],[70368880100352,135398400,-22544604485800118,-22544603251967752],[70368880100352,135791616,22544603251967752,22544604485800118],[70368880100352,70368744308736,22544603251967752,22544604485800118],[70368880100352,70368744701952,-22544604485800118,-22544603251967752],[70368880100352,70368745358336,22544603251967752,22544604485800118],[70368880100352,70368745751552,-22544604485800118,-22544603251967752],[70368945504384,403177600,-26495209992202640,-26495207784975390],[70368945504384,470286336,26495207784975390,26495209992202640],[70368945504384,70369013137536,26495207784975390,26495209992202640],[70368945504384,70369080246272,-26495209992202640,-26495207784975390],[70368945505280,269484032,22544603251967752,22544604485800118],[70368945505280,403702784,26495207784975390,26495209992202640],[70368945505280,470810624,-3950606127442978,-3950603911967182],[70368945505280,70369013662720,-3950606127442978,-3950603911967182],[70368945505280,70369080770560,26495207784975390,26495209992202640],[70368945505280,70369214989312,22544603251967752,22544604485800118],[70368946028544,403177600,26495207784975390,26495209992202640],[70368946028544,469762176,-26495209992202640,-26495207784975390],[70368946028544,70369013137536,-26495209992202640,-26495207784975390],[70368946028544,70369079722112,26495207784975390,26495209992202640],[70368946552832,268436480,-22544604485800118,-22544603251967752],[70368946552832,403702784,-26495209992202640,-26495207784975390],[70368946552832,469763072,3950603911967182,3950606127442978],[70368946552832,70369013662720,3950603911967182,3950606127442978],[70368946552832,70369079723008,-26495209992202640,-26495207784975390],[70368946552832,70369214989312,-22544604485800118,-22544603251967752],[70369012744320,134742016,24519905280236082,24519907477236870],[70369012744320,134873216,24519905280236082,24519907477236870],[70369012744320,35184372613120,-11272303079253853,-11272300789630083],[70369012744320,35184372744320,-11272303079253853,-11272300789630083],[70369012744320,70369147355136,24519905280236082,24519907477236870],[70369012744320,70369147486336,24519905280236082,24519907477236870],[70369012744320,105553385226240,-11272303079253853,-11272300789630083],[70369012744320,105553385357440,-11272303079253853,-11272300789630083],[70369013137416,134217856,-1975303134589986,-1975301885115096],[70369013137416,134348800,-22544604497985104,-22544603239782766],[70369013137416,134742152,-1975303134589986,-1975301885115096],[70369013137416,134873096,-22544604497985104,-22544603239782766],[70369013137416,35184372088960,13247603788555150,13247605100033866],[70369013137416,35184372219904,-1975303167312100,-1975301852392980],[70369013137416,35184372613256,13247603788555150,13247605100033866],[70369013137416,35184372744200,-1975303167312100,-1975301852392980],[70369013137416,70369146830976,-1975303134589986,-1975301885115096],[70369013137416,70369146961920,-22544604497985104,-22544603239782766],[70369013137416,70369147355272,-1975303134589986,-1975301885115096],[70369013137416,70369147486216,-22544604497985104,-22544603239782766],[70369013137416,105553384702080,13247603788555150,13247605100033866],[70369013137416,105553384833024,-1975303167312100,-1975301852392980],[70369013137416,105553385226376,13247603788555150,13247605100033866],[70369013137416,105553385357320,-1975303167312100,-1975301852392980],[70369013137536,134217736,1975301885115096,1975303134589986],[70369013137536,134348800,-1975303134589986,-1975301885115096],[70369013137536,134742152,1975301885115096,1975303134589986],[70369013137536,134873216,-1975303134589986,-1975301885115096],[70369013137536,469762176,-26495209992202640,-26495207784975390],[70369013137536,470286336,26495207784975390,26495209992202640],[70369013137536,35184372088840,-13247605100033866,-13247603788555150],[70369013137536,35184372219904,13247603788555150,13247605100033866],[70369013137536,35184372613256,-13247605100033866,-13247603788555150],[70369013137536,35184372744320,13247603788555150,13247605100033866],[70369013137536,35184707633280,24519905262899363,24519907494573587],[70369013137536,35184708157440,-24519907494573587,-24519905262899363],[70369013137536,52776826568832,-1975303161294799,-1975301858410281],[70369013137536,52776827092992,1975301858410281,1975303161294799],[70369013137536,70368945504384,26495207784975390,26495209992202640],[70369013137536,70368946028544,-26495209992202640,-26495207784975390],[70369013137536,70369146830856,1975301885115096,1975303134589986],[70369013137536,70369146961920,-1975303134589986,-1975301885115096],[70369013137536,70369147355272,1975301885115096,1975303134589986],[70369013137536,70369147486336,-1975303134589986,-1975301885115096],[70369013137536,105553183375488,-24519907494573587,-24519905262899363],[70369013137536,105553183899648,24519905262899363,24519907494573587],[70369013137536,105553384701960,-13247605100033866,-13247603788555150],[70369013137536,105553384833024,13247603788555150,13247605100033866],[70369013137536,105553385226376,-13247605100033866,-13247603788555150],[70369013137536,105553385357440,13247603788555150,13247605100033866],[70369013137536,123145302311040,1975301858410281,1975303161294799],[70369013137536,123145302835200,-1975303161294799,-1975301858410281],[70369013268480,134217736,22544603239782766,22544604497985104],[70369013268480,134217856,-22544604497985104,-22544603239782766],[70369013268480,134873096,22544603239782766,22544604497985104],[70369013268480,134873216,-22544604497985104,-22544603239782766],[70369013268480,35184372088840,1975301852392980,1975303167312100],[70369013268480,35184372088960,-1975303167312100,-1975301852392980],[70369013268480,35184372744200,1975301852392980,1975303167312100],[70369013268480,35184372744320,-1975303167312100,-1975301852392980],[70369013268480,70369146830856,22544603239782766,22544604497985104],[70369013268480,70369146830976,-22544604497985104,-22544603239782766],[70369013268480,70369147486216,22544603239782766,22544604497985104],[70369013268480,70369147486336,-22544604497985104,-22544603239782766],[70369013268480,105553384701960,1975301852392980,1975303167312100],[70369013268480,105553384702080,-1975303167312100,-1975301852392980],[70369013268480,105553385357320,1975301852392980,1975303167312100],[70369013268480,105553385357440,-1975303167312100,-1975301852392980],[70369013662720,469763072,3950603911967182,3950606127442978],[70369013662720,470810624,-3950606127442978,-3950603911967182],[70369013662720,70368945505280,-3950606127442978,-3950603911967182],[70369013662720,70368946552832,3950603911967182,3950606127442978],[70369079721992,134348800,-1975303142599947,-1975301877105131],[70369079721992,201457672,-1975303142599947,-1975301877105131],[70369079721992,35184372219904,13247603786922062,13247605101666952],[70369079721992,35184439328776,13247603786922062,13247605101666952],[70369079721992,70369146961920,-1975303142599947,-1975301877105131],[70369079721992,70369214070792,-1975303142599947,-1975301877105131],[70369079721992,105553384833024,13247603786922062,13247605101666952],[70369079721992,105553451941896,13247603786922062,13247605101666952],[70369079722112,134742016,1975301877105131,1975303142599947],[70369079722112,201851008,-24519907477236870,-24519905280236082],[70369079722112,403177600,26495207784975390,26495209992202640],[70369079722112,35184372613120,-13247605101666952,-13247603786922062],[70369079722112,35184439722112,11272300789630083,11272303079253853],[70369079722112,35184641048704,-24519907494573587,-24519905262899363],[70369079722112,70368946028544,26495207784975390,26495209992202640],[70369079722112,70369147355136,-24519907477236870,-24519905280236082],[70369079722112,70369214464128,1975301877105131,1975303142599947],[70369079722112,105553183899648,-24519907494573587,-24519905262899363],[70369079722112,105553385226240,11272300789630083,11272303079253853],[70369079722112,105553452335232,-13247605101666952,-13247603786922062],[70369079723008,202376192,26495207784975390,26495209992202640],[70369079723008,403702784,-26495209992202640,-26495207784975390],[70369079723008,70368946552832,-26495209992202640,-26495207784975390],[70369079723008,70369147879424,26495207784975390,26495209992202640],[70369079853056,134217736,1975301877105131,1975303142599947],[70369079853056,201457672,1975301877105131,1975303142599947],[70369079853056,35184372088840,-13247605101666952,-13247603786922062],[70369079853056,35184439328776,-13247605101666952,-13247603786922062],[70369079853056,70369146830856,1975301877105131,1975303142599947],[70369079853056,70369214070792,1975301877105131,1975303142599947],[70369079853056,105553384701960,-13247605101666952,-13247603786922062],[70369079853056,105553451941896,-13247605101666952,-13247603786922062],[70369080246272,134217856,-1975303142599947,-1975301877105131],[70369080246272,201851008,24519905280236082,24519907477236870],[70369080246272,403177600,-26495209992202640,-26495207784975390],[70369080246272,35184372088960,13247603786922062,13247605101666952],[70369080246272,35184439722112,-11272303079253853,-11272300789630083],[70369080246272,35184641048704,24519905262899363,24519907494573587],[70369080246272,70368945504384,-26495209992202640,-26495207784975390],[70369080246272,70369146830976,24519905280236082,24519907477236870],[70369080246272,70369214464128,-1975303142599947,-1975301877105131],[70369080246272,105553183375488,24519905262899363,24519907494573587],[70369080246272,105553384702080,-11272303079253853,-11272300789630083],[70369080246272,105553452335232,13247603786922062,13247605101666952],[70369080770560,202376192,-26495209992202640,-26495207784975390],[70369080770560,403702784,26495207784975390,26495209992202640],[70369080770560,70368945505280,26495207784975390,26495209992202640],[70369080770560,70369146831872,-26495209992202640,-26495207784975390],[70369146830856,134742152,1975301885115096,1975303134589986],[70369146830856,134873096,22544603239782766,22544604497985104],[70369146830856,201457672,1975301877105131,1975303142599947],[70369146830856,403177600,-1975303134589986,-1975301885115096],[70369146830856,403308544,-22544604497985104,-22544603239782766],[70369146830856,469893120,-1975303142599947,-1975301877105131],[70369146830856,70368744702088,-1975303134589986,-1975301885115096],[70369146830856,70368744833032,-22544604497985104,-22544603239782766],[70369146830856,70368811417608,-1975303142599947,-1975301877105131],[70369146830856,70369013137536,1975301885115096,1975303134589986],[70369146830856,70369013268480,22544603239782766,22544604497985104],[70369146830856,70369079853056,1975301877105131,1975303142599947],[70369146830976,134742152,-1975303134589986,-1975301885115096],[70369146830976,134873216,-22544604497985104,-22544603239782766],[70369146830976,201851008,24519905280236082,24519907477236870],[70369146830976,403177480,1975301885115096,1975303134589986],[70369146830976,403308544,22544603239782766,22544604497985104],[70369146830976,470286336,-24519907477236870,-24519905280236082],[70369146830976,70368744702088,1975301885115096,1975303134589986],[70369146830976,70368744833152,22544603239782766,22544604497985104],[70369146830976,70368811810944,-24519907477236870,-24519905280236082],[70369146830976,70369013137416,-1975303134589986,-1975301885115096],[70369146830976,70369013268480,-22544604497985104,-22544603239782766],[70369146830976,70369080246272,24519905280236082,24519907477236870],[70369146831872,68157440,-22544604485800118,-22544603251967752],[70369146831872,202376192,-26495209992202640,-26495207784975390],[70369146831872,470810624,3950603911967182,3950606127442978],[70369146831872,70368812336128,3950603911967182,3950606127442978],[70369146831872,70369080770560,-26495209992202640,-26495207784975390],[70369146831872,70369214989312,-22544604485800118,-22544603251967752],[70369146961920,134873096,-22544604497985104,-22544603239782766],[70369146961920,134873216,-1975303134589986,-1975301885115096],[70369146961920,201457672,-1975303142599947,-1975301877105131],[70369146961920,403177480,22544603239782766,22544604497985104],[70369146961920,403177600,1975301885115096,1975303134589986],[70369146961920,469762056,1975301877105131,1975303142599947],[70369146961920,70368744833032,22544603239782766,22544604497985104],[70369146961920,70368744833152,1975301885115096,1975303134589986],[70369146961920,70368811417608,1975301877105131,1975303142599947],[70369146961920,70369013137416,-22544604497985104,-22544603239782766],[70369146961920,70369013137536,-1975303134589986,-1975301885115096],[70369146961920,70369079721992,-1975303142599947,-1975301877105131],[70369147355136,134873216,24519905280236082,24519907477236870],[70369147355136,201851008,-24519907477236870,-24519905280236082],[70369147355136,402784384,-24519907477236870,-24519905280236082],[70369147355136,469762176,24519905280236082,24519907477236870],[70369147355136,70368744833152,-24519907477236870,-24519905280236082],[70369147355136,70368811810944,24519905280236082,24519907477236870],[70369147355136,70369012744320,24519905280236082,24519907477236870],[70369147355136,70369079722112,-24519907477236870,-24519905280236082],[70369147355272,134217736,1975301885115096,1975303134589986],[70369147355272,134217856,-1975303134589986,-1975301885115096],[70369147355272,403177480,1975301885115096,1975303134589986],[70369147355272,403177600,-1975303134589986,-1975301885115096],[70369147355272,70368744177672,-1975303134589986,-1975301885115096],[70369147355272,70368744177792,1975301885115096,1975303134589986],[70369147355272,70369013137416,-1975303134589986,-1975301885115096],[70369147355272,70369013137536,1975301885115096,1975303134589986],[70369147486216,134217736,22544603239782766,22544604497985104],[70369147486216,134348800,-22544604497985104,-22544603239782766],[70369147486216,403177480,22544603239782766,22544604497985104],[70369147486216,403308544,-22544604497985104,-22544603239782766],[70369147486216,70368744177672,-22544604497985104,-22544603239782766],[70369147486216,70368744308736,22544603239782766,22544604497985104],[70369147486216,70369013137416,-22544604497985104,-22544603239782766],[70369147486216,70369013268480,22544603239782766,22544604497985104],[70369147486336,134217856,-22544604497985104,-22544603239782766],[70369147486336,134348800,-1975303134589986,-1975301885115096],[70369147486336,134742016,24519905280236082,24519907477236870],[70369147486336,402784384,-24519907477236870,-24519905280236082],[70369147486336,403177600,1975301885115096,1975303134589986],[70369147486336,403308544,22544603239782766,22544604497985104],[70369147486336,70368744177792,22544603239782766,22544604497985104],[70369147486336,70368744308736,1975301885115096,1975303134589986],[70369147486336,70368744701952,-24519907477236870,-24519905280236082],[70369147486336,70369012744320,24519905280236082,24519907477236870],[70369147486336,70369013137536,-1975303134589986,-1975301885115096],[70369147486336,70369013268480,-22544604497985104,-22544603239782766],[70369147879424,67109888,22544603251967752,22544604485800118],[70369147879424,202376192,26495207784975390,26495209992202640],[70369147879424,469763072,-3950606127442978,-3950603911967182],[70369147879424,70368812336128,-3950606127442978,-3950603911967182],[70369147879424,70369079723008,26495207784975390,26495209992202640],[70369147879424,70369214989312,22544603251967752,22544604485800118],[70369214070792,134217736,1975301877105131,1975303142599947],[70369214070792,134348800,-1975303142599947,-1975301877105131],[70369214070792,469762056,1975301877105131,1975303142599947],[70369214070792,469893120,-1975303142599947,-1975301877105131],[70369214070792,70368744177672,-1975303142599947,-1975301877105131],[70369214070792,70368744308736,1975301877105131,1975303142599947],[70369214070792,70369079721992,-1975303142599947,-1975301877105131],[70369214070792,70369079853056,1975301877105131,1975303142599947],[70369214464128,134217856,-1975303142599947,-1975301877105131],[70369214464128,134742016,1975301877105131,1975303142599947],[70369214464128,469762176,-1975303142599947,-1975301877105131],[70369214464128,470286336,1975301877105131,1975303142599947],[70369214464128,70368744177792,1975301877105131,1975303142599947],[70369214464128,70368744701952,-1975303142599947,-1975301877105131],[70369214464128,70369079722112,1975301877105131,1975303142599947],[70369214464128,70369080246272,-1975303142599947,-1975301877105131],[70369214989312,67109888,22544603251967752,22544604485800118],[70369214989312,68157440,-22544604485800118,-22544603251967752],[70369214989312,268436480,-22544604485800118,-22544603251967752],[70369214989312,269484032,22544603251967752,22544604485800118],[70369214989312,70368945505280,22544603251967752,22544604485800118],[70369214989312,70368946552832,-22544604485800118,-22544603251967752],[70369214989312,70369146831872,-22544604485800118,-22544603251967752],[70369214989312,70369147879424,22544603251967752,22544604485800118],[87960997330952,35184372219904,-1975303161294799,-1975301858410281],[87960997330952,35184439328776,-1975303161294799,-1975301858410281],[87960997330952,123145302441984,-1975303161294799,-1975301858410281],[87960997330952,123145369550856,-1975303161294799,-1975301858410281],[87960997462016,35184372088840,1975301858410281,1975303161294799],[87960997462016,35184439328776,1975301858410281,1975303161294799],[87960997462016,123145302310920,1975301858410281,1975303161294799],[87960997462016,123145369550856,1975301858410281,1975303161294799],[87961064440832,35184373137408,-22544604485800118,-22544603251967752],[87961064440832,35184507356160,-22544604485800118,-22544603251967752],[87961064440832,123145303359488,-22544604485800118,-22544603251967752],[87961064440832,123145437578240,-22544604485800118,-22544603251967752],[87961065488384,35184372089856,22544603251967752,22544604485800118],[87961065488384,35184507356160,22544603251967752,22544604485800118],[87961065488384,123145302311936,22544603251967752,22544604485800118],[87961065488384,123145437578240,22544603251967752,22544604485800118],[87961198657664,35184372613120,24519905262899363,24519907494573587],[87961198657664,35184641048704,24519905262899363,24519907494573587],[87961198657664,123145302835200,24519905262899363,24519907494573587],[87961198657664,123145571270784,24519905262899363,24519907494573587],[87961199181824,35184372088960,-24519907494573587,-24519905262899363],[87961199181824,35184641048704,-24519907494573587,-24519905262899363],[87961199181824,123145302311040,-24519907494573587,-24519905262899363],[87961199181824,123145571270784,-24519907494573587,-24519905262899363],[105553183375488,35184641048704,24519905262899363,24519907494573587],[105553183375488,35184708157440,-24519907494573587,-24519905262899363],[105553183375488,70369013137536,-24519907494573587,-24519905262899363],[105553183375488,70369080246272,24519905262899363,24519907494573587],[105553183899648,35184641048704,-24519907494573587,-24519905262899363],[105553183899648,35184707633280,24519905262899363,24519907494573587],[105553183899648,70369013137536,24519905262899363,24519907494573587],[105553183899648,70369079722112,-24519907494573587,-24519905262899363],[105553250485248,17592187092992,22544603251967752,22544604485800118],[105553250485248,17592321311744,22544603251967752,22544604485800118],[105553250485248,123145303359488,22544603251967752,22544604485800118],[105553250485248,123145437578240,22544603251967752,22544604485800118],[105553251532800,17592186045440,-22544604485800118,-22544603251967752],[105553251532800,17592321311744,-22544604485800118,-22544603251967752],[105553251532800,123145302311936,-22544604485800118,-22544603251967752],[105553251532800,123145437578240,-22544604485800118,-22544603251967752],[105553384701960,35184372613256,-13247605100033866,-13247603788555150],[105553384701960,35184372744200,1975301852392980,1975303167312100],[105553384701960,35184439328776,-13247605101666952,-13247603786922062],[105553384701960,35184641048704,13247603788555150,13247605100033866],[105553384701960,35184641179648,-1975303167312100,-1975301852392980],[105553384701960,35184707764224,13247603786922062,13247605101666952],[105553384701960,70368744702088,13247603788555150,13247605100033866],[105553384701960,70368744833032,-1975303167312100,-1975301852392980],[105553384701960,70368811417608,13247603786922062,13247605101666952],[105553384701960,70369013137536,-13247605100033866,-13247603788555150],[105553384701960,70369013268480,1975301852392980,1975303167312100],[105553384701960,70369079853056,-13247605101666952,-13247603786922062],[105553384702080,17592186568704,-22544604485800118,-22544603251967752],[105553384702080,17592455004288,-22544604485800118,-22544603251967752],[105553384702080,35184372613256,13247603788555150,13247605100033866],[105553384702080,35184372744320,-1975303167312100,-1975301852392980],[105553384702080,35184439722112,-11272303079253853,-11272300789630083],[105553384702080,35184641048584,-13247605100033866,-13247603788555150],[105553384702080,35184641179648,1975301852392980,1975303167312100],[105553384702080,35184708157440,11272300789630083,11272303079253853],[105553384702080,70368744702088,-13247605100033866,-13247603788555150],[105553384702080,70368744833152,1975301852392980,1975303167312100],[105553384702080,70368811810944,11272300789630083,11272303079253853],[105553384702080,70369013137416,13247603788555150,13247605100033866],[105553384702080,70369013268480,-1975303167312100,-1975301852392980],[105553384702080,70369080246272,-11272303079253853,-11272300789630083],[105553384702080,123145302835200,-22544604485800118,-22544603251967752],[105553384702080,123145571270784,-22544604485800118,-22544603251967752],[105553384833024,35184372744200,-1975303167312100,-1975301852392980],[105553384833024,35184372744320,13247603788555150,13247605100033866],[105553384833024,35184439328776,13247603786922062,13247605101666952],[105553384833024,35184641048584,1975301852392980,1975303167312100],[105553384833024,35184641048704,-13247605100033866,-13247603788555150],[105553384833024,35184707633160,-13247605101666952,-13247603786922062],[105553384833024,70368744833032,1975301852392980,1975303167312100],[105553384833024,70368744833152,-13247605100033866,-13247603788555150],[105553384833024,70368811417608,-13247605101666952,-13247603786922062],[105553384833024,70369013137416,-1975303167312100,-1975301852392980],[105553384833024,70369013137536,13247603788555150,13247605100033866],[105553384833024,70369079721992,13247603786922062,13247605101666952],[105553385226240,17592186044544,22544603251967752,22544604485800118],[105553385226240,17592455004288,22544603251967752,22544604485800118],[105553385226240,35184372744320,-11272303079253853,-11272300789630083],[105553385226240,35184439722112,11272300789630083,11272303079253853],[105553385226240,35184640655488,11272300789630083,11272303079253853],[105553385226240,35184707633280,-11272303079253853,-11272300789630083],[105553385226240,70368744833152,11272300789630083,11272303079253853],[105553385226240,70368811810944,-11272303079253853,-11272300789630083],[105553385226240,70369012744320,-11272303079253853,-11272300789630083],[105553385226240,70369079722112,11272300789630083,11272303079253853],[105553385226240,123145302311040,22544603251967752,22544604485800118],[105553385226240,123145571270784,22544603251967752,22544604485800118],[105553385226376,35184372088840,-13247605100033866,-13247603788555150],[105553385226376,35184372088960,13247603788555150,13247605100033866],[105553385226376,35184641048584,-13247605100033866,-13247603788555150],[105553385226376,35184641048704,13247603788555150,13247605100033866],[105553385226376,70368744177672,13247603788555150,13247605100033866],[105553385226376,70368744177792,-13247605100033866,-13247603788555150],[105553385226376,70369013137416,13247603788555150,13247605100033866],[105553385226376,70369013137536,-13247605100033866,-13247603788555150],[105553385357320,35184372088840,1975301852392980,1975303167312100],[105553385357320,35184372219904,-1975303167312100,-1975301852392980],[105553385357320,35184641048584,1975301852392980,1975303167312100],[105553385357320,35184641179648,-1975303167312100,-1975301852392980],[105553385357320,70368744177672,-1975303167312100,-1975301852392980],[105553385357320,70368744308736,1975301852392980,1975303167312100],[105553385357320,70369013137416,-1975303167312100,-1975301852392980],[105553385357320,70369013268480,1975301852392980,1975303167312100],[105553385357440,35184372088960,-1975303167312100,-1975301852392980],[105553385357440,35184372219904,13247603788555150,13247605100033866],[105553385357440,35184372613120,-11272303079253853,-11272300789630083],[105553385357440,35184640655488,11272300789630083,11272303079253853],[105553385357440,35184641048704,-13247605100033866,-13247603788555150],[105553385357440,35184641179648,1975301852392980,1975303167312100],[105553385357440,70368744177792,1975301852392980,1975303167312100],[105553385357440,70368744308736,-13247605100033866,-13247603788555150],[105553385357440,70368744701952,11272300789630083,11272303079253853],[105553385357440,70369012744320,-11272303079253853,-11272300789630083],[105553385357440,70369013137536,13247603788555150,13247605100033866],[105553385357440,70369013268480,-1975303167312100,-1975301852392980],[105553451941896,35184372088840,-13247605101666952,-13247603786922062],[105553451941896,35184372219904,13247603786922062,13247605101666952],[105553451941896,35184707633160,-13247605101666952,-13247603786922062],[105553451941896,35184707764224,13247603786922062,13247605101666952],[105553451941896,70368744177672,13247603786922062,13247605101666952],[105553451941896,70368744308736,-13247605101666952,-13247603786922062],[105553451941896,70369079721992,13247603786922062,13247605101666952],[105553451941896,70369079853056,-13247605101666952,-13247603786922062],[105553452335232,35184372088960,13247603786922062,13247605101666952],[105553452335232,35184372613120,-13247605101666952,-13247603786922062],[105553452335232,35184707633280,13247603786922062,13247605101666952],[105553452335232,35184708157440,-13247605101666952,-13247603786922062],[105553452335232,70368744177792,-13247605101666952,-13247603786922062],[105553452335232,70368744701952,13247603786922062,13247605101666952],[105553452335232,70369079722112,-13247605101666952,-13247603786922062],[105553452335232,70369080246272,13247603786922062,13247605101666952],[123145302310920,35184439328776,1975301858410281,1975303161294799],[123145302310920,52776625373184,-1975303161294799,-1975301858410281],[123145302310920,70368811417608,-1975303161294799,-1975301858410281],[123145302310920,87960997462016,1975301858410281,1975303161294799],[123145302311040,17592455004288,22544603251967752,22544604485800118],[123145302311040,35184641048704,-24519907494573587,-24519905262899363],[123145302311040,52776827092992,1975301858410281,1975303161294799],[123145302311040,70369013137536,1975301858410281,1975303161294799],[123145302311040,87961199181824,-24519907494573587,-24519905262899363],[123145302311040,105553385226240,22544603251967752,22544604485800118],[123145302311936,17592321311744,-22544604485800118,-22544603251967752],[123145302311936,35184507356160,22544603251967752,22544604485800118],[123145302311936,87961065488384,22544603251967752,22544604485800118],[123145302311936,105553251532800,-22544604485800118,-22544603251967752],[123145302441984,35184439328776,-1975303161294799,-1975301858410281],[123145302441984,52776625242120,1975301858410281,1975303161294799],[123145302441984,70368811417608,1975301858410281,1975303161294799],[123145302441984,87960997330952,-1975303161294799,-1975301858410281],[123145302835200,17592455004288,-22544604485800118,-22544603251967752],[123145302835200,35184641048704,24519905262899363,24519907494573587],[123145302835200,52776826568832,-1975303161294799,-1975301858410281],[123145302835200,70369013137536,-1975303161294799,-1975301858410281],[123145302835200,87961198657664,24519905262899363,24519907494573587],[123145302835200,105553384702080,-22544604485800118,-22544603251967752],[123145303359488,17592321311744,22544603251967752,22544604485800118],[123145303359488,35184507356160,-22544604485800118,-22544603251967752],[123145303359488,87961064440832,-22544604485800118,-22544603251967752],[123145303359488,105553250485248,22544603251967752,22544604485800118],[123145369550856,35184372088840,1975301858410281,1975303161294799],[123145369550856,35184372219904,-1975303161294799,-1975301858410281],[123145369550856,52776625242120,1975301858410281,1975303161294799],[123145369550856,52776625373184,-1975303161294799,-1975301858410281],[123145369550856,70368744177672,-1975303161294799,-1975301858410281],[123145369550856,70368744308736,1975301858410281,1975303161294799],[123145369550856,87960997330952,-1975303161294799,-1975301858410281],[123145369550856,87960997462016,1975301858410281,1975303161294799],[123145437578240,17592186045440,-22544604485800118,-22544603251967752],[123145437578240,17592187092992,22544603251967752,22544604485800118],[123145437578240,35184372089856,22544603251967752,22544604485800118],[123145437578240,35184373137408,-22544604485800118,-22544603251967752],[123145437578240,87961064440832,-22544604485800118,-22544603251967752],[123145437578240,87961065488384,22544603251967752,22544604485800118],[123145437578240,105553250485248,22544603251967752,22544604485800118],[123145437578240,105553251532800,-22544604485800118,-22544603251967752],[123145571270784,17592186044544,22544603251967752,22544604485800118],[123145571270784,17592186568704,-22544604485800118,-22544603251967752],[123145571270784,35184372088960,-24519907494573587,-24519905262899363],[123145571270784,35184372613120,24519905262899363,24519907494573587],[123145571270784,52776826568832,-1975303161294799,-1975301858410281],[123145571270784,52776827092992,1975301858410281,1975303161294799],[123145571270784,70368744177792,1975301858410281,1975303161294799],[123145571270784,70368744701952,-1975303161294799,-1975301858410281],[123145571270784,87961198657664,24519905262899363,24519907494573587],[123145571270784,87961199181824,-24519907494573587,-24519905262899363],[123145571270784,105553384702080,-22544604485800118,-22544603251967752],[123145571270784,105553385226240,22544603251967752,22544604485800118],[140737488355329,32772,-13247606405704134,-13247602482884872],[140737488355329,1073741828,1975300020689110,1975304999015964],[140737488355329,1073774592,1975300580344758,1975304439360326],[140737488355329,1073774598,1975301853739043,1975303165966039],[140737488355329,1073774604,22544603247468479,22544604490299392],[140737488355329,1073905668,-13247605070627222,-13247603817961795],[140737488355329,1140883460,1975301882939439,1975303136765642],[140737488355329,17593259819012,-13247605102529449,-13247603786059568],[140737488355329,140737488388101,-13247606405704134,-13247602482884872],[140737488355329,140738562097157,1975300020689110,1975304999015964],[140737488355329,140738562129921,1975300580344758,1975304439360326],[140737488355329,140738562129927,1975301853739043,1975303165966039],[140737488355329,140738562129933,22544603247468479,22544604490299392],[140737488355329,140738562260997,-13247605070627222,-13247603817961795],[140737488355329,140738629238789,1975301882939439,1975303136765642],[140737488355329,158330748174341,-13247605102529449,-13247603786059568],[140737488355329,2305843010287468548,-13247605142672540,-13247603745916480],[140737488355329,2305983747775823877,-13247605142672540,-13247603745916480],[140737488355330,1073774597,-1975303165966039,-1975301853739043],[140737488355330,1073774604,-22544604490299392,-22544603247468479],[140737488355330,1073905672,13247603817961795,13247605070627222],[140737488355330,1140981768,-1975303136765642,-1975301882939439],[140737488355330,17592253284360,13247603786059568,13247605102529449],[140737488355330,140738562129927,-1975303165966039,-1975301853739043],[140737488355330,140738562129934,-22544604490299392,-22544603247468479],[140737488355330,140738562261002,13247603817961795,13247605070627222],[140737488355330,140738629337098,-1975303136765642,-1975301882939439],[140737488355330,158329741639690,13247603786059568,13247605102529449],[140737488355332,0,7901206260429784,7901213818390536],[140737488355332,32769,13247602482884872,13247606405704134],[140737488355332,32776,13247602585717435,13247606302871576],[140737488355332,163840,7321695128457817,7321698701015960],[140737488355332,67141632,-7321699779192130,-7321694050281650],[140737488355332,1073741825,-1975304999015964,-1975300020689110],[140737488355332,1073741832,-1975304835202292,-1975300184502783],[140737488355332,1073774592,-187713876827545928,-187713836806076040],[140737488355332,1073774601,-24519907503744101,-24519905253728852],[140737488355332,1073872896,-7321699779192130,-7321694050281650],[140737488355332,1073905665,13247603817961795,13247605070627222],[140737488355332,1073905672,26495207692945056,26495210084232978],[140737488355332,1140850688,7321695128457817,7321698701015960],[140737488355332,1140883457,-1975303136765642,-1975301882939439],[140737488355332,1140883464,-1975303111382023,-1975301908323058],[140737488355332,1140981768,-1975303111382023,-1975301908323058],[140737488355332,1141014528,-45089208888685184,-45089206586850560],[140737488355332,17592186077184,-1975304835202292,-1975300184502783],[140737488355332,17592253284360,13247603813192808,13247605075396206],[140737488355332,17592253317120,-1975303111382023,-1975301908323058],[140737488355332,17593259786240,13247602585717435,13247606302871576],[140737488355332,17593259819009,13247603786059568,13247605102529449],[140737488355332,17593259819016,13247603813192808,13247605075396206],[140737488355332,17593259950080,-1975303111382023,-1975301908323058],[140737488355332,17593326927872,26495207692945056,26495210084232978],[140737488355332,140737488355332,7901206260429784,7901213818390536],[140737488355332,140737488388101,13247602482884872,13247606405704134],[140737488355332,140737488388108,13247602585717435,13247606302871576],[140737488355332,140737488519172,7321695128457817,7321698701015960],[140737488355332,140737555496964,-7321699779192130,-7321694050281650],[140737488355332,140738562097157,-1975304999015964,-1975300020689110],[140737488355332,140738562097164,-1975304835202292,-1975300184502783],[140737488355332,140738562129924,-187713876827545928,-187713836806076040],[140737488355332,140738562129933,-24519907503744101,-24519905253728852],[140737488355332,140738562228228,-7321699779192130,-7321694050281650],[140737488355332,140738562260997,13247603817961795,13247605070627222],[140737488355332,140738562261004,26495207692945056,26495210084232978],[140737488355332,140738629206020,7321695128457817,7321698701015960],[140737488355332,140738629238789,-1975303136765642,-1975301882939439],[140737488355332,140738629238796,-1975303111382023,-1975301908323058],[140737488355332,140738629337100,-1975303111382023,-1975301908323058],[140737488355332,140738629369860,-45089208888685184,-45089206586850560],[140737488355332,158329674432516,-1975304835202292,-1975300184502783],[140737488355332,158329741639692,13247603813192808,13247605075396206],[140737488355332,158329741672452,-1975303111382023,-1975301908323058],[140737488355332,158330748141572,13247602585717435,13247606302871576],[140737488355332,158330748174341,13247603786059568,13247605102529449],[140737488355332,158330748174348,13247603813192808,13247605075396206],[140737488355332,158330748305412,-1975303111382023,-1975301908323058],[140737488355332,158330815283204,26495207692945056,26495210084232978],[140737488355332,2305843009213726720,-1975304999015964,-1975300020689110],[140737488355332,2305843010287435776,13247602482884872,13247606405704134],[140737488355332,2305843010287468545,13247603745916480,13247605142672540],[140737488355332,2305843010287468552,13247603786059568,13247605102529449],[140737488355332,2305843010287599616,-1975303136765642,-1975301882939439],[140737488355332,2305843010354577408,13247603817961795,13247605070627222],[140737488355332,2305860602473512960,-24519907503744101,-24519905253728852],[140737488355332,2305983746702082052,-1975304999015964,-1975300020689110],[140737488355332,2305983747775791108,13247602482884872,13247606405704134],[140737488355332,2305983747775823877,13247603745916480,13247605142672540],[140737488355332,2305983747775823884,13247603786059568,13247605102529449],[140737488355332,2305983747775954948,-1975303136765642,-1975301882939439],[140737488355332,2305983747842932740,13247603817961795,13247605070627222],[140737488355332,2306001339961868292,-24519907503744101,-24519905253728852],[140737488355335,1073774597,-1975303165966039,-1975301853739043],[140737488355335,1073774598,1975301853739043,1975303165966039],[140737488355335,140738562129921,1975301853739043,1975303165966039],[140737488355335,140738562129922,-1975303165966039,-1975301853739043],[140737488355336,32772,-13247606302871576,-13247602585717435],[140737488355336,163840,1975300718656210,1975304301048867],[140737488355336,67239936,-11272305157286919,-11272298711597012],[140737488355336,1073741828,1975300184502783,1975304835202292],[140737488355336,1073774592,-11272305157286919,-11272298711597012],[140737488355336,1073774597,1975301853739043,1975303165966039],[140737488355336,1073774598,22544603247468479,22544604490299392],[140737488355336,1073774724,22544603251967752,22544604485800118],[140737488355336,1073872896,3950600725236988,3950609314173172],[140737488355336,1073905666,-13247605070627222,-13247603817961795],[140737488355336,1073905668,18593996379768482,18594001318589224],[140737488355336,1073905792,-13247605066127948,-13247603822461068],[140737488355336,1074429952,-13247605076872486,-13247603811716528],[140737488355336,1140850688,1975300718656210,1975304301048867],[140737488355336,1140883460,1975301908323058,1975303111382023],[140737488355336,1140981762,1975301882939439,1975303136765642],[140737488355336,1140981764,1975301908323058,1975303111382023],[140737488355336,1140981888,1975301885115096,1975303134589986],[140737488355336,1141014528,18593996425761684,18594001272596028],[140737488355336,1141506048,22544603239782766,22544604497985104],[140737488355336,1409417216,1975301877105131,1975303142599947],[140737488355336,17592186175488,1975300184502783,1975304835202292],[140737488355336,17592253153280,-13247606302871576,-13247602585717435],[140737488355336,17592253284354,-13247605102529449,-13247603786059568],[140737488355336,17592253284356,-13247605075396206,-13247603813192808],[140737488355336,17592253284480,-13247605100033866,-13247603788555150],[140737488355336,17592253317120,1975301908323058,1975303111382023],[140737488355336,17592253808640,1975301852392980,1975303167312100],[140737488355336,17592521719808,-13247605101666952,-13247603786922062],[140737488355336,17593259819012,-13247605075396206,-13247603813192808],[140737488355336,17593259950080,1975301908323058,1975303111382023],[140737488355336,17593327026176,18593996379768482,18594001318589224],[140737488355336,52776625373184,1975301858410281,1975303161294799],[140737488355336,140737488388108,-13247606302871576,-13247602585717435],[140737488355336,140737488519176,1975300718656210,1975304301048867],[140737488355336,140737555595272,-11272305157286919,-11272298711597012],[140737488355336,140738562097164,1975300184502783,1975304835202292],[140737488355336,140738562129928,-11272305157286919,-11272298711597012],[140737488355336,140738562129933,1975301853739043,1975303165966039],[140737488355336,140738562129934,22544603247468479,22544604490299392],[140737488355336,140738562130060,22544603251967752,22544604485800118],[140737488355336,140738562228232,3950600725236988,3950609314173172],[140737488355336,140738562261002,-13247605070627222,-13247603817961795],[140737488355336,140738562261004,18593996379768482,18594001318589224],[140737488355336,140738562261128,-13247605066127948,-13247603822461068],[140737488355336,140738562785288,-13247605076872486,-13247603811716528],[140737488355336,140738629206024,1975300718656210,1975304301048867],[140737488355336,140738629238796,1975301908323058,1975303111382023],[140737488355336,140738629337098,1975301882939439,1975303136765642],[140737488355336,140738629337100,1975301908323058,1975303111382023],[140737488355336,140738629337224,1975301885115096,1975303134589986],[140737488355336,140738629369864,18593996425761684,18594001272596028],[140737488355336,140738629861384,22544603239782766,22544604497985104],[140737488355336,140738897772552,1975301877105131,1975303142599947],[140737488355336,158329674530824,1975300184502783,1975304835202292],[140737488355336,158329741508616,-13247606302871576,-13247602585717435],[140737488355336,158329741639690,-13247605102529449,-13247603786059568],[140737488355336,158329741639692,-13247605075396206,-13247603813192808],[140737488355336,158329741639816,-13247605100033866,-13247603788555150],[140737488355336,158329741672456,1975301908323058,1975303111382023],[140737488355336,158329742163976,1975301852392980,1975303167312100],[140737488355336,158330010075144,-13247605101666952,-13247603786922062],[140737488355336,158330748174348,-13247605075396206,-13247603813192808],[140737488355336,158330748305416,1975301908323058,1975303111382023],[140737488355336,158330815381512,18593996379768482,18594001318589224],[140737488355336,193514113728520,1975301858410281,1975303161294799],[140737488355336,2305843010287468548,-13247605102529449,-13247603786059568],[140737488355336,2305843010287599616,1975301882939439,1975303136765642],[140737488355336,2305843010354675712,-13247605070627222,-13247603817961795],[140737488355336,2305860601466978304,22544603247468479,22544604490299392],[140737488355336,2305983747775823884,-13247605102529449,-13247603786059568],[140737488355336,2305983747775954952,1975301882939439,1975303136765642],[140737488355336,2305983747843031048,-13247605070627222,-13247603817961795],[140737488355336,2306001338955333640,22544603247468479,22544604490299392],[140737488355336,4611703610680672256,1975301853739043,1975303165966039],[140737488355336,4611844348169027592,1975301853739043,1975303165966039],[140737488355341,1073774597,1975301853739043,1975303165966039],[140737488355341,1073774601,-24519907503744101,-24519905253728852],[140737488355341,1073774604,22544603247468479,22544604490299392],[140737488355341,140738562129921,22544603247468479,22544604490299392],[140737488355341,140738562129924,-24519907503744101,-24519905253728852],[140737488355341,140738562129928,1975301853739043,1975303165966039],[140737488355342,1073774598,22544603247468479,22544604490299392],[140737488355342,1073774604,-22544604490299392,-22544603247468479],[140737488355342,140738562129922,-22544604490299392,-22544603247468479],[140737488355342,140738562129928,22544603247468479,22544604490299392],[140737488355456,1073774604,-22544604485800118,-22544603251967752],[140737488355456,1073905672,13247603822461068,13247605066127948],[140737488355456,1074429952,13247603811716528,13247605076872486],[140737488355456,1140981768,-1975303134589986,-1975301885115096],[140737488355456,1141506048,-22544604497985104,-22544603239782766],[140737488355456,1409810432,-1975303142599947,-1975301877105131],[140737488355456,17592253284360,13247603788555150,13247605100033866],[140737488355456,17592253808640,-1975303167312100,-1975301852392980],[140737488355456,17592522113024,13247603786922062,13247605101666952],[140737488355456,52776827092992,-1975303161294799,-1975301858410281],[140737488355456,140738562130060,-22544604485800118,-22544603251967752],[140737488355456,140738562261128,13247603822461068,13247605066127948],[140737488355456,140738562785408,13247603811716528,13247605076872486],[140737488355456,140738629337224,-1975303134589986,-1975301885115096],[140737488355456,140738629861504,-22544604497985104,-22544603239782766],[140737488355456,140738898165888,-1975303142599947,-1975301877105131],[140737488355456,158329741639816,13247603788555150,13247605100033866],[140737488355456,158329742164096,-1975303167312100,-1975301852392980],[140737488355456,158330010468480,13247603786922062,13247605101666952],[140737488355456,193514315448448,-1975303161294799,-1975301858410281],[140737488355468,1073774604,-22544604485800118,-22544603251967752],[140737488355468,1073774724,22544603251967752,22544604485800118],[140737488355468,140738562129928,22544603251967752,22544604485800118],[140737488355468,140738562130048,-22544604485800118,-22544603251967752],[140737488388096,131076,-11272305103287715,-11272298765596219],[140737488388096,67108868,-1975305379225034,-1975299640480040],[140737488388096,1073741825,-1975304439360326,-1975300580344758],[140737488388096,1073741828,193060229393271076,193060273050119596],[140737488388096,1073741832,11272298711597012,11272305157286919],[140737488388096,1140981764,47064508636712560,47064511858528265],[140737488388096,1140981768,1975301908323058,1975303111382023],[140737488388096,17592186044420,1975300184502783,1975304835202292],[140737488388096,17592253284356,1975301908323058,1975303111382023],[140737488388096,17592253284360,-13247605075396206,-13247603813192808],[140737488388096,17593259917316,-11272303013198523,-11272300855685410],[140737488388096,17593326895108,-26495210084232978,-26495207692945056],[140737488388096,140737488519172,-11272305103287715,-11272298765596219],[140737488388096,140737555496964,-1975305379225034,-1975299640480040],[140737488388096,140738562129921,-1975304439360326,-1975300580344758],[140737488388096,140738562129924,193060229393271076,193060273050119596],[140737488388096,140738562129928,11272298711597012,11272305157286919],[140737488388096,140738629369860,47064508636712560,47064511858528265],[140737488388096,140738629369864,1975301908323058,1975303111382023],[140737488388096,158329674432516,1975300184502783,1975304835202292],[140737488388096,158329741672452,1975301908323058,1975303111382023],[140737488388096,158329741672456,-13247605075396206,-13247603813192808],[140737488388096,158330748305412,-11272303013198523,-11272300855685410],[140737488388096,158330815283204,-26495210084232978,-26495207692945056],[140737488388096,2305843009213693956,1975300020689110,1975304999015964],[140737488388096,2305843010287566852,-11272303065715385,-11272300803168551],[140737488388096,2305843010354544644,-13247605070627222,-13247603817961795],[140737488388096,2305860602473480196,24519905253728852,24519907503744101],[140737488388096,2305983746702082052,1975300020689110,1975304999015964],[140737488388096,2305983747775954948,-11272303065715385,-11272300803168551],[140737488388096,2305983747842932740,-13247605070627222,-13247603817961795],[140737488388096,2306001339961868292,24519905253728852,24519907503744101],[140737488388101,32769,13247602482884872,13247606405704134],[140737488388101,32772,-13247606405704134,-13247602482884872],[140737488388101,1073741826,1975301853739043,1975303165966039],[140737488388101,1073741831,1975301853739043,1975303165966039],[140737488388101,1073741832,-1975303165966039,-1975301853739043],[140737488388101,1073741837,-1975303165966039,-1975301853739043],[140737488388101,1073905665,-11272303065715385,-11272300803168551],[140737488388101,1073905668,11272300803168551,11272303065715385],[140737488388101,1140883457,-1975303136765642,-1975301882939439],[140737488388101,1140883460,1975301882939439,1975303136765642],[140737488388101,17593259819009,13247603786059568,13247605102529449],[140737488388101,17593259819012,-13247605102529449,-13247603786059568],[140737488388101,140737488355329,-13247606405704134,-13247602482884872],[140737488388101,140737488355332,13247602482884872,13247606405704134],[140737488388101,140738562129922,1975301853739043,1975303165966039],[140737488388101,140738562129927,1975301853739043,1975303165966039],[140737488388101,140738562129928,-1975303165966039,-1975301853739043],[140737488388101,140738562129933,-1975303165966039,-1975301853739043],[140737488388101,140738562228225,11272300803168551,11272303065715385],[140737488388101,140738562228228,-11272303065715385,-11272300803168551],[140737488388101,140738629206017,1975301882939439,1975303136765642],[140737488388101,140738629206020,-1975303136765642,-1975301882939439],[140737488388101,158330748141569,-13247605102529449,-13247603786059568],[140737488388101,158330748141572,13247603786059568,13247605102529449],[140737488388101,2305843010287468545,13247603745916480,13247605142672540],[140737488388101,2305843010287468548,-13247605142672540,-13247603745916480],[140737488388101,2305983747775791105,-13247605142672540,-13247603745916480],[140737488388101,2305983747775791108,13247603745916480,13247605142672540],[140737488388102,1073741825,-1975303165966039,-1975301853739043],[140737488388102,1073741831,-1975303165966039,-1975301853739043],[140737488388102,1073741832,-22544604490299392,-22544603247468479],[140737488388102,1073741838,-22544604490299392,-22544603247468479],[140737488388102,140738562129921,-1975303165966039,-1975301853739043],[140737488388102,140738562129927,-1975303165966039,-1975301853739043],[140737488388102,140738562129928,-22544604490299392,-22544603247468479],[140737488388102,140738562129934,-22544604490299392,-22544603247468479],[140737488388105,1073741828,24519905253728852,24519907503744101],[140737488388105,1073741837,24519905253728852,24519907503744101],[140737488388105,140738562129924,24519905253728852,24519907503744101],[140737488388105,140738562129933,24519905253728852,24519907503744101],[140737488388108,32772,-13247606302871576,-13247602585717435],[140737488388108,32776,13247602585717435,13247606302871576],[140737488388108,1073741825,-22544604490299392,-22544603247468479],[140737488388108,1073741826,22544603247468479,22544604490299392],[140737488388108,1073741837,-22544604490299392,-22544603247468479],[140737488388108,1073741838,22544603247468479,22544604490299392],[140737488388108,1073741952,22544603251967752,22544604485800118],[140737488388108,1073741964,22544603251967752,22544604485800118],[140737488388108,1073872896,45089206464001460,45089209011534280],[140737488388108,1073872908,49039811112013498,49039814402932400],[140737488388108,1073905668,11272300855685410,11272303013198523],[140737488388108,1073905672,-15222909197186829,-15222904711107262],[140737488388108,1140883460,1975301908323058,1975303111382023],[140737488388108,1140883464,-1975303111382023,-1975301908323058],[140737488388108,17593259819012,-13247605075396206,-13247603813192808],[140737488388108,17593259819016,13247603813192808,13247605075396206],[140737488388108,140737488355332,13247602585717435,13247606302871576],[140737488388108,140737488355336,-13247606302871576,-13247602585717435],[140737488388108,140738562129921,-22544604490299392,-22544603247468479],[140737488388108,140738562129922,22544603247468479,22544604490299392],[140737488388108,140738562129933,-22544604490299392,-22544603247468479],[140737488388108,140738562129934,22544603247468479,22544604490299392],[140737488388108,140738562130048,22544603251967752,22544604485800118],[140737488388108,140738562130060,22544603251967752,22544604485800118],[140737488388108,140738562228228,-15222909197186829,-15222904711107262],[140737488388108,140738562228232,11272300855685410,11272303013198523],[140737488388108,140738562260992,49039811112013498,49039814402932400],[140737488388108,140738562261004,45089206464001460,45089209011534280],[140737488388108,140738629206020,-1975303111382023,-1975301908323058],[140737488388108,140738629206024,1975301908323058,1975303111382023],[140737488388108,158330748141572,13247603813192808,13247605075396206],[140737488388108,158330748141576,-13247605075396206,-13247603813192808],[140737488388108,2305843010287468548,-13247605102529449,-13247603786059568],[140737488388108,2305843010287468552,13247603786059568,13247605102529449],[140737488388108,2305983747775791108,13247603786059568,13247605102529449],[140737488388108,2305983747775791112,-13247605102529449,-13247603786059568],[140737488388228,1073741832,-22544604485800118,-22544603251967752],[140737488388228,1073741964,-22544604485800118,-22544603251967752],[140737488388228,140738562129928,-22544604485800118,-22544603251967752],[140737488388228,140738562130060,-22544604485800118,-22544603251967752],[140737488486400,32772,22544602005389605,22544605732378260],[140737488486400,32776,-1975304301048867,-1975300718656210],[140737488486400,67108872,11272298711597012,11272305157286919],[140737488486400,1073741828,-1975305379225034,-1975299640480040],[140737488486400,1073741832,-3950609314173172,-3950600725236988],[140737488486400,1073774604,-45089209011534280,-45089206464001460],[140737488486400,1074298884,-22544604485800118,-22544603251967752],[140737488486400,1074298888,26495207784975390,26495209992202640],[140737488486400,1140883460,-24519907601681415,-24519905155791537],[140737488486400,1140883464,-7321700273679520,-7321693555794256],[140737488486400,1141374984,-24519907477236870,-24519905280236082],[140737488486400,1409286152,-1975303142599947,-1975301877105131],[140737488486400,17592186044424,-1975304835202292,-1975300184502783],[140737488486400,17592253186056,11272300855685410,11272303013198523],[140737488486400,17592253677576,11272300789630083,11272303079253853],[140737488486400,17592521588744,13247603786922062,13247605101666952],[140737488486400,17593259819012,13247603813192808,13247605075396206],[140737488486400,17593259819016,-1975303111382023,-1975301908323058],[140737488486400,17593326895112,-18594001318589224,-18593996379768482],[140737488486400,52776625242120,-1975303161294799,-1975301858410281],[140737488486400,140737488519172,22544602005389605,22544605732378260],[140737488486400,140737488519176,-1975304301048867,-1975300718656210],[140737488486400,140737555595272,11272298711597012,11272305157286919],[140737488486400,140738562228228,-1975305379225034,-1975299640480040],[140737488486400,140738562228232,-3950609314173172,-3950600725236988],[140737488486400,140738562261004,-45089209011534280,-45089206464001460],[140737488486400,140738562785284,-22544604485800118,-22544603251967752],[140737488486400,140738562785288,26495207784975390,26495209992202640],[140737488486400,140738629369860,-24519907601681415,-24519905155791537],[140737488486400,140738629369864,-7321700273679520,-7321693555794256],[140737488486400,140738629861384,-24519907477236870,-24519905280236082],[140737488486400,140738897772552,-1975303142599947,-1975301877105131],[140737488486400,158329674530824,-1975304835202292,-1975300184502783],[140737488486400,158329741672456,11272300855685410,11272303013198523],[140737488486400,158329742163976,11272300789630083,11272303079253853],[140737488486400,158330010075144,13247603786922062,13247605101666952],[140737488486400,158330748305412,13247603813192808,13247605075396206],[140737488486400,158330748305416,-1975303111382023,-1975301908323058],[140737488486400,158330815381512,-18594001318589224,-18593996379768482],[140737488486400,193514113728520,-1975303161294799,-1975301858410281],[140737488486400,2305843010287468548,13247603786059568,13247605102529449],[140737488486400,2305843010287468552,-1975303136765642,-1975301882939439],[140737488486400,2305843010354544648,13247603817961795,13247605070627222],[140737488486400,2305860601466847240,-22544604490299392,-22544603247468479],[140737488486400,2305983747775954948,13247603786059568,13247605102529449],[140737488486400,2305983747775954952,-1975303136765642,-1975301882939439],[140737488486400,2305983747843031048,13247603817961795,13247605070627222],[140737488486400,2306001338955333640,-22544604490299392,-22544603247468479],[140737488486400,4611703610680541192,-1975303165966039,-1975301853739043],[140737488486400,4611844348169027592,-1975303165966039,-1975301853739043],[140737488486405,1073905665,24519905253728852,24519907503744101],[140737488486405,1073905668,-24519907503744101,-24519905253728852],[140737488486405,140738562129921,-24519907503744101,-24519905253728852],[140737488486405,140738562129924,24519905253728852,24519907503744101],[140737488486410,1073905666,-13247605070627222,-13247603817961795],[140737488486410,1073905672,13247603817961795,13247605070627222],[140737488486410,1140981762,1975301882939439,1975303136765642],[140737488486410,1140981768,-1975303136765642,-1975301882939439],[140737488486410,17592253284354,-13247605102529449,-13247603786059568],[140737488486410,17592253284360,13247603786059568,13247605102529449],[140737488486410,140738562129922,13247603817961795,13247605070627222],[140737488486410,140738562129928,-13247605070627222,-13247603817961795],[140737488486410,140738629206018,-1975303136765642,-1975301882939439],[140737488486410,140738629206024,1975301882939439,1975303136765642],[140737488486410,158329741508610,13247603786059568,13247605102529449],[140737488486410,158329741508616,-13247605102529449,-13247603786059568],[140737488486412,1073774604,-49039814402932400,-49039811112013498],[140737488486412,1073905668,11272298711597012,11272305157286919],[140737488486412,1073905672,37767509245645481,37767512400416486],[140737488486412,1140981764,1975301908323058,1975303111382023],[140737488486412,1140981768,-1975303111382023,-1975301908323058],[140737488486412,17592253284356,-13247605075396206,-13247603813192808],[140737488486412,17592253284360,13247603813192808,13247605075396206],[140737488486412,140738562129924,37767509245645481,37767512400416486],[140737488486412,140738562129928,11272298711597012,11272305157286919],[140737488486412,140738562260992,-49039814402932400,-49039811112013498],[140737488486412,140738629206020,-1975303111382023,-1975301908323058],[140737488486412,140738629206024,1975301908323058,1975303111382023],[140737488486412,158329741508612,13247603813192808,13247605075396206],[140737488486412,158329741508616,-13247605075396206,-13247603813192808],[140737488486536,1073905672,13247603822461068,13247605066127948],[140737488486536,1073905792,-13247605066127948,-13247603822461068],[140737488486536,1140981768,-1975303134589986,-1975301885115096],[140737488486536,1140981888,1975301885115096,1975303134589986],[140737488486536,17592253284360,13247603788555150,13247605100033866],[140737488486536,17592253284480,-13247605100033866,-13247603788555150],[140737488486536,140738562129928,-13247605066127948,-13247603822461068],[140737488486536,140738562130048,13247603822461068,13247605066127948],[140737488486536,140738629206024,1975301885115096,1975303134589986],[140737488486536,140738629206144,-1975303134589986,-1975301885115096],[140737488486536,158329741508616,-13247605100033866,-13247603788555150],[140737488486536,158329741508736,13247603788555150,13247605100033866],[140737488519169,1073741828,-13247605070627222,-13247603817961795],[140737488519169,1073774597,11272300803168551,11272303065715385],[140737488519169,1073872901,-24519907503744101,-24519905253728852],[140737488519169,140738562129924,-24519907503744101,-24519905253728852],[140737488519169,140738562228228,11272300803168551,11272303065715385],[140737488519169,140738562260997,-13247605070627222,-13247603817961795],[140737488519170,1073741832,13247603817961795,13247605070627222],[140737488519170,1073872906,13247603817961795,13247605070627222],[140737488519170,140738562129928,13247603817961795,13247605070627222],[140737488519170,140738562261002,13247603817961795,13247605070627222],[140737488519172,0,18593997898859016,18593999799498692],[140737488519172,32772,22544602005389605,22544605732378260],[140737488519172,131076,-11272305103287715,-11272298765596219],[140737488519172,163840,7321695128457817,7321698701015960],[140737488519172,1073741825,13247603817961795,13247605070627222],[140737488519172,1073741832,-18594001318589224,-18593996379768482],[140737488519172,1073774597,-11272303065715385,-11272300803168551],[140737488519172,1073774604,-11272303013198523,-11272300855685410],[140737488519172,1073872901,24519905253728852,24519907503744101],[140737488519172,1073872908,-11272305157286919,-11272298711597012],[140737488519172,1073905672,3950603855421852,3950606183988306],[140737488519172,1074266112,-22544604485800118,-22544603251967752],[140737488519172,1074397188,-26495209992202640,-26495207784975390],[140737488519172,1074429952,3950603911967182,3950606127442978],[140737488519172,1140850688,-22544604490299392,-22544603247468479],[140737488519172,1140883460,-1975303111382023,-1975301908323058],[140737488519172,1140981764,16618692505223764,16618700173428866],[140737488519172,1141014528,-37188001072094720,-37187994324620700],[140737488519172,17592253284356,1975301908323058,1975303111382023],[140737488519172,17592253317120,-1975303111382023,-1975301908323058],[140737488519172,17593259819012,13247603813192808,13247605075396206],[140737488519172,17593259917316,-11272303013198523,-11272300855685410],[140737488519172,17593259950080,-1975303111382023,-1975301908323058],[140737488519172,140737488355332,7321695128457817,7321698701015960],[140737488519172,140737488388096,-11272305103287715,-11272298765596219],[140737488519172,140737488486400,22544602005389605,22544605732378260],[140737488519172,140737488519172,18593997898859016,18593999799498692],[140737488519172,140738562097164,3950603855421852,3950606183988306],[140737488519172,140738562129921,24519905253728852,24519907503744101],[140737488519172,140738562129928,-11272305157286919,-11272298711597012],[140737488519172,140738562228225,-11272303065715385,-11272300803168551],[140737488519172,140738562228232,-11272303013198523,-11272300855685410],[140737488519172,140738562260997,13247603817961795,13247605070627222],[140737488519172,140738562261004,-18594001318589224,-18593996379768482],[140737488519172,140738562621444,3950603911967182,3950606127442978],[140737488519172,140738562654208,-26495209992202640,-26495207784975390],[140737488519172,140738562785284,-22544604485800118,-22544603251967752],[140737488519172,140738629206020,-37188001072094720,-37187994324620700],[140737488519172,140738629238784,16618692505223764,16618700173428866],[140737488519172,140738629337088,-1975303111382023,-1975301908323058],[140737488519172,140738629369860,-22544604490299392,-22544603247468479],[140737488519172,158329741508612,-1975303111382023,-1975301908323058],[140737488519172,158329741541376,1975301908323058,1975303111382023],[140737488519172,158330748141572,-1975303111382023,-1975301908323058],[140737488519172,158330748174336,-11272303013198523,-11272300855685410],[140737488519172,158330748272640,13247603813192808,13247605075396206],[140737488519172,2305843010287468548,13247603786059568,13247605102529449],[140737488519172,2305843010287566852,-11272303065715385,-11272300803168551],[140737488519172,2305843010287599616,-1975303136765642,-1975301882939439],[140737488519172,2305983747775791108,-1975303136765642,-1975301882939439],[140737488519172,2305983747775823872,-11272303065715385,-11272300803168551],[140737488519172,2305983747775922176,13247603786059568,13247605102529449],[140737488519176,32776,-1975304301048867,-1975300718656210],[140737488519176,163840,1975300718656210,1975304301048867],[140737488519176,1073741826,-13247605070627222,-13247603817961795],[140737488519176,1073741828,-26495210084232978,-26495207692945056],[140737488519176,1073741952,-13247605066127948,-13247603822461068],[140737488519176,1073774604,15222904711107262,15222909197186829],[140737488519176,1073872906,-13247605070627222,-13247603817961795],[140737488519176,1073872908,-37767512400416486,-37767509245645481],[140737488519176,1073873032,-13247605066127948,-13247603822461068],[140737488519176,1073905668,-3950606183988306,-3950603855421852],[140737488519176,1074266112,13247603822461068,13247605066127948],[140737488519176,1074397192,13247603822461068,13247605066127948],[140737488519176,1140850688,13247603817961795,13247605070627222],[140737488519176,1140883464,-47064511858528265,-47064508636712560],[140737488519176,1140981768,15222905726284853,15222908182009245],[140737488519176,1141014528,45089206586850560,45089208888685184],[140737488519176,17592253186056,11272300855685410,11272303013198523],[140737488519176,17592253284360,-13247605075396206,-13247603813192808],[140737488519176,17592253317120,1975301908323058,1975303111382023],[140737488519176,17593259819016,-1975303111382023,-1975301908323058],[140737488519176,17593259950080,1975301908323058,1975303111382023],[140737488519176,140737488355336,1975300718656210,1975304301048867],[140737488519176,140737488486400,-1975304301048867,-1975300718656210],[140737488519176,140738562097164,-3950606183988306,-3950603855421852],[140737488519176,140738562129922,-13247605070627222,-13247603817961795],[140737488519176,140738562129924,-37767512400416486,-37767509245645481],[140737488519176,140738562130048,-13247605066127948,-13247603822461068],[140737488519176,140738562228228,15222904711107262,15222909197186829],[140737488519176,140738562261002,-13247605070627222,-13247603817961795],[140737488519176,140738562261004,-26495210084232978,-26495207692945056],[140737488519176,140738562261128,-13247605066127948,-13247603822461068],[140737488519176,140738562654208,13247603822461068,13247605066127948],[140737488519176,140738562785288,13247603822461068,13247605066127948],[140737488519176,140738629206024,45089206586850560,45089208888685184],[140737488519176,140738629238784,15222905726284853,15222908182009245],[140737488519176,140738629337088,-47064511858528265,-47064508636712560],[140737488519176,140738629369864,13247603817961795,13247605070627222],[140737488519176,158329741508616,1975301908323058,1975303111382023],[140737488519176,158329741541376,-13247605075396206,-13247603813192808],[140737488519176,158329741639680,11272300855685410,11272303013198523],[140737488519176,158330748141576,1975301908323058,1975303111382023],[140737488519176,158330748272640,-1975303111382023,-1975301908323058],[140737488519176,2305843010287468552,-1975303136765642,-1975301882939439],[140737488519176,2305843010287599616,1975301882939439,1975303136765642],[140737488519176,2305983747775791112,1975301882939439,1975303136765642],[140737488519176,2305983747775922176,-1975303136765642,-1975301882939439],[140737488519296,1073741832,13247603822461068,13247605066127948],[140737488519296,1073873032,13247603822461068,13247605066127948],[140737488519296,1074266112,13247603811716528,13247605076872486],[140737488519296,1074397312,13247603811716528,13247605076872486],[140737488519296,140738562129928,13247603822461068,13247605066127948],[140737488519296,140738562261128,13247603822461068,13247605066127948],[140737488519296,140738562654208,13247603811716528,13247605076872486],[140737488519296,140738562785408,13247603811716528,13247605076872486],[140737488879616,1073905668,22544603251967752,22544604485800118],[140737488879616,1073905672,-13247605066127948,-13247603822461068],[140737488879616,1073905792,-13247605076872486,-13247603811716528],[140737488879616,1140981768,1975301885115096,1975303134589986],[140737488879616,1140981888,22544603239782766,22544604497985104],[140737488879616,1409286272,1975301877105131,1975303142599947],[140737488879616,17592253284360,-13247605100033866,-13247603788555150],[140737488879616,17592253284480,1975301852392980,1975303167312100],[140737488879616,17592521588864,-13247605101666952,-13247603786922062],[140737488879616,52776826568832,1975301858410281,1975303161294799],[140737488879616,140738562785284,22544603251967752,22544604485800118],[140737488879616,140738562785288,-13247605066127948,-13247603822461068],[140737488879616,140738562785408,-13247605076872486,-13247603811716528],[140737488879616,140738629861384,1975301885115096,1975303134589986],[140737488879616,140738629861504,22544603239782766,22544604497985104],[140737488879616,140738898165888,1975301877105131,1975303142599947],[140737488879616,158329742163976,-13247605100033866,-13247603788555150],[140737488879616,158329742164096,1975301852392980,1975303167312100],[140737488879616,158330010468480,-13247605101666952,-13247603786922062],[140737488879616,193514315448448,1975301858410281,1975303161294799],[140737488912388,1073872896,22544603251967752,22544604485800118],[140737488912388,1074397188,26495207784975390,26495209992202640],[140737488912388,1074429952,-3950606127442978,-3950603911967182],[140737488912388,140738562228228,-3950606127442978,-3950603911967182],[140737488912388,140738562260992,26495207784975390,26495209992202640],[140737488912388,140738562785284,22544603251967752,22544604485800118],[140737488912392,1073872896,-26495209992202640,-26495207784975390],[140737488912392,1074397192,-26495209992202640,-26495207784975390],[140737488912392,140738562260992,-26495209992202640,-26495207784975390],[140737488912392,140738562785288,-26495209992202640,-26495207784975390],[140737489010692,1073905668,26495207784975390,26495209992202640],[140737489010692,1074298884,-26495209992202640,-26495207784975390],[140737489010692,140738562260992,-26495209992202640,-26495207784975390],[140737489010692,140738562654208,26495207784975390,26495209992202640],[140737489010696,1073905672,-13247605066127948,-13247603822461068],[140737489010696,1074298888,26495207784975390,26495209992202640],[140737489010696,1074429952,-13247605076872486,-13247603811716528],[140737489010696,1140981768,1975301885115096,1975303134589986],[140737489010696,1141374984,-24519907477236870,-24519905280236082],[140737489010696,1141506048,22544603239782766,22544604497985104],[140737489010696,17592253284360,-13247605100033866,-13247603788555150],[140737489010696,17592253677576,11272300789630083,11272303079253853],[140737489010696,17592253808640,1975301852392980,1975303167312100],[140737489010696,140738562129928,-13247605076872486,-13247603811716528],[140737489010696,140738562260992,26495207784975390,26495209992202640],[140737489010696,140738562654208,-13247605066127948,-13247603822461068],[140737489010696,140738629206024,22544603239782766,22544604497985104],[140737489010696,140738629337088,-24519907477236870,-24519905280236082],[140737489010696,140738629730304,1975301885115096,1975303134589986],[140737489010696,158329741508616,1975301852392980,1975303167312100],[140737489010696,158329741639680,11272300789630083,11272303079253853],[140737489010696,158329742032896,-13247605100033866,-13247603788555150],[140737489010816,1073905792,-13247605076872486,-13247603811716528],[140737489010816,1074429952,13247603811716528,13247605076872486],[140737489010816,1140981888,22544603239782766,22544604497985104],[140737489010816,1141506048,-22544604497985104,-22544603239782766],[140737489010816,17592253284480,1975301852392980,1975303167312100],[140737489010816,17592253808640,-1975303167312100,-1975301852392980],[140737489010816,140738562130048,13247603811716528,13247605076872486],[140737489010816,140738562654208,-13247605076872486,-13247603811716528],[140737489010816,140738629206144,-22544604497985104,-22544603239782766],[140737489010816,140738629730304,22544603239782766,22544604497985104],[140737489010816,158329741508736,-1975303167312100,-1975301852392980],[140737489010816,158329742032896,1975301852392980,1975303167312100],[140737489043456,1073741832,13247603811716528,13247605076872486],[140737489043456,1073741952,-13247605076872486,-13247603811716528],[140737489043456,1073905668,-3950606127442978,-3950603911967182],[140737489043456,1074298884,3950603911967182,3950606127442978],[140737489043456,1074397192,13247603811716528,13247605076872486],[140737489043456,1074397312,-13247605076872486,-13247603811716528],[140737489043456,140738562129928,13247603811716528,13247605076872486],[140737489043456,140738562130048,-13247605076872486,-13247603811716528],[140737489043456,140738562228228,3950603911967182,3950606127442978],[140737489043456,140738562621444,-3950606127442978,-3950603911967182],[140737489043456,140738562785288,13247603811716528,13247605076872486],[140737489043456,140738562785408,-13247605076872486,-13247603811716528],[140737555464192,32772,-9296999899749346,-9296998949429508],[140737555464192,1073741828,-11272305103287715,-11272298765596219],[140737555464192,1073741832,-1975304301048867,-1975300718656210],[140737555464192,1073905668,22544603247468479,22544604490299392],[140737555464192,1073905672,-13247605070627222,-13247603817961795],[140737555464192,17592186044424,13247602585717435,13247606302871576],[140737555464192,140737555496964,-9296999899749346,-9296998949429508],[140737555464192,140738629206020,-11272305103287715,-11272298765596219],[140737555464192,140738629206024,-1975304301048867,-1975300718656210],[140737555464192,140738629369860,22544603247468479,22544604490299392],[140737555464192,140738629369864,-13247605070627222,-13247603817961795],[140737555464192,158329741508616,13247602585717435,13247606302871576],[140737555496961,1073741828,-11272303065715385,-11272300803168551],[140737555496961,1073774597,-11272303065715385,-11272300803168551],[140737555496961,140738629206020,-11272303065715385,-11272300803168551],[140737555496961,140738629238789,-11272303065715385,-11272300803168551],[140737555496964,0,-18593999799498692,-18593997898859016],[140737555496964,32772,-9296999899749346,-9296998949429508],[140737555496964,67108868,-1975305379225034,-1975299640480040],[140737555496964,67141632,-7321699779192130,-7321694050281650],[140737555496964,1073741825,11272300803168551,11272303065715385],[140737555496964,1073741832,11272300855685410,11272303013198523],[140737555496964,1073774597,11272300803168551,11272303065715385],[140737555496964,1073774604,11272300855685410,11272303013198523],[140737555496964,1073872896,11272300234269956,11272303634613982],[140737555496964,1073905668,-11272303013198523,-11272300855685410],[140737555496964,1140981764,30445811685099399,30445816131488796],[140737555496964,1141014528,-7901212262229860,-7901207816590464],[140737555496964,1409286148,3950603911967182,3950606127442978],[140737555496964,1409318912,-3950606127442978,-3950603911967182],[140737555496964,17593326895108,15222904711107262,15222909197186829],[140737555496964,17593326927872,-15222909197186829,-15222904711107262],[140737555496964,140737488355332,-7321699779192130,-7321694050281650],[140737555496964,140737488388096,-1975305379225034,-1975299640480040],[140737555496964,140737555464192,-9296999899749346,-9296998949429508],[140737555496964,140737555496964,-18593999799498692,-18593997898859016],[140737555496964,140738562228228,-7901212262229860,-7901207816590464],[140737555496964,140738562260992,30445811685099399,30445816131488796],[140737555496964,140738629206017,11272300803168551,11272303065715385],[140737555496964,140738629206024,11272300855685410,11272303013198523],[140737555496964,140738629238789,11272300803168551,11272303065715385],[140737555496964,140738629238796,11272300855685410,11272303013198523],[140737555496964,140738629337088,-11272303013198523,-11272300855685410],[140737555496964,140738629369860,11272300234269956,11272303634613982],[140737555496964,140738830532612,-3950606127442978,-3950603911967182],[140737555496964,140738830565376,3950603911967182,3950606127442978],[140737555496964,158330748141572,-15222909197186829,-15222904711107262],[140737555496964,158330748174336,15222904711107262,15222909197186829],[140737555496964,2305843010354544644,11272300803168551,11272303065715385],[140737555496964,2305843010354577408,-11272303065715385,-11272300803168551],[140737555496964,2305983747775791108,-11272303065715385,-11272300803168551],[140737555496964,2305983747775823872,11272300803168551,11272303065715385],[140737555496968,1073741828,-11272303013198523,-11272300855685410],[140737555496968,1073774604,-11272303013198523,-11272300855685410],[140737555496968,1073872896,-3950609314173172,-3950600725236988],[140737555496968,1073905672,49039810686574560,49039814828371346],[140737555496968,1140981768,-52990420000747732,-52990415553608334],[140737555496968,17592186175488,-11272303013198523,-11272300855685410],[140737555496968,17592186208264,-11272303013198523,-11272300855685410],[140737555496968,140738562260992,-52990420000747732,-52990415553608334],[140737555496968,140738629206020,-11272303013198523,-11272300855685410],[140737555496968,140738629238796,-11272303013198523,-11272300855685410],[140737555496968,140738629337088,49039810686574560,49039814828371346],[140737555496968,140738629369864,-3950609314173172,-3950600725236988],[140737555496968,158329741639680,-11272303013198523,-11272300855685410],[140737555496968,158329741672456,-11272303013198523,-11272300855685410],[140737555595266,1073741832,-1975303136765642,-1975301882939439],[140737555595266,1073872906,-1975303136765642,-1975301882939439],[140737555595266,17592186044424,13247603786059568,13247605102529449],[140737555595266,17592186175498,13247603786059568,13247605102529449],[140737555595266,140738629206024,-1975303136765642,-1975301882939439],[140737555595266,140738629337098,-1975303136765642,-1975301882939439],[140737555595266,158329741508616,13247603786059568,13247605102529449],[140737555595266,158329741639690,13247603786059568,13247605102529449],[140737555595268,1073741832,-1975303111382023,-1975301908323058],[140737555595268,1073774592,-35792210707429288,-35792205918927604],[140737555595268,1073872908,-1975303111382023,-1975301908323058],[140737555595268,1073905668,17198204846179046,17198214081820128],[140737555595268,1140883460,-52990420000747732,-52990415553608334],[140737555595268,17592186044424,13247603813192808,13247605075396206],[140737555595268,17592186077184,-1975303111382023,-1975301908323058],[140737555595268,17592186175500,13247603813192808,13247605075396206],[140737555595268,17592186208260,-1975303111382023,-1975301908323058],[140737555595268,140738562260992,-52990420000747732,-52990415553608334],[140737555595268,140738629206024,-1975303111382023,-1975301908323058],[140737555595268,140738629238784,17198204846179046,17198214081820128],[140737555595268,140738629337100,-1975303111382023,-1975301908323058],[140737555595268,140738629369860,-35792210707429288,-35792205918927604],[140737555595268,158329741508616,13247603813192808,13247605075396206],[140737555595268,158329741541376,-1975303111382023,-1975301908323058],[140737555595268,158329741639692,13247603813192808,13247605075396206],[140737555595268,158329741672452,-1975303111382023,-1975301908323058],[140737555595272,67108872,11272298711597012,11272305157286919],[140737555595272,67239936,-11272305157286919,-11272298711597012],[140737555595272,1073741826,1975301882939439,1975303136765642],[140737555595272,1073741828,1975301908323058,1975303111382023],[140737555595272,1073741952,1975301885115096,1975303134589986],[140737555595272,1073774592,-1975303111382023,-1975301908323058],[140737555595272,1073872906,1975301882939439,1975303136765642],[140737555595272,1073872908,1975301908323058,1975303111382023],[140737555595272,1073873032,1975301885115096,1975303134589986],[140737555595272,1073905672,-15222908182009245,-15222905726284853],[140737555595272,1074266112,-1975303134589986,-1975301885115096],[140737555595272,1074397192,-1975303134589986,-1975301885115096],[140737555595272,1140883464,39742811584848745,39742815080918304],[140737555595272,1141014528,-26495210161088876,-26495207616089156],[140737555595272,1409286152,-26495209992202640,-26495207784975390],[140737555595272,1409417216,26495207784975390,26495209992202640],[140737555595272,17592186044418,-13247605102529449,-13247603786059568],[140737555595272,17592186044420,-13247605075396206,-13247603813192808],[140737555595272,17592186044544,-13247605100033866,-13247603788555150],[140737555595272,17592186077184,13247603813192808,13247605075396206],[140737555595272,17592186175498,-13247605102529449,-13247603786059568],[140737555595272,17592186175500,-13247605075396206,-13247603813192808],[140737555595272,17592186175624,-13247605100033866,-13247603788555150],[140737555595272,17592186208264,13247603813192808,13247605075396206],[140737555595272,17592186568704,13247603788555150,13247605100033866],[140737555595272,17592186699784,13247603788555150,13247605100033866],[140737555595272,17592521588744,24519905262899363,24519907494573587],[140737555595272,17592521719808,-24519907494573587,-24519905262899363],[140737555595272,17593326895112,-11272305157286919,-11272298711597012],[140737555595272,17593327026176,11272298711597012,11272305157286919],[140737555595272,52776625242120,-1975303161294799,-1975301858410281],[140737555595272,52776625373184,1975301858410281,1975303161294799],[140737555595272,140737488355336,-11272305157286919,-11272298711597012],[140737555595272,140737488486400,11272298711597012,11272305157286919],[140737555595272,140738562129928,-26495210161088876,-26495207616089156],[140737555595272,140738562260992,39742811584848745,39742815080918304],[140737555595272,140738629206018,1975301882939439,1975303136765642],[140737555595272,140738629206020,1975301908323058,1975303111382023],[140737555595272,140738629206144,1975301885115096,1975303134589986],[140737555595272,140738629238784,-15222908182009245,-15222905726284853],[140737555595272,140738629337098,1975301882939439,1975303136765642],[140737555595272,140738629337100,1975301908323058,1975303111382023],[140737555595272,140738629337224,1975301885115096,1975303134589986],[140737555595272,140738629369864,-1975303111382023,-1975301908323058],[140737555595272,140738629730304,-1975303134589986,-1975301885115096],[140737555595272,140738629861384,-1975303134589986,-1975301885115096],[140737555595272,140738830532616,26495207784975390,26495209992202640],[140737555595272,140738830663680,-26495209992202640,-26495207784975390],[140737555595272,158329741508610,-13247605102529449,-13247603786059568],[140737555595272,158329741508612,-13247605075396206,-13247603813192808],[140737555595272,158329741508736,-13247605100033866,-13247603788555150],[140737555595272,158329741541376,13247603813192808,13247605075396206],[140737555595272,158329741639690,-13247605102529449,-13247603786059568],[140737555595272,158329741639692,-13247605075396206,-13247603813192808],[140737555595272,158329741639816,-13247605100033866,-13247603788555150],[140737555595272,158329741672456,13247603813192808,13247605075396206],[140737555595272,158329742032896,13247603788555150,13247605100033866],[140737555595272,158329742163976,13247603788555150,13247605100033866],[140737555595272,158329942835208,-24519907494573587,-24519905262899363],[140737555595272,158329942966272,24519905262899363,24519907494573587],[140737555595272,158330748141576,11272298711597012,11272305157286919],[140737555595272,158330748272640,-11272305157286919,-11272298711597012],[140737555595272,193514046488584,1975301858410281,1975303161294799],[140737555595272,193514046619648,-1975303161294799,-1975301858410281],[140737555595272,2305843010354544648,13247603817961795,13247605070627222],[140737555595272,2305843010354675712,-13247605070627222,-13247603817961795],[140737555595272,2305860601466847240,-22544604490299392,-22544603247468479],[140737555595272,2305860601466978304,22544603247468479,22544604490299392],[140737555595272,2305983747775791112,-13247605070627222,-13247603817961795],[140737555595272,2305983747775922176,13247603817961795,13247605070627222],[140737555595272,2306001338888093704,22544603247468479,22544604490299392],[140737555595272,2306001338888224768,-22544604490299392,-22544603247468479],[140737555595272,4611703610680541192,-1975303165966039,-1975301853739043],[140737555595272,4611703610680672256,1975301853739043,1975303165966039],[140737555595272,4611844348101787656,1975301853739043,1975303165966039],[140737555595272,4611844348101918720,-1975303165966039,-1975301853739043],[140737555595392,1073741832,-1975303134589986,-1975301885115096],[140737555595392,1073873032,-1975303134589986,-1975301885115096],[140737555595392,1074266112,-22544604497985104,-22544603239782766],[140737555595392,1074397312,-22544604497985104,-22544603239782766],[140737555595392,17592186044424,13247603788555150,13247605100033866],[140737555595392,17592186175624,13247603788555150,13247605100033866],[140737555595392,17592186568704,-1975303167312100,-1975301852392980],[140737555595392,17592186699904,-1975303167312100,-1975301852392980],[140737555595392,140738629206024,-1975303134589986,-1975301885115096],[140737555595392,140738629337224,-1975303134589986,-1975301885115096],[140737555595392,140738629730304,-22544604497985104,-22544603239782766],[140737555595392,140738629861504,-22544604497985104,-22544603239782766],[140737555595392,158329741508616,13247603788555150,13247605100033866],[140737555595392,158329741639816,13247603788555150,13247605100033866],[140737555595392,158329742032896,-1975303167312100,-1975301852392980],[140737555595392,158329742164096,-1975303167312100,-1975301852392980],[140737555628032,1073741828,47064508636712560,47064511858528265],[140737555628032,1073741832,-7321700273679520,-7321693555794256],[140737555628032,1073905668,16618692505223764,16618700173428866],[140737555628032,1073905672,-47064511858528265,-47064508636712560],[140737555628032,1140883460,30445811685099399,30445816131488796],[140737555628032,1140981768,39742811584848745,39742815080918304],[140737555628032,17592186044420,1975301908323058,1975303111382023],[140737555628032,17592186044424,-1975303111382023,-1975301908323058],[140737555628032,17592186208260,1975301908323058,1975303111382023],[140737555628032,17592186208264,-1975303111382023,-1975301908323058],[140737555628032,140738562129928,39742811584848745,39742815080918304],[140737555628032,140738562228228,30445811685099399,30445816131488796],[140737555628032,140738629206020,16618692505223764,16618700173428866],[140737555628032,140738629206024,-47064511858528265,-47064508636712560],[140737555628032,140738629369860,47064508636712560,47064511858528265],[140737555628032,140738629369864,-7321700273679520,-7321693555794256],[140737555628032,158329741508612,1975301908323058,1975303111382023],[140737555628032,158329741508616,-1975303111382023,-1975301908323058],[140737555628032,158329741672452,1975301908323058,1975303111382023],[140737555628032,158329741672456,-1975303111382023,-1975301908323058],[140737555988488,1073872896,24519905280236082,24519907477236870],[140737555988488,1074397192,24519905280236082,24519907477236870],[140737555988488,17592186175488,-11272303079253853,-11272300789630083],[140737555988488,17592186699784,-11272303079253853,-11272300789630083],[140737555988488,140738629337088,24519905280236082,24519907477236870],[140737555988488,140738629861384,24519905280236082,24519907477236870],[140737555988488,158329741639680,-11272303079253853,-11272300789630083],[140737555988488,158329742163976,-11272303079253853,-11272300789630083],[140737556119552,1073741832,-22544604497985104,-22544603239782766],[140737556119552,1073741952,22544603239782766,22544604497985104],[140737556119552,1074397192,-22544604497985104,-22544603239782766],[140737556119552,1074397312,22544603239782766,22544604497985104],[140737556119552,17592186044424,-1975303167312100,-1975301852392980],[140737556119552,17592186044544,1975301852392980,1975303167312100],[140737556119552,17592186699784,-1975303167312100,-1975301852392980],[140737556119552,17592186699904,1975301852392980,1975303167312100],[140737556119552,140738629206024,-22544604497985104,-22544603239782766],[140737556119552,140738629206144,22544603239782766,22544604497985104],[140737556119552,140738629861384,-22544604497985104,-22544603239782766],[140737556119552,140738629861504,22544603239782766,22544604497985104],[140737556119552,158329741508616,-1975303167312100,-1975301852392980],[140737556119552,158329741508736,1975301852392980,1975303167312100],[140737556119552,158329742163976,-1975303167312100,-1975301852392980],[140737556119552,158329742164096,1975301852392980,1975303167312100],[140737756823556,1409286148,-3950606127442978,-3950603911967182],[140737756823556,1409318912,3950603911967182,3950606127442978],[140737756823556,140738629206020,3950603911967182,3950606127442978],[140737756823556,140738629238784,-3950606127442978,-3950603911967182],[140737756921864,1409286152,24519905280236082,24519907477236870],[140737756921864,1409417216,-24519907477236870,-24519905280236082],[140737756921864,17592521588744,-11272303079253853,-11272300789630083],[140737756921864,17592521719808,11272300789630083,11272303079253853],[140737756921864,140738629206024,-24519907477236870,-24519905280236082],[140737756921864,140738629337088,24519905280236082,24519907477236870],[140737756921864,158329741508616,11272300789630083,11272303079253853],[140737756921864,158329741639680,-11272303079253853,-11272300789630083],[140737757315200,1409286272,1975301877105131,1975303142599947],[140737757315200,1409810432,-1975303142599947,-1975301877105131],[140737757315200,17592521588864,-13247605101666952,-13247603786922062],[140737757315200,17592522113024,13247603786922062,13247605101666952],[140737757315200,52776826568832,1975301858410281,1975303161294799],[140737757315200,52776827092992,-1975303161294799,-1975301858410281],[140737757315200,140738629206144,-1975303142599947,-1975301877105131],[140737757315200,140738629730304,1975301877105131,1975303142599947],[140737757315200,158329741508736,13247603786922062,13247605101666952],[140737757315200,158329742032896,-13247605101666952,-13247603786922062],[140737757315200,193514046488704,-1975303161294799,-1975301858410281],[140737757315200,193514047012864,1975301858410281,1975303161294799],[140737823899652,1140883460,-26495209992202640,-26495207784975390],[140737823899652,1342210052,26495207784975390,26495209992202640],[140737823899652,140738629238784,26495207784975390,26495209992202640],[140737823899652,140738830565376,-26495209992202640,-26495207784975390],[140737823899656,1073872896,1975301877105131,1975303142599947],[140737823899656,1140981768,26495207784975390,26495209992202640],[140737823899656,1342308360,-24519907477236870,-24519905280236082],[140737823899656,17592186175488,-13247605101666952,-13247603786922062],[140737823899656,17592253284360,-24519907494573587,-24519905262899363],[140737823899656,17592454610952,11272300789630083,11272303079253853],[140737823899656,140738629337088,-24519907477236870,-24519905280236082],[140737823899656,140738830663680,26495207784975390,26495209992202640],[140737823899656,140738897772552,1975301877105131,1975303142599947],[140737823899656,158329741639680,11272300789630083,11272303079253853],[140737823899656,158329942966272,-24519907494573587,-24519905262899363],[140737823899656,158330010075144,-13247605101666952,-13247603786922062],[140737823899776,1074266112,-1975303142599947,-1975301877105131],[140737823899776,1342701696,-1975303142599947,-1975301877105131],[140737823899776,17592186568704,13247603786922062,13247605101666952],[140737823899776,17592455004288,13247603786922062,13247605101666952],[140737823899776,140738629730304,-1975303142599947,-1975301877105131],[140737823899776,140738898165888,-1975303142599947,-1975301877105131],[140737823899776,158329742032896,13247603786922062,13247605101666952],[140737823899776,158330010468480,13247603786922062,13247605101666952],[140737823932416,1140883460,26495207784975390,26495209992202640],[140737823932416,1342210052,-26495209992202640,-26495207784975390],[140737823932416,140738629206020,-26495209992202640,-26495207784975390],[140737823932416,140738830532612,26495207784975390,26495209992202640],[140737824030720,1073741832,-1975303142599947,-1975301877105131],[140737824030720,1140981768,-26495209992202640,-26495207784975390],[140737824030720,1342308360,24519905280236082,24519907477236870],[140737824030720,17592186044424,13247603786922062,13247605101666952],[140737824030720,17592253284360,24519905262899363,24519907494573587],[140737824030720,17592454610952,-11272303079253853,-11272300789630083],[140737824030720,140738629206024,24519905280236082,24519907477236870],[140737824030720,140738830532616,-26495209992202640,-26495207784975390],[140737824030720,140738897772552,-1975303142599947,-1975301877105131],[140737824030720,158329741508616,-11272303079253853,-11272300789630083],[140737824030720,158329942835208,24519905262899363,24519907494573587],[140737824030720,158330010075144,13247603786922062,13247605101666952],[140737824423936,1073741952,1975301877105131,1975303142599947],[140737824423936,1342701696,1975301877105131,1975303142599947],[140737824423936,17592186044544,-13247605101666952,-13247603786922062],[140737824423936,17592455004288,-13247605101666952,-13247603786922062],[140737824423936,140738629206144,1975301877105131,1975303142599947],[140737824423936,140738898165888,1975301877105131,1975303142599947],[140737824423936,158329741508736,-13247605101666952,-13247603786922062],[140737824423936,158330010468480,-13247605101666952,-13247603786922062],[140738562097152,32772,-5346396222573668,-5346392587195036],[140738562097152,131076,-9296999899749346,-9296998949429508],[140738562097152,67108868,22544602005389605,22544605732378260],[140738562097152,17592186044420,-13247606302871576,-13247602585717435],[140738562097152,140738562129924,-5346396222573668,-5346392587195036],[140738562097152,140738562228228,-9296999899749346,-9296998949429508],[140738562097152,140738629206020,22544602005389605,22544605732378260],[140738562097152,158330748141572,-13247606302871576,-13247602585717435],[140738562097152,2305843009213693956,-13247606405704134,-13247602482884872],[140738562097152,2305983747775791108,-13247606405704134,-13247602482884872],[140738562097157,1073741825,-1975304999015964,-1975300020689110],[140738562097157,1073741828,1975300020689110,1975304999015964],[140738562097157,140737488355329,1975300020689110,1975304999015964],[140738562097157,140737488355332,-1975304999015964,-1975300020689110],[140738562097164,1073741828,1975300184502783,1975304835202292],[140738562097164,1073741832,-1975304835202292,-1975300184502783],[140738562097164,1073905668,-3950606183988306,-3950603855421852],[140738562097164,1073905672,3950603855421852,3950606183988306],[140738562097164,140737488355332,-1975304835202292,-1975300184502783],[140738562097164,140737488355336,1975300184502783,1975304835202292],[140738562097164,140737488519172,3950603855421852,3950606183988306],[140738562097164,140737488519176,-3950606183988306,-3950603855421852],[140738562129921,67108868,13247603786059568,13247605102529449],[140738562129921,67141637,13247603786059568,13247605102529449],[140738562129921,1073741825,-1975304439360326,-1975300580344758],[140738562129921,1073741831,-1975303165966039,-1975301853739043],[140738562129921,1073741837,-22544604490299392,-22544603247468479],[140738562129921,1073774592,1975300580344758,1975304439360326],[140738562129921,1073774598,1975301853739043,1975303165966039],[140738562129921,1073774604,22544603247468479,22544604490299392],[140738562129921,1073872901,24519905253728852,24519907503744101],[140738562129921,1073905668,-24519907503744101,-24519905253728852],[140738562129921,17592186044420,-13247605102529449,-13247603786059568],[140738562129921,17592186077189,-13247605102529449,-13247603786059568],[140738562129921,140737488355329,1975300580344758,1975304439360326],[140738562129921,140737488355335,1975301853739043,1975303165966039],[140738562129921,140737488355341,22544603247468479,22544604490299392],[140738562129921,140737488388096,-1975304439360326,-1975300580344758],[140738562129921,140737488388102,-1975303165966039,-1975301853739043],[140738562129921,140737488388108,-22544604490299392,-22544603247468479],[140738562129921,140737488486405,-24519907503744101,-24519905253728852],[140738562129921,140737488519172,24519905253728852,24519907503744101],[140738562129921,140738629206020,13247603786059568,13247605102529449],[140738562129921,140738629238789,13247603786059568,13247605102529449],[140738562129921,158330748141572,-13247605102529449,-13247603786059568],[140738562129921,158330748174341,-13247605102529449,-13247603786059568],[140738562129921,2305843009213693956,-13247605142672540,-13247603745916480],[140738562129921,2305843009213726725,-13247605142672540,-13247603745916480],[140738562129921,2305983747775791108,-13247605142672540,-13247603745916480],[140738562129921,2305983747775823877,-13247605142672540,-13247603745916480],[140738562129922,1073741831,1975301853739043,1975303165966039],[140738562129922,1073741838,22544603247468479,22544604490299392],[140738562129922,1073774597,-1975303165966039,-1975301853739043],[140738562129922,1073774604,-22544604490299392,-22544603247468479],[140738562129922,1073872906,-13247605070627222,-13247603817961795],[140738562129922,1073905672,13247603817961795,13247605070627222],[140738562129922,140737488355335,-1975303165966039,-1975301853739043],[140738562129922,140737488355342,-22544604490299392,-22544603247468479],[140738562129922,140737488388101,1975301853739043,1975303165966039],[140738562129922,140737488388108,22544603247468479,22544604490299392],[140738562129922,140737488486410,13247603817961795,13247605070627222],[140738562129922,140737488519176,-13247605070627222,-13247603817961795],[140738562129924,32772,-5346396222573668,-5346392587195036],[140738562129924,67108865,-13247605102529449,-13247603786059568],[140738562129924,67108872,-13247605075396206,-13247603813192808],[140738562129924,67141637,-13247605102529449,-13247603786059568],[140738562129924,67141644,-13247605075396206,-13247603813192808],[140738562129924,67239936,13247603813192808,13247605075396206],[140738562129924,67272708,13247603813192808,13247605075396206],[140738562129924,1073741828,193060229393271076,193060273050119596],[140738562129924,1073741837,24519905253728852,24519907503744101],[140738562129924,1073774592,-187713876827545928,-187713836806076040],[140738562129924,1073774601,-24519907503744101,-24519905253728852],[140738562129924,1073872901,-24519907503744101,-24519905253728852],[140738562129924,1073872908,-37767512400416486,-37767509245645481],[140738562129924,1073905665,24519905253728852,24519907503744101],[140738562129924,1073905672,37767509245645481,37767512400416486],[140738562129924,17592186044417,13247603786059568,13247605102529449],[140738562129924,17592186044424,13247603813192808,13247605075396206],[140738562129924,17592186077189,13247603786059568,13247605102529449],[140738562129924,17592186077196,13247603813192808,13247605075396206],[140738562129924,17592186175488,-13247605075396206,-13247603813192808],[140738562129924,17592186208260,-13247605075396206,-13247603813192808],[140738562129924,17593326895108,-37767512400416486,-37767509245645481],[140738562129924,17593326927872,37767509245645481,37767512400416486],[140738562129924,140737488355332,-187713876827545928,-187713836806076040],[140738562129924,140737488355341,-24519907503744101,-24519905253728852],[140738562129924,140737488388096,193060229393271076,193060273050119596],[140738562129924,140737488388105,24519905253728852,24519907503744101],[140738562129924,140737488486405,24519905253728852,24519907503744101],[140738562129924,140737488486412,37767509245645481,37767512400416486],[140738562129924,140737488519169,-24519907503744101,-24519905253728852],[140738562129924,140737488519176,-37767512400416486,-37767509245645481],[140738562129924,140738562097152,-5346396222573668,-5346392587195036],[140738562129924,140738629206017,-13247605102529449,-13247603786059568],[140738562129924,140738629206024,-13247605075396206,-13247603813192808],[140738562129924,140738629238789,-13247605102529449,-13247603786059568],[140738562129924,140738629238796,-13247605075396206,-13247603813192808],[140738562129924,140738629337088,13247603813192808,13247605075396206],[140738562129924,140738629369860,13247603813192808,13247605075396206],[140738562129924,158329741508612,37767509245645481,37767512400416486],[140738562129924,158329741541376,-37767512400416486,-37767509245645481],[140738562129924,158330748141569,13247603786059568,13247605102529449],[140738562129924,158330748141576,13247603813192808,13247605075396206],[140738562129924,158330748174341,13247603786059568,13247605102529449],[140738562129924,158330748174348,13247603813192808,13247605075396206],[140738562129924,158330748272640,-13247605075396206,-13247603813192808],[140738562129924,158330748305412,-13247605075396206,-13247603813192808],[140738562129924,2305843009213693953,13247603745916480,13247605142672540],[140738562129924,2305843009213693960,13247603786059568,13247605102529449],[140738562129924,2305843009213726725,13247603745916480,13247605142672540],[140738562129924,2305843009213726732,13247603786059568,13247605102529449],[140738562129924,2305843009213825024,-13247605102529449,-13247603786059568],[140738562129924,2305843009213857796,-13247605102529449,-13247603786059568],[140738562129924,2305843010354544644,-24519907503744101,-24519905253728852],[140738562129924,2305843010354577408,24519905253728852,24519907503744101],[140738562129924,2305860602473480196,24519905253728852,24519907503744101],[140738562129924,2305860602473512960,-24519907503744101,-24519905253728852],[140738562129924,2305983746769158148,24519905253728852,24519907503744101],[140738562129924,2305983746769190912,-24519907503744101,-24519905253728852],[140738562129924,2305983747775791105,13247603745916480,13247605142672540],[140738562129924,2305983747775791112,13247603786059568,13247605102529449],[140738562129924,2305983747775823877,13247603745916480,13247605142672540],[140738562129924,2305983747775823884,13247603786059568,13247605102529449],[140738562129924,2305983747775922176,-13247605102529449,-13247603786059568],[140738562129924,2305983747775954948,-13247605102529449,-13247603786059568],[140738562129924,2306001338888093700,-24519907503744101,-24519905253728852],[140738562129924,2306001338888126464,24519905253728852,24519907503744101],[140738562129927,1073741825,-1975303165966039,-1975301853739043],[140738562129927,1073741826,1975301853739043,1975303165966039],[140738562129927,1073774597,-1975303165966039,-1975301853739043],[140738562129927,1073774598,1975301853739043,1975303165966039],[140738562129927,140737488355329,1975301853739043,1975303165966039],[140738562129927,140737488355330,-1975303165966039,-1975301853739043],[140738562129927,140737488388101,1975301853739043,1975303165966039],[140738562129927,140737488388102,-1975303165966039,-1975301853739043],[140738562129928,67108868,13247603813192808,13247605075396206],[140738562129928,67141644,13247603813192808,13247605075396206],[140738562129928,67239936,-1975303111382023,-1975301908323058],[140738562129928,67272712,-15222908182009245,-15222905726284853],[140738562129928,1073741832,11272298711597012,11272305157286919],[140738562129928,1073741837,-1975303165966039,-1975301853739043],[140738562129928,1073741838,-22544604490299392,-22544603247468479],[140738562129928,1073741964,-22544604485800118,-22544603251967752],[140738562129928,1073774592,-11272305157286919,-11272298711597012],[140738562129928,1073774597,1975301853739043,1975303165966039],[140738562129928,1073774598,22544603247468479,22544604490299392],[140738562129928,1073774724,22544603251967752,22544604485800118],[140738562129928,1073872906,13247603817961795,13247605070627222],[140738562129928,1073872908,-11272305157286919,-11272298711597012],[140738562129928,1073873032,13247603822461068,13247605066127948],[140738562129928,1073905666,-13247605070627222,-13247603817961795],[140738562129928,1073905668,11272298711597012,11272305157286919],[140738562129928,1073905792,-13247605066127948,-13247603822461068],[140738562129928,1074397192,13247603811716528,13247605076872486],[140738562129928,1074429952,-13247605076872486,-13247603811716528],[140738562129928,1140981768,39742811584848745,39742815080918304],[140738562129928,1141014528,-26495210161088876,-26495207616089156],[140738562129928,17592186044420,-13247605075396206,-13247603813192808],[140738562129928,17592186077196,-13247605075396206,-13247603813192808],[140738562129928,17592186175488,1975301908323058,1975303111382023],[140738562129928,17592186208264,1975301908323058,1975303111382023],[140738562129928,140737488355336,-11272305157286919,-11272298711597012],[140738562129928,140737488355341,1975301853739043,1975303165966039],[140738562129928,140737488355342,22544603247468479,22544604490299392],[140738562129928,140737488355468,22544603251967752,22544604485800118],[140738562129928,140737488388096,11272298711597012,11272305157286919],[140738562129928,140737488388101,-1975303165966039,-1975301853739043],[140738562129928,140737488388102,-22544604490299392,-22544603247468479],[140738562129928,140737488388228,-22544604485800118,-22544603251967752],[140738562129928,140737488486410,-13247605070627222,-13247603817961795],[140738562129928,140737488486412,11272298711597012,11272305157286919],[140738562129928,140737488486536,-13247605066127948,-13247603822461068],[140738562129928,140737488519170,13247603817961795,13247605070627222],[140738562129928,140737488519172,-11272305157286919,-11272298711597012],[140738562129928,140737488519296,13247603822461068,13247605066127948],[140738562129928,140737489010696,-13247605076872486,-13247603811716528],[140738562129928,140737489043456,13247603811716528,13247605076872486],[140738562129928,140737555595272,-26495210161088876,-26495207616089156],[140738562129928,140737555628032,39742811584848745,39742815080918304],[140738562129928,140738629206020,13247603813192808,13247605075396206],[140738562129928,140738629238796,13247603813192808,13247605075396206],[140738562129928,140738629337088,-15222908182009245,-15222905726284853],[140738562129928,140738629369864,-1975303111382023,-1975301908323058],[140738562129928,158330748141572,-13247605075396206,-13247603813192808],[140738562129928,158330748174348,-13247605075396206,-13247603813192808],[140738562129928,158330748272640,1975301908323058,1975303111382023],[140738562129928,158330748305416,1975301908323058,1975303111382023],[140738562129928,2305843009213693956,-13247605102529449,-13247603786059568],[140738562129928,2305843009213726732,-13247605102529449,-13247603786059568],[140738562129928,2305843009213825024,1975301882939439,1975303136765642],[140738562129928,2305843009213857800,1975301882939439,1975303136765642],[140738562129928,2305983747775791108,-13247605102529449,-13247603786059568],[140738562129928,2305983747775823884,-13247605102529449,-13247603786059568],[140738562129928,2305983747775922176,1975301882939439,1975303136765642],[140738562129928,2305983747775954952,1975301882939439,1975303136765642],[140738562129933,1073741825,-22544604490299392,-22544603247468479],[140738562129933,1073741828,24519905253728852,24519907503744101],[140738562129933,1073741832,-1975303165966039,-1975301853739043],[140738562129933,1073774597,1975301853739043,1975303165966039],[140738562129933,1073774601,-24519907503744101,-24519905253728852],[140738562129933,1073774604,22544603247468479,22544604490299392],[140738562129933,140737488355329,22544603247468479,22544604490299392],[140738562129933,140737488355332,-24519907503744101,-24519905253728852],[140738562129933,140737488355336,1975301853739043,1975303165966039],[140738562129933,140737488388101,-1975303165966039,-1975301853739043],[140738562129933,140737488388105,24519905253728852,24519907503744101],[140738562129933,140737488388108,-22544604490299392,-22544603247468479],[140738562129934,1073741826,22544603247468479,22544604490299392],[140738562129934,1073741832,-22544604490299392,-22544603247468479],[140738562129934,1073774598,22544603247468479,22544604490299392],[140738562129934,1073774604,-22544604490299392,-22544603247468479],[140738562129934,140737488355330,-22544604490299392,-22544603247468479],[140738562129934,140737488355336,22544603247468479,22544604490299392],[140738562129934,140737488388102,-22544604490299392,-22544603247468479],[140738562129934,140737488388108,22544603247468479,22544604490299392],[140738562130048,1073741964,22544603251967752,22544604485800118],[140738562130048,1073774604,-22544604485800118,-22544603251967752],[140738562130048,1073873032,-13247605066127948,-13247603822461068],[140738562130048,1073905672,13247603822461068,13247605066127948],[140738562130048,1074397312,-13247605076872486,-13247603811716528],[140738562130048,1074429952,13247603811716528,13247605076872486],[140738562130048,140737488355468,-22544604485800118,-22544603251967752],[140738562130048,140737488388108,22544603251967752,22544604485800118],[140738562130048,140737488486536,13247603822461068,13247605066127948],[140738562130048,140737488519176,-13247605066127948,-13247603822461068],[140738562130048,140737489010816,13247603811716528,13247605076872486],[140738562130048,140737489043456,-13247605076872486,-13247603811716528],[140738562130060,1073741832,-22544604485800118,-22544603251967752],[140738562130060,1073741952,22544603251967752,22544604485800118],[140738562130060,1073774604,-22544604485800118,-22544603251967752],[140738562130060,1073774724,22544603251967752,22544604485800118],[140738562130060,140737488355336,22544603251967752,22544604485800118],[140738562130060,140737488355456,-22544604485800118,-22544603251967752],[140738562130060,140737488388108,22544603251967752,22544604485800118],[140738562130060,140737488388228,-22544604485800118,-22544603251967752],[140738562228225,1073774597,-11272303065715385,-11272300803168551],[140738562228225,1073905668,11272300803168551,11272303065715385],[140738562228225,140737488388101,11272300803168551,11272303065715385],[140738562228225,140737488519172,-11272303065715385,-11272300803168551],[140738562228228,0,-18593999799498692,-18593997898859016],[140738562228228,131076,-9296999899749346,-9296998949429508],[140738562228228,67141632,11272300234269956,11272303634613982],[140738562228228,67272708,-11272303013198523,-11272300855685410],[140738562228228,1073741828,-1975305379225034,-1975299640480040],[140738562228228,1073774597,11272300803168551,11272303065715385],[140738562228228,1073774604,15222904711107262,15222909197186829],[140738562228228,1073872896,-7321699779192130,-7321694050281650],[140738562228228,1073905665,-11272303065715385,-11272300803168551],[140738562228228,1073905672,-15222909197186829,-15222904711107262],[140738562228228,1074298884,3950603911967182,3950606127442978],[140738562228228,1074429952,-3950606127442978,-3950603911967182],[140738562228228,1140883460,30445811685099399,30445816131488796],[140738562228228,1141014528,-7901212262229860,-7901207816590464],[140738562228228,17592186077184,11272300855685410,11272303013198523],[140738562228228,17592186208260,11272300855685410,11272303013198523],[140738562228228,140737488355332,-7321699779192130,-7321694050281650],[140738562228228,140737488388101,-11272303065715385,-11272300803168551],[140738562228228,140737488388108,-15222909197186829,-15222904711107262],[140738562228228,140737488486400,-1975305379225034,-1975299640480040],[140738562228228,140737488519169,11272300803168551,11272303065715385],[140738562228228,140737488519176,15222904711107262,15222909197186829],[140738562228228,140737488912388,-3950606127442978,-3950603911967182],[140738562228228,140737489043456,3950603911967182,3950606127442978],[140738562228228,140737555496964,-7901212262229860,-7901207816590464],[140738562228228,140737555628032,30445811685099399,30445816131488796],[140738562228228,140738562097152,-9296999899749346,-9296998949429508],[140738562228228,140738562228228,-18593999799498692,-18593997898859016],[140738562228228,140738629238784,-11272303013198523,-11272300855685410],[140738562228228,140738629369860,11272300234269956,11272303634613982],[140738562228228,158330748174336,11272300855685410,11272303013198523],[140738562228228,158330748305412,11272300855685410,11272303013198523],[140738562228228,2305843009213726720,11272300803168551,11272303065715385],[140738562228228,2305843009213857796,11272300803168551,11272303065715385],[140738562228228,2305983747775823872,11272300803168551,11272303065715385],[140738562228228,2305983747775954948,11272300803168551,11272303065715385],[140738562228232,1073741832,-3950609314173172,-3950600725236988],[140738562228232,1073774604,-11272303013198523,-11272300855685410],[140738562228232,1073872896,3950600725236988,3950609314173172],[140738562228232,1073905668,11272300855685410,11272303013198523],[140738562228232,17593326895112,-11272303013198523,-11272300855685410],[140738562228232,17593327026176,11272300855685410,11272303013198523],[140738562228232,140737488355336,3950600725236988,3950609314173172],[140738562228232,140737488388108,11272300855685410,11272303013198523],[140738562228232,140737488486400,-3950609314173172,-3950600725236988],[140738562228232,140737488519172,-11272303013198523,-11272300855685410],[140738562228232,158329741508616,11272300855685410,11272303013198523],[140738562228232,158329741639680,-11272303013198523,-11272300855685410],[140738562260992,67108868,-24519907601681415,-24519905155791537],[140738562260992,67108872,1975301908323058,1975303111382023],[140738562260992,67272708,-1975303111382023,-1975301908323058],[140738562260992,67272712,15222905726284853,15222908182009245],[140738562260992,1073774604,-49039814402932400,-49039811112013498],[140738562260992,1073872908,49039811112013498,49039814402932400],[140738562260992,1074298884,-26495209992202640,-26495207784975390],[140738562260992,1074298888,26495207784975390,26495209992202640],[140738562260992,1074397188,26495207784975390,26495209992202640],[140738562260992,1074397192,-26495209992202640,-26495207784975390],[140738562260992,1140883460,-52990420000747732,-52990415553608334],[140738562260992,1140883464,39742811584848745,39742815080918304],[140738562260992,1140981764,30445811685099399,30445816131488796],[140738562260992,1140981768,-52990420000747732,-52990415553608334],[140738562260992,17592186044420,1975301908323058,1975303111382023],[140738562260992,17592186044424,-1975303111382023,-1975301908323058],[140738562260992,17592186208260,1975301908323058,1975303111382023],[140738562260992,17592186208264,-1975303111382023,-1975301908323058],[140738562260992,140737488388108,49039811112013498,49039814402932400],[140738562260992,140737488486412,-49039814402932400,-49039811112013498],[140738562260992,140737488912388,26495207784975390,26495209992202640],[140738562260992,140737488912392,-26495209992202640,-26495207784975390],[140738562260992,140737489010692,-26495209992202640,-26495207784975390],[140738562260992,140737489010696,26495207784975390,26495209992202640],[140738562260992,140737555496964,30445811685099399,30445816131488796],[140738562260992,140737555496968,-52990420000747732,-52990415553608334],[140738562260992,140737555595268,-52990420000747732,-52990415553608334],[140738562260992,140737555595272,39742811584848745,39742815080918304],[140738562260992,140738629206020,-1975303111382023,-1975301908323058],[140738562260992,140738629206024,15222905726284853,15222908182009245],[140738562260992,140738629369860,-24519907601681415,-24519905155791537],[140738562260992,140738629369864,1975301908323058,1975303111382023],[140738562260992,158330748141572,1975301908323058,1975303111382023],[140738562260992,158330748141576,-1975303111382023,-1975301908323058],[140738562260992,158330748305412,1975301908323058,1975303111382023],[140738562260992,158330748305416,-1975303111382023,-1975301908323058],[140738562260992,2305843009213693956,1975301882939439,1975303136765642],[140738562260992,2305843009213693960,-1975303136765642,-1975301882939439],[140738562260992,2305843009213857796,1975301882939439,1975303136765642],[140738562260992,2305843009213857800,-1975303136765642,-1975301882939439],[140738562260992,2305983747775791108,1975301882939439,1975303136765642],[140738562260992,2305983747775791112,-1975303136765642,-1975301882939439],[140738562260992,2305983747775954948,1975301882939439,1975303136765642],[140738562260992,2305983747775954952,-1975303136765642,-1975301882939439],[140738562260997,1073741825,13247603817961795,13247605070627222],[140738562260997,1073741828,-13247605070627222,-13247603817961795],[140738562260997,1073905665,13247603817961795,13247605070627222],[140738562260997,1073905668,-13247605070627222,-13247603817961795],[140738562260997,140737488355329,-13247605070627222,-13247603817961795],[140738562260997,140737488355332,13247603817961795,13247605070627222],[140738562260997,140737488519169,-13247605070627222,-13247603817961795],[140738562260997,140737488519172,13247603817961795,13247605070627222],[140738562261002,1073741826,-13247605070627222,-13247603817961795],[140738562261002,1073741832,13247603817961795,13247605070627222],[140738562261002,1073905666,-13247605070627222,-13247603817961795],[140738562261002,1073905672,13247603817961795,13247605070627222],[140738562261002,140737488355330,13247603817961795,13247605070627222],[140738562261002,140737488355336,-13247605070627222,-13247603817961795],[140738562261002,140737488519170,13247603817961795,13247605070627222],[140738562261002,140737488519176,-13247605070627222,-13247603817961795],[140738562261004,1073741828,-26495210084232978,-26495207692945056],[140738562261004,1073741832,-18594001318589224,-18593996379768482],[140738562261004,1073774604,-45089209011534280,-45089206464001460],[140738562261004,1073872896,45089206464001460,45089209011534280],[140738562261004,1073905668,18593996379768482,18594001318589224],[140738562261004,1073905672,26495207692945056,26495210084232978],[140738562261004,140737488355332,26495207692945056,26495210084232978],[140738562261004,140737488355336,18593996379768482,18594001318589224],[140738562261004,140737488388108,45089206464001460,45089209011534280],[140738562261004,140737488486400,-45089209011534280,-45089206464001460],[140738562261004,140737488519172,-18594001318589224,-18593996379768482],[140738562261004,140737488519176,-26495210084232978,-26495207692945056],[140738562261128,1073741832,13247603822461068,13247605066127948],[140738562261128,1073741952,-13247605066127948,-13247603822461068],[140738562261128,1073905672,13247603822461068,13247605066127948],[140738562261128,1073905792,-13247605066127948,-13247603822461068],[140738562261128,140737488355336,-13247605066127948,-13247603822461068],[140738562261128,140737488355456,13247603822461068,13247605066127948],[140738562261128,140737488519176,-13247605066127948,-13247603822461068],[140738562261128,140737488519296,13247603822461068,13247605066127948],[140738562621444,1073905668,-3950606127442978,-3950603911967182],[140738562621444,1074429952,3950603911967182,3950606127442978],[140738562621444,140737488519172,3950603911967182,3950606127442978],[140738562621444,140737489043456,-3950606127442978,-3950603911967182],[140738562654208,1073905668,26495207784975390,26495209992202640],[140738562654208,1073905672,-13247605066127948,-13247603822461068],[140738562654208,1073905792,-13247605076872486,-13247603811716528],[140738562654208,1074397188,-26495209992202640,-26495207784975390],[140738562654208,1074397192,13247603822461068,13247605066127948],[140738562654208,1074397312,13247603811716528,13247605076872486],[140738562654208,140737488519172,-26495209992202640,-26495207784975390],[140738562654208,140737488519176,13247603822461068,13247605066127948],[140738562654208,140737488519296,13247603811716528,13247605076872486],[140738562654208,140737489010692,26495207784975390,26495209992202640],[140738562654208,140737489010696,-13247605066127948,-13247603822461068],[140738562654208,140737489010816,-13247605076872486,-13247603811716528],[140738562785284,1073872896,22544603251967752,22544604485800118],[140738562785284,1073905668,22544603251967752,22544604485800118],[140738562785284,1074266112,-22544604485800118,-22544603251967752],[140738562785284,1074298884,-22544604485800118,-22544603251967752],[140738562785284,140737488486400,-22544604485800118,-22544603251967752],[140738562785284,140737488519172,-22544604485800118,-22544603251967752],[140738562785284,140737488879616,22544603251967752,22544604485800118],[140738562785284,140737488912388,22544603251967752,22544604485800118],[140738562785288,1073741832,13247603811716528,13247605076872486],[140738562785288,1073872896,-26495209992202640,-26495207784975390],[140738562785288,1073905672,-13247605066127948,-13247603822461068],[140738562785288,1074266112,13247603822461068,13247605066127948],[140738562785288,1074298888,26495207784975390,26495209992202640],[140738562785288,1074429952,-13247605076872486,-13247603811716528],[140738562785288,140737488355336,-13247605076872486,-13247603811716528],[140738562785288,140737488486400,26495207784975390,26495209992202640],[140738562785288,140737488519176,13247603822461068,13247605066127948],[140738562785288,140737488879616,-13247605066127948,-13247603822461068],[140738562785288,140737488912392,-26495209992202640,-26495207784975390],[140738562785288,140737489043456,13247603811716528,13247605076872486],[140738562785408,1073741952,-13247605076872486,-13247603811716528],[140738562785408,1073905792,-13247605076872486,-13247603811716528],[140738562785408,1074266112,13247603811716528,13247605076872486],[140738562785408,1074429952,13247603811716528,13247605076872486],[140738562785408,140737488355456,13247603811716528,13247605076872486],[140738562785408,140737488519296,13247603811716528,13247605076872486],[140738562785408,140737488879616,-13247605076872486,-13247603811716528],[140738562785408,140737489043456,-13247605076872486,-13247603811716528],[140738629206017,67141637,-13247605102529449,-13247603786059568],[140738629206017,1073774597,11272300803168551,11272303065715385],[140738629206017,1140883460,1975301882939439,1975303136765642],[140738629206017,140737488388101,1975301882939439,1975303136765642],[140738629206017,140737555496964,11272300803168551,11272303065715385],[140738629206017,140738562129924,-13247605102529449,-13247603786059568],[140738629206018,1073872906,1975301882939439,1975303136765642],[140738629206018,1140981768,-1975303136765642,-1975301882939439],[140738629206018,140737488486410,-1975303136765642,-1975301882939439],[140738629206018,140737555595272,1975301882939439,1975303136765642],[140738629206020,0,18593997898859016,18593999799498692],[140738629206020,163840,-22544604490299392,-22544603247468479],[140738629206020,67108868,22544602005389605,22544605732378260],[140738629206020,67141637,13247603786059568,13247605102529449],[140738629206020,67141644,13247603813192808,13247605075396206],[140738629206020,67272708,-1975303111382023,-1975301908323058],[140738629206020,268468224,-22544604485800118,-22544603251967752],[140738629206020,1073741828,-11272305103287715,-11272298765596219],[140738629206020,1073774597,-11272303065715385,-11272300803168551],[140738629206020,1073774604,-11272303013198523,-11272300855685410],[140738629206020,1073872908,1975301908323058,1975303111382023],[140738629206020,1073905668,16618692505223764,16618700173428866],[140738629206020,1140850688,7321695128457817,7321698701015960],[140738629206020,1140883457,-1975303136765642,-1975301882939439],[140738629206020,1140883464,-1975303111382023,-1975301908323058],[140738629206020,1140981768,-1975303111382023,-1975301908323058],[140738629206020,1141014528,-37188001072094720,-37187994324620700],[140738629206020,1342210052,-26495209992202640,-26495207784975390],[140738629206020,1409318912,3950603911967182,3950606127442978],[140738629206020,17592186077184,-18594001318589224,-18593996379768482],[140738629206020,17592253186052,-11272303013198523,-11272300855685410],[140738629206020,17593259819012,-11272305157286919,-11272298711597012],[140738629206020,17593326927872,3950603855421852,3950606183988306],[140738629206020,140737488355332,7321695128457817,7321698701015960],[140738629206020,140737488388101,-1975303136765642,-1975301882939439],[140738629206020,140737488388108,-1975303111382023,-1975301908323058],[140738629206020,140737488486412,-1975303111382023,-1975301908323058],[140738629206020,140737488519172,-37188001072094720,-37187994324620700],[140738629206020,140737555464192,-11272305103287715,-11272298765596219],[140738629206020,140737555496961,-11272303065715385,-11272300803168551],[140738629206020,140737555496968,-11272303013198523,-11272300855685410],[140738629206020,140737555595272,1975301908323058,1975303111382023],[140738629206020,140737555628032,16618692505223764,16618700173428866],[140738629206020,140737756823556,3950603911967182,3950606127442978],[140738629206020,140737823932416,-26495209992202640,-26495207784975390],[140738629206020,140738562097152,22544602005389605,22544605732378260],[140738629206020,140738562129921,13247603786059568,13247605102529449],[140738629206020,140738562129928,13247603813192808,13247605075396206],[140738629206020,140738562260992,-1975303111382023,-1975301908323058],[140738629206020,140738629206020,18593997898859016,18593999799498692],[140738629206020,140738629369860,-22544604490299392,-22544603247468479],[140738629206020,140738897674244,-22544604485800118,-22544603251967752],[140738629206020,158329674432516,3950603855421852,3950606183988306],[140738629206020,158329741541376,-11272305157286919,-11272298711597012],[140738629206020,158330748174336,-11272303013198523,-11272300855685410],[140738629206020,158330815283204,-18594001318589224,-18593996379768482],[140738629206020,2305843009213726720,13247603817961795,13247605070627222],[140738629206020,2305843009280835588,-11272303065715385,-11272300803168551],[140738629206020,2305843010287468548,24519905253728852,24519907503744101],[140738629206020,2305983746769190912,24519905253728852,24519907503744101],[140738629206020,2305983747775823872,-11272303065715385,-11272300803168551],[140738629206020,2305983747842932740,13247603817961795,13247605070627222],[140738629206024,163840,13247603817961795,13247605070627222],[140738629206024,67141644,-13247605075396206,-13247603813192808],[140738629206024,67272712,15222905726284853,15222908182009245],[140738629206024,1073741832,-1975304301048867,-1975300718656210],[140738629206024,1073774604,11272300855685410,11272303013198523],[140738629206024,1073872906,-1975303136765642,-1975301882939439],[140738629206024,1073872908,-1975303111382023,-1975301908323058],[140738629206024,1073873032,-1975303134589986,-1975301885115096],[140738629206024,1073905672,-47064511858528265,-47064508636712560],[140738629206024,1074397192,-22544604497985104,-22544603239782766],[140738629206024,1140850688,1975300718656210,1975304301048867],[140738629206024,1140883460,1975301908323058,1975303111382023],[140738629206024,1140981762,1975301882939439,1975303136765642],[140738629206024,1140981764,1975301908323058,1975303111382023],[140738629206024,1140981888,1975301885115096,1975303134589986],[140738629206024,1141014528,45089206586850560,45089208888685184],[140738629206024,1141506048,22544603239782766,22544604497985104],[140738629206024,1342308360,24519905280236082,24519907477236870],[140738629206024,1409417216,-24519907477236870,-24519905280236082],[140738629206024,17592186175488,-26495210084232978,-26495207692945056],[140738629206024,17592253284360,-37767512400416486,-37767509245645481],[140738629206024,17593259917320,15222904711107262,15222909197186829],[140738629206024,17593327026176,-3950606183988306,-3950603855421852],[140738629206024,140737488355336,1975300718656210,1975304301048867],[140738629206024,140737488388108,1975301908323058,1975303111382023],[140738629206024,140737488486410,1975301882939439,1975303136765642],[140738629206024,140737488486412,1975301908323058,1975303111382023],[140738629206024,140737488486536,1975301885115096,1975303134589986],[140738629206024,140737488519176,45089206586850560,45089208888685184],[140738629206024,140737489010696,22544603239782766,22544604497985104],[140738629206024,140737555464192,-1975304301048867,-1975300718656210],[140738629206024,140737555496964,11272300855685410,11272303013198523],[140738629206024,140737555595266,-1975303136765642,-1975301882939439],[140738629206024,140737555595268,-1975303111382023,-1975301908323058],[140738629206024,140737555595392,-1975303134589986,-1975301885115096],[140738629206024,140737555628032,-47064511858528265,-47064508636712560],[140738629206024,140737556119552,-22544604497985104,-22544603239782766],[140738629206024,140737756921864,-24519907477236870,-24519905280236082],[140738629206024,140737824030720,24519905280236082,24519907477236870],[140738629206024,140738562129924,-13247605075396206,-13247603813192808],[140738629206024,140738562260992,15222905726284853,15222908182009245],[140738629206024,140738629369864,13247603817961795,13247605070627222],[140738629206024,158329674530824,-3950606183988306,-3950603855421852],[140738629206024,158329741639680,15222904711107262,15222909197186829],[140738629206024,158330748272640,-37767512400416486,-37767509245645481],[140738629206024,158330815381512,-26495210084232978,-26495207692945056],[140738629206024,2305843009213825024,-13247605070627222,-13247603817961795],[140738629206024,2305843009280933896,-13247605070627222,-13247603817961795],[140738629206024,2305983747775922176,-13247605070627222,-13247603817961795],[140738629206024,2305983747843031048,-13247605070627222,-13247603817961795],[140738629206144,1073873032,1975301885115096,1975303134589986],[140738629206144,1074397312,22544603239782766,22544604497985104],[140738629206144,1140981768,-1975303134589986,-1975301885115096],[140738629206144,1141506048,-22544604497985104,-22544603239782766],[140738629206144,1342701696,1975301877105131,1975303142599947],[140738629206144,1409810432,-1975303142599947,-1975301877105131],[140738629206144,140737488486536,-1975303134589986,-1975301885115096],[140738629206144,140737489010816,-22544604497985104,-22544603239782766],[140738629206144,140737555595272,1975301885115096,1975303134589986],[140738629206144,140737556119552,22544603239782766,22544604497985104],[140738629206144,140737757315200,-1975303142599947,-1975301877105131],[140738629206144,140737824423936,1975301877105131,1975303142599947],[140738629238784,131076,22544603247468479,22544604490299392],[140738629238784,67272708,-11272303013198523,-11272300855685410],[140738629238784,268435460,22544603251967752,22544604485800118],[140738629238784,1073905668,17198204846179046,17198214081820128],[140738629238784,1073905672,-15222908182009245,-15222905726284853],[140738629238784,1140981764,16618692505223764,16618700173428866],[140738629238784,1140981768,15222905726284853,15222908182009245],[140738629238784,1342210052,26495207784975390,26495209992202640],[140738629238784,1409286148,-3950606127442978,-3950603911967182],[140738629238784,17592186044420,18593996379768482,18594001318589224],[140738629238784,17592253186052,11272300855685410,11272303013198523],[140738629238784,17593259819012,11272298711597012,11272305157286919],[140738629238784,17593326895108,-3950606183988306,-3950603855421852],[140738629238784,140737488519172,16618692505223764,16618700173428866],[140738629238784,140737488519176,15222905726284853,15222908182009245],[140738629238784,140737555595268,17198204846179046,17198214081820128],[140738629238784,140737555595272,-15222908182009245,-15222905726284853],[140738629238784,140737756823556,-3950606127442978,-3950603911967182],[140738629238784,140737823899652,26495207784975390,26495209992202640],[140738629238784,140738562228228,-11272303013198523,-11272300855685410],[140738629238784,140738629369860,22544603247468479,22544604490299392],[140738629238784,140738897674244,22544603251967752,22544604485800118],[140738629238784,158329674432516,-3950606183988306,-3950603855421852],[140738629238784,158329741508612,11272298711597012,11272305157286919],[140738629238784,158330748141572,11272300855685410,11272303013198523],[140738629238784,158330815283204,18593996379768482,18594001318589224],[140738629238784,2305843009213693956,-13247605070627222,-13247603817961795],[140738629238784,2305843009280835588,11272300803168551,11272303065715385],[140738629238784,2305843010287468548,-24519907503744101,-24519905253728852],[140738629238784,2305983746769158148,-24519907503744101,-24519905253728852],[140738629238784,2305983747775791108,11272300803168551,11272303065715385],[140738629238784,2305983747842932740,-13247605070627222,-13247603817961795],[140738629238789,67108865,-13247605102529449,-13247603786059568],[140738629238789,67108868,13247603786059568,13247605102529449],[140738629238789,1073741825,11272300803168551,11272303065715385],[140738629238789,1073741828,-11272303065715385,-11272300803168551],[140738629238789,1140883457,-1975303136765642,-1975301882939439],[140738629238789,1140883460,1975301882939439,1975303136765642],[140738629238789,140737488355329,1975301882939439,1975303136765642],[140738629238789,140737488355332,-1975303136765642,-1975301882939439],[140738629238789,140737555496961,-11272303065715385,-11272300803168551],[140738629238789,140737555496964,11272300803168551,11272303065715385],[140738629238789,140738562129921,13247603786059568,13247605102529449],[140738629238789,140738562129924,-13247605102529449,-13247603786059568],[140738629238796,67108868,13247603813192808,13247605075396206],[140738629238796,67108872,-13247605075396206,-13247603813192808],[140738629238796,1073741828,-11272303013198523,-11272300855685410],[140738629238796,1073741832,11272300855685410,11272303013198523],[140738629238796,1140883460,1975301908323058,1975303111382023],[140738629238796,1140883464,-1975303111382023,-1975301908323058],[140738629238796,140737488355332,-1975303111382023,-1975301908323058],[140738629238796,140737488355336,1975301908323058,1975303111382023],[140738629238796,140737555496964,11272300855685410,11272303013198523],[140738629238796,140737555496968,-11272303013198523,-11272300855685410],[140738629238796,140738562129924,-13247605075396206,-13247603813192808],[140738629238796,140738562129928,13247603813192808,13247605075396206],[140738629337088,32776,-13247605070627222,-13247603817961795],[140738629337088,67272708,13247603813192808,13247605075396206],[140738629337088,67272712,-15222908182009245,-15222905726284853],[140738629337088,1073905668,-11272303013198523,-11272300855685410],[140738629337088,1073905672,49039810686574560,49039814828371346],[140738629337088,1074397192,24519905280236082,24519907477236870],[140738629337088,1140883460,-1975303111382023,-1975301908323058],[140738629337088,1140883464,-47064511858528265,-47064508636712560],[140738629337088,1141374984,-24519907477236870,-24519905280236082],[140738629337088,1342308360,-24519907477236870,-24519905280236082],[140738629337088,1409286152,24519905280236082,24519907477236870],[140738629337088,17592186044424,26495207692945056,26495210084232978],[140738629337088,17592253284360,37767509245645481,37767512400416486],[140738629337088,17593259917320,-15222909197186829,-15222904711107262],[140738629337088,17593326895112,3950603855421852,3950606183988306],[140738629337088,140737488519172,-1975303111382023,-1975301908323058],[140738629337088,140737488519176,-47064511858528265,-47064508636712560],[140738629337088,140737489010696,-24519907477236870,-24519905280236082],[140738629337088,140737555496964,-11272303013198523,-11272300855685410],[140738629337088,140737555496968,49039810686574560,49039814828371346],[140738629337088,140737555988488,24519905280236082,24519907477236870],[140738629337088,140737756921864,24519905280236082,24519907477236870],[140738629337088,140737823899656,-24519907477236870,-24519905280236082],[140738629337088,140738562129924,13247603813192808,13247605075396206],[140738629337088,140738562129928,-15222908182009245,-15222905726284853],[140738629337088,140738629369864,-13247605070627222,-13247603817961795],[140738629337088,158329674530824,3950603855421852,3950606183988306],[140738629337088,158329741508616,-15222909197186829,-15222904711107262],[140738629337088,158330748141576,37767509245645481,37767512400416486],[140738629337088,158330815381512,26495207692945056,26495210084232978],[140738629337088,2305843009213693960,13247603817961795,13247605070627222],[140738629337088,2305843009280933896,13247603817961795,13247605070627222],[140738629337088,2305983747775791112,13247603817961795,13247605070627222],[140738629337088,2305983747843031048,13247603817961795,13247605070627222],[140738629337098,1073741826,1975301882939439,1975303136765642],[140738629337098,1073741832,-1975303136765642,-1975301882939439],[140738629337098,1140981762,1975301882939439,1975303136765642],[140738629337098,1140981768,-1975303136765642,-1975301882939439],[140738629337098,140737488355330,-1975303136765642,-1975301882939439],[140738629337098,140737488355336,1975301882939439,1975303136765642],[140738629337098,140737555595266,-1975303136765642,-1975301882939439],[140738629337098,140737555595272,1975301882939439,1975303136765642],[140738629337100,1073741828,1975301908323058,1975303111382023],[140738629337100,1073741832,-1975303111382023,-1975301908323058],[140738629337100,1140981764,1975301908323058,1975303111382023],[140738629337100,1140981768,-1975303111382023,-1975301908323058],[140738629337100,140737488355332,-1975303111382023,-1975301908323058],[140738629337100,140737488355336,1975301908323058,1975303111382023],[140738629337100,140737555595268,-1975303111382023,-1975301908323058],[140738629337100,140737555595272,1975301908323058,1975303111382023],[140738629337224,1073741832,-1975303134589986,-1975301885115096],[140738629337224,1073741952,1975301885115096,1975303134589986],[140738629337224,1140981768,-1975303134589986,-1975301885115096],[140738629337224,1140981888,1975301885115096,1975303134589986],[140738629337224,140737488355336,1975301885115096,1975303134589986],[140738629337224,140737488355456,-1975303134589986,-1975301885115096],[140738629337224,140737555595272,1975301885115096,1975303134589986],[140738629337224,140737555595392,-1975303134589986,-1975301885115096],[140738629369860,131076,22544603247468479,22544604490299392],[140738629369860,163840,-22544604490299392,-22544603247468479],[140738629369860,67108868,-24519907601681415,-24519905155791537],[140738629369860,67141632,11272300234269956,11272303634613982],[140738629369860,67239936,13247603813192808,13247605075396206],[140738629369860,1073741828,47064508636712560,47064511858528265],[140738629369860,1073774592,-35792210707429288,-35792205918927604],[140738629369860,1073872896,11272300234269956,11272303634613982],[140738629369860,1073905668,22544603247468479,22544604490299392],[140738629369860,1140850688,-22544604490299392,-22544603247468479],[140738629369860,1140883460,-24519907601681415,-24519905155791537],[140738629369860,1140981764,47064508636712560,47064511858528265],[140738629369860,1141014528,-45089208888685184,-45089206586850560],[140738629369860,140737488355332,-45089208888685184,-45089206586850560],[140738629369860,140737488388096,47064508636712560,47064511858528265],[140738629369860,140737488486400,-24519907601681415,-24519905155791537],[140738629369860,140737488519172,-22544604490299392,-22544603247468479],[140738629369860,140737555464192,22544603247468479,22544604490299392],[140738629369860,140737555496964,11272300234269956,11272303634613982],[140738629369860,140737555595268,-35792210707429288,-35792205918927604],[140738629369860,140737555628032,47064508636712560,47064511858528265],[140738629369860,140738562129924,13247603813192808,13247605075396206],[140738629369860,140738562228228,11272300234269956,11272303634613982],[140738629369860,140738562260992,-24519907601681415,-24519905155791537],[140738629369860,140738629206020,-22544604490299392,-22544603247468479],[140738629369860,140738629238784,22544603247468479,22544604490299392],[140738629369864,32776,-13247605070627222,-13247603817961795],[140738629369864,163840,13247603817961795,13247605070627222],[140738629369864,67108872,1975301908323058,1975303111382023],[140738629369864,67239936,-1975303111382023,-1975301908323058],[140738629369864,1073741832,-7321700273679520,-7321693555794256],[140738629369864,1073774592,-1975303111382023,-1975301908323058],[140738629369864,1073872896,-3950609314173172,-3950600725236988],[140738629369864,1073905672,-13247605070627222,-13247603817961795],[140738629369864,1140850688,13247603817961795,13247605070627222],[140738629369864,1140883464,-7321700273679520,-7321693555794256],[140738629369864,1140981768,1975301908323058,1975303111382023],[140738629369864,1141014528,18593996425761684,18594001272596028],[140738629369864,140737488355336,18593996425761684,18594001272596028],[140738629369864,140737488388096,1975301908323058,1975303111382023],[140738629369864,140737488486400,-7321700273679520,-7321693555794256],[140738629369864,140737488519176,13247603817961795,13247605070627222],[140738629369864,140737555464192,-13247605070627222,-13247603817961795],[140738629369864,140737555496968,-3950609314173172,-3950600725236988],[140738629369864,140737555595272,-1975303111382023,-1975301908323058],[140738629369864,140737555628032,-7321700273679520,-7321693555794256],[140738629369864,140738562129928,-1975303111382023,-1975301908323058],[140738629369864,140738562260992,1975301908323058,1975303111382023],[140738629369864,140738629206024,13247603817961795,13247605070627222],[140738629369864,140738629337088,-13247605070627222,-13247603817961795],[140738629730304,1074397192,-1975303134589986,-1975301885115096],[140738629730304,1074397312,-22544604497985104,-22544603239782766],[140738629730304,1140981768,1975301885115096,1975303134589986],[140738629730304,1140981888,22544603239782766,22544604497985104],[140738629730304,1342701696,-1975303142599947,-1975301877105131],[140738629730304,1409286272,1975301877105131,1975303142599947],[140738629730304,140737489010696,1975301885115096,1975303134589986],[140738629730304,140737489010816,22544603239782766,22544604497985104],[140738629730304,140737555595272,-1975303134589986,-1975301885115096],[140738629730304,140737555595392,-22544604497985104,-22544603239782766],[140738629730304,140737757315200,1975301877105131,1975303142599947],[140738629730304,140737823899776,-1975303142599947,-1975301877105131],[140738629861384,1073741832,-22544604497985104,-22544603239782766],[140738629861384,1073872896,24519905280236082,24519907477236870],[140738629861384,1074266112,-1975303134589986,-1975301885115096],[140738629861384,1140981768,1975301885115096,1975303134589986],[140738629861384,1141374984,-24519907477236870,-24519905280236082],[140738629861384,1141506048,22544603239782766,22544604497985104],[140738629861384,140737488355336,22544603239782766,22544604497985104],[140738629861384,140737488486400,-24519907477236870,-24519905280236082],[140738629861384,140737488879616,1975301885115096,1975303134589986],[140738629861384,140737555595272,-1975303134589986,-1975301885115096],[140738629861384,140737555988488,24519905280236082,24519907477236870],[140738629861384,140737556119552,-22544604497985104,-22544603239782766],[140738629861504,1073741952,22544603239782766,22544604497985104],[140738629861504,1074266112,-22544604497985104,-22544603239782766],[140738629861504,1140981888,22544603239782766,22544604497985104],[140738629861504,1141506048,-22544604497985104,-22544603239782766],[140738629861504,140737488355456,-22544604497985104,-22544603239782766],[140738629861504,140737488879616,22544603239782766,22544604497985104],[140738629861504,140737555595392,-22544604497985104,-22544603239782766],[140738629861504,140737556119552,22544603239782766,22544604497985104],[140738830532612,67141632,22544603251967752,22544604485800118],[140738830532612,1140883460,26495207784975390,26495209992202640],[140738830532612,1409318912,-3950606127442978,-3950603911967182],[140738830532612,140737555496964,-3950606127442978,-3950603911967182],[140738830532612,140737823932416,26495207784975390,26495209992202640],[140738830532612,140738897674244,22544603251967752,22544604485800118],[140738830532616,1140981768,-26495209992202640,-26495207784975390],[140738830532616,1409417216,26495207784975390,26495209992202640],[140738830532616,140737555595272,26495207784975390,26495209992202640],[140738830532616,140737824030720,-26495209992202640,-26495207784975390],[140738830565376,67108868,-22544604485800118,-22544603251967752],[140738830565376,1140883460,-26495209992202640,-26495207784975390],[140738830565376,1409286148,3950603911967182,3950606127442978],[140738830565376,140737555496964,3950603911967182,3950606127442978],[140738830565376,140737823899652,-26495209992202640,-26495207784975390],[140738830565376,140738897674244,-22544604485800118,-22544603251967752],[140738830663680,1140981768,26495207784975390,26495209992202640],[140738830663680,1409286152,-26495209992202640,-26495207784975390],[140738830663680,140737555595272,-26495209992202640,-26495207784975390],[140738830663680,140737823899656,26495207784975390,26495209992202640],[140738897674244,67108868,-22544604485800118,-22544603251967752],[140738897674244,67141632,22544603251967752,22544604485800118],[140738897674244,268435460,22544603251967752,22544604485800118],[140738897674244,268468224,-22544604485800118,-22544603251967752],[140738897674244,140738629206020,-22544604485800118,-22544603251967752],[140738897674244,140738629238784,22544603251967752,22544604485800118],[140738897674244,140738830532612,22544603251967752,22544604485800118],[140738897674244,140738830565376,-22544604485800118,-22544603251967752],[140738897772552,1073741832,-1975303142599947,-1975301877105131],[140738897772552,1073872896,1975301877105131,1975303142599947],[140738897772552,1409286152,-1975303142599947,-1975301877105131],[140738897772552,1409417216,1975301877105131,1975303142599947],[140738897772552,140737488355336,1975301877105131,1975303142599947],[140738897772552,140737488486400,-1975303142599947,-1975301877105131],[140738897772552,140737823899656,1975301877105131,1975303142599947],[140738897772552,140737824030720,-1975303142599947,-1975301877105131],[140738898165888,1073741952,1975301877105131,1975303142599947],[140738898165888,1074266112,-1975303142599947,-1975301877105131],[140738898165888,1409286272,1975301877105131,1975303142599947],[140738898165888,1409810432,-1975303142599947,-1975301877105131],[140738898165888,140737488355456,-1975303142599947,-1975301877105131],[140738898165888,140737488879616,1975301877105131,1975303142599947],[140738898165888,140737823899776,-1975303142599947,-1975301877105131],[140738898165888,140737824423936,1975301877105131,1975303142599947],[158329674432516,17592186044420,1975300184502783,1975304835202292],[158329674432516,17592186077184,-1975304835202292,-1975300184502783],[158329674432516,17593326895108,-3950606183988306,-3950603855421852],[158329674432516,17593326927872,3950603855421852,3950606183988306],[158329674432516,140737488355332,-1975304835202292,-1975300184502783],[158329674432516,140737488388096,1975300184502783,1975304835202292],[158329674432516,140738629206020,3950603855421852,3950606183988306],[158329674432516,140738629238784,-3950606183988306,-3950603855421852],[158329674530824,17592186044424,-1975304835202292,-1975300184502783],[158329674530824,17592186175488,1975300184502783,1975304835202292],[158329674530824,17593326895112,3950603855421852,3950606183988306],[158329674530824,17593327026176,-3950606183988306,-3950603855421852],[158329674530824,140737488355336,1975300184502783,1975304835202292],[158329674530824,140737488486400,-1975304835202292,-1975300184502783],[158329674530824,140738629206024,-3950606183988306,-3950603855421852],[158329674530824,140738629337088,3950603855421852,3950606183988306],[158329741508610,17592186175498,-13247605102529449,-13247603786059568],[158329741508610,17592253284360,13247603786059568,13247605102529449],[158329741508610,140737488486410,13247603786059568,13247605102529449],[158329741508610,140737555595272,-13247605102529449,-13247603786059568],[158329741508612,1140883460,-49039814402932400,-49039811112013498],[158329741508612,17592186175500,-13247605075396206,-13247603813192808],[158329741508612,17592186208260,1975301908323058,1975303111382023],[158329741508612,17592253284360,13247603813192808,13247605075396206],[158329741508612,17592253317120,-1975303111382023,-1975301908323058],[158329741508612,17593259819012,11272298711597012,11272305157286919],[158329741508612,17593326927872,37767509245645481,37767512400416486],[158329741508612,140737488486412,13247603813192808,13247605075396206],[158329741508612,140737488519172,-1975303111382023,-1975301908323058],[158329741508612,140737555595272,-13247605075396206,-13247603813192808],[158329741508612,140737555628032,1975301908323058,1975303111382023],[158329741508612,140738562129924,37767509245645481,37767512400416486],[158329741508612,140738629238784,11272298711597012,11272305157286919],[158329741508612,158330748174336,-49039814402932400,-49039811112013498],[158329741508616,1073872896,45089206464001460,45089209011534280],[158329741508616,1140981768,49039811112013498,49039814402932400],[158329741508616,17592186044424,13247602585717435,13247606302871576],[158329741508616,17592186175498,13247603786059568,13247605102529449],[158329741508616,17592186175500,13247603813192808,13247605075396206],[158329741508616,17592186175624,13247603788555150,13247605100033866],[158329741508616,17592186208264,-1975303111382023,-1975301908323058],[158329741508616,17592186699784,-1975303167312100,-1975301852392980],[158329741508616,17592253153280,-13247606302871576,-13247602585717435],[158329741508616,17592253284354,-13247605102529449,-13247603786059568],[158329741508616,17592253284356,-13247605075396206,-13247603813192808],[158329741508616,17592253284480,-13247605100033866,-13247603788555150],[158329741508616,17592253317120,1975301908323058,1975303111382023],[158329741508616,17592253808640,1975301852392980,1975303167312100],[158329741508616,17592454610952,-11272303079253853,-11272300789630083],[158329741508616,17592521719808,11272300789630083,11272303079253853],[158329741508616,17593259917320,-15222909197186829,-15222904711107262],[158329741508616,17593327026176,11272300855685410,11272303013198523],[158329741508616,35184372219904,-22544604485800118,-22544603251967752],[158329741508616,35184439328776,-22544604485800118,-22544603251967752],[158329741508616,140737488355336,-13247606302871576,-13247602585717435],[158329741508616,140737488486410,-13247605102529449,-13247603786059568],[158329741508616,140737488486412,-13247605075396206,-13247603813192808],[158329741508616,140737488486536,-13247605100033866,-13247603788555150],[158329741508616,140737488519176,1975301908323058,1975303111382023],[158329741508616,140737489010696,1975301852392980,1975303167312100],[158329741508616,140737555464192,13247602585717435,13247606302871576],[158329741508616,140737555595266,13247603786059568,13247605102529449],[158329741508616,140737555595268,13247603813192808,13247605075396206],[158329741508616,140737555595392,13247603788555150,13247605100033866],[158329741508616,140737555628032,-1975303111382023,-1975301908323058],[158329741508616,140737556119552,-1975303167312100,-1975301852392980],[158329741508616,140737756921864,11272300789630083,11272303079253853],[158329741508616,140737824030720,-11272303079253853,-11272300789630083],[158329741508616,140738562228232,11272300855685410,11272303013198523],[158329741508616,140738629337088,-15222909197186829,-15222904711107262],[158329741508616,158330748272640,49039811112013498,49039814402932400],[158329741508616,158330815381512,45089206464001460,45089209011534280],[158329741508616,193514046619648,-22544604485800118,-22544603251967752],[158329741508616,193514113728520,-22544604485800118,-22544603251967752],[158329741508616,2305843009213825024,22544603247468479,22544604490299392],[158329741508616,2305843009280933896,22544603247468479,22544604490299392],[158329741508616,2306001338888224768,22544603247468479,22544604490299392],[158329741508616,2306001338955333640,22544603247468479,22544604490299392],[158329741508616,4611686018427518976,-22544604490299392,-22544603247468479],[158329741508616,4611686018494627848,-22544604490299392,-22544603247468479],[158329741508616,4611844348101918720,-22544604490299392,-22544603247468479],[158329741508616,4611844348169027592,-22544604490299392,-22544603247468479],[158329741508736,17592186175624,-13247605100033866,-13247603788555150],[158329741508736,17592186699904,1975301852392980,1975303167312100],[158329741508736,17592253284360,13247603788555150,13247605100033866],[158329741508736,17592253808640,-1975303167312100,-1975301852392980],[158329741508736,17592455004288,-13247605101666952,-13247603786922062],[158329741508736,17592522113024,13247603786922062,13247605101666952],[158329741508736,140737488486536,13247603788555150,13247605100033866],[158329741508736,140737489010816,-1975303167312100,-1975301852392980],[158329741508736,140737555595272,-13247605100033866,-13247603788555150],[158329741508736,140737556119552,1975301852392980,1975303167312100],[158329741508736,140737757315200,13247603786922062,13247605101666952],[158329741508736,140737824423936,-13247605101666952,-13247603786922062],[158329741541376,1140883460,49039811112013498,49039814402932400],[158329741541376,17592186208260,-1975303111382023,-1975301908323058],[158329741541376,17592186208264,13247603813192808,13247605075396206],[158329741541376,17592253284356,1975301908323058,1975303111382023],[158329741541376,17592253284360,-13247605075396206,-13247603813192808],[158329741541376,17593259819012,-11272305157286919,-11272298711597012],[158329741541376,17593326895108,-37767512400416486,-37767509245645481],[158329741541376,140737488519172,1975301908323058,1975303111382023],[158329741541376,140737488519176,-13247605075396206,-13247603813192808],[158329741541376,140737555595268,-1975303111382023,-1975301908323058],[158329741541376,140737555595272,13247603813192808,13247605075396206],[158329741541376,140738562129924,-37767512400416486,-37767509245645481],[158329741541376,140738629206020,-11272305157286919,-11272298711597012],[158329741541376,158330748141572,49039811112013498,49039814402932400],[158329741639680,1073741832,-45089209011534280,-45089206464001460],[158329741639680,1140981768,-49039814402932400,-49039811112013498],[158329741639680,17592186208264,-11272303013198523,-11272300855685410],[158329741639680,17592186699784,-11272303079253853,-11272300789630083],[158329741639680,17592253186056,11272300855685410,11272303013198523],[158329741639680,17592253677576,11272300789630083,11272303079253853],[158329741639680,17592454610952,11272300789630083,11272303079253853],[158329741639680,17592521588744,-11272303079253853,-11272300789630083],[158329741639680,17593259917320,15222904711107262,15222909197186829],[158329741639680,17593326895112,-11272303013198523,-11272300855685410],[158329741639680,35184372088840,22544603251967752,22544604485800118],[158329741639680,35184439328776,22544603251967752,22544604485800118],[158329741639680,140737488519176,11272300855685410,11272303013198523],[158329741639680,140737489010696,11272300789630083,11272303079253853],[158329741639680,140737555496968,-11272303013198523,-11272300855685410],[158329741639680,140737555988488,-11272303079253853,-11272300789630083],[158329741639680,140737756921864,-11272303079253853,-11272300789630083],[158329741639680,140737823899656,11272300789630083,11272303079253853],[158329741639680,140738562228232,-11272303013198523,-11272300855685410],[158329741639680,140738629206024,15222904711107262,15222909197186829],[158329741639680,158330748141576,-49039814402932400,-49039811112013498],[158329741639680,158330815381512,-45089209011534280,-45089206464001460],[158329741639680,193514046488584,22544603251967752,22544604485800118],[158329741639680,193514113728520,22544603251967752,22544604485800118],[158329741639680,2305843009213693960,-22544604490299392,-22544603247468479],[158329741639680,2305843009280933896,-22544604490299392,-22544603247468479],[158329741639680,2306001338888093704,-22544604490299392,-22544603247468479],[158329741639680,2306001338955333640,-22544604490299392,-22544603247468479],[158329741639680,4611686018427387912,22544603247468479,22544604490299392],[158329741639680,4611686018494627848,22544603247468479,22544604490299392],[158329741639680,4611844348101787656,22544603247468479,22544604490299392],[158329741639680,4611844348169027592,22544603247468479,22544604490299392],[158329741639690,17592186044418,-13247605102529449,-13247603786059568],[158329741639690,17592186044424,13247603786059568,13247605102529449],[158329741639690,17592253284354,-13247605102529449,-13247603786059568],[158329741639690,17592253284360,13247603786059568,13247605102529449],[158329741639690,140737488355330,13247603786059568,13247605102529449],[158329741639690,140737488355336,-13247605102529449,-13247603786059568],[158329741639690,140737555595266,13247603786059568,13247605102529449],[158329741639690,140737555595272,-13247605102529449,-13247603786059568],[158329741639692,17592186044420,-13247605075396206,-13247603813192808],[158329741639692,17592186044424,13247603813192808,13247605075396206],[158329741639692,17592253284356,-13247605075396206,-13247603813192808],[158329741639692,17592253284360,13247603813192808,13247605075396206],[158329741639692,140737488355332,13247603813192808,13247605075396206],[158329741639692,140737488355336,-13247605075396206,-13247603813192808],[158329741639692,140737555595268,13247603813192808,13247605075396206],[158329741639692,140737555595272,-13247605075396206,-13247603813192808],[158329741639816,17592186044424,13247603788555150,13247605100033866],[158329741639816,17592186044544,-13247605100033866,-13247603788555150],[158329741639816,17592253284360,13247603788555150,13247605100033866],[158329741639816,17592253284480,-13247605100033866,-13247603788555150],[158329741639816,140737488355336,-13247605100033866,-13247603788555150],[158329741639816,140737488355456,13247603788555150,13247605100033866],[158329741639816,140737555595272,-13247605100033866,-13247603788555150],[158329741639816,140737555595392,13247603788555150,13247605100033866],[158329741672452,17592186044420,1975301908323058,1975303111382023],[158329741672452,17592186077184,-1975303111382023,-1975301908323058],[158329741672452,17592253284356,1975301908323058,1975303111382023],[158329741672452,17592253317120,-1975303111382023,-1975301908323058],[158329741672452,140737488355332,-1975303111382023,-1975301908323058],[158329741672452,140737488388096,1975301908323058,1975303111382023],[158329741672452,140737555595268,-1975303111382023,-1975301908323058],[158329741672452,140737555628032,1975301908323058,1975303111382023],[158329741672456,17592186044424,-1975303111382023,-1975301908323058],[158329741672456,17592186077184,13247603813192808,13247605075396206],[158329741672456,17592186175488,-11272303013198523,-11272300855685410],[158329741672456,17592253186056,11272300855685410,11272303013198523],[158329741672456,17592253284360,-13247605075396206,-13247603813192808],[158329741672456,17592253317120,1975301908323058,1975303111382023],[158329741672456,140737488355336,1975301908323058,1975303111382023],[158329741672456,140737488388096,-13247605075396206,-13247603813192808],[158329741672456,140737488486400,11272300855685410,11272303013198523],[158329741672456,140737555496968,-11272303013198523,-11272300855685410],[158329741672456,140737555595272,13247603813192808,13247605075396206],[158329741672456,140737555628032,-1975303111382023,-1975301908323058],[158329742032896,17592186699784,13247603788555150,13247605100033866],[158329742032896,17592186699904,-1975303167312100,-1975301852392980],[158329742032896,17592253284360,-13247605100033866,-13247603788555150],[158329742032896,17592253284480,1975301852392980,1975303167312100],[158329742032896,17592455004288,13247603786922062,13247605101666952],[158329742032896,17592521588864,-13247605101666952,-13247603786922062],[158329742032896,140737489010696,-13247605100033866,-13247603788555150],[158329742032896,140737489010816,1975301852392980,1975303167312100],[158329742032896,140737555595272,13247603788555150,13247605100033866],[158329742032896,140737555595392,-1975303167312100,-1975301852392980],[158329742032896,140737757315200,-13247605101666952,-13247603786922062],[158329742032896,140737823899776,13247603786922062,13247605101666952],[158329742163976,17592186044424,-1975303167312100,-1975301852392980],[158329742163976,17592186175488,-11272303079253853,-11272300789630083],[158329742163976,17592186568704,13247603788555150,13247605100033866],[158329742163976,17592253284360,-13247605100033866,-13247603788555150],[158329742163976,17592253677576,11272300789630083,11272303079253853],[158329742163976,17592253808640,1975301852392980,1975303167312100],[158329742163976,140737488355336,1975301852392980,1975303167312100],[158329742163976,140737488486400,11272300789630083,11272303079253853],[158329742163976,140737488879616,-13247605100033866,-13247603788555150],[158329742163976,140737555595272,13247603788555150,13247605100033866],[158329742163976,140737555988488,-11272303079253853,-11272300789630083],[158329742163976,140737556119552,-1975303167312100,-1975301852392980],[158329742164096,17592186044544,1975301852392980,1975303167312100],[158329742164096,17592186568704,-1975303167312100,-1975301852392980],[158329742164096,17592253284480,1975301852392980,1975303167312100],[158329742164096,17592253808640,-1975303167312100,-1975301852392980],[158329742164096,140737488355456,-1975303167312100,-1975301852392980],[158329742164096,140737488879616,1975301852392980,1975303167312100],[158329742164096,140737555595392,-1975303167312100,-1975301852392980],[158329742164096,140737556119552,1975301852392980,1975303167312100],[158329942835208,17592253284360,24519905262899363,24519907494573587],[158329942835208,17592521719808,-24519907494573587,-24519905262899363],[158329942835208,140737555595272,-24519907494573587,-24519905262899363],[158329942835208,140737824030720,24519905262899363,24519907494573587],[158329942966272,17592253284360,-24519907494573587,-24519905262899363],[158329942966272,17592521588744,24519905262899363,24519907494573587],[158329942966272,140737555595272,24519905262899363,24519907494573587],[158329942966272,140737823899656,-24519907494573587,-24519905262899363],[158330010075144,17592186044424,13247603786922062,13247605101666952],[158330010075144,17592186175488,-13247605101666952,-13247603786922062],[158330010075144,17592521588744,13247603786922062,13247605101666952],[158330010075144,17592521719808,-13247605101666952,-13247603786922062],[158330010075144,140737488355336,-13247605101666952,-13247603786922062],[158330010075144,140737488486400,13247603786922062,13247605101666952],[158330010075144,140737823899656,-13247605101666952,-13247603786922062],[158330010075144,140737824030720,13247603786922062,13247605101666952],[158330010468480,17592186044544,-13247605101666952,-13247603786922062],[158330010468480,17592186568704,13247603786922062,13247605101666952],[158330010468480,17592521588864,-13247605101666952,-13247603786922062],[158330010468480,17592522113024,13247603786922062,13247605101666952],[158330010468480,140737488355456,13247603786922062,13247605101666952],[158330010468480,140737488879616,-13247605101666952,-13247603786922062],[158330010468480,140737823899776,13247603786922062,13247605101666952],[158330010468480,140737824423936,-13247605101666952,-13247603786922062],[158330748141569,17592186077189,13247603786059568,13247605102529449],[158330748141569,17593259819012,-13247605102529449,-13247603786059568],[158330748141569,140737488388101,-13247605102529449,-13247603786059568],[158330748141569,140738562129924,13247603786059568,13247605102529449],[158330748141572,67141632,45089206464001460,45089209011534280],[158330748141572,1140883460,49039811112013498,49039814402932400],[158330748141572,17592186044420,-13247606302871576,-13247602585717435],[158330748141572,17592186077189,-13247605102529449,-13247603786059568],[158330748141572,17592186077196,-13247605075396206,-13247603813192808],[158330748141572,17592186208260,1975301908323058,1975303111382023],[158330748141572,17592253186052,11272300855685410,11272303013198523],[158330748141572,17593259786240,13247602585717435,13247606302871576],[158330748141572,17593259819009,13247603786059568,13247605102529449],[158330748141572,17593259819016,13247603813192808,13247605075396206],[158330748141572,17593259950080,-1975303111382023,-1975301908323058],[158330748141572,17593326927872,-15222909197186829,-15222904711107262],[158330748141572,35184372121600,22544603251967752,22544604485800118],[158330748141572,35185445863428,22544603251967752,22544604485800118],[158330748141572,140737488355332,13247602585717435,13247606302871576],[158330748141572,140737488388101,13247603786059568,13247605102529449],[158330748141572,140737488388108,13247603813192808,13247605075396206],[158330748141572,140737488519172,-1975303111382023,-1975301908323058],[158330748141572,140737555496964,-15222909197186829,-15222904711107262],[158330748141572,140738562097152,-13247606302871576,-13247602585717435],[158330748141572,140738562129921,-13247605102529449,-13247603786059568],[158330748141572,140738562129928,-13247605075396206,-13247603813192808],[158330748141572,140738562260992,1975301908323058,1975303111382023],[158330748141572,140738629238784,11272300855685410,11272303013198523],[158330748141572,158329741541376,49039811112013498,49039814402932400],[158330748141572,158330815283204,45089206464001460,45089209011534280],[158330748141572,193514046521344,22544603251967752,22544604485800118],[158330748141572,193515120263172,22544603251967752,22544604485800118],[158330748141572,2305843009213726720,-22544604490299392,-22544603247468479],[158330748141572,2305843010287468548,-22544604490299392,-22544603247468479],[158330748141572,2306001338888126464,-22544604490299392,-22544603247468479],[158330748141572,2306001339961868292,-22544604490299392,-22544603247468479],[158330748141572,4611686018427420672,22544603247468479,22544604490299392],[158330748141572,4611686019501162500,22544603247468479,22544604490299392],[158330748141572,4611844348101820416,22544603247468479,22544604490299392],[158330748141572,4611844349175562244,22544603247468479,22544604490299392],[158330748141576,1140981768,-49039814402932400,-49039811112013498],[158330748141576,17592186077196,13247603813192808,13247605075396206],[158330748141576,17592186208264,-1975303111382023,-1975301908323058],[158330748141576,17592253284360,37767509245645481,37767512400416486],[158330748141576,17593259819012,-13247605075396206,-13247603813192808],[158330748141576,17593259950080,1975301908323058,1975303111382023],[158330748141576,17593327026176,11272298711597012,11272305157286919],[158330748141576,140737488388108,-13247605075396206,-13247603813192808],[158330748141576,140737488519176,1975301908323058,1975303111382023],[158330748141576,140737555595272,11272298711597012,11272305157286919],[158330748141576,140738562129924,13247603813192808,13247605075396206],[158330748141576,140738562260992,-1975303111382023,-1975301908323058],[158330748141576,140738629337088,37767509245645481,37767512400416486],[158330748141576,158329741639680,-49039814402932400,-49039811112013498],[158330748174336,67108868,-45089209011534280,-45089206464001460],[158330748174336,1140883460,-49039814402932400,-49039811112013498],[158330748174336,17592186208260,11272300855685410,11272303013198523],[158330748174336,17592253186052,-11272303013198523,-11272300855685410],[158330748174336,17593259917316,-11272303013198523,-11272300855685410],[158330748174336,17593326895108,15222904711107262,15222909197186829],[158330748174336,35184372088836,-22544604485800118,-22544603251967752],[158330748174336,35185445863428,-22544604485800118,-22544603251967752],[158330748174336,140737488519172,-11272303013198523,-11272300855685410],[158330748174336,140737555496964,15222904711107262,15222909197186829],[158330748174336,140738562228228,11272300855685410,11272303013198523],[158330748174336,140738629206020,-11272303013198523,-11272300855685410],[158330748174336,158329741508612,-49039814402932400,-49039811112013498],[158330748174336,158330815283204,-45089209011534280,-45089206464001460],[158330748174336,193514046488580,-22544604485800118,-22544603251967752],[158330748174336,193515120263172,-22544604485800118,-22544603251967752],[158330748174336,2305843009213693956,22544603247468479,22544604490299392],[158330748174336,2305843010287468548,22544603247468479,22544604490299392],[158330748174336,2306001338888093700,22544603247468479,22544604490299392],[158330748174336,2306001339961868292,22544603247468479,22544604490299392],[158330748174336,4611686018427387908,-22544604490299392,-22544603247468479],[158330748174336,4611686019501162500,-22544604490299392,-22544603247468479],[158330748174336,4611844348101787652,-22544604490299392,-22544603247468479],[158330748174336,4611844349175562244,-22544604490299392,-22544603247468479],[158330748174341,17592186044417,13247603786059568,13247605102529449],[158330748174341,17592186044420,-13247605102529449,-13247603786059568],[158330748174341,17593259819009,13247603786059568,13247605102529449],[158330748174341,17593259819012,-13247605102529449,-13247603786059568],[158330748174341,140737488355329,-13247605102529449,-13247603786059568],[158330748174341,140737488355332,13247603786059568,13247605102529449],[158330748174341,140738562129921,-13247605102529449,-13247603786059568],[158330748174341,140738562129924,13247603786059568,13247605102529449],[158330748174348,17592186044420,-13247605075396206,-13247603813192808],[158330748174348,17592186044424,13247603813192808,13247605075396206],[158330748174348,17593259819012,-13247605075396206,-13247603813192808],[158330748174348,17593259819016,13247603813192808,13247605075396206],[158330748174348,140737488355332,13247603813192808,13247605075396206],[158330748174348,140737488355336,-13247605075396206,-13247603813192808],[158330748174348,140738562129924,13247603813192808,13247605075396206],[158330748174348,140738562129928,-13247605075396206,-13247603813192808],[158330748272640,1140981768,49039811112013498,49039814402932400],[158330748272640,17592186208260,-13247605075396206,-13247603813192808],[158330748272640,17592186208264,1975301908323058,1975303111382023],[158330748272640,17592253284360,-37767512400416486,-37767509245645481],[158330748272640,17593259819012,13247603813192808,13247605075396206],[158330748272640,17593259819016,-1975303111382023,-1975301908323058],[158330748272640,17593326895112,-11272305157286919,-11272298711597012],[158330748272640,140737488519172,13247603813192808,13247605075396206],[158330748272640,140737488519176,-1975303111382023,-1975301908323058],[158330748272640,140737555595272,-11272305157286919,-11272298711597012],[158330748272640,140738562129924,-13247605075396206,-13247603813192808],[158330748272640,140738562129928,1975301908323058,1975303111382023],[158330748272640,140738629206024,-37767512400416486,-37767509245645481],[158330748272640,158329741508616,49039811112013498,49039814402932400],[158330748305412,17592186044420,1975301908323058,1975303111382023],[158330748305412,17592186077184,11272300855685410,11272303013198523],[158330748305412,17592186175488,-13247605075396206,-13247603813192808],[158330748305412,17593259819012,13247603813192808,13247605075396206],[158330748305412,17593259917316,-11272303013198523,-11272300855685410],[158330748305412,17593259950080,-1975303111382023,-1975301908323058],[158330748305412,140737488355332,-1975303111382023,-1975301908323058],[158330748305412,140737488388096,-11272303013198523,-11272300855685410],[158330748305412,140737488486400,13247603813192808,13247605075396206],[158330748305412,140738562129924,-13247605075396206,-13247603813192808],[158330748305412,140738562228228,11272300855685410,11272303013198523],[158330748305412,140738562260992,1975301908323058,1975303111382023],[158330748305416,17592186044424,-1975303111382023,-1975301908323058],[158330748305416,17592186175488,1975301908323058,1975303111382023],[158330748305416,17593259819016,-1975303111382023,-1975301908323058],[158330748305416,17593259950080,1975301908323058,1975303111382023],[158330748305416,140737488355336,1975301908323058,1975303111382023],[158330748305416,140737488486400,-1975303111382023,-1975301908323058],[158330748305416,140738562129928,1975301908323058,1975303111382023],[158330748305416,140738562260992,-1975303111382023,-1975301908323058],[158330815283204,67108868,-45089209011534280,-45089206464001460],[158330815283204,67141632,45089206464001460,45089209011534280],[158330815283204,17592186044420,18593996379768482,18594001318589224],[158330815283204,17592186077184,-18594001318589224,-18593996379768482],[158330815283204,17593326895108,-26495210084232978,-26495207692945056],[158330815283204,17593326927872,26495207692945056,26495210084232978],[158330815283204,140737488355332,26495207692945056,26495210084232978],[158330815283204,140737488388096,-26495210084232978,-26495207692945056],[158330815283204,140738629206020,-18594001318589224,-18593996379768482],[158330815283204,140738629238784,18593996379768482,18594001318589224],[158330815283204,158330748141572,45089206464001460,45089209011534280],[158330815283204,158330748174336,-45089209011534280,-45089206464001460],[158330815381512,1073741832,-45089209011534280,-45089206464001460],[158330815381512,1073872896,45089206464001460,45089209011534280],[158330815381512,17592186044424,26495207692945056,26495210084232978],[158330815381512,17592186175488,-26495210084232978,-26495207692945056],[158330815381512,17593326895112,-18594001318589224,-18593996379768482],[158330815381512,17593327026176,18593996379768482,18594001318589224],[158330815381512,140737488355336,18593996379768482,18594001318589224],[158330815381512,140737488486400,-18594001318589224,-18593996379768482],[158330815381512,140738629206024,-26495210084232978,-26495207692945056],[158330815381512,140738629337088,26495207692945056,26495210084232978],[158330815381512,158329741508616,45089206464001460,45089209011534280],[158330815381512,158329741639680,-45089209011534280,-45089206464001460],[175921927553032,17592186175488,24519905262899363,24519907494573587],[175921927553032,17592253284360,24519905262899363,24519907494573587],[175921927553032,193514046619648,24519905262899363,24519907494573587],[175921927553032,193514113728520,24519905262899363,24519907494573587],[175921927684096,17592186044424,-24519907494573587,-24519905262899363],[175921927684096,17592253284360,-24519907494573587,-24519905262899363],[175921927684096,193514046488584,-24519907494573587,-24519905262899363],[175921927684096,193514113728520,-24519907494573587,-24519905262899363],[175922128879744,17592186568704,-1975303161294799,-1975301858410281],[175922128879744,17592455004288,-1975303161294799,-1975301858410281],[175922128879744,193514047012864,-1975303161294799,-1975301858410281],[175922128879744,193514315448448,-1975303161294799,-1975301858410281],[175922129403904,17592186044544,1975301858410281,1975303161294799],[175922129403904,17592455004288,1975301858410281,1975303161294799],[175922129403904,193514046488704,1975301858410281,1975303161294799],[175922129403904,193514315448448,1975301858410281,1975303161294799],[175922934185988,17592186077184,-22544604485800118,-22544603251967752],[175922934185988,17593259819012,-22544604485800118,-22544603251967752],[175922934185988,193514046521344,-22544604485800118,-22544603251967752],[175922934185988,193515120263172,-22544604485800118,-22544603251967752],[175922934218752,17592186044420,22544603251967752,22544604485800118],[175922934218752,17593259819012,22544603251967752,22544604485800118],[175922934218752,193514046488580,22544603251967752,22544604485800118],[175922934218752,193515120263172,22544603251967752,22544604485800118],[193514046488580,17593259819012,22544603251967752,22544604485800118],[193514046488580,35185445863428,-22544604485800118,-22544603251967752],[193514046488580,158330748174336,-22544604485800118,-22544603251967752],[193514046488580,175922934218752,22544603251967752,22544604485800118],[193514046488584,17592253284360,-24519907494573587,-24519905262899363],[193514046488584,35184439328776,22544603251967752,22544604485800118],[193514046488584,52776625373184,1975301858410281,1975303161294799],[193514046488584,140737555595272,1975301858410281,1975303161294799],[193514046488584,158329741639680,22544603251967752,22544604485800118],[193514046488584,175921927684096,-24519907494573587,-24519905262899363],[193514046488704,17592455004288,1975301858410281,1975303161294799],[193514046488704,52776827092992,-1975303161294799,-1975301858410281],[193514046488704,140737757315200,-1975303161294799,-1975301858410281],[193514046488704,175922129403904,1975301858410281,1975303161294799],[193514046521344,17593259819012,-22544604485800118,-22544603251967752],[193514046521344,35185445863428,22544603251967752,22544604485800118],[193514046521344,158330748141572,22544603251967752,22544604485800118],[193514046521344,175922934185988,-22544604485800118,-22544603251967752],[193514046619648,17592253284360,24519905262899363,24519907494573587],[193514046619648,35184439328776,-22544604485800118,-22544603251967752],[193514046619648,52776625242120,-1975303161294799,-1975301858410281],[193514046619648,140737555595272,-1975303161294799,-1975301858410281],[193514046619648,158329741508616,-22544604485800118,-22544603251967752],[193514046619648,175921927553032,24519905262899363,24519907494573587],[193514047012864,17592455004288,-1975303161294799,-1975301858410281],[193514047012864,52776826568832,1975301858410281,1975303161294799],[193514047012864,140737757315200,1975301858410281,1975303161294799],[193514047012864,175922128879744,-1975303161294799,-1975301858410281],[193514113728520,17592186044424,-24519907494573587,-24519905262899363],[193514113728520,17592186175488,24519905262899363,24519907494573587],[193514113728520,35184372088840,22544603251967752,22544604485800118],[193514113728520,35184372219904,-22544604485800118,-22544603251967752],[193514113728520,52776625242120,-1975303161294799,-1975301858410281],[193514113728520,52776625373184,1975301858410281,1975303161294799],[193514113728520,140737488355336,1975301858410281,1975303161294799],[193514113728520,140737488486400,-1975303161294799,-1975301858410281],[193514113728520,158329741508616,-22544604485800118,-22544603251967752],[193514113728520,158329741639680,22544603251967752,22544604485800118],[193514113728520,175921927553032,24519905262899363,24519907494573587],[193514113728520,175921927684096,-24519907494573587,-24519905262899363],[193514315448448,17592186044544,1975301858410281,1975303161294799],[193514315448448,17592186568704,-1975303161294799,-1975301858410281],[193514315448448,52776826568832,1975301858410281,1975303161294799],[193514315448448,52776827092992,-1975303161294799,-1975301858410281],[193514315448448,140737488355456,-1975303161294799,-1975301858410281],[193514315448448,140737488879616,1975301858410281,1975303161294799],[193514315448448,175922128879744,-1975303161294799,-1975301858410281],[193514315448448,175922129403904,1975301858410281,1975303161294799],[193515120263172,17592186044420,22544603251967752,22544604485800118],[193515120263172,17592186077184,-22544604485800118,-22544603251967752],[193515120263172,35184372088836,-22544604485800118,-22544603251967752],[193515120263172,35184372121600,22544603251967752,22544604485800118],[193515120263172,158330748141572,22544603251967752,22544604485800118],[193515120263172,158330748174336,-22544604485800118,-22544603251967752],[193515120263172,175922934185988,-22544604485800118,-22544603251967752],[193515120263172,175922934218752,22544603251967752,22544604485800118],[2305843009213693953,140738562129924,13247603745916480,13247605142672540],[2305843009213693953,2305983747775823877,13247603745916480,13247605142672540],[2305843009213693956,1073774592,1975300580344758,1975304439360326],[2305843009213693956,140737488388096,1975300020689110,1975304999015964],[2305843009213693956,140738562097152,-13247606405704134,-13247602482884872],[2305843009213693956,140738562129921,-13247605142672540,-13247603745916480],[2305843009213693956,140738562129928,-13247605102529449,-13247603786059568],[2305843009213693956,140738562260992,1975301882939439,1975303136765642],[2305843009213693956,140738629238784,-13247605070627222,-13247603817961795],[2305843009213693956,158330748174336,22544603247468479,22544604490299392],[2305843009213693956,2305843010287468548,1975300580344758,1975304439360326],[2305843009213693956,2305983746702082052,1975300020689110,1975304999015964],[2305843009213693956,2305983747775791108,-13247606405704134,-13247602482884872],[2305843009213693956,2305983747775823877,-13247605142672540,-13247603745916480],[2305843009213693956,2305983747775823884,-13247605102529449,-13247603786059568],[2305843009213693956,2305983747775954948,1975301882939439,1975303136765642],[2305843009213693956,2305983747842932740,-13247605070627222,-13247603817961795],[2305843009213693956,2306001339961868292,22544603247468479,22544604490299392],[2305843009213693956,4611826756989517824,1975301853739043,1975303165966039],[2305843009213693956,6917669766203211780,1975301853739043,1975303165966039],[2305843009213693956,1180591761455973433344,22544603165507976,22544604572259892],[2305843009213693956,1182897604465187127300,22544603165507976,22544604572259892],[2305843009213693960,140738562129924,13247603786059568,13247605102529449],[2305843009213693960,140738562260992,-1975303136765642,-1975301882939439],[2305843009213693960,140738629337088,13247603817961795,13247605070627222],[2305843009213693960,158329741639680,-22544604490299392,-22544603247468479],[2305843009213693960,2305983747775823884,13247603786059568,13247605102529449],[2305843009213693960,2305983747775954952,-1975303136765642,-1975301882939439],[2305843009213693960,2305983747843031048,13247603817961795,13247605070627222],[2305843009213693960,2306001338955333640,-22544604490299392,-22544603247468479],[2305843009213693960,4611703610680672256,-1975303165966039,-1975301853739043],[2305843009213693960,6917546619894366216,-1975303165966039,-1975301853739043],[2305843009213726720,1073741828,-1975304439360326,-1975300580344758],[2305843009213726720,140737488355332,-1975304999015964,-1975300020689110],[2305843009213726720,140738562228228,11272300803168551,11272303065715385],[2305843009213726720,140738629206020,13247603817961795,13247605070627222],[2305843009213726720,158330748141572,-22544604490299392,-22544603247468479],[2305843009213726720,2305843010287468548,-1975304439360326,-1975300580344758],[2305843009213726720,2305983746702082052,-1975304999015964,-1975300020689110],[2305843009213726720,2305983747775954948,11272300803168551,11272303065715385],[2305843009213726720,2305983747842932740,13247603817961795,13247605070627222],[2305843009213726720,2306001339961868292,-22544604490299392,-22544603247468479],[2305843009213726720,4611826756989485060,-1975303165966039,-1975301853739043],[2305843009213726720,6917669766203211780,-1975303165966039,-1975301853739043],[2305843009213726720,1180591761455973400580,-22544604572259892,-22544603165507976],[2305843009213726720,1182897604465187127300,-22544604572259892,-22544603165507976],[2305843009213726725,140738562129921,-13247605142672540,-13247603745916480],[2305843009213726725,140738562129924,13247603745916480,13247605142672540],[2305843009213726725,2305983747775791105,13247603745916480,13247605142672540],[2305843009213726725,2305983747775791108,-13247605142672540,-13247603745916480],[2305843009213726732,140738562129924,13247603786059568,13247605102529449],[2305843009213726732,140738562129928,-13247605102529449,-13247603786059568],[2305843009213726732,2305983747775791108,-13247605102529449,-13247603786059568],[2305843009213726732,2305983747775791112,13247603786059568,13247605102529449],[2305843009213825024,140738562129924,-13247605102529449,-13247603786059568],[2305843009213825024,140738562129928,1975301882939439,1975303136765642],[2305843009213825024,140738629206024,-13247605070627222,-13247603817961795],[2305843009213825024,158329741508616,22544603247468479,22544604490299392],[2305843009213825024,2305983747775954948,-13247605102529449,-13247603786059568],[2305843009213825024,2305983747775954952,1975301882939439,1975303136765642],[2305843009213825024,2305983747843031048,-13247605070627222,-13247603817961795],[2305843009213825024,2306001338955333640,22544603247468479,22544604490299392],[2305843009213825024,4611703610680541192,1975301853739043,1975303165966039],[2305843009213825024,6917546619894366216,1975301853739043,1975303165966039],[2305843009213857796,140738562129924,-13247605102529449,-13247603786059568],[2305843009213857796,140738562228228,11272300803168551,11272303065715385],[2305843009213857796,140738562260992,1975301882939439,1975303136765642],[2305843009213857796,2305983747775791108,1975301882939439,1975303136765642],[2305843009213857796,2305983747775823872,11272300803168551,11272303065715385],[2305843009213857796,2305983747775922176,-13247605102529449,-13247603786059568],[2305843009213857800,140738562129928,1975301882939439,1975303136765642],[2305843009213857800,140738562260992,-1975303136765642,-1975301882939439],[2305843009213857800,2305983747775791112,-1975303136765642,-1975301882939439],[2305843009213857800,2305983747775922176,1975301882939439,1975303136765642],[2305843009280835588,140738629206020,-11272303065715385,-11272300803168551],[2305843009280835588,140738629238784,11272300803168551,11272303065715385],[2305843009280835588,2305983747775791108,11272300803168551,11272303065715385],[2305843009280835588,2305983747775823872,-11272303065715385,-11272300803168551],[2305843009280933896,140738629206024,-13247605070627222,-13247603817961795],[2305843009280933896,140738629337088,13247603817961795,13247605070627222],[2305843009280933896,158329741508616,22544603247468479,22544604490299392],[2305843009280933896,158329741639680,-22544604490299392,-22544603247468479],[2305843009280933896,2305983747775791112,13247603817961795,13247605070627222],[2305843009280933896,2305983747775922176,-13247605070627222,-13247603817961795],[2305843009280933896,2306001338888093704,-22544604490299392,-22544603247468479],[2305843009280933896,2306001338888224768,22544603247468479,22544604490299392],[2305843009280933896,4611703610680541192,1975301853739043,1975303165966039],[2305843009280933896,4611703610680672256,-1975303165966039,-1975301853739043],[2305843009280933896,6917546619827126280,-1975303165966039,-1975301853739043],[2305843009280933896,6917546619827257344,1975301853739043,1975303165966039],[2305843010287435776,140737488355332,13247602482884872,13247606405704134],[2305843010287435776,2305983747775791108,13247602482884872,13247606405704134],[2305843010287468545,140737488355332,13247603745916480,13247605142672540],[2305843010287468545,140737488388101,13247603745916480,13247605142672540],[2305843010287468545,2305983747775791108,13247603745916480,13247605142672540],[2305843010287468545,2305983747775823877,13247603745916480,13247605142672540],[2305843010287468548,1073741828,-1975304439360326,-1975300580344758],[2305843010287468548,1073774592,1975300580344758,1975304439360326],[2305843010287468548,140737488355329,-13247605142672540,-13247603745916480],[2305843010287468548,140737488355336,-13247605102529449,-13247603786059568],[2305843010287468548,140737488388101,-13247605142672540,-13247603745916480],[2305843010287468548,140737488388108,-13247605102529449,-13247603786059568],[2305843010287468548,140737488486400,13247603786059568,13247605102529449],[2305843010287468548,140737488519172,13247603786059568,13247605102529449],[2305843010287468548,140738629206020,24519905253728852,24519907503744101],[2305843010287468548,140738629238784,-24519907503744101,-24519905253728852],[2305843010287468548,158330748141572,-22544604490299392,-22544603247468479],[2305843010287468548,158330748174336,22544603247468479,22544604490299392],[2305843010287468548,2305843009213693956,1975300580344758,1975304439360326],[2305843010287468548,2305843009213726720,-1975304439360326,-1975300580344758],[2305843010287468548,2305983746769158148,-24519907503744101,-24519905253728852],[2305843010287468548,2305983746769190912,24519905253728852,24519907503744101],[2305843010287468548,2305983747775791105,-13247605142672540,-13247603745916480],[2305843010287468548,2305983747775791112,-13247605102529449,-13247603786059568],[2305843010287468548,2305983747775823877,-13247605142672540,-13247603745916480],[2305843010287468548,2305983747775823884,-13247605102529449,-13247603786059568],[2305843010287468548,2305983747775922176,13247603786059568,13247605102529449],[2305843010287468548,2305983747775954948,13247603786059568,13247605102529449],[2305843010287468548,2306001338888093700,22544603247468479,22544604490299392],[2305843010287468548,2306001338888126464,-22544604490299392,-22544603247468479],[2305843010287468548,4611826756989485060,-1975303165966039,-1975301853739043],[2305843010287468548,4611826756989517824,1975301853739043,1975303165966039],[2305843010287468548,6917669765129437188,1975301853739043,1975303165966039],[2305843010287468548,6917669765129469952,-1975303165966039,-1975301853739043],[2305843010287468548,1180591761455973400580,-22544604572259892,-22544603165507976],[2305843010287468548,1180591761455973433344,22544603165507976,22544604572259892],[2305843010287468548,1182897604464113352708,22544603165507976,22544604572259892],[2305843010287468548,1182897604464113385472,-22544604572259892,-22544603165507976],[2305843010287468552,140737488355332,13247603786059568,13247605102529449],[2305843010287468552,140737488388108,13247603786059568,13247605102529449],[2305843010287468552,140737488486400,-1975303136765642,-1975301882939439],[2305843010287468552,140737488519176,-1975303136765642,-1975301882939439],[2305843010287468552,2305983747775791108,13247603786059568,13247605102529449],[2305843010287468552,2305983747775823884,13247603786059568,13247605102529449],[2305843010287468552,2305983747775922176,-1975303136765642,-1975301882939439],[2305843010287468552,2305983747775954952,-1975303136765642,-1975301882939439],[2305843010287566852,140737488388096,-11272303065715385,-11272300803168551],[2305843010287566852,140737488519172,-11272303065715385,-11272300803168551],[2305843010287566852,2305983747775823872,-11272303065715385,-11272300803168551],[2305843010287566852,2305983747775954948,-11272303065715385,-11272300803168551],[2305843010287599616,140737488355332,-1975303136765642,-1975301882939439],[2305843010287599616,140737488355336,1975301882939439,1975303136765642],[2305843010287599616,140737488519172,-1975303136765642,-1975301882939439],[2305843010287599616,140737488519176,1975301882939439,1975303136765642],[2305843010287599616,2305983747775791108,-1975303136765642,-1975301882939439],[2305843010287599616,2305983747775791112,1975301882939439,1975303136765642],[2305843010287599616,2305983747775954948,-1975303136765642,-1975301882939439],[2305843010287599616,2305983747775954952,1975301882939439,1975303136765642],[2305843010354544644,140737488388096,-13247605070627222,-13247603817961795],[2305843010354544644,140737555496964,11272300803168551,11272303065715385],[2305843010354544644,140738562129924,-24519907503744101,-24519905253728852],[2305843010354544644,2305983746769190912,-24519907503744101,-24519905253728852],[2305843010354544644,2305983747775823872,11272300803168551,11272303065715385],[2305843010354544644,2305983747842932740,-13247605070627222,-13247603817961795],[2305843010354544648,140737488486400,13247603817961795,13247605070627222],[2305843010354544648,140737555595272,13247603817961795,13247605070627222],[2305843010354544648,2305983747775922176,13247603817961795,13247605070627222],[2305843010354544648,2305983747843031048,13247603817961795,13247605070627222],[2305843010354577408,140737488355332,13247603817961795,13247605070627222],[2305843010354577408,140737555496964,-11272303065715385,-11272300803168551],[2305843010354577408,140738562129924,24519905253728852,24519907503744101],[2305843010354577408,2305983746769158148,24519905253728852,24519907503744101],[2305843010354577408,2305983747775791108,-11272303065715385,-11272300803168551],[2305843010354577408,2305983747842932740,13247603817961795,13247605070627222],[2305843010354675712,140737488355336,-13247605070627222,-13247603817961795],[2305843010354675712,140737555595272,-13247605070627222,-13247603817961795],[2305843010354675712,2305983747775791112,-13247605070627222,-13247603817961795],[2305843010354675712,2305983747843031048,-13247605070627222,-13247603817961795],[2305860601466847240,140737488486400,-22544604490299392,-22544603247468479],[2305860601466847240,140737555595272,-22544604490299392,-22544603247468479],[2305860601466847240,2306001338888224768,-22544604490299392,-22544603247468479],[2305860601466847240,2306001338955333640,-22544604490299392,-22544603247468479],[2305860601466847240,4611686018427518976,-1975303165966039,-1975301853739043],[2305860601466847240,4611686018494627848,-1975303165966039,-1975301853739043],[2305860601466847240,6917546619827257344,-1975303165966039,-1975301853739043],[2305860601466847240,6917546619894366216,-1975303165966039,-1975301853739043],[2305860601466978304,140737488355336,22544603247468479,22544604490299392],[2305860601466978304,140737555595272,22544603247468479,22544604490299392],[2305860601466978304,2306001338888093704,22544603247468479,22544604490299392],[2305860601466978304,2306001338955333640,22544603247468479,22544604490299392],[2305860601466978304,4611686018427387912,1975301853739043,1975303165966039],[2305860601466978304,4611686018494627848,1975301853739043,1975303165966039],[2305860601466978304,6917546619827126280,1975301853739043,1975303165966039],[2305860601466978304,6917546619894366216,1975301853739043,1975303165966039],[2305860602473480196,140737488388096,24519905253728852,24519907503744101],[2305860602473480196,140738562129924,24519905253728852,24519907503744101],[2305860602473480196,2306001338888126464,24519905253728852,24519907503744101],[2305860602473480196,2306001339961868292,24519905253728852,24519907503744101],[2305860602473512960,140737488355332,-24519907503744101,-24519905253728852],[2305860602473512960,140738562129924,-24519907503744101,-24519905253728852],[2305860602473512960,2306001338888093700,-24519907503744101,-24519905253728852],[2305860602473512960,2306001339961868292,-24519907503744101,-24519905253728852],[2305983746702082052,140737488355332,-1975304999015964,-1975300020689110],[2305983746702082052,140737488388096,1975300020689110,1975304999015964],[2305983746702082052,2305843009213693956,1975300020689110,1975304999015964],[2305983746702082052,2305843009213726720,-1975304999015964,-1975300020689110],[2305983746769158148,140738562129924,24519905253728852,24519907503744101],[2305983746769158148,140738629238784,-24519907503744101,-24519905253728852],[2305983746769158148,2305843010287468548,-24519907503744101,-24519905253728852],[2305983746769158148,2305843010354577408,24519905253728852,24519907503744101],[2305983746769190912,140738562129924,-24519907503744101,-24519905253728852],[2305983746769190912,140738629206020,24519905253728852,24519907503744101],[2305983746769190912,2305843010287468548,24519905253728852,24519907503744101],[2305983746769190912,2305843010354544644,-24519907503744101,-24519905253728852],[2305983747775791105,140737488388101,-13247605142672540,-13247603745916480],[2305983747775791105,140738562129924,13247603745916480,13247605142672540],[2305983747775791105,2305843009213726725,13247603745916480,13247605142672540],[2305983747775791105,2305843010287468548,-13247605142672540,-13247603745916480],[2305983747775791108,17592186077184,-1975303165966039,-1975301853739043],[2305983747775791108,17593259819012,-1975303165966039,-1975301853739043],[2305983747775791108,140737488355332,13247602482884872,13247606405704134],[2305983747775791108,140737488388101,13247603745916480,13247605142672540],[2305983747775791108,140737488388108,13247603786059568,13247605102529449],[2305983747775791108,140737488519172,-1975303136765642,-1975301882939439],[2305983747775791108,140737555496964,-11272303065715385,-11272300803168551],[2305983747775791108,140738562097152,-13247606405704134,-13247602482884872],[2305983747775791108,140738562129921,-13247605142672540,-13247603745916480],[2305983747775791108,140738562129928,-13247605102529449,-13247603786059568],[2305983747775791108,140738562260992,1975301882939439,1975303136765642],[2305983747775791108,140738629238784,11272300803168551,11272303065715385],[2305983747775791108,2305843009213693956,-13247606405704134,-13247602482884872],[2305983747775791108,2305843009213726725,-13247605142672540,-13247603745916480],[2305983747775791108,2305843009213726732,-13247605102529449,-13247603786059568],[2305983747775791108,2305843009213857796,1975301882939439,1975303136765642],[2305983747775791108,2305843009280835588,11272300803168551,11272303065715385],[2305983747775791108,2305843010287435776,13247602482884872,13247606405704134],[2305983747775791108,2305843010287468545,13247603745916480,13247605142672540],[2305983747775791108,2305843010287468552,13247603786059568,13247605102529449],[2305983747775791108,2305843010287599616,-1975303136765642,-1975301882939439],[2305983747775791108,2305843010354577408,-11272303065715385,-11272300803168551],[2305983747775791108,2306001338888126464,-1975303165966039,-1975301853739043],[2305983747775791108,2306001339961868292,-1975303165966039,-1975301853739043],[2305983747775791108,4611686018427420672,1975301853739043,1975303165966039],[2305983747775791108,4611686019501162500,1975301853739043,1975303165966039],[2305983747775791108,6917669765129469952,1975301853739043,1975303165966039],[2305983747775791108,6917669766203211780,1975301853739043,1975303165966039],[2305983747775791108,1180591620717411336192,22544603165507976,22544604572259892],[2305983747775791108,1180591620718485078020,22544603165507976,22544604572259892],[2305983747775791108,1182897604464113385472,22544603165507976,22544604572259892],[2305983747775791108,1182897604465187127300,22544603165507976,22544604572259892],[2305983747775791112,140737488388108,-13247605102529449,-13247603786059568],[2305983747775791112,140737488519176,1975301882939439,1975303136765642],[2305983747775791112,140737555595272,-13247605070627222,-13247603817961795],[2305983747775791112,140738562129924,13247603786059568,13247605102529449],[2305983747775791112,140738562260992,-1975303136765642,-1975301882939439],[2305983747775791112,140738629337088,13247603817961795,13247605070627222],[2305983747775791112,2305843009213726732,13247603786059568,13247605102529449],[2305983747775791112,2305843009213857800,-1975303136765642,-1975301882939439],[2305983747775791112,2305843009280933896,13247603817961795,13247605070627222],[2305983747775791112,2305843010287468548,-13247605102529449,-13247603786059568],[2305983747775791112,2305843010287599616,1975301882939439,1975303136765642],[2305983747775791112,2305843010354675712,-13247605070627222,-13247603817961795],[2305983747775823872,17592186044420,1975301853739043,1975303165966039],[2305983747775823872,17593259819012,1975301853739043,1975303165966039],[2305983747775823872,140737488519172,-11272303065715385,-11272300803168551],[2305983747775823872,140737555496964,11272300803168551,11272303065715385],[2305983747775823872,140738562228228,11272300803168551,11272303065715385],[2305983747775823872,140738629206020,-11272303065715385,-11272300803168551],[2305983747775823872,2305843009213857796,11272300803168551,11272303065715385],[2305983747775823872,2305843009280835588,-11272303065715385,-11272300803168551],[2305983747775823872,2305843010287566852,-11272303065715385,-11272300803168551],[2305983747775823872,2305843010354544644,11272300803168551,11272303065715385],[2305983747775823872,2306001338888093700,1975301853739043,1975303165966039],[2305983747775823872,2306001339961868292,1975301853739043,1975303165966039],[2305983747775823872,4611686018427387908,-1975303165966039,-1975301853739043],[2305983747775823872,4611686019501162500,-1975303165966039,-1975301853739043],[2305983747775823872,6917669765129437188,-1975303165966039,-1975301853739043],[2305983747775823872,6917669766203211780,-1975303165966039,-1975301853739043],[2305983747775823872,1180591620717411303428,-22544604572259892,-22544603165507976],[2305983747775823872,1180591620718485078020,-22544604572259892,-22544603165507976],[2305983747775823872,1182897604464113352708,-22544604572259892,-22544603165507976],[2305983747775823872,1182897604465187127300,-22544604572259892,-22544603165507976],[2305983747775823877,140737488355329,-13247605142672540,-13247603745916480],[2305983747775823877,140737488355332,13247603745916480,13247605142672540],[2305983747775823877,140738562129921,-13247605142672540,-13247603745916480],[2305983747775823877,140738562129924,13247603745916480,13247605142672540],[2305983747775823877,2305843009213693953,13247603745916480,13247605142672540],[2305983747775823877,2305843009213693956,-13247605142672540,-13247603745916480],[2305983747775823877,2305843010287468545,13247603745916480,13247605142672540],[2305983747775823877,2305843010287468548,-13247605142672540,-13247603745916480],[2305983747775823884,140737488355332,13247603786059568,13247605102529449],[2305983747775823884,140737488355336,-13247605102529449,-13247603786059568],[2305983747775823884,140738562129924,13247603786059568,13247605102529449],[2305983747775823884,140738562129928,-13247605102529449,-13247603786059568],[2305983747775823884,2305843009213693956,-13247605102529449,-13247603786059568],[2305983747775823884,2305843009213693960,13247603786059568,13247605102529449],[2305983747775823884,2305843010287468548,-13247605102529449,-13247603786059568],[2305983747775823884,2305843010287468552,13247603786059568,13247605102529449],[2305983747775922176,140737488519172,13247603786059568,13247605102529449],[2305983747775922176,140737488519176,-1975303136765642,-1975301882939439],[2305983747775922176,140737555595272,13247603817961795,13247605070627222],[2305983747775922176,140738562129924,-13247605102529449,-13247603786059568],[2305983747775922176,140738562129928,1975301882939439,1975303136765642],[2305983747775922176,140738629206024,-13247605070627222,-13247603817961795],[2305983747775922176,2305843009213857796,-13247605102529449,-13247603786059568],[2305983747775922176,2305843009213857800,1975301882939439,1975303136765642],[2305983747775922176,2305843009280933896,-13247605070627222,-13247603817961795],[2305983747775922176,2305843010287468548,13247603786059568,13247605102529449],[2305983747775922176,2305843010287468552,-1975303136765642,-1975301882939439],[2305983747775922176,2305843010354544648,13247603817961795,13247605070627222],[2305983747775954948,140737488355332,-1975303136765642,-1975301882939439],[2305983747775954948,140737488388096,-11272303065715385,-11272300803168551],[2305983747775954948,140737488486400,13247603786059568,13247605102529449],[2305983747775954948,140738562129924,-13247605102529449,-13247603786059568],[2305983747775954948,140738562228228,11272300803168551,11272303065715385],[2305983747775954948,140738562260992,1975301882939439,1975303136765642],[2305983747775954948,2305843009213693956,1975301882939439,1975303136765642],[2305983747775954948,2305843009213726720,11272300803168551,11272303065715385],[2305983747775954948,2305843009213825024,-13247605102529449,-13247603786059568],[2305983747775954948,2305843010287468548,13247603786059568,13247605102529449],[2305983747775954948,2305843010287566852,-11272303065715385,-11272300803168551],[2305983747775954948,2305843010287599616,-1975303136765642,-1975301882939439],[2305983747775954952,140737488355336,1975301882939439,1975303136765642],[2305983747775954952,140737488486400,-1975303136765642,-1975301882939439],[2305983747775954952,140738562129928,1975301882939439,1975303136765642],[2305983747775954952,140738562260992,-1975303136765642,-1975301882939439],[2305983747775954952,2305843009213693960,-1975303136765642,-1975301882939439],[2305983747775954952,2305843009213825024,1975301882939439,1975303136765642],[2305983747775954952,2305843010287468552,-1975303136765642,-1975301882939439],[2305983747775954952,2305843010287599616,1975301882939439,1975303136765642],[2305983747842932740,140737488355332,13247603817961795,13247605070627222],[2305983747842932740,140737488388096,-13247605070627222,-13247603817961795],[2305983747842932740,140738629206020,13247603817961795,13247605070627222],[2305983747842932740,140738629238784,-13247605070627222,-13247603817961795],[2305983747842932740,2305843009213693956,-13247605070627222,-13247603817961795],[2305983747842932740,2305843009213726720,13247603817961795,13247605070627222],[2305983747842932740,2305843010354544644,-13247605070627222,-13247603817961795],[2305983747842932740,2305843010354577408,13247603817961795,13247605070627222],[2305983747843031048,140737488355336,-13247605070627222,-13247603817961795],[2305983747843031048,140737488486400,13247603817961795,13247605070627222],[2305983747843031048,140738629206024,-13247605070627222,-13247603817961795],[2305983747843031048,140738629337088,13247603817961795,13247605070627222],[2305983747843031048,2305843009213693960,13247603817961795,13247605070627222],[2305983747843031048,2305843009213825024,-13247605070627222,-13247603817961795],[2305983747843031048,2305843010354544648,13247603817961795,13247605070627222],[2305983747843031048,2305843010354675712,-13247605070627222,-13247603817961795],[2306001338888093700,17593259819012,1975301853739043,1975303165966039],[2306001338888093700,140738562129924,-24519907503744101,-24519905253728852],[2306001338888093700,158330748174336,22544603247468479,22544604490299392],[2306001338888093700,2305843010287468548,22544603247468479,22544604490299392],[2306001338888093700,2305860602473512960,-24519907503744101,-24519905253728852],[2306001338888093700,2305983747775823872,1975301853739043,1975303165966039],[2306001338888093704,140737555595272,22544603247468479,22544604490299392],[2306001338888093704,158329741639680,-22544604490299392,-22544603247468479],[2306001338888093704,2305843009280933896,-22544604490299392,-22544603247468479],[2306001338888093704,2305860601466978304,22544603247468479,22544604490299392],[2306001338888126464,17593259819012,-1975303165966039,-1975301853739043],[2306001338888126464,140738562129924,24519905253728852,24519907503744101],[2306001338888126464,158330748141572,-22544604490299392,-22544603247468479],[2306001338888126464,2305843010287468548,-22544604490299392,-22544603247468479],[2306001338888126464,2305860602473480196,24519905253728852,24519907503744101],[2306001338888126464,2305983747775791108,-1975303165966039,-1975301853739043],[2306001338888224768,140737555595272,-22544604490299392,-22544603247468479],[2306001338888224768,158329741508616,22544603247468479,22544604490299392],[2306001338888224768,2305843009280933896,22544603247468479,22544604490299392],[2306001338888224768,2305860601466847240,-22544604490299392,-22544603247468479],[2306001338955333640,140737488355336,22544603247468479,22544604490299392],[2306001338955333640,140737488486400,-22544604490299392,-22544603247468479],[2306001338955333640,158329741508616,22544603247468479,22544604490299392],[2306001338955333640,158329741639680,-22544604490299392,-22544603247468479],[2306001338955333640,2305843009213693960,-22544604490299392,-22544603247468479],[2306001338955333640,2305843009213825024,22544603247468479,22544604490299392],[2306001338955333640,2305860601466847240,-22544604490299392,-22544603247468479],[2306001338955333640,2305860601466978304,22544603247468479,22544604490299392],[2306001339961868292,17592186044420,1975301853739043,1975303165966039],[2306001339961868292,17592186077184,-1975303165966039,-1975301853739043],[2306001339961868292,140737488355332,-24519907503744101,-24519905253728852],[2306001339961868292,140737488388096,24519905253728852,24519907503744101],[2306001339961868292,158330748141572,-22544604490299392,-22544603247468479],[2306001339961868292,158330748174336,22544603247468479,22544604490299392],[2306001339961868292,2305843009213693956,22544603247468479,22544604490299392],[2306001339961868292,2305843009213726720,-22544604490299392,-22544603247468479],[2306001339961868292,2305860602473480196,24519905253728852,24519907503744101],[2306001339961868292,2305860602473512960,-24519907503744101,-24519905253728852],[2306001339961868292,2305983747775791108,-1975303165966039,-1975301853739043],[2306001339961868292,2305983747775823872,1975301853739043,1975303165966039],[4611686018427387906,17592253284360,13247603745916480,13247605142672540],[4611686018427387906,4611703610680672266,13247603745916480,13247605142672540],[4611686018427387908,17592253284360,13247603786059568,13247605102529449],[4611686018427387908,17592253317120,-1975303136765642,-1975301882939439],[4611686018427387908,17593326927872,13247603817961795,13247605070627222],[4611686018427387908,158330748174336,-22544604490299392,-22544603247468479],[4611686018427387908,2305983747775823872,-1975303165966039,-1975301853739043],[4611686018427387908,4611703610680672268,13247603786059568,13247605102529449],[4611686018427387908,4611703610680705028,-1975303136765642,-1975301882939439],[4611686018427387908,4611703611754315780,13247603817961795,13247605070627222],[4611686018427387908,4611844349175562244,-22544604490299392,-22544603247468479],[4611686018427387908,6917669766203211780,-1975303165966039,-1975301853739043],[4611686018427387912,67239936,1975300580344758,1975304439360326],[4611686018427387912,17592186175488,1975300020689110,1975304999015964],[4611686018427387912,17592253153280,-13247606405704134,-13247602482884872],[4611686018427387912,17592253284354,-13247605142672540,-13247603745916480],[4611686018427387912,17592253284356,-13247605102529449,-13247603786059568],[4611686018427387912,17592253284480,-13247605129676795,-13247603758912222],[4611686018427387912,17592253317120,1975301882939439,1975303136765642],[4611686018427387912,17592253808640,1975301823150576,1975303196554503],[4611686018427387912,17592521719808,-13247605134312055,-13247603754276960],[4611686018427387912,17593327026176,-13247605070627222,-13247603817961795],[4611686018427387912,52776625373184,22544603189358414,22544604548409457],[4611686018427387912,158329741639680,22544603247468479,22544604490299392],[4611686018427387912,2305860601466978304,1975301853739043,1975303165966039],[4611686018427387912,4611686018494627848,1975300580344758,1975304439360326],[4611686018427387912,4611703610613563400,1975300020689110,1975304999015964],[4611686018427387912,4611703610680541192,-13247606405704134,-13247602482884872],[4611686018427387912,4611703610680672266,-13247605142672540,-13247603745916480],[4611686018427387912,4611703610680672268,-13247605102529449,-13247603786059568],[4611686018427387912,4611703610680672392,-13247605129676795,-13247603758912222],[4611686018427387912,4611703610680705032,1975301882939439,1975303136765642],[4611686018427387912,4611703610681196552,1975301823150576,1975303196554503],[4611686018427387912,4611703610949107720,-13247605134312055,-13247603754276960],[4611686018427387912,4611703611754414088,-13247605070627222,-13247603817961795],[4611686018427387912,4611738795052761096,22544603189358414,22544604548409457],[4611686018427387912,4611844348169027592,22544603247468479,22544604490299392],[4611686018427387912,6917546619894366216,1975301853739043,1975303165966039],[4611686018427387912,36893505739672387584,1975301826672296,1975303193032786],[4611686018427387912,41505191758099775496,1975301826672296,1975303193032786],[4611686018427387912,2361183259027075891200,22544603165507976,22544604572259892],[4611686018427387912,2365794945045503279112,22544603165507976,22544604572259892],[4611686018427388032,17592253284360,13247603758912222,13247605129676795],[4611686018427388032,17592253808640,-1975303196554503,-1975301823150576],[4611686018427388032,17592522113024,13247603754276960,13247605134312055],[4611686018427388032,52776827092992,-22544604548409457,-22544603189358414],[4611686018427388032,4611703610680672392,13247603758912222,13247605129676795],[4611686018427388032,4611703610681196672,-1975303196554503,-1975301823150576],[4611686018427388032,4611703610949501056,13247603754276960,13247605134312055],[4611686018427388032,4611738795254481024,-22544604548409457,-22544603189358414],[4611686018427388032,36893523332060151808,-1975303193032786,-1975301826672296],[4611686018427388032,41505209350487539840,-1975303193032786,-1975301826672296],[4611686018427420672,17592253284356,1975301882939439,1975303136765642],[4611686018427420672,17592253284360,-13247605102529449,-13247603786059568],[4611686018427420672,17593326895108,-13247605070627222,-13247603817961795],[4611686018427420672,158330748141572,22544603247468479,22544604490299392],[4611686018427420672,2305983747775791108,1975301853739043,1975303165966039],[4611686018427420672,4611703610680705028,1975301882939439,1975303136765642],[4611686018427420672,4611703610680705032,-13247605102529449,-13247603786059568],[4611686018427420672,4611703611754315780,-13247605070627222,-13247603817961795],[4611686018427420672,4611844349175562244,22544603247468479,22544604490299392],[4611686018427420672,6917669766203211780,1975301853739043,1975303165966039],[4611686018427518976,67108872,-1975304439360326,-1975300580344758],[4611686018427518976,17592186044424,-1975304999015964,-1975300020689110],[4611686018427518976,17592253186056,11272300803168551,11272303065715385],[4611686018427518976,17592253677576,11272300730744752,11272303138139186],[4611686018427518976,17592521588744,13247603754276960,13247605134312055],[4611686018427518976,17593326895112,13247603817961795,13247605070627222],[4611686018427518976,52776625242120,-22544604548409457,-22544603189358414],[4611686018427518976,158329741508616,-22544604490299392,-22544603247468479],[4611686018427518976,2305860601466847240,-1975303165966039,-1975301853739043],[4611686018427518976,4611686018494627848,-1975304439360326,-1975300580344758],[4611686018427518976,4611703610613563400,-1975304999015964,-1975300020689110],[4611686018427518976,4611703610680705032,11272300803168551,11272303065715385],[4611686018427518976,4611703610681196552,11272300730744752,11272303138139186],[4611686018427518976,4611703610949107720,13247603754276960,13247605134312055],[4611686018427518976,4611703611754414088,13247603817961795,13247605070627222],[4611686018427518976,4611738795052761096,-22544604548409457,-22544603189358414],[4611686018427518976,4611844348169027592,-22544604490299392,-22544603247468479],[4611686018427518976,6917546619894366216,-1975303165966039,-1975301853739043],[4611686018427518976,36893505739672256520,-1975303193032786,-1975301826672296],[4611686018427518976,41505191758099775496,-1975303193032786,-1975301826672296],[4611686018427518976,2361183259027075760136,-22544604572259892,-22544603165507976],[4611686018427518976,2365794945045503279112,-22544604572259892,-22544603165507976],[4611686018427518986,17592253284354,-13247605142672540,-13247603745916480],[4611686018427518986,17592253284360,13247603745916480,13247605142672540],[4611686018427518986,4611703610680541186,13247603745916480,13247605142672540],[4611686018427518986,4611703610680541192,-13247605142672540,-13247603745916480],[4611686018427518988,17592253284356,-13247605102529449,-13247603786059568],[4611686018427518988,17592253284360,13247603786059568,13247605102529449],[4611686018427518988,4611703610680541188,13247603786059568,13247605102529449],[4611686018427518988,4611703610680541192,-13247605102529449,-13247603786059568],[4611686018427519112,17592253284360,13247603758912222,13247605129676795],[4611686018427519112,17592253284480,-13247605129676795,-13247603758912222],[4611686018427519112,4611703610680541192,-13247605129676795,-13247603758912222],[4611686018427519112,4611703610680541312,13247603758912222,13247605129676795],[4611686018427551748,17592253284356,1975301882939439,1975303136765642],[4611686018427551748,17592253317120,-1975303136765642,-1975301882939439],[4611686018427551748,4611703610680541188,-1975303136765642,-1975301882939439],[4611686018427551748,4611703610680573952,1975301882939439,1975303136765642],[4611686018427551752,17592253186056,11272300803168551,11272303065715385],[4611686018427551752,17592253284360,-13247605102529449,-13247603786059568],[4611686018427551752,17592253317120,1975301882939439,1975303136765642],[4611686018427551752,4611703610680541192,1975301882939439,1975303136765642],[4611686018427551752,4611703610680573952,-13247605102529449,-13247603786059568],[4611686018427551752,4611703610680672256,11272300803168551,11272303065715385],[4611686018427912192,17592253284360,-13247605129676795,-13247603758912222],[4611686018427912192,17592253284480,1975301823150576,1975303196554503],[4611686018427912192,17592521588864,-13247605134312055,-13247603754276960],[4611686018427912192,52776826568832,22544603189358414,22544604548409457],[4611686018427912192,4611703610681196552,-13247605129676795,-13247603758912222],[4611686018427912192,4611703610681196672,1975301823150576,1975303196554503],[4611686018427912192,4611703610949501056,-13247605134312055,-13247603754276960],[4611686018427912192,4611738795254481024,22544603189358414,22544604548409457],[4611686018427912192,36893523332059627648,1975301826672296,1975303193032786],[4611686018427912192,41505209350487539840,1975301826672296,1975303193032786],[4611686018428043272,17592253284360,-13247605129676795,-13247603758912222],[4611686018428043272,17592253677576,11272300730744752,11272303138139186],[4611686018428043272,17592253808640,1975301823150576,1975303196554503],[4611686018428043272,4611703610680541192,1975301823150576,1975303196554503],[4611686018428043272,4611703610680672256,11272300730744752,11272303138139186],[4611686018428043272,4611703610681065472,-13247605129676795,-13247603758912222],[4611686018428043392,17592253284480,1975301823150576,1975303196554503],[4611686018428043392,17592253808640,-1975303196554503,-1975301823150576],[4611686018428043392,4611703610680541312,-1975303196554503,-1975301823150576],[4611686018428043392,4611703610681065472,1975301823150576,1975303196554503],[4611686018494496768,17592186044424,13247602482884872,13247606405704134],[4611686018494496768,4611703610680541192,13247602482884872,13247606405704134],[4611686018494529544,17592186175488,-11272303065715385,-11272300803168551],[4611686018494529544,17592186208264,-11272303065715385,-11272300803168551],[4611686018494529544,4611703610680672256,-11272303065715385,-11272300803168551],[4611686018494529544,4611703610680705032,-11272303065715385,-11272300803168551],[4611686018494627842,17592186044424,13247603745916480,13247605142672540],[4611686018494627842,17592186175498,13247603745916480,13247605142672540],[4611686018494627842,4611703610680541192,13247603745916480,13247605142672540],[4611686018494627842,4611703610680672266,13247603745916480,13247605142672540],[4611686018494627844,17592186044424,13247603786059568,13247605102529449],[4611686018494627844,17592186077184,-1975303136765642,-1975301882939439],[4611686018494627844,17592186175500,13247603786059568,13247605102529449],[4611686018494627844,17592186208260,-1975303136765642,-1975301882939439],[4611686018494627844,4611703610680541192,13247603786059568,13247605102529449],[4611686018494627844,4611703610680573952,-1975303136765642,-1975301882939439],[4611686018494627844,4611703610680672268,13247603786059568,13247605102529449],[4611686018494627844,4611703610680705028,-1975303136765642,-1975301882939439],[4611686018494627848,67108872,-1975304439360326,-1975300580344758],[4611686018494627848,67239936,1975300580344758,1975304439360326],[4611686018494627848,17592186044418,-13247605142672540,-13247603745916480],[4611686018494627848,17592186044420,-13247605102529449,-13247603786059568],[4611686018494627848,17592186044544,-13247605129676795,-13247603758912222],[4611686018494627848,17592186077184,13247603786059568,13247605102529449],[4611686018494627848,17592186175498,-13247605142672540,-13247603745916480],[4611686018494627848,17592186175500,-13247605102529449,-13247603786059568],[4611686018494627848,17592186175624,-13247605129676795,-13247603758912222],[4611686018494627848,17592186208264,13247603786059568,13247605102529449],[4611686018494627848,17592186568704,13247603758912222,13247605129676795],[4611686018494627848,17592186699784,13247603758912222,13247605129676795],[4611686018494627848,17592521588744,24519905182726150,24519907574746803],[4611686018494627848,17592521719808,-24519907574746803,-24519905182726150],[4611686018494627848,17593326895112,24519905253728852,24519907503744101],[4611686018494627848,17593327026176,-24519907503744101,-24519905253728852],[4611686018494627848,52776625242120,-22544604548409457,-22544603189358414],[4611686018494627848,52776625373184,22544603189358414,22544604548409457],[4611686018494627848,158329741508616,-22544604490299392,-22544603247468479],[4611686018494627848,158329741639680,22544603247468479,22544604490299392],[4611686018494627848,2305860601466847240,-1975303165966039,-1975301853739043],[4611686018494627848,2305860601466978304,1975301853739043,1975303165966039],[4611686018494627848,4611686018427387912,1975300580344758,1975304439360326],[4611686018494627848,4611686018427518976,-1975304439360326,-1975300580344758],[4611686018494627848,4611703610680541186,-13247605142672540,-13247603745916480],[4611686018494627848,4611703610680541188,-13247605102529449,-13247603786059568],[4611686018494627848,4611703610680541312,-13247605129676795,-13247603758912222],[4611686018494627848,4611703610680573952,13247603786059568,13247605102529449],[4611686018494627848,4611703610680672266,-13247605142672540,-13247603745916480],[4611686018494627848,4611703610680672268,-13247605102529449,-13247603786059568],[4611686018494627848,4611703610680672392,-13247605129676795,-13247603758912222],[4611686018494627848,4611703610680705032,13247603786059568,13247605102529449],[4611686018494627848,4611703610681065472,13247603758912222,13247605129676795],[4611686018494627848,4611703610681196552,13247603758912222,13247605129676795],[4611686018494627848,4611703610881867784,-24519907574746803,-24519905182726150],[4611686018494627848,4611703610881998848,24519905182726150,24519907574746803],[4611686018494627848,4611703611687174152,-24519907503744101,-24519905253728852],[4611686018494627848,4611703611687305216,24519905253728852,24519907503744101],[4611686018494627848,4611738794985521160,22544603189358414,22544604548409457],[4611686018494627848,4611738794985652224,-22544604548409457,-22544603189358414],[4611686018494627848,4611844348101787656,22544603247468479,22544604490299392],[4611686018494627848,4611844348101918720,-22544604490299392,-22544603247468479],[4611686018494627848,6917546619827126280,1975301853739043,1975303165966039],[4611686018494627848,6917546619827257344,-1975303165966039,-1975301853739043],[4611686018494627848,36893505739672256520,-1975303193032786,-1975301826672296],[4611686018494627848,36893505739672387584,1975301826672296,1975303193032786],[4611686018494627848,41505191758032535560,1975301826672296,1975303193032786],[4611686018494627848,41505191758032666624,-1975303193032786,-1975301826672296],[4611686018494627848,2361183259027075760136,-22544604572259892,-22544603165507976],[4611686018494627848,2361183259027075891200,22544603165507976,22544604572259892],[4611686018494627848,2365794945045436039176,22544603165507976,22544604572259892],[4611686018494627848,2365794945045436170240,-22544604572259892,-22544603165507976],[4611686018494627968,17592186044424,13247603758912222,13247605129676795],[4611686018494627968,17592186175624,13247603758912222,13247605129676795],[4611686018494627968,17592186568704,-1975303196554503,-1975301823150576],[4611686018494627968,17592186699904,-1975303196554503,-1975301823150576],[4611686018494627968,4611703610680541192,13247603758912222,13247605129676795],[4611686018494627968,4611703610680672392,13247603758912222,13247605129676795],[4611686018494627968,4611703610681065472,-1975303196554503,-1975301823150576],[4611686018494627968,4611703610681196672,-1975303196554503,-1975301823150576],[4611686018494660608,17592186044420,1975301882939439,1975303136765642],[4611686018494660608,17592186044424,-1975303136765642,-1975301882939439],[4611686018494660608,17592186208260,1975301882939439,1975303136765642],[4611686018494660608,17592186208264,-1975303136765642,-1975301882939439],[4611686018494660608,4611703610680541188,1975301882939439,1975303136765642],[4611686018494660608,4611703610680541192,-1975303136765642,-1975301882939439],[4611686018494660608,4611703610680705028,1975301882939439,1975303136765642],[4611686018494660608,4611703610680705032,-1975303136765642,-1975301882939439],[4611686018495021064,17592186175488,-11272303138139186,-11272300730744752],[4611686018495021064,17592186699784,-11272303138139186,-11272300730744752],[4611686018495021064,4611703610680672256,-11272303138139186,-11272300730744752],[4611686018495021064,4611703610681196552,-11272303138139186,-11272300730744752],[4611686018495152128,17592186044424,-1975303196554503,-1975301823150576],[4611686018495152128,17592186044544,1975301823150576,1975303196554503],[4611686018495152128,17592186699784,-1975303196554503,-1975301823150576],[4611686018495152128,17592186699904,1975301823150576,1975303196554503],[4611686018495152128,4611703610680541192,-1975303196554503,-1975301823150576],[4611686018495152128,4611703610680541312,1975301823150576,1975303196554503],[4611686018495152128,4611703610681196552,-1975303196554503,-1975301823150576],[4611686018495152128,4611703610681196672,1975301823150576,1975303196554503],[4611686018695954440,17592521588744,-11272303138139186,-11272300730744752],[4611686018695954440,17592521719808,11272300730744752,11272303138139186],[4611686018695954440,4611703610680541192,11272300730744752,11272303138139186],[4611686018695954440,4611703610680672256,-11272303138139186,-11272300730744752],[4611686018696347776,17592521588864,-13247605134312055,-13247603754276960],[4611686018696347776,17592522113024,13247603754276960,13247605134312055],[4611686018696347776,52776826568832,22544603189358414,22544604548409457],[4611686018696347776,52776827092992,-22544604548409457,-22544603189358414],[4611686018696347776,4611703610680541312,13247603754276960,13247605134312055],[4611686018696347776,4611703610681065472,-13247605134312055,-13247603754276960],[4611686018696347776,4611738794985521280,-22544604548409457,-22544603189358414],[4611686018696347776,4611738794986045440,22544603189358414,22544604548409457],[4611686018696347776,36893523332059627648,1975301826672296,1975303193032786],[4611686018696347776,36893523332060151808,-1975303193032786,-1975301826672296],[4611686018696347776,41505209350218580096,-1975303193032786,-1975301826672296],[4611686018696347776,41505209350219104256,1975301826672296,1975303193032786],[4611686018762932232,17592186175488,-13247605134312055,-13247603754276960],[4611686018762932232,17592253284360,-24519907574746803,-24519905182726150],[4611686018762932232,17592454610952,11272300730744752,11272303138139186],[4611686018762932232,4611703610680672256,11272300730744752,11272303138139186],[4611686018762932232,4611703610881998848,-24519907574746803,-24519905182726150],[4611686018762932232,4611703610949107720,-13247605134312055,-13247603754276960],[4611686018762932352,17592186568704,13247603754276960,13247605134312055],[4611686018762932352,17592455004288,13247603754276960,13247605134312055],[4611686018762932352,4611703610681065472,13247603754276960,13247605134312055],[4611686018762932352,4611703610949501056,13247603754276960,13247605134312055],[4611686018763063296,17592186044424,13247603754276960,13247605134312055],[4611686018763063296,17592253284360,24519905182726150,24519907574746803],[4611686018763063296,17592454610952,-11272303138139186,-11272300730744752],[4611686018763063296,4611703610680541192,-11272303138139186,-11272300730744752],[4611686018763063296,4611703610881867784,24519905182726150,24519907574746803],[4611686018763063296,4611703610949107720,13247603754276960,13247605134312055],[4611686018763456512,17592186044544,-13247605134312055,-13247603754276960],[4611686018763456512,17592455004288,-13247605134312055,-13247603754276960],[4611686018763456512,4611703610680541312,-13247605134312055,-13247603754276960],[4611686018763456512,4611703610949501056,-13247605134312055,-13247603754276960],[4611686019501162500,17593326895108,-13247605070627222,-13247603817961795],[4611686019501162500,17593326927872,13247603817961795,13247605070627222],[4611686019501162500,158330748141572,22544603247468479,22544604490299392],[4611686019501162500,158330748174336,-22544604490299392,-22544603247468479],[4611686019501162500,2305983747775791108,1975301853739043,1975303165966039],[4611686019501162500,2305983747775823872,-1975303165966039,-1975301853739043],[4611686019501162500,4611703610680541188,13247603817961795,13247605070627222],[4611686019501162500,4611703610680573952,-13247605070627222,-13247603817961795],[4611686019501162500,4611844348101787652,-22544604490299392,-22544603247468479],[4611686019501162500,4611844348101820416,22544603247468479,22544604490299392],[4611686019501162500,6917669765129437188,-1975303165966039,-1975301853739043],[4611686019501162500,6917669765129469952,1975301853739043,1975303165966039],[4611686019501260808,17593326895112,-11272303065715385,-11272300803168551],[4611686019501260808,17593327026176,11272300803168551,11272303065715385],[4611686019501260808,4611703610680541192,11272300803168551,11272303065715385],[4611686019501260808,4611703610680672256,-11272303065715385,-11272300803168551],[4611686019568238596,17592186077184,13247603817961795,13247605070627222],[4611686019568238596,17593259819012,13247603817961795,13247605070627222],[4611686019568238596,4611703610680573952,13247603817961795,13247605070627222],[4611686019568238596,4611703611754315780,13247603817961795,13247605070627222],[4611686019568238600,17592186175488,-13247605070627222,-13247603817961795],[4611686019568238600,17592253284360,-24519907503744101,-24519905253728852],[4611686019568238600,17593259917320,11272300803168551,11272303065715385],[4611686019568238600,4611703610680672256,11272300803168551,11272303065715385],[4611686019568238600,4611703611687305216,-24519907503744101,-24519905253728852],[4611686019568238600,4611703611754414088,-13247605070627222,-13247603817961795],[4611686019568271360,17592186044420,-13247605070627222,-13247603817961795],[4611686019568271360,17593259819012,-13247605070627222,-13247603817961795],[4611686019568271360,4611703610680541188,-13247605070627222,-13247603817961795],[4611686019568271360,4611703611754315780,-13247605070627222,-13247603817961795],[4611686019568369664,17592186044424,13247603817961795,13247605070627222],[4611686019568369664,17592253284360,24519905253728852,24519907503744101],[4611686019568369664,17593259917320,-11272303065715385,-11272300803168551],[4611686019568369664,4611703610680541192,-11272303065715385,-11272300803168551],[4611686019568369664,4611703611687174152,24519905253728852,24519907503744101],[4611686019568369664,4611703611754414088,13247603817961795,13247605070627222],[4611703610613563400,17592186044424,-1975304999015964,-1975300020689110],[4611703610613563400,17592186175488,1975300020689110,1975304999015964],[4611703610613563400,4611686018427387912,1975300020689110,1975304999015964],[4611703610613563400,4611686018427518976,-1975304999015964,-1975300020689110],[4611703610680541186,17592186175498,-13247605142672540,-13247603745916480],[4611703610680541186,17592253284360,13247603745916480,13247605142672540],[4611703610680541186,4611686018427518986,13247603745916480,13247605142672540],[4611703610680541186,4611686018494627848,-13247605142672540,-13247603745916480],[4611703610680541188,17592186175500,-13247605102529449,-13247603786059568],[4611703610680541188,17592186208260,1975301882939439,1975303136765642],[4611703610680541188,17592253284360,13247603786059568,13247605102529449],[4611703610680541188,17592253317120,-1975303136765642,-1975301882939439],[4611703610680541188,17593259819012,-13247605070627222,-13247603817961795],[4611703610680541188,17593326927872,13247603817961795,13247605070627222],[4611703610680541188,4611686018427518988,13247603786059568,13247605102529449],[4611703610680541188,4611686018427551748,-1975303136765642,-1975301882939439],[4611703610680541188,4611686018494627848,-13247605102529449,-13247603786059568],[4611703610680541188,4611686018494660608,1975301882939439,1975303136765642],[4611703610680541188,4611686019501162500,13247603817961795,13247605070627222],[4611703610680541188,4611686019568271360,-13247605070627222,-13247603817961795],[4611703610680541192,17592186044424,13247602482884872,13247606405704134],[4611703610680541192,17592186175498,13247603745916480,13247605142672540],[4611703610680541192,17592186175500,13247603786059568,13247605102529449],[4611703610680541192,17592186175624,13247603758912222,13247605129676795],[4611703610680541192,17592186208264,-1975303136765642,-1975301882939439],[4611703610680541192,17592186699784,-1975303196554503,-1975301823150576],[4611703610680541192,17592253153280,-13247606405704134,-13247602482884872],[4611703610680541192,17592253284354,-13247605142672540,-13247603745916480],[4611703610680541192,17592253284356,-13247605102529449,-13247603786059568],[4611703610680541192,17592253284480,-13247605129676795,-13247603758912222],[4611703610680541192,17592253317120,1975301882939439,1975303136765642],[4611703610680541192,17592253808640,1975301823150576,1975303196554503],[4611703610680541192,17592454610952,-11272303138139186,-11272300730744752],[4611703610680541192,17592521719808,11272300730744752,11272303138139186],[4611703610680541192,17593259917320,-11272303065715385,-11272300803168551],[4611703610680541192,17593327026176,11272300803168551,11272303065715385],[4611703610680541192,35184372219904,-1975303193032786,-1975301826672296],[4611703610680541192,35184439328776,-1975303193032786,-1975301826672296],[4611703610680541192,140737488486400,-1975303165966039,-1975301853739043],[4611703610680541192,140737555595272,-1975303165966039,-1975301853739043],[4611703610680541192,2305843009213825024,1975301853739043,1975303165966039],[4611703610680541192,2305843009280933896,1975301853739043,1975303165966039],[4611703610680541192,4611686018427387912,-13247606405704134,-13247602482884872],[4611703610680541192,4611686018427518986,-13247605142672540,-13247603745916480],[4611703610680541192,4611686018427518988,-13247605102529449,-13247603786059568],[4611703610680541192,4611686018427519112,-13247605129676795,-13247603758912222],[4611703610680541192,4611686018427551752,1975301882939439,1975303136765642],[4611703610680541192,4611686018428043272,1975301823150576,1975303196554503],[4611703610680541192,4611686018494496768,13247602482884872,13247606405704134],[4611703610680541192,4611686018494627842,13247603745916480,13247605142672540],[4611703610680541192,4611686018494627844,13247603786059568,13247605102529449],[4611703610680541192,4611686018494627968,13247603758912222,13247605129676795],[4611703610680541192,4611686018494660608,-1975303136765642,-1975301882939439],[4611703610680541192,4611686018495152128,-1975303196554503,-1975301823150576],[4611703610680541192,4611686018695954440,11272300730744752,11272303138139186],[4611703610680541192,4611686018763063296,-11272303138139186,-11272300730744752],[4611703610680541192,4611686019501260808,11272300803168551,11272303065715385],[4611703610680541192,4611686019568369664,-11272303065715385,-11272300803168551],[4611703610680541192,4611738794985652224,-1975303193032786,-1975301826672296],[4611703610680541192,4611738795052761096,-1975303193032786,-1975301826672296],[4611703610680541192,4611844348101918720,-1975303165966039,-1975301853739043],[4611703610680541192,4611844348169027592,-1975303165966039,-1975301853739043],[4611703610680541192,6917546619827257344,1975301853739043,1975303165966039],[4611703610680541192,6917546619894366216,1975301853739043,1975303165966039],[4611703610680541192,36893488147419234304,1975301826672296,1975303193032786],[4611703610680541192,36893488147486343176,1975301826672296,1975303193032786],[4611703610680541192,41505191758032666624,1975301826672296,1975303193032786],[4611703610680541192,41505191758099775496,1975301826672296,1975303193032786],[4611703610680541192,2361183241434822737920,22544603165507976,22544604572259892],[4611703610680541192,2361183241434889846792,22544603165507976,22544604572259892],[4611703610680541192,2365794945045436170240,22544603165507976,22544604572259892],[4611703610680541192,2365794945045503279112,22544603165507976,22544604572259892],[4611703610680541312,17592186175624,-13247605129676795,-13247603758912222],[4611703610680541312,17592186699904,1975301823150576,1975303196554503],[4611703610680541312,17592253284360,13247603758912222,13247605129676795],[4611703610680541312,17592253808640,-1975303196554503,-1975301823150576],[4611703610680541312,17592455004288,-13247605134312055,-13247603754276960],[4611703610680541312,17592522113024,13247603754276960,13247605134312055],[4611703610680541312,4611686018427519112,13247603758912222,13247605129676795],[4611703610680541312,4611686018428043392,-1975303196554503,-1975301823150576],[4611703610680541312,4611686018494627848,-13247605129676795,-13247603758912222],[4611703610680541312,4611686018495152128,1975301823150576,1975303196554503],[4611703610680541312,4611686018696347776,13247603754276960,13247605134312055],[4611703610680541312,4611686018763456512,-13247605134312055,-13247603754276960],[4611703610680573952,17592186208260,-1975303136765642,-1975301882939439],[4611703610680573952,17592186208264,13247603786059568,13247605102529449],[4611703610680573952,17592253284356,1975301882939439,1975303136765642],[4611703610680573952,17592253284360,-13247605102529449,-13247603786059568],[4611703610680573952,17593259819012,13247603817961795,13247605070627222],[4611703610680573952,17593326895108,-13247605070627222,-13247603817961795],[4611703610680573952,4611686018427551748,1975301882939439,1975303136765642],[4611703610680573952,4611686018427551752,-13247605102529449,-13247603786059568],[4611703610680573952,4611686018494627844,-1975303136765642,-1975301882939439],[4611703610680573952,4611686018494627848,13247603786059568,13247605102529449],[4611703610680573952,4611686019501162500,-13247605070627222,-13247603817961795],[4611703610680573952,4611686019568238596,13247603817961795,13247605070627222],[4611703610680672256,17592186208264,-11272303065715385,-11272300803168551],[4611703610680672256,17592186699784,-11272303138139186,-11272300730744752],[4611703610680672256,17592253186056,11272300803168551,11272303065715385],[4611703610680672256,17592253677576,11272300730744752,11272303138139186],[4611703610680672256,17592454610952,11272300730744752,11272303138139186],[4611703610680672256,17592521588744,-11272303138139186,-11272300730744752],[4611703610680672256,17593259917320,11272300803168551,11272303065715385],[4611703610680672256,17593326895112,-11272303065715385,-11272300803168551],[4611703610680672256,35184372088840,1975301826672296,1975303193032786],[4611703610680672256,35184439328776,1975301826672296,1975303193032786],[4611703610680672256,140737488355336,1975301853739043,1975303165966039],[4611703610680672256,140737555595272,1975301853739043,1975303165966039],[4611703610680672256,2305843009213693960,-1975303165966039,-1975301853739043],[4611703610680672256,2305843009280933896,-1975303165966039,-1975301853739043],[4611703610680672256,4611686018427551752,11272300803168551,11272303065715385],[4611703610680672256,4611686018428043272,11272300730744752,11272303138139186],[4611703610680672256,4611686018494529544,-11272303065715385,-11272300803168551],[4611703610680672256,4611686018495021064,-11272303138139186,-11272300730744752],[4611703610680672256,4611686018695954440,-11272303138139186,-11272300730744752],[4611703610680672256,4611686018762932232,11272300730744752,11272303138139186],[4611703610680672256,4611686019501260808,-11272303065715385,-11272300803168551],[4611703610680672256,4611686019568238600,11272300803168551,11272303065715385],[4611703610680672256,4611738794985521160,1975301826672296,1975303193032786],[4611703610680672256,4611738795052761096,1975301826672296,1975303193032786],[4611703610680672256,4611844348101787656,1975301853739043,1975303165966039],[4611703610680672256,4611844348169027592,1975301853739043,1975303165966039],[4611703610680672256,6917546619827126280,-1975303165966039,-1975301853739043],[4611703610680672256,6917546619894366216,-1975303165966039,-1975301853739043],[4611703610680672256,36893488147419103240,-1975303193032786,-1975301826672296],[4611703610680672256,36893488147486343176,-1975303193032786,-1975301826672296],[4611703610680672256,41505191758032535560,-1975303193032786,-1975301826672296],[4611703610680672256,41505191758099775496,-1975303193032786,-1975301826672296],[4611703610680672256,2361183241434822606856,-22544604572259892,-22544603165507976],[4611703610680672256,2361183241434889846792,-22544604572259892,-22544603165507976],[4611703610680672256,2365794945045436039176,-22544604572259892,-22544603165507976],[4611703610680672256,2365794945045503279112,-22544604572259892,-22544603165507976],[4611703610680672266,17592186044418,-13247605142672540,-13247603745916480],[4611703610680672266,17592186044424,13247603745916480,13247605142672540],[4611703610680672266,17592253284354,-13247605142672540,-13247603745916480],[4611703610680672266,17592253284360,13247603745916480,13247605142672540],[4611703610680672266,4611686018427387906,13247603745916480,13247605142672540],[4611703610680672266,4611686018427387912,-13247605142672540,-13247603745916480],[4611703610680672266,4611686018494627842,13247603745916480,13247605142672540],[4611703610680672266,4611686018494627848,-13247605142672540,-13247603745916480],[4611703610680672268,17592186044420,-13247605102529449,-13247603786059568],[4611703610680672268,17592186044424,13247603786059568,13247605102529449],[4611703610680672268,17592253284356,-13247605102529449,-13247603786059568],[4611703610680672268,17592253284360,13247603786059568,13247605102529449],[4611703610680672268,4611686018427387908,13247603786059568,13247605102529449],[4611703610680672268,4611686018427387912,-13247605102529449,-13247603786059568],[4611703610680672268,4611686018494627844,13247603786059568,13247605102529449],[4611703610680672268,4611686018494627848,-13247605102529449,-13247603786059568],[4611703610680672392,17592186044424,13247603758912222,13247605129676795],[4611703610680672392,17592186044544,-13247605129676795,-13247603758912222],[4611703610680672392,17592253284360,13247603758912222,13247605129676795],[4611703610680672392,17592253284480,-13247605129676795,-13247603758912222],[4611703610680672392,4611686018427387912,-13247605129676795,-13247603758912222],[4611703610680672392,4611686018427388032,13247603758912222,13247605129676795],[4611703610680672392,4611686018494627848,-13247605129676795,-13247603758912222],[4611703610680672392,4611686018494627968,13247603758912222,13247605129676795],[4611703610680705028,17592186044420,1975301882939439,1975303136765642],[4611703610680705028,17592186077184,-1975303136765642,-1975301882939439],[4611703610680705028,17592253284356,1975301882939439,1975303136765642],[4611703610680705028,17592253317120,-1975303136765642,-1975301882939439],[4611703610680705028,4611686018427387908,-1975303136765642,-1975301882939439],[4611703610680705028,4611686018427420672,1975301882939439,1975303136765642],[4611703610680705028,4611686018494627844,-1975303136765642,-1975301882939439],[4611703610680705028,4611686018494660608,1975301882939439,1975303136765642],[4611703610680705032,17592186044424,-1975303136765642,-1975301882939439],[4611703610680705032,17592186077184,13247603786059568,13247605102529449],[4611703610680705032,17592186175488,-11272303065715385,-11272300803168551],[4611703610680705032,17592253186056,11272300803168551,11272303065715385],[4611703610680705032,17592253284360,-13247605102529449,-13247603786059568],[4611703610680705032,17592253317120,1975301882939439,1975303136765642],[4611703610680705032,4611686018427387912,1975301882939439,1975303136765642],[4611703610680705032,4611686018427420672,-13247605102529449,-13247603786059568],[4611703610680705032,4611686018427518976,11272300803168551,11272303065715385],[4611703610680705032,4611686018494529544,-11272303065715385,-11272300803168551],[4611703610680705032,4611686018494627848,13247603786059568,13247605102529449],[4611703610680705032,4611686018494660608,-1975303136765642,-1975301882939439],[4611703610681065472,17592186699784,13247603758912222,13247605129676795],[4611703610681065472,17592186699904,-1975303196554503,-1975301823150576],[4611703610681065472,17592253284360,-13247605129676795,-13247603758912222],[4611703610681065472,17592253284480,1975301823150576,1975303196554503],[4611703610681065472,17592455004288,13247603754276960,13247605134312055],[4611703610681065472,17592521588864,-13247605134312055,-13247603754276960],[4611703610681065472,4611686018428043272,-13247605129676795,-13247603758912222],[4611703610681065472,4611686018428043392,1975301823150576,1975303196554503],[4611703610681065472,4611686018494627848,13247603758912222,13247605129676795],[4611703610681065472,4611686018494627968,-1975303196554503,-1975301823150576],[4611703610681065472,4611686018696347776,-13247605134312055,-13247603754276960],[4611703610681065472,4611686018762932352,13247603754276960,13247605134312055],[4611703610681196552,17592186044424,-1975303196554503,-1975301823150576],[4611703610681196552,17592186175488,-11272303138139186,-11272300730744752],[4611703610681196552,17592186568704,13247603758912222,13247605129676795],[4611703610681196552,17592253284360,-13247605129676795,-13247603758912222],[4611703610681196552,17592253677576,11272300730744752,11272303138139186],[4611703610681196552,17592253808640,1975301823150576,1975303196554503],[4611703610681196552,4611686018427387912,1975301823150576,1975303196554503],[4611703610681196552,4611686018427518976,11272300730744752,11272303138139186],[4611703610681196552,4611686018427912192,-13247605129676795,-13247603758912222],[4611703610681196552,4611686018494627848,13247603758912222,13247605129676795],[4611703610681196552,4611686018495021064,-11272303138139186,-11272300730744752],[4611703610681196552,4611686018495152128,-1975303196554503,-1975301823150576],[4611703610681196672,17592186044544,1975301823150576,1975303196554503],[4611703610681196672,17592186568704,-1975303196554503,-1975301823150576],[4611703610681196672,17592253284480,1975301823150576,1975303196554503],[4611703610681196672,17592253808640,-1975303196554503,-1975301823150576],[4611703610681196672,4611686018427388032,-1975303196554503,-1975301823150576],[4611703610681196672,4611686018427912192,1975301823150576,1975303196554503],[4611703610681196672,4611686018494627968,-1975303196554503,-1975301823150576],[4611703610681196672,4611686018495152128,1975301823150576,1975303196554503],[4611703610881867784,17592253284360,24519905182726150,24519907574746803],[4611703610881867784,17592521719808,-24519907574746803,-24519905182726150],[4611703610881867784,4611686018494627848,-24519907574746803,-24519905182726150],[4611703610881867784,4611686018763063296,24519905182726150,24519907574746803],[4611703610881998848,17592253284360,-24519907574746803,-24519905182726150],[4611703610881998848,17592521588744,24519905182726150,24519907574746803],[4611703610881998848,4611686018494627848,24519905182726150,24519907574746803],[4611703610881998848,4611686018762932232,-24519907574746803,-24519905182726150],[4611703610949107720,17592186044424,13247603754276960,13247605134312055],[4611703610949107720,17592186175488,-13247605134312055,-13247603754276960],[4611703610949107720,17592521588744,13247603754276960,13247605134312055],[4611703610949107720,17592521719808,-13247605134312055,-13247603754276960],[4611703610949107720,4611686018427387912,-13247605134312055,-13247603754276960],[4611703610949107720,4611686018427518976,13247603754276960,13247605134312055],[4611703610949107720,4611686018762932232,-13247605134312055,-13247603754276960],[4611703610949107720,4611686018763063296,13247603754276960,13247605134312055],[4611703610949501056,17592186044544,-13247605134312055,-13247603754276960],[4611703610949501056,17592186568704,13247603754276960,13247605134312055],[4611703610949501056,17592521588864,-13247605134312055,-13247603754276960],[4611703610949501056,17592522113024,13247603754276960,13247605134312055],[4611703610949501056,4611686018427388032,13247603754276960,13247605134312055],[4611703610949501056,4611686018427912192,-13247605134312055,-13247603754276960],[4611703610949501056,4611686018762932352,13247603754276960,13247605134312055],[4611703610949501056,4611686018763456512,-13247605134312055,-13247603754276960],[4611703611687174152,17592253284360,24519905253728852,24519907503744101],[4611703611687174152,17593327026176,-24519907503744101,-24519905253728852],[4611703611687174152,4611686018494627848,-24519907503744101,-24519905253728852],[4611703611687174152,4611686019568369664,24519905253728852,24519907503744101],[4611703611687305216,17592253284360,-24519907503744101,-24519905253728852],[4611703611687305216,17593326895112,24519905253728852,24519907503744101],[4611703611687305216,4611686018494627848,24519905253728852,24519907503744101],[4611703611687305216,4611686019568238600,-24519907503744101,-24519905253728852],[4611703611754315780,17592186044420,-13247605070627222,-13247603817961795],[4611703611754315780,17592186077184,13247603817961795,13247605070627222],[4611703611754315780,17593326895108,-13247605070627222,-13247603817961795],[4611703611754315780,17593326927872,13247603817961795,13247605070627222],[4611703611754315780,4611686018427387908,13247603817961795,13247605070627222],[4611703611754315780,4611686018427420672,-13247605070627222,-13247603817961795],[4611703611754315780,4611686019568238596,13247603817961795,13247605070627222],[4611703611754315780,4611686019568271360,-13247605070627222,-13247603817961795],[4611703611754414088,17592186044424,13247603817961795,13247605070627222],[4611703611754414088,17592186175488,-13247605070627222,-13247603817961795],[4611703611754414088,17593326895112,13247603817961795,13247605070627222],[4611703611754414088,17593327026176,-13247605070627222,-13247603817961795],[4611703611754414088,4611686018427387912,-13247605070627222,-13247603817961795],[4611703611754414088,4611686018427518976,13247603817961795,13247605070627222],[4611703611754414088,4611686019568238600,-13247605070627222,-13247603817961795],[4611703611754414088,4611686019568369664,13247603817961795,13247605070627222],[4611721202866585608,17592186175488,24519905182726150,24519907574746803],[4611721202866585608,17592253284360,24519905182726150,24519907574746803],[4611721202866585608,4611738794985652224,24519905182726150,24519907574746803],[4611721202866585608,4611738795052761096,24519905182726150,24519907574746803],[4611721202866716672,17592186044424,-24519907574746803,-24519905182726150],[4611721202866716672,17592253284360,-24519907574746803,-24519905182726150],[4611721202866716672,4611738794985521160,-24519907574746803,-24519905182726150],[4611721202866716672,4611738795052761096,-24519907574746803,-24519905182726150],[4611721203067912320,17592186568704,-22544604548409457,-22544603189358414],[4611721203067912320,17592455004288,-22544604548409457,-22544603189358414],[4611721203067912320,4611738794986045440,-22544604548409457,-22544603189358414],[4611721203067912320,4611738795254481024,-22544604548409457,-22544603189358414],[4611721203067912320,36893488147419627520,-1975303193032786,-1975301826672296],[4611721203067912320,36893488147688063104,-1975303193032786,-1975301826672296],[4611721203067912320,41505209350219104256,-1975303193032786,-1975301826672296],[4611721203067912320,41505209350487539840,-1975303193032786,-1975301826672296],[4611721203068436480,17592186044544,22544603189358414,22544604548409457],[4611721203068436480,17592455004288,22544603189358414,22544604548409457],[4611721203068436480,4611738794985521280,22544603189358414,22544604548409457],[4611721203068436480,4611738795254481024,22544603189358414,22544604548409457],[4611721203068436480,36893488147419103360,1975301826672296,1975303193032786],[4611721203068436480,36893488147688063104,1975301826672296,1975303193032786],[4611721203068436480,41505209350218580096,1975301826672296,1975303193032786],[4611721203068436480,41505209350487539840,1975301826672296,1975303193032786],[4611738794985521160,17592253284360,-24519907574746803,-24519905182726150],[4611738794985521160,35184439328776,1975301826672296,1975303193032786],[4611738794985521160,52776625373184,22544603189358414,22544604548409457],[4611738794985521160,4611686018494627848,22544603189358414,22544604548409457],[4611738794985521160,4611703610680672256,1975301826672296,1975303193032786],[4611738794985521160,4611721202866716672,-24519907574746803,-24519905182726150],[4611738794985521280,17592455004288,22544603189358414,22544604548409457],[4611738794985521280,52776827092992,-22544604548409457,-22544603189358414],[4611738794985521280,4611686018696347776,-22544604548409457,-22544603189358414],[4611738794985521280,4611721203068436480,22544603189358414,22544604548409457],[4611738794985652224,17592253284360,24519905182726150,24519907574746803],[4611738794985652224,35184439328776,-1975303193032786,-1975301826672296],[4611738794985652224,52776625242120,-22544604548409457,-22544603189358414],[4611738794985652224,4611686018494627848,-22544604548409457,-22544603189358414],[4611738794985652224,4611703610680541192,-1975303193032786,-1975301826672296],[4611738794985652224,4611721202866585608,24519905182726150,24519907574746803],[4611738794986045440,17592455004288,-22544604548409457,-22544603189358414],[4611738794986045440,52776826568832,22544603189358414,22544604548409457],[4611738794986045440,4611686018696347776,22544603189358414,22544604548409457],[4611738794986045440,4611721203067912320,-22544604548409457,-22544603189358414],[4611738795052761096,17592186044424,-24519907574746803,-24519905182726150],[4611738795052761096,17592186175488,24519905182726150,24519907574746803],[4611738795052761096,35184372088840,1975301826672296,1975303193032786],[4611738795052761096,35184372219904,-1975303193032786,-1975301826672296],[4611738795052761096,52776625242120,-22544604548409457,-22544603189358414],[4611738795052761096,52776625373184,22544603189358414,22544604548409457],[4611738795052761096,4611686018427387912,22544603189358414,22544604548409457],[4611738795052761096,4611686018427518976,-22544604548409457,-22544603189358414],[4611738795052761096,4611703610680541192,-1975303193032786,-1975301826672296],[4611738795052761096,4611703610680672256,1975301826672296,1975303193032786],[4611738795052761096,4611721202866585608,24519905182726150,24519907574746803],[4611738795052761096,4611721202866716672,-24519907574746803,-24519905182726150],[4611738795254481024,17592186044544,22544603189358414,22544604548409457],[4611738795254481024,17592186568704,-22544604548409457,-22544603189358414],[4611738795254481024,52776826568832,22544603189358414,22544604548409457],[4611738795254481024,52776827092992,-22544604548409457,-22544603189358414],[4611738795254481024,4611686018427388032,-22544604548409457,-22544603189358414],[4611738795254481024,4611686018427912192,22544603189358414,22544604548409457],[4611738795254481024,4611721203067912320,-22544604548409457,-22544603189358414],[4611738795254481024,4611721203068436480,22544603189358414,22544604548409457],[4611826755982852104,17592186175488,24519905253728852,24519907503744101],[4611826755982852104,17592253284360,24519905253728852,24519907503744101],[4611826755982852104,4611844348101918720,24519905253728852,24519907503744101],[4611826755982852104,4611844348169027592,24519905253728852,24519907503744101],[4611826755982983168,17592186044424,-24519907503744101,-24519905253728852],[4611826755982983168,17592253284360,-24519907503744101,-24519905253728852],[4611826755982983168,4611844348101787656,-24519907503744101,-24519905253728852],[4611826755982983168,4611844348169027592,-24519907503744101,-24519905253728852],[4611826756989485060,17592186077184,-22544604490299392,-22544603247468479],[4611826756989485060,17593259819012,-22544604490299392,-22544603247468479],[4611826756989485060,2305843009213726720,-1975303165966039,-1975301853739043],[4611826756989485060,2305843010287468548,-1975303165966039,-1975301853739043],[4611826756989485060,4611844348101820416,-22544604490299392,-22544603247468479],[4611826756989485060,4611844349175562244,-22544604490299392,-22544603247468479],[4611826756989485060,6917669765129469952,-1975303165966039,-1975301853739043],[4611826756989485060,6917669766203211780,-1975303165966039,-1975301853739043],[4611826756989517824,17592186044420,22544603247468479,22544604490299392],[4611826756989517824,17593259819012,22544603247468479,22544604490299392],[4611826756989517824,2305843009213693956,1975301853739043,1975303165966039],[4611826756989517824,2305843010287468548,1975301853739043,1975303165966039],[4611826756989517824,4611844348101787652,22544603247468479,22544604490299392],[4611826756989517824,4611844349175562244,22544603247468479,22544604490299392],[4611826756989517824,6917669765129437188,1975301853739043,1975303165966039],[4611826756989517824,6917669766203211780,1975301853739043,1975303165966039],[4611844348101787652,17593259819012,22544603247468479,22544604490299392],[4611844348101787652,158330748174336,-22544604490299392,-22544603247468479],[4611844348101787652,4611686019501162500,-22544604490299392,-22544603247468479],[4611844348101787652,4611826756989517824,22544603247468479,22544604490299392],[4611844348101787656,17592253284360,-24519907503744101,-24519905253728852],[4611844348101787656,140737555595272,1975301853739043,1975303165966039],[4611844348101787656,158329741639680,22544603247468479,22544604490299392],[4611844348101787656,4611686018494627848,22544603247468479,22544604490299392],[4611844348101787656,4611703610680672256,1975301853739043,1975303165966039],[4611844348101787656,4611826755982983168,-24519907503744101,-24519905253728852],[4611844348101820416,17593259819012,-22544604490299392,-22544603247468479],[4611844348101820416,158330748141572,22544603247468479,22544604490299392],[4611844348101820416,4611686019501162500,22544603247468479,22544604490299392],[4611844348101820416,4611826756989485060,-22544604490299392,-22544603247468479],[4611844348101918720,17592253284360,24519905253728852,24519907503744101],[4611844348101918720,140737555595272,-1975303165966039,-1975301853739043],[4611844348101918720,158329741508616,-22544604490299392,-22544603247468479],[4611844348101918720,4611686018494627848,-22544604490299392,-22544603247468479],[4611844348101918720,4611703610680541192,-1975303165966039,-1975301853739043],[4611844348101918720,4611826755982852104,24519905253728852,24519907503744101],[4611844348169027592,17592186044424,-24519907503744101,-24519905253728852],[4611844348169027592,17592186175488,24519905253728852,24519907503744101],[4611844348169027592,140737488355336,1975301853739043,1975303165966039],[4611844348169027592,140737488486400,-1975303165966039,-1975301853739043],[4611844348169027592,158329741508616,-22544604490299392,-22544603247468479],[4611844348169027592,158329741639680,22544603247468479,22544604490299392],[4611844348169027592,4611686018427387912,22544603247468479,22544604490299392],[4611844348169027592,4611686018427518976,-22544604490299392,-22544603247468479],[4611844348169027592,4611703610680541192,-1975303165966039,-1975301853739043],[4611844348169027592,4611703610680672256,1975301853739043,1975303165966039],[4611844348169027592,4611826755982852104,24519905253728852,24519907503744101],[4611844348169027592,4611826755982983168,-24519907503744101,-24519905253728852],[4611844349175562244,17592186044420,22544603247468479,22544604490299392],[4611844349175562244,17592186077184,-22544604490299392,-22544603247468479],[4611844349175562244,158330748141572,22544603247468479,22544604490299392],[4611844349175562244,158330748174336,-22544604490299392,-22544603247468479],[4611844349175562244,4611686018427387908,-22544604490299392,-22544603247468479],[4611844349175562244,4611686018427420672,22544603247468479,22544604490299392],[4611844349175562244,4611826756989485060,-22544604490299392,-22544603247468479],[4611844349175562244,4611826756989517824,22544603247468479,22544604490299392],[6917546619827126280,2305843009280933896,-1975303165966039,-1975301853739043],[6917546619827126280,2305860601466978304,1975301853739043,1975303165966039],[6917546619827126280,4611686018494627848,1975301853739043,1975303165966039],[6917546619827126280,4611703610680672256,-1975303165966039,-1975301853739043],[6917546619827257344,2305843009280933896,1975301853739043,1975303165966039],[6917546619827257344,2305860601466847240,-1975303165966039,-1975301853739043],[6917546619827257344,4611686018494627848,-1975303165966039,-1975301853739043],[6917546619827257344,4611703610680541192,1975301853739043,1975303165966039],[6917546619894366216,2305843009213693960,-1975303165966039,-1975301853739043],[6917546619894366216,2305843009213825024,1975301853739043,1975303165966039],[6917546619894366216,2305860601466847240,-1975303165966039,-1975301853739043],[6917546619894366216,2305860601466978304,1975301853739043,1975303165966039],[6917546619894366216,4611686018427387912,1975301853739043,1975303165966039],[6917546619894366216,4611686018427518976,-1975303165966039,-1975301853739043],[6917546619894366216,4611703610680541192,1975301853739043,1975303165966039],[6917546619894366216,4611703610680672256,-1975303165966039,-1975301853739043],[6917669765129437188,2305843010287468548,1975301853739043,1975303165966039],[6917669765129437188,2305983747775823872,-1975303165966039,-1975301853739043],[6917669765129437188,4611686019501162500,-1975303165966039,-1975301853739043],[6917669765129437188,4611826756989517824,1975301853739043,1975303165966039],[6917669765129469952,2305843010287468548,-1975303165966039,-1975301853739043],[6917669765129469952,2305983747775791108,1975301853739043,1975303165966039],[6917669765129469952,4611686019501162500,1975301853739043,1975303165966039],[6917669765129469952,4611826756989485060,-1975303165966039,-1975301853739043],[6917669766203211780,2305843009213693956,1975301853739043,1975303165966039],[6917669766203211780,2305843009213726720,-1975303165966039,-1975301853739043],[6917669766203211780,2305983747775791108,1975301853739043,1975303165966039],[6917669766203211780,2305983747775823872,-1975303165966039,-1975301853739043],[6917669766203211780,4611686018427387908,-1975303165966039,-1975301853739043],[6917669766203211780,4611686018427420672,1975301853739043,1975303165966039],[6917669766203211780,4611826756989485060,-1975303165966039,-1975301853739043],[6917669766203211780,4611826756989517824,1975301853739043,1975303165966039],[36893488147419103240,35184641048704,13247603758912222,13247605129676795],[36893488147419103240,35184641179648,-1975303196554503,-1975301823150576],[36893488147419103240,35184707764224,13247603754276960,13247605134312055],[36893488147419103240,52776625373184,-22544604548409457,-22544603189358414],[36893488147419103240,4611703610680672256,-1975303193032786,-1975301826672296],[36893488147419103240,36893523332060151944,13247603758912222,13247605129676795],[36893488147419103240,36893523332060282888,-1975303196554503,-1975301823150576],[36893488147419103240,36893523332126867464,13247603754276960,13247605134312055],[36893488147419103240,36893540924044476424,-22544604548409457,-22544603189358414],[36893488147419103240,41505191758099775496,-1975303193032786,-1975301826672296],[36893488147419103360,35184641048584,-13247605129676795,-13247603758912222],[36893488147419103360,35184641179648,1975301823150576,1975303196554503],[36893488147419103360,35184708157440,-13247605134312055,-13247603754276960],[36893488147419103360,52776827092992,22544603189358414,22544604548409457],[36893488147419103360,4611721203068436480,1975301826672296,1975303193032786],[36893488147419103360,36893523332060151944,-13247605129676795,-13247603758912222],[36893488147419103360,36893523332060283008,1975301823150576,1975303196554503],[36893488147419103360,36893523332127260800,-13247605134312055,-13247603754276960],[36893488147419103360,36893540924246196352,22544603189358414,22544604548409457],[36893488147419103360,41505209350487539840,1975301826672296,1975303193032786],[36893488147419234304,35184641048584,1975301823150576,1975303196554503],[36893488147419234304,35184641048704,-13247605129676795,-13247603758912222],[36893488147419234304,35184707633160,-13247605134312055,-13247603754276960],[36893488147419234304,52776625242120,22544603189358414,22544604548409457],[36893488147419234304,4611703610680541192,1975301826672296,1975303193032786],[36893488147419234304,36893523332060282888,1975301823150576,1975303196554503],[36893488147419234304,36893523332060283008,-13247605129676795,-13247603758912222],[36893488147419234304,36893523332126867464,-13247605134312055,-13247603754276960],[36893488147419234304,36893540924044476424,22544603189358414,22544604548409457],[36893488147419234304,41505191758099775496,1975301826672296,1975303193032786],[36893488147419627520,35184640655488,11272300730744752,11272303138139186],[36893488147419627520,35184707633280,13247603754276960,13247605134312055],[36893488147419627520,52776826568832,-22544604548409457,-22544603189358414],[36893488147419627520,4611721203067912320,-1975303193032786,-1975301826672296],[36893488147419627520,36893523332060283008,11272300730744752,11272303138139186],[36893488147419627520,36893523332127260800,13247603754276960,13247605134312055],[36893488147419627520,36893540924246196352,-22544604548409457,-22544603189358414],[36893488147419627520,41505209350487539840,-1975303193032786,-1975301826672296],[36893488147419627656,35184641048584,-13247605129676795,-13247603758912222],[36893488147419627656,35184641048704,13247603758912222,13247605129676795],[36893488147419627656,36893523332059627528,13247603758912222,13247605129676795],[36893488147419627656,36893523332059627648,-13247605129676795,-13247603758912222],[36893488147419758600,35184641048584,1975301823150576,1975303196554503],[36893488147419758600,35184641179648,-1975303196554503,-1975301823150576],[36893488147419758600,36893523332059627528,-1975303196554503,-1975301823150576],[36893488147419758600,36893523332059758592,1975301823150576,1975303196554503],[36893488147419758720,35184640655488,11272300730744752,11272303138139186],[36893488147419758720,35184641048704,-13247605129676795,-13247603758912222],[36893488147419758720,35184641179648,1975301823150576,1975303196554503],[36893488147419758720,36893523332059627648,1975301823150576,1975303196554503],[36893488147419758720,36893523332059758592,-13247605129676795,-13247603758912222],[36893488147419758720,36893523332060151808,11272300730744752,11272303138139186],[36893488147486343176,35184707633160,-13247605134312055,-13247603754276960],[36893488147486343176,35184707764224,13247603754276960,13247605134312055],[36893488147486343176,52776625242120,22544603189358414,22544604548409457],[36893488147486343176,52776625373184,-22544604548409457,-22544603189358414],[36893488147486343176,4611703610680541192,1975301826672296,1975303193032786],[36893488147486343176,4611703610680672256,-1975303193032786,-1975301826672296],[36893488147486343176,36893523332059627528,13247603754276960,13247605134312055],[36893488147486343176,36893523332059758592,-13247605134312055,-13247603754276960],[36893488147486343176,36893540923977236488,-22544604548409457,-22544603189358414],[36893488147486343176,36893540923977367552,22544603189358414,22544604548409457],[36893488147486343176,41505191758032535560,-1975303193032786,-1975301826672296],[36893488147486343176,41505191758032666624,1975301826672296,1975303193032786],[36893488147486736512,35184707633280,-11272303138139186,-11272300730744752],[36893488147486736512,35184708157440,11272300730744752,11272303138139186],[36893488147486736512,36893523332059627648,11272300730744752,11272303138139186],[36893488147486736512,36893523332060151808,-11272303138139186,-11272300730744752],[36893488147687669888,35184372613120,-11272303138139186,-11272300730744752],[36893488147687669888,35184372744320,-11272303138139186,-11272300730744752],[36893488147687669888,36893523332060151808,-11272303138139186,-11272300730744752],[36893488147687669888,36893523332060283008,-11272303138139186,-11272300730744752],[36893488147688062984,35184372088960,13247603758912222,13247605129676795],[36893488147688062984,35184372219904,-1975303196554503,-1975301823150576],[36893488147688062984,35184372613256,13247603758912222,13247605129676795],[36893488147688062984,35184372744200,-1975303196554503,-1975301823150576],[36893488147688062984,36893523332059627648,13247603758912222,13247605129676795],[36893488147688062984,36893523332059758592,-1975303196554503,-1975301823150576],[36893488147688062984,36893523332060151944,13247603758912222,13247605129676795],[36893488147688062984,36893523332060282888,-1975303196554503,-1975301823150576],[36893488147688063104,35184372088840,-13247605129676795,-13247603758912222],[36893488147688063104,35184372219904,13247603758912222,13247605129676795],[36893488147688063104,35184372613256,-13247605129676795,-13247603758912222],[36893488147688063104,35184372744320,13247603758912222,13247605129676795],[36893488147688063104,35184707633280,24519905182726150,24519907574746803],[36893488147688063104,35184708157440,-24519907574746803,-24519905182726150],[36893488147688063104,52776826568832,-22544604548409457,-22544603189358414],[36893488147688063104,52776827092992,22544603189358414,22544604548409457],[36893488147688063104,4611721203067912320,-1975303193032786,-1975301826672296],[36893488147688063104,4611721203068436480,1975301826672296,1975303193032786],[36893488147688063104,36893523331858301056,-24519907574746803,-24519905182726150],[36893488147688063104,36893523331858825216,24519905182726150,24519907574746803],[36893488147688063104,36893523332059627528,-13247605129676795,-13247603758912222],[36893488147688063104,36893523332059758592,13247603758912222,13247605129676795],[36893488147688063104,36893523332060151944,-13247605129676795,-13247603758912222],[36893488147688063104,36893523332060283008,13247603758912222,13247605129676795],[36893488147688063104,36893540923977236608,22544603189358414,22544604548409457],[36893488147688063104,36893540923977760768,-22544604548409457,-22544603189358414],[36893488147688063104,41505209350218580096,1975301826672296,1975303193032786],[36893488147688063104,41505209350219104256,-1975303193032786,-1975301826672296],[36893488147688194048,35184372088840,1975301823150576,1975303196554503],[36893488147688194048,35184372088960,-1975303196554503,-1975301823150576],[36893488147688194048,35184372744200,1975301823150576,1975303196554503],[36893488147688194048,35184372744320,-1975303196554503,-1975301823150576],[36893488147688194048,36893523332059627528,1975301823150576,1975303196554503],[36893488147688194048,36893523332059627648,-1975303196554503,-1975301823150576],[36893488147688194048,36893523332060282888,1975301823150576,1975303196554503],[36893488147688194048,36893523332060283008,-1975303196554503,-1975301823150576],[36893488147754647560,35184372219904,13247603754276960,13247605134312055],[36893488147754647560,35184439328776,13247603754276960,13247605134312055],[36893488147754647560,36893523332059758592,13247603754276960,13247605134312055],[36893488147754647560,36893523332126867464,13247603754276960,13247605134312055],[36893488147754647680,35184372613120,-13247605134312055,-13247603754276960],[36893488147754647680,35184439722112,11272300730744752,11272303138139186],[36893488147754647680,35184641048704,-24519907574746803,-24519905182726150],[36893488147754647680,36893523331858825216,-24519907574746803,-24519905182726150],[36893488147754647680,36893523332060151808,11272300730744752,11272303138139186],[36893488147754647680,36893523332127260800,-13247605134312055,-13247603754276960],[36893488147754778624,35184372088840,-13247605134312055,-13247603754276960],[36893488147754778624,35184439328776,-13247605134312055,-13247603754276960],[36893488147754778624,36893523332059627528,-13247605134312055,-13247603754276960],[36893488147754778624,36893523332126867464,-13247605134312055,-13247603754276960],[36893488147755171840,35184372088960,13247603754276960,13247605134312055],[36893488147755171840,35184439722112,-11272303138139186,-11272300730744752],[36893488147755171840,35184641048704,24519905182726150,24519907574746803],[36893488147755171840,36893523331858301056,24519905182726150,24519907574746803],[36893488147755171840,36893523332059627648,-11272303138139186,-11272300730744752],[36893488147755171840,36893523332127260800,13247603754276960,13247605134312055],[36893505739672256520,35184372219904,-22544604548409457,-22544603189358414],[36893505739672256520,35184439328776,-22544604548409457,-22544603189358414],[36893505739672256520,4611686018427518976,-1975303193032786,-1975301826672296],[36893505739672256520,4611686018494627848,-1975303193032786,-1975301826672296],[36893505739672256520,36893540923977367552,-22544604548409457,-22544603189358414],[36893505739672256520,36893540924044476424,-22544604548409457,-22544603189358414],[36893505739672256520,41505191758032666624,-1975303193032786,-1975301826672296],[36893505739672256520,41505191758099775496,-1975303193032786,-1975301826672296],[36893505739672387584,35184372088840,22544603189358414,22544604548409457],[36893505739672387584,35184439328776,22544603189358414,22544604548409457],[36893505739672387584,4611686018427387912,1975301826672296,1975303193032786],[36893505739672387584,4611686018494627848,1975301826672296,1975303193032786],[36893505739672387584,36893540923977236488,22544603189358414,22544604548409457],[36893505739672387584,36893540924044476424,22544603189358414,22544604548409457],[36893505739672387584,41505191758032535560,1975301826672296,1975303193032786],[36893505739672387584,41505191758099775496,1975301826672296,1975303193032786],[36893505739873583232,35184372613120,24519905182726150,24519907574746803],[36893505739873583232,35184641048704,24519905182726150,24519907574746803],[36893505739873583232,36893540923977760768,24519905182726150,24519907574746803],[36893505739873583232,36893540924246196352,24519905182726150,24519907574746803],[36893505739874107392,35184372088960,-24519907574746803,-24519905182726150],[36893505739874107392,35184641048704,-24519907574746803,-24519905182726150],[36893505739874107392,36893540923977236608,-24519907574746803,-24519905182726150],[36893505739874107392,36893540924246196352,-24519907574746803,-24519905182726150],[36893523331858301056,35184641048704,24519905182726150,24519907574746803],[36893523331858301056,35184708157440,-24519907574746803,-24519905182726150],[36893523331858301056,36893488147688063104,-24519907574746803,-24519905182726150],[36893523331858301056,36893488147755171840,24519905182726150,24519907574746803],[36893523331858825216,35184641048704,-24519907574746803,-24519905182726150],[36893523331858825216,35184707633280,24519905182726150,24519907574746803],[36893523331858825216,36893488147688063104,24519905182726150,24519907574746803],[36893523331858825216,36893488147754647680,-24519907574746803,-24519905182726150],[36893523332059627528,35184372613256,-13247605129676795,-13247603758912222],[36893523332059627528,35184372744200,1975301823150576,1975303196554503],[36893523332059627528,35184439328776,-13247605134312055,-13247603754276960],[36893523332059627528,35184641048704,13247603758912222,13247605129676795],[36893523332059627528,35184641179648,-1975303196554503,-1975301823150576],[36893523332059627528,35184707764224,13247603754276960,13247605134312055],[36893523332059627528,36893488147419627656,13247603758912222,13247605129676795],[36893523332059627528,36893488147419758600,-1975303196554503,-1975301823150576],[36893523332059627528,36893488147486343176,13247603754276960,13247605134312055],[36893523332059627528,36893488147688063104,-13247605129676795,-13247603758912222],[36893523332059627528,36893488147688194048,1975301823150576,1975303196554503],[36893523332059627528,36893488147754778624,-13247605134312055,-13247603754276960],[36893523332059627648,17592186568704,-1975303193032786,-1975301826672296],[36893523332059627648,17592455004288,-1975303193032786,-1975301826672296],[36893523332059627648,35184372613256,13247603758912222,13247605129676795],[36893523332059627648,35184372744320,-1975303196554503,-1975301823150576],[36893523332059627648,35184439722112,-11272303138139186,-11272300730744752],[36893523332059627648,35184641048584,-13247605129676795,-13247603758912222],[36893523332059627648,35184641179648,1975301823150576,1975303196554503],[36893523332059627648,35184708157440,11272300730744752,11272303138139186],[36893523332059627648,4611686018427912192,1975301826672296,1975303193032786],[36893523332059627648,4611686018696347776,1975301826672296,1975303193032786],[36893523332059627648,36893488147419627656,-13247605129676795,-13247603758912222],[36893523332059627648,36893488147419758720,1975301823150576,1975303196554503],[36893523332059627648,36893488147486736512,11272300730744752,11272303138139186],[36893523332059627648,36893488147688062984,13247603758912222,13247605129676795],[36893523332059627648,36893488147688194048,-1975303196554503,-1975301823150576],[36893523332059627648,36893488147755171840,-11272303138139186,-11272300730744752],[36893523332059627648,36893540923977760768,-1975303193032786,-1975301826672296],[36893523332059627648,36893540924246196352,-1975303193032786,-1975301826672296],[36893523332059627648,41505209350219104256,1975301826672296,1975303193032786],[36893523332059627648,41505209350487539840,1975301826672296,1975303193032786],[36893523332059758592,35184372744200,-1975303196554503,-1975301823150576],[36893523332059758592,35184372744320,13247603758912222,13247605129676795],[36893523332059758592,35184439328776,13247603754276960,13247605134312055],[36893523332059758592,35184641048584,1975301823150576,1975303196554503],[36893523332059758592,35184641048704,-13247605129676795,-13247603758912222],[36893523332059758592,35184707633160,-13247605134312055,-13247603754276960],[36893523332059758592,36893488147419758600,1975301823150576,1975303196554503],[36893523332059758592,36893488147419758720,-13247605129676795,-13247603758912222],[36893523332059758592,36893488147486343176,-13247605134312055,-13247603754276960],[36893523332059758592,36893488147688062984,-1975303196554503,-1975301823150576],[36893523332059758592,36893488147688063104,13247603758912222,13247605129676795],[36893523332059758592,36893488147754647560,13247603754276960,13247605134312055],[36893523332060151808,17592186044544,1975301826672296,1975303193032786],[36893523332060151808,17592455004288,1975301826672296,1975303193032786],[36893523332060151808,35184372744320,-11272303138139186,-11272300730744752],[36893523332060151808,35184439722112,11272300730744752,11272303138139186],[36893523332060151808,35184640655488,11272300730744752,11272303138139186],[36893523332060151808,35184707633280,-11272303138139186,-11272300730744752],[36893523332060151808,4611686018427388032,-1975303193032786,-1975301826672296],[36893523332060151808,4611686018696347776,-1975303193032786,-1975301826672296],[36893523332060151808,36893488147419758720,11272300730744752,11272303138139186],[36893523332060151808,36893488147486736512,-11272303138139186,-11272300730744752],[36893523332060151808,36893488147687669888,-11272303138139186,-11272300730744752],[36893523332060151808,36893488147754647680,11272300730744752,11272303138139186],[36893523332060151808,36893540923977236608,1975301826672296,1975303193032786],[36893523332060151808,36893540924246196352,1975301826672296,1975303193032786],[36893523332060151808,41505209350218580096,-1975303193032786,-1975301826672296],[36893523332060151808,41505209350487539840,-1975303193032786,-1975301826672296],[36893523332060151944,35184372088840,-13247605129676795,-13247603758912222],[36893523332060151944,35184372088960,13247603758912222,13247605129676795],[36893523332060151944,35184641048584,-13247605129676795,-13247603758912222],[36893523332060151944,35184641048704,13247603758912222,13247605129676795],[36893523332060151944,36893488147419103240,13247603758912222,13247605129676795],[36893523332060151944,36893488147419103360,-13247605129676795,-13247603758912222],[36893523332060151944,36893488147688062984,13247603758912222,13247605129676795],[36893523332060151944,36893488147688063104,-13247605129676795,-13247603758912222],[36893523332060282888,35184372088840,1975301823150576,1975303196554503],[36893523332060282888,35184372219904,-1975303196554503,-1975301823150576],[36893523332060282888,35184641048584,1975301823150576,1975303196554503],[36893523332060282888,35184641179648,-1975303196554503,-1975301823150576],[36893523332060282888,36893488147419103240,-1975303196554503,-1975301823150576],[36893523332060282888,36893488147419234304,1975301823150576,1975303196554503],[36893523332060282888,36893488147688062984,-1975303196554503,-1975301823150576],[36893523332060282888,36893488147688194048,1975301823150576,1975303196554503],[36893523332060283008,35184372088960,-1975303196554503,-1975301823150576],[36893523332060283008,35184372219904,13247603758912222,13247605129676795],[36893523332060283008,35184372613120,-11272303138139186,-11272300730744752],[36893523332060283008,35184640655488,11272300730744752,11272303138139186],[36893523332060283008,35184641048704,-13247605129676795,-13247603758912222],[36893523332060283008,35184641179648,1975301823150576,1975303196554503],[36893523332060283008,36893488147419103360,1975301823150576,1975303196554503],[36893523332060283008,36893488147419234304,-13247605129676795,-13247603758912222],[36893523332060283008,36893488147419627520,11272300730744752,11272303138139186],[36893523332060283008,36893488147687669888,-11272303138139186,-11272300730744752],[36893523332060283008,36893488147688063104,13247603758912222,13247605129676795],[36893523332060283008,36893488147688194048,-1975303196554503,-1975301823150576],[36893523332126867464,35184372088840,-13247605134312055,-13247603754276960],[36893523332126867464,35184372219904,13247603754276960,13247605134312055],[36893523332126867464,35184707633160,-13247605134312055,-13247603754276960],[36893523332126867464,35184707764224,13247603754276960,13247605134312055],[36893523332126867464,36893488147419103240,13247603754276960,13247605134312055],[36893523332126867464,36893488147419234304,-13247605134312055,-13247603754276960],[36893523332126867464,36893488147754647560,13247603754276960,13247605134312055],[36893523332126867464,36893488147754778624,-13247605134312055,-13247603754276960],[36893523332127260800,35184372088960,13247603754276960,13247605134312055],[36893523332127260800,35184372613120,-13247605134312055,-13247603754276960],[36893523332127260800,35184707633280,13247603754276960,13247605134312055],[36893523332127260800,35184708157440,-13247605134312055,-13247603754276960],[36893523332127260800,36893488147419103360,-13247605134312055,-13247603754276960],[36893523332127260800,36893488147419627520,13247603754276960,13247605134312055],[36893523332127260800,36893488147754647680,-13247605134312055,-13247603754276960],[36893523332127260800,36893488147755171840,13247603754276960,13247605134312055],[36893540923977236488,35184439328776,22544603189358414,22544604548409457],[36893540923977236488,52776625373184,-22544604548409457,-22544603189358414],[36893540923977236488,36893488147486343176,-22544604548409457,-22544603189358414],[36893540923977236488,36893505739672387584,22544603189358414,22544604548409457],[36893540923977236608,17592455004288,1975301826672296,1975303193032786],[36893540923977236608,35184641048704,-24519907574746803,-24519905182726150],[36893540923977236608,52776827092992,22544603189358414,22544604548409457],[36893540923977236608,36893488147688063104,22544603189358414,22544604548409457],[36893540923977236608,36893505739874107392,-24519907574746803,-24519905182726150],[36893540923977236608,36893523332060151808,1975301826672296,1975303193032786],[36893540923977367552,35184439328776,-22544604548409457,-22544603189358414],[36893540923977367552,52776625242120,22544603189358414,22544604548409457],[36893540923977367552,36893488147486343176,22544603189358414,22544604548409457],[36893540923977367552,36893505739672256520,-22544604548409457,-22544603189358414],[36893540923977760768,17592455004288,-1975303193032786,-1975301826672296],[36893540923977760768,35184641048704,24519905182726150,24519907574746803],[36893540923977760768,52776826568832,-22544604548409457,-22544603189358414],[36893540923977760768,36893488147688063104,-22544604548409457,-22544603189358414],[36893540923977760768,36893505739873583232,24519905182726150,24519907574746803],[36893540923977760768,36893523332059627648,-1975303193032786,-1975301826672296],[36893540924044476424,35184372088840,22544603189358414,22544604548409457],[36893540924044476424,35184372219904,-22544604548409457,-22544603189358414],[36893540924044476424,52776625242120,22544603189358414,22544604548409457],[36893540924044476424,52776625373184,-22544604548409457,-22544603189358414],[36893540924044476424,36893488147419103240,-22544604548409457,-22544603189358414],[36893540924044476424,36893488147419234304,22544603189358414,22544604548409457],[36893540924044476424,36893505739672256520,-22544604548409457,-22544603189358414],[36893540924044476424,36893505739672387584,22544603189358414,22544604548409457],[36893540924246196352,17592186044544,1975301826672296,1975303193032786],[36893540924246196352,17592186568704,-1975303193032786,-1975301826672296],[36893540924246196352,35184372088960,-24519907574746803,-24519905182726150],[36893540924246196352,35184372613120,24519905182726150,24519907574746803],[36893540924246196352,52776826568832,-22544604548409457,-22544603189358414],[36893540924246196352,52776827092992,22544603189358414,22544604548409457],[36893540924246196352,36893488147419103360,22544603189358414,22544604548409457],[36893540924246196352,36893488147419627520,-22544604548409457,-22544603189358414],[36893540924246196352,36893505739873583232,24519905182726150,24519907574746803],[36893540924246196352,36893505739874107392,-24519907574746803,-24519905182726150],[36893540924246196352,36893523332059627648,-1975303193032786,-1975301826672296],[36893540924246196352,36893523332060151808,1975301826672296,1975303193032786],[41505191758032535560,4611686018494627848,1975301826672296,1975303193032786],[41505191758032535560,4611703610680672256,-1975303193032786,-1975301826672296],[41505191758032535560,36893488147486343176,-1975303193032786,-1975301826672296],[41505191758032535560,36893505739672387584,1975301826672296,1975303193032786],[41505191758032666624,4611686018494627848,-1975303193032786,-1975301826672296],[41505191758032666624,4611703610680541192,1975301826672296,1975303193032786],[41505191758032666624,36893488147486343176,1975301826672296,1975303193032786],[41505191758032666624,36893505739672256520,-1975303193032786,-1975301826672296],[41505191758099775496,4611686018427387912,1975301826672296,1975303193032786],[41505191758099775496,4611686018427518976,-1975303193032786,-1975301826672296],[41505191758099775496,4611703610680541192,1975301826672296,1975303193032786],[41505191758099775496,4611703610680672256,-1975303193032786,-1975301826672296],[41505191758099775496,36893488147419103240,-1975303193032786,-1975301826672296],[41505191758099775496,36893488147419234304,1975301826672296,1975303193032786],[41505191758099775496,36893505739672256520,-1975303193032786,-1975301826672296],[41505191758099775496,36893505739672387584,1975301826672296,1975303193032786],[41505209350218580096,4611686018696347776,-1975303193032786,-1975301826672296],[41505209350218580096,4611721203068436480,1975301826672296,1975303193032786],[41505209350218580096,36893488147688063104,1975301826672296,1975303193032786],[41505209350218580096,36893523332060151808,-1975303193032786,-1975301826672296],[41505209350219104256,4611686018696347776,1975301826672296,1975303193032786],[41505209350219104256,4611721203067912320,-1975303193032786,-1975301826672296],[41505209350219104256,36893488147688063104,-1975303193032786,-1975301826672296],[41505209350219104256,36893523332059627648,1975301826672296,1975303193032786],[41505209350487539840,4611686018427388032,-1975303193032786,-1975301826672296],[41505209350487539840,4611686018427912192,1975301826672296,1975303193032786],[41505209350487539840,4611721203067912320,-1975303193032786,-1975301826672296],[41505209350487539840,4611721203068436480,1975301826672296,1975303193032786],[41505209350487539840,36893488147419103360,1975301826672296,1975303193032786],[41505209350487539840,36893488147419627520,-1975303193032786,-1975301826672296],[41505209350487539840,36893523332059627648,1975301826672296,1975303193032786],[41505209350487539840,36893523332060151808,-1975303193032786,-1975301826672296],[1180591620717411303428,2305983747775823872,-22544604572259892,-22544603165507976],[1180591620717411303428,1182897604465187127300,-22544604572259892,-22544603165507976],[1180591620717411336192,2305983747775791108,22544603165507976,22544604572259892],[1180591620717411336192,1182897604465187127300,22544603165507976,22544604572259892],[1180591620718485078020,2305983747775791108,22544603165507976,22544604572259892],[1180591620718485078020,2305983747775823872,-22544604572259892,-22544603165507976],[1180591620718485078020,1182897604464113352708,-22544604572259892,-22544603165507976],[1180591620718485078020,1182897604464113385472,22544603165507976,22544604572259892],[1180591761455973400580,2305843009213726720,-22544604572259892,-22544603165507976],[1180591761455973400580,2305843010287468548,-22544604572259892,-22544603165507976],[1180591761455973400580,1182897604464113385472,-22544604572259892,-22544603165507976],[1180591761455973400580,1182897604465187127300,-22544604572259892,-22544603165507976],[1180591761455973433344,2305843009213693956,22544603165507976,22544604572259892],[1180591761455973433344,2305843010287468548,22544603165507976,22544604572259892],[1180591761455973433344,1182897604464113352708,22544603165507976,22544604572259892],[1180591761455973433344,1182897604465187127300,22544603165507976,22544604572259892],[1182897604464113352708,2305843010287468548,22544603165507976,22544604572259892],[1182897604464113352708,2305983747775823872,-22544604572259892,-22544603165507976],[1182897604464113352708,1180591620718485078020,-22544604572259892,-22544603165507976],[1182897604464113352708,1180591761455973433344,22544603165507976,22544604572259892],[1182897604464113385472,2305843010287468548,-22544604572259892,-22544603165507976],[1182897604464113385472,2305983747775791108,22544603165507976,22544604572259892],[1182897604464113385472,1180591620718485078020,22544603165507976,22544604572259892],[1182897604464113385472,1180591761455973400580,-22544604572259892,-22544603165507976],[1182897604465187127300,2305843009213693956,22544603165507976,22544604572259892],[1182897604465187127300,2305843009213726720,-22544604572259892,-22544603165507976],[1182897604465187127300,2305983747775791108,22544603165507976,22544604572259892],[1182897604465187127300,2305983747775823872,-22544604572259892,-22544603165507976],[1182897604465187127300,1180591620717411303428,-22544604572259892,-22544603165507976],[1182897604465187127300,1180591620717411336192,22544603165507976,22544604572259892],[1182897604465187127300,1180591761455973400580,-22544604572259892,-22544603165507976],[1182897604465187127300,1180591761455973433344,22544603165507976,22544604572259892],[2361183241434822606856,4611703610680672256,-22544604572259892,-22544603165507976],[2361183241434822606856,2365794945045503279112,-22544604572259892,-22544603165507976],[2361183241434822737920,4611703610680541192,22544603165507976,22544604572259892],[2361183241434822737920,2365794945045503279112,22544603165507976,22544604572259892],[2361183241434889846792,4611703610680541192,22544603165507976,22544604572259892],[2361183241434889846792,4611703610680672256,-22544604572259892,-22544603165507976],[2361183241434889846792,2365794945045436039176,-22544604572259892,-22544603165507976],[2361183241434889846792,2365794945045436170240,22544603165507976,22544604572259892],[2361183259027075760136,4611686018427518976,-22544604572259892,-22544603165507976],[2361183259027075760136,4611686018494627848,-22544604572259892,-22544603165507976],[2361183259027075760136,2365794945045436170240,-22544604572259892,-22544603165507976],[2361183259027075760136,2365794945045503279112,-22544604572259892,-22544603165507976],[2361183259027075891200,4611686018427387912,22544603165507976,22544604572259892],[2361183259027075891200,4611686018494627848,22544603165507976,22544604572259892],[2361183259027075891200,2365794945045436039176,22544603165507976,22544604572259892],[2361183259027075891200,2365794945045503279112,22544603165507976,22544604572259892],[2365794945045436039176,4611686018494627848,22544603165507976,22544604572259892],[2365794945045436039176,4611703610680672256,-22544604572259892,-22544603165507976],[2365794945045436039176,2361183241434889846792,-22544604572259892,-22544603165507976],[2365794945045436039176,2361183259027075891200,22544603165507976,22544604572259892],[2365794945045436170240,4611686018494627848,-22544604572259892,-22544603165507976],[2365794945045436170240,4611703610680541192,22544603165507976,22544604572259892],[2365794945045436170240,2361183241434889846792,22544603165507976,22544604572259892],[2365794945045436170240,2361183259027075760136,-22544604572259892,-22544603165507976],[2365794945045503279112,4611686018427387912,22544603165507976,22544604572259892],[2365794945045503279112,4611686018427518976,-22544604572259892,-22544603165507976],[2365794945045503279112,4611703610680541192,22544603165507976,22544604572259892],[2365794945045503279112,4611703610680672256,-22544604572259892,-22544603165507976],[2365794945045503279112,2361183241434822606856,-22544604572259892,-22544603165507976],[2365794945045503279112,2361183241434822737920,22544603165507976,22544604572259892],[2365794945045503279112,2361183259027075760136,-22544604572259892,-22544603165507976],[2365794945045503279112,2361183259027075891200,22544603165507976,22544604572259892]]} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-d5-groups.json.gz b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-d5-groups.json.gz new file mode 100644 index 000000000..2ffd6435e Binary files /dev/null and b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-d5-groups.json.gz differ diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-degree3-rank.json b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-degree3-rank.json new file mode 100644 index 000000000..da76e6d93 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-degree3-rank.json @@ -0,0 +1,10 @@ +{ + "model": "periodic_4x4_square_spin_half_heisenberg", + "decomposition": "four_disjoint_bond_matchings", + "operators": "[H_a,[H_b,H_c]] for a,b,c in {0,1,2,3}", + "columns": 64, + "pauli_rows": 4128, + "exact_rational_rank": 20, + "free_lie_degree_three_dimension_for_four_generators": 20, + "representation_specific_rank_reduction": false +} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-small-crosscheck.json b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-small-crosscheck.json new file mode 100644 index 000000000..4405cc81b --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-small-crosscheck.json @@ -0,0 +1,11 @@ +{ + "length": 2, + "n_sites": 4, + "model_note": "degenerate 2x2 periodic algebra sanity check for schema-v3 r=97", + "steps": 97, + "empirical_operator_norm_error": 9.128277711816321e-10, + "certified_upper_bound": 2.7666666666666666e-08, + "requested_tolerance": 1e-06, + "bound_dominates_empirical_error": true, + "bound_meets_tolerance": true +} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-three-cluster-certificate.json b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-three-cluster-certificate.json new file mode 100644 index 000000000..33f6b3e34 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-three-cluster-certificate.json @@ -0,0 +1,42 @@ +{ + "schema_version": 1, + "benchmark": { + "model": "periodic_square_spin_half_isotropic_heisenberg", + "normalization": "(XX+YY+ZZ)/4", + "length": 12, + "time": [1, 1], + "tolerance": [1, 1000], + "primary_certified_metric": "local_propagator_count", + "secondary_metric": "generic_cnot_upper" + }, + "proof": { + "reference_length": 6, + "scaling": "translation-invariant density times N", + "baseline_decomposition": "four_disjoint_bond_matchings", + "candidate_decomposition": "three_disjoint_L_path_cluster_colors", + "baseline_density": [21, 8], + "candidate_density": [13, 6], + "formula": "second_order_symmetric", + "single_step_bound": "C2*t^3", + "multi_step_bound": "C2*T^3/r^2" + }, + "cost_model": { + "baseline_local_support": "two-site Heisenberg bond", + "candidate_local_support": "three-site L path with two Heisenberg bonds", + "baseline_cnots_per_local_propagator": 3, + "candidate_cnots_per_local_propagator": 9, + "candidate_cnot_value_is_a_generic_encoder_plus_SU4_upper_bound": true + }, + "claimed_resources": { + "baseline_steps": 615, + "candidate_steps": 559, + "baseline_local_propagators": 265752, + "candidate_local_propagators": 107376, + "baseline_cnot_upper": 797256, + "candidate_cnot_upper": 966384 + }, + "claims": { + "local_propagator_improvement_exceeds_two": true, + "compiled_cnot_improvement_exceeds_two": false + } +} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-verification.txt b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-verification.txt new file mode 100644 index 000000000..a88b1069b --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-verification.txt @@ -0,0 +1,91 @@ +Issue #128 deep verification transcript +======================================= + +Status +------ +valid: true +verification_level: deep +deep_proof_regenerated: true +test_suite: 70 passed, 9 slow tests deselected (Python 3.12) + +Benchmark +--------- +Hamiltonian: periodic square-lattice spin-1/2 isotropic Heisenberg +normalization: h_ij = (XX+YY+ZZ)/4 +L: 12 +N: 144 +T: 1 +operator-norm tolerance: 1e-6 +cost: group exponentials, bond propagators, and 3-CNOT-per-bond upper bound + +Published rigorous baseline +--------------------------- +formula: five-copy fourth-order Suzuki formula +published theorem: Childs-Su-Tran-Wiebe-Zhu high-order commutator bound +norm instantiation: expand each partial Hamiltonian sum, then local Pauli-l1 +all 31 theorem centers scanned: center 20 is minimal +certified site-density upper bound: 164.97591695274392 +steps: 393 +group exponentials: 11791 +bond propagators: 848952 +CNOT upper bound: 2546856 + +Candidate certificate +--------------------- +formula: the same five-copy fourth-order Suzuki formula +method: local log E5 + grouped D4 + E7 majorant + exact right-generator tail +certified E5 site Pauli-l1 upper bound: 1.0312915120959002 +certified E7 site majorant: 847.4072568943714 +exact bond Pauli-l1 commutator growth: 1 +local proof: all 16 phase-free two-qubit Pauli cases enumerated exactly +canonical D4 Pauli terms: 75324 +pairwise-anticommuting groups: 7576 +maximum group size: 10 +grouped D4 cell-norm upper bound: 6.472926505087888 +sidecar SHA-256: a397414bb0229fb1ebdb38798aa781fb89dbb9d5cdbed94c7cd2e9120da62718 + +At r=97: +degree-4 contribution: 5.264367936822258e-7 +degree-5 contribution: 1.3834875367446118e-7 +degree-6 contribution: 1.579057000594835e-7 +degree-7 contribution: 1.8946570806914694e-8 +degree >= 8 tail: 1.5425603120834724e-7 +global error upper bound: 9.958938494314325e-7 + +At r=96: +global error upper bound: 1.050565873970784e-6 + +Therefore r=97 is the smallest step count accepted by this certificate. + +Candidate resources +------------------- +steps: 97 +group exponentials: 2911 +bond propagators: 209592 +CNOT upper bound: 628776 + +Certified comparison +-------------------- +exact group/CNOT improvement ratio: 11791/2911 +decimal improvement: 4.050498110614909 +global twofold target met: true +global fourfold target met: true + +Additional published recursive-Suzuki audit +------------------------------------------- +The same generic locality tail theorem gives: + +order steps stages/step merged group exponentials +2 44946 7 269677 +4 1212 31 36361 +6 554 151 83101 +8 503 751 377251 + +These are conservative generic-order bounds, not replacements for the +sharper Childs fourth-order baseline above. They establish that simply +raising the recursive Suzuki order does not create a closer rigorous +competitor for this benchmark. + +Verifier command +---------------- +PYTHONPATH=src python scripts/verify.py certificates/issue128-certificate.json --deep diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/followups/2026-07-29-5x-10x-audit.md b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/followups/2026-07-29-5x-10x-audit.md new file mode 100644 index 000000000..670ef060d --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/followups/2026-07-29-5x-10x-audit.md @@ -0,0 +1,118 @@ +# Issue #128: 5× and 10× certification follow-up audit + +## Starting point + +The submitted certificate fixes the benchmark and circuit: + +```text +L = 12, N = 144, T = 1, epsilon = 1e-6 +five-copy fourth-order Suzuki formula +merged group exponentials = 30 r + 1 +published rigorous baseline = 11791 groups +``` + +The grouped-D4 certificate accepts `r=97` and rejects `r=96`, giving + +```text +11791 / 2911 = 4.050498110614909... +``` + +The following audit keeps the same exact-rational error ledger and asks what +would be required to reach the next resource thresholds. + +## Integer resource thresholds + +Fivefold improvement requires + +```text +30 r + 1 <= floor(11791 / 5), +``` + +so `r <= 78`. Tenfold improvement similarly requires `r <= 39`. + +## Error ledger at the thresholds + +The degree-four through degree-seven terms are rescaled exactly from their +certified `r=97` values. The geometric right-generator tail is reevaluated at +each step count. + +| Contribution | `r=78` (5× threshold) | `r=39` (10× threshold) | +|---|---:|---:| +| Degree 4 | `1.2590841639313686e-6` | `2.0145346622901898e-5` | +| Degree 5 | `4.1149153826738221e-7` | `1.3167729224556231e-5` | +| Degree 6 | `5.8406421306735928e-7` | `3.7380109636310994e-5` | +| Degree 7 | `8.7150631476060649e-8` | `1.1155280828935763e-5` | +| Degree 8 and above | `9.0076387927122002e-7` | `2.580807568220183e-4` | +| **Total** | **`3.2425544260133909e-6`** | **`3.399292231347232e-4`** | +| Total with degree 4 set to zero | `1.9834702620820221e-6` | `3.1978387651182126e-4` | + +## Consequences + +### Fivefold improvement + +Further tightening only the grouped D4 norm cannot reach fivefold +improvement: even an impossible zero D4 contribution leaves +`1.9834702620820221e-6`, above the target. + +The main remaining bottleneck at `r=78` is the degree-eight-and-above +geometric tail (`9.0076e-7`). It nearly exhausts the complete `1e-6` budget +before degrees five through seven are counted. A credible 5× attempt therefore +needs both: + +1. exact canonical coefficient maps and anticommuting/cluster certificates + for D5, D6, and D7; and +2. explicit certification of D8-D10 (or farther), postponing the geometric + tail to a sufficiently high degree. + +This is still plausibly a proof improvement with the same circuit. The +go/no-go test is direct: rebuild the exact ledger at `r=78`; continue only if +the certified sum is at most `1e-6`. + +### Tenfold improvement + +At `r=39`, eliminating D4 entirely still leaves +`3.1978387651182126e-4`, requiring a further factor of about `319.8`. +The tail alone is `2.5808e-4`. Norm tightening within the present +fourth-order ledger is therefore not a realistic route to 10×. + +Tenfold improvement requires changing the low-degree error structure: + +- a local corrector/processor that cancels the leading logarithmic error; +- a model-specific higher-order composition; or +- a shorter sixth-order kernel with a rigorously smaller finite-step tail. + +For the present fourth-order kernel, + +```text +log S(t) = t H + t^5 B + O(t^7). +``` + +A processor `P(t)=exp(t^4 Q)` changes the leading error by a term proportional +to `[Q,H]`. The first exact obstruction test is therefore a rational +translation-orbit linear-algebra problem: + +```text +Does B lie in image(ad_H) for a finite-range SU(2)-invariant/chirality basis Q? +``` + +If yes, certify the processed fifth- and higher-degree defect and include the +two endpoint processor costs. If not, record the exact residual rank and move +to model-specific stage optimization or a sixth-order kernel. + +## Recommended implementation order + +1. Replace the memory-heavy general local-series expansion with a streamed + integer/symplectic recurrence for canonical D5-D10 coefficient maps. +2. Reuse the existing exact anticommuting sidecar format for each degree. +3. Reevaluate `r=78`; this is the 5× decision point. +4. In parallel, build the exact `image(ad_H)` rank test for chirality and + short-range SU(2)-invariant processor bases. +5. Only if the leading error is exactly cancellable, implement the processed + finite-step certificate and compilation ledger. +6. Otherwise search short symmetric sixth-order formulas, screening candidates + with local leading-error norms before interval certification. + +The 4.050× result is complete without these follow-ups. This audit separates +the next proof-tightening target (5×) from the order-lift target (10×) and +prevents spending further effort on D4 optimization that cannot cross either +integer boundary by itself. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/CITATION_AUDIT.md b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/CITATION_AUDIT.md new file mode 100644 index 000000000..cbeb6d903 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/CITATION_AUDIT.md @@ -0,0 +1,23 @@ +# Citation audit + +Audit date: 2026-07-31 (Asia/Shanghai) + +The compiled manuscript contains 23 references. All 23 were checked by stable +identifier and title before finalization. + +| Validation route | Count | Result | +|---|---:|---| +| DOI queried through OpenAlex | 13 | 13 exact title/DOI matches | +| Modern arXiv identifier queried through the arXiv API | 8 | 8 exact title/ID matches | +| Legacy arXiv identifier (`quant-ph/9705052`) | 1 | Exact title, author, and year match | +| Oxford Academic official catalog | 1 | Exact book title, author, year, publisher, ISBN, and DOI match | + +The book not returned by the OpenAlex title search was Christophe Reutenauer, +*Free Lie Algebras*. It was verified against the +[Oxford Academic catalog](https://academic.oup.com/book/53911): published May +6, 1993 by Oxford University Press, print ISBN `9780198536796`, DOI +`10.1093/oso/9780198536796.001.0001`. + +No citation was classified as not found, mismatched, or invalid. The PDF's +reference list is generated from `references.bib`; inline claims about the +literature remain deliberately scoped by the comparison taxonomy in the paper. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/Makefile b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/Makefile new file mode 100644 index 000000000..e115ba030 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/Makefile @@ -0,0 +1,16 @@ +PYTHON ?= python3 +LATEXMK ?= latexmk +JOBNAME := issue128-proof-carrying-trotter-paper +OUTDIR := output/pdf + +.PHONY: check figures pdf + +check: + $(PYTHON) scripts/validate_claims.py + +figures: + $(PYTHON) scripts/generate_figures.py + +pdf: check figures + $(LATEXMK) -pdf -interaction=nonstopmode -halt-on-error \ + -jobname=$(JOBNAME) -outdir=$(OUTDIR) main.tex diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/README.md b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/README.md new file mode 100644 index 000000000..ebd41677c --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/README.md @@ -0,0 +1,54 @@ +# Long-form Issue 128 manuscript + +This directory contains the full English research-paper treatment of the +machine-certified Issue 128 result. The authoritative exact numbers remain in +`../../certificates/issue128-certificate.json` and its hashed sidecars; the PDF +is a human-readable derived artifact. + +## Build + +From this directory: + +```bash +make pdf +``` + +The final file is: + +```text +output/pdf/issue128-proof-carrying-trotter-paper.pdf +``` + +The build first validates headline claims against the frozen JSON, regenerates +the four vector PDF figures, and then runs `latexmk` with BibTeX until all +cross-references settle. + +Equivalent commands are: + +```bash +python3 scripts/validate_claims.py +python3 scripts/generate_figures.py +latexmk -pdf -interaction=nonstopmode -halt-on-error \ + -jobname=issue128-proof-carrying-trotter-paper \ + -outdir=output/pdf main.tex +``` + +## Verification levels + +From the Issue 128 root: + +```bash +pytest -q +PYTHONPATH=src python3 scripts/verify.py \ + certificates/issue128-certificate.json +``` + +The expensive independent replay is optional: + +```bash +PYTHONPATH=src python3 scripts/verify.py \ + certificates/issue128-certificate.json --deep +``` + +See `CITATION_AUDIT.md` for the reference-validation result. Generated LaTeX +auxiliary files are ignored; the named final PDF is retained. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/figures/d4_norm.pdf b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/figures/d4_norm.pdf new file mode 100644 index 000000000..3290334f7 Binary files /dev/null and b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/figures/d4_norm.pdf differ diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/figures/error_ledger.pdf b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/figures/error_ledger.pdf new file mode 100644 index 000000000..0c504e8d7 Binary files /dev/null and b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/figures/error_ledger.pdf differ diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/figures/fivefold_gap.pdf b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/figures/fivefold_gap.pdf new file mode 100644 index 000000000..92062f403 Binary files /dev/null and b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/figures/fivefold_gap.pdf differ diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/figures/resources.pdf b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/figures/resources.pdf new file mode 100644 index 000000000..6553ea15f Binary files /dev/null and b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/figures/resources.pdf differ diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/main.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/main.tex new file mode 100644 index 000000000..fd6b73f8f --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/main.tex @@ -0,0 +1,107 @@ +\documentclass[11pt]{article} + +\usepackage[margin=0.82in]{geometry} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage{lmodern} +\usepackage{microtype} +\usepackage{amsmath,amssymb,amsthm,mathtools} +\usepackage{booktabs,tabularx,array,longtable,multirow} +\usepackage{xcolor} +\usepackage{graphicx} +\usepackage{enumitem} +\usepackage{algorithm} +\usepackage{algpseudocode} +\usepackage{siunitx} +\usepackage{tikz} +\usetikzlibrary{arrows.meta,positioning,fit,backgrounds} +\usepackage[numbers,sort&compress]{natbib} +\usepackage{hyperref} +\usepackage[nameinlink,noabbrev]{cleveref} +\usepackage{fancyhdr} +\makeatletter +\renewcommand{\theALG@line}{\thealgorithm.\arabic{ALG@line}} +\providecommand*{\theHALG@line}{} +\renewcommand*{\theHALG@line}{\thealgorithm.\arabic{ALG@line}} +\makeatother + +\definecolor{certblue}{HTML}{2455A4} +\definecolor{certgreen}{HTML}{2A7F62} +\definecolor{certorange}{HTML}{D97706} +\definecolor{certred}{HTML}{B42318} +\hypersetup{ + colorlinks=true, + linkcolor=certblue, + citecolor=certgreen, + urlcolor=certblue, + pdftitle={Proof-Carrying, Model-Aware Compilation of Rigorous Trotter Resource Bounds}, + pdfauthor={Junkai Wang} +} + +\pagestyle{fancy} +\fancyhf{} +\fancyhead[L]{Proof-Carrying Trotter Resource Bounds} +\fancyhead[R]{J. Wang} +\fancyfoot[C]{\thepage} +\setlength{\headheight}{14pt} +\setlength{\parindent}{1.25em} +\setlength{\parskip}{0.22em} +\setlength{\emergencystretch}{3em} +\setlist{itemsep=0.25em,topsep=0.35em} + +\newtheorem{theorem}{Theorem}[section] +\newtheorem{lemma}[theorem]{Lemma} +\newtheorem{proposition}[theorem]{Proposition} +\newtheorem{corollary}[theorem]{Corollary} +\theoremstyle{definition} +\newtheorem{definition}[theorem]{Definition} +\newtheorem{remark}[theorem]{Remark} + +\newcommand{\opnorm}[1]{\left\lVert #1\right\rVert} +\newcommand{\paulinorm}[1]{\left\lVert #1\right\rVert_{1,\mathrm{P}}} +\newcommand{\comm}[2]{\left[#1,#2\right]} +\newcommand{\ad}{\operatorname{ad}} +\newcommand{\eps}{\varepsilon} +\newcommand{\cert}{\textsc{Cert}} +\newcommand{\code}[1]{\texttt{#1}} +\newcommand{\Rge}{R_{\ge 8}} + +\title{\textbf{Proof-Carrying, Model-Aware Compilation of\\ +Rigorous Trotter Resource Bounds}\\[0.4em] +\large A Machine-Certified $4.050498\times$ Reduction for a\\ +Two-Dimensional Heisenberg Benchmark} +\author{Junkai Wang\\ +\small WangTheoPhys / Wander Team\\ +\small Quantum Circuit Simulation Track\\ +\small \href{mailto:WangTheoPhys@outlook.com}{WangTheoPhys@outlook.com}} +\date{July 31, 2026} + +\begin{document} +\maketitle +\input{sections/abstract} +\tableofcontents +\clearpage + +\input{sections/introduction} +\input{sections/problem} +\input{sections/baseline} +\input{sections/compiler} +\input{sections/free_lie} +\input{sections/pauli} +\input{sections/norm_certificate} +\input{sections/finite_step} +\input{sections/verification} +\input{sections/results} +\input{sections/related_work} +\input{sections/limitations} +\input{sections/reproducibility} +\input{sections/conclusion} + +\appendix +\input{sections/appendices} + +{\small +\bibliographystyle{unsrtnat} +\bibliography{references} +} +\end{document} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/output/pdf/.gitignore b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/output/pdf/.gitignore new file mode 100644 index 000000000..1f04081b4 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/output/pdf/.gitignore @@ -0,0 +1,3 @@ +* +!.gitignore +!issue128-proof-carrying-trotter-paper.pdf diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/output/pdf/issue128-proof-carrying-trotter-paper.pdf b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/output/pdf/issue128-proof-carrying-trotter-paper.pdf new file mode 100644 index 000000000..bf74213d6 Binary files /dev/null and b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/output/pdf/issue128-proof-carrying-trotter-paper.pdf differ diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/references.bib b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/references.bib new file mode 100644 index 000000000..0897b264d --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/references.bib @@ -0,0 +1,135 @@ +@article{childs2021trotter, + title={Theory of Trotter Error with Commutator Scaling}, + author={Childs, Andrew M. and Su, Yuan and Tran, Minh C. and Wiebe, Nathan and Zhu, Shuchen}, + journal={Physical Review X}, + volume={11}, number={1}, pages={011020}, year={2021}, + doi={10.1103/PhysRevX.11.011020}, eprint={1912.08854}, archivePrefix={arXiv} +} +@article{childs2019lattice, + title={Nearly Optimal Lattice Simulation by Product Formulas}, + author={Childs, Andrew M. and Su, Yuan}, + journal={Physical Review Letters}, volume={123}, pages={050503}, year={2019}, + doi={10.1103/PhysRevLett.123.050503} +} +@article{schubert2023hubbard, + title={Trotter Error with Commutator Scaling for the {Fermi--Hubbard} Model}, + author={Schubert, Ansgar and Mendl, Christian B.}, + journal={arXiv preprint arXiv:2306.10603}, year={2023}, + eprint={2306.10603}, archivePrefix={arXiv}, primaryClass={quant-ph} +} +@article{sahinoglu2021lowenergy, + title={Hamiltonian Simulation in the Low-Energy Subspace}, + author={\c{S}ahino\u{g}lu, Burak and Somma, Rolando D.}, + journal={npj Quantum Information}, volume={7}, pages={119}, year={2021}, + doi={10.1038/s41534-021-00451-w} +} +@article{chen2024average, + title={Average-Case Speedup for Product Formulas}, + author={Chen, Chi-Fang and Brand\~ao, Fernando G. S. L.}, + journal={Communications in Mathematical Physics}, volume={405}, pages={32}, year={2024}, + doi={10.1007/s00220-023-04912-5} +} +@article{zhuk2024dynamic, + title={Trotter Error Bounds and Dynamic Multi-Product Formulas for Hamiltonian Simulation}, + author={Zhuk, Sergiy and Robertson, Niall F. and Bravyi, Sergey}, + journal={Physical Review Research}, volume={6}, pages={033309}, year={2024}, + doi={10.1103/PhysRevResearch.6.033309} +} +@article{aftab2024mpf, + title={Multi-Product Hamiltonian Simulation with Explicit Commutator Scaling}, + author={Aftab, Junaid and An, Dong and Trivisa, Konstantina}, + journal={arXiv preprint arXiv:2403.08922}, year={2024}, + eprint={2403.08922}, archivePrefix={arXiv}, primaryClass={quant-ph} +} +@article{rendon2024chebyshev, + title={Improved Accuracy for Trotter Simulations Using Chebyshev Interpolation}, + author={Rendon, Gumaro and Watkins, Jacob and Wiebe, Nathan}, + journal={Quantum}, volume={8}, pages={1266}, year={2024}, + doi={10.22331/q-2024-02-26-1266} +} +@article{cho2024doubling, + title={Doubling the Order of Approximation via the Randomized Product Formula}, + author={Cho, Chien-Hung and Berry, Dominic W. and Hsieh, Min-Hsiu}, + journal={Physical Review A}, volume={109}, pages={062431}, year={2024}, + doi={10.1103/PhysRevA.109.062431} +} +@article{burgarth2024strong, + title={Strong Error Bounds for Trotter and Strang Splittings and Their Implications for Quantum Chemistry}, + author={Burgarth, Daniel and Facchi, Paolo and Hahn, Alexander and Johnsson, Mattias and Yuasa, Kazuya}, + journal={Physical Review Research}, volume={6}, pages={043155}, year={2024}, + doi={10.1103/PhysRevResearch.6.043155} +} +@article{hahn2024lower, + title={Lower Bounds for the Trotter Error}, + author={Hahn, Alexander and Hartung, Paul and Burgarth, Daniel and Facchi, Paolo and Yuasa, Kazuya}, + journal={arXiv preprint arXiv:2410.03059}, year={2024}, + eprint={2410.03059}, archivePrefix={arXiv}, primaryClass={quant-ph} +} +@article{bosse2025thrift, + title={Efficient and Practical Hamiltonian Simulation from Time-Dependent Product Formulas}, + author={Bosse, Jan Lukas and Childs, Andrew M. and Derby, Charles and Gambetta, Filippo Maria and Montanaro, Ashley and Santos, Raul A.}, + journal={Nature Communications}, volume={16}, pages={2673}, year={2025}, + doi={10.1038/s41467-025-57580-5} +} +@article{zeng2025lcu, + title={Simple and High-Precision Hamiltonian Simulation by Compensating Trotter Error with Linear Combination of Unitary Operations}, + author={Zeng, Pei and Sun, Jinzhao and Jiang, Liang and Zhao, Qi}, + journal={PRX Quantum}, volume={6}, pages={010359}, year={2025}, + doi={10.1103/PRXQuantum.6.010359} +} +@article{watson2025mitigation, + title={Exponentially Reduced Circuit Depths Using Trotter Error Mitigation}, + author={Watson, James D. and Watkins, Jacob}, + journal={PRX Quantum}, volume={6}, pages={030325}, year={2025}, + doi={10.1103/kw39-yxq5} +} +@article{mizuta2026mpf, + title={On the Commutator Scaling in Hamiltonian Simulation with Multi-Product Formulas}, + author={Mizuta, Kaoru}, + journal={Quantum}, volume={10}, pages={1974}, year={2026}, + doi={10.22331/q-2026-01-19-1974} +} +@article{mizuta2026timedependent, + title={Explicit Error Bounds with Commutator Scaling for Time-Dependent Product and Multi-Product Formulas}, + author={Mizuta, Kaoru and Ikeda, Tatsuhiko N. and Fujii, Keisuke}, + journal={arXiv preprint arXiv:2410.14243}, year={2026}, + eprint={2410.14243}, archivePrefix={arXiv}, primaryClass={quant-ph} +} +@article{malezic2026schemes, + title={Reducing the Gate Count with Efficient Trotter--Suzuki Schemes}, + author={Male\v{z}i\v{c}, Marko and Ostmeyer, Johann}, + journal={arXiv preprint arXiv:2602.21145}, year={2026}, + eprint={2602.21145}, archivePrefix={arXiv}, primaryClass={quant-ph} +} +@article{tate2026ordering, + title={An Analysis of Commutation-Based Trotter Ordering Strategies on Heisenberg-Style Hamiltonians}, + author={Tate, Reuben and Aktar, Shamminuj and Eidenbenz, Stephan}, + journal={arXiv preprint arXiv:2604.23138}, year={2026}, + eprint={2604.23138}, archivePrefix={arXiv}, primaryClass={quant-ph} +} +@article{maxwell2026practical, + title={Practical Estimation of Trotter Error for Hamiltonian Simulation}, + author={Maxwell, William and Casares, Pablo A. M. and Lang, Robert A. and Fomichev, Stepan and Arrazola, Juan Miguel and Jahangiri, Soran and Asadi, Ali and Nunez Meneses, Luis Alfredo and Germain, Thomas and Motlagh, Danial}, + journal={arXiv preprint arXiv:2606.30738}, year={2026}, + eprint={2606.30738}, archivePrefix={arXiv}, primaryClass={quant-ph} +} +@article{wang2026hncc, + title={Trotter Error Compensation with Polylogarithmic Precision and Nested-Commutator Scaling without Ancillas}, + author={Wang, Xinzhao and Zhou, Shuo and Wang, Ziruo and Zeng, Pei and Sun, Jinzhao and Zhao, Qi and Gur, Tom and Li, Tongyang}, + journal={arXiv preprint arXiv:2607.11856}, year={2026}, + eprint={2607.11856}, archivePrefix={arXiv}, primaryClass={quant-ph} +} +@article{suzuki1991general, + title={General Theory of Fractal Path Integrals with Applications to Many-Body Theories and Statistical Physics}, + author={Suzuki, Masuo}, journal={Journal of Mathematical Physics}, + volume={32}, pages={400--407}, year={1991}, doi={10.1063/1.529425} +} +@book{reutenauer1993free, + title={Free Lie Algebras}, author={Reutenauer, Christophe}, + publisher={Oxford University Press}, year={1993}, + doi={10.1093/oso/9780198536796.001.0001}, isbn={9780198536796} +} +@phdthesis{gottesman1997stabilizer, + title={Stabilizer Codes and Quantum Error Correction}, author={Gottesman, Daniel}, + school={California Institute of Technology}, year={1997}, eprint={quant-ph/9705052}, archivePrefix={arXiv} +} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/scripts/generate_figures.py b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/scripts/generate_figures.py new file mode 100644 index 000000000..1faef3b9b --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/scripts/generate_figures.py @@ -0,0 +1,91 @@ +#!/usr/bin/env python3 +import json +from pathlib import Path + +import matplotlib.pyplot as plt +import numpy as np + +ROOT = Path(__file__).resolve().parents[3] +OUT = Path(__file__).resolve().parents[1] / "figures" +OUT.mkdir(parents=True, exist_ok=True) + +with (ROOT / "artifacts/issue128-summary.json").open() as handle: + summary = json.load(handle) + +plt.rcParams.update({ + "font.size": 9, + "axes.titlesize": 10, + "axes.labelsize": 9, + "legend.fontsize": 8, + "pdf.fonttype": 42, + "ps.fonttype": 42, +}) +blue, green, orange, red = "#2455A4", "#2A7F62", "#D97706", "#B42318" + +labels = ["Steps", "Merged groups", "Bond propagators", "CNOT upper"] +baseline = np.array([393, 11791, 848952, 2546856], dtype=float) +candidate = np.array([97, 2911, 209592, 628776], dtype=float) +x = np.arange(len(labels)) +fig, ax = plt.subplots(figsize=(6.6, 3.1)) +ax.bar(x - 0.19, np.ones(4), 0.38, label="Pinned baseline", color=blue) +ax.bar(x + 0.19, candidate / baseline, 0.38, label="Certified result", color=green) +ax.set_xticks(x, labels) +ax.set_ylabel("Resource normalized to baseline") +ax.set_ylim(0, 1.08) +for i, ratio in enumerate(candidate / baseline): + ax.text(i + 0.19, ratio + 0.025, f"{ratio:.3f}", ha="center", va="bottom") +ax.legend(frameon=False, ncol=2, loc="upper right") +ax.grid(axis="y", alpha=0.25) +fig.tight_layout() +fig.savefig(OUT / "resources.pdf", bbox_inches="tight") +plt.close(fig) + +ledger = summary["error_ledger"] +names = ["D4", "D5", "D6", "D7", "D8+"] +values = [float(ledger[k]["decimal_outward"].replace("e", "E")) for k in ["degree4", "degree5", "degree6", "degree7", "tail"]] +fig, ax = plt.subplots(figsize=(6.6, 3.15)) +bars = ax.bar(names, np.array(values) * 1e7, color=[blue, green, orange, "#7A5195", red]) +ax.axhline(10.0, color="black", linestyle="--", linewidth=1, label=r"total tolerance $10^{-6}$") +ax.set_ylabel(r"Contribution ($10^{-7}$)") +ax.set_title(r"Certified right-generator ledger at $r=97$") +for bar, value in zip(bars, values): + ax.text(bar.get_x() + bar.get_width()/2, bar.get_height() + 0.12, f"{value:.2e}", ha="center", fontsize=8) +ax.legend(frameon=False) +ax.grid(axis="y", alpha=0.25) +fig.tight_layout() +fig.savefig(OUT / "error_ledger.pdf", bbox_inches="tight") +plt.close(fig) + +direct, grouped = 20.160968407335066, 6.472926505087888 +fig, ax = plt.subplots(figsize=(5.2, 3.0)) +bars = ax.bar(["Termwise Pauli $\\ell_1$", "Certified anticommuting groups"], [direct, grouped], color=[orange, green]) +ax.set_ylabel("D4 translation-cell norm bound") +ax.set_title("Norm-last structural reduction") +ax.text(0.5, 0.82, f"{direct/grouped:.6f}x tighter", transform=ax.transAxes, ha="center", color=blue, fontweight="bold") +for bar, value in zip(bars, [direct, grouped]): + ax.text(bar.get_x()+bar.get_width()/2, value+0.35, f"{value:.6f}", ha="center", fontsize=8) +ax.set_ylim(0, 23) +ax.grid(axis="y", alpha=0.25) +fig.tight_layout() +fig.savefig(OUT / "d4_norm.pdf", bbox_inches="tight") +plt.close(fig) + +five_names = ["D4", "D5", "D6", "D7", "D8+"] +five_values = np.array([1.2590841639313686e-6, 4.1149153826738221e-7, 5.8406421306735928e-7, 8.7150631476060649e-8, 9.0076387927122002e-7]) +fig, ax = plt.subplots(figsize=(6.6, 3.45)) +bottom = 0.0 +colors = [blue, green, orange, "#7A5195", red] +for name, value, color in zip(five_names, five_values, colors): + ax.bar(["$r=78$ conditional audit"], [value*1e6], bottom=bottom, label=name, color=color) + bottom += value*1e6 +ax.axhline(1.0, color="black", linestyle="--", linewidth=1.2, label=r"target $10^{-6}$") +ax.set_ylabel(r"Error upper-bound ledger ($10^{-6}$)") +ax.set_title("Fivefold feasibility gap: not a global certificate", pad=10) +ax.text(0, bottom-0.10, f"total = {bottom:.3f} x target", ha="center", va="top", color="white", fontweight="bold") +ax.set_ylim(0, 3.65) +ax.legend(frameon=False, ncol=1, loc="upper left", bbox_to_anchor=(1.01, 1.0), borderaxespad=0) +fig.tight_layout() +fig.savefig(OUT / "fivefold_gap.pdf", bbox_inches="tight") +plt.close(fig) + +print(f"figures={len(list(OUT.glob('*.pdf')))}") diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/scripts/validate_claims.py b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/scripts/validate_claims.py new file mode 100644 index 000000000..6d73ac1e4 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/scripts/validate_claims.py @@ -0,0 +1,38 @@ +#!/usr/bin/env python3 +from fractions import Fraction +import json +from pathlib import Path + +ROOT = Path(__file__).resolve().parents[3] + +with (ROOT / "artifacts/issue128-summary.json").open() as handle: + summary = json.load(handle) +with (ROOT / "certificates/issue128-certificate.json").open() as handle: + certificate = json.load(handle) + +baseline = certificate["published_baseline"] +candidate = certificate["candidate"] +resources = certificate["claimed_resources"] + +assert baseline["steps"] == 393 +assert candidate["steps"] == 97 +assert resources["published_group_exponentials"] == 11791 +assert resources["candidate_group_exponentials"] == 2911 +assert resources["published_bond_propagators"] == 848952 +assert resources["candidate_bond_propagators"] == 209592 +assert resources["published_cnot_upper"] == 2546856 +assert resources["candidate_cnot_upper"] == 628776 +assert Fraction(11791, 2911) > 4 +assert summary["improvement"]["exact_ratio"] == [11791, 2911] + +tolerance = Fraction(*certificate["benchmark"]["tolerance"]) +accepted = Fraction(*candidate["global_error_upper"]) +rejected = Fraction(*candidate["previous_step_error_upper"]) +assert accepted < tolerance +assert rejected > tolerance +assert candidate["d4_certificate"]["term_count"] == 75324 +assert candidate["d4_certificate"]["group_count"] == 7576 +assert candidate["d4_certificate"]["max_group_size"] == 10 +assert summary["fivefold_followup"]["status"] == "not_certified" + +print("headline_claims=PASS") diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/abstract.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/abstract.tex new file mode 100644 index 000000000..8291a4820 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/abstract.tex @@ -0,0 +1,34 @@ +\begin{abstract} +Rigorous product-formula resource estimates often lose most of their useful +model structure before the final norm is evaluated. We introduce a +proof-carrying, model-aware compiler that delays norm inequalities while +translating a product formula through four intermediate representations: +sparse free associative words, homogeneous free-Lie defects, concrete +symplectic Pauli ledgers, and exact rational norm certificates. The compiler +combines identical translated Pauli strings before taking norms and replaces +termwise Pauli-$\ell_1$ estimates by independently verified +pairwise-anticommuting groups whenever possible. A finite right-logarithmic +generator expansion and an outward-rational geometric tail then convert the +local certificate into a nonasymptotic global error bound and an integer gate +count. + +For the periodic $12\times12$ spin-$1/2$ isotropic Heisenberg model at +$T=1$ and global operator-norm tolerance $10^{-6}$, we compare the same four +matching fragments, the same 31-stage five-copy fourth-order Suzuki formula, +and the same compilation cost on both sides. A pinned interval instantiation +of the Childs--Su--Tran--Wiebe--Zhu high-order commutator theorem requires 393 +steps and 11,791 merged group exponentials. Our certificate accepts 97 steps +and rejects 96, requiring 2,911 groups. The exact improvement is +$11791/2911=4.050498110614909\ldots$, a 75.3117\% reduction. The leading D4 +sidecar contains 75,324 canonical Pauli terms partitioned into 7,576 verified +anticommuting groups. The search procedure is outside the trusted computing +base: a smaller verifier rechecks coverage, every anticommutation relation, +outward square-root bounds, the finite-step ledger, the adjacent integer +boundary, and all resource arithmetic. An exact D5 side study and a +quantitative fivefold feasibility audit are reported separately; no 78-step +global certificate is claimed. +\end{abstract} + +\noindent\textbf{Keywords:} Hamiltonian simulation; Trotter--Suzuki product +formulas; rigorous error bounds; Pauli algebra; computer-assisted proof; +quantum resource estimation. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/appendices.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/appendices.tex new file mode 100644 index 000000000..02c430b86 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/appendices.tex @@ -0,0 +1,195 @@ +\section{Right-Generator Expansion Details} +\label{app:right-generator} + +This appendix records the finite-order identity used by the certificate. Let +\begin{equation} + Z(t)=\log S_4(t)=tA+t^5B+t^7C+O(t^9). +\end{equation} +Using +\begin{equation} + \operatorname{dexp}_{Z}(Z')= + Z'+\frac12[Z,Z']+\frac16[Z,[Z,Z']] + +\frac1{24}[Z,[Z,[Z,Z']]]+\cdots, +\end{equation} +and collecting powers through $t^7$ gives +\begin{align} + S_4'(t)S_4(t)^{-1}-A + ={}&5t^4B+2t^5[A,B] + +t^6\left(7C+\frac23[A,[A,B]]\right)\nonumber\\ + &+t^7\left(3[A,C]+\frac16[A,[A,[A,B]]]\right) + +R_{\geq8}(t). + \label{eq:exact-right-expansion} +\end{align} +For example, the $t^5[A,B]$ coefficient comes from +$\frac12[tA,5t^4B]+\frac12[t^5B,A]=2t^5[A,B]$. +The later coefficients follow by the same homogeneous bookkeeping. The +implementation constructs the series in the word algebra and regression-tests +\cref{eq:exact-right-expansion}; it does not substitute the printed identity +as an unchecked constant table. + +The global contribution of a monomial $t^jD_j$ follows from +\cref{eq:global-duhamel}: +\begin{equation} + r\int_0^{T/r}s^j\opnorm{D_j}\,ds + =\frac{T^{j+1}\opnorm{D_j}}{(j+1)r^j}. + \label{eq:monomial-global} +\end{equation} +This explains the degree labels in the result ledger and provides a direct +dimensional check on the inverse powers of $r$. + +\section{Local Heisenberg Pauli Audit} +\label{app:local-pauli} + +The single-bond lemma can be checked without symbolic software. Let +$Q_1=XX$, $Q_2=YY$, and $Q_3=ZZ$. For a phase-free two-qubit Pauli +$P=P_1\otimes P_2$, the number of $Q_j$ that anticommute with $P$ is either +zero or two. One compact enumeration is shown in \cref{tab:local-audit}; rows +and columns give the one-qubit factors. + +\begin{table}[ht] +\centering +\caption{Number of anticommuting terms among $XX,YY,ZZ$ for every local +two-qubit Pauli.} +\label{tab:local-audit} +\begin{tabular}{@{}c|rrrr@{}} +\toprule +$P_1\backslash P_2$ & $I$ & $X$ & $Y$ & $Z$ \\ +\midrule +$I$ & 0 & 2 & 2 & 2 \\ +$X$ & 2 & 0 & 2 & 2 \\ +$Y$ & 2 & 2 & 0 & 2 \\ +$Z$ & 2 & 2 & 2 & 0 \\ +\bottomrule +\end{tabular} +\end{table} + +If the count is zero, $[h,P]=0$. If it is two, each contributing Hamiltonian +coefficient has magnitude $1/4$ and the Pauli commutator supplies magnitude +two, giving two output coefficients of magnitude $1/2$. Their +Pauli-$\ell_1$ sum is one. Hence +\begin{equation} + \paulinorm{[h,P]}\leq1=\paulinorm{P} +\end{equation} +for a unit Pauli input, and linearity extends the stated growth majorant. The +generic bound obtained by summing the three Hamiltonian Paulis independently +would give $3/2$; the exact parity enumeration removes the impossible third +contribution. + +\section{Verifier Pseudocode} +\label{app:verifier} + +\begin{algorithm}[ht] +\caption{Independent verification of the principal certificate} +\label{alg:verifier} +\begin{algorithmic}[1] +\Require main certificate $C$ and sidecar directory +\State validate schema version and required benchmark fields +\State recompute SHA-256 for every referenced sidecar +\State verify formula, normalization, $T$, $\eps$, and cost-model identities +\State load the D4 coefficient ledger and declared group partition +\State verify exact coverage: no missing, duplicate, or unknown Pauli key +\For{every group $G$} + \For{every unordered pair $(P,Q)\subseteq G$} + \State require symplectic parity$(P,Q)=1$ + \EndFor + \State recompute the rational squared-weight sum + \State require declared upper root squared $\geq$ recomputed sum +\EndFor +\State sum all group roots and compare to the D4 cell enclosure +\State verify D5--D7 and tail preconditions and contributions +\State sum the accepted-step global rational; require result $\leq\eps$ +\State sum the previous-step rational; require result $>\eps$ +\State recompute $G(r)$, bond propagators, CNOT totals, and exact ratio +\State return a structured success record; fail closed on any mismatch +\end{algorithmic} +\end{algorithm} + +Deep mode inserts regeneration of the baseline center scan, complete formula +logarithm, DSW defects, Pauli coefficient map, and higher-degree majorants +before the certificate comparisons. Importantly, both modes fail closed: +unknown schema versions, absent files, extra group members, and invalid +interval orientation are errors rather than warnings. + +\section{Certificate Schema Sketch} +\label{app:schema} + +\begin{longtable}{@{}p{0.29\textwidth}p{0.19\textwidth}p{0.44\textwidth}@{}} +\caption{Selected schema-v3 fields and verification obligations.} +\label{tab:schema}\\ +\toprule +Field & Type & Obligation \\ +\midrule +\endfirsthead +\toprule +Field & Type & Obligation \\ +\midrule +\endhead +\path{benchmark} & object & Exact model, normalization, size, time, +tolerance, and primary metric match the claim \\ +\path{published_baseline.site_density_upper} & integer pair & Denominator is +positive and deep regeneration is enclosed \\ +\path{candidate.d4_certificate.path} & relative path & Resolves inside the +bundle; no path traversal \\ +\path{candidate.d4_certificate.sha256} & 64-hex digest & Equals the bytes of +the resolved sidecar \\ +\path{candidate.contributions} & rational pairs & Each pair has positive +denominator and agrees with recomputed bounds \\ +\path{candidate.global_error_upper} & rational pair & Equals or dominates +the contribution sum and is below tolerance \\ +\path{candidate.previous_step_error_upper} & rational pair & Correctly +evaluated at $r-1$ and exceeds tolerance \\ +\path{cost_model} & integers/rule & Resource identities are evaluated without +floating point \\ +\path{claimed_resources} & integer object & Every total is reconstructed from +the step count and cost model \\ +\path{claims.exact_improvement_ratio} & integer pair & Equals the declared +baseline and candidate group counts \\ +\bottomrule +\end{longtable} + +\section{Additional Interpretation of the Improvement} +\label{app:interpretation} + +Several ratios appear in the analysis and should not be conflated: +\begin{align} +\text{D4 norm tightening} + &=\frac{20.160968407335066}{6.472926505087888} + =3.114660484942633\ldots,\\ +\text{step ratio} + &=\frac{393}{97}=4.051546391752577\ldots,\\ +\text{compiled resource ratio} + &=\frac{30\cdot393+1}{30\cdot97+1} + =\frac{11791}{2911} + =4.050498110614909\ldots. +\end{align} +The step and resource ratios differ because the first and last fragment groups +merge to give the additive one in \cref{eq:merged-groups}. The norm ratio is +not expected to equal either: a fourth-order global error scales roughly as +$r^{-4}$ only in a leading asymptotic regime, while the actual accepted point +contains D5--D7, a tail, and integer rounding. + +The improvement relative to the challenge's twofold target is +\begin{equation} + \frac{(11791/2911)}{2}=2.025249055307454\ldots. +\end{equation} +This means the achieved multiplier is just over twice the requested +multiplier; it does not mean an eightfold resource reduction. + +\section{Checklist for Independent Review} +\label{app:checklist} + +A reviewer can audit the result in increasing order of cost: +\begin{enumerate} +\item Read the benchmark tuple and confirm that candidate and control use the +same Hamiltonian, formula, tolerance, and cost model. +\item Run the manuscript headline validator and the package checksum check. +\item Run the fast verifier and inspect its structured output. +\item Confirm the exact integer map from 393/97 steps to all three resources. +\item Run the default unit suite, including mutation and local-Pauli tests. +\item Run D5 \code{--verify-only} to confirm the follow-up is separate and +marked noncertified at 78 steps. +\item If computational resources permit, run the deep verifier to regenerate +the formula-specific algebra and baseline center scan. +\item Rebuild this PDF and visually inspect figures, tables, citations, and +page boundaries; PDF appearance is a communication check, not a proof check. +\end{enumerate} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/baseline.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/baseline.tex new file mode 100644 index 000000000..4015aeb70 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/baseline.tex @@ -0,0 +1,81 @@ +\section{Reconstructing the Published-Theorem Baseline} +\label{sec:baseline} + +The phrase ``published baseline'' can obscure two logically distinct objects. +The first is the high-order commutator theorem published by Childs et al. +\cite{childs2021trotter}; the second is our fixed, machine-evaluated +instantiation of that theorem. The number 393 is not a table entry quoted +from the 2021 paper. It is obtained by applying the published framework to +\cref{eq:hamiltonian,eq:benchmark,eq:suzuki4} with a specified norming and +interval procedure. We call it the \emph{pinned control}. + +\subsection{Expansion-first local norming} + +The high-order theorem represents product-formula error by partial sums and +nested commutators. For the pinned control, every partial matching sum is +expanded into local Heisenberg bonds, zero commutators are removed, and each +surviving concrete Pauli expansion is bounded by its Pauli-$\ell_1$ norm. +The resulting site-density upper bound is stored as an exact rational number +whose outward decimal is +\begin{equation} + \alpha_{\mathrm{base}}\le164.9759169527440. +\end{equation} +The calculation contains 8,316 theorem terms and 1,024 expanded commutator +keys. All algebraic product-formula coefficients are enclosed by rational +intervals; no rounded decimal is used as the source of the result. + +The theorem admits a discrete family of center choices controlling how the +high-order integral representation is partitioned. We evaluate all 31 +admissible centers. Center 20 gives the smallest certified control, and +inverting its global bound at tolerance $10^{-6}$ yields +\begin{equation} + r_{\mathrm{base}}=393,\qquad G(r_{\mathrm{base}})=11{,}791. +\end{equation} +The main certificate stores both the exact site-density rational and the +chosen center. A deep verification mode regenerates the center scan rather +than trusting these stored labels. + +\subsection{Where the baseline loses information} + +The baseline is rigorous, general, and already exploits exact commutation. +Its looseness in this instance arises from the order of operations. Once an +abstract contribution is replaced by an independent positive norm, later +knowledge cannot recover cancellation between that contribution and another +one. Four losses are particularly important: + +\begin{enumerate} +\item distinct free words can map to the same nested-commutator or Pauli + contribution with opposite signs; +\item distinct translated local clusters can share a canonical translation + representative; +\item different commutator paths can produce exactly the same Pauli string; +\item different surviving Pauli strings can anticommute, causing cross terms + to vanish when the group norm is squared. +\end{enumerate} + +The proposed compiler postpones the irreversible inequality until these +relations have been exposed. Importantly, it does not treat the baseline as +incorrect. It constructs a stronger proof for the same circuit and then +verifies both sides under a common benchmark and cost model. + +\begin{table}[t] +\centering +\caption{Logical separation between the published theorem and the pinned +finite-instance control.} +\label{tab:baseline-separation} +\begin{tabularx}{\textwidth}{@{}lXX@{}} +\toprule + & Published theory & Pinned control used here \\ +\midrule +Source & Childs et al. commutator-scaling framework & Exact interval +instantiation for the fixed Heisenberg benchmark \\ +Scope & General Hamiltonian fragments and formula order & $L=12$, four +matchings, five-copy $S_4$, $T=1$, $\eps=10^{-6}$ \\ +Norming & Theorem permits commutator-sensitive evaluation & Expanded local +Pauli-$\ell_1$ procedure fixed by the certificate \\ +Finite number & No published 393-step table entry & 31 centers scanned; +center 20 yields 393 steps \\ +Role & Mathematical foundation & Auditable comparison control \\ +\bottomrule +\end{tabularx} +\end{table} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/compiler.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/compiler.tex new file mode 100644 index 000000000..8e0e382f2 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/compiler.tex @@ -0,0 +1,120 @@ +\section{A Proof-Carrying Compiler for Error Bounds} +\label{sec:compiler} + +\subsection{Intermediate representations} + +The compiler is organized around four intermediate representations (IRs). +The \emph{word IR} stores sparse homogeneous polynomials in noncommuting +letters $A_1,\ldots,A_4$. The \emph{Lie IR} stores homogeneous logarithmic +defects as rational linear combinations of right-nested commutators. The +\emph{Pauli IR} stores canonical finite-support symplectic Pauli strings with +exact coefficients per translation cell. The \emph{certificate IR} stores +partitions, rational norm enclosures, finite-step contributions, tail data, +hash bindings, and resource arithmetic. + +\begin{figure}[t] +\centering +\resizebox{\textwidth}{!}{% +\begin{tikzpicture}[ + node distance=5mm and 6mm, + box/.style={draw,rounded corners,align=center,minimum height=8mm,minimum width=25mm,fill=blue!4}, + certbox/.style={box,fill=green!8}, + arr/.style={-{Stealth[length=2mm]},thick} +] +\node[box] (input) {Hamiltonian, fragments,\\formula, $T,\eps$, cost}; +\node[box,right=of input] (word) {Free-word IR\\formal logarithm}; +\node[box,right=of word] (lie) {Free-Lie IR\\DSW projection}; +\node[box,right=of lie] (pauli) {Pauli IR\\translation quotient}; +\node[certbox,right=of pauli] (cert) {Certificate IR\\norm and tail}; +\node[certbox,below=of cert] (output) {$r_\star$, adjacent boundary,\\integer resources}; +\draw[arr] (input)--(word); +\draw[arr] (word)--(lie); +\draw[arr] (lie)--(pauli); +\draw[arr] (pauli)--(cert); +\draw[arr] (cert)--(output); +\end{tikzpicture} +} +\caption{Compiler pipeline. Algebraic structure is retained until the Pauli +IR; irreversible norm inequalities enter only in the certificate IR.} +\label{fig:pipeline} +\end{figure} + +Each lowering pass preserves a semantic invariant. Word multiplication +preserves the truncated product series. Formal logarithms preserve the +truncated exponential identity. DSW projection preserves the homogeneous +Lie element. Pauli evaluation is a representation homomorphism. Translation +canonicalization preserves the sum per cell. Exact aggregation preserves the +represented operator. Finally, grouped norming replaces equality by a +verified upper bound. + +\subsection{End-to-end algorithm} + +\begin{algorithm}[t] +\caption{Compile a product formula into a resource certificate} +\label{alg:compiler} +\begin{algorithmic}[1] +\Require $(H,\mathcal F,S,T,\eps,\mathcal C)$ and truncation policy +\Ensure Certificate accepted by an independent verifier +\State parse all stage coefficients into exact algebraic or outward intervals +\State $P(t)\gets$ truncated free-word expansion of the complete stage product +\State $L(t)\gets\log P(t)$ in the sparse free associative algebra +\State verify order conditions and time-reversal parity through target degree +\For{$d\in\{5,7\}$} + \State $E_d\gets$ DSW projection of the homogeneous component $L_d$ + \State $Q_d\gets$ evaluate $E_d$ in the concrete local Pauli representation + \State quotient $Q_d$ by translation and combine identical Pauli strings +\EndFor +\State discover weighted pairwise-anticommuting groups for the leading ledger +\State emit full group membership and outward rational square-root bounds +\State convert $E_5,E_7$ to right-generator terms D4--D7 +\State close all remaining terms with a rational locality majorant and tail +\State find the smallest integer $r_\star$ whose certified bound is at most $\eps$ +\State compile $r_\star$ to groups, bond propagators, and CNOT upper bound +\State emit hashes, provenance, and adjacent-step evidence +\end{algorithmic} +\end{algorithm} + +The algorithm intentionally separates \emph{discovery} from \emph{trust}. +The formal-series generator and grouping search can be large and optimized for +throughput. Their output is not accepted because the code ran successfully; +it is accepted only after a second path rechecks the certificate. In +particular, no claim depends on the greedy grouping being optimal. Any valid +partition gives a sound bound, and a better heuristic can improve the bound +without expanding the trusted computing base. + +\subsection{What is improved at each pass} + +\begin{table}[t] +\centering +\caption{Compiler passes and the information they preserve.} +\label{tab:passes} +\begin{tabularx}{\textwidth}{@{}p{0.19\textwidth}p{0.26\textwidth}Xp{0.18\textwidth}@{}} +\toprule +Pass & Conventional relaxation & Replacement & Verified invariant \\ +\midrule +Complete formula log & Bound stages or partial sums separately & Multiply all +stages and take the formal log before norming & Truncated series identity and +order conditions \\ +Lie projection & Treat free words as unrelated monomials & Project homogeneous +log defects into free-Lie elements & DSW identity at fixed degree \\ +Concrete evaluation & Count generic nonzero commutators & Evaluate exact local +Pauli products and phases & Symplectic multiplication and support \\ +Translation quotient & Count translated clusters separately & Select a +canonical orbit representative & Translation-equivalent configurations merge \\ +Coefficient aggregation & Take absolute values by derivation path & Sum exact +coefficients of identical Paulis & Operator represented by sparse ledger \\ +Anticommuting grouping & Apply termwise Pauli-$\ell_1$ & Use exact group +$\ell_2$ identities & Coverage and pairwise anticommutation \\ +Finite-step closure & Use only leading order & Retain D4--D7 and rational tail +& Global error upper bound \\ +Adjacent integer search & Round a continuous estimate & Verify $r$ and $r-1$ +exactly & Smallest integer accepted by this bound \\ +\bottomrule +\end{tabularx} +\end{table} + +This organization also answers how the method should be extended. A new +Hamiltonian needs a representation backend and local-support rules; a new +formula needs a stage generator and exact coefficient enclosure; a new norm +strategy needs a certificate schema and verifier. The higher layers need not +be rewritten if their interfaces and invariants remain unchanged. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/conclusion.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/conclusion.tex new file mode 100644 index 000000000..26858123e --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/conclusion.tex @@ -0,0 +1,26 @@ +\section{Conclusion} +\label{sec:conclusion} + +We have presented a proof-carrying, model-aware compiler for rigorous +product-formula resource bounds. Its central design rule is simple: preserve +algebraic structure until all formula-specific, model-specific, translational, +and anticommuting relations have been exposed; apply irreversible norm +inequalities only afterward; and emit enough evidence for an independent +program to recheck the result. + +For the periodic $12\times12$ isotropic Heisenberg benchmark, this procedure +certifies the original five-copy fourth-order Suzuki circuit at 97 steps. The +pinned general-theorem instantiation requires 393 steps under the common +comparison protocol. After deterministic stage merging and bond +compilation, the corresponding group, bond, and CNOT resources fall by the +exact factor $11791/2911=4.050498110614909\ldots$. The result includes the +rejected 96-step neighbor, D4--D7 contributions, a rational high-degree tail, +full D4 anticommuting membership, resource arithmetic, and hash bindings. + +The broader lesson is not that one Hamiltonian has exhausted the possibilities +of Trotter simulation. It is that a general error theorem and a concrete gate +estimate should be connected by a transparent compiler rather than a chain of +unrecorded inequalities. The current artifact occupies that middle layer. A +fivefold threshold remains a well-specified research target, but it will be +claimed only after the missing D4, D8, and tail obligations close in the same +machine-checkable form. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/finite_step.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/finite_step.tex new file mode 100644 index 000000000..5f205cf64 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/finite_step.tex @@ -0,0 +1,113 @@ +\section{Finite-Step Right-Generator Certificate} +\label{sec:finite-step} + +An asymptotic statement $O(t^5)$ is insufficient at the target tolerance. +The certified step count is obtained from a finite-$t$ right-generator bound, +including explicit subleading terms and a rational tail. + +\subsection{From logarithmic defect to right generator} + +Let $S(t)$ denote one formula step and define its right generator +\begin{equation} + K(t)=S'(t)S(t)^{-1}. + \label{eq:right-generator} +\end{equation} +For $Z(t)=\log S(t)$, differentiation of the exponential gives +\begin{equation} + K(t)=\operatorname{dexp}_{Z(t)}(Z'(t)) + =\sum_{n\geq0}\frac{1}{(n+1)!}\ad_{Z(t)}^n Z'(t). + \label{eq:dexp} +\end{equation} +Substituting \cref{eq:symmetric-log} and collecting powers yields +\begin{equation} + K(t)-A=t^4D_4+t^5D_5+t^6D_6+t^7D_7+R_{\geq8}(t), + \label{eq:right-ledger} +\end{equation} +where, writing $B=E_5$ and $C=E_7$, the exact coefficients through degree +seven are +\begin{align} + D_4&=5B, & + D_5&=2[A,B],\\ + D_6&=7C+\tfrac23[A,[A,B]], & + D_7&=3[A,C]+\tfrac16[A,[A,[A,B]]]. +\end{align} +The implementation derives these coefficients from the truncated series +rather than trusting the printed display. The identity clarifies why an +exact leading logarithmic coefficient is not yet a global error certificate: +commutators generated by the differential of the exponential contribute at +the next powers. + +\subsection{Duhamel conversion to global error} + +Let $U(t)=e^{tA}$ in anti-Hermitian convention. Variation of constants gives +the one-step estimate +\begin{equation} + \opnorm{S(\delta)-U(\delta)} + \leq \int_0^\delta \opnorm{K(s)-A}\,ds. + \label{eq:one-step-duhamel} +\end{equation} +Unitary telescoping over $r$ equal steps, with $\delta=T/r$, then yields +\begin{equation} + \opnorm{S(T/r)^r-U(T)} + \leq r\int_0^{T/r}\opnorm{K(s)-A}\,ds. + \label{eq:global-duhamel} +\end{equation} +Combining \cref{eq:right-ledger,eq:global-duhamel}, a certificate with norm +upper bounds $b_j\geq\opnorm{D_j}$ and a nonnegative tail majorant $\rho(s)$ +establishes +\begin{equation} + \mathcal E(r)= + r\left(\sum_{j=4}^{7}\frac{b_j}{j+1} + \left(\frac{T}{r}\right)^{j+1} + +\int_0^{T/r}\rho(s)\,ds\right). + \label{eq:finite-step-bound} +\end{equation} +All quantities in the machine certificate are rationals. Decimal values in +this paper are outward-rounded summaries only. + +\subsection{Rational tail closure} + +The exact ledger is stopped after D7. Higher degrees are bounded by a +geometric majorant derived from the absolute stage coefficients and local +commutator growth. In abstract form, if the degree-$k$ coefficient is at most +$M q^{k-k_0}$ for $0\leq q s<1$, then +\begin{equation} + \rho(s)\leq \frac{M s^{k_0}}{1-qs}. + \label{eq:geometric-tail} +\end{equation} +The verifier checks the rational preconditions, including positivity of the +denominator on $[0,T/r]$, and integrates an outward upper enclosure. This is +deliberately more conservative than extrapolating the observed low-degree +coefficients. It ensures that no uncomputed term is silently discarded. + +\begin{theorem}[Soundness of an accepted finite-step certificate] +\label{thm:soundness} +Suppose the verifier accepts (i) interval enclosures for D4--D7, (ii) a valid +operator-norm certificate for each declared coefficient, (iii) a tail +majorant satisfying \cref{eq:geometric-tail} on $[0,T/r]$, and (iv) exact +rational evaluation $\mathcal E(r)\leq\eps$. Then +\begin{equation} + \opnorm{S(T/r)^r-e^{TA}}\leq\eps. +\end{equation} +\end{theorem} + +\begin{proof} +The accepted coefficient and tail checks bound +$\opnorm{K(s)-A}$ term by term on the complete integration interval. +Integrating preserves the inequality. Equation~\eqref{eq:global-duhamel} +then bounds the global error, and the exact rational comparison with $\eps$ +completes the proof. +\end{proof} + +\subsection{Adjacent-step minimality under the certified bound} + +The search evaluates integers, not a rounded real-valued estimate. It returns +the least $r$ accepted by \cref{eq:finite-step-bound} and emits the rejected +neighbor. For this benchmark, +\begin{align} + \mathcal E(97)&\leq9.958938494314325\times10^{-7}<10^{-6},\\ + \mathcal E(96)&\leq1.050565873970784\times10^{-6}>10^{-6}. +\end{align} +The second inequality says that 96 is not certified by \emph{this bound}; it +does not prove that the physical simulation error at 96 steps exceeds the +tolerance. This distinction is retained throughout the paper. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/free_lie.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/free_lie.tex new file mode 100644 index 000000000..8cbe4612a --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/free_lie.tex @@ -0,0 +1,106 @@ +\section{Complete-Formula Free-Lie Extraction} +\label{sec:free-lie} + +The first source of slack in a generic product-formula estimate is often not +the inequality used at the end, but the loss of cancellation before the +inequality is applied. We therefore expand the \emph{complete} 31-stage +formula as one formal object. This section describes the representation and +the identities checked by the implementation. + +\subsection{Sparse truncated words} + +Let $\mathbb{K}\langle A_1,\ldots,A_m\rangle$ denote the free associative +algebra over a coefficient field $\mathbb K$. A homogeneous word +$w=(j_1,\ldots,j_d)$ represents $A_{j_1}\cdots A_{j_d}$. Up to degree $q$, +we store a series as the sparse map +\begin{equation} + P(t)=1+\sum_{d=1}^{q}t^d\sum_{|w|=d}p_w w+O(t^{q+1}). + \label{eq:sparse-word-series} +\end{equation} +Multiplication is truncated convolution. An exponential stage is generated +by +\begin{equation} + \exp(a t A_j)=\sum_{k=0}^{q}\frac{(a t)^k}{k!}A_j^k+O(t^{q+1}), +\end{equation} +and all 31 stages are multiplied in their actual execution order. The +coefficients $a$ are held as outward rational intervals. Thus every stored +coefficient encloses the corresponding real algebraic coefficient, including +the fourth-order Suzuki coefficient involving $4^{1/3}$. + +For $X=P-1$, the formal logarithm is +\begin{equation} + \log P=\sum_{k=1}^{q}\frac{(-1)^{k+1}}{k}X^k+O(t^{q+1}). + \label{eq:formal-log} +\end{equation} +No matrices and no floating-point eigensolvers enter this computation. The +calculation is universal in the letters; only after the Lie defect is known do +we substitute the concrete Heisenberg fragments. + +\subsection{Order, symmetry, and the full-stage cancellation budget} + +Write the ideal generator as $A=\sum_{j=1}^{4}A_j$ and the logarithm of a +single formula step as +\begin{equation} + \log S_4(t)=tA+t^5E_5+t^7E_7+O(t^9). + \label{eq:symmetric-log} +\end{equation} +Fourth order requires the degree-two through degree-four defects to vanish. +Time symmetry, $S_4(-t)=S_4(t)^{-1}$, implies that the logarithm is odd, so its +even homogeneous components vanish. The compiler checks these statements +coefficient by coefficient in the word IR; it does not infer them merely from +the name of the formula. + +This global construction matters. If a bound is applied to each stage or to +each recursive subformula before the product is assembled, opposite +coefficients and Jacobi-related terms can no longer cancel. In our pipeline, +absolute values first appear only after the complete formula has been +projected, evaluated, translated, and aggregated. This ordering of +operations is the main methodological distinction from a direct +``expand--triangle-inequality'' instantiation of a general commutator theorem. + +\subsection{Dynkin--Specht--Wever projection} + +The homogeneous component $L_d$ of a logarithm of group-like series is a Lie +element. We use the Dynkin--Specht--Wever (DSW) map to expose that structure. +For a word $w=x_1\cdots x_d$, define +\begin{equation} + D(w)=[x_1,[x_2,\ldots,[x_{d-1},x_d]\ldots]]. +\end{equation} +The DSW theorem gives $D(L_d)=dL_d$ for homogeneous Lie elements +\citep{reutenauer1993free}. Consequently, +\begin{equation} + E_d=L_d=\frac{1}{d}\sum_{|w|=d}\ell_w D(w), + \label{eq:dsw} +\end{equation} +where $\ell_w$ are the word coefficients obtained from \cref{eq:formal-log}. +Equation~\eqref{eq:dsw} is used as a projection and as an independently +checkable identity: expanding its right-hand side back into words must recover +$L_d$ interval-wise. + +\begin{proposition}[Semantic preservation of the Lie lowering pass] +\label{prop:lie-pass} +Assume the input interval map encloses every coefficient of the degree-$d$ +homogeneous formal logarithm and the DSW reconstruction check succeeds. Then +the emitted nested-commutator interval map encloses the exact homogeneous Lie +defect $E_d$. +\end{proposition} + +\begin{proof} +The DSW map is linear over the coefficient field. Interval scalar +multiplication and addition are inclusion isotone, so applying $D/d$ to the +input enclosures contains its application to the exact coefficients. The DSW +identity fixes the exact image to $E_d$. The reconstruction check additionally +guards against word-order, sign, and truncation errors in the implementation. +\end{proof} + +\subsection{Why this is an algorithmic improvement} + +The free-Lie stage is not a new product formula: it is a better compiler for a +fixed formula. Its improvement is threefold. First, it preserves +cross-stage cancellations. Second, it replaces derivation histories by a +canonical operator expression. Third, it makes the later model substitution +sparse: nested commutators that vanish under the local Pauli representation +are removed exactly rather than charged by a worst-case commutator factor. +The cost is an offline symbolic calculation whose size grows rapidly with +degree. That cost is acceptable here because the certificate is generated +once and verified much more cheaply than it is discovered. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/introduction.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/introduction.tex new file mode 100644 index 000000000..3088e2559 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/introduction.tex @@ -0,0 +1,103 @@ +\section{Introduction} +\label{sec:introduction} + +Product formulas remain among the most transparent constructions for digital +Hamiltonian simulation. If $H=\sum_{\gamma=1}^{\Gamma}H_\gamma$, a product +formula replaces $\exp(-itH)$ by a sequence of exponentials of simpler +fragments $H_\gamma$. The method needs no block encoding, can preserve the +geometry of local interactions, and maps naturally to hardware with limited +connectivity. Its practical cost, however, is determined not merely by its +formal order but by the constant in a rigorous finite-time error bound. A +factor lost in this constant is amplified when the bound is inverted to select +an integer number of Trotter steps and then multiplied by every local +propagator in every step. + +The modern commutator-scaling theory of Childs, Su, Tran, Wiebe, and Zhu +provides a general foundation for such estimates +\cite{childs2021trotter}. It replaces purely norm-sum scaling by sums of +nested commutators and thereby exploits locality and exact commutation. This +framework is sufficiently general to cover arbitrary order and many +Hamiltonian classes, but a general theorem must remain conservative about the +concrete algebra of a fixed model. In a Pauli lattice, multiple formal +commutator paths may evaluate to the same operator with opposite signs; +translation-equivalent terms may repeat; and distinct surviving Paulis may +anticommute, so their sum has a Euclidean rather than taxicab norm. Applying a +triangle inequality before these facts become visible irreversibly discards +them. + +This paper studies the resulting ``last-mile'' problem: + +\begin{quote} +Given a fixed local Hamiltonian, fragmentation, product formula, simulation +time, error tolerance, and compilation model, how can one automatically +produce a tighter \emph{machine-checkable} worst-case resource bound without +changing the target quantum circuit family? +\end{quote} + +Our answer is to treat error analysis as compilation. The source program is +the Hamiltonian and product formula. The compiler lowers it through +successive algebraic intermediate representations, performs semantics- +preserving optimization passes, and emits a proof object. In contrast with a +normal circuit optimizer, the principal output is not a different sequence of +quantum gates. It is a smaller certified number of repetitions of the same +sequence. The design follows a proof-carrying principle: expensive symbolic +search may be heuristic, but an accepted result must carry all data required +for a simpler independent verifier to reconstruct the logical obligations. + +\subsection{Contributions} + +The main contributions are as follows. + +\begin{enumerate} +\item \textbf{A multi-representation error compiler.} We compute the + truncated logarithm of the complete product formula in a sparse free + associative algebra, project its homogeneous defects to free-Lie elements, + evaluate those elements in a concrete symplectic Pauli representation, and + finally emit exact rational certificate data. Each lowering step has an + explicit invariant and can be checked independently. + +\item \textbf{Norm-last concrete evaluation.} We canonicalize finite Pauli + configurations under lattice translation and combine identical Pauli + strings with exact coefficients before applying a final norm inequality. + This reverses the conventional expand-and-bound order and preserves + cancellations that are invisible at the level of abstract support counts. + +\item \textbf{Certified anticommuting norm compression.} We construct a + graph whose vertices are leading-defect Pauli terms and whose edges encode + anticommutation. An untrusted search partitions terms into pairwise- + anticommuting groups. The certificate records the full partition and + outward rational square-root bounds; the verifier rechecks exact coverage + and every edge used. For the principal instance, this lowers the D4 + translation-cell bound from 20.160968407335066 to 6.472926505087888. + +\item \textbf{A nonasymptotic right-generator closure.} We convert the + degree-five and degree-seven logarithmic defects into the right logarithmic + generator, retain degrees D4 through D7, use a Heisenberg-specific local + commutator lemma, and control all remaining degrees by a rational geometric + locality tail. Thus the resource result does not rely on leading-order + extrapolation. + +\item \textbf{An independently reproducible finite-instance result.} For a + $12\times12$ periodic Heisenberg lattice, the certificate accepts 97 steps + and rejects 96. Relative to a pinned 393-step instantiation of the + published high-order theorem, this reduces merged group exponentials from + 11,791 to 2,911. A fast verifier, deep regeneration mode, small-system + dense cross-check, mutation tests, and a SHA-256 manifest support the claim. +\end{enumerate} + +\subsection{Scope and nonclaims} + +The result is a finite-size constant-factor improvement, not a new asymptotic +Hamiltonian-simulation complexity. It applies to a uniform operator-norm +guarantee for a fixed deterministic product formula. Methods based on low- +energy inputs, average-case norms, multi-product formulas, linear combinations +of unitaries, extrapolation, or stochastic compensation solve different +resource problems and may achieve stronger precision scaling under their own +cost models. We compare these directions in \cref{sec:related} but do not +rank incomparable gate counts as a single global record. + +The exact D5 side study and the $r=78$ arithmetic indicate a possible +fivefold threshold. They do not establish it. Throughout this manuscript, +``certified'' refers only to statements accepted by the supplied rational +certificate and verifier. Numerical dense simulation is used solely as a +cross-check, and conditional research estimates are labeled explicitly. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/limitations.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/limitations.tex new file mode 100644 index 000000000..fd53de3ea --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/limitations.tex @@ -0,0 +1,87 @@ +\section{Limitations and Research Roadmap} +\label{sec:limitations} + +The present evidence supports a precise but deliberately narrow conclusion. +This section identifies the boundaries and shows how each could be addressed +without weakening the current claim. + +\subsection{Finite instance rather than universal scaling} + +The numerical certificate is for the periodic $12\times12$ isotropic +Heisenberg benchmark at $T=1$ and $\eps=10^{-6}$. Locality suggests that many +symbolic densities extend to larger tori beyond the support radius, but the +current manifest does not claim a theorem uniform in $L$, anisotropy, time, or +tolerance. A scaling paper would require parameterized wraparound proofs, +analytic dependence of every ledger term, and certificates across a grid of +$(L,T,\eps)$ values. + +\subsection{Fixed product formula and cost model} + +The candidate and control use the same five-copy fourth-order Suzuki formula. +No search over modern optimized splittings is included. Similarly, the +three-CNOT bond cost is an upper-bound compilation model, not a full +fault-tolerant resource estimate. Native two-qubit gates, routing, parallel +depth, synthesis precision, error correction, and logical-state preparation +can change the operational optimum. Future work should make the cost model a +pluggable certificate field and report Pareto fronts for group count, two- +qubit gates, and depth. + +\subsection{Certificate size and discovery cost} + +The exact D4 and D5 ledgers are large. They are appropriate for an offline +proof artifact but not yet an interactive compiler pass. The deep verifier is +much simpler than the generator but still scales with every listed term and +pair checked within a group. Merkleized chunks, streaming verification, +symmetry-orbit proofs, and formally verified local rewrite kernels could +reduce storage and trust without replacing explicit evidence by an opaque +claim. + +\subsection{The fivefold boundary is open} + +A fivefold resource ratio would be obtained at $r=78$ because +\begin{equation} + \frac{11{,}791}{30\cdot78+1} + =\frac{11{,}791}{2{,}341} + =5.036736437419906\ldots. +\end{equation} +This is arithmetic, not a 78-step error certificate. The checked artifacts +identify three unresolved proof gates: a tighter translation-coupled D4 norm +at the 78-step budget, explicit D8 information with a delayed high-degree +tail, and a complete exact global ledger at $r=78$. Exact D5 grouping alone +does not discharge these obligations. + +\begin{figure}[t] + \centering + \includegraphics[width=0.8\textwidth]{figures/fivefold_gap.pdf} + \caption{Conditional error ledger at the fivefold resource threshold. The + stacked value exceeds the target; $r=78$ is therefore not certified. The + 97-step result remains the lowest accepted point of the current bound.} + \label{fig:fivefold-gap} +\end{figure} + +A disciplined optimization sequence is therefore: (1) profile the current +97-step error ledger; (2) improve the dominant D4 norm while preserving a +verifiable partition; (3) emit D8 explicitly; (4) move the geometric tail to a +higher starting degree; (5) regenerate exact contributions at 78; and (6) +accept the point only if the rational sum is at most $10^{-6}$. GPU or HPC +parallelism can accelerate term generation and graph search, but cannot +replace the last verifier step. + +\subsection{Optimality is relative to the bound} + +The rejection at 96 establishes adjacent minimality only under the emitted +upper bound. It is not a lower bound on the true operator error. Direct +large-system matrix simulation is infeasible, and lower-bound techniques have +not been specialized here to close the gap. Consequently the candidate may +still be physically accurate with fewer steps. The scientific claim concerns +what can be guaranteed, not an assertion that 97 executions are necessary. + +\subsection{Toward broader validation} + +The most valuable next experiments are not additional decimal precision at +the current point. They are adversarial reproductions: an independent Pauli +engine, certificates for open and periodic boundaries, anisotropic XXZ +couplings, alternate fragment orderings, and comparisons against optimized +splittings. These tests would reveal whether the dominant gains arise from +universal compiler structure or accidental symmetries of the isotropic +benchmark. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/norm_certificate.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/norm_certificate.tex new file mode 100644 index 000000000..d5f36e617 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/norm_certificate.tex @@ -0,0 +1,97 @@ +\section{Anticommuting Norm Certificates} +\label{sec:norm} + +After exact coefficient aggregation, the direct Pauli triangle inequality +$\opnorm{\sum_j c_jP_j}\leq\sum_j|c_j|$ remains sound but unnecessarily loose. +The leading right-generator defect contains many mutually anticommuting +strings. Their norm is an $\ell_2$, not an $\ell_1$, quantity. + +\subsection{Weighted anticommuting groups} + +\begin{lemma}[Pairwise-anticommuting Pauli norm] +\label{lem:anticommuting} +Let $P_1,\ldots,P_k$ be Hermitian Pauli operators with $P_i^2=I$ and +$\{P_i,P_j\}=0$ for $i\neq j$. For real coefficients $c_i$, +\begin{equation} + \opnorm{\sum_{i=1}^{k}c_iP_i}=\sqrt{\sum_{i=1}^{k}c_i^2}. + \label{eq:anticommuting-norm} +\end{equation} +\end{lemma} + +\begin{proof} +Squaring the sum gives +$\sum_i c_i^2I+\sum_{i\eps,\label{eq:adjacent}\ + R_\star&=\mathcal C(S,r_\star), +\end{align} +using exact integers, rational numbers, or outward rational intervals. The +second inequality does not prove that the physical circuit with +$r_\star-1$ fails; it proves that $r_\star$ is the smallest integer accepted +by this particular certified upper-bound function. This distinction is +retained throughout. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/related_work.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/related_work.tex new file mode 100644 index 000000000..077555003 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/related_work.tex @@ -0,0 +1,141 @@ +\section{Related Work and Positioning} +\label{sec:related} + +The relevant literature has diversified beyond a single sequence of tighter +versions of the same bound. Some works strengthen worst-case product-formula +analysis; others restrict the state or error metric; still others change the +simulation algorithm. A meaningful position therefore requires a taxonomy +rather than a one-dimensional ``SOTA'' label. + +\subsection{Direct product-formula bounds} + +Nearly optimal lattice simulation by high-order product formulas established +the favorable scaling of local formulas for geometrically local Hamiltonians +\citep{childs2019lattice}. The commutator-scaling framework of Childs et al. +then provided general explicit error representations in terms of nested +commutators \citep{childs2021trotter}. Model-specific evaluation has also +been developed for the Fermi--Hubbard model \citep{schubert2023hubbard}, while +strong-error analyses clarify the distinction between vector and operator +convergence for unbounded or chemistry-motivated settings +\citep{burgarth2024strong}. Lower-bound work studies when cancellation cannot +make the Trotter error arbitrarily smaller than upper estimates +\citep{hahn2024lower}. + +Our work remains in this direct, deterministic, operator-norm branch. It does +not introduce a new asymptotic theorem. Its contribution is an automated +finite-instance sharpening layer after the general theorem has identified the +relevant commutator structure. The proof object retains concrete +coefficients and Pauli relations that a broad theorem cannot economically +tabulate. + +\subsection{Restricted-state and average-case guarantees} + +Low-energy-subspace simulation can replace global energy scales by effective +low-energy quantities when the initial state is promised to lie in an +appropriate sector \citep{sahinoglu2021lowenergy}. Average-case analysis can +also yield speedups under distributional or norm-averaged criteria +\citep{chen2024average}. These guarantees may be more relevant for a given +application than a worst-case operator norm, but they answer a different +question. The present certificate makes no state promise and therefore +remains uniform over all input states. + +\subsection{Changing the approximation family} + +Multi-product formulas combine several product-formula circuits to cancel +leading errors. Recent work supplies explicit commutator scaling, dynamic +coefficient selection, and time-dependent extensions +\citep{zhuk2024dynamic,aftab2024mpf,mizuta2026mpf,mizuta2026timedependent}. +Chebyshev interpolation and randomized order-doubling similarly alter how +approximants are combined \citep{rendon2024chebyshev,cho2024doubling}. +Time-dependent product-formula constructions such as THRIFT exploit an +interaction-picture decomposition \citep{bosse2025thrift}. LCU-based Trotter +compensation and error-mitigation approaches add coherent or classical +correction layers \citep{zeng2025lcu,watson2025mitigation}; more recent nested- +commutator compensation seeks polylogarithmic precision without ancillas +\citep{wang2026hncc}. + +These methods can asymptotically or practically outperform repetition of a +single deterministic Suzuki step. Their costs include extra circuit +variants, sampling, negative or complex weights, success amplification, +ancillas, or different depth/gate accounting. Our certified result keeps the +original formula family fixed and reduces only the justified repetition +count. It is therefore complementary: the same proof-carrying norm compiler +could in principle supply coefficient bounds to an extrapolation or +compensation method, but such an extension is not established here. + +\subsection{Formula and ordering optimization} + +Optimized Trotter--Suzuki coefficient sets can lower the stage count or error +constant relative to recursive constructions \citep{malezic2026schemes}. +Commutation-aware ordering studies show that the placement of Heisenberg-type +terms can materially change realized error \citep{tate2026ordering}. +Practical error estimators trade some formal generality for computable +instance-level predictions \citep{maxwell2026practical}. Those directions +optimize the source formula or estimate its behavior. Here the source stage +sequence is fixed and the novelty is in rigorously compiling its complete +defect into a checkable upper bound. + +\begin{table}[p] +\centering +\small +\caption{Methodological comparison. ``Same target'' means a deterministic, +uniform operator-norm certificate for the fixed formula and compilation model +of \cref{sec:problem}.} +\label{tab:literature-map} +\begin{tabularx}{\textwidth}{@{}p{0.18\textwidth}p{0.18\textwidth}p{0.19\textwidth}p{0.18\textwidth}X@{}} +\toprule +Line of work & Main mechanism & Guarantee/cost change & Relation to our method & +Same target? \\ +\midrule +Commutator scaling \citep{childs2021trotter} & General nested-commutator error +representation & Worst-case direct product formula & Supplies the pinned +control and theoretical foundation & Yes, at theorem level \\ +Model-specific Hubbard bounds \citep{schubert2023hubbard} & Evaluate locality +and commutators for another model & Model-aware direct bound & Similar +model-specific philosophy; different Hamiltonian and certificate machinery & +Partly \\ +Low-energy simulation \citep{sahinoglu2021lowenergy} & Restrict input energy +sector & State-dependent promise & Could be combined with concrete algebra; +not used here & No \\ +Average-case speedup \citep{chen2024average} & Weaken worst-case metric to an +average & Distribution-dependent error & Orthogonal norm objective & No \\ +Dynamic/explicit MPF \citep{zhuk2024dynamic,aftab2024mpf,mizuta2026mpf} & +Linear combination of several formula lengths & New coefficients, sampling or +coherent combination & Our defect bounds may inform coefficients; current +circuit family differs & No \\ +Interpolation / randomization \citep{rendon2024chebyshev,cho2024doubling} & +Combine runs or random orderings & Changed estimator/algorithm & Potential +outer layer around certified formulas & No \\ +THRIFT \citep{bosse2025thrift} & Time-dependent interaction-picture formula & +Changed decomposition and circuit & Could benefit from proof-carrying +instance analysis & No \\ +LCU/mitigation \citep{zeng2025lcu,watson2025mitigation,wang2026hncc} & Correct +or cancel Trotter error & Ancilla, sampling, or compensation overhead & Uses +error structure actively; ours only reduces safe repetitions & No \\ +Formula/ordering optimization \citep{malezic2026schemes,tate2026ordering} & +Change stages, coefficients, or ordering & Different source circuit & +Complementary front end to our compiler & No \\ +This work & Complete-formula Lie extraction, exact Pauli aggregation, verified +anticommuting norms & Same formula; smaller certified repetition count & +Finite-instance proof-carrying sharpening & Yes \\ +\bottomrule +\end{tabularx} +\end{table} + +\subsection{Position of the present result} + +Within the narrow target class, this work establishes a strong finite-instance +result: a 4.050498$\times$ certified reduction over a pinned application of a +published general theorem, while preserving the formula, operator-norm metric, +and gate-accounting rule. Its scientific role is best described as a +\emph{model-aware proof compiler} between general theory and executable +resource estimation. + +It would be inaccurate to call the result an unconditional global state of the +art in Hamiltonian simulation. More recent algorithms can have superior +precision scaling or lower costs under changed assumptions. Conversely, +their headline numbers do not invalidate this result because they are not +necessarily certificates for the same fixed deterministic circuit. The +paper's defensible novelty is the combination of full-formula symbolic +cancellation, concrete Pauli norm compression, nonasymptotic closure, and an +independently checkable artifact. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/reproducibility.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/reproducibility.tex new file mode 100644 index 000000000..eacd7b3a4 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/reproducibility.tex @@ -0,0 +1,107 @@ +\section{Reproducibility and Artifact Protocol} +\label{sec:reproducibility} + +The repository is organized so that a reader can first validate the headline +claim in seconds and then choose progressively more expensive checks. No +private cluster is required to verify the submitted certificate. + +\subsection{Environment and commands} + +The reference implementation requires Python 3.11 or later and declares +NumPy, SciPy, and SymPy dependencies. From the \code{issue128} directory, the +standard sequence is: +\begin{verbatim} +python -m pip install -e '.[test]' +pytest -q +PYTHONPATH=src python scripts/verify.py \ + certificates/issue128-certificate.json +PYTHONPATH=src python scripts/build_d5_certificate.py --verify-only +PYTHONPATH=src python scripts/package_delivery.py --check +shasum -a 256 -c artifacts/SHA256SUMS +\end{verbatim} +The expensive algebraic replay is requested explicitly: +\begin{verbatim} +PYTHONPATH=src python scripts/verify.py \ + certificates/issue128-certificate.json --deep +\end{verbatim} +The main certificate can be regenerated with +\begin{verbatim} +PYTHONPATH=src python scripts/build_v3_certificate.py +\end{verbatim} +Long research-reproduction tests are marked \code{slow} and excluded by the +default Pytest configuration. This separation keeps ordinary continuous +integration responsive without disguising the cost of complete regeneration. + +\subsection{Claim-to-evidence map} + +\begin{longtable}{@{}p{0.27\textwidth}p{0.36\textwidth}p{0.30\textwidth}@{}} +\caption{Where each principal claim is established and how it is checked.} +\label{tab:claim-map}\\ +\toprule +Claim & Primary evidence & Independent check \\ +\midrule +\endfirsthead +\toprule +Claim & Primary evidence & Independent check \\ +\midrule +\endhead +393-step pinned control & Baseline rational and center in +\code{issue128-certificate.json} & Deep regeneration of all 31 centers \\ +97 accepted, 96 rejected & Exact global and previous-step rational pairs in +the main certificate & Exact comparison against $1/10^6$ \\ +75,324 D4 terms and 7,576 groups & Hashed +\code{issue128-d4-groups.json} & Coverage, symplectic pair checks, and rational +square-root replay \\ +D4 bound 6.472926505087888 & Group membership and coefficient endpoints & +Verifier squares each upper root and resums \\ +11,791 and 2,911 groups & Step counts plus $G(r)=30r+1$ & Direct integer +identity checks \\ +Bond and CNOT totals & Cost-model fields and claimed-resource block & +$72G(r)$ and $216G(r)$ recomputation \\ +4.050498$\times$ improvement & Exact pair $(11791,2911)$ & Fraction comparison, +not rounded decimal \\ +Small-system consistency & Dense $2\times2$ artifact & Independent matrix +exponential and operator norm \\ +D5 follow-up only & Hashed compressed D5 sidecar and summary status & +\code{--verify-only}; explicit \code{not\_certified} fivefold status \\ +\bottomrule +\end{longtable} + +\subsection{Immutable bindings} + +At the frozen delivery point the primary digests are +\begin{align*} +\mathrm{SHA256}(\text{main certificate}) + &=\code{0a09623ce3b292a3637065c870fb3153b}\ldots,\\ +\mathrm{SHA256}(\text{D4 sidecar}) + &=\code{a397414bb0229fb1ebdb38798aa781fb8}\ldots,\\ +\mathrm{SHA256}(\text{D5 sidecar}) + &=\code{c5e8968a93b4497b41fe42c0e364324}\ldots. +\end{align*} +The complete 64-hex-character values are stored in the package manifest and +summary. A printed prefix is for human orientation only; verification uses +the complete digest. + +The manuscript is a derived view and is not part of the frozen proof bundle. +If the manuscript, figures, or wording changes, the mathematical claim remains +bound to the same JSON and sidecars. Conversely, any change to a certificate +requires regeneration of its digest and all summaries that cite it. + +\subsection{Machine-readable and human-readable outputs} + +The delivery contains a main certificate JSON, large exact sidecars, a compact +JSON summary, a plain-text summary, verification transcript, checksums, source +code, tests, a short technical report, and this long-form manuscript. The +machine-readable objects are authoritative for exact numerators and +denominators. Human documents explain the method and use outward decimal +summaries; they should never be parsed as the proof source. + +\subsection{Research integrity statement} + +Software-assisted symbolic algebra, exact arithmetic, automated tests, and +language-model-assisted drafting were used in preparing the artifact and +manuscript. Scientific responsibility remains with the author. Every +headline numerical statement is checked against the frozen certificate by a +separate manuscript validation script; literature statements are cited to +their primary publications. No generative system output is accepted as a +mathematical witness without executable or deductive verification. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/results.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/results.tex new file mode 100644 index 000000000..813bc02f4 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/results.tex @@ -0,0 +1,156 @@ +\section{Certified Results} +\label{sec:results} + +This section reports only values bound to the checked-in certificate. The +primary metric is the compiled CNOT upper bound; merged fragment +exponentials and bond propagators are reported because they make the integer +cost model transparent. + +\subsection{Headline resource reduction} + +The candidate certificate accepts $r=97$ steps. Adjacent identical fragment +exponentials merge across recursive boundaries, so a 31-stage step sequence +contains +\begin{equation} + G(r)=30r+1 + \label{eq:merged-groups} +\end{equation} +merged group exponentials. Each group is one perfect matching with 72 bonds. +The selected two-qubit bond-propagator compilation is charged at three CNOTs. +Therefore +\begin{equation} + B(r)=72G(r),\qquad C(r)=3B(r)=216G(r). + \label{eq:resource-map} +\end{equation} + +\begin{table}[t] +\centering +\caption{Certified resource comparison under the common compilation model.} +\label{tab:headline-results} +\begin{tabular}{@{}lrrrr@{}} +\toprule +Method & Steps & Merged groups & Bond propagators & CNOT upper \\ +\midrule +Pinned published-theorem control & 393 & 11,791 & 848,952 & 2,546,856 \\ +Proof-carrying model-aware bound & 97 & 2,911 & 209,592 & 628,776 \\ +\midrule +Candidate/control & 0.2468 & 0.2469 & 0.2469 & 0.2469 \\ +\bottomrule +\end{tabular} +\end{table} + +Because the last three resource measures are proportional under +\cref{eq:resource-map}, their exact improvement factor is +\begin{equation} + \frac{11{,}791}{2{,}911}=4.050498110614909\ldots. + \label{eq:exact-ratio} +\end{equation} +Equivalently, 8,880 of 11,791 merged groups are removed, a reduction of +75.31167839877873\%. The claimed multiplier is an exact rational comparison; +the decimal is for readability. + +\begin{figure}[t] + \centering + \includegraphics[width=0.94\textwidth]{figures/resources.pdf} + \caption{Resources for the pinned theorem instantiation and the certified + model-aware result. Values are exact integers; axes are scaled separately + to keep the three compiled metrics readable.} + \label{fig:resources} +\end{figure} + +\subsection{Finite-step error ledger} + +At 97 steps the global upper bound is the sum of five outward rational +contributions shown in \cref{tab:error-ledger}. The leading D4 term is only +about half the final value; D5--D7 and the tail are quantitatively material. +This demonstrates why a leading-order-only prediction would not be an +adequate certificate at the boundary. + +\begin{table}[t] +\centering +\caption{Outward decimal summaries of exact rational contributions at +$r=97$.} +\label{tab:error-ledger} +\begin{tabular}{@{}lrr@{}} +\toprule +Contribution & Global error upper & Fraction of total (approx.) \\ +\midrule +D4 & $5.264367936822258\times10^{-7}$ & 52.86\% \\ +D5 & $1.383487536744612\times10^{-7}$ & 13.89\% \\ +D6 & $1.579057000594836\times10^{-7}$ & 15.86\% \\ +D7 & $1.894657080691470\times10^{-8}$ & 1.90\% \\ +Tail & $1.542560312083473\times10^{-7}$ & 15.49\% \\ +\midrule +Total & $9.958938494314325\times10^{-7}$ & 100\% \\ +\bottomrule +\end{tabular} +\end{table} + +\begin{figure}[t] + \centering + \includegraphics[width=0.72\textwidth]{figures/error_ledger.pdf} + \caption{Finite-step error ledger at the accepted integer. The dashed line + marks the total tolerance, not an independent allowance for each term.} + \label{fig:error-ledger} +\end{figure} + +The adjacent-step evidence is decisive for the integer search: +97 is accepted at $9.958938494314325\times10^{-7}$, whereas the same bound at +96 evaluates to $1.050565873970784\times10^{-6}$. The margin at 97 is about +$4.11\times10^{-9}$, so outward arithmetic and tail closure are not cosmetic; +ordinary double-precision summaries are not the source of the comparison. + +\subsection{Algebraic compression statistics} + +The D4 group sidecar contains 75,324 coefficient-bearing Pauli terms divided +into 7,576 verified groups. The largest group has ten members. The grouped +translation-cell norm $6.472926505087888$ replaces a post-aggregation direct +Pauli-$\ell_1$ value $20.160968407335066$, giving the local factor +$3.114660484942633$. This local factor and the final resource factor need not +coincide: the latter also reflects the nonlinear inversion of the step bound, +the subleading terms, the tail, and the integer merge rule. + +An auxiliary exact D5 computation produces 605,832 terms, 123,106 groups, and +a per-site upper bound $11.23706750025697$. It is retained as evidence for a +future tightening effort. It does not replace the complete D4--D7 global +ledger and is not used to claim a lower accepted step count. + +\subsection{Small-system structural cross-check} + +On a degenerate periodic $2\times2$ instance at the same 97-step count, direct +dense evaluation gives operator-norm error +$9.128277711816321\times10^{-10}$. The schema-v3 certificate specialization +gives the upper bound $2.7666666666666666\times10^{-8}$. The latter dominates +the measured error and remains below $10^{-6}$. This calculation checks stage +order, normalization, periodic bookkeeping, and the direction of the +inequality using an independent dense route. It is not an empirical proof of +the $12\times12$ result. + +\subsection{Recursive Suzuki audit} + +For context, the main certificate records a separate audit of standard +recursive Suzuki orders under its declared audit assumptions. The values in +\cref{tab:recursive-audit} are taken from the manifest-bound schema-v3 JSON; +they are not used in the primary 4.05$\times$ comparison. + +\begin{table}[t] +\centering +\caption{Auxiliary recursive-order audit stored in the authoritative main +certificate.} +\label{tab:recursive-audit} +\begin{tabular}{@{}rrrrr@{}} +\toprule +Order & Steps & Stages/step & Merged groups & Error upper summary \\ +\midrule +2 & 29,964 & 7 & 179,785 & $9.9999203748666826\times10^{-7}$ \\ +4 & 808 & 31 & 24,241 & $9.9682621337975879\times10^{-7}$ \\ +6 & 370 & 151 & 55,501 & $9.8463753882538689\times10^{-7}$ \\ +8 & 335 & 751 & 251,251 & $9.9829085642259163\times10^{-7}$ \\ +\bottomrule +\end{tabular} +\end{table} + +This audit illustrates that increasing formal order does not monotonically +reduce compiled cost at a fixed precision: the recursive stage multiplier can +outgrow the reduction in steps. It should not be confused with a literature- +wide optimal-formula search. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/verification.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/verification.tex new file mode 100644 index 000000000..f02e6bc76 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/manuscript/sections/verification.tex @@ -0,0 +1,108 @@ +\section{Certificate Architecture and Independent Verification} +\label{sec:verification} + +Large symbolic calculations are difficult to trust by inspection. We use a +proof-carrying architecture: discovery may be complex, but the final claim is +accepted only after a narrower verifier rechecks explicit evidence. + +\subsection{Trusted and untrusted components} + +\begin{figure}[t] +\centering +\resizebox{\textwidth}{!}{% +\begin{tikzpicture}[ + node distance=6mm and 10mm, + box/.style={draw,rounded corners,align=center,minimum height=9mm,minimum width=33mm}, + untrusted/.style={box,fill=orange!10}, + trusted/.style={box,fill=green!10}, + arr/.style={-{Stealth[length=2mm]},thick} +] +\node[untrusted] (gen) {symbolic generator\\and grouping search}; +\node[untrusted,below=of gen] (hpc) {parallel/HPC discovery\\and cached ledgers}; +\node[box,right=of gen,yshift=-8mm,fill=blue!5] (bundle) {hashed certificate bundle\\JSON, groups, summaries}; +\node[trusted,right=of bundle] (fast) {fast verifier\\schema + arithmetic}; +\node[trusted,below=of fast] (deep) {deep replay\\algebra + group membership}; +\node[trusted,right=of fast,yshift=-8mm] (claim) {accepted claim\\or explicit failure}; +\draw[arr] (gen)--(bundle); +\draw[arr] (hpc)--(bundle); +\draw[arr] (bundle)--(fast); +\draw[arr] (bundle)--(deep); +\draw[arr] (fast)--(claim); +\draw[arr] (deep)--(claim); +\end{tikzpicture} +} +\caption{Trust boundary. Parallel discovery and heuristic grouping are +untrusted producers. The accepted result depends on explicit evidence and +two verification paths.} +\label{fig:trust-boundary} +\end{figure} + +The trusted claim comprises the mathematical lemmas in this paper, the small +verification programs, exact integer/rational arithmetic, and the cryptographic +binding between manifest and sidecars. It does not require trusting the job +scheduler, the heuristic's optimality, cached stdout, or a claimed successful +HPC run. + +\subsection{Certificate contents} + +The schema-v3 certificate records: +\begin{itemize} + \item the complete benchmark tuple, normalization, formula, time, tolerance, + and primary resource metric; + \item the pinned theorem instantiation used for the baseline; + \item coefficient precision policies and rational interval endpoints; + \item D4 group-certificate path, SHA-256 digest, term count, group count, + maximum size, and norm enclosure; + \item D4--D7 and tail contributions at the accepted integer; + \item the accepted and previous-step global-error rationals; + \item integer resource arithmetic and the exact improvement ratio; and + \item auxiliary audit results explicitly separated from the primary claim. +\end{itemize} +Large membership data are sidecars rather than embedded in prose. The +manifest hash prevents a reviewer from inadvertently validating a different +file with the same name. + +\subsection{Fast and deep modes} + +Fast verification checks the schema, paths, hashes, integer identities, +rational comparisons, resource formulas, and headline invariants. It is +intended for continuous integration and reviewer orientation. Deep +verification additionally replays coefficient aggregation, checks every group +for exact coverage and pairwise anticommutation, verifies all rational square +roots, and reproduces the finite-step sum. + +The two modes serve different purposes. Fast verification answers whether a +checked-in bundle is internally bound and arithmetically self-consistent. +Deep verification answers whether the large algebraic witness supports its +declared norm. Neither mode treats a rounded decimal in a PDF as evidence. + +\subsection{Negative tests and failure localization} + +A certificate system is useful only if nearby corruptions fail. The test +suite mutates representative fields: a group member, a coefficient endpoint, +the accepted step count, a resource total, and a sidecar digest. Each mutation +must cause a nonzero verifier result. Further unit tests cover Pauli phase +multiplication, symplectic commutation, periodic canonicalization, rational +square-root enclosure, and the local 16-Pauli lemma. + +Failures are reported by layer. A hash mismatch is distinguished from a +schema error; a duplicate group member from a non-anticommuting pair; a failed +tail precondition from an error-bound comparison. This makes independent +reproduction tractable: a reviewer need not rerun the entire discovery +pipeline to diagnose a damaged artifact. + +\subsection{Claim classes} + +We label statements by evidence class: +\begin{description} + \item[Certified.] Derived from a manifest-bound witness and accepted by the + verifier, such as the 97-step result and integer resource counts. + \item[Cross-checked.] Supported by a structurally independent small-system or + exhaustive local calculation, but not the main large-system proof. + \item[Conditional.] An arithmetic consequence under a stated future premise, + such as the norm budget required for a fivefold result. + \item[Prospective.] A research direction or engineering optimization with no + claimed current performance. +\end{description} +This vocabulary prevents an observed trend, a possible optimization, and a +completed theorem from being conflated in the abstract or conclusion. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/plans/2026-07-29-anticommuting-d4-certificate-design.md b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/plans/2026-07-29-anticommuting-d4-certificate-design.md new file mode 100644 index 000000000..ed93ba96c --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/plans/2026-07-29-anticommuting-d4-certificate-design.md @@ -0,0 +1,164 @@ +# Anticommuting D4 Certificate Design + +## Objective + +Tighten the existing schema-v3 certificate for the fixed benchmark + +```text +periodic 12x12 spin-1/2 isotropic Heisenberg model +h_ij = (XX+YY+ZZ)/4 +T = 1 +operator-norm tolerance = 1e-6 +``` + +without changing its five-copy fourth-order Suzuki circuit, four-matching +fragmentation, or compiled-cost convention. The immediate target is a +machine-verified candidate at 98 Trotter steps: + +```text +candidate groups = 30*98 + 1 = 2941 +published groups = 11791 +improvement = 11791/2941 = 4.00918055083305... +``` + +## Evidence and feasibility + +At 98 steps the existing certificate gives a degree-four contribution +`1.6100509989613002e-6`. A discovery-only greedy partition of the concrete +local degree-four defect into pairwise-anticommuting groups of at most ten +Pauli strings reduced this contribution by a factor +`3.108054463616103`. Leaving every other certified contribution unchanged +then gives the discovery estimate + +```text +degree-four contribution: 5.180253492366627e-7 +all unchanged contributions: 4.395310649104868e-7 +total: 9.575564141471495e-7 +``` + +The `4.2443585852850405e-8` margin is much larger than the existing rational +coefficient-interval widths. This discovery result is not itself a proof; +the design below converts it into an independently checked certificate. + +## Mathematical certificate + +Write the exact local right-generator degree-four coefficient as + +```text +D4 = sum_j c_j P_j, +``` + +where every `P_j` is a phase-free Pauli string and every `c_j` is enclosed by +a rational interval. Partition the indices into disjoint groups `G_a` such +that every pair of distinct Paulis in one group anticommutes. Since + +```text +(sum_{j in G_a} c_j P_j)^2 = (sum_{j in G_a} c_j^2) I, +``` + +the group has the rigorous bound + +```text +||sum_{j in G_a} c_j P_j|| + <= sqrt(sum_{j in G_a} sup(|c_j|)^2). +``` + +One triangle inequality between groups gives the local certificate + +```text +||D4|| <= sum_a sqrt(sum_{j in G_a} sup(|c_j|)^2). +``` + +Every square root is rounded upward to a rational number. The optimizer may +use floating point to discover the partition, but the verifier trusts only +the submitted Pauli identifiers, exact symplectic anticommutation checks, +rational coefficient intervals, and outward-rounded square-root witnesses. + +## Architecture + +### Exact coefficient construction + +Refactor the existing leading-E5 calculation so it can return its merged +Pauli coefficient intervals instead of immediately summing their absolute +values. Canonicalize every local Pauli under translations by the colored +`2x2` unit cell before merging. Multiplying the homogeneous log coefficient +by five produces the degree-four right-generator coefficient. + +The original Pauli-l1 result remains available and remains the bound used for +the degree-five, degree-six, and degree-seven repeated-adjoint estimates. +Only `d4_site` changes in the first implementation. + +### Partition discovery + +Sort Pauli terms by decreasing interval midpoint magnitude. Starting with +the largest unused term, greedily add the largest unused term that +anticommutes with every current group member until the configured maximum +group size is reached. Singleton groups are allowed. Discovery output is a +deterministic tuple of Pauli-index tuples. + +### Proof object + +The schema-v3 candidate gains: + +```text +d4_norm_method +d4_pauli_terms +d4_anticommuting_groups +d4_group_bounds +d4_cell_norm_upper +``` + +Pauli terms are stored in binary symplectic form with rational coefficient +interval endpoints. Group bounds are exact rational outward upper bounds. + +### Independent verification + +The fast verifier checks: + +1. every submitted Pauli term appears exactly once; +2. indices are in range and groups are nonempty; +3. every pair within a group anticommutes exactly; +4. every group bound squares to at least the sum of squared coefficient + absolute upper endpoints; +5. group bounds sum to the submitted cell bound; +6. the cell-to-site conversion and total-error arithmetic are exact; +7. step 98 meets the tolerance and step 97 does not. + +Deep verification regenerates the interval coefficient map and requires it +to equal the proof object before repeating all fast checks. + +## Failure containment + +The new certificate is accepted only if its exact total at 98 steps is at +most `1e-6`. If interval inflation removes the discovery margin: + +1. increase the maximum anticommuting group size; +2. improve the deterministic clique assignment while retaining exact + verification; then +3. apply the same certificate to degree five. + +At every point the prior 116-step schema-v3 certificate remains a valid +fallback. No empirical norm is used in the proof path. + +## Tests + +- Exact unit tests for symplectic anticommutation and outward square roots. +- Partition coverage and corruption-rejection tests. +- A regression test proving the grouped bound is no larger than Pauli-l1. +- A slow regeneration test for the exact D4 interval coefficient map. +- Fast and deep certificate-verifier tests. +- Integer-boundary tests at steps 98 and 97. +- Existing dense `2x2` evolution cross-check updated to step 98. +- Full solution and repository test suites before submission. + +## Deferred work + +The 5x and 10x programs are intentionally separate: + +- 5x: exact right-generator coefficients through degree 10 plus shorter tail + and finite-cluster norm certificates; +- 10x: matching-phase cycling and a degree-four processor, or an + interval-certified optimized sixth-order kernel. + +Those changes are not required to establish the 4x certificate and will not +be mixed into its first reviewable commit series. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/plans/2026-07-31-proof-carrying-trotter-paper-design.md b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/plans/2026-07-31-proof-carrying-trotter-paper-design.md new file mode 100644 index 000000000..e761efef2 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/plans/2026-07-31-proof-carrying-trotter-paper-design.md @@ -0,0 +1,205 @@ +# Proof-Carrying Trotter Bound Paper Design + +## Objective + +Create an independent 22--30 page English research manuscript that develops +the Issue 128 result into a general scientific narrative. The manuscript will +present a proof-carrying, model-aware compiler for rigorous Trotter resource +bounds and use the certified `393 -> 97` Heisenberg result as its principal +case study. It will not modify the frozen certificate or promote the +conditional fivefold arithmetic to a certified claim. + +## Audience and publication posture + +The primary audience is researchers in quantum algorithms, Hamiltonian +simulation, computational many-body physics, and computer-assisted proof. +The initial format is a self-contained generic LaTeX article suitable for an +arXiv `quant-ph` release. Its structure will support later adaptation to +Physical Review Research or Quantum without rewriting the scientific core. + +The paper will make a strong but scoped claim: for the fixed periodic +`L=12` square-lattice Heisenberg benchmark, fixed five-copy fourth-order +Suzuki formula, uniform operator-norm target, and fixed compilation model, the +submitted exact certificate reduces the accepted resource count from 11,791 +to 2,911 merged group exponentials. The paper will call this a best-known +certified bound only with an explicit "to the best of our knowledge" qualifier. + +## Scientific narrative + +The paper is organized around a compiler pipeline rather than a chronological +competition report. Its source language is a local Pauli Hamiltonian, +fragmentation, product formula, evolution time, tolerance, and cost model. +Its intermediate representations are free associative words, homogeneous Lie +defects, concrete symplectic Pauli ledgers, and rational norm certificates. +Its output is an independently checkable adjacent-step error certificate and +an integer resource count. + +Every optimization stage will use the same explanatory pattern: + +1. identify the conventional relaxation; +2. explain what structural information it discards; +3. define the replacement transformation; +4. state and justify its soundness; +5. describe the implementation and data representation; +6. identify what the independent verifier checks; and +7. quantify the contribution to the final result where an isolated number is + available. + +## Claim taxonomy + +All statements will be labeled conceptually as one of three classes: + +- **Certified:** exact rational or outward interval statements verified from + frozen artifacts, including the `r=97` pass, `r=96` rejection, resource + arithmetic, D4 partition, D5 sidecar identity, and small-system enclosure. +- **Empirical cross-check:** dense small-system numerical error and any timing + or implementation measurements that are not used in the theorem. +- **Conditional research direction:** the `r=78` fivefold arithmetic, + processor candidates, shorter product formulas, and delayed-tail proposals. + +No conditional item may appear in the abstract or conclusion as an achieved +resource improvement. + +## Planned manuscript structure + +1. **Abstract.** State the fixed benchmark, proof-compiler contribution, + `393 -> 97` boundary, exact ratio, and trust model. +2. **Introduction.** Motivate the gap between general commutator bounds and + finite-instance resource estimates; list contributions and limitations. +3. **Problem formulation.** Define the Hamiltonian, fragmentation, product + formula, operator-norm objective, and compilation cost. +4. **Baseline reconstruction.** Separate the published Childs--Su--Tran-- + Wiebe--Zhu theorem from the paper's pinned interval instantiation; explain + the 31-center scan and the `r=393` control. +5. **Compiler overview.** Present inputs, intermediate representations, + outputs, invariants, and the discovery/trust boundary. +6. **Exact product-formula algebra.** Define sparse free-word series, + truncated multiplication, formal logarithms, symmetry, and order checks. +7. **Lie projection.** Define the Dynkin--Specht--Wever projection and its use + for degree-five and degree-seven defects. +8. **Concrete Pauli evaluation.** Define symplectic Pauli multiplication, + local commutator expansion, support filtering, and translation cells. +9. **Norm-last optimizations.** Explain translation canonicalization, exact + coefficient aggregation, and cancellation before norm inequalities. +10. **Certified anticommuting partitions.** Define the graph, clique cover, + Euclidean group norm, exact coverage checks, and rational square-root + enclosure; report the D4 statistics and reduction. +11. **Heisenberg local lemma.** Prove the 16-case bond commutator result and + explain its cumulative use in higher-degree propagation. +12. **Finite-step certificate.** Derive the right logarithmic generator, + degrees D4--D7, Duhamel integration, support growth, and rational + geometric tail. +13. **Resource compilation.** Prove `G(r)=30r+1`, derive bond and CNOT counts, + and establish the adjacent integer boundary. +14. **Proof-carrying verification.** Specify certificate schemas, hashes, + independent verifier checks, negative tests, and trusted arithmetic. +15. **Results and ablations.** Present the error ledger, resource table, + direct-versus-grouped D4 norm, recursive-order audit, negative routes, + and small-system cross-check. +16. **Related work and positioning.** Distinguish worst-case commutator bounds, + model-specific symbolic bounds, low-energy/average-case analyses, + MPF/LCU/error mitigation, formula optimization, and ordering methods. +17. **Limitations and research frontier.** Quantify the D4/D5/D6/D7/tail + bottlenecks at `r=78` and explain why tenfold requires an order lift. +18. **Reproducibility.** Provide exact commands, artifact identities, platform + metadata, and a claim-to-evidence matrix. +19. **Conclusion.** Restate the scoped certified contribution. +20. **Appendices.** Include formal-series identities, verifier pseudocode, + certificate schema, local Pauli table, detailed ledgers, and additional + literature-comparison tables. + +## Figures and tables + +The paper will include at least the following visuals: + +- compiler pipeline from formula to certificate; +- trusted versus untrusted computation boundary; +- baseline and candidate resource bars; +- stacked D4--tail error ledger at `r=97`; +- D4 norm reduction from termwise l1 to certified grouped l2; +- fivefold bottleneck ledger at `r=78` with certified/non-certified labeling; +- method comparison matrix across operator norm, changed circuit, state + restrictions, and machine verification; +- claim-to-evidence table and main artifact hashes. + +Figures will be generated from frozen numerical values or from deterministic +source data embedded with explicit provenance. Decorative figures will not +be used. + +## File architecture + +The manuscript will live under `docs/manuscript/` and remain separate from +the competition report: + +```text +docs/manuscript/ + main.tex + references.bib + sections/ + abstract.tex + introduction.tex + problem.tex + baseline.tex + compiler.tex + free_lie.tex + pauli.tex + norm_certificate.tex + finite_step.tex + verification.tex + results.tex + related_work.tex + limitations.tex + reproducibility.tex + conclusion.tex + appendices.tex + figures/ + scripts/ + output/pdf/issue128-proof-carrying-trotter-paper.pdf +``` + +Each section file will have one clear responsibility. The manuscript will +reference, but not duplicate or rewrite, the frozen JSON certificates. + +## Evidence policy + +Numerical claims must be sourced from one of: + +- `certificates/issue128-certificate.json`; +- `certificates/issue128-d4-groups.json`; +- `certificates/issue128-d5-groups.json.gz`; +- `certificates/issue128-small-crosscheck.json`; +- `artifacts/issue128-summary.json`; +- `artifacts/verification-transcript.txt`; or +- the committed fivefold audit. + +Literature claims require primary-source citations. The bibliography will +cover the 2021 commutator-scaling baseline, model-specific bounds, +low-energy and average-case results, multi-product formulas, randomized +corrections, interpolation and error mitigation, optimized compositions, +ordering strategies, practical BCH estimation, and nested-commutator +compensation. + +## Verification and quality gates + +The manuscript is complete only when all of the following hold: + +1. LaTeX compiles without errors, unresolved references, or unresolved + citations. +2. The PDF has at least 15 substantive pages. +3. Every page is rendered to an image and visually checked for clipping, + overlap, broken equations, illegible plots, and bad page breaks. +4. Automated text checks find no `TODO`, placeholder citation, or accidental + fivefold certified claim. +5. All copied resource and error numbers match the frozen JSON artifacts. +6. The manifest-bound competition package still passes unchanged. +7. The final handoff identifies the manuscript as a local follow-up document, + not as a post-deadline mutation of the judged PR. + +## Non-goals + +- Do not alter the frozen `4.050498x` certificate or its manifest. +- Do not claim an accepted `r=78` certificate. +- Do not invent multi-model numerical results that have not been computed. +- Do not present the current method as an asymptotic improvement over all + Hamiltonian-simulation algorithms. +- Do not commit the unrelated in-progress HPC files as part of the paper. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/presentation/issue128-10-minute-talk.md b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/presentation/issue128-10-minute-talk.md new file mode 100644 index 000000000..46cf2e0b6 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/presentation/issue128-10-minute-talk.md @@ -0,0 +1,129 @@ +# Issue 128:10 分钟成果展示讲稿 + +## 演讲边界 + +- 主张只冻结为:同一基准、同一四阶 Suzuki 公式、同一编译成本模型下,合并群指数从 11,791 降为 2,911,精确倍率为 `11791/2911 = 4.050498110614909...`。 +- `r=97` 被精确证书接受,`r=96` 被同一误差函数拒绝。 +- D8/HPC 计算属于“正在验证的五倍候选门槛”,在完整归并和全局误差账本通过前,不宣布五倍结果。 + +## 0:00--0:40|第 1 页:一句话结论 + +屏幕只放四个数字:`393 → 97`、`11791 → 2911`、`4.050498×`、`ε = 10⁻⁶`。 + +讲稿: + +> 我解决的是一个固定的二维 Heisenberg Trotter 基准。没有换 Hamiltonian,没有换乘积公式,也没有换成本口径。公开高阶交换子界需要 393 步;我的机器可验证证书接受 97 步并拒绝 96 步。因此合并群指数从 11,791 降到 2,911,精确提升 4.050498 倍。 + +## 0:40--1:35|第 2 页:题目与公平比较 + +放基准表:`L=12`、`N=144`、`T=1`、周期边界、各向同性 Heisenberg、全局算符范数误差 `≤10⁻⁶`。右侧放成本公式 `G(r)=30r+1`。 + +讲稿重点: + +> 四个匹配片段、31-stage 四阶 Suzuki 单步和每条 Heisenberg bond 的编译上界,两边完全相同。倍率来自证明更紧,而不是问题变简单。用 `G(r)=30r+1` 代入 393 和 97,就得到可复核的整数资源比。 + +## 1:35--2:30|第 3 页:旧证明为什么松 + +画一条对比流水线: + +`先三角不等式 → 取消被破坏 → 大常数` + +对比 + +`完整公式对数 → Lie 投影 → 具体 Pauli 合并 → 最后取范数` + +讲稿: + +> 关键不是把同一个程序跑快,而是推迟范数不等式。若先把嵌套交换子逐项取绝对值,Heisenberg 代数中的符号取消和同 Pauli 字符串合并会永久丢失。我先保留精确有理系数,到具体格点表示中完成合并,再做可证明的范数闭合。 + +## 2:30--4:05|第 4 页:核心技术 + +只讲三件事: + +1. 31-stage 公式的自由结合代数对数与 Lie 投影; +2. 平移规范化后合并完全相同的 Pauli 字符串; +3. 对两两反对易组使用 `||Σ c_j P_j|| = sqrt(Σ|c_j|²)`,平方根向外取有理上界。 + +讲稿: + +> D4 侧车中有 75,324 个规范 Pauli 项,被证书划分成 7,576 个两两反对易组,最大组大小 10。逐项 Pauli-l1 的局部上界是 20.1609,而分组后的认证上界是 6.4729,局部范数步骤收紧 3.11466 倍。分组算法可以是启发式的,但 verifier 会独立检查覆盖、重复、每一对反对易关系以及每个向外平方根界。 + +## 4:05--5:25|第 5 页:严格误差账本 + +放 `r=97` 的五行表: + +| 项 | 全局上界 | +|---|---:| +| D4 | `5.2643679368e-7` | +| D5 | `1.3834875367e-7` | +| D6 | `1.5790570006e-7` | +| D7 | `1.8946570807e-8` | +| D8+ tail | `1.5425603121e-7` | +| 总计 | `9.9589384943e-7 < 1e-6` | + +讲稿: + +> 所有判定使用整数交叉相乘和精确有理数,屏幕上的小数只用于阅读。尤其重要的是,没有把七阶以上直接删掉:D8 及以上由显式、向外的有理几何尾闭合。97 步严格低于阈值,而 96 步是 `1.0505658739e-6`,严格高于阈值。 + +## 5:25--6:35|第 6 页:结果与题目符合性 + +放资源表: + +| 资源 | 对照 | 本工作 | 倍率 | +|---|---:|---:|---:| +| Trotter steps | 393 | 97 | 4.0515×(步数口径) | +| merged groups | 11,791 | 2,911 | 4.050498× | +| bond propagators | 848,952 | 209,592 | 4.050498× | +| CNOT upper bound | 2,546,856 | 628,776 | 4.050498× | + +讲稿: + +> 题目要求至少两倍;这里达到四倍以上。主倍率必须报资源整数比 `11791/2911`,不能用四舍五入后的误差或只报步数比。所有成本行由同一编译模型导出,所以口径一致。 + +## 6:35--8:10|第 7 页:现场可验证性 + +现场只运行快速 verifier,不现场重算大侧车: + +```bash +pytest -q +PYTHONPATH=src python scripts/verify.py \ + certificates/issue128-certificate.json +shasum -a 256 -c artifacts/SHA256SUMS +``` + +先展示预期字段:`valid=true`、`verification_level=fast`、 +`deep_proof_regenerated=false`、`published_steps=393`、 +`candidate_steps=97`、`exact_improvement_ratio=11791/2911`。 + +现场快速命令的 `deep_proof_regenerated` 预期为 `false`;预先录制或单独运行的 +`--deep` 结果才应为 `true`。十分钟演讲不等待 deep regeneration 完成。 + +讲稿: + +> 搜索代码不在信任边界里。verifier 从侧车重新检查哈希、精确覆盖、反对易关系、误差账本和资源整数算术。今天本地常规测试结果是 93 passed、11 deselected;深验证也重新生成并通过。大文件由 SHA-256 绑定,报告、JSON、文本摘要和执行 transcript 相互对应。 + +## 8:10--9:15|第 8 页:正在推进的五倍门槛 + +放一条红线:`5× ⇔ r≤78`,并写 `尚未声明`。 + +讲稿: + +> 五倍的资源算术要求 78 步或更少,但算术不是误差证明。现有精确 D5 侧车已经通过;当前超算任务正在把完整右生成元的 D8 系数按 31 个 stage 精确分片计算,并用正反两种顺序归并检查确定性。只有 D4 到 D8+ 的全局账本在 78 步整体小于 `10⁻⁶`,我才会改写倍率;否则结果仍冻结为 4.050498 倍。 + +## 9:15--10:00|收束 + +讲稿: + +> 这项工作的结论不是“数值上看起来更好”,而是“同一问题上,把 4.050498 倍资源下降变成独立程序能够拒绝错误、重新生成关键量并复核整数边界的证书”。现有四倍结果已经闭环;五倍是一个有明确通过条件、不会提前宣传的后续研究问题。 + +最后停在一页二维码/路径:PR、`issue128-certificate.json`、 +30 页长论文 PDF、技术报告 PDF、验证命令。 + +## 问答备忘 + +- **为什么不是 5×?** 因为 `r≤78` 的完整全局误差账本尚未闭合;D5 或 D8 的单项改善不能代替总证书。 +- **启发式分组会不会不严谨?** 搜索可启发式,接受条件不是;verifier 精确检查每个成员、覆盖关系和每一对反对易。 +- **为什么可把无限格点密度用于 12×12?** 证书的平移规范化、支撑半径和有限尺寸条件由 verifier 检查;不靠未经检查的热力学极限外推。 +- **倍率是否改变了门数模型?** 否。对照与本工作使用同一 + `G(r)=30r+1` 合并规律和同一 bond/CNOT 上界。 +- **浮点数在哪里出现?** 只用于排序、显示和小型稠密 sanity check;接受/拒绝使用整数、有理数和向外区间。 diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/ERRATA.md b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/ERRATA.md new file mode 100644 index 000000000..824a9fd07 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/ERRATA.md @@ -0,0 +1,49 @@ +# Erratum for the frozen short technical report + +Date recorded: 2026-07-31 (Asia/Shanghai) + +## Scope + +The six-page short report and the reviewer README frozen at commit +`ebb055926302c7d911e5ab00805513c382ac458d` contain a legacy auxiliary table +for recursive Suzuki orders 2, 4, 6, and 8. That table does not agree with the +authoritative schema-v3 main certificate. + +The affected legacy values are: + +```text +269,677; 36,361; 83,101; 377,251 merged groups +``` + +The authoritative values stored in +`certificates/issue128-certificate.json` under +`published_recursive_suzuki_audit` are: + +| Recursive order | Steps | Stages per step | Merged groups | Error upper summary | +|---:|---:|---:|---:|---:| +| 2 | 29,964 | 7 | 179,785 | `9.9999203748666826e-7` | +| 4 | 808 | 31 | 24,241 | `9.9682621337975879e-7` | +| 6 | 370 | 151 | 55,501 | `9.8463753882538689e-7` | +| 8 | 335 | 751 | 251,251 | `9.9829085642259163e-7` | + +## Authority rule + +For exact numerical claims, the JSON certificate and its SHA-256-bound +sidecars are authoritative. The old short-report table is retained unchanged +so that the frozen manifest remains reproducible; it must not be cited as +current evidence. The long-form manuscript uses the schema-v3 values. + +## Impact on the principal result + +There is no impact on the certified result. The auxiliary recursive-order +audit is not used to derive any of the following primary quantities: + +- pinned control: 393 steps and 11,791 merged groups; +- accepted candidate: 97 steps and 2,911 merged groups; +- adjacent boundary: 97 accepted and 96 rejected; +- exact resource ratio: `11791/2911 = 4.050498110614909...`; +- D4 partition: 75,324 terms in 7,576 verified groups. + +The primary quantities remain bound to the unchanged main certificate with +SHA-256 +`0a09623ce3b292a3637065c870fb3153bbdcddce30aef968565c4db3ddfc7201`. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/issue128-hpc-sprint-log.md b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/issue128-hpc-sprint-log.md new file mode 100644 index 000000000..42ca9148b --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/issue128-hpc-sprint-log.md @@ -0,0 +1,53 @@ +# Issue 128 六小时 HPC 冲刺运行记录 + +记录日期:2026-07-31(Asia/Shanghai) + +## 冻结主张 + +本轮计算不覆盖既有认证结果。当前唯一可对外报告的倍率仍为 +`11791/2911 = 4.050498110614909...`,对应 `r=393 → r=97`。除非新的完整全局误差账本及 fast/deep verifier 同时通过,否则不得把 D8 分项结果宣传为新的整体倍率。 + +## 可复现源状态 + +- 本地分支:`codex/issue128-hpc-six-hour` +- 生产源提交:`e65c95f4ae76dc1a78e81715cac21cfd7a81dbf8` +- 远端入口:`xh5-acamtw` +- 远端仓库:`/work/home/acamtw70yu/quantum-harness-issue128-hpc` +- Slurm account/QOS/partition:`giggleliu` / `user_acamtw70yu` / `xhacnormalb` +- 计算类型:CPU 上的 Python 精确整数/有理数与稀疏 Pauli 字典;GPU 不适用。 + +## 快速门槛 + +- Python 文件通过 `py_compile`。 +- 坐标无关制品、确定性 gzip、manifest 与损坏拒绝测试:3 passed。 +- 本地 stage 30 / order 8 smoke 成功,重复制品哈希稳定。 +- 本地常规测试:93 passed,11 deselected,41.12 秒。 +- 本地 deep verifier:`valid=true`,`deep_proof_regenerated=true`。 +- 远端 smoke:作业 `23044170`,stages 28--30 完成且 manifest/hash 正常;stage 27 用作较重梯度检查。 + +## 生产图 + +| 角色 | Slurm job | 资源/上限 | 依赖 | +|---|---:|---|---| +| 31-stage exact D8 array | `23044178` | 每单元 17 CPU、64 GiB、4:30:00 | 无 | +| deep verifier + 全测试 | `23044196` | 9 CPU、32 GiB、4:30:00 | 无 | +| exact reducer | `23044212` | 26 CPU、96 GiB、1:15:00 | `afterok:23044178` | + +数组最初以 16 路并发启动;确认账号/QOS允许后,用 Slurm 正常调度接口把 `ArrayTaskThrottle` 提升到 31。所有剩余单元随后进入 RUNNING;调度和授权仍由集群控制器执行。 + +## 制品契约 + +每个 `stage-XX` 目录包含: + +- `shard.json.gz`:坐标寻址、registry 无关、canonical JSON、确定性 gzip; +- `manifest.json`:stage/order、开始结束时间、wall time、峰值 RSS、term counts、源提交、dirty 标志和 SHA-256; +- Slurm stdout/stderr:启动与完成状态。 + +归并器要求 31 个 manifest 全部成功、公式 ID/order/source commit 一致、每个 shard 哈希匹配,并要求正向与反向精确归并得到相同字典。任何失败均不得生成倍率主张。 + +## 终局判定 + +1. 若数组和 reducer 完成:读取 exact D8 site-density upper,重建 `r=78` 的完整 D4--D8+账本,再运行 fast/deep verifier。 +2. 若任一 stage OOM/timeout:保留成功制品和 sacct 证据,按失败类别只重提缺失单元,不把部分和当全局界。 +3. 若完整账本 `≤10⁻⁶`:可以进入五倍候选复核;仍需独立证书、报告和 fresh-clone 重现。 +4. 若完整账本 `>10⁻⁶`:报告严格负结果与缺口,主倍率保持 4.050498×。 diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/issue128-hpc-sprint-report.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/issue128-hpc-sprint-report.tex new file mode 100644 index 000000000..f37a94742 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/issue128-hpc-sprint-report.tex @@ -0,0 +1,145 @@ +\documentclass[10pt]{article} +\usepackage[margin=0.72in]{geometry} +\usepackage[T1]{fontenc} +\usepackage{lmodern} +\usepackage{microtype} +\usepackage{amsmath,amssymb} +\usepackage{booktabs} +\usepackage{xcolor} +\usepackage{hyperref} +\hypersetup{ + colorlinks=true, + urlcolor=blue!60!black, + linkcolor=blue!55!black, + pdftitle={Issue 128 Exact-D8 HPC Sprint: Interim Technical Supplement}, + pdfauthor={Junkai Wang (WangTheoPhys)} +} +\setlength{\parindent}{0pt} +\setlength{\parskip}{0.30em} + +\title{Issue 128 Exact-D8 HPC Sprint\\\large Interim Technical Supplement} +\author{Junkai Wang (WangTheoPhys)} +\date{31 July 2026} + +\begin{document} +\maketitle + +\begin{abstract} +This supplement records a six-hour, proof-directed HPC sprint following the +machine-certified Issue 128 result. The accepted claim remains frozen at +$11791/2911=4.050498110614909\ldots$; no fivefold result is asserted here. +The sprint computes the order-eight coefficient of the exact right generator +as 31 independently checkable stage shards, runs the accepted deep verifier +independently, and ranks 24 matching-color orders in an explicitly untrusted +discovery path. Every production artifact is atomic, hash-addressed, and +bound to a source commit. This is an interim execution report: the final +claim gate remains closed until all shards are reduced and a complete global +error ledger passes both fast and deep verification. +\end{abstract} + +\section{Frozen result and research gate} + +For the periodic $12\times12$ isotropic Heisenberg benchmark at $T=1$ and +global operator-norm tolerance $10^{-6}$, the certified fourth-order Suzuki +result accepts $r=97$ and rejects $r=96$. With $G(r)=30r+1$ merged group +exponentials, the exact resource ratio is +\[ + \frac{G(393)}{G(97)}=\frac{11791}{2911} + =4.050498110614909\ldots . +\] +Fivefold arithmetic would require $r\le78$, but this arithmetic is not an +error proof. The present experiment targets one missing ingredient: a +concrete exact order-eight right-generator coefficient map. A new multiplier +may be reported only if a complete D4--D8-plus global ledger at the proposed +step count is at most $10^{-6}$ and independent verification succeeds. + +\section{Exact sharding algorithm} + +For stages $V_j(t)=\exp(-i a_j t H_{c_j})$ in the fixed 31-stage formula, +linearity gives a decomposition of the right generator into 31 contributions. +Each array task starts from $a_jH_{c_j}$ and conjugates it through all later +stages, truncating only the formal series degree at eight. Coefficients live +exactly in $\mathbb{Q}[\alpha]/(\alpha^3-4)$; Pauli operators are canonicalized +under the $2\times2$ translation cell before serialization. + +The shard format does not expose process-local registry bit indices. Every +Pauli string is encoded by physical integer coordinates and labels. Canonical +JSON and gzip with fixed metadata make repeated output byte-deterministic. +The manifest records stage, order, timestamps, term counts, peak RSS, source +commit, dirty flag, and SHA-256. The reducer rejects a missing stage, wrong +formula/order, mixed source state, corrupt hash, or duplicate stage. It also +requires forward and reverse exact reduction to produce identical maps. + +For a cubic coefficient $c=a_0+a_1\alpha+a_2\alpha^2$, an outward rational +interval for $\alpha=\sqrt[3]{4}$ encloses $c$. Summing the larger endpoint +magnitudes yields a rigorous Pauli-$\ell_1$ upper bound. This bound is a +screening ingredient; it is not by itself the global $r=78$ certificate. + +\section{Execution contract} + +The production source is commit +\texttt{e65c95f4ae76dc1a78e81715cac21cfd7a81dbf8}. Jobs run on the +\texttt{xhacnormalb} CPU partition under account \texttt{giggleliu} and QOS +\texttt{user\_acamtw70yu}. GPU partitions are intentionally excluded because +the workload is sparse Python integer/rational algebra. + +\begin{table}[h] +\centering +\begin{tabular}{@{}lllr@{}} +\toprule +Role & Slurm job & Per-task allocation & Limit \\ +\midrule +Exact D8 array (31 stages) & 23044178 & 17 CPU, 64 GiB & 4:30 \\ +Independent verification & 23044196 & 9 CPU, 32 GiB & 4:30 \\ +Exact reducer & 23044212 & 26 CPU, 96 GiB & 1:15 \\ +Order screen (24 permutations) & 23044214 & 5 CPU, 16 GiB & 1:00 \\ +\bottomrule +\end{tabular} +\caption{Submitted Slurm work. The reducer has an \texttt{afterok} +dependency on the D8 array.} +\end{table} + +The array first passed \texttt{sbatch --test-only}. A four-cell remote smoke +then completed the lightest stages and produced matching deterministic +artifacts. The partition's 3931 MiB-per-CPU memory rule was discovered by the +test-only gate and reflected in all allocations. Once production started, +the voluntary array throttle was raised from 16 to 31; Slurm and QOS retained +authority over placement and admission. + +\section{Verification evidence at launch} + +The local proof-preservation gate reported 93 passing tests and 11 deselected +slow tests in 41.12 seconds. A separate deep verifier run returned +\texttt{valid=true} and \texttt{deep\_proof\_regenerated=true}, reproduced +$393\to97$, and returned the exact ratio \texttt{11791/2911}. At the first +full-concurrency snapshot, the D8 run contained 28 running manifests, three +complete manifests, and zero failures. The light-stage completion times were +approximately 5.61 seconds (stage 28), 0.171 seconds (stage 29), and 0.024 +seconds (stage 30). These timings validate the transport and serialization +path; they do not predict the much heavier early stages. + +The matching-order array is a separate discovery lane. Its JSON records +\texttt{trusted=false} and states that its purpose is discovery ranking. A +favorable ranking can nominate a formula for exact reconstruction but cannot +enter the certificate directly. + +\section{Final adjudication protocol} + +The outcome will be classified as follows. +\begin{enumerate} + \item If all 31 shards and exact reduction succeed, insert the resulting D8 + upper bound into a complete $r=78$ ledger and rerun fast/deep checks. + \item If any task reaches OOM or walltime, retain successful shards and + scheduler evidence, retry only missing cells if time remains, and make + no inference from a partial sum. + \item If the complete ledger is at most $10^{-6}$, prepare a new independently + bound certificate before describing a fivefold result. + \item Otherwise publish the strict negative result or remaining numerical + gap, while keeping the certified 4.050498-fold result unchanged. +\end{enumerate} + +\textbf{Interim status.} This document records a running experiment, not a +new performance claim. The accepted result remains 4.050498-fold until the +final gate above is closed. + +\end{document} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/issue128-technical-report.tex b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/issue128-technical-report.tex new file mode 100644 index 000000000..2fffc0391 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/issue128-technical-report.tex @@ -0,0 +1,359 @@ +\documentclass[11pt]{article} + +\usepackage[margin=0.82in]{geometry} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage{lmodern} +\usepackage{microtype} +\usepackage{amsmath,amssymb} +\usepackage{booktabs} +\usepackage{array} +\usepackage{tabularx} +\usepackage{xcolor} +\usepackage{hyperref} +\usepackage{url} + +\hypersetup{ + colorlinks=true, + linkcolor=blue!55!black, + citecolor=blue!55!black, + urlcolor=blue!60!black, + pdftitle={Issue 128: A Machine-Certified 4.050498x Trotter Resource Reduction}, + pdfauthor={Junkai Wang (WangTheoPhys)} +} + +\setlength{\parindent}{0pt} +\setlength{\parskip}{0.45em} +\setlength{\emergencystretch}{2em} +\newcommand{\opnorm}[1]{\left\lVert #1\right\rVert} +\newcommand{\PauliLOne}{\ell_{1,\mathrm{Pauli}}} + +\title{\textbf{Issue 128: A Machine-Certified 4.050498$\times$\\ +Trotter Resource Reduction for a 2D Heisenberg Benchmark}} +\author{Junkai Wang (WangTheoPhys)\\ +\small Quantum Circuit Simulation Track} +\date{July 30, 2026} + +\begin{document} +\maketitle + +\begin{abstract} +We give an exact-rational, independently checkable certificate for simulating +the periodic $12\times12$ spin-$1/2$ isotropic Heisenberg model to global +operator-norm error at most $10^{-6}$ for time $T=1$. The circuit is the same +five-copy fourth-order Suzuki product formula, with the same four matching +fragments and the same compilation cost model, on both sides of the +comparison. A pinned instantiation of the published high-order commutator +bound requires 393 steps and 11,791 merged group exponentials. Our certificate +accepts 97 steps and rejects 96, requiring 2,911 merged group exponentials. +The exact improvement is $11791/2911=4.050498110614909\ldots$, with a +75.3117\% resource reduction. The gain comes from delaying norm inequalities: +we compute the formula logarithm, project it to Lie elements, evaluate the +concrete lattice representation, combine identical Pauli strings, and certify +pairwise-anticommuting groups before closing a finite-step right-generator +ledger with a rational tail. The result exceeds the challenge's twofold +requirement by a factor of 2.025. An exact degree-five side study is also +included, but no 78-step global error certificate is claimed or supplied. +\end{abstract} + +\section{Claim boundary and benchmark} + +The certified benchmark is +\begin{equation} + H=\sum_{\langle i,j\rangle} + \frac{X_iX_j+Y_iY_j+Z_iZ_j}{4}, + \qquad L=12,\quad N=L^2=144,\quad T=1, + \label{eq:hamiltonian} +\end{equation} +with periodic boundary conditions and target +$\opnorm{U(T)-\widetilde U(T)}\le 10^{-6}$. Horizontal and vertical bonds are +split by parity into four commuting matchings. A symmetric second-order step +is composed five times to obtain the standard fourth-order Suzuki formula. +After adjacent equal fragments are merged, an $r$-step simulation contains +\begin{equation} + G(r)=30r+1 + \label{eq:groups} +\end{equation} +group exponentials. Each group has $N/2=72$ disjoint bond propagators, and we +use the same upper bound of three CNOT gates per Heisenberg bond propagator on +both sides. + +This report makes one principal claim: the supplied exact certificate proves +that $r=97$ is sufficient, while its own error function rejects $r=96$. The +comparison fixes the Hamiltonian, product formula, fragmentation, time, +tolerance, and cost model. It therefore measures a proof/certification gain, +not a change in physical problem or a favorable redefinition of cost. + +The published control is an interval instantiation of the high-order +commutator framework of Childs, Su, Tran, Wiebe, and Zhu +\cite{childs2021theory}, using the expansion-first local Pauli-$\ell_1$ +procedure also connected to later commutator-scaling work +\cite{schubert2023trotter}. All 31 admissible theorem centers were scanned; +center 20 gives the lowest pinned control, 393 steps. This control is stored +in the main certificate rather than recomputed from a floating-point constant. + +\section{Where the improvement comes from} + +Let the four anti-Hermitian matching generators be $A_1,\ldots,A_4$, and let +$S_4(t)$ denote one merged fourth-order step. A conventional bound expands +partial Hamiltonian sums into many nested commutators and applies triangle +inequalities early. That destroys cancellations before the concrete +Heisenberg algebra is visible. Our method reverses this order: + +\begin{enumerate} + \item compute the homogeneous free-associative-word logarithm of the complete + 31-stage formula; + \item use the Dynkin--Specht--Wever map to project the degree-five and + degree-seven pieces into their Lie elements; + \item evaluate those Lie elements in the four-matching Heisenberg + representation on the infinite translation cell; + \item canonicalize translations and combine identical Pauli strings before + any final norm inequality; + \item partition the leading right-generator terms into exactly verified + pairwise-anticommuting groups; and + \item convert the logarithm to the right generator, retain degrees four + through seven explicitly, and bound the remaining degrees by a + rational geometric locality tail. +\end{enumerate} + +If the Pauli strings in $K_g=\sum_j c_jP_j$ anticommute pairwise, then +$K_g^2=(\sum_jc_j^2)I$, and hence +\begin{equation} + \opnorm{K_g}=\sqrt{\sum_j |c_j|^2}. + \label{eq:anticommute} +\end{equation} +We use an outward rational upper bound for each square root. The greedy +grouping algorithm is only a discovery tool: the sidecar records every term, +every group membership, and every group bound. The verifier independently +checks exact coverage and every symplectic anticommutation relation. Thus a +different grouping heuristic can change efficiency, but it cannot weaken the +soundness of an accepted certificate. + +The submitted leading-defect sidecar contains 75,324 canonical Pauli terms in +7,576 groups, with maximum group size 10. The direct termwise cell bound +20.160968407335066 is reduced to the certified grouped bound +6.472926505087888, an improvement of 3.114660484942633 at the leading local +norming step. + +\section{A Heisenberg-specific local lemma} + +The higher-degree ledger also benefits from an exact local observation. For +one normalized bond +\begin{equation} + h=\frac{XX+YY+ZZ}{4}, +\end{equation} +every phase-free two-qubit Pauli string anticommutes with either zero or +exactly two of $XX$, $YY$, and $ZZ$. Direct enumeration of the 16 local +Pauli cases therefore gives +\begin{equation} + \opnorm{[h,P]}_{\PauliLOne} + \le \opnorm{P}_{\PauliLOne}, + \label{eq:locallemma} +\end{equation} +so the bond commutator growth constant is 1 rather than the generic +triangle-inequality value $3/2$. This is a small lemma with a large cumulative +effect because it enters repeated support-growth estimates. The verifier +checks the complete local table exactly; it does not assume the lemma as an +external analytic input. + +This separation of discovery and trust is important. Symbolic search finds a +compact representation and a strong grouping, while the trusted path uses +integers, rational numbers, outward rational intervals, and exact symplectic +Pauli multiplication. Floating point is used only to rank candidates, print +human-readable decimals, and perform a small dense sanity check. + +\section{Finite-step error certificate} + +Write the one-step logarithm as +\begin{equation} + \log S_4(t)=tA+t^5B+t^7C+O(t^9), +\end{equation} +where $A=\sum_{j=1}^4 A_j$. The exact right logarithmic generator has the +low-degree expansion +\begin{align} + S_4'(t)S_4(t)^{-1}-A + ={}&5t^4B+2t^5[A,B] \\ + &+t^6\!\left(7C+\frac23[A,[A,B]]\right) \\ + &+t^7\!\left(3[A,C]+\frac16[A,[A,[A,B]]]\right) + +R_{\ge8}(t). + \label{eq:rightgenerator} +\end{align} +The D4 term is evaluated with the exact anticommuting partition. Degrees D5 +through D7 are bounded by the certified concrete coefficients and the local +lemma. Support growth, conjugation Taylor factorials, and the Duhamel +integration factor make $R_{\ge8}$ an explicit rational geometric series. +Nothing beyond degree seven is silently discarded. + +For $r=97$, the exact rational contributions have the following outward +decimal renderings. + +\begin{table}[ht] +\centering +\caption{Certified global operator-norm error ledger at $r=97$.} +\label{tab:errorledger} +\begin{tabular}{@{}lr@{}} +\toprule +Right-generator contribution & Global upper bound \\ +\midrule +Degree 4 & $5.264367936822258\times10^{-7}$ \\ +Degree 5 & $1.383487536744612\times10^{-7}$ \\ +Degree 6 & $1.579057000594835\times10^{-7}$ \\ +Degree 7 & $1.894657080691470\times10^{-8}$ \\ +Degree 8 and above & $1.542560312083473\times10^{-7}$ \\ +\midrule +Total & $9.958938494314325\times10^{-7}$ \\ +\bottomrule +\end{tabular} +\end{table} + +The underlying total is a rational number and is strictly below $10^{-6}$. +At $r=96$, the outward decimal is +$1.050565873970784\times10^{-6}$, strictly above the target. The step boundary +is checked by cross-multiplying integers, not by comparing rounded decimals. +The printed decimal convention rounds positive certified upper bounds upward +at 16 significant digits, so display conversion never understates the bound. + +\section{Resource result} + +Because both rows use the same 31-stage formula and compilation model, the +resource comparison follows directly from Eq.~\eqref{eq:groups}. + +\begin{table}[ht] +\centering +\caption{Pinned rigorous control and certified result.} +\label{tab:resources} +\begin{tabular}{@{}lrrr@{}} +\toprule +Resource & Published control & This work & Reduction \\ +\midrule +Trotter steps & 393 & 97 & 75.32\% \\ +Merged group exponentials & 11,791 & 2,911 & 75.31\% \\ +Bond propagators & 848,952 & 209,592 & 75.31\% \\ +CNOT upper bound & 2,546,856 & 628,776 & 75.31\% \\ +\bottomrule +\end{tabular} +\end{table} + +The primary exact ratio is +\begin{equation} + \frac{G(393)}{G(97)}=\frac{11791}{2911} + =4.050498110614909\ldots. +\end{equation} +The challenge asks for at least a twofold resource improvement. The achieved +ratio is 2.025249 times that requirement---equivalently, 202.5\% of the stated +minimum ratio, or 102.5\% beyond it. We call this a fourfold certified result, +not a fivefold result. + +\section{Independent checks and negative results} + +The certificate is designed to be reviewable without trusting the search +code. The fast verifier checks the main certificate digest bindings, all +75,324 D4 terms, exact coverage by 7,576 groups, every pairwise +anticommutation relation, each rational square-root upper bound, the integer +step boundary, and all resource arithmetic. A deep mode regenerates the +published control, the canonical leading-defect coefficients, the +degree-seven majorant, and the finite tail from the formula. + +A degenerate $2\times2$ periodic-algebra cross-check gives actual dense +spectral-norm error $9.128277711816321\times10^{-10}$, below its outward +certificate $2.766666666666667\times10^{-8}$. This is not used to infer the +$12\times12$ result; it catches representation, stage-ordering, and +normalization errors on a tractable instance. + +We also record routes that did not justify a stronger claim: +\begin{itemize} + \item The degree-three Lie representation has exact rank 20, equal to the + free-Lie dimension $(4^3-4)/3=20$. The four matching fragments thus + offer no free model-specific reduction of fourth-order conditions. + \item Standard recursive Suzuki orders 2, 4, 6, and 8 compile to 269,677, + 36,361, 83,101, and 377,251 groups, respectively, under the audited + generic locality-tail bound. Raising recursive order alone is worse. + \item A three-site SU(2) cluster decomposition improves local block counts + but not the conservative compiled CNOT bound after including the + three-site propagator cost. + \item Empirically optimized formulas were not substituted for a deterministic + worst-case certificate. Their sampled constants cannot replace an + interval-certified comparison on this benchmark. +\end{itemize} + +\section{Fivefold feasibility boundary} + +Fivefold arithmetic would require $G(r)\le\lfloor11791/5\rfloor$, hence +$r\le78$. Conditional on an accepted 78-step error proof, +$G(78)=2341$ and $11791/2341=5.036736437419906\ldots$. That arithmetic is not +an error certificate. + +As a concrete follow-up, we generated and independently verified an exact +degree-five sidecar with 605,832 canonical Pauli terms, 123,106 same-support +pairwise-anticommuting groups, and site-density upper bound +11.23706750025696. This closes one useful algebraic subproblem and validates +the streamed cubic-field machinery. It does not close the global ledger at +$r=78$: the translation-coupled D4 budget and explicit D8-plus delayed-tail +certificate remain hard gates. \textbf{No 78-step global error certificate is +claimed or supplied.} + +The audit therefore gives a precise next research decision. Rebuild the +complete exact ledger at $r=78$ only after D4 and D8-plus gates are closed; if +the sum is at most $10^{-6}$, fivefold can be claimed. For tenfold, the +current fourth-order ledger is off by hundreds even with the D4 contribution +removed, so an effective order lift---for example a certified processor or a +shorter sixth-order kernel---is required. + +\section{Reproduction and delivered evidence} + +From the \texttt{issue128} directory, a reviewer can run +\begin{verbatim} +python -m pip install -e '.[test]' +pytest -q +PYTHONPATH=src python scripts/verify.py \ + certificates/issue128-certificate.json +PYTHONPATH=src python scripts/build_d5_certificate.py --verify-only +PYTHONPATH=src python scripts/package_delivery.py --check +shasum -a 256 -c artifacts/SHA256SUMS +\end{verbatim} + +The delivery contains: (i) the main exact-rational certificate; (ii) D4 and +D5 sidecars bound by SHA-256; (iii) machine-readable JSON and plain-text result +summaries; (iv) a captured verification transcript with exit codes; (v) this +report and its source; (vi) regression tests; and (vii) one checksum manifest +binding all reviewer-facing evidence. The repository and pull request are the +transport mechanism; the numerical claim is anchored in the exact artifacts +and executable verification path. + +The three large proof inputs have fixed identities: +\begin{center} +\small +\begin{tabularx}{\textwidth}{@{}lX@{}} +\toprule +Artifact & SHA-256 \\ +\midrule +Main certificate & +\texttt{0a09623ce3b292a3637065c870fb3153bbdcddce30aef968565c4db3ddfc7201} \\ +D4 sidecar & +\texttt{a397414bb0229fb1ebdb38798aa781fb89dbb9d5cdbed94c7cd2e9120da62718} \\ +D5 sidecar & +\texttt{c5e8968a93b4497b41fe42c0e364324388272e183e1fcd20a536bc988f5361dd} \\ +\bottomrule +\end{tabularx} +\end{center} +The committed \texttt{artifacts/SHA256SUMS} file additionally binds the final +PDF, report source, summaries, transcript, cross-check, and sidecars as one +reviewer-facing package. + +\section{Conclusion} + +Issue 128's basic requirement is fully met for the fixed benchmark. The +certified resource count drops from 11,791 to 2,911 merged group exponentials, +an exact 4.050498-fold improvement, without changing the circuit family or +cost model. The central algorithmic contribution is not merely a faster +implementation: it is a tighter proof architecture that preserves concrete +Lie/Pauli cancellation until exact local algebra and anticommutation can be +used, then closes the remaining finite-step error with rational arithmetic. +The supplied data, transcript, tests, and PDF are mutually hash-bound and +independently reproducible. Fivefold remains a clearly delimited follow-up, +not part of the certified result. + +\bibliographystyle{unsrt} +\bibliography{references} + +\end{document} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/output/issue128-technical-report.pdf b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/output/issue128-technical-report.pdf new file mode 100644 index 000000000..446e71f2e Binary files /dev/null and b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/output/issue128-technical-report.pdf differ diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/output/pdf/issue128-hpc-sprint-report.pdf b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/output/pdf/issue128-hpc-sprint-report.pdf new file mode 100644 index 000000000..f43c8b05e Binary files /dev/null and b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/output/pdf/issue128-hpc-sprint-report.pdf differ diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/references.bib b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/references.bib new file mode 100644 index 000000000..51de16e91 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/report/references.bib @@ -0,0 +1,24 @@ +@article{childs2021theory, + title = {A Theory of Trotter Error}, + author = {Childs, Andrew M. and Su, Yuan and Tran, Minh C. and Wiebe, Nathan and Zhu, Shuchen}, + journal = {Physical Review X}, + volume = {11}, + number = {1}, + pages = {011020}, + year = {2021}, + doi = {10.1103/PhysRevX.11.011020}, + eprint = {1912.08854}, + archivePrefix = {arXiv}, + primaryClass = {quant-ph} +} + +@article{schubert2023trotter, + title = {Trotter Error with Commutator Scaling for the {Fermi--Hubbard} Model}, + author = {Schubert, Ansgar and Mendl, Christian B.}, + journal = {arXiv preprint arXiv:2306.10603}, + year = {2023}, + eprint = {2306.10603}, + archivePrefix = {arXiv}, + primaryClass = {quant-ph}, + url = {https://arxiv.org/abs/2306.10603} +} diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/superpowers/plans/2026-07-29-anticommuting-d4-certificate.md b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/superpowers/plans/2026-07-29-anticommuting-d4-certificate.md new file mode 100644 index 000000000..2be42d34d --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/superpowers/plans/2026-07-29-anticommuting-d4-certificate.md @@ -0,0 +1,948 @@ +# Anticommuting D4 Certificate Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Replace the Pauli-l1 bound on the local degree-four right-generator defect with an exact-rational pairwise-anticommuting partition certificate, certify 98 Trotter steps, and update PR #248 to a resource improvement above 4x. + +**Architecture:** The existing interval Lie-series code will expose a canonical `2x2`-unit-cell D4 coefficient map. A deterministic optimizer will partition those Pauli terms into pairwise-anticommuting groups, while a separate proof function and verifier check coverage, symplectic anticommutation, and outward rational Euclidean bounds. A compact sidecar stores the large proof object; the main schema-v3 certificate binds it by SHA-256 and uses only the grouped D4 bound while retaining the existing D5-D7 and tail bounds. + +**Tech Stack:** Python 3.12, `Fraction`, existing `RationalInterval`, exact binary symplectic Pauli arithmetic, JSON, SHA-256, pytest. + +## Global Constraints + +- Benchmark remains the periodic `12x12` isotropic spin-1/2 Heisenberg Hamiltonian with `h_ij=(XX+YY+ZZ)/4`, `T=1`, and operator-norm tolerance `1e-6`. +- Formula remains the 31-stage five-copy fourth-order Suzuki formula over the same four disjoint bond matchings. +- Cost remains `30*r+1` merged group exponentials, `N/2` bond propagators per group, and three CNOTs per bond propagator. +- The proof path uses exact integers, rational arithmetic, rational intervals, and outward rounding; floating point may choose a partition but may not establish an inequality. +- The previous 116-step certificate remains reproducible until the new 98-step certificate passes fast verification, deep regeneration, solution tests, repository tests, and the dense small-size cross-check. +- All committed files stay under `tracks/qcs/solutions/WangTheoPhys/`. + +--- + +## File Structure + +- Modify `src/trottercert/refined_error.py`: construct canonical interval D4 coefficients and accept a grouped D4 site bound. +- Create `src/trottercert/anticommuting.py`: deterministic partition discovery and exact partition certification. +- Modify `src/trottercert/verify.py`: verify the D4 sidecar in fast mode and regenerate it in deep mode. +- Modify `scripts/build_v3_certificate.py`: build the grouped proof, write the compact sidecar, bind its hash, and search the new integer boundary. +- Modify `src/trottercert/crosscheck.py`: update the outward summary and dense check to the certified step count. +- Create `certificates/issue128-d4-groups.json`: compact exact proof object. +- Modify `certificates/issue128-certificate.json`: schema-v3 candidate fields and 98-step resources. +- Modify `certificates/issue128-small-crosscheck.json`: dense check at 98 steps. +- Modify `certificates/issue128-verification.txt`: deep-verification transcript and resource ledger. +- Modify `README.md`: explain the D4 theorem and report the new count. +- Modify `tests/test_refined_error.py`, `tests/test_resources_verify.py`, and `tests/test_small_crosscheck.py`. +- Create `tests/test_anticommuting.py`. + +--- + +### Task 1: Canonical exact D4 coefficient map + +**Files:** +- Modify: `src/trottercert/refined_error.py` +- Test: `tests/test_refined_error.py` + +**Interfaces:** +- Produces: `certified_d4_cell_coefficients(stages: Sequence[IntervalStage], *, quantization_digits: int = 18) -> dict[SymplecticPauli, RationalInterval]`. +- Preserves: `certified_leading_e5_cell_l1(stages: Sequence[IntervalStage], *, quantization_digits: int = 24) -> Fraction` and its current ungrouped bound for repeated-adjoint estimates. + +- [ ] **Step 1: Write a failing canonicalization test** + +Add a test that constructs two translated symplectic Pauli terms in one shared `CoordinateRegistry`, canonicalizes them with the colored unit cell, and requires identical output: + +```python +def test_colored_unit_cell_canonicalization_merges_translates() -> None: + registry = CoordinateRegistry() + left = symplectic_pauli_from_coordinates( + registry, ((0, 0, "X"), (1, 0, "X")) + ) + right = symplectic_pauli_from_coordinates( + registry, ((2, 0, "X"), (3, 0, "X")) + ) + assert canonicalize_symplectic_unit_cell(registry, left) == ( + canonicalize_symplectic_unit_cell(registry, right) + ) +``` + +- [ ] **Step 2: Run the focused test and verify failure** + +Run: + +```bash +pytest -q tests/test_refined_error.py::test_colored_unit_cell_canonicalization_merges_translates +``` + +Expected: import failure because `canonicalize_symplectic_unit_cell` and `symplectic_pauli_from_coordinates` do not exist. + +- [ ] **Step 3: Implement exact symplectic translation canonicalization** + +Add these signatures to `refined_error.py`: + +```python +def symplectic_pauli_from_coordinates( + registry: CoordinateRegistry, + coordinates: Sequence[tuple[int, int, str]], +) -> SymplecticPauli: + x_mask = z_mask = 0 + for x, y, op in coordinates: + bit = 1 << registry.site((x, y)) + if op in {"X", "Y"}: + x_mask |= bit + if op in {"Z", "Y"}: + z_mask |= bit + return x_mask, z_mask + + +def canonicalize_symplectic_unit_cell( + registry: CoordinateRegistry, + pauli: SymplecticPauli, + unit_cell: tuple[int, int] = (2, 2), +) -> SymplecticPauli: + x_mask, z_mask = pauli + sites = x_mask | z_mask + coordinates = [] + while sites: + bit = sites & -sites + site = bit.bit_length() - 1 + x = bool(x_mask & bit) + z = bool(z_mask & bit) + op = "Y" if x and z else ("X" if x else "Z") + cx, cy = registry.coordinate(site) + coordinates.append((cx, cy, op)) + sites ^= bit + if not coordinates: + return 0, 0 + step_x, step_y = unit_cell + min_x = min(x for x, _, _ in coordinates) + min_y = min(y for _, y, _ in coordinates) + shift_x = -(min_x - min_x % step_x) + shift_y = -(min_y - min_y % step_y) + return symplectic_pauli_from_coordinates( + registry, + tuple( + (x + shift_x, y + shift_y, op) + for x, y, op in coordinates + ), + ) +``` + +Decode all occupied bit positions through `registry.coordinate(site)`, shift +the minimum coordinates to their residues modulo `(2,2)`, and rebuild the +masks through `registry.site(...)`. Empty Paulis remain `(0, 0)`. + +- [ ] **Step 4: Refactor the E5 interval accumulator into a reusable map** + +Add: + +```python +def _leading_e5_cell_interval_coefficients( + stages: Sequence[IntervalStage], + *, + quantization_digits: int, + canonicalize: bool, +) -> dict[SymplecticPauli, RationalInterval]: + logarithm = interval_formula_log_series(stages, 5) + grid = 10**quantization_digits + evaluator = SymplecticDyadicLocalDensityEvaluator( + shared_coordinates=True + ) + registry = evaluator.registries[0] + integer_coefficients: dict[SymplecticPauli, tuple[int, int]] = {} + for word, coefficient in logarithm[5].items(): + rounded = outward_quantize(coefficient, grid) + word_lower = rounded.lower.numerator * ( + grid // rounded.lower.denominator + ) + word_upper = rounded.upper.numerator * ( + grid // rounded.upper.denominator + ) + for raw_pauli, numerator in evaluator.evaluate(word).items(): + pauli = ( + canonicalize_symplectic_unit_cell(registry, raw_pauli) + if canonicalize + else raw_pauli + ) + lower, upper = integer_coefficients.get(pauli, (0, 0)) + if numerator >= 0: + lower += numerator * word_lower + upper += numerator * word_upper + else: + lower += numerator * word_upper + upper += numerator * word_lower + if lower or upper: + integer_coefficients[pauli] = lower, upper + else: + integer_coefficients.pop(pauli, None) + denominator = grid * 5 * (1 << 6) + return { + pauli: RationalInterval( + Fraction(lower, denominator), + Fraction(upper, denominator), + ) + for pauli, (lower, upper) in integer_coefficients.items() + } +``` + +Reuse the existing word-endpoint loop. Accumulate integer lower and upper +numerators, optionally canonicalizing each evaluated Pauli before merging, +then divide by the common denominator +`grid * 5 * (1 << 6)`. + +Implement: + +```python +def certified_d4_cell_coefficients( + stages: Sequence[IntervalStage], + *, + quantization_digits: int = 18, +) -> dict[SymplecticPauli, RationalInterval]: + return { + pauli: coefficient * 5 + for pauli, coefficient in _leading_e5_cell_interval_coefficients( + stages, + quantization_digits=quantization_digits, + canonicalize=True, + ).items() + } +``` + +Keep `certified_leading_e5_cell_l1` defined as the sum of absolute upper +endpoints from the noncanonical map so D5-D7 retain the prior proof. + +- [ ] **Step 5: Add exact regression assertions** + +Extend the slow refined-error test: + +```python +coefficients = certified_d4_cell_coefficients(stages) +assert coefficients +assert all(interval.lower <= interval.upper for interval in coefficients.values()) +assert sum( + interval.abs_upper() for interval in coefficients.values() +) <= 5 * certified_leading_e5_cell_l1(stages) +``` + +- [ ] **Step 6: Run the refined-error tests** + +Run: + +```bash +pytest -q tests/test_refined_error.py +``` + +Expected: all unmarked tests pass; slow regeneration remains deselected by the project configuration. + +- [ ] **Step 7: Commit Task 1** + +```bash +git add tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/refined_error.py \ + tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_refined_error.py +git commit -m "expose canonical interval D4 coefficients" +``` + +--- + +### Task 2: Deterministic anticommuting partition and exact proof + +**Files:** +- Create: `src/trottercert/anticommuting.py` +- Create: `tests/test_anticommuting.py` + +**Interfaces:** +- Consumes: the `dict[SymplecticPauli, RationalInterval]` from Task 1. +- Produces: `AnticommutingPartitionCertificate`, `discover_anticommuting_partition(...)`, and `certify_anticommuting_partition(...)`. + +- [ ] **Step 1: Write failing proof tests** + +Create `tests/test_anticommuting.py` with: + +```python +from fractions import Fraction + +import pytest + +from trottercert.anticommuting import ( + certify_anticommuting_partition, + discover_anticommuting_partition, + symplectic_anticommutes, +) +from trottercert.intervals import RationalInterval + + +def test_symplectic_anticommutation() -> None: + x = (1, 0) + y = (1, 1) + z = (0, 1) + assert symplectic_anticommutes(x, y) + assert symplectic_anticommutes(y, z) + assert symplectic_anticommutes(z, x) + + +def test_exact_group_bound_uses_euclidean_norm() -> None: + coefficients = { + (1, 0): RationalInterval.point(1), + (1, 1): RationalInterval.point(2), + (0, 1): RationalInterval.point(2), + } + certificate = certify_anticommuting_partition( + coefficients, (((1, 0), (1, 1), (0, 1)),) + ) + assert certificate.bound == 3 + + +def test_corrupt_commuting_group_is_rejected() -> None: + coefficients = { + (1, 0): RationalInterval.point(1), + (2, 0): RationalInterval.point(1), + } + with pytest.raises(ValueError, match="does not anticommute"): + certify_anticommuting_partition( + coefficients, (((1, 0), (2, 0)),) + ) +``` + +- [ ] **Step 2: Run the tests and verify import failure** + +Run: + +```bash +pytest -q tests/test_anticommuting.py +``` + +Expected: collection fails because `trottercert.anticommuting` does not exist. + +- [ ] **Step 3: Implement proof dataclasses and exact helpers** + +Create: + +```python +@dataclass(frozen=True) +class AnticommutingGroupCertificate: + term_indices: tuple[int, ...] + bound: Fraction + + +@dataclass(frozen=True) +class AnticommutingPartitionCertificate: + paulis: tuple[SymplecticPauli, ...] + coefficients: tuple[RationalInterval, ...] + groups: tuple[AnticommutingGroupCertificate, ...] + bound: Fraction +``` + +Implement `symplectic_anticommutes(left, right)` with the exact binary +symplectic parity expression. Implement an outward rational square-root +helper using `isqrt`, defaulting to 30 decimal digits and checking +`upper * upper >= value`. + +- [ ] **Step 4: Implement the deterministic discovery heuristic** + +Use: + +```python +def discover_anticommuting_partition( + coefficients: Mapping[SymplecticPauli, RationalInterval], + *, + max_group_size: int = 10, +) -> tuple[tuple[SymplecticPauli, ...], ...]: + if max_group_size < 1: + raise ValueError("maximum group size must be positive") + ordered = tuple( + sorted( + coefficients, + key=lambda pauli: ( + -float(coefficients[pauli].abs_upper()), + pauli, + ), + ) + ) + used: set[SymplecticPauli] = set() + groups: list[tuple[SymplecticPauli, ...]] = [] + for position, pauli in enumerate(ordered): + if pauli in used: + continue + group = [pauli] + used.add(pauli) + for candidate in ordered[position + 1:]: + if candidate in used: + continue + if all( + symplectic_anticommutes(candidate, member) + for member in group + ): + group.append(candidate) + used.add(candidate) + if len(group) == max_group_size: + break + groups.append(tuple(group)) + return tuple(groups) +``` + +Sort by `(-float(interval.abs_upper()), pauli)`. For every largest unused +Pauli, scan the remaining order and add a candidate exactly when it +anticommutes with every group member. Stop at `max_group_size`; preserve +singletons. + +- [ ] **Step 5: Implement independent exact certification** + +Use: + +```python +def certify_anticommuting_partition( + coefficients: Mapping[SymplecticPauli, RationalInterval], + groups: Sequence[Sequence[SymplecticPauli]], + *, + sqrt_decimal_places: int = 30, +) -> AnticommutingPartitionCertificate: + paulis = tuple(sorted(coefficients)) + index = {pauli: offset for offset, pauli in enumerate(paulis)} + flattened = tuple(pauli for group in groups for pauli in group) + if len(flattened) != len(set(flattened)): + raise ValueError("partition coverage contains duplicate terms") + if set(flattened) != set(paulis): + raise ValueError("partition coverage differs from coefficient map") + certified_groups = [] + for group in groups: + if not group: + raise ValueError("anticommuting group must be nonempty") + for left_position, left in enumerate(group): + for right in group[left_position + 1:]: + if not symplectic_anticommutes(left, right): + raise ValueError("group members do not anticommute") + squared = sum( + ( + coefficients[pauli].abs_upper() ** 2 + for pauli in group + ), + Fraction(), + ) + bound = sqrt_fraction_upper( + squared, decimal_places=sqrt_decimal_places + ) + certified_groups.append( + AnticommutingGroupCertificate( + tuple(index[pauli] for pauli in group), + bound, + ) + ) + return AnticommutingPartitionCertificate( + paulis, + tuple(coefficients[pauli] for pauli in paulis), + tuple(certified_groups), + sum((group.bound for group in certified_groups), Fraction()), + ) +``` + +Require exact set equality between coefficient keys and flattened groups, +reject duplicates, check every within-group pair, compute each squared +absolute upper sum, round its square root upward, and sum group bounds. + +- [ ] **Step 6: Add deterministic and coverage tests** + +Add: + +```python +def test_discovery_is_deterministic_and_covers_terms() -> None: + coefficients = { + (1, 0): RationalInterval.point(3), + (1, 1): RationalInterval.point(2), + (0, 1): RationalInterval.point(1), + } + first = discover_anticommuting_partition(coefficients, max_group_size=3) + second = discover_anticommuting_partition(coefficients, max_group_size=3) + assert first == second + certificate = certify_anticommuting_partition(coefficients, first) + assert set(certificate.paulis) == set(coefficients) +``` + +- [ ] **Step 7: Run and commit Task 2** + +Run: + +```bash +pytest -q tests/test_anticommuting.py +``` + +Then: + +```bash +git add tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/anticommuting.py \ + tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_anticommuting.py +git commit -m "certify anticommuting Pauli partitions" +``` + +--- + +### Task 3: Integrate the grouped D4 bound into resource evaluation + +**Files:** +- Modify: `src/trottercert/refined_error.py` +- Modify: `tests/test_refined_error.py` + +**Interfaces:** +- Consumes: `AnticommutingPartitionCertificate.bound`, a per-cell bound. +- Produces: optional `d4_site_override` in `evaluate_refined_fourth_order_bound`. + +- [ ] **Step 1: Write the failing override test** + +Add: + +```python +def test_d4_override_changes_only_degree_four() -> None: + constants = build_refined_fourth_order_constants() + original = evaluate_refined_fourth_order_bound(constants, 144, 116) + grouped = evaluate_refined_fourth_order_bound( + constants, + 144, + 116, + d4_site_override=constants.d4_site / 2, + ) + assert grouped.degree_four_contribution == ( + original.degree_four_contribution / 2 + ) + assert grouped.degree_five_contribution == original.degree_five_contribution + assert grouped.degree_six_contribution == original.degree_six_contribution + assert grouped.degree_seven_contribution == original.degree_seven_contribution + assert grouped.tail_contribution == original.tail_contribution +``` + +- [ ] **Step 2: Verify failure** + +Run: + +```bash +pytest -q tests/test_refined_error.py::test_d4_override_changes_only_degree_four +``` + +Expected: `TypeError` for unexpected keyword `d4_site_override`. + +- [ ] **Step 3: Implement the optional bound** + +Change the signature to: + +```python +def evaluate_refined_fourth_order_bound( + constants: RefinedFourthOrderConstants, + n_sites: int, + steps: int, + *, + d4_site_override: Fraction | None = None, +) -> RefinedFourthOrderBound: +``` + +Use `constants.d4_site` when the override is `None`. Reject a negative +override and reject an override larger than the original Pauli-l1 bound so +the grouped path cannot accidentally weaken the certificate. + +- [ ] **Step 4: Add the 98/97 discovery regression** + +Mark the expensive test slow. It regenerates coefficients, discovers and +certifies groups of size ten, evaluates steps 98 and 97, and asserts: + +```python +assert at_98.global_error_bound <= Fraction(1, 10**6) +assert at_97.global_error_bound > Fraction(1, 10**6) +assert certificate.bound < 4 * constants.d4_site +``` + +The last line compares the per-cell grouped D4 bound with the original +per-cell Pauli-l1 value. + +- [ ] **Step 5: Run focused tests and commit Task 3** + +Run: + +```bash +pytest -q tests/test_refined_error.py +pytest -q -m slow tests/test_refined_error.py::test_grouped_d4_crosses_fourfold_target +``` + +Commit: + +```bash +git add tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/refined_error.py \ + tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_refined_error.py +git commit -m "apply grouped D4 norm to refined bound" +``` + +--- + +### Task 4: Serialize and independently verify the large D4 proof + +**Files:** +- Modify: `src/trottercert/verify.py` +- Modify: `tests/test_resources_verify.py` +- Modify: `scripts/build_v3_certificate.py` +- Create: `certificates/issue128-d4-groups.json` + +**Interfaces:** +- Produces sidecar schema: + +```json +{ + "schema_version": 1, + "coefficient_denominator": 1, + "terms": [[0, 0, 0, 0]], + "sqrt_denominator": 1, + "groups": [[[0], 0]], + "cell_bound": [0, 1] +} +``` + +The real file uses a common exact coefficient denominator; each term is +`[x_mask, z_mask, lower_numerator, upper_numerator]`, and each group is +`[term_indices, bound_numerator]`. + +- [ ] **Step 1: Add failing fast-verifier corruption tests** + +Extend `test_resources_verify.py` to copy both certificate files to a +temporary directory and corrupt, one at a time: + +1. a repeated term index; +2. a within-group Pauli mask so the pair commutes; +3. a group-bound numerator reduced by one; +4. the sidecar hash in the main certificate. + +Each mutation must raise a `ValueError` containing a distinct stable phrase: +`coverage`, `anticommute`, `group bound`, or `sidecar digest`. + +- [ ] **Step 2: Add sidecar serialization to the builder** + +Add helper functions: + +```python +def d4_sidecar_payload( + certificate: AnticommutingPartitionCertificate, +) -> dict[str, object]: + coefficient_denominator = lcm( + *( + denominator + for interval in certificate.coefficients + for denominator in ( + interval.lower.denominator, + interval.upper.denominator, + ) + ) + ) + sqrt_denominator = lcm( + *(group.bound.denominator for group in certificate.groups) + ) + return { + "schema_version": 1, + "coefficient_denominator": coefficient_denominator, + "terms": [ + [ + pauli[0], + pauli[1], + interval.lower.numerator + * (coefficient_denominator // interval.lower.denominator), + interval.upper.numerator + * (coefficient_denominator // interval.upper.denominator), + ] + for pauli, interval in zip( + certificate.paulis, certificate.coefficients + ) + ], + "sqrt_denominator": sqrt_denominator, + "groups": [ + [ + list(group.term_indices), + group.bound.numerator + * (sqrt_denominator // group.bound.denominator), + ] + for group in certificate.groups + ], + "cell_bound": pair(certificate.bound), + } + + +def canonical_json_bytes(payload: dict[str, object]) -> bytes: + return ( + json.dumps(payload, sort_keys=True, separators=(",", ":")) + + "\n" + ).encode() +``` + +Write `issue128-d4-groups.json` from canonical bytes and store in the main +certificate: + +```python +"d4_certificate": { + "path": "issue128-d4-groups.json", + "sha256": hashlib.sha256(sidecar_bytes).hexdigest(), + "max_group_size": 10, + "cell_norm_upper": pair(partition.bound), +} +``` + +Search the minimum step count with +`d4_site_override=partition.bound / 4`. + +- [ ] **Step 3: Implement the fast sidecar verifier** + +Add: + +```python +def _verify_d4_sidecar( + certificate_path: Path, + candidate: dict[str, object], +) -> Fraction: + metadata = candidate["d4_certificate"] + root = certificate_path.resolve().parent + sidecar_path = (root / str(metadata["path"])).resolve() + if sidecar_path.parent != root: + raise ValueError("D4 sidecar path escapes certificate directory") + raw = sidecar_path.read_bytes() + if hashlib.sha256(raw).hexdigest() != metadata["sha256"]: + raise ValueError("D4 sidecar digest mismatch") + payload = json.loads(raw) + coefficient_denominator = int(payload["coefficient_denominator"]) + rows = payload["terms"] + paulis = tuple((int(row[0]), int(row[1])) for row in rows) + if len(paulis) != len(set(paulis)): + raise ValueError("D4 sidecar coefficient terms are duplicated") + coefficients = { + pauli: RationalInterval( + Fraction(int(row[2]), coefficient_denominator), + Fraction(int(row[3]), coefficient_denominator), + ) + for pauli, row in zip(paulis, rows) + } + submitted_groups = payload["groups"] + groups = tuple( + tuple(paulis[int(index)] for index in row[0]) + for row in submitted_groups + ) + regenerated = certify_anticommuting_partition(coefficients, groups) + sqrt_denominator = int(payload["sqrt_denominator"]) + submitted_bounds = tuple( + Fraction(int(row[1]), sqrt_denominator) + for row in submitted_groups + ) + regenerated_bounds = tuple( + group.bound for group in regenerated.groups + ) + if submitted_bounds != regenerated_bounds: + raise ValueError("D4 group bound mismatch") + cell_bound = _fraction(payload["cell_bound"]) + if cell_bound != regenerated.bound: + raise ValueError("D4 cell bound mismatch") + if cell_bound != _fraction(metadata["cell_norm_upper"]): + raise ValueError("D4 main-certificate bound mismatch") + return cell_bound / 4 +``` + +Resolve the sidecar relative to the main certificate, reject path traversal, +verify SHA-256, parse integer masks and common denominators, check exact +coverage and every pair, verify every squared rational bound, and require the +sum to equal `cell_bound`. Return the per-site value `cell_bound / 4`. + +- [ ] **Step 4: Wire fast and deep modes** + +Fast mode passes the returned site bound into +`evaluate_refined_fourth_order_bound`. Deep mode regenerates +`certified_d4_cell_coefficients`, reconstructs the ordered term table, +requires exact equality with the sidecar, and then invokes the same fast +proof checks. + +- [ ] **Step 5: Run corruption and fast-verification tests** + +Run: + +```bash +pytest -q tests/test_resources_verify.py +PYTHONPATH=src python scripts/build_v3_certificate.py +PYTHONPATH=src python scripts/verify.py \ + certificates/issue128-certificate.json +``` + +Expected certificate summary: + +```text +candidate_steps: 98 +candidate_group_exponentials: 2941 +global_twofold_target_met: true +improvement: greater than 4 +``` + +- [ ] **Step 6: Commit Task 4** + +```bash +git add tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/verify.py \ + tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_resources_verify.py \ + tracks/qcs/solutions/WangTheoPhys/issue128/scripts/build_v3_certificate.py \ + tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-d4-groups.json \ + tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-certificate.json +git commit -m "add machine-checkable grouped D4 certificate" +``` + +--- + +### Task 5: Rebuild cross-checks, transcripts, and documentation + +**Files:** +- Modify: `src/trottercert/crosscheck.py` +- Modify: `tests/test_small_crosscheck.py` +- Modify: `certificates/issue128-small-crosscheck.json` +- Modify: `certificates/issue128-verification.txt` +- Modify: `README.md` + +**Interfaces:** +- Consumes: the verified candidate step, error ledger, and exact resources. +- Produces: reproducible human-readable and dense-check artifacts. + +- [ ] **Step 1: Update the dense-check regression** + +Change `REFINED_STEPS` to the certificate step count and replace the +outward-rounded N=144 summary with the smallest decimal rational above the +exact grouped certificate total. Keep the N=4 scaling and assertions: + +```python +assert result["bound_dominates_empirical_error"] +assert result["bound_meets_tolerance"] +assert result["steps"] == 98 +``` + +- [ ] **Step 2: Regenerate the dense artifact** + +Run: + +```bash +PYTHONPATH=src python scripts/crosscheck_small.py \ + --length 2 --tolerance 1000000 +``` + +Copy the emitted values exactly into +`certificates/issue128-small-crosscheck.json`. + +- [ ] **Step 3: Run deep verification and capture the exact ledger** + +Run: + +```bash +PYTHONPATH=src python scripts/verify.py \ + certificates/issue128-certificate.json --deep +``` + +Update `issue128-verification.txt` with the emitted candidate error, +previous-step error, D4 grouped bound, steps, group count, bond count, CNOT +count, and exact improvement ratio. + +- [ ] **Step 4: Update README claims** + +Document: + +- the pairwise-anticommuting theorem; +- the fact that partition discovery is untrusted and proof checking is exact; +- the 98/97 integer boundary; +- `2941` candidate groups; +- `2941 * 72` bond propagators; +- three times that number for CNOTs; +- exact `11791/2941` improvement; +- updated test and deep-verification results. + +- [ ] **Step 5: Commit Task 5** + +```bash +git add tracks/qcs/solutions/WangTheoPhys/README.md \ + tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/crosscheck.py \ + tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_small_crosscheck.py \ + tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-small-crosscheck.json \ + tracks/qcs/solutions/WangTheoPhys/issue128/certificates/issue128-verification.txt +git commit -m "document fourfold certified resource reduction" +``` + +--- + +### Task 6: Full verification and PR update + +**Files:** +- Modify only if verification exposes an in-scope defect in files listed above. + +**Interfaces:** +- Produces: a clean pushed branch and updated PR #248. + +- [ ] **Step 1: Run the solution test suite** + +```bash +cd tracks/qcs/solutions/WangTheoPhys/issue128 +pytest -q +``` + +Expected: all default tests pass. + +- [ ] **Step 2: Run the deep proof regeneration** + +```bash +PYTHONPATH=src python scripts/verify.py \ + certificates/issue128-certificate.json --deep +``` + +Expected: `"valid": true`, `"verification_level": "deep"`, +`"deep_proof_regenerated": true`, candidate steps 98, and improvement above +four. + +- [ ] **Step 3: Run repository tests with the dependency-complete interpreter** + +From the repository root: + +```bash +python3.12 -m pytest scripts/tests/ -q \ + --cov=cluster_profile --cov=cluster_guardrail --cov=cluster_probe \ + --cov=parameter_scan --cov=scaling_fit \ + --cov-report=term-missing +``` + +Expected: 223 repository tests pass and measured coverage remains at least +95%. + +- [ ] **Step 4: Audit scope and formatting** + +```bash +git diff --check myfork/codex/issue-128-trotter-certificate...HEAD +git diff --name-only myfork/codex/issue-128-trotter-certificate...HEAD | + awk '!/^tracks\\/qcs\\/solutions\\/WangTheoPhys\\// {print}' +git status --short +``` + +Expected: no whitespace errors, no out-of-scope paths, and no uncommitted +changes. + +- [ ] **Step 5: Push the tested head to the PR branch** + +```bash +git push myfork HEAD:codex/issue-128-trotter-certificate +``` + +- [ ] **Step 6: Update and inspect PR #248** + +Set the title to the exact verified decimal rounded to three places: + +```bash +gh pr edit 248 --repo QuantumBFS/quantum.harness \ + --title "[qcs] 🔭 WangTheoPhys: certify a 4.009× tighter Trotter resource bound" \ + --body-file /tmp/issue128-pr-body.md +gh pr view 248 --repo QuantumBFS/quantum.harness \ + --json url,title,state,isDraft,headRefName,statusCheckRollup +``` + +The body must report only values copied from the verified certificate and +must retain the team name and member information already present in the +submission. + +--- + +## Self-Review + +- Spec coverage: Tasks 1-3 establish the mathematical bound; Task 4 makes it + independently machine-checkable; Task 5 updates every derived artifact; + Task 6 verifies and submits it. +- Trusted-computing-base boundary: discovery floats select groups only; + exact interval coefficients, anticommutation, square roots, coverage, + arithmetic, and hashing are rechecked. +- Type consistency: the coefficient map uses + `dict[SymplecticPauli, RationalInterval]`; discovery consumes that exact + type; certification returns `AnticommutingPartitionCertificate`; resource + evaluation consumes its `Fraction` cell bound divided by four. +- Scope consistency: all committed paths remain beneath the allowed + `WangTheoPhys` solution directory. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/superpowers/plans/2026-07-30-issue128-final-delivery.md b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/superpowers/plans/2026-07-30-issue128-final-delivery.md new file mode 100644 index 000000000..1cb8c86e6 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/superpowers/plans/2026-07-30-issue128-final-delivery.md @@ -0,0 +1,188 @@ +# Issue 128 Final Delivery Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Publish a reviewer-ready Issue 128 package that freezes the certified 4.050498x result, adds exact data summaries and a polished PDF, and updates the existing PR without claiming an unproved fivefold certificate. + +**Architecture:** The committed certificate and exact sidecars remain the scientific source of truth. A small standard-library Python packager checks frozen hashes, projects exact fields into JSON/text, captures verifier evidence, and binds release files with SHA-256. LaTeX presents the same values for human review; remote publication happens only after an allowlisted audit. + +**Tech Stack:** Python 3.11+, pytest, existing `trottercert`, LaTeX/latexmk, BibTeX, Poppler, Git, GitHub CLI. + +## Global Constraints + +- Official result: 97 steps, 2,911 groups, exact ratio `11791/2911`. +- Baseline: 393 steps and 11,791 groups. +- The 97-step exact-rational error bound passes `1e-6`; the 96-step bound fails. +- Main certificate SHA-256: `0a09623ce3b292a3637065c870fb3153bbdcddce30aef968565c4db3ddfc7201`. +- D4 sidecar SHA-256: `a397414bb0229fb1ebdb38798aa781fb89dbb9d5cdbed94c7cd2e9120da62718`. +- D5 is follow-up evidence only; 78 steps and fivefold are not certified. +- Use standard `article` because no challenge template exists. +- Never touch the dirty main workspace, use `git add -A`, force-push, or create a competing PR. + +--- + +### Task 1: Restore and Validate Exact D5 Follow-up Evidence + +**Files:** +- Create: `src/trottercert/cubic_field.py` +- Create: `src/trottercert/cubic_local.py` +- Create: `src/trottercert/support_groups.py` +- Create: `scripts/build_d5_certificate.py` +- Create: `tests/test_cubic_field.py` +- Create: `tests/test_cubic_local.py` +- Create: `tests/test_support_groups.py` +- Generate: `certificates/issue128-d5-groups.json.gz` + +**Interfaces:** +- Consumes: the existing four-fragment Heisenberg symplectic evaluator and exact rational intervals. +- Produces: exact `Q(alpha)` Suzuki coefficients (`alpha^3=4`), an exact D5 Pauli density, deterministic same-support groups, canonical gzip bytes, and solver-free verification. + +- [ ] Run focused tests: + +```bash +pytest -q tests/test_cubic_field.py tests/test_support_groups.py +``` + +- [ ] Build with deterministic discovery and hard regression gates: + +```bash +env PYTHONHASHSEED=0 PYTHONPATH=src \ + python scripts/build_d5_certificate.py +``` + +Require 605,832 terms, 123,106 groups, exact site bound +`44948270001027856175670154896253/4000000000000000000000000000000`, and canonical SHA-256 +`c5e8968a93b4497b41fe42c0e364324388272e183e1fcd20a536bc988f5361dd`. + +- [ ] Verify from disk without discovery: + +```bash +PYTHONPATH=src python scripts/build_d5_certificate.py --verify-only +``` + +- [ ] Stage only the seven source/test files and the sidecar; commit as a single exact-follow-up unit. + +### Task 2: Deterministic Delivery Packager + +**Files:** +- Create: `scripts/package_delivery.py` +- Create: `scripts/__init__.py` +- Create: `tests/test_delivery_package.py` +- Generate: `artifacts/issue128-summary.json` +- Generate: `artifacts/issue128-summary.txt` +- Generate: `artifacts/verification-transcript.txt` + +**Interfaces:** +- Produces: `build_summary(root)`, `render_summary_text(summary)`, `capture_verification(root)`, `write_sha_manifest(root)`, and CLI modes `--manifest`/`--check`. + +- [ ] Write tests that require exact 393/97 steps, 11,791/2,911 groups, + frozen hashes, exact ratio, 97/96 boundary, D4/D5 counts, and + `fivefold_followup.status == "not_certified"`. +- [ ] Confirm the tests fail before the module exists. +- [ ] Implement exact invariant checks and canonical `sort_keys=True` JSON. +- [ ] Render a text summary containing `FIVEFOLD STATUS: NOT CERTIFIED` and + `No 78-step global error certificate is claimed or supplied.` +- [ ] Capture stdout/stderr and exit codes for: + +```bash +PYTHONPATH=src python scripts/verify.py certificates/issue128-certificate.json +PYTHONPATH=src python scripts/build_d5_certificate.py --verify-only +``` + +- [ ] Run `pytest -q tests/test_delivery_package.py`, then the full default suite. +- [ ] Explicitly stage and commit the packager and its tests. + +### Task 3: Technical Report Source + +**Files:** +- Create: `docs/report/issue128-technical-report.tex` +- Create: `docs/report/references.bib` +- Modify: `../README.md` (team README relative to the Issue 128 directory). + +**Interfaces:** +- Consumes: exact certificate/summary values and primary-source bibliography metadata. +- Produces: a self-contained 6--8 page report and reviewer navigation links. + +- [ ] Verify primary metadata for Childs--Su--Tran--Wiebe--Zhu and + Schubert--Mendl from their primary pages. +- [ ] Write the benchmark/result table with steps, groups, bond propagators, + CNOT upper bounds, exact ratio, and exact integer boundary. +- [ ] Explain the full-word logarithm, Dynkin--Specht--Wever projection, + concrete Pauli combination, D4 anticommuting certificate, local Heisenberg + lemma, right-generator ledger, tail, verifier, and 2x2 cross-check. +- [ ] Add a fivefold feasibility section that reports D5 evidence and names + the unresolved D4/D8 gates without any affirmative 5x claim. +- [ ] Add copy-paste reproduction commands and links to PDF/JSON/TXT/transcript/manifest. +- [ ] Commit report sources and README links explicitly. + +### Task 4: Build and Visually Audit the PDF + +**Files:** +- Generate: `docs/report/output/issue128-technical-report.pdf` + +- [ ] Generate summaries/transcript: + +```bash +PYTHONPATH=src python scripts/package_delivery.py +``` + +- [ ] Compile: + +```bash +cd docs/report +/Library/TeX/texbin/latexmk -pdf -interaction=nonstopmode \ + -halt-on-error -outdir=output issue128-technical-report.tex +``` + +- [ ] Reject fatal LaTeX errors, undefined references/citations, missing + glyphs, and visible overfull boxes. +- [ ] Require 6--8 nonblank pages and selectable text via `pdfinfo` and + `pdftotext`. +- [ ] Render every page at 144 DPI with `pdftoppm`; inspect each PNG for + clipping, overlap, broken tables, and inconsistent page furniture. +- [ ] Correct source and repeat compilation/rendering until the latest images + have zero visible defects. + +### Task 5: Bind Artifacts and Complete the Local Audit + +**Files:** +- Generate: `artifacts/SHA256SUMS` + +- [ ] Bind the PDF, summaries, transcript, main certificate, D4/D5 sidecars, + small cross-check, and report sources. +- [ ] Run `shasum -a 256 -c artifacts/SHA256SUMS` and require every line `OK`. +- [ ] Run: + +```bash +pytest -q +PYTHONPATH=src python scripts/verify.py certificates/issue128-certificate.json +PYTHONPATH=src python scripts/build_d5_certificate.py --verify-only +PYTHONPATH=src python scripts/package_delivery.py --check +``` + +- [ ] Scan for unsupported fivefold language and placeholder/tool tokens. +- [ ] Run `git diff --check c550a6b..HEAD` and audit every changed path. +- [ ] Require a clean worktree after explicitly staging/committing final artifacts. + +### Task 6: Fast-forward the Existing PR + +**Remote target:** `JunkaiWang-TheoPhy:codex/issue-128-trotter-certificate` + +- [ ] Fetch the fork branch and re-read PR #248 head SHA/state. +- [ ] Require `git merge-base --is-ancestor origin/codex/issue-128-trotter-certificate HEAD`. +- [ ] Push `HEAD:codex/issue-128-trotter-certificate` without force. +- [ ] Update PR #248 body with the exact result table, innovation list, + artifact links, commands, test/verifier results, and visible fivefold non-claim. +- [ ] Fetch again and require remote SHA equals audited local SHA. +- [ ] Report the PDF/data paths, final commit, PR URL, validation evidence, + achieved 4.050498x ratio, and external maintainer review/merge condition. + +## Self-Review + +- Every requested deliverable maps to Tasks 1--6. +- Every numerical claim is either an exact certificate field or explicitly + marked conditional follow-up arithmetic. +- The PDF is not accepted based on compilation alone; every page is rendered + and inspected. +- The remote write is downstream of all proof, artifact, visual, hash, diff, + and drift gates. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/superpowers/plans/2026-07-31-issue128-six-hour-hpc-sprint.md b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/superpowers/plans/2026-07-31-issue128-six-hour-hpc-sprint.md new file mode 100644 index 000000000..29f0c3172 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/superpowers/plans/2026-07-31-issue128-six-hour-hpc-sprint.md @@ -0,0 +1,334 @@ +# Issue 128 Six-Hour HPC Sprint Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Build, deploy, monitor, and recover a deterministic Slurm sprint that regenerates the accepted Issue 128 proof, computes an exact sharded degree-eight right-generator coefficient map, and screens all 24 matching-color orderings without weakening the frozen `4.050498110614909x` certificate. + +**Architecture:** The trusted branch remains anchored at `ebb055926302c7d911e5ab00805513c382ac458d`. Exact D8 work is decomposed into one independent contribution per one of the 31 merged Suzuki stages; every shard serializes coordinate-addressed Pauli coefficients in `Q[cuberoot(4)]`, so processes with different bit registries can be reduced safely. A reducer verifies all manifests and hashes, sums exact coefficients before any norm inequality, and emits a rigorous Pauli-l1 site-density upper bound. A separate untrusted discovery array evaluates all 24 fragment permutations with the existing floating-point right-generator recurrence. + +**Tech Stack:** Python 3.12, `Fraction`, exact `Cubic`, gzip JSON, pytest, Bash, Slurm arrays, `scripts/harness_slurm.sh`, SSH/rsync. + +## Global Constraints + +- Physical benchmark is fixed: periodic square spin-1/2 isotropic Heisenberg, `L=12`, `N=144`, `T=1`, operator-norm tolerance `1e-6`. +- Frozen accepted claim is `11791/2911 = 4.050498110614909...`; no new ratio may be claimed unless a complete exact global ledger and fast/deep verification pass. +- D8 shards must be merged coefficient-by-coefficient before taking any norm; shard norms must never be triangle-summed. +- Discovery may use float ranking, but trusted outputs use integers, `Fraction`, `Cubic`, outward rational intervals, and SHA-256. +- Each Slurm cell uses one CPU thread, `PYTHONHASHSEED=0`, and BLAS thread counts fixed to one. +- No computation runs on a login node. All remote compute is submitted to `xhacnormalb` under account `giggleliu` and the user's assigned QOS. +- Every cell writes an atomic manifest with commit, arguments, status, timing, counts, and output digest. +- The sprint stops launching discovery jobs after 4 hours 15 minutes and reserves the final 1 hour 45 minutes for reduction, verification, fetch, and packaging. + +--- + +### Task 1: Exact stage-contribution recurrence + +**Files:** +- Modify: `src/trottercert/cubic_local.py` +- Test: `tests/test_cubic_right_generator.py` + +**Interfaces:** +- Consumes: `Cubic`, `CubicStage`, `fourth_order_suzuki_cubic_stages`, `cubic_fragment_adjoint`. +- Produces: `exact_right_generator_stage_contribution(stages: Sequence[CubicStage], stage_index: int, order: int) -> tuple[CoordinateRegistry, list[CubicTerms]]` and `merge_cubic_series(target: list[CubicTerms], source: Sequence[Mapping[SymplecticPauli, Cubic]]) -> None`. + +- [ ] **Step 1: Write failing algebra tests** + +```python +def test_stage_contributions_reconstruct_order_conditions() -> None: + stages = fourth_order_suzuki_cubic_stages() + shards = [exact_right_generator_stage_contribution(stages, i, 4) for i in range(len(stages))] + coordinate_series = merge_coordinate_series([coordinate_encode_series(*shard) for shard in shards]) + assert not coordinate_series[1] + assert not coordinate_series[2] + assert not coordinate_series[3] + assert coordinate_series[4] + +def test_rejects_invalid_stage_index() -> None: + with pytest.raises(IndexError): + exact_right_generator_stage_contribution(fourth_order_suzuki_cubic_stages(), 31, 8) +``` + +- [ ] **Step 2: Run the focused tests and observe missing interfaces** + +Run: `pytest -q tests/test_cubic_right_generator.py` + +Expected: import failure for `exact_right_generator_stage_contribution`. + +- [ ] **Step 3: Implement exact conjugation and stage contributions** + +```python +def exact_right_generator_stage_contribution(stages, stage_index, order): + stage = stages[stage_index] + registry, base = exact_matching_density(stage.fragment_index) + series = [{} for _ in range(order + 1)] + series[0] = {pauli: stage.coefficient * coefficient for pauli, coefficient in base.items()} + for later in stages[stage_index + 1:]: + series = conjugate_cubic_series_by_stage(registry, series, later.fragment_index, later.coefficient) + return registry, [canonicalize_cubic_density(registry, degree) for degree in series] +``` + +- [ ] **Step 4: Verify exact cancellation through degree three** + +Run: `pytest -q tests/test_cubic_right_generator.py` + +Expected: all tests pass and degree four is nonempty. + +--- + +### Task 2: Registry-independent serialization and atomic manifests + +**Files:** +- Create: `src/trottercert/hpc_artifacts.py` +- Test: `tests/test_hpc_artifacts.py` + +**Interfaces:** +- Consumes: `CoordinateRegistry`, `CubicTerms`. +- Produces: `coordinate_encode_series`, `write_shard_gzip`, `read_shard_gzip`, `write_manifest_atomic`, and `sha256_file`. + +- [ ] **Step 1: Write round-trip and corruption tests** + +```python +def test_coordinate_round_trip_is_registry_independent(tmp_path: Path) -> None: + first_registry, first = build_fixture_with_registration_order("xy") + second_registry, second = build_fixture_with_registration_order("yx") + assert coordinate_encode_terms(first_registry, first) == coordinate_encode_terms(second_registry, second) + +def test_reader_rejects_payload_digest_mismatch(tmp_path: Path) -> None: + path = tmp_path / "shard.json.gz" + write_shard_gzip(path, fixture_payload()) + raw = bytearray(path.read_bytes()) + raw[-8] ^= 1 + path.write_bytes(raw) + with pytest.raises((OSError, ValueError)): + read_shard_gzip(path) +``` + +- [ ] **Step 2: Run tests and confirm missing functions** + +Run: `pytest -q tests/test_hpc_artifacts.py` + +- [ ] **Step 3: Implement canonical coordinate keys and fraction triples** + +```python +def encode_cubic(value: Cubic) -> list[list[int]]: + return [[part.numerator, part.denominator] for part in (value.a0, value.a1, value.a2)] + +def coordinate_pauli_key(registry, pauli): + return tuple(sorted((x, y, op) for x, y, op in pauli_coordinates(registry, pauli))) +``` + +Use sorted keys, compact JSON separators, gzip `mtime=0`, temporary sibling files, `fsync`, and `Path.replace`. + +- [ ] **Step 4: Run deterministic double-write test** + +Run: `pytest -q tests/test_hpc_artifacts.py` + +Expected: two writes of the same payload have identical SHA-256. + +--- + +### Task 3: D8 shard CLI and reducer + +**Files:** +- Create: `scripts/build_d8_shard.py` +- Create: `scripts/reduce_d8_shards.py` +- Test: `tests/test_d8_cli.py` + +**Interfaces:** +- `build_d8_shard.py --stage-index I --order 8 --output PATH --manifest PATH` writes one exact shard. +- `reduce_d8_shards.py --input-root DIR --expected-stages 31 --output PATH --summary PATH` verifies and reduces all shards. + +- [ ] **Step 1: Write CLI tests using order four fixtures** + +```python +def test_all_stage_shards_reduce_to_exact_order_conditions(tmp_path: Path) -> None: + for index in range(31): + run_shard(index=index, order=4, root=tmp_path) + summary = reduce_shards(tmp_path, expected_stages=31, order=4) + assert summary["missing_stages"] == [] + assert summary["degree_term_counts"]["1"] == 0 + assert summary["degree_term_counts"]["2"] == 0 + assert summary["degree_term_counts"]["3"] == 0 + assert summary["degree_term_counts"]["4"] > 0 +``` + +- [ ] **Step 2: Implement the shard CLI with progress and failure manifests** + +The CLI writes `status="running"` before compute, prints a flushed progress line, writes the payload, then atomically replaces the manifest with `status="complete"`. Exceptions atomically write `status="failed"` and are re-raised. + +- [ ] **Step 3: Implement exact reduction** + +Reducer checks stage set `0..30`, order, formula id, git commit, payload SHA, and unique stage indices. It sums coordinate-addressed `Cubic` coefficients exactly. For degree eight, it encloses every coefficient with the registered cuberoot interval and sums `max(abs(lower), abs(upper))` into an exact rational Pauli-l1 site-density upper bound. + +- [ ] **Step 4: Run CLI tests** + +Run: `pytest -q tests/test_d8_cli.py` + +--- + +### Task 4: Matching-order discovery array + +**Files:** +- Create: `scripts/screen_matching_order.py` +- Test: `tests/test_matching_order_screen.py` + +**Interfaces:** +- `screen_matching_order.py --permutation-index I --order 6 --output PATH --manifest PATH` evaluates one of `itertools.permutations(range(4))`. + +- [ ] **Step 1: Write permutation coverage tests** + +```python +def test_permutation_index_covers_exactly_24_orders() -> None: + values = [permutation_from_index(i) for i in range(24)] + assert len(set(values)) == 24 + assert values[0] == (0, 1, 2, 3) +``` + +- [ ] **Step 2: Implement float discovery only** + +Remap each `ScalarStage.fragment_index`, run `right_generator_local_series(..., order=6)`, and record term count plus coefficient-l1 for degrees four through six. The manifest must say `trusted=false` and `purpose="discovery-ranking"`. + +- [ ] **Step 3: Verify deterministic identity result** + +Run: `pytest -q tests/test_matching_order_screen.py` + +--- + +### Task 5: Slurm profiles, run specs, and sbatch scripts + +**Files:** +- Create: `skills/using-slurm/profiles/xh5-acamtw.toml` +- Create: `skills/using-slurm/profiles/xh5-cfys.toml` +- Create: `hpc/issue128_d8_array.sbatch` +- Create: `hpc/issue128_d8_reduce.sbatch` +- Create: `hpc/issue128_screen_array.sbatch` +- Create: `hpc/issue128_verify.sbatch` +- Create: `scripts/plan_issue128_hpc.py` +- Test: `tests/test_issue128_hpc_plan.py` + +**Interfaces:** +- Profiles select `xhacnormalb`, account `giggleliu`, and the matching user QOS. +- Planner writes `results//run_spec.json` with 31 D8 cells and 24 ordering cells. + +- [ ] **Step 1: Write plan-schema tests** + +```python +def test_sprint_plan_has_unique_cells_and_bounded_resources(tmp_path: Path) -> None: + spec = build_run_spec("issue128-hpc-test") + ids = [cell["cell_id"] for cell in spec["cells"]] + assert len(ids) == len(set(ids)) == 55 + assert sum(cell["kind"] == "d8-stage" for cell in spec["cells"]) == 31 + assert sum(cell["kind"] == "ordering-screen" for cell in spec["cells"]) == 24 +``` + +- [ ] **Step 2: Add fail-closed profiles and scripts** + +Profiles set hard ceilings of six hours, one node, 64 CPUs, and 200 array cells. Sbatch scripts request one CPU per cell, fixed thread environment, explicit memory, array concurrency caps, and no GPU GRES. + +- [ ] **Step 3: Inspect guardrails and dry-run submission** + +Run: + +```bash +python3 scripts/cluster_guardrail.py inspect hpc/issue128_d8_array.sbatch --profile skills/using-slurm/profiles/xh5-acamtw.toml +scripts/harness_slurm.sh --profile skills/using-slurm/profiles/xh5-acamtw.toml --dry-run submit --script hpc/issue128_d8_array.sbatch +``` + +Expected: no hard-limit violation and no remote command executed. + +--- + +### Task 6: Local proof-preservation gate + +**Files:** +- Modify: `tests/test_delivery_package.py` + +- [ ] **Step 1: Run focused new tests** + +Run: `pytest -q tests/test_cubic_right_generator.py tests/test_hpc_artifacts.py tests/test_d8_cli.py tests/test_matching_order_screen.py tests/test_issue128_hpc_plan.py` + +- [ ] **Step 2: Run accepted-certificate regression** + +Run: + +```bash +PYTHONPATH=src python scripts/verify.py certificates/issue128-certificate.json +PYTHONPATH=src python scripts/package_delivery.py --check +shasum -a 256 -c artifacts/SHA256SUMS +``` + +Expected: `valid=true`, exact ratio `11791/2911`, delivery PASS, and all ten hashes OK. + +- [ ] **Step 3: Run the complete default suite** + +Run: `pytest -q` + +Expected: no regressions. + +--- + +### Task 7: Remote bootstrap, smoke, and production submission + +**Files:** +- Runtime outputs only: `results//job-record.json`, cell logs, manifests, sidecars. + +- [ ] **Step 1: Precheck and probe** + +```bash +scripts/harness_slurm.sh --profile skills/using-slurm/profiles/xh5-acamtw.toml precheck +scripts/harness_slurm.sh --profile skills/using-slurm/profiles/xh5-acamtw.toml probe-partitions +``` + +- [ ] **Step 2: Ship exact source** + +Rsync only the clean sprint checkout, excluding `.git`, existing results, caches, and virtual environments. Record local commit and post-rsync remote file-list digest in `job-record.json`. + +- [ ] **Step 3: Bootstrap once on the login node** + +Create `.venv`, install `-e '.[test]'`, and run import-only smoke. Do not execute D8 on the login node. + +- [ ] **Step 4: Submit four-cell smoke** + +Submit D8 stages `0-3` with `--array=0-3%4`, wait for RUNNING, inspect one startup log, fetch four manifests, and require all four `status=complete` before production. + +- [ ] **Step 5: Submit production arrays and dependent reducer** + +Submit 31 D8 stages with concurrency 16, 24 ordering screens with concurrency 12, deep verifier, and full tests. Increase D8 concurrency to 32 only if smoke RSS and queue reasons allow. The reducer uses `afterok:`. + +--- + +### Task 8: Monitor, fetch, reduce, and adjudicate the 5x gate + +**Files:** +- Runtime outputs: `results//` +- Modify after evidence exists: `artifacts/verification-transcript.txt`, delivery summary, and report source. + +- [ ] **Step 1: Monitor scheduler and one representative log** + +Check PENDING→RUNNING, pending reasons, startup output, and 30–45 minute pulses. Do not treat scheduler completion as proof success. + +- [ ] **Step 2: Fetch and classify** + +```bash +scripts/harness_slurm.sh --profile skills/using-slurm/profiles/xh5-acamtw.toml fetch +scripts/harness_slurm.sh --profile skills/using-slurm/profiles/xh5-acamtw.toml classify +``` + +- [ ] **Step 3: Verify every cell and the reducer** + +Require 31/31 D8 manifests, digest matches, exact merge reproducibility under forward and reverse shard order, and a reducer summary with the exact D8 site-density bound. + +- [ ] **Step 4: Evaluate the global claim boundary** + +Only if an exact r=78 ledger is at most `1e-6`, the previous integer step fails, and fast/deep/fresh-clone verification pass may a 5x claim be added. Otherwise preserve `4.050498x` and label all new results as feasibility or negative evidence. + +- [ ] **Step 5: Final package audit** + +Render the PDF, inspect every page, regenerate JSON/TXT/transcript/SHA manifest, and reproduce from a fresh checkout before declaring the sprint complete. + +## Self-Review + +- Spec coverage: exact D8, discovery array, both Slurm accounts, six-hour ceiling, manifests, proof preservation, smoke/production/fetch, and final claim gate are assigned to Tasks 1–8. +- Placeholder scan: the plan contains no `TBD`, `TODO`, deferred implementation, or undefined “appropriate handling” steps. +- Type consistency: all D8 paths use `CubicTerms`; cross-process interchange uses coordinate-addressed keys; reducers never merge raw registry bit masks. +- Safety: GPU partitions are excluded, login-node compute is excluded, array concurrency is bounded, and the existing certificate remains authoritative unless the complete new gate passes. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/docs/superpowers/plans/2026-07-31-proof-carrying-trotter-paper.md b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/superpowers/plans/2026-07-31-proof-carrying-trotter-paper.md new file mode 100644 index 000000000..a057b7a32 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/docs/superpowers/plans/2026-07-31-proof-carrying-trotter-paper.md @@ -0,0 +1,426 @@ +# Proof-Carrying Trotter Bound Paper Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Produce a verified 22--30 page English research manuscript that presents the Issue 128 result as a proof-carrying, model-aware compiler for rigorous Trotter resource bounds. + +**Architecture:** Keep the frozen certificate package immutable and build a separate modular LaTeX project under `docs/manuscript/`. Each scientific section consumes committed evidence or primary literature, while deterministic scripts generate figures and validate copied numerical claims. Compile with `latexmk`, then render every PDF page with Poppler for visual review. + +**Tech Stack:** LaTeX, BibTeX, latexmk, Python 3.12, matplotlib, JSON, gzip, exact committed certificate artifacts, Poppler. + +## Global Constraints + +- Preserve all existing uncommitted HPC work and do not stage it with manuscript commits. +- Do not modify the manifest-bound competition report or certificate artifacts. +- The only certified global result is `r=97`, 2,911 groups, and exact ratio `11791/2911`. +- State explicitly that no `r=78` global certificate is claimed or supplied. +- Use primary-source bibliographic metadata; do not invent references. +- Keep the manuscript in English and target at least 15 substantive PDF pages. +- Separate certified claims, empirical cross-checks, and conditional research directions. +- Use exact values from committed artifacts; plotted decimal values are display-only. + +--- + +## File map + +- `docs/manuscript/main.tex`: document class, packages, metadata, section order. +- `docs/manuscript/references.bib`: verified primary-source bibliography. +- `docs/manuscript/sections/abstract.tex`: scoped abstract and keywords. +- `docs/manuscript/sections/introduction.tex`: motivation, gap, contributions. +- `docs/manuscript/sections/problem.tex`: Hamiltonian, formula, norm, cost model. +- `docs/manuscript/sections/baseline.tex`: PRX theorem versus pinned instantiation. +- `docs/manuscript/sections/compiler.tex`: compiler data flow and invariants. +- `docs/manuscript/sections/free_lie.tex`: free-word logarithm and Lie projection. +- `docs/manuscript/sections/pauli.tex`: concrete symplectic Pauli evaluation. +- `docs/manuscript/sections/norm_certificate.tex`: canonicalization and anticommuting groups. +- `docs/manuscript/sections/finite_step.tex`: right generator and rational tail. +- `docs/manuscript/sections/verification.tex`: proof-carrying verifier architecture. +- `docs/manuscript/sections/results.tex`: resource result, ledgers, ablations. +- `docs/manuscript/sections/related_work.tex`: 2021--2026 literature taxonomy. +- `docs/manuscript/sections/limitations.tex`: fivefold and tenfold frontier. +- `docs/manuscript/sections/reproducibility.tex`: commands and evidence matrix. +- `docs/manuscript/sections/conclusion.tex`: scoped conclusion. +- `docs/manuscript/sections/appendices.tex`: technical derivations and schemas. +- `docs/manuscript/scripts/generate_figures.py`: deterministic PDF figure generation. +- `docs/manuscript/scripts/validate_claims.py`: compare manuscript constants with artifacts. +- `docs/manuscript/figures/*.pdf`: generated vector figures. +- `docs/manuscript/output/pdf/issue128-proof-carrying-trotter-paper.pdf`: final PDF. + +### Task 1: Initialize the manuscript project and evidence validator + +**Files:** +- Create: `docs/manuscript/main.tex` +- Create: `docs/manuscript/sections/*.tex` +- Create: `docs/manuscript/scripts/validate_claims.py` +- Create: `docs/manuscript/output/pdf/.gitkeep` + +**Interfaces:** +- Consumes: committed `artifacts/issue128-summary.json` and `certificates/issue128-certificate.json`. +- Produces: a compilable manuscript skeleton and `validate_claims.py` returning exit code zero only when all headline constants match. + +- [ ] **Step 1: Scan the existing LaTeX structure** + +Run: + +```bash +python3 /Users/thomasjwang/.codex/skills/academic-writer/scripts/writer_tools.py scan_template docs/report +``` + +Expected: identify the existing generic `article` report and its bibliography setup. + +- [ ] **Step 2: Create the modular manuscript skeleton** + +Use `article` at 11 pt with `geometry`, `amsmath`, `amssymb`, `mathtools`, `booktabs`, `microtype`, `graphicx`, `xcolor`, `hyperref`, `cleveref`, `algorithm`, `algpseudocode`, `siunitx`, and `natbib`. Set the section order exactly as listed in the file map and place final output under `output/pdf/`. + +- [ ] **Step 3: Implement exact headline-claim validation** + +`validate_claims.py` must load the summary and certificate, assert: + +```python +assert summary["published_baseline"]["steps"] == 393 +assert summary["certified_result"]["steps"] == 97 +assert summary["published_baseline"]["group_exponentials"] == 11791 +assert summary["certified_result"]["group_exponentials"] == 2911 +assert Fraction(11791, 2911) > 4 +``` + +It must also assert the accepted and rejected error fractions against `10**-6` using integer cross multiplication. + +- [ ] **Step 4: Run the validator** + +Run: + +```bash +python docs/manuscript/scripts/validate_claims.py +``` + +Expected output: + +```text +headline_claims=PASS +``` + +- [ ] **Step 5: Compile the skeleton** + +Run: + +```bash +cd docs/manuscript +latexmk -pdf -interaction=nonstopmode -halt-on-error main.tex +``` + +Expected: successful one-page or two-page structural PDF with no LaTeX errors. + +### Task 2: Build the verified bibliography and related-work taxonomy + +**Files:** +- Create: `docs/manuscript/references.bib` +- Create: `docs/manuscript/sections/related_work.tex` + +**Interfaces:** +- Consumes: primary pages for each cited paper. +- Produces: citation keys used throughout the manuscript and a comparison taxonomy that distinguishes direct bounds from changed-task algorithms. + +- [ ] **Step 1: Add verified baseline and model-specific references** + +Include complete BibTeX for Childs et al. PRX 2021 and Schubert--Mendl 2023, with DOI or arXiv identifiers checked against the primary publisher or arXiv record. + +- [ ] **Step 2: Add special-state and average-case references** + +Include the low-energy subspace paper, Chen--Brandao average-case paper, strong state-dependent error bounds, and Trotter lower bounds. + +- [ ] **Step 3: Add changed-algorithm references** + +Include dynamic MPF, explicit MPF commutator scaling, randomized order doubling, Chebyshev interpolation, Trotter error mitigation, Trotter LCU, THRIFT, optimized Suzuki schemes, commutation-based ordering, practical BCH estimation, and HNCC. + +- [ ] **Step 4: Write the taxonomy** + +Use four subsections: + +1. worst-case commutator-scaling upper bounds; +2. low-energy, average-case, and observable-specific bounds; +3. MPF, LCU, interpolation, randomization, and compensation; +4. formula and ordering optimization. + +For every comparison, state whether the work changes the circuit, state set, norm, sampling cost, or Hamiltonian model. + +- [ ] **Step 5: Compile and reject unresolved citations** + +Run: + +```bash +cd docs/manuscript +latexmk -pdf -interaction=nonstopmode -halt-on-error main.tex +rg -n "undefined citations|Citation.*undefined|There were undefined" main.log +``` + +Expected: `rg` returns no matches. + +### Task 3: Write the problem, baseline, and contribution boundary + +**Files:** +- Modify: `docs/manuscript/sections/abstract.tex` +- Modify: `docs/manuscript/sections/introduction.tex` +- Modify: `docs/manuscript/sections/problem.tex` +- Modify: `docs/manuscript/sections/baseline.tex` + +**Interfaces:** +- Consumes: frozen benchmark values and bibliography keys. +- Produces: a self-contained statement of the scientific question and a non-misleading baseline reconstruction. + +- [ ] **Step 1: Write the abstract** + +Include the exact benchmark, unchanged circuit family, `393 -> 97`, `11791/2911`, 75.3117 percent reduction, machine certificate, and explicit non-claim for fivefold. + +- [ ] **Step 2: Write the introduction** + +Motivate the gap between general asymptotic bounds and finite-instance resource estimates. End with a numbered list of five contributions: multi-IR compiler, norm-last Pauli evaluation, certified anticommuting partitions, finite-step rational closure, and independent artifact verification. + +- [ ] **Step 3: Define the problem** + +Define `H`, four matchings, normalized bond, `S_4`, global operator norm, `T=1`, `epsilon=10^-6`, `G(r)=30r+1`, 72 bonds per group, and three-CNOT upper bound. + +- [ ] **Step 4: Reconstruct the baseline carefully** + +Use the phrase "pinned interval instantiation of a published theorem." Explain the 31 admissible centers, center 20, Pauli-l1 procedure, site-density bound, and `r=393`. Do not imply that PRX 2021 printed the number 393. + +- [ ] **Step 5: Compile and inspect extracted text** + +Run: + +```bash +cd docs/manuscript +latexmk -pdf -interaction=nonstopmode -halt-on-error main.tex +pdftotext main.pdf - | sed -n '1,220p' +``` + +Expected: abstract and claim boundary read coherently without missing symbols. + +### Task 4: Write the compiler and algebraic method + +**Files:** +- Modify: `docs/manuscript/sections/compiler.tex` +- Modify: `docs/manuscript/sections/free_lie.tex` +- Modify: `docs/manuscript/sections/pauli.tex` +- Modify: `docs/manuscript/sections/norm_certificate.tex` + +**Interfaces:** +- Consumes: implementation modules in `src/trottercert/` and committed D4/D5 statistics. +- Produces: precise algorithms, invariants, and verifier obligations for every structural optimization. + +- [ ] **Step 1: Specify compiler inputs, IRs, and outputs** + +Define source input `(H, F, S, T, epsilon, C)`, free-word IR, Lie IR, Pauli IR, certificate IR, and output `(r_star, resources, certificate)`. + +- [ ] **Step 2: Add compiler pseudocode** + +The pseudocode must include exact coefficient parsing, free-word multiplication, formal logarithm, order verification, DSW projection, local Pauli evaluation, canonicalization, identical-term aggregation, grouping, finite-tail closure, adjacent-step search, and resource compilation. + +- [ ] **Step 3: Explain free-word formal logarithms** + +Define truncated sparse series, convolution, `log(1+X)`, symmetry cancellations, degree-five and degree-seven defects, and why no matrix of dimension `2^144` is formed. + +- [ ] **Step 4: Explain DSW projection** + +Give the right-nested commutator map, homogeneous-degree factor, and the invariant checked by the implementation. + +- [ ] **Step 5: Explain concrete Pauli evaluation** + +Define symplectic `(x,z)` masks, phase tracking, commutation parity, local-support filtering, translation representatives, and exact coefficient aggregation. + +- [ ] **Step 6: Explain anticommuting certification** + +Prove that pairwise anticommutation gives an l2 group norm. Describe the graph partition search as untrusted and list exact coverage, pairwise relation, coefficient, square-root, and hash checks. + +- [ ] **Step 7: Quantify the D4 improvement** + +Report 75,324 terms, 7,576 groups, maximum size 10, direct cell bound `20.160968407335066`, grouped bound `6.472926505087888`, and factor `3.114660484942633`. + +### Task 5: Write finite-step analysis, soundness, and resource compilation + +**Files:** +- Modify: `docs/manuscript/sections/finite_step.tex` +- Modify: `docs/manuscript/sections/verification.tex` +- Modify: `docs/manuscript/sections/appendices.tex` + +**Interfaces:** +- Consumes: right-generator identity, local lemma, error ledger, verifier behavior. +- Produces: a theorem-level argument connecting local algebra to the global resource result. + +- [ ] **Step 1: Prove the Heisenberg local lemma** + +Enumerate the 16 phase-free two-qubit Paulis in an appendix table and prove that each anticommutes with zero or exactly two of `XX`, `YY`, `ZZ`, yielding bond Pauli-l1 growth constant one. + +- [ ] **Step 2: Derive the right logarithmic generator through degree seven** + +Present the `D4`, `D5`, `D6`, and `D7` terms with their exact coefficients and explain the degree shift from log defects to the right generator. + +- [ ] **Step 3: State the finite-step soundness theorem** + +The theorem must condition on verified free-word coefficients, Pauli ledgers, group partitions, local growth lemma, and tail ratio. Its conclusion must be the certified global operator-norm upper bound for integer `r`. + +- [ ] **Step 4: Explain the rational tail** + +Describe support growth, conjugation Taylor factorials, Duhamel integration, the geometric ratio condition, and outward rational arithmetic. State that omitted degrees are never silently discarded. + +- [ ] **Step 5: Derive resource arithmetic** + +Prove `G(r)=30r+1`, `B(r)=72G(r)`, and `CNOT(r)<=3B(r)`. Cross-multiply exact fractions for `r=97` and `r=96`. + +- [ ] **Step 6: Specify the trusted computing base** + +Separate discovery code from trusted verification. List integers, `Fraction`, outward rational intervals, symplectic multiplication, digest verification, negative mutation tests, and deep regeneration. + +### Task 6: Generate figures and write results, ablations, and limitations + +**Files:** +- Create: `docs/manuscript/scripts/generate_figures.py` +- Create: `docs/manuscript/figures/resources.pdf` +- Create: `docs/manuscript/figures/error_ledger.pdf` +- Create: `docs/manuscript/figures/d4_norm.pdf` +- Create: `docs/manuscript/figures/fivefold_gap.pdf` +- Modify: `docs/manuscript/sections/results.tex` +- Modify: `docs/manuscript/sections/limitations.tex` + +**Interfaces:** +- Consumes: frozen summary and committed fivefold audit. +- Produces: deterministic vector figures and a results narrative with explicit certified/conditional labels. + +- [ ] **Step 1: Implement deterministic figure generation** + +Use matplotlib with embedded data loaded from JSON where available. Use a fixed style, vector PDF output, color-blind-safe colors, and labels that remain legible at single-column width. + +- [ ] **Step 2: Generate the resource comparison** + +Plot baseline and candidate values for steps, groups, bond propagators, and CNOTs using normalized or log-scaled panels so all metrics remain readable. + +- [ ] **Step 3: Generate the `r=97` error ledger** + +Plot D4, D5, D6, D7, and D8-plus contributions with a horizontal `10^-6` total target annotation. + +- [ ] **Step 4: Generate D4 norm reduction** + +Plot direct Pauli-l1 versus grouped anticommuting bound and annotate the exact reduction factor. + +- [ ] **Step 5: Generate the fivefold bottleneck figure** + +Use the committed audit values at `r=78`; label the entire panel "conditional feasibility audit, not a global certificate." + +- [ ] **Step 6: Write results and ablations** + +Cover the main result, adjacent boundary, D4 grouping, local lemma, recursive Suzuki audit, degree-three rank, three-site cluster result, small-system cross-check, and D5 side study. + +- [ ] **Step 7: Write limitations** + +Explain the single-model limitation, constant-factor rather than asymptotic improvement, incomplete comparison with optimized formulas, D4/D6/tail gates for fivefold, and order-lift requirement for tenfold. + +- [ ] **Step 8: Regenerate and validate figures** + +Run: + +```bash +python docs/manuscript/scripts/generate_figures.py +python docs/manuscript/scripts/validate_claims.py +``` + +Expected: four figure PDFs and `headline_claims=PASS`. + +### Task 7: Write reproducibility, conclusion, and paper metadata + +**Files:** +- Modify: `docs/manuscript/sections/reproducibility.tex` +- Modify: `docs/manuscript/sections/conclusion.tex` +- Modify: `docs/manuscript/main.tex` + +**Interfaces:** +- Consumes: README reproduction commands, transcript metadata, manifest hashes. +- Produces: a reviewer-executable handoff and compliant manuscript metadata. + +- [ ] **Step 1: Add the claim-to-evidence matrix** + +Map baseline, `r=97`, `r=96`, D4 partition, D5 sidecar, small cross-check, report, and manifest to exact paths and commands. + +- [ ] **Step 2: Add reproduction commands** + +Include environment installation, tests, fast verification, deep verification, D5 verification, package check, and checksum validation. + +- [ ] **Step 3: Add availability and contribution statements** + +Include Data Availability, Code Availability, Author Contributions, Acknowledgments, and an AI-assistance disclosure stating the actual role of language models in drafting, code assistance, and literature organization while assigning scientific responsibility to the author. + +- [ ] **Step 4: Write the conclusion** + +Restate the proof-compiler contribution, scoped best-known certificate, and complementary relationship to MPF/LCU/observable-specific methods. + +### Task 8: Compile, audit, and freeze the manuscript PDF + +**Files:** +- Produce: `docs/manuscript/output/pdf/issue128-proof-carrying-trotter-paper.pdf` +- Produce temporarily: `tmp/pdfs/issue128-paper/page-*.png` + +**Interfaces:** +- Consumes: all manuscript sources and generated figures. +- Produces: the final validated PDF and a clean audit report. + +- [ ] **Step 1: Compile with latexmk** + +Run: + +```bash +cd docs/manuscript +latexmk -pdf -interaction=nonstopmode -halt-on-error main.tex +mkdir -p output/pdf +cp main.pdf output/pdf/issue128-proof-carrying-trotter-paper.pdf +``` + +- [ ] **Step 2: Run structural checks** + +Run: + +```bash +pdfinfo output/pdf/issue128-proof-carrying-trotter-paper.pdf +pdftotext output/pdf/issue128-proof-carrying-trotter-paper.pdf - | wc -w +rg -n "undefined|Overfull|Underfull|multiply defined" main.log +``` + +Expected: at least 15 pages, no unresolved citation/reference diagnostics, and no material overfull boxes. + +- [ ] **Step 3: Scan for claim and drafting hazards** + +Run searches for placeholder markers, unqualified fivefold claims, accidental "published 393-step result" wording, and unqualified global-SOTA language. Correct every occurrence in context. + +- [ ] **Step 4: Render every page** + +Run: + +```bash +mkdir -p tmp/pdfs/issue128-paper +pdftoppm -png -r 120 output/pdf/issue128-proof-carrying-trotter-paper.pdf tmp/pdfs/issue128-paper/page +``` + +Inspect every rendered page for clipping, overlap, broken equations, illegible plots, excessive whitespace, bad table breaks, and orphaned headings. + +- [ ] **Step 5: Re-run evidence checks** + +Run: + +```bash +python scripts/validate_claims.py +cd ../.. +PYTHONPATH=src python scripts/verify.py certificates/issue128-certificate.json +PYTHONPATH=src python scripts/package_delivery.py --check +shasum -a 256 -c artifacts/SHA256SUMS +``` + +Expected: manuscript claims pass, certificate valid, delivery check passes, and all ten frozen hashes are unchanged. + +- [ ] **Step 6: Report the final artifact** + +Record page count, word count, PDF SHA-256, compiler command, and any remaining non-fatal typography warnings in the handoff. State explicitly that the manuscript is a local follow-up and has not been pushed to the frozen judged PR. + +## Self-review + +- Spec coverage: all requested detailed explanations, implementation guidance, long-form PDF, complete algorithm chain, and verification steps are assigned to Tasks 1--8. +- Placeholder scan: the plan contains no unresolved implementation placeholders. +- Interface consistency: manuscript paths, script names, figure names, and final PDF name are used consistently across tasks. +- Scope integrity: no task modifies frozen certificate artifacts or incorporates unrelated HPC work. diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/pyproject.toml b/tracks/qcs/solutions/WangTheoPhys/issue128/pyproject.toml new file mode 100644 index 000000000..af5ec0e76 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/pyproject.toml @@ -0,0 +1,22 @@ +[build-system] +requires = ["setuptools>=70"] +build-backend = "setuptools.build_meta" + +[project] +name = "trottercert" +version = "0.1.0" +description = "Machine-certified product-formula analysis for 2D Heisenberg models" +requires-python = ">=3.11" +dependencies = ["numpy>=2.0", "scipy>=1.13", "sympy>=1.13"] + +[project.optional-dependencies] +test = ["pytest>=8"] + +[tool.setuptools] +package-dir = {"" = "src"} + +[tool.pytest.ini_options] +pythonpath = ["src"] +testpaths = ["tests"] +addopts = "-m 'not slow'" +markers = ["slow: long-running research reproduction test"] diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/__init__.py b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/__init__.py new file mode 100644 index 000000000..d78bd2fb2 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/__init__.py @@ -0,0 +1 @@ +"""Importable command-line helpers for the Issue 128 submission.""" diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/build_d5_certificate.py b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/build_d5_certificate.py new file mode 100644 index 000000000..b95727327 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/build_d5_certificate.py @@ -0,0 +1,131 @@ +#!/usr/bin/env python3 +from __future__ import annotations + +import argparse +from fractions import Fraction +from pathlib import Path + +from trottercert.cubic_field import fourth_order_suzuki_cubic_stages +from trottercert.cubic_local import exact_d5_density, exact_log_e5_density +from trottercert.intervals import cube_root_four_interval +from trottercert.support_groups import ( + build_d5_payload, + canonical_gzip_bytes, + certify_support_partition, + decode_d5_gzip, + discover_support_partition, + verify_d5_payload, +) + + +ROOT = Path(__file__).resolve().parents[1] +OUTPUT = ROOT / "certificates" / "issue128-d5-groups.json.gz" +EXPECTED_TERM_COUNT = 605_832 +EXPECTED_GROUP_COUNT = 123_106 +EXPECTED_SITE_DENSITY = Fraction( + 44_948_270_001_027_856_175_670_154_896_253, + 4_000_000_000_000_000_000_000_000_000_000, +) +SITE_DENSITY_GATE = Fraction(12) + + +def _require_regression_gates( + *, + term_count: int, + group_count: int, + site_density: Fraction, +) -> None: + if term_count != EXPECTED_TERM_COUNT: + raise ValueError( + f"D5 term-count regression: {term_count} != {EXPECTED_TERM_COUNT}" + ) + if group_count != EXPECTED_GROUP_COUNT: + raise ValueError( + f"D5 group-count regression: {group_count} != {EXPECTED_GROUP_COUNT}" + ) + if site_density > SITE_DENSITY_GATE: + raise ValueError( + f"D5 site-density gate failed: {site_density} > {SITE_DENSITY_GATE}" + ) + if site_density != EXPECTED_SITE_DENSITY: + raise ValueError( + "D5 site-density regression: " + f"{site_density} != {EXPECTED_SITE_DENSITY}" + ) + + +def _report(term_count: int, group_count: int, site_density: Fraction) -> None: + print(f"term_count={term_count}") + print(f"group_count={group_count}") + print(f"site_density={site_density}") + print(f"site_density_decimal={float(site_density):.16g}") + + +def verify_only() -> None: + raw = OUTPUT.read_bytes() + payload = decode_d5_gzip(raw) + certificate = verify_d5_payload(payload) + term_count = len(certificate.paulis) + group_count = len(certificate.groups) + site_density = certificate.bound / 4 + _require_regression_gates( + term_count=term_count, + group_count=group_count, + site_density=site_density, + ) + _report(term_count, group_count, site_density) + + +def build() -> None: + stages = fourth_order_suzuki_cubic_stages(4) + registry, e5 = exact_log_e5_density(stages) + d5 = exact_d5_density(registry, e5) + root = cube_root_four_interval(24) + root_midpoint = root.midpoint() + coefficients = { + pauli: coefficient.enclose(root) + for pauli, coefficient in d5.items() + } + discovery_scores = { + pauli: coefficient.a0 + + coefficient.a1 * root_midpoint + + coefficient.a2 * root_midpoint**2 + for pauli, coefficient in d5.items() + } + groups = discover_support_partition( + coefficients, + max_group_size=10, + discovery_scores=discovery_scores, + ) + certificate = certify_support_partition(coefficients, groups) + term_count = len(certificate.paulis) + group_count = len(certificate.groups) + site_density = certificate.bound / 4 + _report(term_count, group_count, site_density) + _require_regression_gates( + term_count=term_count, + group_count=group_count, + site_density=site_density, + ) + + payload = build_d5_payload(coefficients, groups) + raw = canonical_gzip_bytes(payload) + verified = verify_d5_payload(decode_d5_gzip(raw)) + if verified.bound != certificate.bound: + raise ValueError("D5 round-trip certificate bound mismatch") + OUTPUT.write_bytes(raw) + print(f"output={OUTPUT}") + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--verify-only", action="store_true") + arguments = parser.parse_args() + if arguments.verify_only: + verify_only() + else: + build() + + +if __name__ == "__main__": + main() diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/build_d8_shard.py b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/build_d8_shard.py new file mode 100755 index 000000000..a60d9efba --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/build_d8_shard.py @@ -0,0 +1,164 @@ +#!/usr/bin/env python3 +from __future__ import annotations + +import argparse +from datetime import datetime, timezone +import json +import os +from pathlib import Path +import resource +import subprocess +import sys +import time +import traceback + +from trottercert.cubic_field import fourth_order_suzuki_cubic_stages +from trottercert.cubic_local import exact_right_generator_stage_contribution +from trottercert.hpc_artifacts import ( + coordinate_encode_series, + cubic_to_json, + sha256_file, + write_manifest_atomic, + write_shard_gzip, +) + + +FORMULA_ID = "five_copy_suzuki_fourth_order_exact_cubic" + + +def _utc_now() -> str: + return datetime.now(timezone.utc).isoformat() + + +def _source_state(root: Path) -> tuple[str, bool]: + shipped_commit = os.environ.get("ISSUE128_SOURCE_COMMIT") + if shipped_commit: + dirty_text = os.environ.get("ISSUE128_SOURCE_DIRTY", "0").lower() + return shipped_commit, dirty_text in {"1", "true", "yes"} + commit = subprocess.run( + ["git", "rev-parse", "HEAD"], + cwd=root, + check=True, + capture_output=True, + text=True, + ).stdout.strip() + dirty = bool( + subprocess.run( + ["git", "status", "--porcelain"], + cwd=root, + check=True, + capture_output=True, + text=True, + ).stdout.strip() + ) + return commit, dirty + + +def _max_rss_bytes() -> int: + value = resource.getrusage(resource.RUSAGE_SELF).ru_maxrss + # macOS reports bytes; Linux reports KiB. + return int(value if sys.platform == "darwin" else value * 1024) + + +def build_shard( + *, + stage_index: int, + order: int, + output: Path, + manifest: Path, + repository_root: Path, +) -> dict[str, object]: + stages = fourth_order_suzuki_cubic_stages() + if stage_index < 0 or stage_index >= len(stages): + raise ValueError(f"stage index must be in [0, {len(stages) - 1}]") + if order < 0: + raise ValueError("order must be nonnegative") + commit, dirty = _source_state(repository_root) + started_at = _utc_now() + started = time.perf_counter() + running = { + "schema_version": 1, + "kind": "issue128_d8_stage_manifest", + "status": "running", + "stage_index": stage_index, + "stage_count": len(stages), + "order": order, + "git_commit": commit, + "git_dirty": dirty, + "started_at": started_at, + } + write_manifest_atomic(manifest, running) + print( + f"stage={stage_index}/{len(stages)-1} order={order} status=running", + flush=True, + ) + try: + registry, series = exact_right_generator_stage_contribution( + stages, stage_index, order + ) + stage = stages[stage_index] + payload = { + "schema_version": 1, + "kind": "issue128_exact_right_generator_stage", + "formula_id": FORMULA_ID, + "stage_index": stage_index, + "stage_count": len(stages), + "fragment_index": stage.fragment_index, + "stage_coefficient": cubic_to_json(stage.coefficient), + "order": order, + "series": coordinate_encode_series(registry, series), + } + write_shard_gzip(output, payload) + elapsed = time.perf_counter() - started + complete = { + **running, + "status": "complete", + "completed_at": _utc_now(), + "wall_seconds": elapsed, + "peak_rss_bytes": _max_rss_bytes(), + "degree_term_counts": [len(degree) for degree in series], + "output": output.name, + "output_sha256": sha256_file(output), + } + write_manifest_atomic(manifest, complete) + print( + f"stage={stage_index} status=complete wall={elapsed:.3f}s " + f"terms={complete['degree_term_counts']} sha256={complete['output_sha256']}", + flush=True, + ) + return complete + except BaseException as error: + failed = { + **running, + "status": "failed", + "completed_at": _utc_now(), + "wall_seconds": time.perf_counter() - started, + "peak_rss_bytes": _max_rss_bytes(), + "error_type": type(error).__name__, + "error": str(error), + "traceback": traceback.format_exc(), + } + write_manifest_atomic(manifest, failed) + raise + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--stage-index", type=int, required=True) + parser.add_argument("--order", type=int, default=8) + parser.add_argument("--output", type=Path, required=True) + parser.add_argument("--manifest", type=Path, required=True) + arguments = parser.parse_args() + issue_root = Path(__file__).resolve().parents[1] + repository_root = issue_root.parents[4] + build_shard( + stage_index=arguments.stage_index, + order=arguments.order, + output=arguments.output, + manifest=arguments.manifest, + repository_root=repository_root, + ) + + +if __name__ == "__main__": + main() diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/build_v3_certificate.py b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/build_v3_certificate.py new file mode 100644 index 000000000..bb917fed0 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/build_v3_certificate.py @@ -0,0 +1,283 @@ +#!/usr/bin/env python3 +from __future__ import annotations + +import hashlib +import json +from fractions import Fraction +from math import lcm +from pathlib import Path + +from trottercert.anticommuting import ( + AnticommutingPartitionCertificate, + certify_anticommuting_partition, + discover_anticommuting_partition, +) +from trottercert.pareto import minimum_published_suzuki_point +from trottercert.refined_error import ( + build_refined_fourth_order_constants, + certified_d4_cell_coefficients, + evaluate_refined_fourth_order_bound, +) +from trottercert.resources import required_steps +from trottercert.rigorous_fourth import ( + fourth_order_published_triangle_certificate, +) + + +ROOT = Path(__file__).resolve().parents[1] +OUTPUT = ROOT / "certificates" / "issue128-certificate.json" +D4_OUTPUT = ROOT / "certificates" / "issue128-d4-groups.json" + + +def pair(value: Fraction) -> list[int]: + return [value.numerator, value.denominator] + + +def canonical_json_bytes(payload: dict[str, object]) -> bytes: + return ( + json.dumps(payload, sort_keys=True, separators=(",", ":")) + + "\n" + ).encode() + + +def d4_sidecar_payload( + certificate: AnticommutingPartitionCertificate, +) -> dict[str, object]: + coefficient_denominator = 1 + for interval in certificate.coefficients: + coefficient_denominator = lcm( + coefficient_denominator, + interval.lower.denominator, + interval.upper.denominator, + ) + sqrt_denominator = 1 + for group in certificate.groups: + sqrt_denominator = lcm( + sqrt_denominator, + group.bound.denominator, + ) + return { + "schema_version": 1, + "coefficient_denominator": coefficient_denominator, + "terms": [ + [ + pauli[0], + pauli[1], + interval.lower.numerator + * ( + coefficient_denominator + // interval.lower.denominator + ), + interval.upper.numerator + * ( + coefficient_denominator + // interval.upper.denominator + ), + ] + for pauli, interval in zip( + certificate.paulis, + certificate.coefficients, + ) + ], + "sqrt_denominator": sqrt_denominator, + "groups": [ + [ + list(group.term_indices), + group.bound.numerator + * (sqrt_denominator // group.bound.denominator), + ] + for group in certificate.groups + ], + "cell_bound": pair(certificate.bound), + } + + +def main() -> None: + n_sites = 144 + tolerance = Fraction(1, 10**6) + + published = fourth_order_published_triangle_certificate( + center=20, + decimal_digits=18, + ) + published_steps = required_steps( + published.site_density_upper * n_sites, + tolerance, + 4, + ) + published_groups = 30 * published_steps + 1 + + constants = build_refined_fourth_order_constants( + decimal_digits=12, + quantization_digits=18, + ) + d4_coefficients = certified_d4_cell_coefficients( + constants.stages, + quantization_digits=18, + ) + d4_groups = discover_anticommuting_partition( + d4_coefficients, + max_group_size=10, + ) + d4_partition = certify_anticommuting_partition( + d4_coefficients, + d4_groups, + ) + d4_payload = d4_sidecar_payload(d4_partition) + d4_bytes = canonical_json_bytes(d4_payload) + D4_OUTPUT.write_bytes(d4_bytes) + d4_site_bound = d4_partition.bound / 4 + + low = 1 + high = published_steps + while low < high: + middle = (low + high) // 2 + if ( + evaluate_refined_fourth_order_bound( + constants, + n_sites, + middle, + d4_site_override=d4_site_bound, + ).global_error_bound + <= tolerance + ): + high = middle + else: + low = middle + 1 + candidate_steps = low + candidate = evaluate_refined_fourth_order_bound( + constants, + n_sites, + candidate_steps, + d4_site_override=d4_site_bound, + ) + previous = evaluate_refined_fourth_order_bound( + constants, + n_sites, + candidate_steps - 1, + d4_site_override=d4_site_bound, + ) + candidate_groups = 30 * candidate_steps + 1 + + recursive_points = [] + for order in (2, 4, 6, 8): + point = minimum_published_suzuki_point( + order, + n_sites=n_sites, + tolerance=tolerance, + decimal_digits=12, + ) + recursive_points.append( + { + "order": point.order, + "steps": point.steps, + "stages_per_step": point.stages_per_step, + "group_exponentials": point.group_exponentials, + "global_error_upper_decimal_summary": format( + float(point.global_error_bound), + ".17g", + ), + } + ) + + baseline_bonds = published_groups * n_sites // 2 + candidate_bonds = candidate_groups * n_sites // 2 + certificate = { + "schema_version": 3, + "benchmark": { + "model": "periodic_square_spin_half_isotropic_heisenberg", + "normalization": "(XX+YY+ZZ)/4", + "length": 12, + "time": [1, 1], + "tolerance": [1, 10**6], + "primary_certified_metric": "compiled_cnot_upper", + }, + "published_baseline": { + "source_theorem": "Childs_Su_Tran_Wiebe_Zhu_high_order_commutator_bound", + "formula": "five_copy_suzuki_fourth_order", + "formula_order": 4, + "stage_count": 31, + "theorem_center": 20, + "coefficient_interval_decimal_digits": 18, + "norm_method": "expand_partial_sums_then_local_Pauli_l1", + "site_density_upper": pair(published.site_density_upper), + "theorem_terms": published.theorem_terms, + "expanded_commutator_keys": published.expanded_commutator_keys, + "steps": published_steps, + "group_exponentials": published_groups, + }, + "candidate": { + "formula": "five_copy_suzuki_fourth_order", + "proof_method": ( + "local_log_E5_grouped_D4_plus_E7_majorant" + "_plus_exact_generator_tail" + ), + "coefficient_interval_decimal_digits": 12, + "e5_quantization_digits": 18, + "e5_site_l1_upper": pair(constants.e5_site_l1), + "e7_site_majorant": pair(constants.e7_site_majorant), + "d4_certificate": { + "path": D4_OUTPUT.name, + "sha256": hashlib.sha256(d4_bytes).hexdigest(), + "max_group_size": 10, + "term_count": len(d4_partition.paulis), + "group_count": len(d4_partition.groups), + "cell_norm_upper": pair(d4_partition.bound), + }, + "steps": candidate_steps, + "group_exponentials": candidate_groups, + "contributions": { + "degree4": pair(candidate.degree_four_contribution), + "degree5": pair(candidate.degree_five_contribution), + "degree6": pair(candidate.degree_six_contribution), + "degree7": pair(candidate.degree_seven_contribution), + "tail": pair(candidate.tail_contribution), + }, + "global_error_upper": pair(candidate.global_error_bound), + "previous_step_error_upper": pair(previous.global_error_bound), + }, + "cost_model": { + "bonds_per_matching": n_sites // 2, + "cnots_per_bond_propagator": 3, + "inter_step_merge_rule": "30*r+1", + }, + "claimed_resources": { + "published_steps": published_steps, + "candidate_steps": candidate_steps, + "published_group_exponentials": published_groups, + "candidate_group_exponentials": candidate_groups, + "published_bond_propagators": baseline_bonds, + "candidate_bond_propagators": candidate_bonds, + "published_cnot_upper": 3 * baseline_bonds, + "candidate_cnot_upper": 3 * candidate_bonds, + }, + "published_recursive_suzuki_audit": recursive_points, + "claims": { + "global_twofold_target_met": published_groups >= 2 * candidate_groups, + "global_fourfold_target_met": ( + published_groups >= 4 * candidate_groups + ), + "exact_improvement_ratio": pair( + Fraction(published_groups, candidate_groups) + ), + }, + } + OUTPUT.write_text(json.dumps(certificate, indent=2) + "\n") + print(D4_OUTPUT) + print(OUTPUT) + print( + json.dumps( + { + "published_groups": published_groups, + "candidate_groups": candidate_groups, + "improvement": published_groups / candidate_groups, + "candidate_error": float(candidate.global_error_bound), + "previous_error": float(previous.global_error_bound), + }, + indent=2, + ) + ) + + +if __name__ == "__main__": + main() diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/crosscheck_small.py b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/crosscheck_small.py new file mode 100644 index 000000000..ed962f2db --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/crosscheck_small.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python3 +from __future__ import annotations + +import argparse +import json +from fractions import Fraction + +from trottercert.crosscheck import small_exact_crosscheck + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--length", type=int, default=2) + parser.add_argument("--tolerance", type=int, default=10**6) + args = parser.parse_args() + print( + json.dumps( + small_exact_crosscheck(args.length, Fraction(1, args.tolerance)), + indent=2, + ) + ) + + +if __name__ == "__main__": + main() diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/package_delivery.py b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/package_delivery.py new file mode 100644 index 000000000..9aeabb24d --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/package_delivery.py @@ -0,0 +1,426 @@ +#!/usr/bin/env python3 +"""Build and validate the reviewer-facing Issue 128 delivery package.""" + +from __future__ import annotations + +import argparse +from decimal import Decimal, ROUND_CEILING, localcontext +import gzip +import hashlib +import json +import os +from pathlib import Path +import platform +import subprocess +import sys +from typing import Mapping + + +ROOT = Path(__file__).resolve().parents[1] +CERTIFICATE = Path("certificates/issue128-certificate.json") +D4_SIDECAR = Path("certificates/issue128-d4-groups.json") +D5_SIDECAR = Path("certificates/issue128-d5-groups.json.gz") +SMALL_CROSSCHECK = Path("certificates/issue128-small-crosscheck.json") + +EXPECTED: dict[str, object] = { + "published_steps": 393, + "candidate_steps": 97, + "published_groups": 11_791, + "candidate_groups": 2_911, + "ratio": [11_791, 2_911], + "d4_terms": 75_324, + "d4_groups": 7_576, + "d5_terms": 605_832, + "d5_groups": 123_106, + "certificate_sha256": "0a09623ce3b292a3637065c870fb3153bbdcddce30aef968565c4db3ddfc7201", + "d4_sha256": "a397414bb0229fb1ebdb38798aa781fb89dbb9d5cdbed94c7cd2e9120da62718", + "d5_sha256": "c5e8968a93b4497b41fe42c0e364324388272e183e1fcd20a536bc988f5361dd", + "pr_head": "c550a6b0915ccf7a1db410ee765ff65d99f96b6f", +} + +MANIFEST_PATHS = ( + Path("artifacts/issue128-summary.json"), + Path("artifacts/issue128-summary.txt"), + Path("artifacts/verification-transcript.txt"), + CERTIFICATE, + D4_SIDECAR, + D5_SIDECAR, + SMALL_CROSSCHECK, + Path("docs/report/issue128-technical-report.tex"), + Path("docs/report/references.bib"), + Path("docs/report/output/issue128-technical-report.pdf"), +) + + +def require_equal(label: str, actual: object, expected: object) -> None: + if actual != expected: + raise ValueError(f"{label} drift: {actual!r} != {expected!r}") + + +def canonical_json(payload: object) -> str: + return json.dumps(payload, indent=2, sort_keys=True) + "\n" + + +def sha256_file(path: Path) -> str: + digest = hashlib.sha256() + with path.open("rb") as handle: + for chunk in iter(lambda: handle.read(1 << 20), b""): + digest.update(chunk) + return digest.hexdigest() + + +def _object(path: Path) -> dict[str, object]: + payload = json.loads(path.read_text()) + if not isinstance(payload, dict): + raise TypeError(f"expected an object in {path}") + return payload + + +def _gzip_object(path: Path) -> dict[str, object]: + with gzip.open(path, "rt") as handle: + payload = json.load(handle) + if not isinstance(payload, dict): + raise TypeError(f"expected an object in {path}") + return payload + + +def _decimal(pair: list[int], digits: int = 16) -> str: + with localcontext() as context: + context.prec = 80 + value = Decimal(pair[0]) / Decimal(pair[1]) + return format(value, f".{digits}g").lower() + + +def _outward_upper(pair: list[int], digits: int = 16) -> str: + """Format a positive rational upward, never below the certified bound.""" + + with localcontext() as context: + context.prec = 100 + value = Decimal(pair[0]) / Decimal(pair[1]) + exponent = value.adjusted() + quantum = Decimal(1).scaleb(exponent - digits + 1) + rounded = value.quantize(quantum, rounding=ROUND_CEILING) + return format(rounded, f".{digits - 1}e").lower() + + +def _git_provenance(root: Path) -> tuple[str, str]: + repository = subprocess.run( + ["git", "rev-parse", "--show-toplevel"], + cwd=root, + check=True, + capture_output=True, + text=True, + ).stdout.strip() + relative = (root / CERTIFICATE).resolve().relative_to(Path(repository).resolve()) + output = subprocess.run( + ["git", "log", "-1", "--format=%H%n%cI", "--", relative.as_posix()], + cwd=repository, + check=True, + capture_output=True, + text=True, + ).stdout.strip().splitlines() + if len(output) != 2: + raise ValueError("could not determine certificate provenance") + return output[0], output[1] + + +def build_summary(root: Path = ROOT) -> dict[str, object]: + root = root.resolve() + certificate = _object(root / CERTIFICATE) + crosscheck = _object(root / SMALL_CROSSCHECK) + d5 = _gzip_object(root / D5_SIDECAR) + benchmark = certificate["benchmark"] + published = certificate["published_baseline"] + candidate = certificate["candidate"] + resources = certificate["claimed_resources"] + claims = certificate["claims"] + if not all(isinstance(item, dict) for item in (benchmark, published, candidate, resources, claims)): + raise TypeError("main certificate schema is malformed") + + checks = ( + ("published steps", resources["published_steps"], EXPECTED["published_steps"]), + ("candidate steps", resources["candidate_steps"], EXPECTED["candidate_steps"]), + ("published groups", resources["published_group_exponentials"], EXPECTED["published_groups"]), + ("candidate groups", resources["candidate_group_exponentials"], EXPECTED["candidate_groups"]), + ("exact ratio", claims["exact_improvement_ratio"], EXPECTED["ratio"]), + ) + for label, actual, expected in checks: + require_equal(label, actual, expected) + + d4 = candidate["d4_certificate"] + if not isinstance(d4, dict): + raise TypeError("D4 metadata is malformed") + require_equal("D4 terms", d4["term_count"], EXPECTED["d4_terms"]) + require_equal("D4 groups", d4["group_count"], EXPECTED["d4_groups"]) + require_equal("D5 terms", d5["term_count"], EXPECTED["d5_terms"]) + require_equal("D5 groups", d5["group_count"], EXPECTED["d5_groups"]) + + hashes = { + "main_certificate": sha256_file(root / CERTIFICATE), + "d4_sidecar": sha256_file(root / D4_SIDECAR), + "d5_sidecar": sha256_file(root / D5_SIDECAR), + } + require_equal("main certificate digest", hashes["main_certificate"], EXPECTED["certificate_sha256"]) + require_equal("D4 sidecar digest", hashes["d4_sidecar"], EXPECTED["d4_sha256"]) + require_equal("D5 sidecar digest", hashes["d5_sidecar"], EXPECTED["d5_sha256"]) + + tolerance = benchmark["tolerance"] + error = candidate["global_error_upper"] + previous_error = candidate["previous_step_error_upper"] + accepted = error[0] * tolerance[1] <= tolerance[0] * error[1] + rejected = previous_error[0] * tolerance[1] > tolerance[0] * previous_error[1] + require_equal("97-step acceptance", accepted, True) + require_equal("96-step rejection", rejected, True) + + source_commit, source_timestamp = _git_provenance(root) + exact_ratio = claims["exact_improvement_ratio"] + conditional_ratio = [resources["published_group_exponentials"], 30 * 78 + 1] + removed = [ + resources["published_group_exponentials"] - resources["candidate_group_exponentials"], + resources["published_group_exponentials"], + ] + contributions = candidate["contributions"] + if not isinstance(contributions, dict): + raise TypeError("error contribution ledger is malformed") + + return { + "schema_version": 1, + "sources": { + "anchored_pr_head": EXPECTED["pr_head"], + "source_commit_for_main_certificate": source_commit, + "source_commit_timestamp": source_timestamp, + "main_certificate": {"path": CERTIFICATE.as_posix(), "sha256": hashes["main_certificate"]}, + "d4_sidecar": {"path": D4_SIDECAR.as_posix(), "sha256": hashes["d4_sidecar"]}, + "d5_sidecar": {"path": D5_SIDECAR.as_posix(), "sha256": hashes["d5_sidecar"]}, + }, + "benchmark": { + "model": benchmark["model"], + "normalization": benchmark["normalization"], + "length": benchmark["length"], + "sites": benchmark["length"] ** 2, + "time": benchmark["time"], + "tolerance": tolerance, + "formula": candidate["formula"], + "formula_order": published["formula_order"], + "stage_count": published["stage_count"], + }, + "published_baseline": { + "source_theorem": published["source_theorem"], + "theorem_center": published["theorem_center"], + "site_density_upper": published["site_density_upper"], + "site_density_upper_decimal": _outward_upper(published["site_density_upper"]), + "steps": resources["published_steps"], + "group_exponentials": resources["published_group_exponentials"], + "bond_propagators": resources["published_bond_propagators"], + "cnot_upper": resources["published_cnot_upper"], + }, + "certified_result": { + "status": "certified", + "steps": resources["candidate_steps"], + "group_exponentials": resources["candidate_group_exponentials"], + "bond_propagators": resources["candidate_bond_propagators"], + "cnot_upper": resources["candidate_cnot_upper"], + "error_upper": error, + "error_upper_decimal_outward": _outward_upper(error), + "previous_step": 96, + "previous_step_error_upper": previous_error, + "previous_step_error_upper_decimal_outward": _outward_upper(previous_error), + "accepted_at_97": accepted, + "rejected_at_96": rejected, + }, + "improvement": { + "exact_ratio": exact_ratio, + "decimal": _decimal(exact_ratio), + "resource_fraction_removed": removed, + "resource_percent_removed": _decimal([100 * removed[0], removed[1]]) + "%", + "multiple_of_required_twofold_target": _decimal([exact_ratio[0], 2 * exact_ratio[1]]), + }, + "error_ledger": { + name: {"exact": pair, "decimal_outward": _outward_upper(pair)} + for name, pair in contributions.items() + }, + "method": { + "proof_method": candidate["proof_method"], + "innovations": [ + "full free-associative-word logarithm before norm inequalities", + "Dynkin-Specht-Wever projection to degree-5 and degree-7 Lie elements", + "translation-canonical Pauli combination before taking norms", + "exact pairwise-anticommuting grouping for the leading D4 defect", + "exact single-bond Heisenberg commutator growth constant 1", + "finite-step right-generator ledger with a rational geometric tail", + "independent exact-rational and symplectic verification", + ], + }, + "verification": { + "d4_term_count": d4["term_count"], + "d4_group_count": d4["group_count"], + "d4_max_group_size": d4["max_group_size"], + "d4_cell_norm_upper": d4["cell_norm_upper"], + "d4_cell_norm_upper_decimal": _outward_upper(d4["cell_norm_upper"]), + "small_crosscheck": crosscheck, + }, + "fivefold_followup": { + "status": "not_certified", + "conditional_step_count": 78, + "conditional_group_exponentials": conditional_ratio[1], + "conditional_exact_ratio": conditional_ratio, + "conditional_ratio_decimal": _decimal(conditional_ratio), + "d5_term_count": d5["term_count"], + "d5_group_count": d5["group_count"], + "d5_site_density_upper": d5["site_bound"], + "d5_site_density_upper_decimal": _outward_upper(d5["site_bound"]), + "unresolved_proof_gates": [ + "translation-coupled D4 norm below the r=78 budget", + "explicit D8 and delayed high-degree tail certificate", + "complete exact global error ledger at r=78", + ], + "claim_boundary": "No 78-step global error certificate is claimed or supplied.", + }, + } + + +def render_summary_text(summary: Mapping[str, object]) -> str: + b = summary["benchmark"] + p = summary["published_baseline"] + r = summary["certified_result"] + i = summary["improvement"] + v = summary["verification"] + f = summary["fivefold_followup"] + s = summary["sources"] + return "\n".join(( + "ISSUE 128 FINAL RESULT SUMMARY", + "================================", + "", + f"BENCHMARK: {b['model']}", + f"LATTICE: L={b['length']}, N={b['sites']}", + f"NORMALIZATION: {b['normalization']}", + "TIME: T=1; OPERATOR-NORM TOLERANCE: 1e-6", + "", + f"PUBLISHED BASELINE: {p['steps']} steps, {p['group_exponentials']} groups, {p['bond_propagators']} bond propagators, {p['cnot_upper']} CNOT upper", + f"CERTIFIED RESULT: {i['decimal']}x", + f" {r['steps']} steps, {r['group_exponentials']} groups, {r['bond_propagators']} bond propagators, {r['cnot_upper']} CNOT upper", + f" exact ratio: {i['exact_ratio'][0]}/{i['exact_ratio'][1]}", + f" resource reduction: {i['resource_percent_removed']}", + f" 97-step error upper (outward decimal): {r['error_upper_decimal_outward']}", + f" 96-step error upper (outward decimal): {r['previous_step_error_upper_decimal_outward']}", + " integer boundary: 97 accepted; 96 rejected", + "", + f"EXACT D4: {v['d4_term_count']} terms, {v['d4_group_count']} groups, maximum size {v['d4_max_group_size']}, cell bound {v['d4_cell_norm_upper_decimal']}", + "", + "FIVEFOLD STATUS: NOT CERTIFIED", + f" conditional arithmetic only: r={f['conditional_step_count']}, groups={f['conditional_group_exponentials']}, ratio={f['conditional_ratio_decimal']}x", + f" verified D5 evidence: {f['d5_term_count']} terms, {f['d5_group_count']} groups, site bound {f['d5_site_density_upper_decimal']}", + f" {f['claim_boundary']}", + "", + "SOURCE BINDINGS", + f" main certificate SHA-256: {s['main_certificate']['sha256']}", + f" D4 sidecar SHA-256: {s['d4_sidecar']['sha256']}", + f" D5 sidecar SHA-256: {s['d5_sidecar']['sha256']}", + "", + )) + + +def _run(root: Path, arguments: list[str]) -> subprocess.CompletedProcess[str]: + environment = dict(os.environ) + environment["PYTHONPATH"] = "src" + return subprocess.run([sys.executable, *arguments], cwd=root, env=environment, capture_output=True, text=True) + + +def capture_verification(root: Path = ROOT) -> str: + root = root.resolve() + commit, timestamp = _git_provenance(root) + lines = [ + "ISSUE 128 VERIFICATION TRANSCRIPT", + "=================================", + f"source_commit_for_main_certificate: {commit}", + f"source_commit_timestamp: {timestamp}", + f"python: {platform.python_version()}", + f"platform: {platform.platform()}", + "", + ] + for arguments in ( + ["scripts/verify.py", CERTIFICATE.as_posix()], + ["scripts/build_d5_certificate.py", "--verify-only"], + ): + completed = _run(root, arguments) + display = "PYTHONPATH=src python " + " ".join(arguments) + lines.extend(( + f"$ {display}", + f"exit_code: {completed.returncode}", + "--- stdout ---", + completed.stdout.rstrip(), + "--- stderr ---", + completed.stderr.rstrip() or "(empty)", + "", + )) + if completed.returncode: + raise RuntimeError(f"verification command failed: {display}") + lines.extend(("OVERALL STATUS: PASS", "")) + return "\n".join(lines) + + +def write_delivery_files(root: Path = ROOT, output_dir: Path | None = None, *, capture: bool = True) -> set[Path]: + root = root.resolve() + destination = output_dir or root / "artifacts" + destination.mkdir(parents=True, exist_ok=True) + summary = build_summary(root) + json_path = destination / "issue128-summary.json" + text_path = destination / "issue128-summary.txt" + json_path.write_text(canonical_json(summary)) + text_path.write_text(render_summary_text(summary)) + written = {json_path, text_path} + if capture: + transcript = destination / "verification-transcript.txt" + transcript.write_text(capture_verification(root)) + written.add(transcript) + return written + + +def write_sha_manifest(root: Path = ROOT) -> Path: + root = root.resolve() + missing = [path.as_posix() for path in MANIFEST_PATHS if not (root / path).is_file()] + if missing: + raise FileNotFoundError("manifest inputs missing: " + ", ".join(missing)) + manifest = root / "artifacts/SHA256SUMS" + manifest.write_text("\n".join(f"{sha256_file(root / path)} {path.as_posix()}" for path in MANIFEST_PATHS) + "\n") + return manifest + + +def verify_sha_manifest(root: Path = ROOT) -> None: + root = root.resolve() + for line in (root / "artifacts/SHA256SUMS").read_text().splitlines(): + digest, relative = line.split(" ", 1) + require_equal(f"manifest digest for {relative}", sha256_file(root / relative), digest) + + +def check_delivery(root: Path = ROOT) -> None: + root = root.resolve() + summary = build_summary(root) + require_equal("summary JSON", (root / "artifacts/issue128-summary.json").read_text(), canonical_json(summary)) + require_equal("summary text", (root / "artifacts/issue128-summary.txt").read_text(), render_summary_text(summary)) + if "OVERALL STATUS: PASS" not in capture_verification(root): + raise ValueError("current verifier run did not pass") + if "OVERALL STATUS: PASS" not in (root / "artifacts/verification-transcript.txt").read_text(): + raise ValueError("committed verifier transcript did not pass") + verify_sha_manifest(root) + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--output-dir", type=Path) + parser.add_argument("--manifest", action="store_true") + parser.add_argument("--check", action="store_true") + arguments = parser.parse_args() + if arguments.check: + check_delivery(ROOT) + print("delivery_check=PASS") + return + written = write_delivery_files(ROOT, arguments.output_dir) + if arguments.manifest: + written.add(write_sha_manifest(ROOT)) + for path in sorted(written): + print(f"wrote={path}") + + +if __name__ == "__main__": + main() diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/reduce_d8_shards.py b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/reduce_d8_shards.py new file mode 100755 index 000000000..21dfbf35b --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/reduce_d8_shards.py @@ -0,0 +1,137 @@ +#!/usr/bin/env python3 +from __future__ import annotations + +import argparse +from decimal import Decimal, localcontext +from fractions import Fraction +import json +from pathlib import Path + +from trottercert.hpc_artifacts import ( + coordinate_terms_to_json, + merge_coordinate_series, + read_shard_gzip, + sha256_file, + write_manifest_atomic, + write_shard_gzip, +) +from trottercert.intervals import cube_root_four_interval + + +def _pair(value: Fraction) -> list[int]: + return [value.numerator, value.denominator] + + +def _decimal(value: Fraction, digits: int = 18) -> str: + with localcontext() as context: + context.prec = digits + return str(Decimal(value.numerator) / Decimal(value.denominator)) + + +def reduce_shards( + input_root: Path, + *, + expected_stages: int, + order: int, + output: Path, + summary_path: Path, +) -> dict[str, object]: + payloads: dict[int, dict[str, object]] = {} + commits: set[str] = set() + for stage in range(expected_stages): + cell = input_root / f"stage-{stage:02d}" + payload_path = cell / "shard.json.gz" + manifest_path = cell / "manifest.json" + if not payload_path.is_file() or not manifest_path.is_file(): + raise ValueError(f"missing shard or manifest for stage {stage}") + manifest = json.loads(manifest_path.read_text()) + if manifest.get("status") != "complete": + raise ValueError(f"stage {stage} manifest is not complete") + if manifest.get("output_sha256") != sha256_file(payload_path): + raise ValueError(f"stage {stage} payload digest mismatch") + payload = read_shard_gzip(payload_path) + if payload.get("stage_index") != stage: + raise ValueError(f"stage {stage} payload index mismatch") + if payload.get("stage_count") != expected_stages: + raise ValueError(f"stage {stage} stage-count mismatch") + if payload.get("order") != order: + raise ValueError(f"stage {stage} order mismatch") + if payload.get("formula_id") != "five_copy_suzuki_fourth_order_exact_cubic": + raise ValueError(f"stage {stage} formula mismatch") + series = payload.get("series") + if not isinstance(series, list) or len(series) != order + 1: + raise ValueError(f"stage {stage} series length mismatch") + commits.add(str(manifest.get("git_commit"))) + payloads[stage] = payload + if len(commits) != 1: + raise ValueError("shard manifests do not share one git commit") + + forward = merge_coordinate_series( + [payloads[index]["series"] for index in range(expected_stages)] + ) + reverse = merge_coordinate_series( + [payloads[index]["series"] for index in reversed(range(expected_stages))] + ) + if forward != reverse: + raise ArithmeticError("forward and reverse exact shard reductions differ") + root = cube_root_four_interval(30) + degree = forward[order] + cell_l1 = sum( + (coefficient.enclose(root).abs_upper() for coefficient in degree.values()), + Fraction(), + ) + site_l1 = cell_l1 / 4 + merged_payload = { + "schema_version": 1, + "kind": "issue128_exact_right_generator_degree", + "formula_id": "five_copy_suzuki_fourth_order_exact_cubic", + "source_commit": next(iter(commits)), + "source_stage_count": expected_stages, + "degree": order, + "terms": coordinate_terms_to_json(degree), + "cell_pauli_l1_upper": _pair(cell_l1), + "site_pauli_l1_upper": _pair(site_l1), + } + write_shard_gzip(output, merged_payload) + summary = { + "schema_version": 1, + "kind": "issue128_d8_reduction_summary", + "status": "complete", + "source_commit": next(iter(commits)), + "source_stage_count": expected_stages, + "order": order, + "degree_term_counts": { + str(index): len(terms) for index, terms in enumerate(forward) + }, + "cell_pauli_l1_upper": _pair(cell_l1), + "cell_pauli_l1_upper_decimal": _decimal(cell_l1), + "site_pauli_l1_upper": _pair(site_l1), + "site_pauli_l1_upper_decimal": _decimal(site_l1), + "output": output.name, + "output_sha256": sha256_file(output), + "reduction_order_check": "forward_equals_reverse", + } + write_manifest_atomic(summary_path, summary) + return summary + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--input-root", type=Path, required=True) + parser.add_argument("--expected-stages", type=int, default=31) + parser.add_argument("--order", type=int, default=8) + parser.add_argument("--output", type=Path, required=True) + parser.add_argument("--summary", type=Path, required=True) + arguments = parser.parse_args() + summary = reduce_shards( + arguments.input_root, + expected_stages=arguments.expected_stages, + order=arguments.order, + output=arguments.output, + summary_path=arguments.summary, + ) + print(json.dumps(summary, indent=2), flush=True) + + +if __name__ == "__main__": + main() diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/screen_matching_order.py b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/screen_matching_order.py new file mode 100755 index 000000000..c0e7ed0e8 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/screen_matching_order.py @@ -0,0 +1,69 @@ +#!/usr/bin/env python3 +from __future__ import annotations + +import argparse +from datetime import datetime, timezone +import json +import os +from pathlib import Path +import time + +from trottercert.matching_screen import screen_matching_order + + +def _write(path: Path, payload: dict[str, object]) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + temporary = path.with_name(path.name + ".tmp") + temporary.write_text(json.dumps(payload, sort_keys=True, separators=(",", ":")) + "\n") + temporary.replace(path) + + +def main() -> None: + parser = argparse.ArgumentParser(description="Rank the 24 matching-color orders") + parser.add_argument("--permutation-index", type=int, required=True) + parser.add_argument("--order", type=int, default=6) + parser.add_argument("--output", type=Path, required=True) + parser.add_argument("--manifest", type=Path, required=True) + args = parser.parse_args() + started = time.perf_counter() + running = { + "schema_version": 1, + "kind": "issue128_matching_order_screen_manifest", + "status": "running", + "trusted": False, + "purpose": "discovery-ranking", + "permutation_index": args.permutation_index, + "order": args.order, + "source_commit": os.environ.get("ISSUE128_SOURCE_COMMIT", "unrecorded"), + "started_at": datetime.now(timezone.utc).isoformat(), + } + _write(args.manifest, running) + try: + payload = screen_matching_order(args.permutation_index, args.order) + _write(args.output, payload) + _write( + args.manifest, + { + **running, + "status": "complete", + "wall_seconds": time.perf_counter() - started, + "completed_at": datetime.now(timezone.utc).isoformat(), + }, + ) + except BaseException as error: + _write( + args.manifest, + { + **running, + "status": "failed", + "wall_seconds": time.perf_counter() - started, + "error_type": type(error).__name__, + "error": str(error), + "completed_at": datetime.now(timezone.utc).isoformat(), + }, + ) + raise + + +if __name__ == "__main__": + main() diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/verify.py b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/verify.py new file mode 100644 index 000000000..b30967f72 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/scripts/verify.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python3 +from __future__ import annotations + +import argparse +import json + +from trottercert.verify import verify_certificate + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("certificate") + parser.add_argument( + "--deep", + action="store_true", + help="regenerate every local commutator and anticommuting proof term", + ) + arguments = parser.parse_args() + print( + json.dumps( + verify_certificate(arguments.certificate, deep=arguments.deep), + indent=2, + ) + ) + + +if __name__ == "__main__": + main() diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/__init__.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/__init__.py new file mode 100644 index 000000000..9110dc0e9 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/__init__.py @@ -0,0 +1,5 @@ +"""Exact tools for machine-checkable Trotter error research.""" + +from .algebra import PauliString, PauliSum, QComplex, commutator + +__all__ = ["PauliString", "PauliSum", "QComplex", "commutator"] diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/algebra.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/algebra.py new file mode 100644 index 000000000..ccd44ba32 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/algebra.py @@ -0,0 +1,308 @@ +from __future__ import annotations + +from dataclasses import dataclass +from fractions import Fraction +from functools import reduce +from typing import Iterable, Mapping + +import numpy as np + + +def _fraction(value: int | Fraction) -> Fraction: + return value if isinstance(value, Fraction) else Fraction(value) + + +@dataclass(frozen=True, slots=True) +class QComplex: + """A complex number with exact rational real and imaginary parts.""" + + real: Fraction = Fraction(0) + imag: Fraction = Fraction(0) + + def __init__( + self, real: int | Fraction = 0, imag: int | Fraction = 0 + ) -> None: + object.__setattr__(self, "real", _fraction(real)) + object.__setattr__(self, "imag", _fraction(imag)) + + @classmethod + def coerce(cls, value: QComplex | int | Fraction) -> QComplex: + return value if isinstance(value, cls) else cls(value) + + def __add__(self, other: QComplex | int | Fraction) -> QComplex: + rhs = self.coerce(other) + return QComplex(self.real + rhs.real, self.imag + rhs.imag) + + __radd__ = __add__ + + def __neg__(self) -> QComplex: + return QComplex(-self.real, -self.imag) + + def __sub__(self, other: QComplex | int | Fraction) -> QComplex: + return self + (-self.coerce(other)) + + def __rsub__(self, other: QComplex | int | Fraction) -> QComplex: + return self.coerce(other) - self + + def __mul__(self, other: QComplex | int | Fraction) -> QComplex: + rhs = self.coerce(other) + return QComplex( + self.real * rhs.real - self.imag * rhs.imag, + self.real * rhs.imag + self.imag * rhs.real, + ) + + __rmul__ = __mul__ + + def __truediv__(self, other: int | Fraction) -> QComplex: + divisor = _fraction(other) + return QComplex(self.real / divisor, self.imag / divisor) + + def conjugate(self) -> QComplex: + return QComplex(self.real, -self.imag) + + def abs_float(self) -> float: + return float(self.real * self.real + self.imag * self.imag) ** 0.5 + + def to_complex(self) -> complex: + return complex(float(self.real), float(self.imag)) + + def is_zero(self) -> bool: + return self.real == 0 and self.imag == 0 + + +_MUL: dict[tuple[str, str], tuple[QComplex, str]] = { + ("I", "I"): (QComplex(1), "I"), + ("I", "X"): (QComplex(1), "X"), + ("I", "Y"): (QComplex(1), "Y"), + ("I", "Z"): (QComplex(1), "Z"), + ("X", "I"): (QComplex(1), "X"), + ("Y", "I"): (QComplex(1), "Y"), + ("Z", "I"): (QComplex(1), "Z"), + ("X", "X"): (QComplex(1), "I"), + ("Y", "Y"): (QComplex(1), "I"), + ("Z", "Z"): (QComplex(1), "I"), + ("X", "Y"): (QComplex(0, 1), "Z"), + ("Y", "Z"): (QComplex(0, 1), "X"), + ("Z", "X"): (QComplex(0, 1), "Y"), + ("Y", "X"): (QComplex(0, -1), "Z"), + ("Z", "Y"): (QComplex(0, -1), "X"), + ("X", "Z"): (QComplex(0, -1), "Y"), +} + + +@dataclass(frozen=True, order=True, slots=True) +class PauliString: + """A phase-free tensor-product Pauli string.""" + + ops: tuple[tuple[int, str], ...] = () + + def __init__(self, ops: Mapping[int, str] | Iterable[tuple[int, str]] = ()) -> None: + items = ops.items() if isinstance(ops, Mapping) else ops + canonical: dict[int, str] = {} + for site, op in items: + if site < 0: + raise ValueError("site indices must be nonnegative") + if op not in {"I", "X", "Y", "Z"}: + raise ValueError(f"invalid Pauli operator {op!r}") + if op != "I": + canonical[int(site)] = op + object.__setattr__(self, "ops", tuple(sorted(canonical.items()))) + + def as_dict(self) -> dict[int, str]: + return dict(self.ops) + + @property + def support(self) -> frozenset[int]: + return frozenset(site for site, _ in self.ops) + + def multiply(self, other: PauliString) -> tuple[QComplex, PauliString]: + left_index = right_index = 0 + phase_exponent = 0 + result: list[tuple[int, str]] = [] + while left_index < len(self.ops) or right_index < len(other.ops): + if right_index >= len(other.ops) or ( + left_index < len(self.ops) + and self.ops[left_index][0] < other.ops[right_index][0] + ): + result.append(self.ops[left_index]) + left_index += 1 + continue + if left_index >= len(self.ops) or ( + other.ops[right_index][0] < self.ops[left_index][0] + ): + result.append(other.ops[right_index]) + right_index += 1 + continue + site = self.ops[left_index][0] + left_op = self.ops[left_index][1] + right_op = other.ops[right_index][1] + local_phase, op = _MUL[(left_op, right_op)] + if local_phase.imag == 1: + phase_exponent += 1 + elif local_phase.imag == -1: + phase_exponent += 3 + elif local_phase.real == -1: + phase_exponent += 2 + if op != "I": + result.append((site, op)) + left_index += 1 + right_index += 1 + phases = (QComplex(1), QComplex(0, 1), QComplex(-1), QComplex(0, -1)) + return phases[phase_exponent % 4], PauliString(result) + + +class PauliSum: + """A finite exact Gaussian-rational linear combination of Pauli strings.""" + + def __init__( + self, + terms: Mapping[PauliString, QComplex | int | Fraction] | None = None, + ) -> None: + self.terms: dict[PauliString, QComplex] = {} + for pauli, coefficient in (terms or {}).items(): + self._accumulate(pauli, QComplex.coerce(coefficient)) + + @classmethod + def term( + cls, + pauli: PauliString, + coefficient: QComplex | int | Fraction = 1, + ) -> PauliSum: + return cls({pauli: coefficient}) + + @classmethod + def identity(cls, coefficient: QComplex | int | Fraction = 1) -> PauliSum: + return cls.term(PauliString(), coefficient) + + @classmethod + def zero(cls) -> PauliSum: + return cls() + + def copy(self) -> PauliSum: + return PauliSum(self.terms) + + def _accumulate(self, pauli: PauliString, coefficient: QComplex) -> None: + updated = self.terms.get(pauli, QComplex()) + coefficient + if updated.is_zero(): + self.terms.pop(pauli, None) + else: + self.terms[pauli] = updated + + def __add__(self, other: PauliSum) -> PauliSum: + result = self.copy() + for pauli, coefficient in other.terms.items(): + result._accumulate(pauli, coefficient) + return result + + def __sub__(self, other: PauliSum) -> PauliSum: + return self + (-other) + + def __neg__(self) -> PauliSum: + return self.scale(-1) + + def scale(self, coefficient: QComplex | int | Fraction) -> PauliSum: + scalar = QComplex.coerce(coefficient) + return PauliSum({p: scalar * c for p, c in self.terms.items()}) + + def __mul__(self, other: PauliSum | QComplex | int | Fraction) -> PauliSum: + if not isinstance(other, PauliSum): + return self.scale(other) + result = PauliSum.zero() + for left, left_coefficient in self.terms.items(): + for right, right_coefficient in other.terms.items(): + phase, pauli = left.multiply(right) + result._accumulate(pauli, left_coefficient * right_coefficient * phase) + return result + + def __rmul__(self, other: QComplex | int | Fraction) -> PauliSum: + return self.scale(other) + + def dagger(self) -> PauliSum: + return PauliSum({p: c.conjugate() for p, c in self.terms.items()}) + + def is_hermitian(self) -> bool: + return self.terms == self.dagger().terms + + def pauli_l1(self) -> float: + return sum(coefficient.abs_float() for coefficient in self.terms.values()) + + def exact_real_l1(self) -> Fraction: + total = Fraction() + for coefficient in self.terms.values(): + if coefficient.imag != 0: + raise ValueError("exact_real_l1 requires real coefficients") + total += abs(coefficient.real) + return total + + def exact_axis_l1(self) -> Fraction: + """Exact l1 norm when every coefficient is purely real or imaginary.""" + + total = Fraction() + for coefficient in self.terms.values(): + if coefficient.real and coefficient.imag: + raise ValueError("coefficient modulus is irrational in general") + total += abs(coefficient.real) + abs(coefficient.imag) + return total + + def __eq__(self, other: object) -> bool: + return isinstance(other, PauliSum) and self.terms == other.terms + + def __bool__(self) -> bool: + return bool(self.terms) + + +def commutator(left: PauliSum, right: PauliSum) -> PauliSum: + result = PauliSum.zero() + for left_pauli, left_coefficient in left.terms.items(): + for right_pauli, right_coefficient in right.terms.items(): + if pauli_strings_commute(left_pauli, right_pauli): + continue + phase, product = left_pauli.multiply(right_pauli) + result._accumulate( + product, + QComplex(2) * left_coefficient * right_coefficient * phase, + ) + return result + + +def pauli_strings_commute(left: PauliString, right: PauliString) -> bool: + left_index = right_index = 0 + parity = 0 + while left_index < len(left.ops) and right_index < len(right.ops): + left_site, left_op = left.ops[left_index] + right_site, right_op = right.ops[right_index] + if left_site < right_site: + left_index += 1 + elif right_site < left_site: + right_index += 1 + else: + if left_op != right_op: + parity ^= 1 + left_index += 1 + right_index += 1 + if parity and ( + left_index >= len(left.ops) or right_index >= len(right.ops) + ): + break + return parity == 0 + + +_DENSE = { + "I": np.eye(2, dtype=complex), + "X": np.array([[0, 1], [1, 0]], dtype=complex), + "Y": np.array([[0, -1j], [1j, 0]], dtype=complex), + "Z": np.array([[1, 0], [0, -1]], dtype=complex), +} + + +def to_dense(operator: PauliSum, n_qubits: int) -> np.ndarray: + if n_qubits < 0: + raise ValueError("n_qubits must be nonnegative") + dimension = 1 << n_qubits + result = np.zeros((dimension, dimension), dtype=complex) + for pauli, coefficient in operator.terms.items(): + local = pauli.as_dict() + factors = [_DENSE[local.get(site, "I")] for site in range(n_qubits)] + matrix = reduce(np.kron, factors, np.array([[1]], dtype=complex)) + result += coefficient.to_complex() * matrix + return result diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/anticommuting.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/anticommuting.py new file mode 100644 index 000000000..d2053a66f --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/anticommuting.py @@ -0,0 +1,149 @@ +from __future__ import annotations + +from collections.abc import Mapping, Sequence +from dataclasses import dataclass +from fractions import Fraction +from math import isqrt + +from .intervals import RationalInterval +from .local_commutators import SymplecticPauli + + +@dataclass(frozen=True) +class AnticommutingGroupCertificate: + term_indices: tuple[int, ...] + bound: Fraction + + +@dataclass(frozen=True) +class AnticommutingPartitionCertificate: + paulis: tuple[SymplecticPauli, ...] + coefficients: tuple[RationalInterval, ...] + groups: tuple[AnticommutingGroupCertificate, ...] + bound: Fraction + + +def symplectic_anticommutes( + left: SymplecticPauli, + right: SymplecticPauli, +) -> bool: + left_x, left_z = left + right_x, right_z = right + return bool( + ( + (left_x & right_z).bit_count() + + (left_z & right_x).bit_count() + ) + & 1 + ) + + +def sqrt_fraction_upper( + value: Fraction, + *, + decimal_places: int = 30, +) -> Fraction: + if value < 0: + raise ValueError("cannot bound the square root of a negative value") + if decimal_places < 0: + raise ValueError("decimal places must be nonnegative") + if value == 0: + return Fraction() + scale = 10**decimal_places + quotient = value.numerator * scale * scale // value.denominator + root = isqrt(quotient) + candidate = Fraction(root, scale) + if candidate * candidate < value: + candidate = Fraction(root + 1, scale) + if candidate * candidate < value: + raise ArithmeticError("outward square-root rounding failed") + return candidate + + +def discover_anticommuting_partition( + coefficients: Mapping[SymplecticPauli, RationalInterval], + *, + max_group_size: int = 10, +) -> tuple[tuple[SymplecticPauli, ...], ...]: + if max_group_size < 1: + raise ValueError("maximum group size must be positive") + ordered = tuple( + sorted( + coefficients, + key=lambda pauli: ( + -float(coefficients[pauli].abs_upper()), + pauli, + ), + ) + ) + used: set[SymplecticPauli] = set() + groups: list[tuple[SymplecticPauli, ...]] = [] + for position, pauli in enumerate(ordered): + if pauli in used: + continue + group = [pauli] + used.add(pauli) + for candidate in ordered[position + 1 :]: + if candidate in used: + continue + if all( + symplectic_anticommutes(candidate, member) + for member in group + ): + group.append(candidate) + used.add(candidate) + if len(group) == max_group_size: + break + groups.append(tuple(group)) + return tuple(groups) + + +def certify_anticommuting_partition( + coefficients: Mapping[SymplecticPauli, RationalInterval], + groups: Sequence[Sequence[SymplecticPauli]], + *, + sqrt_decimal_places: int = 30, +) -> AnticommutingPartitionCertificate: + paulis = tuple(sorted(coefficients)) + index = {pauli: offset for offset, pauli in enumerate(paulis)} + flattened = tuple(pauli for group in groups for pauli in group) + if len(flattened) != len(set(flattened)): + raise ValueError("partition coverage contains duplicate terms") + if set(flattened) != set(paulis): + raise ValueError("partition coverage differs from coefficient map") + + certified_groups: list[AnticommutingGroupCertificate] = [] + for group in groups: + if not group: + raise ValueError("anticommuting group must be nonempty") + for left_position, left in enumerate(group): + for right in group[left_position + 1 :]: + if not symplectic_anticommutes(left, right): + raise ValueError("group members do not anticommute") + squared = sum( + ( + coefficients[pauli].abs_upper() ** 2 + for pauli in group + ), + Fraction(), + ) + bound = sqrt_fraction_upper( + squared, + decimal_places=sqrt_decimal_places, + ) + certified_groups.append( + AnticommutingGroupCertificate( + tuple(index[pauli] for pauli in group), + bound, + ) + ) + + return AnticommutingPartitionCertificate( + paulis=paulis, + coefficients=tuple(coefficients[pauli] for pauli in paulis), + groups=tuple(certified_groups), + bound=sum( + (group.bound for group in certified_groups), + Fraction(), + ), + ) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/baseline.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/baseline.py new file mode 100644 index 000000000..e5b1923e2 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/baseline.py @@ -0,0 +1,48 @@ +from __future__ import annotations + +from dataclasses import dataclass +from fractions import Fraction +from typing import Callable, Sequence + +from .algebra import PauliSum, commutator + + +@dataclass(frozen=True) +class StrangCommutatorBlock: + fragment_index: int + repeated_fragment: PauliSum + repeated_tail: PauliSum + + +def _sum_ops(operators: Sequence[PauliSum]) -> PauliSum: + result = PauliSum.zero() + for operator in operators: + result += operator + return result + + +def strang_commutator_operators( + fragments: Sequence[PauliSum], +) -> tuple[StrangCommutatorBlock, ...]: + if len(fragments) < 2: + raise ValueError("Strang formula requires at least two fragments") + blocks: list[StrangCommutatorBlock] = [] + for index in range(len(fragments) - 1): + current = fragments[index] + tail = _sum_ops(fragments[index + 1 :]) + blocks.append( + StrangCommutatorBlock( + fragment_index=index, + repeated_fragment=commutator(current, commutator(current, tail)), + repeated_tail=commutator(tail, commutator(tail, current)), + ) + ) + return tuple(blocks) + + +def pauli_l1_second_order_constant(fragments: Sequence[PauliSum]) -> Fraction: + total = Fraction() + for block in strang_commutator_operators(fragments): + total += Fraction(1, 24) * block.repeated_fragment.exact_real_l1() + total += Fraction(1, 12) * block.repeated_tail.exact_real_l1() + return total diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/clusters.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/clusters.py new file mode 100644 index 000000000..72a49a61b --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/clusters.py @@ -0,0 +1,520 @@ +from __future__ import annotations + +from dataclasses import dataclass +from fractions import Fraction +from math import isqrt +from math import lcm + +import numpy as np + +from .algebra import PauliString, PauliSum, QComplex, pauli_strings_commute +from .orbits import TranslationOrbit, embed_grid_op +from .lattice import SquareLattice +from .orbits import translation_orbits + + +@dataclass(frozen=True) +class ClusterPlacement: + orbit_index: int + offsets: tuple[tuple[int, int], ...] + weights: tuple[Fraction, ...] + + def validate(self) -> None: + if not self.offsets or len(self.offsets) != len(self.weights): + raise ValueError("placement offsets and weights must be nonempty and aligned") + if any(weight < 0 for weight in self.weights): + raise ValueError("cluster weights must be nonnegative") + if sum(self.weights, Fraction()) != 1: + raise ValueError("weights for each translation orbit must sum to one") + + +@dataclass(frozen=True) +class ClusterCertificate: + width: int + height: int + placements: tuple[ClusterPlacement, ...] + operator: PauliSum + row_sum_bound: Fraction + + +@dataclass(frozen=True) +class PartitionedOperatorCertificate: + unit_cell: tuple[int, int] + n_cells: int + horizontal: ClusterCertificate + vertical: ClusterCertificate + global_bound: Fraction + + +@dataclass(frozen=True) +class FullPatchOperatorCertificate: + unit_cell: tuple[int, int] + n_cells: int + cluster_operator: PauliSum + placements: tuple[ClusterPlacement, ...] + density_bound: Fraction + global_bound: Fraction + + +@dataclass(frozen=True) +class CollatzCertificate: + denominator: int + vector: tuple[int, ...] + max_numerator: int + max_denominator_component: int + bound: Fraction + + +@dataclass(frozen=True) +class AnticommutingCertificate: + groups: tuple[tuple[PauliString, ...], ...] + bound: Fraction + + +@dataclass(frozen=True) +class PhasePartitionedCertificate: + unit_cell: tuple[int, int] + n_cells: int + phase_bounds: tuple[tuple[tuple[int, int], CollatzCertificate], ...] + global_bound: Fraction + + +def uniform_cluster_operator( + orbits: tuple[TranslationOrbit, ...], + width: int, + height: int, +) -> tuple[PauliSum, tuple[ClusterPlacement, ...]]: + cluster = PauliSum.zero() + placements: list[ClusterPlacement] = [] + for orbit_index, orbit in enumerate(orbits): + if orbit.width > width or orbit.height > height: + raise ValueError( + f"orbit {orbit_index} with {orbit.width}x{orbit.height} support " + f"does not fit {width}x{height} patch" + ) + step_x, step_y = orbit.unit_cell + offsets = tuple( + (dx, dy) + for dy in range(0, height - orbit.height + 1, step_y) + for dx in range(0, width - orbit.width + 1, step_x) + ) + if not offsets: + raise ValueError(f"orbit {orbit_index} has no unit-cell-aligned placement") + weight = Fraction(1, len(offsets)) + weights = tuple(weight for _ in offsets) + placement = ClusterPlacement(orbit_index, offsets, weights) + placement.validate() + placements.append(placement) + for (dx, dy), local_weight in zip(offsets, weights): + cluster += PauliSum.term( + embed_grid_op(orbit.representative, width, dx, dy), + orbit.coefficient * local_weight, + ) + return cluster, tuple(placements) + + +def _sqrt_fraction_upper(value: Fraction, decimal_places: int = 30) -> Fraction: + if value < 0: + raise ValueError("cannot bound square root of negative value") + if value == 0: + return Fraction() + scale = 10**decimal_places + quotient = (value.numerator * scale * scale) // value.denominator + root = isqrt(quotient) + if Fraction(root * root, scale * scale) < value: + root += 1 + return Fraction(root, scale) + + +def paulis_anticommute(left: PauliString, right: PauliString) -> bool: + return not pauli_strings_commute(left, right) + + +def greedy_anticommuting_certificate(operator: PauliSum) -> AnticommutingCertificate: + if any(coefficient.imag for coefficient in operator.terms.values()): + raise ValueError("anticommuting certificate currently requires real coefficients") + ordered = sorted( + operator.terms, + key=lambda pauli: ( + -abs(operator.terms[pauli].real), + pauli, + ), + ) + masks: dict[PauliString, tuple[int, int]] = {} + for pauli in ordered: + x_mask = z_mask = 0 + for site, op in pauli.ops: + bit = 1 << site + if op in {"X", "Y"}: + x_mask |= bit + if op in {"Z", "Y"}: + z_mask |= bit + masks[pauli] = (x_mask, z_mask) + + def fast_anticommutes(left: PauliString, right: PauliString) -> bool: + left_x, left_z = masks[left] + right_x, right_z = masks[right] + return bool( + ((left_x & right_z).bit_count() + (left_z & right_x).bit_count()) + & 1 + ) + + groups: list[list[PauliString]] = [] + for pauli in ordered: + compatible = [ + index + for index, group in enumerate(groups) + if all(fast_anticommutes(pauli, member) for member in group) + ] + if compatible: + # Prefer the largest compatible group to reduce the number of + # triangle inequalities deterministically. + selected = max(compatible, key=lambda index: (len(groups[index]), -index)) + groups[selected].append(pauli) + else: + groups.append([pauli]) + bound = Fraction() + for group in groups: + squared = sum( + (operator.terms[pauli].real ** 2 for pauli in group), + Fraction(), + ) + bound += _sqrt_fraction_upper(squared) + return AnticommutingCertificate( + groups=tuple(tuple(group) for group in groups), + bound=bound, + ) + + +def computational_row_sum_bound(operator: PauliSum, n_qubits: int) -> Fraction: + """Rigorous max absolute row-sum bound using exact merged amplitudes.""" + + if n_qubits > 16: + raise ValueError("row enumeration is restricted to at most 16 qubits") + best = Fraction() + parsed = [] + for pauli, coefficient in operator.terms.items(): + flip_mask = 0 + z_sites: list[int] = [] + y_sites: list[int] = [] + for site, op in pauli.ops: + if op in {"X", "Y"}: + flip_mask |= 1 << (n_qubits - 1 - site) + if op == "Z": + z_sites.append(site) + elif op == "Y": + y_sites.append(site) + parsed.append((flip_mask, tuple(z_sites), tuple(y_sites), coefficient)) + + for basis in range(1 << n_qubits): + amplitudes: dict[int, QComplex] = {} + for flip_mask, z_sites, y_sites, coefficient in parsed: + phase = QComplex(1) + for site in z_sites: + bit = (basis >> (n_qubits - 1 - site)) & 1 + if bit: + phase = -phase + for site in y_sites: + bit = (basis >> (n_qubits - 1 - site)) & 1 + phase *= QComplex(0, -1 if bit else 1) + target = basis ^ flip_mask + amplitudes[target] = amplitudes.get(target, QComplex()) + coefficient * phase + row = Fraction() + for amplitude in amplitudes.values(): + squared = amplitude.real**2 + amplitude.imag**2 + row += _sqrt_fraction_upper(squared) + best = max(best, row) + return best + + +def computational_row_taxicab_bound(operator: PauliSum, n_qubits: int) -> Fraction: + """Fast exact row bound using ``|z| <= |Re z| + |Im z|``. + + Coefficients are lifted to a common integer denominator. Amplitudes with + the same computational-basis transition are merged exactly using int64 + arrays, retaining cancellations before the taxicab inequality. + """ + + if n_qubits > 20: + raise ValueError("taxicab row enumeration is restricted to at most 20 qubits") + denominator = 1 + for coefficient in operator.terms.values(): + denominator = lcm( + denominator, + coefficient.real.denominator, + coefficient.imag.denominator, + ) + grouped: dict[int, list[tuple[int, int, int, int]]] = {} + max_scaled = 0 + for pauli, coefficient in operator.terms.items(): + flip_mask = 0 + phase_mask = 0 + n_y = 0 + for site, op in pauli.ops: + bit_mask = 1 << (n_qubits - 1 - site) + if op in {"X", "Y"}: + flip_mask |= bit_mask + if op in {"Z", "Y"}: + phase_mask |= bit_mask + if op == "Y": + n_y += 1 + real = coefficient.real.numerator * ( + denominator // coefficient.real.denominator + ) + imag = coefficient.imag.numerator * ( + denominator // coefficient.imag.denominator + ) + phase = n_y % 4 + if phase == 1: + real, imag = -imag, real + elif phase == 2: + real, imag = -real, -imag + elif phase == 3: + real, imag = imag, -real + max_scaled += abs(real) + abs(imag) + grouped.setdefault(flip_mask, []).append((phase_mask, real, imag, n_y)) + if max_scaled >= np.iinfo(np.int64).max // max(1, len(operator.terms)): + raise OverflowError("scaled exact amplitudes exceed int64 safety margin") + + size = 1 << n_qubits + indices = np.arange(size, dtype=np.uint64) + parity = np.fromiter( + ((index.bit_count() & 1) for index in range(size)), + dtype=np.int8, + count=size, + ) + row_sums = np.zeros(size, dtype=np.int64) + for terms in grouped.values(): + real_amplitude = np.zeros(size, dtype=np.int64) + imag_amplitude = np.zeros(size, dtype=np.int64) + for phase_mask, real, imag, _ in terms: + signs = 1 - 2 * parity[np.bitwise_and(indices, phase_mask)] + real_amplitude += real * signs + imag_amplitude += imag * signs + row_sums += np.abs(real_amplitude) + np.abs(imag_amplitude) + return Fraction(int(row_sums.max()), denominator) + + +def _taxicab_transition_groups( + operator: PauliSum, + n_qubits: int, +) -> tuple[int, tuple[tuple[int, np.ndarray], ...]]: + denominator = 1 + for coefficient in operator.terms.values(): + denominator = lcm( + denominator, + coefficient.real.denominator, + coefficient.imag.denominator, + ) + grouped: dict[int, list[tuple[int, int, int]]] = {} + for pauli, coefficient in operator.terms.items(): + flip_mask = 0 + phase_mask = 0 + n_y = 0 + for site, op in pauli.ops: + bit_mask = 1 << (n_qubits - 1 - site) + if op in {"X", "Y"}: + flip_mask |= bit_mask + if op in {"Z", "Y"}: + phase_mask |= bit_mask + if op == "Y": + n_y += 1 + real = coefficient.real.numerator * ( + denominator // coefficient.real.denominator + ) + imag = coefficient.imag.numerator * ( + denominator // coefficient.imag.denominator + ) + phase = n_y % 4 + if phase == 1: + real, imag = -imag, real + elif phase == 2: + real, imag = -real, -imag + elif phase == 3: + real, imag = imag, -real + grouped.setdefault(flip_mask, []).append((phase_mask, real, imag)) + + size = 1 << n_qubits + indices = np.arange(size, dtype=np.uint64) + parity = np.fromiter( + ((index.bit_count() & 1) for index in range(size)), + dtype=np.int8, + count=size, + ) + transitions: list[tuple[int, np.ndarray]] = [] + for flip_mask, terms in grouped.items(): + real_amplitude = np.zeros(size, dtype=np.int64) + imag_amplitude = np.zeros(size, dtype=np.int64) + for phase_mask, real, imag in terms: + signs = 1 - 2 * parity[np.bitwise_and(indices, phase_mask)] + real_amplitude += real * signs + imag_amplitude += imag * signs + values = np.abs(real_amplitude) + np.abs(imag_amplitude) + transitions.append((flip_mask, values)) + return denominator, tuple(transitions) + + +def collatz_taxicab_certificate( + operator: PauliSum, + n_qubits: int, + *, + iterations: int = 40, + quantization: int = 10**9, +) -> CollatzCertificate: + """Certify the taxicab comparison-matrix norm by Collatz--Wielandt.""" + + denominator, transitions = _taxicab_transition_groups(operator, n_qubits) + size = 1 << n_qubits + indices = np.arange(size, dtype=np.uint64) + vector = np.ones(size, dtype=np.float64) + for _ in range(iterations): + updated = np.zeros(size, dtype=np.float64) + for flip_mask, values in transitions: + updated += values * vector[np.bitwise_xor(indices, flip_mask)] + maximum = float(updated.max()) + if maximum == 0: + return CollatzCertificate( + denominator, tuple([1] * size), 0, 1, Fraction() + ) + vector = updated / maximum + vector += np.finfo(np.float64).eps + integer_vector = np.maximum(1, np.rint(vector * quantization)).astype(np.int64) + + applied = np.zeros(size, dtype=np.int64) + for flip_mask, values in transitions: + contribution = values * integer_vector[np.bitwise_xor(indices, flip_mask)] + if np.any(contribution < 0): + raise OverflowError("integer overflow in Collatz verification") + applied += contribution + if np.any(applied < 0): + raise OverflowError("integer overflow in Collatz verification") + + best_index = max( + range(size), + key=lambda index: Fraction(int(applied[index]), int(integer_vector[index])), + ) + numerator = int(applied[best_index]) + vector_component = int(integer_vector[best_index]) + bound = Fraction(numerator, denominator * vector_component) + return CollatzCertificate( + denominator=denominator, + vector=tuple(int(value) for value in integer_vector), + max_numerator=numerator, + max_denominator_component=vector_component, + bound=bound, + ) + + +def phase_partitioned_collatz_certificate( + operator: PauliSum, + lattice: SquareLattice, + unit_cell: tuple[int, int] = (2, 2), + *, + iterations: int = 35, +) -> PhasePartitionedCertificate: + """Use separate patch origins for distinct colored unit-cell phases.""" + + orbits = translation_orbits(operator, lattice, unit_cell=unit_cell) + grouped: dict[tuple[int, int], list[TranslationOrbit]] = {} + for orbit in orbits: + min_x = min(x for x, _, _ in orbit.representative) + min_y = min(y for _, y, _ in orbit.representative) + phase = (min_x % unit_cell[0], min_y % unit_cell[1]) + normalized = tuple( + (x - phase[0], y - phase[1], op) + for x, y, op in orbit.representative + ) + grouped.setdefault(phase, []).append( + TranslationOrbit( + normalized, + orbit.coefficient, + orbit.members, + orbit.unit_cell, + orbit.global_coefficient, + orbit.stabilizer, + ) + ) + phase_bounds: list[tuple[tuple[int, int], CollatzCertificate]] = [] + density_sum = Fraction() + for phase in sorted(grouped): + cluster, _ = uniform_cluster_operator(tuple(grouped[phase]), 4, 4) + certificate = collatz_taxicab_certificate( + cluster, 16, iterations=iterations + ) + phase_bounds.append((phase, certificate)) + density_sum += certificate.bound + step_x, step_y = unit_cell + n_cells = (lattice.length // step_x) * (lattice.length // step_y) + return PhasePartitionedCertificate( + unit_cell, + n_cells, + tuple(phase_bounds), + n_cells * density_sum, + ) + + +def build_uniform_cluster_certificate( + orbits: tuple[TranslationOrbit, ...], + width: int, + height: int, +) -> ClusterCertificate: + operator, placements = uniform_cluster_operator(orbits, width, height) + bound = computational_row_sum_bound(operator, width * height) + return ClusterCertificate(width, height, placements, operator, bound) + + +def build_partitioned_operator_certificate( + operator: PauliSum, + lattice: SquareLattice, + unit_cell: tuple[int, int] = (2, 2), +) -> PartitionedOperatorCertificate: + """Certify a colored translation-invariant range-three operator. + + Horizontal/diagonal-support representatives with ``width >= height`` use + a 4x3 patch; the others use a 3x4 patch. Splitting costs one triangle + inequality but keeps each exact row enumeration at 12 qubits. + """ + + orbits = translation_orbits(operator, lattice, unit_cell=unit_cell) + horizontal_orbits = tuple( + orbit for orbit in orbits if orbit.width >= orbit.height + ) + vertical_orbits = tuple( + orbit for orbit in orbits if orbit.width < orbit.height + ) + horizontal = build_uniform_cluster_certificate(horizontal_orbits, 4, 3) + vertical = build_uniform_cluster_certificate(vertical_orbits, 3, 4) + step_x, step_y = unit_cell + n_cells = (lattice.length // step_x) * (lattice.length // step_y) + global_bound = n_cells * ( + horizontal.row_sum_bound + vertical.row_sum_bound + ) + return PartitionedOperatorCertificate( + unit_cell, + n_cells, + horizontal, + vertical, + global_bound, + ) + + +def build_full_patch_operator_certificate( + operator: PauliSum, + lattice: SquareLattice, + unit_cell: tuple[int, int] = (2, 2), + patch: tuple[int, int] = (4, 4), +) -> FullPatchOperatorCertificate: + orbits = translation_orbits(operator, lattice, unit_cell=unit_cell) + width, height = patch + cluster, placements = uniform_cluster_operator(orbits, width, height) + density_bound = computational_row_taxicab_bound(cluster, width * height) + step_x, step_y = unit_cell + n_cells = (lattice.length // step_x) * (lattice.length // step_y) + return FullPatchOperatorCertificate( + unit_cell, + n_cells, + cluster, + placements, + density_bound, + n_cells * density_bound, + ) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/crosscheck.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/crosscheck.py new file mode 100644 index 000000000..6bd05747c --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/crosscheck.py @@ -0,0 +1,62 @@ +from __future__ import annotations + +from fractions import Fraction + +import numpy as np +from scipy.linalg import expm + +from .algebra import to_dense +from .hamiltonian import four_matching_fragments, fragment_from_bonds +from .higher_order import fourth_order_suzuki_stages +from .lattice import SquareLattice +# A short outward-rounded summary of the schema-v3 bound at N=144, r=97. +# The exact rational value remains in certificates/issue128-certificate.json. +REFINED_BOUND_N144 = Fraction(996, 10**9) +REFINED_STEPS = 97 + + +def small_exact_crosscheck( + length: int, + tolerance: Fraction, +) -> dict[str, object]: + if length == 2: + groups = ( + ((0, 1), (2, 3)), + ((0, 1), (2, 3)), + ((0, 2), (1, 3)), + ((0, 2), (1, 3)), + ) + fragments = tuple(fragment_from_bonds(group) for group in groups) + n_sites = 4 + else: + lattice = SquareLattice(length) + fragments = four_matching_fragments(lattice) + n_sites = lattice.n_sites + matrices = [to_dense(fragment, n_sites) for fragment in fragments] + hamiltonian = sum(matrices, np.zeros_like(matrices[0])) + steps = REFINED_STEPS + delta = 1 / steps + one_step = np.eye(1 << n_sites, dtype=np.complex128) + for stage in fourth_order_suzuki_stages(4): + one_step = one_step @ expm( + -1j * float(stage.coefficient) * delta * matrices[stage.fragment_index] + ) + approximation = np.linalg.matrix_power(one_step, steps) + exact = expm(-1j * hamiltonian) + error = float(np.linalg.norm(approximation - exact, ord=2)) + bound = float(REFINED_BOUND_N144 * Fraction(n_sites, 144)) + return { + "length": length, + "n_sites": n_sites, + "model_note": ( + "degenerate 2x2 periodic algebra sanity check for schema-v3 r=97" + if length == 2 + else "periodic square lattice" + ), + "steps": steps, + "empirical_operator_norm_error": error, + "certified_upper_bound": bound, + "requested_tolerance": float(tolerance), + "bound_dominates_empirical_error": bound >= error, + "bound_meets_tolerance": bound <= float(tolerance), + } diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/cubic_field.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/cubic_field.py new file mode 100644 index 000000000..c4c7f1154 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/cubic_field.py @@ -0,0 +1,163 @@ +from __future__ import annotations + +from dataclasses import dataclass +from fractions import Fraction +from typing import Sequence + +from .intervals import RationalInterval + + +Rational = int | Fraction + + +@dataclass(frozen=True, slots=True) +class Cubic: + """An exact element of ``Q[alpha] / (alpha**3 - 4)``.""" + + a0: Fraction + a1: Fraction + a2: Fraction + + def __init__(self, a0: Rational, a1: Rational, a2: Rational) -> None: + object.__setattr__(self, "a0", Fraction(a0)) + object.__setattr__(self, "a1", Fraction(a1)) + object.__setattr__(self, "a2", Fraction(a2)) + + @classmethod + def zero(cls) -> Cubic: + return cls(0, 0, 0) + + @classmethod + def one(cls) -> Cubic: + return cls(1, 0, 0) + + @classmethod + def coerce(cls, value: Cubic | Rational) -> Cubic: + if isinstance(value, cls): + return value + if isinstance(value, (int, Fraction)): + return cls(value, 0, 0) + raise TypeError(f"cannot coerce {type(value).__name__} to Cubic") + + def __add__(self, other: Cubic | Rational) -> Cubic: + rhs = self.coerce(other) + return Cubic( + self.a0 + rhs.a0, + self.a1 + rhs.a1, + self.a2 + rhs.a2, + ) + + __radd__ = __add__ + + def __neg__(self) -> Cubic: + return Cubic(-self.a0, -self.a1, -self.a2) + + def __sub__(self, other: Cubic | Rational) -> Cubic: + return self + (-self.coerce(other)) + + def __rsub__(self, other: Cubic | Rational) -> Cubic: + return self.coerce(other) - self + + def __mul__(self, other: Cubic | Rational) -> Cubic: + rhs = self.coerce(other) + return Cubic( + self.a0 * rhs.a0 + + 4 * (self.a1 * rhs.a2 + self.a2 * rhs.a1), + self.a0 * rhs.a1 + + self.a1 * rhs.a0 + + 4 * self.a2 * rhs.a2, + self.a0 * rhs.a2 + self.a1 * rhs.a1 + self.a2 * rhs.a0, + ) + + __rmul__ = __mul__ + + def __truediv__(self, other: Rational) -> Cubic: + denominator = Fraction(other) + if denominator == 0: + raise ZeroDivisionError("division by zero") + return Cubic( + self.a0 / denominator, + self.a1 / denominator, + self.a2 / denominator, + ) + + def __pow__(self, exponent: int) -> Cubic: + if not isinstance(exponent, int): + raise TypeError("Cubic exponent must be an integer") + if exponent < 0: + raise ValueError("negative Cubic powers are not implemented") + result = self.one() + base = self + power = exponent + while power: + if power & 1: + result = result * base + base = base * base + power >>= 1 + return result + + def enclose(self, root: RationalInterval) -> RationalInterval: + """Enclose this element when ``alpha`` lies in ``root``.""" + + return ( + RationalInterval.point(self.a0) + + self.a1 * root + + self.a2 * root**2 + ) + + +@dataclass(frozen=True, slots=True) +class CubicStage: + fragment_index: int + coefficient: Cubic + + +def _second_order_cubic_stages( + n_fragments: int, + scale: Cubic, +) -> list[CubicStage]: + half = scale / 2 + stages = [ + CubicStage(fragment_index, half) + for fragment_index in range(n_fragments - 1) + ] + stages.append(CubicStage(n_fragments - 1, scale)) + stages.extend( + CubicStage(fragment_index, half) + for fragment_index in reversed(range(n_fragments - 1)) + ) + return stages + + +def _merge_cubic_stages( + stages: Sequence[CubicStage], +) -> tuple[CubicStage, ...]: + merged: list[CubicStage] = [] + for stage in stages: + if merged and merged[-1].fragment_index == stage.fragment_index: + previous = merged.pop() + merged.append( + CubicStage( + stage.fragment_index, + previous.coefficient + stage.coefficient, + ) + ) + else: + merged.append(stage) + return tuple(merged) + + +def fourth_order_suzuki_cubic_stages( + n_fragments: int = 4, +) -> tuple[CubicStage, ...]: + """Return the fourth-order Suzuki stages with exact algebraic weights.""" + + if n_fragments < 1: + raise ValueError("number of fragments must be positive") + # alpha**3 = 4 and 1 / (4 - alpha) = (16 + 4 alpha + alpha**2) / 60. + u = Cubic(Fraction(4, 15), Fraction(1, 15), Fraction(1, 60)) + scales = (u, u, Cubic.one() - 4 * u, u, u) + stages: list[CubicStage] = [] + for scale in scales: + stages.extend(_second_order_cubic_stages(n_fragments, scale)) + return _merge_cubic_stages(stages) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/cubic_local.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/cubic_local.py new file mode 100644 index 000000000..be6d7821d --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/cubic_local.py @@ -0,0 +1,302 @@ +from __future__ import annotations + +from fractions import Fraction +from math import factorial +from typing import Mapping, Sequence + +from .cubic_field import Cubic, CubicStage +from .local_commutators import ( + CoordinateBond, + CoordinateRegistry, + SymplecticPauli, + _iter_set_bits, + _symplectic_anticommutes, + _symplectic_bond_terms, + _symplectic_product_phase, + canonical_coordinate_bond, + matching_partner, + SymplecticDyadicLocalDensityEvaluator, +) +from .refined_error import canonicalize_symplectic_unit_cell + + +CubicTerms = dict[SymplecticPauli, Cubic] +CubicWord = tuple[int, ...] +CubicWordSeries = list[dict[CubicWord, Cubic]] + + +def _add_term( + target: dict[object, Cubic], + key: object, + value: Cubic, +) -> None: + if value == Cubic.zero(): + return + updated = target.get(key, Cubic.zero()) + value + if updated == Cubic.zero(): + target.pop(key, None) + else: + target[key] = updated + + +def _series_identity(order: int) -> CubicWordSeries: + result: CubicWordSeries = [{} for _ in range(order + 1)] + result[0][()] = Cubic.one() + return result + + +def _series_add( + left: CubicWordSeries, + right: CubicWordSeries, +) -> CubicWordSeries: + result: CubicWordSeries = [] + for left_degree, right_degree in zip(left, right): + terms = dict(left_degree) + for word, coefficient in right_degree.items(): + _add_term(terms, word, coefficient) + result.append(terms) + return result + + +def _series_scale( + series: CubicWordSeries, + scalar: int | Fraction, +) -> CubicWordSeries: + return [ + { + word: scaled + for word, coefficient in degree.items() + if (scaled := coefficient * scalar) != Cubic.zero() + } + for degree in series + ] + + +def _series_multiply( + left: CubicWordSeries, + right: CubicWordSeries, +) -> CubicWordSeries: + order = len(left) - 1 + result: CubicWordSeries = [{} for _ in range(order + 1)] + for degree in range(order + 1): + terms = result[degree] + for left_degree in range(degree + 1): + for left_word, left_coefficient in left[left_degree].items(): + for right_word, right_coefficient in right[ + degree - left_degree + ].items(): + _add_term( + terms, + left_word + right_word, + left_coefficient * right_coefficient, + ) + return result + + +def _stage_exponential( + stage: CubicStage, + order: int, +) -> CubicWordSeries: + result: CubicWordSeries = [{} for _ in range(order + 1)] + for degree in range(order + 1): + result[degree][(stage.fragment_index,) * degree] = ( + stage.coefficient**degree / factorial(degree) + ) + return result + + +def cubic_formula_log_series( + stages: Sequence[CubicStage], + order: int, +) -> CubicWordSeries: + if order < 0: + raise ValueError("series order must be nonnegative") + product = _series_identity(order) + for stage in stages: + product = _series_multiply( + product, + _stage_exponential(stage, order), + ) + delta = _series_add( + product, + _series_scale(_series_identity(order), -1), + ) + logarithm: CubicWordSeries = [{} for _ in range(order + 1)] + power = _series_identity(order) + for exponent in range(1, order + 1): + power = _series_multiply(power, delta) + logarithm = _series_add( + logarithm, + _series_scale( + power, + Fraction(1 if exponent % 2 else -1, exponent), + ), + ) + return logarithm + + +def canonicalize_cubic_density( + registry: CoordinateRegistry, + operator: Mapping[SymplecticPauli, Cubic], +) -> CubicTerms: + result: CubicTerms = {} + for raw_pauli, coefficient in operator.items(): + pauli = canonicalize_symplectic_unit_cell(registry, raw_pauli) + _add_term(result, pauli, coefficient) + return result + + +def exact_log_e5_density( + stages: Sequence[CubicStage], +) -> tuple[CoordinateRegistry, CubicTerms]: + """Return the exact fifth-degree logarithm density.""" + + logarithm = cubic_formula_log_series(stages, 5) + evaluator = SymplecticDyadicLocalDensityEvaluator(shared_coordinates=True) + registry = evaluator.registries[0] + result: CubicTerms = {} + denominator = 5 * (1 << evaluator.denominator_exponent((0,) * 5)) + for word, word_coefficient in logarithm[5].items(): + for raw_pauli, numerator in evaluator.evaluate(word).items(): + pauli = canonicalize_symplectic_unit_cell(registry, raw_pauli) + _add_term( + result, + pauli, + word_coefficient * Fraction(numerator, denominator), + ) + return registry, result + + +def cubic_fragment_adjoint( + registry: CoordinateRegistry, + color: int, + operator: Mapping[SymplecticPauli, Cubic], +) -> CubicTerms: + """Apply one physical Heisenberg adjoint to an exact cubic map.""" + + candidate_bonds: set[CoordinateBond] = set() + for x_mask, z_mask in operator: + for site in _iter_set_bits(x_mask | z_mask): + coordinate = registry.coordinate(site) + candidate_bonds.add( + canonical_coordinate_bond( + coordinate, + matching_partner(coordinate, color), + ) + ) + + result: CubicTerms = {} + for bond in sorted(candidate_bonds): + first, second = (registry.site(coordinate) for coordinate in bond) + for bond_pauli in _symplectic_bond_terms(first, second): + for pauli, coefficient in operator.items(): + if not _symplectic_anticommutes(bond_pauli, pauli): + continue + phase, product_pauli = _symplectic_product_phase( + bond_pauli, pauli + ) + sign = 1 if phase == 1 else -1 + _add_term(result, product_pauli, sign * coefficient / 2) + return result + + +def exact_d5_density( + registry: CoordinateRegistry, + e5: Mapping[SymplecticPauli, Cubic], +) -> CubicTerms: + result: CubicTerms = {} + for color in range(4): + image = cubic_fragment_adjoint(registry, color, e5) + for pauli, coefficient in image.items(): + _add_term(result, pauli, 2 * coefficient) + return canonicalize_cubic_density(registry, result) + + +def exact_matching_density( + color: int, +) -> tuple[CoordinateRegistry, CubicTerms]: + """Return one exact two-by-two-cell matching Hamiltonian density.""" + + if color not in range(4): + raise ValueError("matching color must be 0, 1, 2 or 3") + evaluator = SymplecticDyadicLocalDensityEvaluator(shared_coordinates=True) + registry = evaluator.registries[0] + key = (color,) + denominator = 1 << evaluator.denominator_exponent(key) + return registry, canonicalize_cubic_density( + registry, + { + pauli: Cubic(Fraction(numerator, denominator), 0, 0) + for pauli, numerator in evaluator.evaluate(key).items() + }, + ) + + +def _add_cubic_operator( + target: CubicTerms, + source: Mapping[SymplecticPauli, Cubic], + scalar: Cubic | int | Fraction = 1, +) -> None: + for pauli, coefficient in source.items(): + _add_term(target, pauli, coefficient * scalar) + + +def conjugate_cubic_series_by_stage( + registry: CoordinateRegistry, + series: Sequence[Mapping[SymplecticPauli, Cubic]], + color: int, + coefficient: Cubic, +) -> list[CubicTerms]: + """Conjugate an exact local series by one matching exponential.""" + + order = len(series) - 1 + result: list[CubicTerms] = [{} for _ in range(order + 1)] + for degree, operator in enumerate(series): + power = dict(operator) + for nested_degree in range(order - degree + 1): + _add_cubic_operator( + result[degree + nested_degree], + power, + coefficient**nested_degree / factorial(nested_degree), + ) + if nested_degree < order - degree: + power = canonicalize_cubic_density( + registry, + cubic_fragment_adjoint(registry, color, power), + ) + return result + + +def exact_right_generator_stage_contribution( + stages: Sequence[CubicStage], + stage_index: int, + order: int, +) -> tuple[CoordinateRegistry, list[CubicTerms]]: + """Return one stage's exact contribution to ``i S' S^dagger``. + + The full right generator is the exact sum of this function over every + stage. Keeping stage contributions independent makes the expensive local + recurrence safe to distribute across Slurm array cells. + """ + + if order < 0: + raise ValueError("series order must be nonnegative") + if stage_index < 0 or stage_index >= len(stages): + raise IndexError("stage index is out of range") + stage = stages[stage_index] + registry, base = exact_matching_density(stage.fragment_index) + series: list[CubicTerms] = [{} for _ in range(order + 1)] + series[0] = { + pauli: stage.coefficient * coefficient + for pauli, coefficient in base.items() + } + for later in stages[stage_index + 1 :]: + series = conjugate_cubic_series_by_stage( + registry, + series, + later.fragment_index, + later.coefficient, + ) + return registry, [ + canonicalize_cubic_density(registry, degree) for degree in series + ] diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/defect_series.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/defect_series.py new file mode 100644 index 000000000..b226dcd93 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/defect_series.py @@ -0,0 +1,153 @@ +from __future__ import annotations + +from math import factorial +from typing import Sequence + +from .higher_order import ScalarStage +from .local_commutators import ( + CoordinateRegistry, + SymplecticDyadicLocalDensityEvaluator, + SymplecticPauli, + symplectic_local_fragment_adjoint, +) + + +FloatOperator = dict[SymplecticPauli, float] + + +def _pauli_coordinates( + registry: CoordinateRegistry, + pauli: SymplecticPauli, +) -> list[tuple[int, int, str]]: + x_mask, z_mask = pauli + sites = x_mask | z_mask + result: list[tuple[int, int, str]] = [] + while sites: + bit = sites & -sites + site = bit.bit_length() - 1 + x = bool(x_mask & bit) + z = bool(z_mask & bit) + op = "Y" if x and z else ("X" if x else "Z") + coordinate = registry.coordinate(site) + result.append((coordinate[0], coordinate[1], op)) + sites ^= bit + return result + + +def canonicalize_unit_cell_operator( + registry: CoordinateRegistry, + operator: FloatOperator, + unit_cell: tuple[int, int] = (2, 2), + *, + tolerance: float = 1e-18, +) -> FloatOperator: + result: FloatOperator = {} + step_x, step_y = unit_cell + for pauli, coefficient in operator.items(): + coordinates = _pauli_coordinates(registry, pauli) + if not coordinates: + key = (0, 0) + else: + min_x = min(x for x, _, _ in coordinates) + min_y = min(y for _, y, _ in coordinates) + shift_x = -(min_x - (min_x % step_x)) + shift_y = -(min_y - (min_y % step_y)) + x_mask = z_mask = 0 + for x, y, op in coordinates: + site = registry.site((x + shift_x, y + shift_y)) + bit = 1 << site + if op in {"X", "Y"}: + x_mask |= bit + if op in {"Z", "Y"}: + z_mask |= bit + key = (x_mask, z_mask) + updated = result.get(key, 0.0) + coefficient + if abs(updated) > tolerance: + result[key] = updated + else: + result.pop(key, None) + return result + + +def _add_scaled( + target: FloatOperator, + source: FloatOperator, + scalar: float, + *, + tolerance: float = 1e-18, +) -> None: + if not scalar: + return + for pauli, coefficient in source.items(): + updated = target.get(pauli, 0.0) + scalar * coefficient + if abs(updated) > tolerance: + target[pauli] = updated + else: + target.pop(pauli, None) + + +def normalized_local_adjoint( + registry: CoordinateRegistry, + color: int, + operator: FloatOperator, +) -> FloatOperator: + raw = symplectic_local_fragment_adjoint(registry, color, operator) + return canonicalize_unit_cell_operator( + registry, + {pauli: coefficient / 2 for pauli, coefficient in raw.items()}, + ) + + +def conjugate_series_by_stage( + registry: CoordinateRegistry, + series: Sequence[FloatOperator], + color: int, + coefficient: float, +) -> list[FloatOperator]: + order = len(series) - 1 + result: list[FloatOperator] = [{} for _ in range(order + 1)] + for degree, operator in enumerate(series): + power = operator + for nested_degree in range(order - degree + 1): + scalar = coefficient**nested_degree / factorial(nested_degree) + _add_scaled(result[degree + nested_degree], power, scalar) + if nested_degree < order - degree: + power = normalized_local_adjoint(registry, color, power) + return result + + +def right_generator_local_series( + stages_left_to_right: Sequence[ScalarStage], + order: int, +) -> list[FloatOperator]: + """Return coefficients of ``i S'(t) S(t)^dagger`` as cell densities.""" + + evaluator = SymplecticDyadicLocalDensityEvaluator(shared_coordinates=True) + registry = evaluator.registries[0] + base_operators = [] + for color in range(4): + base = { + pauli: numerator / 4 + for pauli, numerator in evaluator.evaluate((color,)).items() + } + base_operators.append( + canonicalize_unit_cell_operator(registry, base) + ) + + # Build S recursively by left multiplication: S_new = V S_old. + # Then i S_new' S_new^dagger = a H_color + Ad_V(G_old). + # This avoids replaying every prefix separately. + generator: list[FloatOperator] = [{} for _ in range(order + 1)] + for stage in stages_left_to_right: + generator = conjugate_series_by_stage( + registry, + generator, + stage.fragment_index, + float(stage.coefficient), + ) + _add_scaled( + generator[0], + base_operators[stage.fragment_index], + float(stage.coefficient), + ) + return generator diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/formulas.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/formulas.py new file mode 100644 index 000000000..e972ed105 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/formulas.py @@ -0,0 +1,94 @@ +from __future__ import annotations + +from dataclasses import dataclass +from fractions import Fraction +from typing import Sequence + +from .algebra import PauliSum, QComplex, commutator +from .series import exponential_series, logarithm_series, product_series + + +@dataclass(frozen=True) +class FormulaStage: + fragment: PauliSum + coefficient: Fraction + fragment_index: int + + +def strang_stages( + fragments: Sequence[PauliSum], + ordering: Sequence[int] | None = None, +) -> tuple[FormulaStage, ...]: + if len(fragments) < 2: + raise ValueError("Strang formula requires at least two fragments") + selected = tuple(ordering) if ordering is not None else tuple(range(len(fragments))) + if sorted(selected) != list(range(len(fragments))): + raise ValueError("ordering must be a permutation of fragment indices") + stages: list[FormulaStage] = [] + for index in selected[:-1]: + stages.append(FormulaStage(fragments[index], Fraction(1, 2), index)) + center = selected[-1] + stages.append(FormulaStage(fragments[center], Fraction(1), center)) + for index in reversed(selected[:-1]): + stages.append(FormulaStage(fragments[index], Fraction(1, 2), index)) + return tuple(stages) + + +def formula_log_series( + stages: Sequence[FormulaStage], + order: int = 3, +) -> list[PauliSum]: + exponentials = [ + exponential_series( + stage.fragment, + QComplex(0, -stage.coefficient), + order, + ) + for stage in stages + ] + return logarithm_series(product_series(exponentials, order)).coefficients + + +def formula_log_through_degree_three( + stages: Sequence[FormulaStage], +) -> tuple[PauliSum, PauliSum, PauliSum]: + """Compute log of the stage product by a graded BCH recurrence. + + This avoids expanding ordinary fragment products. If ``X`` is the + accumulated logarithm and ``Y`` is the next degree-one stage generator, + BCH through degree three is + + ``X + Y + [X,Y]/2 + ([X,[X,Y]] + [Y,[Y,X]])/12``. + """ + + degree_one = PauliSum.zero() + degree_two = PauliSum.zero() + degree_three = PauliSum.zero() + for stage in stages: + next_one = stage.fragment.scale(QComplex(0, -stage.coefficient)) + comm_one = commutator(degree_one, next_one) + new_three = ( + degree_three + + commutator(degree_two, next_one).scale(Fraction(1, 2)) + + commutator(degree_one, comm_one).scale(Fraction(1, 12)) + + commutator(next_one, commutator(next_one, degree_one)).scale( + Fraction(1, 12) + ) + ) + new_two = degree_two + comm_one.scale(Fraction(1, 2)) + degree_one = degree_one + next_one + degree_two = new_two + degree_three = new_three + return degree_one, degree_two, degree_three + + +def leading_effective_error(stages: Sequence[FormulaStage]) -> PauliSum: + """Return Hermitian E3 where log(S(t)) = -itH - it^3 E3 + O(t^5).""" + + _, degree_two, degree_three = formula_log_through_degree_three(stages) + if degree_two: + raise ArithmeticError("formula is not second order") + error = degree_three.scale(QComplex(0, 1)) + if not error.is_hermitian(): + raise ArithmeticError("leading effective error is not Hermitian") + return error diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/hamiltonian.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/hamiltonian.py new file mode 100644 index 000000000..a7dbd2314 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/hamiltonian.py @@ -0,0 +1,28 @@ +from __future__ import annotations + +from fractions import Fraction + +from .algebra import PauliString, PauliSum +from .lattice import SquareLattice + + +def heisenberg_bond(u: int, v: int) -> PauliSum: + result = PauliSum.zero() + for op in ("X", "Y", "Z"): + result += PauliSum.term(PauliString({u: op, v: op}), Fraction(1, 4)) + return result + + +def fragment_from_bonds(bonds: tuple[tuple[int, int], ...]) -> PauliSum: + result = PauliSum.zero() + for u, v in bonds: + result += heisenberg_bond(u, v) + return result + + +def four_matching_fragments(lattice: SquareLattice) -> tuple[PauliSum, ...]: + return tuple(fragment_from_bonds(group) for group in lattice.four_matchings()) + + +def full_heisenberg_hamiltonian(lattice: SquareLattice) -> PauliSum: + return fragment_from_bonds(lattice.bonds()) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/higher_order.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/higher_order.py new file mode 100644 index 000000000..fba2322ce --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/higher_order.py @@ -0,0 +1,516 @@ +from __future__ import annotations + +from dataclasses import dataclass +from functools import lru_cache +from itertools import product +from math import factorial +from typing import Iterable, Sequence + +import mpmath as mp +import numpy as np + +from .algebra import PauliSum, commutator +from .local_commutators import ( + LocalDensityEvaluator, + SymplecticDyadicLocalDensityEvaluator, +) + + +@dataclass(frozen=True) +class ScalarStage: + fragment_index: int + coefficient: mp.mpf + + +def _second_order_scalar_stages( + n_fragments: int, + scale: mp.mpf, +) -> list[ScalarStage]: + stages = [ + ScalarStage(index, scale / 2) + for index in range(n_fragments - 1) + ] + stages.append(ScalarStage(n_fragments - 1, scale)) + stages.extend( + ScalarStage(index, scale / 2) + for index in reversed(range(n_fragments - 1)) + ) + return stages + + +def merge_scalar_stages(stages: Sequence[ScalarStage]) -> tuple[ScalarStage, ...]: + merged: list[ScalarStage] = [] + for stage in stages: + if merged and merged[-1].fragment_index == stage.fragment_index: + previous = merged.pop() + coefficient = previous.coefficient + stage.coefficient + if coefficient: + merged.append(ScalarStage(stage.fragment_index, coefficient)) + else: + merged.append(stage) + return tuple(merged) + + +def fourth_order_suzuki_stages(n_fragments: int) -> tuple[ScalarStage, ...]: + """Five-copy Suzuki fractal S4 built from the symmetric S2 kernel.""" + + mp.mp.dps = max(mp.mp.dps, 80) + u = 1 / (4 - mp.root(4, 3)) + scales = (u, u, 1 - 4 * u, u, u) + stages: list[ScalarStage] = [] + for scale in scales: + stages.extend(_second_order_scalar_stages(n_fragments, scale)) + return merge_scalar_stages(stages) + + +def fourth_order_triple_jump_stages(n_fragments: int) -> tuple[ScalarStage, ...]: + """Three-copy fourth-order symmetric composition of S2.""" + + mp.mp.dps = max(mp.mp.dps, 80) + a = 1 / (2 - mp.root(2, 3)) + b = 1 - 2 * a + stages: list[ScalarStage] = [] + for scale in (a, b, a): + stages.extend(_second_order_scalar_stages(n_fragments, scale)) + return merge_scalar_stages(stages) + + +def weak_compositions(total: int, length: int) -> Iterable[tuple[int, ...]]: + if length == 1: + yield (total,) + return + for first in range(total + 1): + for tail in weak_compositions(total - first, length - 1): + yield (first,) + tail + + +def _multinomial(total: int, composition: Sequence[int]) -> int: + result = factorial(total) + for value in composition: + result //= factorial(value) + return result + + +def higher_order_triangle_weights( + stages_left_to_right: Sequence[ScalarStage], + order: int, + center: int | None = None, +) -> dict[tuple[int, ...], mp.mpf]: + """Aggregate Schubert--Mendl theorem weights by base-fragment sequence. + + The returned key is ``(outermost, ..., innermost, base)``. The norm of + the corresponding pure nested commutator is multiplied by the positive + weight. Expanding ``B_j`` by a triangle inequality keeps this routine + conservative and easy to verify. + """ + + # Their A_1 is the rightmost exponential. + stages = tuple(reversed(stages_left_to_right)) + count = len(stages) + s = center if center is not None else (count + 1) // 2 + if not 1 <= s <= count: + raise ValueError("center must use one-based stage indexing") + weights: dict[tuple[int, ...], mp.mpf] = {} + + def add_range(j: int, indices: tuple[int, ...], composition: tuple[int, ...]) -> None: + outer: list[int] = [] + coefficient = mp.mpf(_multinomial(order, composition)) + for stage_index, power in zip(indices, composition): + coefficient *= abs(stages[stage_index - 1].coefficient) ** power + # ad operators appear in the theorem in the same order as indices. + for stage_index, power in zip(indices, composition): + outer.extend([stages[stage_index - 1].fragment_index] * power) + for base_index in range(1, j): + base_stage = stages[base_index - 1] + key = tuple(outer) + (base_stage.fragment_index,) + weights[key] = weights.get(key, mp.mpf("0")) + ( + coefficient * abs(base_stage.coefficient) + ) + + for j in range(2, s + 1): + indices = tuple(range(s, j - 1, -1)) + # q_j is the final entry because indices descend s,...,j. + for composition in weak_compositions(order, len(indices)): + if composition[-1] == 0: + continue + add_range(j, indices, composition) + + for j in range(s + 1, count + 1): + indices = tuple(range(s + 1, j + 1)) + # q_j is the final entry because indices ascend s+1,...,j. + for composition in weak_compositions(order, len(indices)): + if composition[-1] == 0: + continue + add_range(j, indices, composition) + return weights + + +def nested_commutator( + fragments: Sequence[PauliSum], + key: tuple[int, ...], + cache: dict[tuple[int, ...], PauliSum] | None = None, +) -> PauliSum: + """Evaluate a key ``(outermost,...,innermost,base)`` exactly.""" + + memo = cache if cache is not None else {} + if key in memo: + return memo[key] + if len(key) == 1: + result = fragments[key[0]] + else: + result = commutator( + fragments[key[0]], + nested_commutator(fragments, key[1:], memo), + ) + memo[key] = result + return result + + +def fourth_order_pauli_l1_constant( + fragments: Sequence[PauliSum], +) -> tuple[mp.mpf, dict[tuple[int, ...], mp.mpf]]: + stages = fourth_order_suzuki_stages(len(fragments)) + weights = higher_order_triangle_weights(stages, order=4) + cache: dict[tuple[int, ...], PauliSum] = {} + total = mp.mpf("0") + for key, weight in weights.items(): + operator = nested_commutator(fragments, key, cache) + total += weight * operator.pauli_l1() + return total / factorial(5), weights + + +def fourth_order_local_pauli_l1_density( + n_fragments: int = 4, +) -> tuple[mp.mpf, dict[tuple[int, ...], mp.mpf]]: + """Uniform 2x2-cell fourth-order bound for the four matching model.""" + + if n_fragments != 4: + raise ValueError("local matching density currently supports four fragments") + stages = fourth_order_suzuki_stages(n_fragments) + weights = higher_order_triangle_weights(stages, order=4) + evaluator = LocalDensityEvaluator() + total = mp.mpf("0") + for key, weight in weights.items(): + if key[-2] == key[-1]: + continue + norm = evaluator.pauli_l1_density(key) + total += weight * int(norm.numerator) / int( + norm.denominator + ) + return total / factorial(5), weights + + +def local_pauli_l1_constant_from_norms( + stages: Sequence[ScalarStage], + norm_density: dict[tuple[int, ...], Fraction], + *, + order: int = 4, +) -> mp.mpf: + weights = higher_order_triangle_weights(stages, order) + total = mp.mpf("0") + for key, weight in weights.items(): + norm = norm_density.get(key, Fraction()) + total += weight * int(norm.numerator) / int(norm.denominator) + return total / factorial(order + 1) + + +def higher_order_combined_local_l1_density( + stages_left_to_right: Sequence[ScalarStage], + *, + order: int = 4, + center: int | None = None, +) -> mp.mpf: + """Evaluate the theorem while retaining cancellations inside each B_j.""" + + stages = tuple(reversed(stages_left_to_right)) + count = len(stages) + s = center if center is not None else (count + 1) // 2 + evaluator = LocalDensityEvaluator() + total = mp.mpf("0") + + def evaluate_term( + j: int, + indices: tuple[int, ...], + composition: tuple[int, ...], + ) -> mp.mpf: + outer: list[int] = [] + scalar = mp.mpf(_multinomial(order, composition)) + for stage_index, power in zip(indices, composition): + stage = stages[stage_index - 1] + scalar *= stage.coefficient**power + outer.extend([stage.fragment_index] * power) + base_coefficients = [mp.mpf("0") for _ in range(4)] + for base_index in range(1, j): + base = stages[base_index - 1] + base_coefficients[base.fragment_index] += base.coefficient + pauli_coefficients: dict[object, mp.mpf] = {} + for fragment_index, base_coefficient in enumerate(base_coefficients): + if not base_coefficient: + continue + operator = evaluator.evaluate(tuple(outer) + (fragment_index,)) + for pauli, coefficient in operator.terms.items(): + if coefficient.imag: + raise ArithmeticError("degree-five commutator should be Hermitian") + pauli_coefficients[pauli] = pauli_coefficients.get( + pauli, mp.mpf("0") + ) + base_coefficient * mp.mpf(coefficient.real.numerator) / mp.mpf( + coefficient.real.denominator + ) + return abs(scalar) * sum(abs(value) for value in pauli_coefficients.values()) + + for j in range(2, s + 1): + indices = tuple(range(s, j - 1, -1)) + for composition in weak_compositions(order, len(indices)): + if composition[-1]: + total += evaluate_term(j, indices, composition) + for j in range(s + 1, count + 1): + indices = tuple(range(s + 1, j + 1)) + for composition in weak_compositions(order, len(indices)): + if composition[-1]: + total += evaluate_term(j, indices, composition) + return total / factorial(order + 1) + + +def higher_order_combined_local_l1_density_fast( + stages_left_to_right: Sequence[ScalarStage], + *, + order: int = 4, + center: int | None = None, +) -> float: + """Vectorized discovery evaluation retaining cancellations inside B_j.""" + + stages = tuple(reversed(stages_left_to_right)) + count = len(stages) + s = center if center is not None else (count + 1) // 2 + grouped_terms: dict[ + tuple[int, ...], list[tuple[float, tuple[float, ...]]] + ] = {} + + def collect( + j: int, + indices: tuple[int, ...], + composition: tuple[int, ...], + ) -> None: + outer: list[int] = [] + scalar = float(_multinomial(order, composition)) + for stage_index, power in zip(indices, composition): + stage = stages[stage_index - 1] + scalar *= float(stage.coefficient) ** power + outer.extend([stage.fragment_index] * power) + base = [0.0] * 4 + for base_index in range(1, j): + stage = stages[base_index - 1] + base[stage.fragment_index] += float(stage.coefficient) + grouped_terms.setdefault(tuple(outer), []).append( + (abs(scalar), tuple(base)) + ) + + for j in range(2, s + 1): + indices = tuple(range(s, j - 1, -1)) + for composition in weak_compositions(order, len(indices)): + if composition[-1]: + collect(j, indices, composition) + for j in range(s + 1, count + 1): + indices = tuple(range(s + 1, j + 1)) + for composition in weak_compositions(order, len(indices)): + if composition[-1]: + collect(j, indices, composition) + + evaluator = LocalDensityEvaluator() + total = 0.0 + for outer, terms in grouped_terms.items(): + operators = [evaluator.evaluate(outer + (base,)) for base in range(4)] + paulis = sorted(set().union(*(set(operator.terms) for operator in operators))) + matrix = np.zeros((len(paulis), 4), dtype=np.float64) + for column, operator in enumerate(operators): + for row, pauli in enumerate(paulis): + coefficient = operator.terms.get(pauli) + if coefficient is not None: + matrix[row, column] = float(coefficient.real) + scalars = np.asarray([term[0] for term in terms], dtype=np.float64) + base_matrix = np.asarray([term[1] for term in terms], dtype=np.float64).T + norms = np.abs(matrix @ base_matrix).sum(axis=0) + total += float(scalars @ norms) + return total / factorial(order + 1) + + +def higher_order_combined_local_l1_density_symplectic( + stages_left_to_right: Sequence[ScalarStage], + *, + order: int = 4, + center: int | None = None, + evaluator: SymplecticDyadicLocalDensityEvaluator | None = None, +) -> float: + """Fast discovery bound retaining exact Pauli cancellation inside ``B_j``. + + Local nested commutators are evaluated exactly as integer coefficient + vectors. Formula coefficients are converted to double precision only + at the final small linear combinations, so this is a discovery value, + not yet an outward-rounded certificate. + """ + + stages = tuple(reversed(stages_left_to_right)) + count = len(stages) + s = center if center is not None else (count + 1) // 2 + grouped_terms: dict[ + tuple[int, ...], list[tuple[float, tuple[float, ...]]] + ] = {} + + def collect( + j: int, + indices: tuple[int, ...], + composition: tuple[int, ...], + ) -> None: + outer: list[int] = [] + scalar = float(_multinomial(order, composition)) + for stage_index, power in zip(indices, composition): + stage = stages[stage_index - 1] + scalar *= float(stage.coefficient) ** power + outer.extend([stage.fragment_index] * power) + base = [0.0] * 4 + for base_index in range(1, j): + stage = stages[base_index - 1] + base[stage.fragment_index] += float(stage.coefficient) + grouped_terms.setdefault(tuple(outer), []).append( + (abs(scalar), tuple(base)) + ) + + for j in range(2, s + 1): + indices = tuple(range(s, j - 1, -1)) + for composition in weak_compositions(order, len(indices)): + if composition[-1]: + collect(j, indices, composition) + for j in range(s + 1, count + 1): + indices = tuple(range(s + 1, j + 1)) + for composition in weak_compositions(order, len(indices)): + if composition[-1]: + collect(j, indices, composition) + + # Combining different base fragments requires one coordinate-to-bit + # registry; otherwise equal physical Pauli strings can receive unrelated + # bit labels and their cancellations would be destroyed. + local = evaluator or SymplecticDyadicLocalDensityEvaluator( + shared_coordinates=True + ) + denominator = float(1 << (order + 2)) + total = 0.0 + for outer, terms in grouped_terms.items(): + operators = [local.evaluate(outer + (base,)) for base in range(4)] + paulis = set().union(*(operator.keys() for operator in operators)) + row_for_pauli = {pauli: row for row, pauli in enumerate(paulis)} + matrix = np.zeros((len(paulis), 4), dtype=np.int32) + for column, operator in enumerate(operators): + for pauli, coefficient in operator.items(): + matrix[row_for_pauli[pauli], column] = coefficient + scalars = np.asarray([term[0] for term in terms], dtype=np.float64) + base_matrix = np.asarray([term[1] for term in terms], dtype=np.float64).T + norms = np.abs(matrix @ base_matrix).sum(axis=0) / denominator + total += float(scalars @ norms) + return total / factorial(order + 1) + + +def _pairwise_anticommuting_float_bound( + paulis: Sequence[tuple[int, int]], + coefficients: np.ndarray, +) -> float: + """Greedily pair anticommuting Paulis and apply Euclidean pair norms.""" + + order = np.argsort(-np.abs(coefficients), kind="stable") + used = np.zeros(len(paulis), dtype=np.bool_) + total = 0.0 + for position, index_value in enumerate(order): + index = int(index_value) + if used[index] or coefficients[index] == 0: + continue + used[index] = True + left_x, left_z = paulis[index] + partner: int | None = None + for candidate_value in order[position + 1 :]: + candidate = int(candidate_value) + if used[candidate] or coefficients[candidate] == 0: + continue + right_x, right_z = paulis[candidate] + parity = ( + (left_x & right_z).bit_count() + + (left_z & right_x).bit_count() + ) & 1 + if parity: + partner = candidate + break + if partner is None: + total += abs(float(coefficients[index])) + else: + used[partner] = True + total += float( + np.hypot(coefficients[index], coefficients[partner]) + ) + return total + + +def higher_order_combined_local_pair_density_symplectic( + stages_left_to_right: Sequence[ScalarStage], + *, + order: int = 4, + center: int | None = None, + evaluator: SymplecticDyadicLocalDensityEvaluator | None = None, +) -> float: + """Discovery bound with ``B_j`` cancellation and anticommuting pairs.""" + + stages = tuple(reversed(stages_left_to_right)) + count = len(stages) + s = center if center is not None else (count + 1) // 2 + grouped: dict[ + tuple[int, ...], + dict[tuple[float, ...], float], + ] = {} + + def collect( + j: int, + indices: tuple[int, ...], + composition: tuple[int, ...], + ) -> None: + outer: list[int] = [] + scalar = float(_multinomial(order, composition)) + for stage_index, power in zip(indices, composition): + stage = stages[stage_index - 1] + scalar *= float(stage.coefficient) ** power + outer.extend([stage.fragment_index] * power) + base = [0.0] * 4 + for base_index in range(1, j): + stage = stages[base_index - 1] + base[stage.fragment_index] += float(stage.coefficient) + base_key = tuple(base) + by_base = grouped.setdefault(tuple(outer), {}) + by_base[base_key] = by_base.get(base_key, 0.0) + abs(scalar) + + for j in range(2, s + 1): + indices = tuple(range(s, j - 1, -1)) + for composition in weak_compositions(order, len(indices)): + if composition[-1]: + collect(j, indices, composition) + for j in range(s + 1, count + 1): + indices = tuple(range(s + 1, j + 1)) + for composition in weak_compositions(order, len(indices)): + if composition[-1]: + collect(j, indices, composition) + + local = evaluator or SymplecticDyadicLocalDensityEvaluator( + shared_coordinates=True + ) + denominator = float(1 << (order + 2)) + total = 0.0 + for outer, by_base in grouped.items(): + operators = [local.evaluate(outer + (base,)) for base in range(4)] + paulis = tuple(set().union(*(operator.keys() for operator in operators))) + row_for_pauli = {pauli: row for row, pauli in enumerate(paulis)} + matrix = np.zeros((len(paulis), 4), dtype=np.int32) + for column, operator in enumerate(operators): + for pauli, coefficient in operator.items(): + matrix[row_for_pauli[pauli], column] = coefficient + for base, scalar_weight in by_base.items(): + coefficients = matrix @ np.asarray(base, dtype=np.float64) + total += scalar_weight * _pairwise_anticommuting_float_bound( + paulis, + coefficients, + ) / denominator + return total / factorial(order + 1) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/hpc_artifacts.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/hpc_artifacts.py new file mode 100644 index 000000000..169b6674e --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/hpc_artifacts.py @@ -0,0 +1,212 @@ +from __future__ import annotations + +from collections.abc import Mapping, Sequence +from fractions import Fraction +import gzip +import hashlib +import json +import os +from pathlib import Path +import tempfile +from typing import Any + +from .cubic_field import Cubic +from .cubic_local import CubicTerms +from .local_commutators import CoordinateRegistry, SymplecticPauli, _iter_set_bits + + +CoordinatePauli = tuple[tuple[int, int, str], ...] +EncodedCubicTerm = list[object] +CoordinateCubicTerms = dict[CoordinatePauli, Cubic] + + +def _pauli_coordinates( + registry: CoordinateRegistry, + pauli: SymplecticPauli, +) -> CoordinatePauli: + x_mask, z_mask = pauli + result: list[tuple[int, int, str]] = [] + for site in _iter_set_bits(x_mask | z_mask): + bit = 1 << site + x = bool(x_mask & bit) + z = bool(z_mask & bit) + operator = "Y" if x and z else ("X" if x else "Z") + coordinate = registry.coordinate(site) + result.append((coordinate[0], coordinate[1], operator)) + return tuple(sorted(result)) + + +def _pair(value: Fraction) -> list[int]: + return [value.numerator, value.denominator] + + +def _encode_cubic(value: Cubic) -> list[list[int]]: + return [_pair(value.a0), _pair(value.a1), _pair(value.a2)] + + +def _decode_fraction(value: object) -> Fraction: + if ( + not isinstance(value, list) + or len(value) != 2 + or isinstance(value[0], bool) + or isinstance(value[1], bool) + or not isinstance(value[0], int) + or not isinstance(value[1], int) + or value[1] <= 0 + ): + raise ValueError("malformed rational pair") + return Fraction(value[0], value[1]) + + +def _decode_cubic(value: object) -> Cubic: + if not isinstance(value, list) or len(value) != 3: + raise ValueError("malformed cubic coefficient") + return Cubic(*(_decode_fraction(part) for part in value)) + + +def cubic_to_json(value: Cubic) -> list[list[int]]: + return _encode_cubic(value) + + +def cubic_from_json(value: object) -> Cubic: + return _decode_cubic(value) + + +def coordinate_encode_terms( + registry: CoordinateRegistry, + terms: Mapping[SymplecticPauli, Cubic], +) -> list[EncodedCubicTerm]: + encoded = [ + [ + [[x, y, operator] for x, y, operator in _pauli_coordinates(registry, pauli)], + _encode_cubic(coefficient), + ] + for pauli, coefficient in terms.items() + ] + return sorted(encoded, key=lambda term: term[0]) + + +def coordinate_decode_terms( + terms: object, +) -> CoordinateCubicTerms: + if not isinstance(terms, list): + raise ValueError("encoded terms must be a list") + result: CoordinateCubicTerms = {} + for term in terms: + if not isinstance(term, list) or len(term) != 2: + raise ValueError("malformed encoded term") + raw_key, raw_coefficient = term + if not isinstance(raw_key, list): + raise ValueError("malformed coordinate Pauli key") + key_parts: list[tuple[int, int, str]] = [] + for part in raw_key: + if ( + not isinstance(part, list) + or len(part) != 3 + or isinstance(part[0], bool) + or isinstance(part[1], bool) + or not isinstance(part[0], int) + or not isinstance(part[1], int) + or part[2] not in {"X", "Y", "Z"} + ): + raise ValueError("malformed coordinate Pauli factor") + key_parts.append((part[0], part[1], part[2])) + key = tuple(sorted(key_parts)) + if key in result: + raise ValueError("duplicate coordinate Pauli term") + coefficient = _decode_cubic(raw_coefficient) + if coefficient == Cubic.zero(): + raise ValueError("encoded shard contains a zero coefficient") + result[key] = coefficient + return result + + +def coordinate_terms_to_json( + terms: Mapping[CoordinatePauli, Cubic], +) -> list[EncodedCubicTerm]: + return [ + [ + [[x, y, operator] for x, y, operator in key], + _encode_cubic(terms[key]), + ] + for key in sorted(terms) + ] + + +def coordinate_encode_series( + registry: CoordinateRegistry, + series: Sequence[Mapping[SymplecticPauli, Cubic]], +) -> list[list[EncodedCubicTerm]]: + return [coordinate_encode_terms(registry, degree) for degree in series] + + +def merge_coordinate_series( + shards: Sequence[Sequence[object]], +) -> list[CoordinateCubicTerms]: + if not shards: + return [] + order = len(shards[0]) + if any(len(shard) != order for shard in shards): + raise ValueError("coordinate series orders differ") + result: list[CoordinateCubicTerms] = [{} for _ in range(order)] + for shard in shards: + for degree, raw_terms in enumerate(shard): + for key, coefficient in coordinate_decode_terms(raw_terms).items(): + updated = result[degree].get(key, Cubic.zero()) + coefficient + if updated == Cubic.zero(): + result[degree].pop(key, None) + else: + result[degree][key] = updated + return result + + +def _canonical_json_bytes(payload: object) -> bytes: + return (json.dumps(payload, sort_keys=True, separators=(",", ":")) + "\n").encode() + + +def _atomic_write(path: Path, raw: bytes) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + descriptor, temporary_name = tempfile.mkstemp( + prefix=f".{path.name}.", suffix=".tmp", dir=path.parent + ) + temporary = Path(temporary_name) + try: + with os.fdopen(descriptor, "wb") as handle: + handle.write(raw) + handle.flush() + os.fsync(handle.fileno()) + temporary.replace(path) + except BaseException: + temporary.unlink(missing_ok=True) + raise + + +def write_shard_gzip(path: str | Path, payload: object) -> None: + raw = gzip.compress(_canonical_json_bytes(payload), compresslevel=9, mtime=0) + _atomic_write(Path(path), raw) + + +def read_shard_gzip(path: str | Path) -> dict[str, Any]: + raw = Path(path).read_bytes() + try: + payload = json.loads(gzip.decompress(raw)) + except (OSError, json.JSONDecodeError, UnicodeDecodeError) as error: + raise ValueError("shard is not valid canonical gzip JSON") from error + if not isinstance(payload, dict): + raise ValueError("shard root must be an object") + expected = gzip.compress(_canonical_json_bytes(payload), compresslevel=9, mtime=0) + if expected != raw: + raise ValueError("shard gzip JSON is not canonical") + return payload + + +def write_manifest_atomic(path: str | Path, payload: object) -> None: + _atomic_write(Path(path), _canonical_json_bytes(payload)) + + +def sha256_file(path: str | Path) -> str: + digest = hashlib.sha256() + with Path(path).open("rb") as handle: + for block in iter(lambda: handle.read(1 << 20), b""): + digest.update(block) + return digest.hexdigest() diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/intervals.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/intervals.py new file mode 100644 index 000000000..40000abd2 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/intervals.py @@ -0,0 +1,146 @@ +from __future__ import annotations + +from dataclasses import dataclass +from fractions import Fraction +from math import floor + + +@dataclass(frozen=True, slots=True) +class RationalInterval: + lower: Fraction + upper: Fraction + + def __post_init__(self) -> None: + if self.lower > self.upper: + raise ValueError("interval lower endpoint exceeds upper endpoint") + + @classmethod + def point(cls, value: int | Fraction) -> RationalInterval: + exact = value if isinstance(value, Fraction) else Fraction(value) + return cls(exact, exact) + + def __add__( + self, + other: RationalInterval | int | Fraction, + ) -> RationalInterval: + rhs = other if isinstance(other, RationalInterval) else self.point(other) + return RationalInterval(self.lower + rhs.lower, self.upper + rhs.upper) + + __radd__ = __add__ + + def __neg__(self) -> RationalInterval: + return RationalInterval(-self.upper, -self.lower) + + def __sub__( + self, + other: RationalInterval | int | Fraction, + ) -> RationalInterval: + rhs = other if isinstance(other, RationalInterval) else self.point(other) + return self + (-rhs) + + def __rsub__( + self, + other: RationalInterval | int | Fraction, + ) -> RationalInterval: + return self.point(other) - self + + def __mul__( + self, + other: RationalInterval | int | Fraction, + ) -> RationalInterval: + rhs = other if isinstance(other, RationalInterval) else self.point(other) + values = ( + self.lower * rhs.lower, + self.lower * rhs.upper, + self.upper * rhs.lower, + self.upper * rhs.upper, + ) + return RationalInterval(min(values), max(values)) + + __rmul__ = __mul__ + + def reciprocal(self) -> RationalInterval: + if self.lower <= 0 <= self.upper: + raise ZeroDivisionError("interval contains zero") + return RationalInterval(1 / self.upper, 1 / self.lower) + + def __truediv__( + self, + other: RationalInterval | int | Fraction, + ) -> RationalInterval: + rhs = other if isinstance(other, RationalInterval) else self.point(other) + return self * rhs.reciprocal() + + def __pow__(self, exponent: int) -> RationalInterval: + if exponent < 0: + return (self.reciprocal()) ** (-exponent) + result = self.point(1) + base = self + power = exponent + while power: + if power & 1: + result = result * base + base = base * base + power >>= 1 + return result + + def abs_upper(self) -> Fraction: + return max(abs(self.lower), abs(self.upper)) + + def abs_lower(self) -> Fraction: + if self.lower <= 0 <= self.upper: + return Fraction() + return min(abs(self.lower), abs(self.upper)) + + def midpoint(self) -> Fraction: + return (self.lower + self.upper) / 2 + + +def cube_root_four_interval(decimal_digits: int = 24) -> RationalInterval: + """Return a rational enclosure of the real cube root of four.""" + + return nth_root_four_interval(3, decimal_digits) + + +def nth_root_four_interval( + root_degree: int, + decimal_digits: int = 24, +) -> RationalInterval: + """Return a rational enclosure of the positive ``root_degree`` root of four.""" + + if root_degree < 1: + raise ValueError("root degree must be positive") + if decimal_digits < 1: + raise ValueError("decimal_digits must be positive") + denominator = 10**decimal_digits + low = denominator + high = 4 * denominator + target = 4 * denominator**root_degree + while low + 1 < high: + middle = (low + high) // 2 + if middle**root_degree <= target: + low = middle + else: + high = middle + return RationalInterval( + Fraction(low, denominator), + Fraction(high, denominator), + ) + + +def outward_quantize( + interval: RationalInterval, + denominator: int, +) -> RationalInterval: + """Round an interval outward onto a fixed rational grid.""" + + if denominator <= 0: + raise ValueError("denominator must be positive") + lower_scaled = interval.lower * denominator + upper_scaled = interval.upper * denominator + lower_integer = lower_scaled.numerator // lower_scaled.denominator + upper_integer = -((-upper_scaled.numerator) // upper_scaled.denominator) + return RationalInterval( + Fraction(lower_integer, denominator), + Fraction(upper_integer, denominator), + ) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/lattice.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/lattice.py new file mode 100644 index 000000000..612ec501c --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/lattice.py @@ -0,0 +1,55 @@ +from __future__ import annotations + +from dataclasses import dataclass + + +@dataclass(frozen=True, slots=True) +class SquareLattice: + length: int + + def __post_init__(self) -> None: + if self.length < 4 or self.length % 2: + raise ValueError("periodic matching lattice requires even L >= 4") + + @property + def n_sites(self) -> int: + return self.length * self.length + + def site(self, x: int, y: int) -> int: + return (y % self.length) * self.length + (x % self.length) + + def coordinates(self, site: int) -> tuple[int, int]: + if not 0 <= site < self.n_sites: + raise ValueError("site outside lattice") + return site % self.length, site // self.length + + @staticmethod + def canonical_bond(u: int, v: int) -> tuple[int, int]: + if u == v: + raise ValueError("self bonds are not allowed") + return (u, v) if u < v else (v, u) + + def bonds(self) -> tuple[tuple[int, int], ...]: + edges: set[tuple[int, int]] = set() + for y in range(self.length): + for x in range(self.length): + u = self.site(x, y) + edges.add(self.canonical_bond(u, self.site(x + 1, y))) + edges.add(self.canonical_bond(u, self.site(x, y + 1))) + return tuple(sorted(edges)) + + def four_matchings(self) -> tuple[tuple[tuple[int, int], ...], ...]: + groups: list[list[tuple[int, int]]] = [[], [], [], []] + for y in range(self.length): + for x in range(0, self.length, 2): + groups[0].append(self.canonical_bond(self.site(x, y), self.site(x + 1, y))) + groups[1].append( + self.canonical_bond(self.site(x + 1, y), self.site(x + 2, y)) + ) + for x in range(self.length): + for y in range(0, self.length, 2): + groups[2].append(self.canonical_bond(self.site(x, y), self.site(x, y + 1))) + groups[3].append( + self.canonical_bond(self.site(x, y + 1), self.site(x, y + 2)) + ) + return tuple(tuple(sorted(set(group))) for group in groups) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/lie_series.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/lie_series.py new file mode 100644 index 000000000..06814e0ef --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/lie_series.py @@ -0,0 +1,124 @@ +from __future__ import annotations + +from math import factorial +from typing import Sequence + +import mpmath as mp + +from .higher_order import ScalarStage +from .local_commutators import SymplecticDyadicLocalDensityEvaluator + + +Word = tuple[int, ...] +WordPolynomial = dict[Word, mp.mpf] +WordSeries = list[WordPolynomial] + + +def _series_identity(order: int) -> WordSeries: + result: WordSeries = [{} for _ in range(order + 1)] + result[0][()] = mp.mpf(1) + return result + + +def _series_add(left: WordSeries, right: WordSeries) -> WordSeries: + result: WordSeries = [] + for left_degree, right_degree in zip(left, right): + terms = dict(left_degree) + for word, coefficient in right_degree.items(): + updated = terms.get(word, mp.mpf(0)) + coefficient + if updated: + terms[word] = updated + else: + terms.pop(word, None) + result.append(terms) + return result + + +def _series_scale(series: WordSeries, scalar: mp.mpf) -> WordSeries: + return [ + {word: scalar * coefficient for word, coefficient in degree.items()} + for degree in series + ] + + +def _series_multiply(left: WordSeries, right: WordSeries) -> WordSeries: + order = len(left) - 1 + result: WordSeries = [{} for _ in range(order + 1)] + for degree in range(order + 1): + terms = result[degree] + for left_degree in range(degree + 1): + for left_word, left_coefficient in left[left_degree].items(): + for right_word, right_coefficient in right[degree - left_degree].items(): + word = left_word + right_word + terms[word] = terms.get(word, mp.mpf(0)) + ( + left_coefficient * right_coefficient + ) + return result + + +def abstract_exponential_series( + fragment_index: int, + coefficient: mp.mpf, + order: int, +) -> WordSeries: + result: WordSeries = [{} for _ in range(order + 1)] + for degree in range(order + 1): + result[degree][(fragment_index,) * degree] = ( + coefficient**degree / factorial(degree) + ) + return result + + +def abstract_formula_log_series( + stages: Sequence[ScalarStage], + order: int, +) -> WordSeries: + product = _series_identity(order) + for stage in stages: + product = _series_multiply( + product, + abstract_exponential_series( + stage.fragment_index, + stage.coefficient, + order, + ), + ) + delta = _series_add(product, _series_scale(_series_identity(order), mp.mpf(-1))) + logarithm: WordSeries = [{} for _ in range(order + 1)] + power = _series_identity(order) + for exponent in range(1, order + 1): + power = _series_multiply(power, delta) + logarithm = _series_add( + logarithm, + _series_scale(power, mp.mpf(1 if exponent % 2 else -1) / exponent), + ) + return logarithm + + +def leading_lie_local_coefficients( + stages: Sequence[ScalarStage], + degree: int, +) -> dict[tuple[int, int], mp.mpf]: + """Map a homogeneous log coefficient to its local Pauli density. + + The Dynkin--Specht--Wever projection maps every word to its right-nested + commutator and divides by the homogeneous degree. + """ + + logarithm = abstract_formula_log_series(stages, degree) + evaluator = SymplecticDyadicLocalDensityEvaluator(shared_coordinates=True) + scale = mp.mpf(1) / (degree * (1 << (degree + 1))) + coefficients: dict[tuple[int, int], mp.mpf] = {} + for word, word_coefficient in logarithm[degree].items(): + if not word_coefficient: + continue + operator = evaluator.evaluate(word) + for pauli, numerator in operator.items(): + updated = coefficients.get(pauli, mp.mpf(0)) + ( + word_coefficient * numerator * scale + ) + if updated: + coefficients[pauli] = updated + else: + coefficients.pop(pauli, None) + return coefficients diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/local_commutators.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/local_commutators.py new file mode 100644 index 000000000..feed35e8a --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/local_commutators.py @@ -0,0 +1,397 @@ +from __future__ import annotations + +from dataclasses import dataclass, field +from fractions import Fraction +from typing import Iterable, Sequence + +from .algebra import ( + PauliString, + PauliSum, + commutator, + pauli_strings_commute, +) + + +Coordinate = tuple[int, int] +CoordinateBond = tuple[Coordinate, Coordinate] + + +@dataclass +class CoordinateRegistry: + coordinate_to_site: dict[Coordinate, int] = field(default_factory=dict) + site_to_coordinate: list[Coordinate] = field(default_factory=list) + + def site(self, coordinate: Coordinate) -> int: + if coordinate not in self.coordinate_to_site: + self.coordinate_to_site[coordinate] = len(self.site_to_coordinate) + self.site_to_coordinate.append(coordinate) + return self.coordinate_to_site[coordinate] + + def coordinate(self, site: int) -> Coordinate: + return self.site_to_coordinate[site] + + +def matching_partner(coordinate: Coordinate, color: int) -> Coordinate: + x, y = coordinate + if color == 0: + return (x + 1, y) if x % 2 == 0 else (x - 1, y) + if color == 1: + return (x + 1, y) if x % 2 == 1 else (x - 1, y) + if color == 2: + return (x, y + 1) if y % 2 == 0 else (x, y - 1) + if color == 3: + return (x, y + 1) if y % 2 == 1 else (x, y - 1) + raise ValueError("matching color must be 0, 1, 2 or 3") + + +def canonical_coordinate_bond(u: Coordinate, v: Coordinate) -> CoordinateBond: + return (u, v) if u < v else (v, u) + + +def representative_bonds(color: int) -> tuple[CoordinateBond, CoordinateBond]: + if color in (0, 1): + start_x = color + return ( + canonical_coordinate_bond((start_x, 0), (start_x + 1, 0)), + canonical_coordinate_bond((start_x, 1), (start_x + 1, 1)), + ) + start_y = color - 2 + return ( + canonical_coordinate_bond((0, start_y), (0, start_y + 1)), + canonical_coordinate_bond((1, start_y), (1, start_y + 1)), + ) + + +def coordinate_heisenberg_bond( + registry: CoordinateRegistry, + bond: CoordinateBond, +) -> PauliSum: + u, v = (registry.site(coordinate) for coordinate in bond) + result = PauliSum.zero() + for op in ("X", "Y", "Z"): + result += PauliSum.term( + PauliString({u: op, v: op}), + Fraction(1, 4), + ) + return result + + +def local_fragment_adjoint( + registry: CoordinateRegistry, + color: int, + operator: PauliSum, +) -> PauliSum: + candidate_bonds: set[CoordinateBond] = set() + for pauli in operator.terms: + for site in pauli.support: + coordinate = registry.coordinate(site) + candidate_bonds.add( + canonical_coordinate_bond( + coordinate, + matching_partner(coordinate, color), + ) + ) + result = PauliSum.zero() + for bond in sorted(candidate_bonds): + result += commutator(coordinate_heisenberg_bond(registry, bond), operator) + return result + + +def local_nested_commutator_density( + key: tuple[int, ...], + cache: dict[tuple[int, ...], tuple[CoordinateRegistry, PauliSum]] | None = None, +) -> tuple[CoordinateRegistry, PauliSum]: + """Return one 2x2-cell density for ``(outermost,...,base)``.""" + + # A fresh registry per complete key keeps cached Pauli site labels valid. + registry = CoordinateRegistry() + base = key[-1] + operator = PauliSum.zero() + for bond in representative_bonds(base): + operator += coordinate_heisenberg_bond(registry, bond) + for color in reversed(key[:-1]): + operator = local_fragment_adjoint(registry, color, operator) + return registry, operator + + +def local_nested_pauli_l1_density(key: tuple[int, ...]) -> Fraction: + _, operator = local_nested_commutator_density(key) + return operator.exact_axis_l1() + + +class LocalDensityEvaluator: + """Suffix-memoized evaluator for connected matching commutators.""" + + def __init__(self) -> None: + self.registries = {color: CoordinateRegistry() for color in range(4)} + self.cache: dict[tuple[int, ...], PauliSum] = {} + + def evaluate(self, key: tuple[int, ...]) -> PauliSum: + if key in self.cache: + return self.cache[key] + base = key[-1] + registry = self.registries[base] + if len(key) == 1: + operator = PauliSum.zero() + for bond in representative_bonds(base): + operator += coordinate_heisenberg_bond(registry, bond) + else: + operator = local_fragment_adjoint( + registry, + key[0], + self.evaluate(key[1:]), + ) + self.cache[key] = operator + return operator + + def pauli_l1_density(self, key: tuple[int, ...]) -> Fraction: + return self.evaluate(key).exact_axis_l1() + + +GaussianInteger = tuple[int, int] +DyadicTerms = dict[PauliString, GaussianInteger] + + +def _multiply_gaussian_by_phase( + coefficient: GaussianInteger, + phase_real: int, + phase_imag: int, +) -> GaussianInteger: + real, imag = coefficient + return ( + real * phase_real - imag * phase_imag, + real * phase_imag + imag * phase_real, + ) + + +def _accumulate_gaussian( + terms: DyadicTerms, + pauli: PauliString, + coefficient: GaussianInteger, +) -> None: + previous = terms.get(pauli) + if previous is None: + if coefficient != (0, 0): + terms[pauli] = coefficient + return + updated = (previous[0] + coefficient[0], previous[1] + coefficient[1]) + if updated == (0, 0): + del terms[pauli] + else: + terms[pauli] = updated + + +def dyadic_local_fragment_adjoint( + registry: CoordinateRegistry, + color: int, + operator: DyadicTerms, +) -> DyadicTerms: + """Apply ``ad_H_color`` to a Gaussian-integer numerator map. + + A Heisenberg bond coefficient is ``1/4`` and a nonzero Pauli + commutator contributes a factor two. Thus every adjoint increases the + shared binary denominator exponent by exactly one. + """ + + candidate_bonds: set[CoordinateBond] = set() + for pauli in operator: + for site in pauli.support: + coordinate = registry.coordinate(site) + candidate_bonds.add( + canonical_coordinate_bond( + coordinate, + matching_partner(coordinate, color), + ) + ) + + result: DyadicTerms = {} + for bond in sorted(candidate_bonds): + u, v = (registry.site(coordinate) for coordinate in bond) + for op in ("X", "Y", "Z"): + bond_pauli = PauliString({u: op, v: op}) + for pauli, coefficient in operator.items(): + if pauli_strings_commute(bond_pauli, pauli): + continue + phase, product_pauli = bond_pauli.multiply(pauli) + _accumulate_gaussian( + result, + product_pauli, + _multiply_gaussian_by_phase( + coefficient, + int(phase.real), + int(phase.imag), + ), + ) + return result + + +class DyadicLocalDensityEvaluator: + """Fast exact evaluator with a shared power-of-two denominator. + + A key of length ``d`` has common coefficient scale ``2**(-(d+1))``. + """ + + def __init__(self) -> None: + self.registries = {color: CoordinateRegistry() for color in range(4)} + self.cache: dict[tuple[int, ...], DyadicTerms] = {} + + @staticmethod + def denominator_exponent(key: tuple[int, ...]) -> int: + return len(key) + 1 + + def evaluate(self, key: tuple[int, ...]) -> DyadicTerms: + if not key: + raise ValueError("nested-commutator key must be nonempty") + if key in self.cache: + return self.cache[key] + base = key[-1] + registry = self.registries[base] + if len(key) == 1: + operator: DyadicTerms = {} + for bond in representative_bonds(base): + u, v = (registry.site(coordinate) for coordinate in bond) + for op in ("X", "Y", "Z"): + _accumulate_gaussian( + operator, + PauliString({u: op, v: op}), + (1, 0), + ) + else: + operator = dyadic_local_fragment_adjoint( + registry, + key[0], + self.evaluate(key[1:]), + ) + self.cache[key] = operator + return operator + + def pauli_l1_density(self, key: tuple[int, ...]) -> Fraction: + numerator = sum( + abs(real) + abs(imag) + for real, imag in self.evaluate(key).values() + ) + return Fraction(numerator, 1 << self.denominator_exponent(key)) + + +SymplecticPauli = tuple[int, int] +SymplecticTerms = dict[SymplecticPauli, int] + + +def _iter_set_bits(mask: int) -> Iterable[int]: + while mask: + least = mask & -mask + yield least.bit_length() - 1 + mask ^= least + + +def _symplectic_product_phase( + left: SymplecticPauli, + right: SymplecticPauli, +) -> tuple[int, SymplecticPauli]: + """Return the exponent ``e`` in ``P(left)P(right)=i**e P(product)``.""" + + left_x, left_z = left + right_x, right_z = right + result = (left_x ^ right_x, left_z ^ right_z) + exponent = ( + (left_x & left_z).bit_count() + + (right_x & right_z).bit_count() + + 2 * (left_z & right_x).bit_count() + - (result[0] & result[1]).bit_count() + ) % 4 + return exponent, result + + +def _symplectic_anticommutes( + left: SymplecticPauli, + right: SymplecticPauli, +) -> bool: + return ( + ((left[0] & right[1]).bit_count() + (left[1] & right[0]).bit_count()) + & 1 + ) == 1 + + +def _symplectic_bond_terms(first: int, second: int) -> tuple[SymplecticPauli, ...]: + sites = (1 << first) | (1 << second) + return ((sites, 0), (sites, sites), (0, sites)) + + +def symplectic_local_fragment_adjoint( + registry: CoordinateRegistry, + color: int, + operator: SymplecticTerms, +) -> SymplecticTerms: + candidate_bonds: set[CoordinateBond] = set() + for x_mask, z_mask in operator: + for site in _iter_set_bits(x_mask | z_mask): + coordinate = registry.coordinate(site) + candidate_bonds.add( + canonical_coordinate_bond( + coordinate, + matching_partner(coordinate, color), + ) + ) + + result: SymplecticTerms = {} + for bond in sorted(candidate_bonds): + first, second = (registry.site(coordinate) for coordinate in bond) + for bond_pauli in _symplectic_bond_terms(first, second): + for pauli, coefficient in operator.items(): + if not _symplectic_anticommutes(bond_pauli, pauli): + continue + phase, product_pauli = _symplectic_product_phase(bond_pauli, pauli) + # Anticommuting Hermitian Paulis have product phase +/- i. + sign = 1 if phase == 1 else -1 + updated = result.get(product_pauli, 0) + sign * coefficient + if updated: + result[product_pauli] = updated + else: + result.pop(product_pauli, None) + return result + + +class SymplecticDyadicLocalDensityEvaluator: + """Fastest exact evaluator: bit-packed Paulis and integer coefficients. + + The common phase ``i**(len(key)-1)`` and denominator + ``2**(len(key)+1)`` are factored out of every coefficient. + """ + + def __init__(self, *, shared_coordinates: bool = False) -> None: + if shared_coordinates: + registry = CoordinateRegistry() + self.registries = {color: registry for color in range(4)} + else: + self.registries = {color: CoordinateRegistry() for color in range(4)} + self.cache: dict[tuple[int, ...], SymplecticTerms] = {} + + @staticmethod + def denominator_exponent(key: tuple[int, ...]) -> int: + return len(key) + 1 + + def evaluate(self, key: tuple[int, ...]) -> SymplecticTerms: + if not key: + raise ValueError("nested-commutator key must be nonempty") + if key in self.cache: + return self.cache[key] + base = key[-1] + registry = self.registries[base] + if len(key) == 1: + operator: SymplecticTerms = {} + for bond in representative_bonds(base): + first, second = (registry.site(coordinate) for coordinate in bond) + for pauli in _symplectic_bond_terms(first, second): + operator[pauli] = operator.get(pauli, 0) + 1 + else: + operator = symplectic_local_fragment_adjoint( + registry, + key[0], + self.evaluate(key[1:]), + ) + self.cache[key] = operator + return operator + + def pauli_l1_density(self, key: tuple[int, ...]) -> Fraction: + numerator = sum(abs(value) for value in self.evaluate(key).values()) + return Fraction(numerator, 1 << self.denominator_exponent(key)) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/matching_screen.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/matching_screen.py new file mode 100644 index 000000000..48e3abd10 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/matching_screen.py @@ -0,0 +1,45 @@ +from __future__ import annotations + +from itertools import permutations + +from .defect_series import right_generator_local_series +from .higher_order import ScalarStage, fourth_order_suzuki_stages + + +MATCHING_ORDERS = tuple(permutations(range(4))) + + +def permutation_from_index(index: int) -> tuple[int, int, int, int]: + if index < 0 or index >= len(MATCHING_ORDERS): + raise IndexError("permutation index must be in [0, 23]") + return MATCHING_ORDERS[index] + + +def screen_matching_order(index: int, order: int = 6) -> dict[str, object]: + if order < 4: + raise ValueError("screening order must be at least four") + permutation = permutation_from_index(index) + stages = tuple( + ScalarStage(permutation[stage.fragment_index], stage.coefficient) + for stage in fourth_order_suzuki_stages(4) + ) + series = right_generator_local_series(stages, order) + metrics = { + str(degree): { + "term_count": len(series[degree]), + "coefficient_l1": float( + sum(abs(value) for value in series[degree].values()) + ), + } + for degree in range(4, order + 1) + } + return { + "schema_version": 1, + "kind": "issue128_matching_order_screen", + "trusted": False, + "purpose": "discovery-ranking", + "permutation_index": index, + "permutation": list(permutation), + "order": order, + "metrics": metrics, + } diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/orbits.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/orbits.py new file mode 100644 index 000000000..ecbb0a6b6 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/orbits.py @@ -0,0 +1,137 @@ +from __future__ import annotations + +from dataclasses import dataclass +from typing import Iterable + +from .algebra import PauliString, PauliSum, QComplex +from .lattice import SquareLattice + + +GridOp = tuple[tuple[int, int, str], ...] + + +@dataclass(frozen=True) +class TranslationOrbit: + representative: GridOp + # Coefficient used in one unit-cell density. Translating and summing this + # density reconstructs the global orbit, including finite-size stabilizers. + coefficient: QComplex + members: tuple[PauliString, ...] + unit_cell: tuple[int, int] = (1, 1) + global_coefficient: QComplex = QComplex() + stabilizer: int = 1 + + @property + def width(self) -> int: + return 1 + max(x for x, _, _ in self.representative) + + @property + def height(self) -> int: + return 1 + max(y for _, y, _ in self.representative) + + +def translate_pauli_torus( + pauli: PauliString, + lattice: SquareLattice, + dx: int, + dy: int, +) -> PauliString: + translated: dict[int, str] = {} + for site, op in pauli.ops: + x, y = lattice.coordinates(site) + translated[lattice.site(x + dx, y + dy)] = op + return PauliString(translated) + + +def _grid_form( + pauli: PauliString, + lattice: SquareLattice, + unit_cell: tuple[int, int], +) -> GridOp: + coordinates = [ + (*lattice.coordinates(site), op) + for site, op in pauli.ops + ] + min_x = min(x for x, _, _ in coordinates) + min_y = min(y for _, y, _ in coordinates) + step_x, step_y = unit_cell + shift_x = (min_x // step_x) * step_x + shift_y = (min_y // step_y) * step_y + return tuple( + sorted((x - shift_x, y - shift_y, op) for x, y, op in coordinates) + ) + + +def canonical_translation( + pauli: PauliString, + lattice: SquareLattice, + unit_cell: tuple[int, int] = (1, 1), +) -> tuple[GridOp, tuple[PauliString, ...]]: + if not pauli.ops: + return (), (pauli,) + step_x, step_y = unit_cell + if lattice.length % step_x or lattice.length % step_y: + raise ValueError("unit cell must divide lattice length") + translations = { + translate_pauli_torus(pauli, lattice, dx, dy) + for dx in range(0, lattice.length, step_x) + for dy in range(0, lattice.length, step_y) + } + candidates: list[tuple[tuple[int, int, int, GridOp], GridOp]] = [] + for translated in translations: + grid = _grid_form(translated, lattice, unit_cell) + width = 1 + max(x for x, _, _ in grid) + height = 1 + max(y for _, y, _ in grid) + candidates.append(((width + height, width, height, grid), grid)) + representative = min(candidates)[1] + return representative, tuple(sorted(translations)) + + +def translation_orbits( + operator: PauliSum, + lattice: SquareLattice, + *, + require_invariant: bool = True, + unit_cell: tuple[int, int] = (1, 1), +) -> tuple[TranslationOrbit, ...]: + remaining = set(operator.terms) + result: list[TranslationOrbit] = [] + while remaining: + seed = min(remaining) + representative, members = canonical_translation(seed, lattice, unit_cell) + present = tuple(member for member in members if member in operator.terms) + coefficients = {operator.terms[member] for member in present} + if require_invariant and ( + len(present) != len(members) or len(coefficients) != 1 + ): + raise ValueError("operator is not translation invariant orbit by orbit") + global_coefficient = operator.terms[seed] + step_x, step_y = unit_cell + n_translations = ( + lattice.length // step_x + ) * ( + lattice.length // step_y + ) + if n_translations % len(members): + raise ArithmeticError("translation orbit size does not divide group size") + stabilizer = n_translations // len(members) + coefficient = global_coefficient / stabilizer + result.append( + TranslationOrbit( + representative, + coefficient, + present, + unit_cell, + global_coefficient, + stabilizer, + ) + ) + remaining.difference_update(present) + return tuple(sorted(result, key=lambda orbit: orbit.representative)) + + +def embed_grid_op(grid: GridOp, patch_width: int, offset_x: int, offset_y: int) -> PauliString: + mapping: dict[int, str] = {} + for x, y, op in grid: + mapping[(y + offset_y) * patch_width + x + offset_x] = op + return PauliString(mapping) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/pareto.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/pareto.py new file mode 100644 index 000000000..626093a68 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/pareto.py @@ -0,0 +1,150 @@ +from __future__ import annotations + +from dataclasses import dataclass +from fractions import Fraction +from typing import Sequence + +from .intervals import RationalInterval, nth_root_four_interval, outward_quantize +from .refined_error import defect_tail_site_bound +from .rigorous_fourth import IntervalStage + + +def _second_order_stages( + n_fragments: int, + scale: RationalInterval, +) -> tuple[IntervalStage, ...]: + half = scale / 2 + return ( + *(IntervalStage(index, half) for index in range(n_fragments - 1)), + IntervalStage(n_fragments - 1, scale), + *(IntervalStage(index, half) for index in reversed(range(n_fragments - 1))), + ) + + +def _merge(stages: Sequence[IntervalStage]) -> tuple[IntervalStage, ...]: + merged: list[IntervalStage] = [] + for stage in stages: + if merged and merged[-1].fragment_index == stage.fragment_index: + previous = merged.pop() + merged.append( + IntervalStage( + stage.fragment_index, + previous.coefficient + stage.coefficient, + ) + ) + else: + merged.append(stage) + return tuple(merged) + + +def recursive_suzuki_interval_stages( + order: int, + n_fragments: int = 4, + *, + decimal_digits: int = 12, +) -> tuple[IntervalStage, ...]: + """Return the standard five-copy Suzuki formula of even ``order``.""" + + if order < 2 or order % 2: + raise ValueError("Suzuki order must be a positive even integer") + stages = _second_order_stages(n_fragments, RationalInterval.point(1)) + current_order = 2 + grid = 10**decimal_digits + while current_order < order: + next_order = current_order + 2 + root = nth_root_four_interval(next_order - 1, decimal_digits) + scale = outward_quantize( + RationalInterval.point(1) / (4 - root), + grid, + ) + copy_scales = (scale, scale, 1 - 4 * scale, scale, scale) + composed: list[IntervalStage] = [] + for copy_scale in copy_scales: + composed.extend( + IntervalStage( + stage.fragment_index, + stage.coefficient * copy_scale, + ) + for stage in stages + ) + stages = _merge(composed) + current_order = next_order + return stages + + +@dataclass(frozen=True) +class PublishedSuzukiPoint: + order: int + steps: int + stages_per_step: int + group_exponentials: int + global_error_bound: Fraction + + +def published_suzuki_tail_bound( + stages: Sequence[IntervalStage], + *, + order: int, + n_sites: int, + steps: int, +) -> Fraction: + """Rigorous generic locality bound using only the published formula order.""" + + return Fraction(n_sites) * defect_tail_site_bound( + stages, + steps, + first_omitted_degree=order, + ) + + +def minimum_published_suzuki_point( + order: int, + *, + n_sites: int, + tolerance: Fraction, + n_fragments: int = 4, + decimal_digits: int = 12, +) -> PublishedSuzukiPoint: + stages = recursive_suzuki_interval_stages( + order, + n_fragments, + decimal_digits=decimal_digits, + ) + + def bound(steps: int) -> Fraction: + return published_suzuki_tail_bound( + stages, + order=order, + n_sites=n_sites, + steps=steps, + ) + + low = 1 + high = 1 + while True: + try: + accepted = bound(high) <= tolerance + except ValueError: + accepted = False + if accepted: + break + high *= 2 + while low < high: + middle = (low + high) // 2 + try: + accepted = bound(middle) <= tolerance + except ValueError: + accepted = False + if accepted: + high = middle + else: + low = middle + 1 + + groups = (len(stages) - 1) * low + 1 + return PublishedSuzukiPoint( + order=order, + steps=low, + stages_per_step=len(stages), + group_exponentials=groups, + global_error_bound=bound(low), + ) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/processors.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/processors.py new file mode 100644 index 000000000..a030c43af --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/processors.py @@ -0,0 +1,166 @@ +from __future__ import annotations + +from dataclasses import dataclass +from fractions import Fraction +from math import sqrt +from typing import Sequence + +import sympy as sp + +from .algebra import PauliString, PauliSum, QComplex, commutator +from .hamiltonian import full_heisenberg_hamiltonian, heisenberg_bond +from .lattice import SquareLattice + + +def spin_chirality(u: int, v: int, w: int) -> PauliSum: + """Return chi(u,v,w) with [h_uv,h_vw] = -i chi(u,v,w).""" + + return commutator(heisenberg_bond(u, v), heisenberg_bond(v, w)).scale( + QComplex(0, 1) + ) + + +def global_chirality_color_basis( + lattice: SquareLattice, +) -> tuple[tuple[tuple[int, int], PauliSum], ...]: + """Sums of oriented path chiralities grouped by matching colors. + + Only color pairs ``a < b`` are retained because reversing the path + orientation changes the sign. + """ + + matchings = lattice.four_matchings() + neighbor: dict[tuple[int, int], int] = {} + for color, edges in enumerate(matchings): + for u, v in edges: + neighbor[(u, color)] = v + neighbor[(v, color)] = u + result: list[tuple[tuple[int, int], PauliSum]] = [] + for first in range(4): + for second in range(first + 1, 4): + operator = PauliSum.zero() + for center in range(lattice.n_sites): + operator += spin_chirality( + neighbor[(center, first)], + center, + neighbor[(center, second)], + ) + result.append(((first, second), operator)) + return tuple(result) + + +def processor_images( + hamiltonian: PauliSum, + basis: Sequence[PauliSum], +) -> tuple[PauliSum, ...]: + """Return i[Q_a,H], a Hermitian operator for every Hermitian Q_a.""" + + images = tuple( + commutator(operator, hamiltonian).scale(QComplex(0, 1)) + for operator in basis + ) + if not all(image.is_hermitian() for image in images): + raise ArithmeticError("processor image is not Hermitian") + return images + + +@dataclass(frozen=True) +class ProcessorObstruction: + coefficients: tuple[Fraction, ...] + residual: PauliSum + target_l2: float + residual_l2: float + exact_solution: bool + + @property + def relative_l2(self) -> float: + return self.residual_l2 / self.target_l2 if self.target_l2 else 0.0 + + +def _real_coefficient(operator: PauliSum, pauli: PauliString) -> Fraction: + coefficient = operator.terms.get(pauli, QComplex()) + if coefficient.imag: + raise ValueError("processor projection requires Hermitian real Pauli coefficients") + return coefficient.real + + +def solve_processor_obstruction( + target: PauliSum, + images: Sequence[PauliSum], +) -> ProcessorObstruction: + """Project ``-target`` onto the exact rational span of processor images. + + The projection metric is the Hilbert--Schmidt/Pauli coefficient + Euclidean metric. It is used only to diagnose the algebraic obstruction, + not as an operator-norm certificate. + """ + + paulis = sorted( + set(target.terms).union(*(set(image.terms) for image in images)) + ) + columns = len(images) + gram = [[Fraction() for _ in range(columns)] for _ in range(columns)] + rhs = [Fraction() for _ in range(columns)] + for pauli in paulis: + row = [_real_coefficient(image, pauli) for image in images] + target_value = _real_coefficient(target, pauli) + for left in range(columns): + rhs[left] -= row[left] * target_value + for right in range(columns): + gram[left][right] += row[left] * row[right] + + matrix = sp.Matrix( + [[sp.Rational(value.numerator, value.denominator) for value in row] for row in gram] + ) + vector = sp.Matrix( + [sp.Rational(value.numerator, value.denominator) for value in rhs] + ) + solution_set = sp.linsolve((matrix, vector)) + solution_tuple = next(iter(solution_set), ()) + if not solution_tuple: + coefficients = tuple(Fraction() for _ in images) + else: + substitutions = { + symbol: sp.Integer(0) + for expression in solution_tuple + for symbol in expression.free_symbols + } + coefficients = tuple( + Fraction(int(value.p), int(value.q)) + for expression in solution_tuple + for value in [sp.cancel(expression.subs(substitutions))] + ) + + residual = target.copy() + for coefficient, image in zip(coefficients, images): + residual += image.scale(coefficient) + + def squared_l2(operator: PauliSum) -> Fraction: + total = Fraction() + for coefficient in operator.terms.values(): + if coefficient.imag: + total += coefficient.real**2 + coefficient.imag**2 + else: + total += coefficient.real**2 + return total + + target_l2 = sqrt(float(squared_l2(target))) + residual_l2 = sqrt(float(squared_l2(residual))) + return ProcessorObstruction( + coefficients=coefficients, + residual=residual, + target_l2=target_l2, + residual_l2=residual_l2, + exact_solution=not residual, + ) + + +def heisenberg_color_processor_obstruction( + lattice: SquareLattice, + target: PauliSum, +) -> tuple[tuple[tuple[int, int], ...], ProcessorObstruction]: + labeled = global_chirality_color_basis(lattice) + labels = tuple(label for label, _ in labeled) + basis = tuple(operator for _, operator in labeled) + images = processor_images(full_heisenberg_hamiltonian(lattice), basis) + return labels, solve_processor_obstruction(target, images) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/refined_error.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/refined_error.py new file mode 100644 index 000000000..da2f7a5d7 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/refined_error.py @@ -0,0 +1,425 @@ +from __future__ import annotations + +from dataclasses import dataclass +from fractions import Fraction +from math import factorial +from typing import Sequence + +from .intervals import RationalInterval, outward_quantize +from .local_commutators import ( + CoordinateRegistry, + SymplecticDyadicLocalDensityEvaluator, + SymplecticPauli, +) +from .rigorous_fourth import ( + IntervalStage, + fourth_order_suzuki_interval_stages, +) + + +IntervalWord = tuple[int, ...] +IntervalWordSeries = list[dict[IntervalWord, RationalInterval]] + +# For h=(XX+YY+ZZ)/4 and any phase-free Pauli string P, either zero or +# exactly two of XX, YY, ZZ anticommute with P. Each nonzero commutator +# contributes l1 weight 2/4, hence ||[h,P]||_{P,1} <= 1. +HEISENBERG_BOND_PAULI_L1_GROWTH = Fraction(1) + + +def symplectic_pauli_from_coordinates( + registry: CoordinateRegistry, + coordinates: Sequence[tuple[int, int, str]], +) -> SymplecticPauli: + x_mask = z_mask = 0 + for x, y, op in coordinates: + if op not in {"X", "Y", "Z"}: + raise ValueError(f"unsupported Pauli axis {op!r}") + bit = 1 << registry.site((x, y)) + if op in {"X", "Y"}: + x_mask |= bit + if op in {"Z", "Y"}: + z_mask |= bit + return x_mask, z_mask + + +def canonicalize_symplectic_unit_cell( + registry: CoordinateRegistry, + pauli: SymplecticPauli, + unit_cell: tuple[int, int] = (2, 2), +) -> SymplecticPauli: + step_x, step_y = unit_cell + if step_x < 1 or step_y < 1: + raise ValueError("unit-cell dimensions must be positive") + x_mask, z_mask = pauli + sites = x_mask | z_mask + coordinates: list[tuple[int, int, str]] = [] + while sites: + bit = sites & -sites + site = bit.bit_length() - 1 + x = bool(x_mask & bit) + z = bool(z_mask & bit) + op = "Y" if x and z else ("X" if x else "Z") + coordinate_x, coordinate_y = registry.coordinate(site) + coordinates.append((coordinate_x, coordinate_y, op)) + sites ^= bit + if not coordinates: + return 0, 0 + min_x = min(x for x, _, _ in coordinates) + min_y = min(y for _, y, _ in coordinates) + shift_x = -(min_x - min_x % step_x) + shift_y = -(min_y - min_y % step_y) + return symplectic_pauli_from_coordinates( + registry, + tuple( + (x + shift_x, y + shift_y, op) + for x, y, op in coordinates + ), + ) + + +def _interval_series_identity(order: int) -> IntervalWordSeries: + result = [{} for _ in range(order + 1)] + result[0][()] = RationalInterval.point(1) + return result + + +def _interval_series_add( + left: IntervalWordSeries, + right: IntervalWordSeries, +) -> IntervalWordSeries: + result: IntervalWordSeries = [] + zero = RationalInterval.point(0) + for left_degree, right_degree in zip(left, right): + terms = dict(left_degree) + for word, coefficient in right_degree.items(): + terms[word] = terms.get(word, zero) + coefficient + result.append(terms) + return result + + +def _interval_series_scale( + series: IntervalWordSeries, + scalar: Fraction, +) -> IntervalWordSeries: + return [ + {word: coefficient * scalar for word, coefficient in degree.items()} + for degree in series + ] + + +def _interval_series_multiply( + left: IntervalWordSeries, + right: IntervalWordSeries, +) -> IntervalWordSeries: + order = len(left) - 1 + result: IntervalWordSeries = [{} for _ in range(order + 1)] + zero = RationalInterval.point(0) + for degree in range(order + 1): + terms = result[degree] + for left_degree in range(degree + 1): + for left_word, left_coefficient in left[left_degree].items(): + for right_word, right_coefficient in right[degree - left_degree].items(): + word = left_word + right_word + terms[word] = terms.get(word, zero) + ( + left_coefficient * right_coefficient + ) + return result + + +def _interval_exponential( + fragment_index: int, + coefficient: RationalInterval, + order: int, +) -> IntervalWordSeries: + result: IntervalWordSeries = [{} for _ in range(order + 1)] + for degree in range(order + 1): + result[degree][(fragment_index,) * degree] = ( + coefficient**degree / factorial(degree) + ) + return result + + +def interval_formula_log_series( + stages: Sequence[IntervalStage], + order: int, +) -> IntervalWordSeries: + product = _interval_series_identity(order) + for stage in stages: + product = _interval_series_multiply( + product, + _interval_exponential( + stage.fragment_index, + stage.coefficient, + order, + ), + ) + delta = _interval_series_add( + product, + _interval_series_scale(_interval_series_identity(order), Fraction(-1)), + ) + logarithm: IntervalWordSeries = [{} for _ in range(order + 1)] + power = _interval_series_identity(order) + for exponent in range(1, order + 1): + power = _interval_series_multiply(power, delta) + logarithm = _interval_series_add( + logarithm, + _interval_series_scale( + power, + Fraction(1 if exponent % 2 else -1, exponent), + ), + ) + return logarithm + + +def _leading_e5_cell_interval_coefficients( + stages: Sequence[IntervalStage], + *, + quantization_digits: int, + canonicalize: bool, +) -> dict[SymplecticPauli, RationalInterval]: + logarithm = interval_formula_log_series(stages, 5) + grid = 10**quantization_digits + word_endpoints: dict[IntervalWord, tuple[int, int]] = {} + for word, coefficient in logarithm[5].items(): + rounded = outward_quantize(coefficient, grid) + word_endpoints[word] = ( + rounded.lower.numerator * (grid // rounded.lower.denominator), + rounded.upper.numerator * (grid // rounded.upper.denominator), + ) + + evaluator = SymplecticDyadicLocalDensityEvaluator(shared_coordinates=True) + registry = evaluator.registries[0] + coefficients: dict[SymplecticPauli, tuple[int, int]] = {} + for word, (word_lower, word_upper) in word_endpoints.items(): + for raw_pauli, numerator in evaluator.evaluate(word).items(): + pauli = ( + canonicalize_symplectic_unit_cell(registry, raw_pauli) + if canonicalize + else raw_pauli + ) + lower, upper = coefficients.get(pauli, (0, 0)) + if numerator >= 0: + lower += numerator * word_lower + upper += numerator * word_upper + else: + lower += numerator * word_upper + upper += numerator * word_lower + if lower or upper: + coefficients[pauli] = (lower, upper) + else: + coefficients.pop(pauli, None) + # Dynkin projection divides by degree five; local depth-five coefficients + # have common dyadic denominator 2**6. + denominator = grid * 5 * (1 << 6) + return { + pauli: RationalInterval( + Fraction(lower, denominator), + Fraction(upper, denominator), + ) + for pauli, (lower, upper) in coefficients.items() + } + + +def certified_leading_e5_cell_l1( + stages: Sequence[IntervalStage], + *, + quantization_digits: int = 24, +) -> Fraction: + coefficients = _leading_e5_cell_interval_coefficients( + stages, + quantization_digits=quantization_digits, + canonicalize=False, + ) + return sum( + (coefficient.abs_upper() for coefficient in coefficients.values()), + Fraction(), + ) + + +def certified_d4_cell_coefficients( + stages: Sequence[IntervalStage], + *, + quantization_digits: int = 18, +) -> dict[SymplecticPauli, RationalInterval]: + return { + pauli: coefficient * 5 + for pauli, coefficient in _leading_e5_cell_interval_coefficients( + stages, + quantization_digits=quantization_digits, + canonicalize=True, + ).items() + } + + +def certified_e7_cell_l1_majorant( + stages: Sequence[IntervalStage], +) -> Fraction: + logarithm = interval_formula_log_series(stages, 7) + word_l1 = sum( + (coefficient.abs_upper() for coefficient in logarithm[7].values()), + Fraction(), + ) + # A length-seven right-nested commutator starts from the 3/2 l1 cell + # density and gains at most s at support size s=2,...,7. A matching + # contains at most one overlapping bond per support site, and one bond + # has exact Pauli-l1 growth constant one. + nested_max = Fraction(3, 2) + for support_size in range(2, 8): + nested_max *= ( + HEISENBERG_BOND_PAULI_L1_GROWTH * support_size + ) + return word_l1 * nested_max / 7 + + +def _abs_upper(interval: RationalInterval) -> Fraction: + return interval.abs_upper() + + +def defect_tail_site_bound( + stages: Sequence[IntervalStage], + steps: int, + *, + first_omitted_degree: int = 8, +) -> Fraction: + """Total-time, per-site tail bound for right-generator degrees >= q. + + A cell starts with Pauli-l1 density 3/2. After ``q`` local adjoints, + support counting gives at most + + (3/2) * (q+1)! + + per cell. The conjugation Taylor coefficient contributes ``1/q!``; + the Duhamel time integral contributes ``1/(q+1)``. Those factorial + factors cancel, leaving the geometric series summed below. Dividing + the four-site cell density by four produces the prefactor 3/8. + """ + + prefix = Fraction() + total = Fraction() + for stage in stages: + coefficient = _abs_upper(stage.coefficient) + ratio = ( + HEISENBERG_BOND_PAULI_L1_GROWTH * prefix / steps + ) + if ratio >= 1: + raise ValueError("step count is outside the convergence region") + total += coefficient * ratio**first_omitted_degree / (1 - ratio) + prefix += coefficient + # Cell base density is 3/2; divide by four sites per cell. + return Fraction(3, 8) * total + + +@dataclass(frozen=True) +class RefinedFourthOrderBound: + steps: int + e5_site_l1: Fraction + e7_site_majorant: Fraction + degree_four_contribution: Fraction + degree_five_contribution: Fraction + degree_six_contribution: Fraction + degree_seven_contribution: Fraction + tail_contribution: Fraction + global_error_bound: Fraction + + +@dataclass(frozen=True) +class RefinedFourthOrderConstants: + stages: tuple[IntervalStage, ...] + e5_site_l1: Fraction + e7_site_majorant: Fraction + d4_site: Fraction + d5_site: Fraction + d6_site: Fraction + d7_site: Fraction + + +def build_refined_fourth_order_constants( + *, + decimal_digits: int = 12, + quantization_digits: int = 18, +) -> RefinedFourthOrderConstants: + stages, _ = fourth_order_suzuki_interval_stages( + 4, + decimal_digits=decimal_digits, + ) + e5_site = certified_leading_e5_cell_l1( + stages, + quantization_digits=quantization_digits, + ) / 4 + e7_site = certified_e7_cell_l1_majorant(stages) / 4 + + # ad_H on an s-site Pauli term has at most 4s overlapping square-lattice + # bonds. The exact single-bond Pauli-l1 growth constant is one. + h_e5 = 24 * e5_site + hh_e5 = 28 * h_e5 + hhh_e5 = 32 * hh_e5 + h_e7 = 32 * e7_site + + return RefinedFourthOrderConstants( + stages=tuple(stages), + e5_site_l1=e5_site, + e7_site_majorant=e7_site, + d4_site=5 * e5_site, + d5_site=2 * h_e5, + d6_site=7 * e7_site + Fraction(2, 3) * hh_e5, + d7_site=3 * h_e7 + Fraction(1, 6) * hhh_e5, + ) + + +def evaluate_refined_fourth_order_bound( + constants: RefinedFourthOrderConstants, + n_sites: int, + steps: int, + *, + d4_site_override: Fraction | None = None, +) -> RefinedFourthOrderBound: + if d4_site_override is not None: + if d4_site_override < 0: + raise ValueError("D4 site-density override must be nonnegative") + if d4_site_override > constants.d4_site: + raise ValueError( + "D4 site-density override cannot exceed the existing bound" + ) + + def contribution(degree: int, density: Fraction) -> Fraction: + return Fraction(n_sites) * density / ( + (degree + 1) * steps**degree + ) + + c4 = contribution( + 4, + ( + constants.d4_site + if d4_site_override is None + else d4_site_override + ), + ) + c5 = contribution(5, constants.d5_site) + c6 = contribution(6, constants.d6_site) + c7 = contribution(7, constants.d7_site) + tail = Fraction(n_sites) * defect_tail_site_bound(constants.stages, steps) + return RefinedFourthOrderBound( + steps=steps, + e5_site_l1=constants.e5_site_l1, + e7_site_majorant=constants.e7_site_majorant, + degree_four_contribution=c4, + degree_five_contribution=c5, + degree_six_contribution=c6, + degree_seven_contribution=c7, + tail_contribution=tail, + global_error_bound=c4 + c5 + c6 + c7 + tail, + ) + + +def refined_fourth_order_bound( + n_sites: int, + steps: int, + *, + decimal_digits: int = 12, + quantization_digits: int = 18, +) -> RefinedFourthOrderBound: + constants = build_refined_fourth_order_constants( + decimal_digits=decimal_digits, + quantization_digits=quantization_digits, + ) + return evaluate_refined_fourth_order_bound(constants, n_sites, steps) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/representation.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/representation.py new file mode 100644 index 000000000..a6f199885 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/representation.py @@ -0,0 +1,36 @@ +from __future__ import annotations + +from itertools import product + +import sympy as sp + +from .algebra import commutator +from .hamiltonian import four_matching_fragments +from .lattice import SquareLattice + + +def degree_three_four_matching_rank(length: int = 4) -> tuple[int, int, int]: + """Exact rational rank of all ``[Ha,[Hb,Hc]]`` operator images.""" + + lattice = SquareLattice(length) + fragments = four_matching_fragments(lattice) + keys = tuple(product(range(4), repeat=3)) + operators = tuple( + commutator( + fragments[first], + commutator(fragments[second], fragments[third]), + ) + for first, second, third in keys + ) + paulis = tuple(sorted(set().union(*(operator.terms for operator in operators)))) + row = {pauli: index for index, pauli in enumerate(paulis)} + matrix = sp.MutableSparseMatrix(len(paulis), len(keys), {}) + for column, operator in enumerate(operators): + for pauli, coefficient in operator.terms.items(): + if coefficient.imag: + raise ArithmeticError("degree-three image should be Hermitian") + matrix[row[pauli], column] = sp.Rational( + coefficient.real.numerator, + coefficient.real.denominator, + ) + return int(matrix.rank()), len(keys), len(paulis) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/resources.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/resources.py new file mode 100644 index 000000000..36a7ecc71 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/resources.py @@ -0,0 +1,83 @@ +from __future__ import annotations + +from dataclasses import dataclass +from fractions import Fraction + + +def ceil_nth_root_fraction(value: Fraction, degree: int) -> int: + if value < 0 or degree <= 0: + raise ValueError("requires a nonnegative value and positive degree") + if value == 0: + return 0 + low, high = 0, 1 + while high**degree * value.denominator < value.numerator: + high *= 2 + while low + 1 < high: + middle = (low + high) // 2 + if middle**degree * value.denominator >= value.numerator: + high = middle + else: + low = middle + return high + + +def required_steps( + error_constant: Fraction, + tolerance: Fraction, + formula_order: int, + time: Fraction = Fraction(1), +) -> int: + target = error_constant * time ** (formula_order + 1) / tolerance + return ceil_nth_root_fraction(target, formula_order) + + +def symmetric_group_exponentials(n_fragments: int, steps: int) -> int: + if n_fragments < 2 or steps < 1: + raise ValueError("requires at least two fragments and one step") + return (2 * n_fragments - 2) * steps + 1 + + +@dataclass(frozen=True) +class ResourceEstimate: + steps: int + group_exponentials: int + local_propagators: int + cnot_upper: int + + +def four_matching_resources( + n_sites: int, + steps: int, + *, + cnots_per_bond: int = 3, +) -> ResourceEstimate: + groups = symmetric_group_exponentials(4, steps) + local = groups * (n_sites // 2) + return ResourceEstimate(steps, groups, local, local * cnots_per_bond) + + +def three_l_path_resources( + n_sites: int, + steps: int, + *, + cnots_per_cluster: int = 9, +) -> ResourceEstimate: + groups = symmetric_group_exponentials(3, steps) + local = groups * (n_sites // 3) + return ResourceEstimate(steps, groups, local, local * cnots_per_cluster) + + +def fourth_order_four_matching_resources( + n_sites: int, + steps: int, + *, + stage_count: int = 31, + cnots_per_bond: int = 3, +) -> ResourceEstimate: + """Resources for a palindromic S4 macro-step with mergeable boundaries.""" + + if stage_count < 1 or steps < 1: + raise ValueError("stage_count and steps must be positive") + groups = (stage_count - 1) * steps + 1 + local = groups * (n_sites // 2) + return ResourceEstimate(steps, groups, local, local * cnots_per_bond) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/rigorous_fourth.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/rigorous_fourth.py new file mode 100644 index 000000000..cbed197d9 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/rigorous_fourth.py @@ -0,0 +1,424 @@ +from __future__ import annotations + +from dataclasses import dataclass +from fractions import Fraction +from math import factorial, lcm +from typing import Sequence + +import numpy as np + +from .higher_order import _multinomial, weak_compositions +from .intervals import ( + RationalInterval, + cube_root_four_interval, + outward_quantize, +) +from .local_commutators import ( + SymplecticDyadicLocalDensityEvaluator, + SymplecticPauli, +) + + +@dataclass(frozen=True, slots=True) +class IntervalStage: + fragment_index: int + coefficient: RationalInterval + + +@dataclass(frozen=True) +class FourthOrderRationalCertificate: + center: int + root_interval: RationalInterval + cell_density_upper: Fraction + site_density_upper: Fraction + theorem_terms: int + paired_terms: int + singleton_terms: int + + +@dataclass(frozen=True) +class FourthOrderPublishedTriangleCertificate: + center: int + root_interval: RationalInterval + cell_density_upper: Fraction + site_density_upper: Fraction + theorem_terms: int + expanded_commutator_keys: int + + +def _second_order_interval_stages( + n_fragments: int, + scale: RationalInterval, +) -> list[IntervalStage]: + half = scale / 2 + stages = [ + IntervalStage(index, half) + for index in range(n_fragments - 1) + ] + stages.append(IntervalStage(n_fragments - 1, scale)) + stages.extend( + IntervalStage(index, half) + for index in reversed(range(n_fragments - 1)) + ) + return stages + + +def _merge_interval_stages( + stages: Sequence[IntervalStage], +) -> tuple[IntervalStage, ...]: + merged: list[IntervalStage] = [] + for stage in stages: + if merged and merged[-1].fragment_index == stage.fragment_index: + previous = merged.pop() + merged.append( + IntervalStage( + stage.fragment_index, + previous.coefficient + stage.coefficient, + ) + ) + else: + merged.append(stage) + return tuple(merged) + + +def fourth_order_suzuki_interval_stages( + n_fragments: int = 4, + *, + decimal_digits: int = 24, +) -> tuple[tuple[IntervalStage, ...], RationalInterval]: + root = cube_root_four_interval(decimal_digits) + grid = 10**decimal_digits + u = outward_quantize( + RationalInterval.point(1) / (4 - root), + grid, + ) + scales = (u, u, 1 - 4 * u, u, u) + stages: list[IntervalStage] = [] + for scale in scales: + stages.extend(_second_order_interval_stages(n_fragments, scale)) + return _merge_interval_stages(stages), root + + +def _anticommutes(left: SymplecticPauli, right: SymplecticPauli) -> bool: + return ( + ((left[0] & right[1]).bit_count() + (left[1] & right[0]).bit_count()) + & 1 + ) == 1 + + +def _greedy_pairs( + paulis: Sequence[SymplecticPauli], + midpoint_coefficients: Sequence[int | Fraction], +) -> tuple[tuple[tuple[int, int], ...], tuple[int, ...]]: + # Floating point is used only to choose a partition. Soundness does not + # depend on that choice: every returned pair is checked exactly below. + magnitudes = np.fromiter( + (abs(float(value)) for value in midpoint_coefficients), + dtype=np.float64, + count=len(midpoint_coefficients), + ) + order = np.argsort(-magnitudes, kind="stable") + used = np.zeros(len(paulis), dtype=np.bool_) + pairs: list[tuple[int, int]] = [] + singles: list[int] = [] + for position, index_value in enumerate(order): + index = int(index_value) + if used[index] or midpoint_coefficients[index] == 0: + continue + used[index] = True + partner = None + for candidate_value in order[position + 1 :]: + candidate = int(candidate_value) + if used[candidate] or midpoint_coefficients[candidate] == 0: + continue + if _anticommutes(paulis[index], paulis[candidate]): + partner = candidate + break + if partner is None: + singles.append(index) + else: + used[partner] = True + pairs.append((index, partner)) + # Exactly-zero midpoint intervals are harmless singletons; including + # them is necessary when a narrow interval still contains nonzero values. + for index_value in order: + index = int(index_value) + if not used[index]: + used[index] = True + singles.append(index) + return tuple(pairs), tuple(singles) + + +def _rational_pair_bound( + coefficients: Sequence[RationalInterval], + pairs: Sequence[tuple[int, int]], + singles: Sequence[int], +) -> Fraction: + total = sum((coefficients[index].abs_upper() for index in singles), Fraction()) + for first, second in pairs: + left = coefficients[first] + right = coefficients[second] + # For a,b >= 0: + # sqrt(a^2+b^2) <= a+b-(1/2)min(a,b). + total += ( + left.abs_upper() + + right.abs_upper() + - min(left.abs_lower(), right.abs_lower()) / 2 + ) + return total + + +def _fixed_base_intervals( + base: Sequence[RationalInterval], + dyadic_denominator: int, +) -> tuple[int, tuple[tuple[int, int], ...]]: + common = 1 + for interval in base: + common = lcm( + common, + interval.lower.denominator, + interval.upper.denominator, + ) + endpoints = tuple( + ( + interval.lower.numerator * (common // interval.lower.denominator), + interval.upper.numerator * (common // interval.upper.denominator), + ) + for interval in base + ) + return common * dyadic_denominator, endpoints + + +def _fixed_linear_interval( + numerators: Sequence[int], + base_endpoints: Sequence[tuple[int, int]], +) -> tuple[int, int]: + lower = upper = 0 + for numerator, (base_lower, base_upper) in zip(numerators, base_endpoints): + if numerator >= 0: + lower += numerator * base_lower + upper += numerator * base_upper + else: + lower += numerator * base_upper + upper += numerator * base_lower + return lower, upper + + +def _fixed_abs_bounds(interval: tuple[int, int]) -> tuple[int, int]: + lower, upper = interval + absolute_upper = max(abs(lower), abs(upper)) + if lower <= 0 <= upper: + return 0, absolute_upper + return min(abs(lower), abs(upper)), absolute_upper + + +def _fixed_pair_bound_numerator( + intervals: Sequence[tuple[int, int]], + pairs: Sequence[tuple[int, int]], + singles: Sequence[int], +) -> int: + """Return the pair bound numerator over twice the common denominator.""" + + absolute = tuple(_fixed_abs_bounds(interval) for interval in intervals) + total = sum(2 * absolute[index][1] for index in singles) + for first, second in pairs: + first_lower, first_upper = absolute[first] + second_lower, second_upper = absolute[second] + total += ( + 2 * first_upper + + 2 * second_upper + - min(first_lower, second_lower) + ) + return total + + +def fourth_order_rational_pair_certificate( + *, + center: int = 17, + decimal_digits: int = 24, +) -> FourthOrderRationalCertificate: + """Build a fully rational S4 local-norm certificate.""" + + stages_left, root = fourth_order_suzuki_interval_stages( + 4, + decimal_digits=decimal_digits, + ) + stages = tuple(reversed(stages_left)) + count = len(stages) + if not 1 <= center <= count: + raise ValueError("center must use one-based stage indexing") + order = 4 + grouped: dict[ + tuple[tuple[int, ...], int], + Fraction, + ] = {} + base_by_j: dict[int, tuple[RationalInterval, ...]] = {} + theorem_terms = 0 + + def collect( + j: int, + indices: tuple[int, ...], + composition: tuple[int, ...], + ) -> None: + nonlocal theorem_terms + theorem_terms += 1 + outer: list[int] = [] + scalar = RationalInterval.point(_multinomial(order, composition)) + for stage_index, power in zip(indices, composition): + stage = stages[stage_index - 1] + scalar *= stage.coefficient**power + outer.extend([stage.fragment_index] * power) + if j not in base_by_j: + base = [RationalInterval.point(0) for _ in range(4)] + for base_index in range(1, j): + stage = stages[base_index - 1] + base[stage.fragment_index] += stage.coefficient + base_by_j[j] = tuple(base) + key = (tuple(outer), j) + grouped[key] = grouped.get(key, Fraction()) + scalar.abs_upper() + + for j in range(2, center + 1): + indices = tuple(range(center, j - 1, -1)) + for composition in weak_compositions(order, len(indices)): + if composition[-1]: + collect(j, indices, composition) + for j in range(center + 1, count + 1): + indices = tuple(range(center + 1, j + 1)) + for composition in weak_compositions(order, len(indices)): + if composition[-1]: + collect(j, indices, composition) + + evaluator = SymplecticDyadicLocalDensityEvaluator(shared_coordinates=True) + denominator = 1 << (order + 2) + fixed_base = { + j: _fixed_base_intervals(base, denominator) + for j, base in base_by_j.items() + } + coefficient_cache: dict[ + tuple[int, tuple[int, int, int, int]], + tuple[int, int], + ] = {} + total = Fraction() + paired_terms = 0 + singleton_terms = 0 + for (outer, j), scalar_upper in grouped.items(): + operators = [evaluator.evaluate(outer + (base,)) for base in range(4)] + paulis = tuple(sorted(set().union(*(operator.keys() for operator in operators)))) + common_denominator, base_endpoints = fixed_base[j] + coefficients: list[tuple[int, int]] = [] + for pauli in paulis: + numerators = tuple( + operator.get(pauli, 0) + for operator in operators + ) + cache_key = (j, numerators) + coefficient = coefficient_cache.get(cache_key) + if coefficient is None: + coefficient = _fixed_linear_interval( + numerators, + base_endpoints, + ) + coefficient_cache[cache_key] = coefficient + coefficients.append(coefficient) + midpoint = tuple( + coefficient[0] + coefficient[1] + for coefficient in coefficients + ) + pairs, singles = _greedy_pairs(paulis, midpoint) + # The verifier checks every selected pair, rather than trusting the + # discovery ordering. + if any(not _anticommutes(paulis[a], paulis[b]) for a, b in pairs): + raise ArithmeticError("invalid anticommuting pair") + local_bound = Fraction( + _fixed_pair_bound_numerator(coefficients, pairs, singles), + 2 * common_denominator, + ) + total += scalar_upper * local_bound + paired_terms += len(pairs) + singleton_terms += len(singles) + + cell = total / factorial(order + 1) + return FourthOrderRationalCertificate( + center=center, + root_interval=root, + cell_density_upper=cell, + site_density_upper=cell / 4, + theorem_terms=theorem_terms, + paired_terms=paired_terms, + singleton_terms=singleton_terms, + ) + + +def fourth_order_published_triangle_certificate( + *, + center: int = 20, + decimal_digits: int = 18, +) -> FourthOrderPublishedTriangleCertificate: + """Instantiate the published high-order theorem with full triangle expansion. + + This intentionally expands every partial Hamiltonian sum before taking + local Pauli-l1 norms. It is the independently reproducible published + baseline, not the strengthened candidate analysis. + """ + + stages_left, root = fourth_order_suzuki_interval_stages( + 4, + decimal_digits=decimal_digits, + ) + stages = tuple(reversed(stages_left)) + count = len(stages) + if not 1 <= center <= count: + raise ValueError("center must use one-based stage indexing") + order = 4 + weights: dict[tuple[int, ...], Fraction] = {} + theorem_terms = 0 + + def collect( + j: int, + indices: tuple[int, ...], + composition: tuple[int, ...], + ) -> None: + nonlocal theorem_terms + theorem_terms += 1 + outer: list[int] = [] + scalar = RationalInterval.point(_multinomial(order, composition)) + for stage_index, power in zip(indices, composition): + stage = stages[stage_index - 1] + scalar *= stage.coefficient**power + outer.extend([stage.fragment_index] * power) + scalar_upper = scalar.abs_upper() + for base_index in range(1, j): + base_stage = stages[base_index - 1] + key = tuple(outer) + (base_stage.fragment_index,) + weights[key] = weights.get(key, Fraction()) + ( + scalar_upper * base_stage.coefficient.abs_upper() + ) + + for j in range(2, center + 1): + indices = tuple(range(center, j - 1, -1)) + for composition in weak_compositions(order, len(indices)): + if composition[-1]: + collect(j, indices, composition) + for j in range(center + 1, count + 1): + indices = tuple(range(center + 1, j + 1)) + for composition in weak_compositions(order, len(indices)): + if composition[-1]: + collect(j, indices, composition) + + evaluator = SymplecticDyadicLocalDensityEvaluator(shared_coordinates=True) + total = sum( + ( + weight * evaluator.pauli_l1_density(key) + for key, weight in weights.items() + ), + Fraction(), + ) + cell = total / factorial(order + 1) + return FourthOrderPublishedTriangleCertificate( + center=center, + root_interval=root, + cell_density_upper=cell, + site_density_upper=cell / 4, + theorem_terms=theorem_terms, + expanded_commutator_keys=len(weights), + ) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/series.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/series.py new file mode 100644 index 000000000..e6f67d72f --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/series.py @@ -0,0 +1,107 @@ +from __future__ import annotations + +from dataclasses import dataclass +from fractions import Fraction +from typing import Iterable + +from .algebra import PauliSum, QComplex + + +@dataclass +class OperatorSeries: + """A truncated power series whose coefficients are exact operators.""" + + coefficients: list[PauliSum] + + @classmethod + def zero(cls, order: int) -> OperatorSeries: + return cls([PauliSum.zero() for _ in range(order + 1)]) + + @classmethod + def identity(cls, order: int) -> OperatorSeries: + result = cls.zero(order) + result.coefficients[0] = PauliSum.identity() + return result + + @property + def order(self) -> int: + return len(self.coefficients) - 1 + + def __add__(self, other: OperatorSeries) -> OperatorSeries: + if self.order != other.order: + raise ValueError("series truncation orders differ") + return OperatorSeries( + [left + right for left, right in zip(self.coefficients, other.coefficients)] + ) + + def __sub__(self, other: OperatorSeries) -> OperatorSeries: + return self + other.scale(-1) + + def scale(self, scalar: QComplex | int | Fraction) -> OperatorSeries: + return OperatorSeries([coefficient.scale(scalar) for coefficient in self.coefficients]) + + def __mul__(self, other: OperatorSeries) -> OperatorSeries: + if self.order != other.order: + raise ValueError("series truncation orders differ") + result = self.zero(self.order) + for degree in range(self.order + 1): + coefficient = PauliSum.zero() + for left_degree in range(degree + 1): + coefficient += ( + self.coefficients[left_degree] + * other.coefficients[degree - left_degree] + ) + result.coefficients[degree] = coefficient + return result + + def power(self, exponent: int) -> OperatorSeries: + if exponent < 0: + raise ValueError("negative series powers are unsupported") + result = self.identity(self.order) + base = self + for _ in range(exponent): + result = result * base + return result + + +def exponential_series( + generator: PauliSum, + coefficient: QComplex | int | Fraction, + order: int, +) -> OperatorSeries: + """Return exp(t * coefficient * generator) through ``t**order``.""" + + result = OperatorSeries.zero(order) + power = PauliSum.identity() + scalar = QComplex.coerce(coefficient) + scalar_power = QComplex(1) + factorial = 1 + for degree in range(order + 1): + if degree: + power = power * generator + scalar_power *= scalar + factorial *= degree + result.coefficients[degree] = power.scale(scalar_power / factorial) + return result + + +def product_series(stages: Iterable[OperatorSeries], order: int) -> OperatorSeries: + result = OperatorSeries.identity(order) + for stage in stages: + if stage.order != order: + raise ValueError("stage truncation order differs") + result = result * stage + return result + + +def logarithm_series(series: OperatorSeries) -> OperatorSeries: + if series.coefficients[0] != PauliSum.identity(): + raise ValueError("logarithm requires unit constant coefficient") + delta = series - OperatorSeries.identity(series.order) + result = OperatorSeries.zero(series.order) + power = OperatorSeries.identity(series.order) + for exponent in range(1, series.order + 1): + power = power * delta + sign = 1 if exponent % 2 else -1 + result = result + power.scale(Fraction(sign, exponent)) + return result diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/su2clusters.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/su2clusters.py new file mode 100644 index 000000000..1d59e0642 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/su2clusters.py @@ -0,0 +1,70 @@ +from __future__ import annotations + +from dataclasses import dataclass + +from .algebra import PauliSum +from .hamiltonian import heisenberg_bond +from .lattice import SquareLattice + + +@dataclass(frozen=True) +class LPathCluster: + color: int + center: int + left: int + up: int + + @property + def sites(self) -> frozenset[int]: + return frozenset((self.center, self.left, self.up)) + + @property + def bonds(self) -> frozenset[tuple[int, int]]: + return frozenset( + ( + tuple(sorted((self.center, self.left))), + tuple(sorted((self.center, self.up))), + ) + ) + + +def three_color_l_path_clusters( + lattice: SquareLattice, +) -> tuple[tuple[LPathCluster, ...], ...]: + """Square-lattice local-SU(2) decomposition from arXiv:2605.16016. + + A cluster centered at ``(x,y)`` contains the incoming horizontal and + vertical bonds and has color ``x-y mod 3``. + """ + + if lattice.length % 3: + raise ValueError("periodic three-color L-path decomposition requires 3 | L") + groups: list[list[LPathCluster]] = [[], [], []] + for y in range(lattice.length): + for x in range(lattice.length): + color = (x - y) % 3 + groups[color].append( + LPathCluster( + color=color, + center=lattice.site(x, y), + left=lattice.site(x - 1, y), + up=lattice.site(x, y - 1), + ) + ) + return tuple(tuple(group) for group in groups) + + +def l_path_cluster_hamiltonian(cluster: LPathCluster) -> PauliSum: + return heisenberg_bond(cluster.center, cluster.left) + heisenberg_bond( + cluster.center, cluster.up + ) + + +def three_l_path_fragments(lattice: SquareLattice) -> tuple[PauliSum, ...]: + return tuple( + sum( + (l_path_cluster_hamiltonian(cluster) for cluster in group), + PauliSum.zero(), + ) + for group in three_color_l_path_clusters(lattice) + ) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/support_groups.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/support_groups.py new file mode 100644 index 000000000..c35b1650c --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/support_groups.py @@ -0,0 +1,292 @@ +from __future__ import annotations + +from collections.abc import Mapping, Sequence +from fractions import Fraction +import gzip +import json +from math import lcm +from typing import Any + +from .anticommuting import ( + AnticommutingPartitionCertificate, + certify_anticommuting_partition, + symplectic_anticommutes, +) +from .intervals import RationalInterval +from .local_commutators import SymplecticPauli + + +def _support(pauli: SymplecticPauli) -> int: + return pauli[0] | pauli[1] + + +def discover_support_partition( + coefficients: Mapping[SymplecticPauli, RationalInterval], + *, + max_group_size: int = 10, + discovery_scores: Mapping[SymplecticPauli, Fraction] | None = None, +) -> tuple[tuple[SymplecticPauli, ...], ...]: + """Discover anticommuting groups without mixing Pauli supports.""" + + if max_group_size < 1: + raise ValueError("maximum group size must be positive") + if discovery_scores is not None and set(discovery_scores) != set( + coefficients + ): + raise ValueError("discovery scores must cover the coefficient map") + buckets: dict[int, dict[SymplecticPauli, RationalInterval]] = {} + for pauli, coefficient in coefficients.items(): + buckets.setdefault(_support(pauli), {})[pauli] = coefficient + groups: list[tuple[SymplecticPauli, ...]] = [] + for support in sorted(buckets): + bucket = buckets[support] + ordered = tuple( + sorted( + bucket, + key=lambda pauli: ( + -( + abs(discovery_scores[pauli]) + if discovery_scores is not None + else abs(bucket[pauli].midpoint()) + ), + pauli, + ), + ) + ) + used: set[SymplecticPauli] = set() + for position, pauli in enumerate(ordered): + if pauli in used: + continue + group = [pauli] + used.add(pauli) + for candidate in ordered[position + 1 :]: + if candidate in used: + continue + if all( + symplectic_anticommutes(candidate, member) + for member in group + ): + group.append(candidate) + used.add(candidate) + if len(group) == max_group_size: + break + groups.append(tuple(group)) + return tuple(groups) + + +def certify_support_partition( + coefficients: Mapping[SymplecticPauli, RationalInterval], + groups: Sequence[Sequence[SymplecticPauli]], + *, + sqrt_decimal_places: int = 30, +) -> AnticommutingPartitionCertificate: + """Verify coverage, equal supports, and pairwise anticommutation.""" + + flattened = tuple(pauli for group in groups for pauli in group) + if len(flattened) != len(set(flattened)): + raise ValueError("partition coverage contains duplicate terms") + if set(flattened) != set(coefficients): + raise ValueError("partition coverage differs from coefficient map") + for group in groups: + if not group: + raise ValueError("anticommuting group must be nonempty") + supports = {_support(pauli) for pauli in group} + if len(supports) != 1: + raise ValueError("group members must have the same support") + return certify_anticommuting_partition( + coefficients, + groups, + sqrt_decimal_places=sqrt_decimal_places, + ) + + +def _pair(value: Fraction) -> list[int]: + return [value.numerator, value.denominator] + + +def _canonical_json_bytes(payload: object) -> bytes: + return ( + json.dumps(payload, sort_keys=True, separators=(",", ":")) + "\n" + ).encode() + + +def canonical_gzip_bytes(payload: object) -> bytes: + """Return deterministic gzip bytes for a canonical JSON payload.""" + + compressed = bytearray( + gzip.compress(_canonical_json_bytes(payload), compresslevel=9, mtime=0) + ) + # CPython has changed how ``gzip.compress(..., mtime=0)`` chooses the + # RFC 1952 OS header byte. Python 3.14 emits 0xff here, whereas the + # frozen schema-v3 sidecar was produced with 0x13 on macOS. The byte has + # no effect on decompression, but it is part of the proof artifact's + # SHA-256. Pin the historical canonical value explicitly so rebuilding + # remains byte-for-byte stable across Python and platform upgrades. + compressed[9] = 0x13 + return bytes(compressed) + + +def build_d5_payload( + coefficients: Mapping[SymplecticPauli, RationalInterval], + groups: Sequence[Sequence[SymplecticPauli]] | None = None, +) -> dict[str, object]: + selected_groups = ( + discover_support_partition(coefficients, max_group_size=10) + if groups is None + else tuple(tuple(group) for group in groups) + ) + certificate = certify_support_partition(coefficients, selected_groups) + coefficient_denominator = 1 + for interval in certificate.coefficients: + coefficient_denominator = lcm( + coefficient_denominator, + interval.lower.denominator, + interval.upper.denominator, + ) + sqrt_denominator = 1 + for group in certificate.groups: + sqrt_denominator = lcm(sqrt_denominator, group.bound.denominator) + return { + "schema_version": 1, + "kind": "issue128_exact_d5_support_partition", + "coefficient_denominator": coefficient_denominator, + "terms": [ + [ + pauli[0], + pauli[1], + interval.lower.numerator + * (coefficient_denominator // interval.lower.denominator), + interval.upper.numerator + * (coefficient_denominator // interval.upper.denominator), + ] + for pauli, interval in zip( + certificate.paulis, + certificate.coefficients, + ) + ], + "sqrt_denominator": sqrt_denominator, + "groups": [ + [ + list(group.term_indices), + group.bound.numerator + * (sqrt_denominator // group.bound.denominator), + ] + for group in certificate.groups + ], + "term_count": len(certificate.paulis), + "group_count": len(certificate.groups), + "cell_bound": _pair(certificate.bound), + "site_bound": _pair(certificate.bound / 4), + } + + +def _integer(value: object, *, field: str) -> int: + if isinstance(value, bool) or not isinstance(value, int): + raise ValueError(f"{field} must be an integer") + return value + + +def _fraction_pair(value: object, *, field: str) -> Fraction: + if not isinstance(value, list) or len(value) != 2: + raise ValueError(f"{field} must be a rational pair") + numerator = _integer(value[0], field=f"{field} numerator") + denominator = _integer(value[1], field=f"{field} denominator") + if denominator <= 0: + raise ValueError(f"{field} denominator must be positive") + return Fraction(numerator, denominator) + + +def verify_d5_payload( + payload: Mapping[str, object], +) -> AnticommutingPartitionCertificate: + if payload.get("schema_version") != 1: + raise ValueError("unsupported D5 sidecar schema") + if payload.get("kind") != "issue128_exact_d5_support_partition": + raise ValueError("unexpected D5 sidecar kind") + coefficient_denominator = _integer( + payload.get("coefficient_denominator"), + field="coefficient denominator", + ) + sqrt_denominator = _integer( + payload.get("sqrt_denominator"), + field="sqrt denominator", + ) + if coefficient_denominator <= 0 or sqrt_denominator <= 0: + raise ValueError("D5 sidecar denominators must be positive") + raw_terms = payload.get("terms") + raw_groups = payload.get("groups") + if not isinstance(raw_terms, list) or not isinstance(raw_groups, list): + raise ValueError("D5 sidecar terms and groups must be lists") + + paulis: list[SymplecticPauli] = [] + coefficients: dict[SymplecticPauli, RationalInterval] = {} + for raw_term in raw_terms: + if not isinstance(raw_term, list) or len(raw_term) != 4: + raise ValueError("D5 sidecar term is malformed") + pauli = ( + _integer(raw_term[0], field="term x mask"), + _integer(raw_term[1], field="term z mask"), + ) + if pauli in coefficients: + raise ValueError("D5 sidecar contains duplicate terms") + lower = _integer(raw_term[2], field="term lower numerator") + upper = _integer(raw_term[3], field="term upper numerator") + coefficients[pauli] = RationalInterval( + Fraction(lower, coefficient_denominator), + Fraction(upper, coefficient_denominator), + ) + paulis.append(pauli) + if paulis != sorted(paulis): + raise ValueError("D5 sidecar terms are not canonically sorted") + + groups: list[tuple[SymplecticPauli, ...]] = [] + encoded_bounds: list[Fraction] = [] + for raw_group in raw_groups: + if not isinstance(raw_group, list) or len(raw_group) != 2: + raise ValueError("D5 sidecar group is malformed") + indices = raw_group[0] + if not isinstance(indices, list): + raise ValueError("D5 sidecar group indices must be a list") + try: + group = tuple( + paulis[_integer(index, field="group term index")] + for index in indices + ) + except IndexError as error: + raise ValueError("D5 sidecar group index is out of range") from error + groups.append(group) + encoded_bounds.append( + Fraction( + _integer(raw_group[1], field="group bound numerator"), + sqrt_denominator, + ) + ) + + certificate = certify_support_partition(coefficients, groups) + if encoded_bounds != [group.bound for group in certificate.groups]: + raise ValueError("D5 sidecar group bound mismatch") + if _integer(payload.get("term_count"), field="term count") != len(paulis): + raise ValueError("D5 sidecar term count mismatch") + if _integer(payload.get("group_count"), field="group count") != len(groups): + raise ValueError("D5 sidecar group count mismatch") + if _fraction_pair(payload.get("cell_bound"), field="cell bound") != ( + certificate.bound + ): + raise ValueError("D5 sidecar cell bound mismatch") + if _fraction_pair(payload.get("site_bound"), field="site bound") != ( + certificate.bound / 4 + ): + raise ValueError("D5 sidecar site bound mismatch") + return certificate + + +def decode_d5_gzip(raw: bytes) -> dict[str, object]: + try: + payload: Any = json.loads(gzip.decompress(raw)) + except (OSError, json.JSONDecodeError) as error: + raise ValueError("D5 sidecar is not canonical gzip JSON") from error + if not isinstance(payload, dict): + raise ValueError("D5 sidecar root must be an object") + if canonical_gzip_bytes(payload) != raw: + raise ValueError("D5 sidecar bytes are not canonical") + return payload diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/verify.py b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/verify.py new file mode 100644 index 000000000..ac1c125a8 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/src/trottercert/verify.py @@ -0,0 +1,530 @@ +from __future__ import annotations + +import hashlib +import json +from dataclasses import dataclass +from fractions import Fraction +from pathlib import Path + +from .anticommuting import certify_anticommuting_partition +from .baseline import pauli_l1_second_order_constant +from .hamiltonian import four_matching_fragments +from .intervals import RationalInterval, cube_root_four_interval +from .lattice import SquareLattice +from .local_commutators import SymplecticPauli +from .resources import ( + fourth_order_four_matching_resources, + four_matching_resources, + required_steps, + three_l_path_resources, +) +from .su2clusters import three_l_path_fragments + + +EXPECTED_NORMALIZATION = "(XX+YY+ZZ)/4" + + +@dataclass(frozen=True) +class D4SidecarVerification: + site_bound: Fraction + coefficients: dict[SymplecticPauli, RationalInterval] + term_count: int + group_count: int + max_group_size: int + + +def _fraction(pair: list[int]) -> Fraction: + if len(pair) != 2: + raise ValueError("fraction must be [numerator, denominator]") + return Fraction(pair[0], pair[1]) + + +def _verify_d4_sidecar( + certificate_path: Path, + candidate: dict[str, object], +) -> D4SidecarVerification: + metadata = candidate["d4_certificate"] + root = certificate_path.resolve().parent + sidecar_path = (root / str(metadata["path"])).resolve() + if sidecar_path.parent != root: + raise ValueError("D4 sidecar path escapes certificate directory") + raw = sidecar_path.read_bytes() + if hashlib.sha256(raw).hexdigest() != str(metadata["sha256"]): + raise ValueError("D4 sidecar digest mismatch") + + payload = json.loads(raw) + if int(payload["schema_version"]) != 1: + raise ValueError("unsupported D4 sidecar schema") + coefficient_denominator = int(payload["coefficient_denominator"]) + sqrt_denominator = int(payload["sqrt_denominator"]) + if coefficient_denominator < 1 or sqrt_denominator < 1: + raise ValueError("D4 sidecar denominators must be positive") + + rows = payload["terms"] + paulis = tuple( + (int(row[0]), int(row[1])) + for row in rows + ) + if len(paulis) != len(set(paulis)): + raise ValueError("D4 sidecar coefficient terms are duplicated") + if paulis != tuple(sorted(paulis)): + raise ValueError("D4 sidecar coefficient terms are not canonical") + coefficients = { + pauli: RationalInterval( + Fraction(int(row[2]), coefficient_denominator), + Fraction(int(row[3]), coefficient_denominator), + ) + for pauli, row in zip(paulis, rows) + } + + submitted_groups = payload["groups"] + groups: list[tuple[SymplecticPauli, ...]] = [] + for row in submitted_groups: + indices = tuple(int(index) for index in row[0]) + if any(index < 0 or index >= len(paulis) for index in indices): + raise ValueError("D4 partition coverage index is out of range") + groups.append(tuple(paulis[index] for index in indices)) + regenerated = certify_anticommuting_partition( + coefficients, + tuple(groups), + ) + submitted_bounds = tuple( + Fraction(int(row[1]), sqrt_denominator) + for row in submitted_groups + ) + regenerated_bounds = tuple( + group.bound for group in regenerated.groups + ) + if submitted_bounds != regenerated_bounds: + raise ValueError("D4 group bound mismatch") + + max_group_size = max((len(group) for group in groups), default=0) + if max_group_size > int(metadata["max_group_size"]): + raise ValueError("D4 maximum group size mismatch") + cell_bound = _fraction(payload["cell_bound"]) + if cell_bound != regenerated.bound: + raise ValueError("D4 cell bound mismatch") + if cell_bound != _fraction(metadata["cell_norm_upper"]): + raise ValueError("D4 main-certificate bound mismatch") + return D4SidecarVerification( + site_bound=cell_bound / 4, + coefficients=coefficients, + term_count=len(paulis), + group_count=len(groups), + max_group_size=max_group_size, + ) + + +def _verify_v1(data: dict[str, object]) -> dict[str, object]: + benchmark = data["benchmark"] + if benchmark["normalization"] != EXPECTED_NORMALIZATION: + raise ValueError("Hamiltonian normalization mismatch") + length = int(benchmark["length"]) + if length % 6: + raise ValueError("benchmark length must be divisible by six") + tolerance = _fraction(benchmark["tolerance"]) + reference_length = int(data["proof"]["reference_length"]) + if reference_length != 6: + raise ValueError("the verifier currently pins reference length L=6") + + lattice = SquareLattice(reference_length) + baseline_ref = pauli_l1_second_order_constant( + four_matching_fragments(lattice) + ) + candidate_ref = pauli_l1_second_order_constant( + three_l_path_fragments(lattice) + ) + baseline_density = baseline_ref / lattice.n_sites + candidate_density = candidate_ref / lattice.n_sites + if baseline_density != _fraction(data["proof"]["baseline_density"]): + raise ValueError("baseline density summary is inconsistent") + if candidate_density != _fraction(data["proof"]["candidate_density"]): + raise ValueError("candidate density summary is inconsistent") + + n_sites = length * length + baseline_constant = baseline_density * n_sites + candidate_constant = candidate_density * n_sites + baseline_steps = required_steps(baseline_constant, tolerance, 2) + candidate_steps = required_steps(candidate_constant, tolerance, 2) + baseline = four_matching_resources(n_sites, baseline_steps) + candidate = three_l_path_resources(n_sites, candidate_steps) + + claimed = data["claimed_resources"] + recomputed = { + "baseline_steps": baseline.steps, + "candidate_steps": candidate.steps, + "baseline_local_propagators": baseline.local_propagators, + "candidate_local_propagators": candidate.local_propagators, + "baseline_cnot_upper": baseline.cnot_upper, + "candidate_cnot_upper": candidate.cnot_upper, + } + if claimed != recomputed: + raise ValueError("claimed resources do not match recomputation") + local_ratio = Fraction( + candidate.local_propagators, + baseline.local_propagators, + ) + return { + "valid": True, + "baseline_density": str(baseline_density), + "candidate_density": str(candidate_density), + "local_propagator_ratio": str(local_ratio), + "local_propagator_improvement": float(1 / local_ratio), + "compiled_cnot_improvement": ( + baseline.cnot_upper / candidate.cnot_upper + ), + "twofold_local_target_met": local_ratio <= Fraction(1, 2), + "twofold_compiled_cnot_target_met": ( + candidate.cnot_upper * 2 <= baseline.cnot_upper + ), + } + + +def _verify_v2( + data: dict[str, object], + *, + deep: bool, +) -> dict[str, object]: + benchmark = data["benchmark"] + if benchmark["normalization"] != EXPECTED_NORMALIZATION: + raise ValueError("Hamiltonian normalization mismatch") + length = int(benchmark["length"]) + if length % 2: + raise ValueError("four-matching benchmark requires even length") + n_sites = length * length + time = _fraction(benchmark["time"]) + tolerance = _fraction(benchmark["tolerance"]) + if time != 1: + raise ValueError("schema v2 currently pins T=1") + + proof = data["proof"] + if proof["formula"] != "five_copy_suzuki_fourth_order": + raise ValueError("unexpected candidate formula") + if int(proof["stage_count"]) != 31 or int(proof["center"]) != 17: + raise ValueError("candidate formula structure mismatch") + decimal_digits = int(proof["coefficient_interval_decimal_digits"]) + root = cube_root_four_interval(decimal_digits) + claimed_root = proof["cube_root_four_interval"] + if ( + root.lower != _fraction(claimed_root["lower"]) + or root.upper != _fraction(claimed_root["upper"]) + or not (root.lower**3 <= 4 <= root.upper**3) + ): + raise ValueError("cube-root enclosure is invalid") + + baseline_density = _fraction(proof["baseline_site_density"]) + if baseline_density <= 0 or baseline_density > Fraction(21, 8): + raise ValueError("strengthened baseline density is outside the pinned range") + candidate_density = _fraction(proof["candidate_site_density_upper"]) + if candidate_density <= 0: + raise ValueError("candidate density must be positive") + + deep_verified = False + if deep: + from .baseline import strang_commutator_operators + from .clusters import phase_partitioned_collatz_certificate + from .rigorous_fourth import fourth_order_rational_pair_certificate + + reference_length = int(proof["baseline_reference_length"]) + if reference_length != 6: + raise ValueError("deep baseline currently pins L=6") + reference_lattice = SquareLattice(reference_length) + baseline_total = Fraction() + component_bounds: list[list[list[int]]] = [] + for block in strang_commutator_operators( + four_matching_fragments(reference_lattice) + ): + repeated_fragment = phase_partitioned_collatz_certificate( + block.repeated_fragment, + reference_lattice, + iterations=35, + ).global_bound + repeated_tail = phase_partitioned_collatz_certificate( + block.repeated_tail, + reference_lattice, + iterations=35, + ).global_bound + baseline_total += repeated_fragment / 24 + repeated_tail / 12 + component_bounds.append( + [ + [repeated_fragment.numerator, repeated_fragment.denominator], + [repeated_tail.numerator, repeated_tail.denominator], + ] + ) + regenerated_baseline_density = ( + baseline_total / reference_lattice.n_sites + ) + if regenerated_baseline_density != baseline_density: + raise ValueError("deep regenerated baseline differs from certificate") + if component_bounds != proof["baseline_component_bounds"]: + raise ValueError("deep baseline component bounds differ") + + regenerated = fourth_order_rational_pair_certificate( + center=17, + decimal_digits=decimal_digits, + ) + if regenerated.site_density_upper != candidate_density: + raise ValueError("deep regenerated density differs from certificate") + statistics = proof["statistics"] + if ( + regenerated.theorem_terms != int(statistics["theorem_terms"]) + or regenerated.paired_terms != int(statistics["paired_terms"]) + or regenerated.singleton_terms != int(statistics["singleton_terms"]) + ): + raise ValueError("deep proof statistics differ from certificate") + deep_verified = True + + baseline_steps = required_steps( + baseline_density * n_sites, + tolerance, + 2, + time, + ) + candidate_steps = required_steps( + candidate_density * n_sites, + tolerance, + 4, + time, + ) + baseline = four_matching_resources(n_sites, baseline_steps) + candidate = fourth_order_four_matching_resources( + n_sites, + candidate_steps, + stage_count=31, + ) + claimed = data["claimed_resources"] + recomputed = { + "baseline_steps": baseline.steps, + "candidate_steps": candidate.steps, + "baseline_group_exponentials": baseline.group_exponentials, + "candidate_group_exponentials": candidate.group_exponentials, + "baseline_bond_propagators": baseline.local_propagators, + "candidate_bond_propagators": candidate.local_propagators, + "baseline_cnot_upper": baseline.cnot_upper, + "candidate_cnot_upper": candidate.cnot_upper, + } + if claimed != recomputed: + raise ValueError("claimed resources do not match recomputation") + + ratio = Fraction(candidate.cnot_upper, baseline.cnot_upper) + twofold = candidate.cnot_upper * 2 <= baseline.cnot_upper + if bool(data["claims"]["compiled_cnot_improvement_exceeds_two"]) != twofold: + raise ValueError("twofold claim is inconsistent") + return { + "valid": True, + "verification_level": "deep" if deep_verified else "fast", + "deep_proof_regenerated": deep_verified, + "baseline_site_density": str(baseline_density), + "candidate_site_density_upper": str(candidate_density), + "baseline_steps": baseline.steps, + "candidate_steps": candidate.steps, + "compiled_cnot_ratio": str(ratio), + "compiled_cnot_improvement": float(1 / ratio), + "twofold_compiled_cnot_target_met": twofold, + } + + +def _verify_v3( + data: dict[str, object], + *, + deep: bool, + certificate_path: Path, +) -> dict[str, object]: + benchmark = data["benchmark"] + if benchmark["normalization"] != EXPECTED_NORMALIZATION: + raise ValueError("Hamiltonian normalization mismatch") + length = int(benchmark["length"]) + if length % 2: + raise ValueError("four-matching benchmark requires even length") + n_sites = length * length + if _fraction(benchmark["time"]) != 1: + raise ValueError("schema v3 pins T=1") + tolerance = _fraction(benchmark["tolerance"]) + + published = data["published_baseline"] + if ( + published["formula"] != "five_copy_suzuki_fourth_order" + or int(published["formula_order"]) != 4 + or int(published["stage_count"]) != 31 + or int(published["theorem_center"]) != 20 + ): + raise ValueError("published baseline structure mismatch") + published_density = _fraction(published["site_density_upper"]) + published_steps = required_steps( + published_density * n_sites, + tolerance, + 4, + ) + if published_steps != int(published["steps"]): + raise ValueError("published baseline step count mismatch") + published_groups = 30 * published_steps + 1 + if published_groups != int(published["group_exponentials"]): + raise ValueError("published baseline group count mismatch") + + candidate = data["candidate"] + if ( + candidate["formula"] != "five_copy_suzuki_fourth_order" + or candidate["proof_method"] + != ( + "local_log_E5_grouped_D4_plus_E7_majorant" + "_plus_exact_generator_tail" + ) + ): + raise ValueError("candidate structure mismatch") + d4_verification = _verify_d4_sidecar( + certificate_path, + candidate, + ) + d4_metadata = candidate["d4_certificate"] + if d4_verification.term_count != int(d4_metadata["term_count"]): + raise ValueError("D4 term count mismatch") + if d4_verification.group_count != int(d4_metadata["group_count"]): + raise ValueError("D4 group count mismatch") + if ( + d4_verification.max_group_size + > int(d4_metadata["max_group_size"]) + ): + raise ValueError("D4 maximum group size mismatch") + candidate_steps = int(candidate["steps"]) + candidate_error = _fraction(candidate["global_error_upper"]) + previous_error = _fraction(candidate["previous_step_error_upper"]) + if candidate_error > tolerance: + raise ValueError("candidate does not meet the requested tolerance") + if previous_error <= tolerance: + raise ValueError("candidate step count is not minimal for this certificate") + candidate_groups = 30 * candidate_steps + 1 + if candidate_groups != int(candidate["group_exponentials"]): + raise ValueError("candidate group count mismatch") + contributions = candidate["contributions"] + contribution_sum = sum( + (_fraction(contributions[key]) for key in ("degree4", "degree5", "degree6", "degree7", "tail")), + Fraction(), + ) + if contribution_sum != candidate_error: + raise ValueError("candidate contribution sum mismatch") + expected_degree_four = ( + Fraction(n_sites) + * d4_verification.site_bound + / (5 * candidate_steps**4) + ) + if _fraction(contributions["degree4"]) != expected_degree_four: + raise ValueError("candidate grouped D4 contribution mismatch") + + claimed = data["claimed_resources"] + baseline_bonds = published_groups * n_sites // 2 + candidate_bonds = candidate_groups * n_sites // 2 + recomputed = { + "published_steps": published_steps, + "candidate_steps": candidate_steps, + "published_group_exponentials": published_groups, + "candidate_group_exponentials": candidate_groups, + "published_bond_propagators": baseline_bonds, + "candidate_bond_propagators": candidate_bonds, + "published_cnot_upper": 3 * baseline_bonds, + "candidate_cnot_upper": 3 * candidate_bonds, + } + if claimed != recomputed: + raise ValueError("schema v3 resource summary mismatch") + + deep_verified = False + if deep: + from .refined_error import ( + build_refined_fourth_order_constants, + certified_d4_cell_coefficients, + evaluate_refined_fourth_order_bound, + ) + from .rigorous_fourth import ( + fourth_order_published_triangle_certificate, + ) + + published_rebuilt = fourth_order_published_triangle_certificate( + center=20, + decimal_digits=int(published["coefficient_interval_decimal_digits"]), + ) + if published_rebuilt.site_density_upper != published_density: + raise ValueError("deep published baseline regeneration mismatch") + + constants = build_refined_fourth_order_constants( + decimal_digits=int(candidate["coefficient_interval_decimal_digits"]), + quantization_digits=int(candidate["e5_quantization_digits"]), + ) + if constants.e5_site_l1 != _fraction(candidate["e5_site_l1_upper"]): + raise ValueError("deep E5 regeneration mismatch") + if constants.e7_site_majorant != _fraction(candidate["e7_site_majorant"]): + raise ValueError("deep E7 regeneration mismatch") + regenerated_d4 = certified_d4_cell_coefficients( + constants.stages, + quantization_digits=int(candidate["e5_quantization_digits"]), + ) + if regenerated_d4 != d4_verification.coefficients: + raise ValueError("deep D4 coefficient regeneration mismatch") + rebuilt = evaluate_refined_fourth_order_bound( + constants, + n_sites, + candidate_steps, + d4_site_override=d4_verification.site_bound, + ) + rebuilt_previous = evaluate_refined_fourth_order_bound( + constants, + n_sites, + candidate_steps - 1, + d4_site_override=d4_verification.site_bound, + ) + if rebuilt.global_error_bound != candidate_error: + raise ValueError("deep candidate bound regeneration mismatch") + if rebuilt_previous.global_error_bound != previous_error: + raise ValueError("deep candidate minimality regeneration mismatch") + deep_verified = True + + ratio = Fraction(published_groups, candidate_groups) + claimed_ratio = _fraction(data["claims"]["exact_improvement_ratio"]) + if ratio != claimed_ratio: + raise ValueError("claimed improvement ratio mismatch") + if bool(data["claims"]["global_twofold_target_met"]) != (ratio >= 2): + raise ValueError("global twofold claim mismatch") + if bool(data["claims"]["global_fourfold_target_met"]) != (ratio >= 4): + raise ValueError("global fourfold claim mismatch") + return { + "valid": True, + "verification_level": "deep" if deep_verified else "fast", + "deep_proof_regenerated": deep_verified, + "published_steps": published_steps, + "candidate_steps": candidate_steps, + "published_group_exponentials": published_groups, + "candidate_group_exponentials": candidate_groups, + "candidate_error_upper": str(candidate_error), + "previous_step_error_upper": str(previous_error), + "d4_cell_norm_upper": str( + 4 * d4_verification.site_bound + ), + "d4_term_count": d4_verification.term_count, + "d4_group_count": d4_verification.group_count, + "d4_max_group_size": d4_verification.max_group_size, + "exact_improvement_ratio": str(ratio), + "improvement": float(ratio), + "global_twofold_target_met": ratio >= 2, + "global_fourfold_target_met": ratio >= 4, + } + + +def verify_certificate( + path: str | Path, + *, + deep: bool = False, +) -> dict[str, object]: + certificate_path = Path(path) + data = json.loads(certificate_path.read_text()) + schema = data.get("schema_version") + if schema == 1: + if deep: + raise ValueError("deep verification is available only for schema v2") + return _verify_v1(data) + if schema == 2: + return _verify_v2(data, deep=deep) + if schema == 3: + return _verify_v3( + data, + deep=deep, + certificate_path=certificate_path, + ) + raise ValueError("unsupported certificate schema") diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_algebra.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_algebra.py new file mode 100644 index 000000000..48f0d2dc7 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_algebra.py @@ -0,0 +1,48 @@ +from fractions import Fraction + +import numpy as np + +from trottercert.algebra import ( + PauliString, + PauliSum, + QComplex, + commutator, + to_dense, + pauli_strings_commute, +) + + +def term(site: int, op: str) -> PauliSum: + return PauliSum.term(PauliString({site: op})) + + +def test_single_qubit_pauli_phase_table() -> None: + x, y, z = term(0, "X"), term(0, "Y"), term(0, "Z") + assert x * y == z.scale(QComplex(0, 1)) + assert y * x == z.scale(QComplex(0, -1)) + assert commutator(x, y) == z.scale(QComplex(0, 2)) + assert not pauli_strings_commute(PauliString({0: "X"}), PauliString({0: "Y"})) + assert pauli_strings_commute(PauliString({0: "X"}), PauliString({1: "Y"})) + + +def test_multiqubit_multiplication_and_merging() -> None: + xx = PauliSum.term(PauliString({0: "X", 2: "X"}), Fraction(1, 4)) + yy = PauliSum.term(PauliString({0: "Y", 2: "Y"}), Fraction(1, 4)) + product = xx * yy + assert product == PauliSum.term(PauliString({0: "Z", 2: "Z"}), Fraction(-1, 16)) + assert xx - xx == PauliSum.zero() + + +def test_dense_agrees_with_exact_algebra() -> None: + left = term(0, "X") + term(1, "Z").scale(Fraction(2, 3)) + right = term(0, "Y") * term(1, "X") + expected = to_dense(left, 2) @ to_dense(right, 2) + assert np.allclose(to_dense(left * right, 2), expected) + + +def test_dagger_and_l1() -> None: + op = PauliSum.term(PauliString({0: "X"}), QComplex(Fraction(1, 2), Fraction(1, 3))) + assert op.dagger().terms[PauliString({0: "X"})] == QComplex( + Fraction(1, 2), Fraction(-1, 3) + ) + assert np.isclose(op.pauli_l1(), np.hypot(0.5, 1 / 3)) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_anticommuting.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_anticommuting.py new file mode 100644 index 000000000..0417937ae --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_anticommuting.py @@ -0,0 +1,90 @@ +from fractions import Fraction + +import pytest + +from trottercert.anticommuting import ( + certify_anticommuting_partition, + discover_anticommuting_partition, + sqrt_fraction_upper, + symplectic_anticommutes, +) +from trottercert.intervals import RationalInterval + + +def test_symplectic_anticommutation() -> None: + x = (1, 0) + y = (1, 1) + z = (0, 1) + assert symplectic_anticommutes(x, y) + assert symplectic_anticommutes(y, z) + assert symplectic_anticommutes(z, x) + assert not symplectic_anticommutes(x, x) + + +def test_rational_square_root_is_outward() -> None: + bound = sqrt_fraction_upper(Fraction(2), decimal_places=12) + assert bound * bound >= 2 + assert bound - Fraction(1414213562373, 10**12) <= Fraction(1, 10**12) + + +def test_exact_group_bound_uses_euclidean_norm() -> None: + coefficients = { + (1, 0): RationalInterval.point(1), + (1, 1): RationalInterval.point(2), + (0, 1): RationalInterval.point(2), + } + certificate = certify_anticommuting_partition( + coefficients, + (((1, 0), (1, 1), (0, 1)),), + ) + assert certificate.bound == 3 + assert certificate.groups[0].term_indices == (1, 2, 0) + + +def test_corrupt_commuting_group_is_rejected() -> None: + coefficients = { + (1, 0): RationalInterval.point(1), + (2, 0): RationalInterval.point(1), + } + with pytest.raises(ValueError, match="do not anticommute"): + certify_anticommuting_partition( + coefficients, + (((1, 0), (2, 0)),), + ) + + +def test_partition_coverage_rejects_duplicates_and_omissions() -> None: + coefficients = { + (1, 0): RationalInterval.point(1), + (1, 1): RationalInterval.point(1), + } + with pytest.raises(ValueError, match="coverage contains duplicate"): + certify_anticommuting_partition( + coefficients, + (((1, 0),), ((1, 0), (1, 1))), + ) + with pytest.raises(ValueError, match="coverage differs"): + certify_anticommuting_partition( + coefficients, + (((1, 0),),), + ) + + +def test_discovery_is_deterministic_and_covers_terms() -> None: + coefficients = { + (1, 0): RationalInterval.point(3), + (1, 1): RationalInterval.point(2), + (0, 1): RationalInterval.point(1), + } + first = discover_anticommuting_partition( + coefficients, + max_group_size=3, + ) + second = discover_anticommuting_partition( + coefficients, + max_group_size=3, + ) + assert first == second + certificate = certify_anticommuting_partition(coefficients, first) + assert set(certificate.paulis) == set(coefficients) + assert certificate.bound == sqrt_fraction_upper(Fraction(14)) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_baseline.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_baseline.py new file mode 100644 index 000000000..e59002d1b --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_baseline.py @@ -0,0 +1,30 @@ +from fractions import Fraction + +from trottercert.baseline import ( + pauli_l1_second_order_constant, + strang_commutator_operators, +) +from trottercert.hamiltonian import four_matching_fragments +from trottercert.lattice import SquareLattice + + +def test_baseline_blocks_are_hermitian() -> None: + fragments = four_matching_fragments(SquareLattice(4)) + blocks = strang_commutator_operators(fragments) + assert len(blocks) == 3 + assert all(block.repeated_fragment.is_hermitian() for block in blocks) + assert all(block.repeated_tail.is_hermitian() for block in blocks) + + +def test_pauli_l1_baseline_l4() -> None: + fragments = four_matching_fragments(SquareLattice(4)) + constant = pauli_l1_second_order_constant(fragments) + assert constant == Fraction(21, 8) * 16 + + +def test_symbolic_aggregate_coefficients_are_real_l4() -> None: + fragments = four_matching_fragments(SquareLattice(4)) + for block in strang_commutator_operators(fragments): + for operator in (block.repeated_fragment, block.repeated_tail): + assert operator.is_hermitian() + assert all(coefficient.imag == 0 for coefficient in operator.terms.values()) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_clusters.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_clusters.py new file mode 100644 index 000000000..c8442a2fb --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_clusters.py @@ -0,0 +1,90 @@ +from fractions import Fraction + +import numpy as np + +from trottercert.algebra import PauliString, PauliSum, to_dense +from trottercert.clusters import ( + _sqrt_fraction_upper, + build_uniform_cluster_certificate, + computational_row_sum_bound, + computational_row_taxicab_bound, + build_partitioned_operator_certificate, + build_full_patch_operator_certificate, + collatz_taxicab_certificate, + greedy_anticommuting_certificate, + paulis_anticommute, + phase_partitioned_collatz_certificate, +) +from trottercert.lattice import SquareLattice +from trottercert.orbits import canonical_translation, translation_orbits + + +def test_rational_sqrt_upper_is_outward() -> None: + bound = _sqrt_fraction_upper(Fraction(2), decimal_places=12) + assert bound * bound >= 2 + assert float(bound) - np.sqrt(2) < 1e-11 + + +def test_anticommuting_group_norm_bound() -> None: + x = PauliString({0: "X"}) + y = PauliString({0: "Y"}) + z = PauliString({0: "Z"}) + assert paulis_anticommute(x, y) + operator = PauliSum({x: 1, y: 2, z: 2}) + certificate = greedy_anticommuting_certificate(operator) + assert len(certificate.groups) == 1 + assert certificate.bound * certificate.bound >= 9 + assert float(certificate.bound) < 3 + 1e-12 + + +def test_row_sum_bound_upper_bounds_spectral_norm() -> None: + operator = ( + PauliSum.term(PauliString({0: "X"}), Fraction(1, 3)) + + PauliSum.term(PauliString({0: "Z", 1: "Z"}), Fraction(2, 5)) + ) + bound = computational_row_sum_bound(operator, 2) + norm = np.linalg.norm(to_dense(operator, 2), ord=2) + assert float(bound) >= norm + fast_bound = computational_row_taxicab_bound(operator, 2) + assert float(fast_bound) >= norm + collatz = collatz_taxicab_certificate(operator, 2, iterations=20) + assert float(collatz.bound) >= norm + assert collatz.bound <= fast_bound + + +def test_uniform_cluster_weights_reconstruct_orbit_density() -> None: + lattice = SquareLattice(4) + seed = PauliString({lattice.site(0, 0): "X", lattice.site(1, 0): "X"}) + _, members = canonical_translation(seed, lattice) + orbits = translation_orbits(PauliSum({member: 1 for member in members}), lattice) + certificate = build_uniform_cluster_certificate(orbits, 3, 2) + assert certificate.placements[0].weights == (Fraction(1, 4),) * 4 + assert certificate.row_sum_bound > 0 + + +def test_colored_orbit_placements_respect_unit_cell_stride() -> None: + lattice = SquareLattice(4) + seed = PauliString({lattice.site(1, 0): "X"}) + _, members = canonical_translation(seed, lattice, (2, 2)) + orbits = translation_orbits( + PauliSum({member: 1 for member in members}), + lattice, + unit_cell=(2, 2), + ) + certificate = build_uniform_cluster_certificate(orbits, 4, 3) + assert certificate.placements[0].offsets == ((0, 0), (2, 0), (0, 2), (2, 2)) + + +def test_partitioned_certificate_upper_bounds_small_operator_norm() -> None: + lattice = SquareLattice(4) + seed = PauliString({lattice.site(0, 0): "Z"}) + _, members = canonical_translation(seed, lattice, (2, 2)) + operator = PauliSum({member: 1 for member in members}) + certificate = build_partitioned_operator_certificate(operator, lattice) + assert certificate.global_bound == 4 + full = build_full_patch_operator_certificate(operator, lattice) + assert full.global_bound == 4 + phased = phase_partitioned_collatz_certificate( + operator, lattice, iterations=10 + ) + assert phased.global_bound == 4 diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_cubic_field.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_cubic_field.py new file mode 100644 index 000000000..ef42465d0 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_cubic_field.py @@ -0,0 +1,74 @@ +from __future__ import annotations + +from fractions import Fraction + +import pytest + +from trottercert.cubic_field import ( + Cubic, + fourth_order_suzuki_cubic_stages, +) +from trottercert.intervals import cube_root_four_interval +from trottercert.rigorous_fourth import fourth_order_suzuki_interval_stages + + +def test_cubic_multiplication_reduces_alpha_cubed() -> None: + alpha = Cubic(0, 1, 0) + assert alpha * alpha * alpha == Cubic(4, 0, 0) + assert alpha**4 == Cubic(0, 4, 0) + + +def test_exact_suzuki_scale_is_inverse_of_four_minus_alpha() -> None: + alpha = Cubic(0, 1, 0) + u = Cubic(Fraction(4, 15), Fraction(1, 15), Fraction(1, 60)) + assert u * (Cubic(4, 0, 0) - alpha) == Cubic.one() + + +def test_cubic_ring_arithmetic_and_rational_division() -> None: + left = Cubic(Fraction(1, 3), Fraction(2, 5), Fraction(-7, 11)) + right = Cubic(Fraction(-2, 7), Fraction(3, 13), Fraction(5, 17)) + assert left + right - right == left + assert 2 * left == left * 2 + assert left / 3 == Cubic( + Fraction(1, 9), Fraction(2, 15), Fraction(-7, 33) + ) + assert left**0 == Cubic.one() + with pytest.raises(ValueError, match="negative"): + _ = left**-1 + with pytest.raises(ZeroDivisionError): + _ = left / 0 + + +def test_exact_stages_enclose_inside_existing_interval_stages() -> None: + exact = fourth_order_suzuki_cubic_stages(4) + interval, root = fourth_order_suzuki_interval_stages( + 4, decimal_digits=24 + ) + assert len(exact) == len(interval) == 31 + for left, right in zip(exact, interval): + assert left.fragment_index == right.fragment_index + enclosed = left.coefficient.enclose(root) + assert right.coefficient.lower <= enclosed.lower + assert enclosed.upper <= right.coefficient.upper + + +def test_exact_stage_sum_is_one_for_every_fragment() -> None: + stages = fourth_order_suzuki_cubic_stages(4) + for fragment in range(4): + assert sum( + ( + stage.coefficient + for stage in stages + if stage.fragment_index == fragment + ), + Cubic.zero(), + ) == Cubic.one() + + +def test_cubic_interval_enclosure_contains_high_precision_root_value() -> None: + value = Cubic(Fraction(3, 7), Fraction(-5, 11), Fraction(13, 17)) + root = cube_root_four_interval(30) + interval = value.enclose(root) + midpoint = (root.lower + root.upper) / 2 + evaluated = value.a0 + value.a1 * midpoint + value.a2 * midpoint**2 + assert interval.lower <= evaluated <= interval.upper diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_cubic_local.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_cubic_local.py new file mode 100644 index 000000000..6b740759b --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_cubic_local.py @@ -0,0 +1,30 @@ +from __future__ import annotations + +import pytest + +from trottercert.cubic_field import fourth_order_suzuki_cubic_stages +from trottercert.cubic_local import exact_log_e5_density +from trottercert.refined_error import certified_d4_cell_coefficients +from trottercert.rigorous_fourth import fourth_order_suzuki_interval_stages + + +@pytest.mark.slow +def test_exact_e5_is_enclosed_by_existing_interval_coefficients() -> None: + stages = fourth_order_suzuki_cubic_stages(4) + _, exact = exact_log_e5_density(stages) + interval_stages, root = fourth_order_suzuki_interval_stages(4) + expected = certified_d4_cell_coefficients(interval_stages) + observed = { + pauli: value.enclose(root) * 5 + for pauli, value in exact.items() + } + # The interval implementation can retain ghost terms whose exact cubic + # coefficients cancel to zero after dependency information is restored. + assert set(observed) <= set(expected) + assert all( + expected[pauli].lower + <= observed[pauli].lower + <= observed[pauli].upper + <= expected[pauli].upper + for pauli in observed + ) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_cubic_right_generator.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_cubic_right_generator.py new file mode 100644 index 000000000..ffad8aa95 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_cubic_right_generator.py @@ -0,0 +1,31 @@ +from __future__ import annotations + +import pytest + +from trottercert.cubic_field import fourth_order_suzuki_cubic_stages +from trottercert.cubic_local import exact_right_generator_stage_contribution +from trottercert.hpc_artifacts import coordinate_encode_series, merge_coordinate_series + + +@pytest.mark.slow +def test_stage_contributions_reconstruct_fourth_order_conditions() -> None: + stages = fourth_order_suzuki_cubic_stages() + shards = [ + coordinate_encode_series( + *exact_right_generator_stage_contribution(stages, index, 4) + ) + for index in range(len(stages)) + ] + series = merge_coordinate_series(shards) + assert not series[1] + assert not series[2] + assert not series[3] + assert series[4] + + +def test_stage_contribution_rejects_invalid_index_and_order() -> None: + stages = fourth_order_suzuki_cubic_stages() + with pytest.raises(IndexError, match="stage index"): + exact_right_generator_stage_contribution(stages, len(stages), 4) + with pytest.raises(ValueError, match="nonnegative"): + exact_right_generator_stage_contribution(stages, 0, -1) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_defect_series.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_defect_series.py new file mode 100644 index 000000000..8cd062f0b --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_defect_series.py @@ -0,0 +1,9 @@ +from trottercert.defect_series import right_generator_local_series +from trottercert.higher_order import fourth_order_suzuki_stages + + +def test_suzuki_right_generator_vanishes_through_degree_three() -> None: + series = right_generator_local_series(fourth_order_suzuki_stages(4), 4) + for degree in (1, 2, 3): + assert sum(abs(value) for value in series[degree].values()) < 1e-9 + assert sum(abs(value) for value in series[4].values()) > 0 diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_delivery_package.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_delivery_package.py new file mode 100644 index 000000000..2a746710d --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_delivery_package.py @@ -0,0 +1,77 @@ +from __future__ import annotations + +import json +from pathlib import Path +import sys + +import pytest + + +ROOT = Path(__file__).resolve().parents[1] +sys.path.insert(0, str(ROOT)) + +from scripts.package_delivery import ( # noqa: E402 + EXPECTED, + build_summary, + canonical_json, + render_summary_text, + require_equal, + write_delivery_files, +) + + +def test_build_summary_projects_frozen_certificate() -> None: + summary = build_summary(ROOT) + assert summary["schema_version"] == 1 + assert summary["benchmark"]["sites"] == 144 + assert summary["published_baseline"]["steps"] == 393 + assert summary["published_baseline"]["group_exponentials"] == 11_791 + assert summary["certified_result"]["steps"] == 97 + assert summary["certified_result"]["group_exponentials"] == 2_911 + assert summary["improvement"]["exact_ratio"] == [11_791, 2_911] + assert summary["improvement"]["decimal"] == "4.050498110614909" + assert summary["verification"]["d4_term_count"] == 75_324 + assert summary["verification"]["d4_group_count"] == 7_576 + assert summary["fivefold_followup"]["status"] == "not_certified" + assert summary["fivefold_followup"]["d5_term_count"] == 605_832 + assert summary["fivefold_followup"]["d5_group_count"] == 123_106 + + +def test_summary_keeps_outward_error_boundary() -> None: + result = build_summary(ROOT)["certified_result"] + assert result["error_upper_decimal_outward"] == "9.958938494314325e-7" + assert result["previous_step_error_upper_decimal_outward"] == "1.050565873970784e-6" + assert result["accepted_at_97"] is True + assert result["rejected_at_96"] is True + + +def test_summary_binds_frozen_digests() -> None: + sources = build_summary(ROOT)["sources"] + assert sources["main_certificate"]["sha256"] == EXPECTED["certificate_sha256"] + assert sources["d4_sidecar"]["sha256"] == EXPECTED["d4_sha256"] + assert sources["d5_sidecar"]["sha256"] == EXPECTED["d5_sha256"] + + +def test_require_equal_rejects_drift() -> None: + with pytest.raises(ValueError, match="candidate steps drift"): + require_equal("candidate steps", 96, 97) + + +def test_text_marks_fivefold_unproved() -> None: + text = render_summary_text(build_summary(ROOT)) + assert "CERTIFIED RESULT: 4.050498110614909x" in text + assert "FIVEFOLD STATUS: NOT CERTIFIED" in text + assert "No 78-step global error certificate is claimed or supplied." in text + assert "certified 5x" not in text.lower() + + +def test_canonical_json_is_sorted_and_newline_terminated() -> None: + assert canonical_json({"z": 1, "a": 2}) == '{\n "a": 2,\n "z": 1\n}\n' + + +def test_write_delivery_files_round_trips_summary(tmp_path: Path) -> None: + summary = build_summary(ROOT) + written = write_delivery_files(ROOT, tmp_path, capture=False) + assert written == {tmp_path / "issue128-summary.json", tmp_path / "issue128-summary.txt"} + assert json.loads((tmp_path / "issue128-summary.json").read_text()) == summary + assert (tmp_path / "issue128-summary.txt").read_text().endswith("\n") diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_higher_order.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_higher_order.py new file mode 100644 index 000000000..02fdf5ce3 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_higher_order.py @@ -0,0 +1,81 @@ +import mpmath as mp +import pytest + +from trottercert.algebra import PauliString, PauliSum +from trottercert.higher_order import ( + fourth_order_suzuki_stages, + higher_order_triangle_weights, + weak_compositions, + fourth_order_local_pauli_l1_density, + fourth_order_triple_jump_stages, + higher_order_combined_local_l1_density, + higher_order_combined_local_l1_density_symplectic, + _pairwise_anticommuting_float_bound, +) + + +def test_weak_compositions() -> None: + values = tuple(weak_compositions(3, 2)) + assert values == ((0, 3), (1, 2), (2, 1), (3, 0)) + + +def test_fourth_order_stage_consistency_and_palindrome() -> None: + stages = fourth_order_suzuki_stages(4) + assert len(stages) == 31 + assert [stage.fragment_index for stage in stages] == [ + stage.fragment_index for stage in reversed(stages) + ] + coefficients = [mp.mpf("0") for _ in range(4)] + for stage in stages: + coefficients[stage.fragment_index] += stage.coefficient + assert all(mp.almosteq(value, 1) for value in coefficients) + triple = fourth_order_triple_jump_stages(4) + assert len(triple) == 19 + assert [stage.fragment_index for stage in triple] == [ + stage.fragment_index for stage in reversed(triple) + ] + + +def test_higher_order_weights_are_positive_and_depth_five() -> None: + weights = higher_order_triangle_weights(fourth_order_suzuki_stages(2), 4) + assert weights + assert all(len(key) == 5 for key in weights) + assert all(value > 0 for value in weights.values()) + + +@pytest.mark.slow +def test_local_fourth_order_density_is_finite_and_positive() -> None: + density, _ = fourth_order_local_pauli_l1_density() + assert density > 0 + assert mp.isfinite(density) + + +@pytest.mark.slow +def test_combined_bj_bound_is_no_worse_than_expanded_bound() -> None: + stages = fourth_order_suzuki_stages(4) + combined = higher_order_combined_local_l1_density(stages, center=20) + assert combined > 0 + + +@pytest.mark.slow +def test_symplectic_combined_bound_matches_fraction_discovery() -> None: + stages = fourth_order_suzuki_stages(4) + fraction_value = higher_order_combined_local_l1_density(stages, center=2) + symplectic_value = higher_order_combined_local_l1_density_symplectic( + stages, + center=2, + ) + assert float(fraction_value) == pytest.approx(symplectic_value, rel=1e-12) + + +def test_pairwise_anticommuting_float_bound() -> None: + # X and Z anticommute, while I is left as a singleton. + paulis = ((1, 0), (0, 1), (0, 0)) + coefficients = mp.matrix([3.0, 4.0, 2.0]) + import numpy as np + + value = _pairwise_anticommuting_float_bound( + paulis, + np.asarray(coefficients, dtype=float).reshape(-1), + ) + assert value == pytest.approx(7.0) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_hpc_artifacts.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_hpc_artifacts.py new file mode 100644 index 000000000..2abc07738 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_hpc_artifacts.py @@ -0,0 +1,64 @@ +from __future__ import annotations + +from fractions import Fraction +from pathlib import Path + +import pytest + +from trottercert.cubic_field import Cubic +from trottercert.hpc_artifacts import ( + coordinate_encode_terms, + read_shard_gzip, + sha256_file, + write_manifest_atomic, + write_shard_gzip, +) +from trottercert.local_commutators import CoordinateRegistry + + +def _fixture(order: tuple[tuple[int, int], ...]): + registry = CoordinateRegistry() + for coordinate in order: + registry.site(coordinate) + left = registry.site((0, 0)) + right = registry.site((1, 0)) + pauli = ((1 << left) | (1 << right), 1 << right) + return registry, {pauli: Cubic(Fraction(1, 3), Fraction(-2, 5), 7)} + + +def test_coordinate_encoding_is_registry_independent() -> None: + first = _fixture(((0, 0), (1, 0))) + second = _fixture(((1, 0), (0, 0))) + assert coordinate_encode_terms(*first) == coordinate_encode_terms(*second) + + +def test_canonical_gzip_and_manifest_are_deterministic(tmp_path: Path) -> None: + registry, terms = _fixture(((0, 0), (1, 0))) + payload = { + "schema_version": 1, + "kind": "test", + "terms": coordinate_encode_terms(registry, terms), + } + first = tmp_path / "first.json.gz" + second = tmp_path / "second.json.gz" + write_shard_gzip(first, payload) + write_shard_gzip(second, payload) + assert first.read_bytes() == second.read_bytes() + assert read_shard_gzip(first) == payload + assert sha256_file(first) == sha256_file(second) + + manifest = tmp_path / "manifest.json" + write_manifest_atomic(manifest, {"status": "complete", "count": 1}) + first_manifest = manifest.read_bytes() + write_manifest_atomic(manifest, {"status": "complete", "count": 1}) + assert manifest.read_bytes() == first_manifest + + +def test_corrupted_gzip_is_rejected(tmp_path: Path) -> None: + path = tmp_path / "shard.json.gz" + write_shard_gzip(path, {"schema_version": 1, "terms": []}) + raw = bytearray(path.read_bytes()) + raw[-8] ^= 1 + path.write_bytes(raw) + with pytest.raises(ValueError, match="gzip JSON"): + read_shard_gzip(path) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_intervals.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_intervals.py new file mode 100644 index 000000000..c8dd2fb66 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_intervals.py @@ -0,0 +1,25 @@ +from fractions import Fraction + +from trottercert.intervals import ( + RationalInterval, + cube_root_four_interval, + outward_quantize, +) + + +def test_rational_interval_arithmetic_and_root_enclosure() -> None: + left = RationalInterval(Fraction(1, 3), Fraction(1, 2)) + right = RationalInterval(Fraction(-2), Fraction(-1)) + assert left + right == RationalInterval(Fraction(-5, 3), Fraction(-1, 2)) + assert left * right == RationalInterval(Fraction(-1), Fraction(-1, 3)) + root = cube_root_four_interval(12) + assert root.lower**3 <= 4 <= root.upper**3 + assert root.upper - root.lower == Fraction(1, 10**12) + + +def test_outward_quantize_contains_original_interval() -> None: + interval = RationalInterval(Fraction(1, 3), Fraction(5, 7)) + rounded = outward_quantize(interval, 10) + assert rounded.lower <= interval.lower + assert rounded.upper >= interval.upper + assert rounded == RationalInterval(Fraction(3, 10), Fraction(4, 5)) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_lattice_hamiltonian.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_lattice_hamiltonian.py new file mode 100644 index 000000000..6e0bcb8bb --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_lattice_hamiltonian.py @@ -0,0 +1,44 @@ +from fractions import Fraction + +import numpy as np + +from trottercert.algebra import commutator, to_dense +from trottercert.hamiltonian import ( + four_matching_fragments, + full_heisenberg_hamiltonian, + heisenberg_bond, +) +from trottercert.lattice import SquareLattice + + +def test_periodic_square_bond_and_matching_counts() -> None: + for length in (4, 6): + lattice = SquareLattice(length) + matchings = lattice.four_matchings() + assert len(lattice.bonds()) == 2 * length * length + assert all(len(group) == length * length // 2 for group in matchings) + assert set().union(*(set(group) for group in matchings)) == set(lattice.bonds()) + for group in matchings: + flattened = [site for bond in group for site in bond] + assert len(flattened) == len(set(flattened)) + + +def test_matching_fragments_reconstruct_hamiltonian() -> None: + lattice = SquareLattice(4) + total = sum(four_matching_fragments(lattice)[1:], four_matching_fragments(lattice)[0]) + assert total == full_heisenberg_hamiltonian(lattice) + + +def test_heisenberg_bond_spectrum() -> None: + values = np.linalg.eigvalsh(to_dense(heisenberg_bond(0, 1), 2)) + assert np.allclose(values, [-0.75, 0.25, 0.25, 0.25]) + + +def test_overlapping_bond_double_commutator_identity() -> None: + h12 = heisenberg_bond(0, 1) + h23 = heisenberg_bond(1, 2) + h13 = heisenberg_bond(0, 2) + lhs = commutator(h12, commutator(h12, h23)) + rhs = (h23 - h13).scale(Fraction(1, 2)) + assert lhs == rhs + assert np.allclose(to_dense(lhs, 3), to_dense(rhs, 3)) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_lie_series.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_lie_series.py new file mode 100644 index 000000000..e8320d25a --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_lie_series.py @@ -0,0 +1,25 @@ +import mpmath as mp + +from trottercert.higher_order import ( + fourth_order_suzuki_stages, + _second_order_scalar_stages, +) +from trottercert.lie_series import abstract_formula_log_series + + +def _degree_l1(series, degree: int) -> mp.mpf: + return sum(abs(value) for value in series[degree].values()) + + +def test_abstract_strang_has_zero_degree_two() -> None: + stages = _second_order_scalar_stages(4, mp.mpf(1)) + logarithm = abstract_formula_log_series(stages, 3) + assert _degree_l1(logarithm, 2) < mp.mpf("1e-60") + assert _degree_l1(logarithm, 3) > 0 + + +def test_abstract_suzuki_is_fourth_order() -> None: + logarithm = abstract_formula_log_series(fourth_order_suzuki_stages(4), 5) + for degree in (2, 3, 4): + assert _degree_l1(logarithm, degree) < mp.mpf("1e-60") + assert _degree_l1(logarithm, 5) > 0 diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_local_commutators.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_local_commutators.py new file mode 100644 index 000000000..0222f5f4c --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_local_commutators.py @@ -0,0 +1,80 @@ +from fractions import Fraction + +from trottercert.baseline import strang_commutator_operators +from trottercert.hamiltonian import four_matching_fragments +from trottercert.lattice import SquareLattice +from trottercert.local_commutators import ( + DyadicLocalDensityEvaluator, + local_nested_pauli_l1_density, + matching_partner, + LocalDensityEvaluator, + SymplecticDyadicLocalDensityEvaluator, +) + + +def test_matching_partner_is_an_involution() -> None: + for color in range(4): + for coordinate in ((0, 0), (1, 0), (-1, 2), (3, -2)): + partner = matching_partner(coordinate, color) + assert matching_partner(partner, color) == coordinate + + +def test_local_depth_three_density_matches_unaliased_global_l6() -> None: + lattice = SquareLattice(6) + fragments = four_matching_fragments(lattice) + # Compare representative pure nested commutators, not the B_j sums. + for key in ((0, 0, 1), (2, 3, 0), (1, 2, 3)): + from trottercert.algebra import commutator + + global_operator = commutator( + fragments[key[0]], + commutator(fragments[key[1]], fragments[key[2]]), + ) + expected_density = global_operator.exact_real_l1() / 9 + assert local_nested_pauli_l1_density(key) == expected_density + + +def test_suffix_memoized_evaluator_matches_direct() -> None: + evaluator = LocalDensityEvaluator() + for key in ((0, 2, 3), (1, 2, 3), (0, 1, 2, 3)): + assert evaluator.pauli_l1_density(key) == local_nested_pauli_l1_density(key) + + +def test_dyadic_evaluator_matches_fraction_evaluator() -> None: + fraction_evaluator = LocalDensityEvaluator() + dyadic_evaluator = DyadicLocalDensityEvaluator() + for key in ( + (0,), + (1, 0), + (2, 1, 0), + (3, 2, 1, 0), + (0, 3, 2, 1, 0), + ): + fraction_operator = fraction_evaluator.evaluate(key) + dyadic_operator = dyadic_evaluator.evaluate(key) + exponent = dyadic_evaluator.denominator_exponent(key) + assert set(fraction_operator.terms) == set(dyadic_operator) + for pauli, coefficient in fraction_operator.terms.items(): + numerator = dyadic_operator[pauli] + assert coefficient.real == Fraction(numerator[0], 1 << exponent) + assert coefficient.imag == Fraction(numerator[1], 1 << exponent) + assert ( + dyadic_evaluator.pauli_l1_density(key) + == fraction_evaluator.pauli_l1_density(key) + ) + + +def test_symplectic_evaluator_matches_fraction_evaluator() -> None: + fraction_evaluator = LocalDensityEvaluator() + symplectic_evaluator = SymplecticDyadicLocalDensityEvaluator() + for key in ( + (0,), + (1, 0), + (2, 1, 0), + (3, 2, 1, 0), + (0, 3, 2, 1, 0), + ): + assert ( + symplectic_evaluator.pauli_l1_density(key) + == fraction_evaluator.pauli_l1_density(key) + ) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_matching_order_screen.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_matching_order_screen.py new file mode 100644 index 000000000..0c16f2868 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_matching_order_screen.py @@ -0,0 +1,17 @@ +from __future__ import annotations + +import pytest + +from trottercert.matching_screen import permutation_from_index + + +def test_permutation_index_covers_exactly_24_orders() -> None: + values = [permutation_from_index(index) for index in range(24)] + assert len(set(values)) == 24 + assert values[0] == (0, 1, 2, 3) + assert values[-1] == (3, 2, 1, 0) + + +def test_permutation_index_rejects_out_of_range() -> None: + with pytest.raises(IndexError, match="permutation index"): + permutation_from_index(24) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_orbits.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_orbits.py new file mode 100644 index 000000000..ed6a4f95f --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_orbits.py @@ -0,0 +1,70 @@ +from fractions import Fraction + +from trottercert.algebra import PauliString, PauliSum, QComplex +from trottercert.lattice import SquareLattice +from trottercert.orbits import canonical_translation, translation_orbits + + +def test_wrapped_bond_gets_contiguous_representative() -> None: + lattice = SquareLattice(4) + pauli = PauliString({lattice.site(0, 0): "X", lattice.site(3, 0): "X"}) + representative, members = canonical_translation(pauli, lattice) + assert max(x for x, _, _ in representative) == 1 + assert len(members) == lattice.n_sites + + +def test_translation_invariant_orbit_decomposition() -> None: + lattice = SquareLattice(4) + seed = PauliString({lattice.site(0, 0): "X", lattice.site(1, 0): "X"}) + _, members = canonical_translation(seed, lattice) + operator = PauliSum({member: 2 for member in members}) + orbits = translation_orbits(operator, lattice) + assert len(orbits) == 1 + assert len(orbits[0].members) == lattice.n_sites + + +def test_noninvariant_operator_is_rejected() -> None: + lattice = SquareLattice(4) + operator = PauliSum.term(PauliString({0: "X"})) + try: + translation_orbits(operator, lattice) + except ValueError as error: + assert "not translation invariant" in str(error) + else: + raise AssertionError("expected a translation-invariance error") + + +def test_colored_two_by_two_unit_cell_orbit() -> None: + lattice = SquareLattice(4) + seed = PauliString({lattice.site(0, 0): "X"}) + _, members = canonical_translation(seed, lattice, (2, 2)) + operator = PauliSum({member: 1 for member in members}) + orbits = translation_orbits(operator, lattice, unit_cell=(2, 2)) + assert len(orbits) == 1 + assert len(orbits[0].members) == lattice.n_sites // 4 + + +def test_unit_cell_phase_is_preserved() -> None: + lattice = SquareLattice(4) + even = PauliString({lattice.site(0, 0): "X"}) + odd = PauliString({lattice.site(1, 0): "X"}) + even_rep, _ = canonical_translation(even, lattice, (2, 2)) + odd_rep, _ = canonical_translation(odd, lattice, (2, 2)) + assert even_rep != odd_rep + assert even_rep == ((0, 0, "X"),) + assert odd_rep == ((1, 0, "X"),) + + +def test_finite_size_stabilizer_scales_density_coefficient() -> None: + lattice = SquareLattice(4) + pauli = PauliString( + { + lattice.site(0, 0): "X", + lattice.site(2, 0): "X", + } + ) + _, members = canonical_translation(pauli, lattice, (2, 2)) + operator = PauliSum({member: 3 for member in members}) + orbit = translation_orbits(operator, lattice, unit_cell=(2, 2))[0] + assert orbit.stabilizer == 2 + assert orbit.coefficient == QComplex(Fraction(3, 2)) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_pareto.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_pareto.py new file mode 100644 index 000000000..01a60684c --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_pareto.py @@ -0,0 +1,23 @@ +from fractions import Fraction + +from trottercert.pareto import ( + minimum_published_suzuki_point, + recursive_suzuki_interval_stages, +) + + +def test_recursive_suzuki_stage_counts() -> None: + assert len(recursive_suzuki_interval_stages(2, decimal_digits=8)) == 7 + assert len(recursive_suzuki_interval_stages(4, decimal_digits=8)) == 31 + assert len(recursive_suzuki_interval_stages(6, decimal_digits=8)) == 151 + assert len(recursive_suzuki_interval_stages(8, decimal_digits=8)) == 751 + + +def test_small_published_pareto_search_is_minimal() -> None: + point = minimum_published_suzuki_point( + 4, + n_sites=4, + tolerance=Fraction(1, 100), + decimal_digits=8, + ) + assert point.global_error_bound <= Fraction(1, 100) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_processors.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_processors.py new file mode 100644 index 000000000..e578b0eeb --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_processors.py @@ -0,0 +1,49 @@ +import numpy as np + +from trottercert.algebra import QComplex, commutator, to_dense +from trottercert.formulas import leading_effective_error, strang_stages +from trottercert.hamiltonian import ( + four_matching_fragments, + full_heisenberg_hamiltonian, + heisenberg_bond, +) +from trottercert.lattice import SquareLattice +from trottercert.processors import ( + global_chirality_color_basis, + processor_images, + solve_processor_obstruction, + spin_chirality, +) + + +def test_spin_chirality_convention_and_hermiticity() -> None: + chi = spin_chirality(0, 1, 2) + lhs = commutator(heisenberg_bond(0, 1), heisenberg_bond(1, 2)) + assert lhs == chi.scale(QComplex(0, -1)) + assert chi.is_hermitian() + assert np.allclose(to_dense(chi, 3), to_dense(chi, 3).conj().T) + + +def test_global_color_chirality_basis_and_images_are_hermitian() -> None: + lattice = SquareLattice(4) + labeled = global_chirality_color_basis(lattice) + assert len(labeled) == 6 + assert all(operator.is_hermitian() for _, operator in labeled) + images = processor_images( + full_heisenberg_hamiltonian(lattice), + [operator for _, operator in labeled], + ) + assert all(image.is_hermitian() for image in images) + + +def test_projection_reconstructs_target_plus_residual() -> None: + lattice = SquareLattice(4) + labeled = global_chirality_color_basis(lattice) + images = processor_images( + full_heisenberg_hamiltonian(lattice), + [operator for _, operator in labeled], + ) + target = images[0].scale(2) - images[2] + result = solve_processor_obstruction(target, images) + assert result.exact_solution + assert not result.residual diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_refined_error.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_refined_error.py new file mode 100644 index 000000000..50fcd5ceb --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_refined_error.py @@ -0,0 +1,190 @@ +from fractions import Fraction +from itertools import product + +import pytest + +from trottercert.algebra import ( + PauliString, + PauliSum, + commutator, + pauli_strings_commute, +) +from trottercert.hamiltonian import heisenberg_bond +from trottercert.local_commutators import CoordinateRegistry +from trottercert.refined_error import ( + HEISENBERG_BOND_PAULI_L1_GROWTH, + canonicalize_symplectic_unit_cell, + certified_d4_cell_coefficients, + certified_leading_e5_cell_l1, + defect_tail_site_bound, + symplectic_pauli_from_coordinates, +) +from trottercert.rigorous_fourth import fourth_order_suzuki_interval_stages + + +def test_defect_tail_decreases_with_steps() -> None: + stages, _ = fourth_order_suzuki_interval_stages(4, decimal_digits=8) + assert defect_tail_site_bound(stages, 200) < defect_tail_site_bound(stages, 100) + + +def test_grouped_d4_override_must_tighten_the_existing_constant() -> None: + from trottercert.refined_error import ( + build_refined_fourth_order_constants, + evaluate_refined_fourth_order_bound, + ) + + constants = build_refined_fourth_order_constants( + decimal_digits=8, + quantization_digits=8, + ) + tightened = constants.d4_site / 2 + original = evaluate_refined_fourth_order_bound(constants, 144, 116) + grouped = evaluate_refined_fourth_order_bound( + constants, + 144, + 116, + d4_site_override=tightened, + ) + assert grouped.degree_four_contribution == ( + original.degree_four_contribution / 2 + ) + with pytest.raises(ValueError, match="nonnegative"): + evaluate_refined_fourth_order_bound( + constants, + 144, + 116, + d4_site_override=Fraction(-1), + ) + with pytest.raises(ValueError, match="cannot exceed"): + evaluate_refined_fourth_order_bound( + constants, + 144, + 116, + d4_site_override=constants.d4_site + 1, + ) + + +def test_colored_unit_cell_canonicalization_merges_translates() -> None: + registry = CoordinateRegistry() + left = symplectic_pauli_from_coordinates( + registry, + ((0, 0, "X"), (1, 0, "X")), + ) + right = symplectic_pauli_from_coordinates( + registry, + ((2, 0, "X"), (3, 0, "X")), + ) + assert canonicalize_symplectic_unit_cell(registry, left) == ( + canonicalize_symplectic_unit_cell(registry, right) + ) + + +def test_heisenberg_bond_pauli_l1_growth_constant_is_exact() -> None: + bond_axes = tuple( + PauliString({0: axis, 1: axis}) + for axis in ("X", "Y", "Z") + ) + observed = [] + anticommuting_counts = [] + for left, right in product(("I", "X", "Y", "Z"), repeat=2): + pauli = PauliString({0: left, 1: right}) + anticommuting_counts.append( + sum( + not pauli_strings_commute(axis, pauli) + for axis in bond_axes + ) + ) + operator = PauliSum.term(pauli, Fraction(1)) + observed.append( + commutator( + heisenberg_bond(0, 1), + operator, + ).exact_axis_l1() + ) + assert set(anticommuting_counts) <= {0, 2} + assert max(observed) == HEISENBERG_BOND_PAULI_L1_GROWTH == 1 + + +@pytest.mark.slow +def test_canonical_d4_coefficients_are_valid_and_tighter() -> None: + stages, _ = fourth_order_suzuki_interval_stages( + 4, + decimal_digits=12, + ) + coefficients = certified_d4_cell_coefficients( + stages, + quantization_digits=18, + ) + assert coefficients + assert all( + interval.lower <= interval.upper + for interval in coefficients.values() + ) + assert sum( + (interval.abs_upper() for interval in coefficients.values()), + Fraction(), + ) <= 5 * certified_leading_e5_cell_l1( + stages, + quantization_digits=18, + ) + + +@pytest.mark.slow +def test_refined_bound_crosses_global_twofold_target() -> None: + from trottercert.refined_error import ( + build_refined_fourth_order_constants, + evaluate_refined_fourth_order_bound, + ) + + constants = build_refined_fourth_order_constants() + bound = evaluate_refined_fourth_order_bound(constants, 144, 116) + previous = evaluate_refined_fourth_order_bound(constants, 144, 115) + assert bound.global_error_bound <= Fraction(1, 10**6) + assert previous.global_error_bound > Fraction(1, 10**6) + + +@pytest.mark.slow +def test_grouped_d4_bound_crosses_global_fourfold_target() -> None: + from trottercert.anticommuting import ( + certify_anticommuting_partition, + discover_anticommuting_partition, + ) + from trottercert.refined_error import ( + build_refined_fourth_order_constants, + evaluate_refined_fourth_order_bound, + ) + + stages, _ = fourth_order_suzuki_interval_stages( + 4, + decimal_digits=12, + ) + coefficients = certified_d4_cell_coefficients( + stages, + quantization_digits=18, + ) + groups = discover_anticommuting_partition( + coefficients, + max_group_size=10, + ) + certificate = certify_anticommuting_partition( + coefficients, + groups, + ) + constants = build_refined_fourth_order_constants() + d4_site = certificate.bound / 4 + accepted = evaluate_refined_fourth_order_bound( + constants, + 144, + 97, + d4_site_override=d4_site, + ) + rejected = evaluate_refined_fourth_order_bound( + constants, + 144, + 96, + d4_site_override=d4_site, + ) + assert len(certificate.paulis) == 75_324 + assert len(certificate.groups) == 7_576 + assert accepted.global_error_bound <= Fraction(1, 10**6) + assert rejected.global_error_bound > Fraction(1, 10**6) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_representation.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_representation.py new file mode 100644 index 000000000..9004f0b4d --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_representation.py @@ -0,0 +1,11 @@ +import pytest + +from trottercert.representation import degree_three_four_matching_rank + + +@pytest.mark.slow +def test_degree_three_representation_has_full_free_lie_rank() -> None: + rank, columns, rows = degree_three_four_matching_rank(4) + assert rank == 20 + assert columns == 64 + assert rows == 4128 diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_resources_fourth.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_resources_fourth.py new file mode 100644 index 000000000..a2ce8ea81 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_resources_fourth.py @@ -0,0 +1,8 @@ +from trottercert.resources import fourth_order_four_matching_resources + + +def test_fourth_order_boundary_merging() -> None: + estimate = fourth_order_four_matching_resources(144, 59) + assert estimate.group_exponentials == 1771 + assert estimate.local_propagators == 127512 + assert estimate.cnot_upper == 382536 diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_resources_verify.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_resources_verify.py new file mode 100644 index 000000000..b81967352 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_resources_verify.py @@ -0,0 +1,159 @@ +import hashlib +import json +from fractions import Fraction +from pathlib import Path + +import pytest + +from trottercert.anticommuting import sqrt_fraction_upper +from trottercert.resources import ( + ceil_nth_root_fraction, + four_matching_resources, + required_steps, + symmetric_group_exponentials, + three_l_path_resources, +) +from trottercert.verify import _verify_d4_sidecar, verify_certificate + + +def test_integer_roots_and_stage_merging() -> None: + assert ceil_nth_root_fraction(Fraction(10), 2) == 4 + assert required_steps(Fraction(378), Fraction(1, 1000), 2) == 615 + assert symmetric_group_exponentials(4, 3) == 19 + + +def test_resource_counts() -> None: + baseline = four_matching_resources(144, 615) + candidate = three_l_path_resources(144, 559) + assert baseline.local_propagators == 265_752 + assert candidate.local_propagators == 107_376 + + +def test_verifier_recomputes_and_rejects_corruption(tmp_path) -> None: + certificate = { + "schema_version": 1, + "benchmark": { + "normalization": "(XX+YY+ZZ)/4", + "length": 12, + "tolerance": [1, 1000], + }, + "proof": { + "reference_length": 6, + "baseline_density": [21, 8], + "candidate_density": [13, 6], + }, + "claimed_resources": { + "baseline_steps": 615, + "candidate_steps": 559, + "baseline_local_propagators": 265752, + "candidate_local_propagators": 107376, + "baseline_cnot_upper": 797256, + "candidate_cnot_upper": 966384, + }, + } + path = tmp_path / "certificate.json" + path.write_text(json.dumps(certificate)) + result = verify_certificate(path) + assert result["twofold_local_target_met"] + assert not result["twofold_compiled_cnot_target_met"] + certificate["proof"]["candidate_density"] = [2, 1] + path.write_text(json.dumps(certificate)) + try: + verify_certificate(path) + except ValueError as error: + assert "candidate density" in str(error) + else: + raise AssertionError("corrupted certificate was accepted") + + +def _write_synthetic_d4_sidecar( + root: Path, + payload: dict[str, object], + *, + digest: str | None = None, +) -> tuple[Path, dict[str, object]]: + sidecar = root / "d4.json" + raw = ( + json.dumps(payload, sort_keys=True, separators=(",", ":")) + + "\n" + ).encode() + sidecar.write_bytes(raw) + main = root / "main.json" + main.write_text("{}") + metadata = { + "path": sidecar.name, + "sha256": ( + hashlib.sha256(raw).hexdigest() + if digest is None + else digest + ), + "max_group_size": 3, + "cell_norm_upper": payload["cell_bound"], + } + return main, {"d4_certificate": metadata} + + +def _synthetic_d4_payload() -> dict[str, object]: + bound = sqrt_fraction_upper(Fraction(3)) + return { + "schema_version": 1, + "coefficient_denominator": 1, + "terms": [ + [0, 1, 1, 1], + [1, 0, 1, 1], + [1, 1, 1, 1], + ], + "sqrt_denominator": bound.denominator, + "groups": [ + [[0, 1, 2], bound.numerator], + ], + "cell_bound": [bound.numerator, bound.denominator], + } + + +def test_d4_sidecar_rejects_coverage_corruption(tmp_path) -> None: + payload = _synthetic_d4_payload() + payload["groups"][0][0].pop() + main, candidate = _write_synthetic_d4_sidecar(tmp_path, payload) + with pytest.raises(ValueError, match="coverage"): + _verify_d4_sidecar(main, candidate) + + +def test_d4_sidecar_rejects_commuting_group(tmp_path) -> None: + payload = _synthetic_d4_payload() + payload["terms"][2][:2] = [2, 0] + main, candidate = _write_synthetic_d4_sidecar(tmp_path, payload) + with pytest.raises(ValueError, match="anticommute"): + _verify_d4_sidecar(main, candidate) + + +def test_d4_sidecar_rejects_reduced_group_bound(tmp_path) -> None: + payload = _synthetic_d4_payload() + payload["groups"][0][1] -= 1 + main, candidate = _write_synthetic_d4_sidecar(tmp_path, payload) + with pytest.raises(ValueError, match="group bound"): + _verify_d4_sidecar(main, candidate) + + +def test_d4_sidecar_rejects_digest_corruption(tmp_path) -> None: + payload = _synthetic_d4_payload() + main, candidate = _write_synthetic_d4_sidecar( + tmp_path, + payload, + digest="0" * 64, + ) + with pytest.raises(ValueError, match="sidecar digest"): + _verify_d4_sidecar(main, candidate) + + +def test_v3_deliverable_fast_verifies() -> None: + root = Path(__file__).resolve().parents[1] + result = verify_certificate( + root / "certificates" / "issue128-certificate.json" + ) + assert result["global_twofold_target_met"] + assert result["global_fourfold_target_met"] + assert result["candidate_steps"] == 97 + assert result["published_steps"] == 393 + assert result["d4_term_count"] == 75_324 + assert result["d4_group_count"] == 7_576 diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_rigorous_fourth.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_rigorous_fourth.py new file mode 100644 index 000000000..ca9e7da31 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_rigorous_fourth.py @@ -0,0 +1,35 @@ +from fractions import Fraction + +import pytest + +from trottercert.rigorous_fourth import _rational_pair_bound +from trottercert.intervals import RationalInterval + + +def test_rational_pair_bound_dominates_euclidean_norm() -> None: + coefficients = ( + RationalInterval.point(3), + RationalInterval.point(4), + RationalInterval(Fraction(19, 10), Fraction(21, 10)), + ) + bound = _rational_pair_bound(coefficients, ((0, 1),), (2,)) + assert float(bound) >= (3**2 + 4**2) ** 0.5 + 2.1 + + +@pytest.mark.slow +def test_fourth_order_rational_certificate_crosses_target() -> None: + from trottercert.rigorous_fourth import fourth_order_rational_pair_certificate + + certificate = fourth_order_rational_pair_certificate(center=17) + assert certificate.site_density_upper < Fraction(9687, 100) + + +@pytest.mark.slow +def test_published_triangle_certificate_reproduces_baseline() -> None: + from trottercert.rigorous_fourth import ( + fourth_order_published_triangle_certificate, + ) + + certificate = fourth_order_published_triangle_certificate(decimal_digits=12) + assert certificate.center == 20 + assert Fraction(164) < certificate.site_density_upper < Fraction(166) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_series_formulas.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_series_formulas.py new file mode 100644 index 000000000..a0788e45f --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_series_formulas.py @@ -0,0 +1,56 @@ +from fractions import Fraction + +import numpy as np +from scipy.linalg import expm, logm + +from trottercert.algebra import PauliString, PauliSum, to_dense +from trottercert.formulas import ( + formula_log_series, + formula_log_through_degree_three, + leading_effective_error, + strang_stages, +) +from trottercert.series import exponential_series, logarithm_series + + +def pauli(site: int, op: str) -> PauliSum: + return PauliSum.term(PauliString({site: op})) + + +def test_exponential_and_logarithm_series_are_inverse() -> None: + x = pauli(0, "X") + series = exponential_series(x, Fraction(1, 3), 5) + recovered = logarithm_series(series) + assert recovered.coefficients[1] == x.scale(Fraction(1, 3)) + assert all(not recovered.coefficients[k] for k in range(2, 6)) + + +def test_strang_log_has_only_odd_terms_through_fourth_order() -> None: + fragments = (pauli(0, "X"), pauli(0, "Z")) + coefficients = formula_log_series(strang_stages(fragments), order=4) + assert not coefficients[2] + assert not coefficients[4] + + +def test_leading_error_matches_small_time_matrix_logarithm() -> None: + fragments = (pauli(0, "X"), pauli(0, "Z")) + stages = strang_stages(fragments) + e3 = leading_effective_error(stages) + h = to_dense(fragments[0] + fragments[1], 1) + predicted = to_dense(e3, 1) + for time in (1e-2, 5e-3): + product = np.eye(2, dtype=complex) + for stage in stages: + product = product @ expm( + -1j * float(stage.coefficient) * time * to_dense(stage.fragment, 1) + ) + effective = 1j * logm(product) / time + residual = (effective - h) / (time**2) + assert np.allclose(residual, predicted, atol=2e-4) + + +def test_graded_bch_matches_generic_series() -> None: + stages = strang_stages((pauli(0, "X"), pauli(0, "Z"))) + generic = formula_log_series(stages, order=3) + graded = formula_log_through_degree_three(stages) + assert tuple(generic[1:4]) == graded diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_small_crosscheck.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_small_crosscheck.py new file mode 100644 index 000000000..cfbfec7f9 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_small_crosscheck.py @@ -0,0 +1,10 @@ +from fractions import Fraction + +from trottercert.crosscheck import small_exact_crosscheck + + +def test_small_exact_evolution_is_below_certificate() -> None: + result = small_exact_crosscheck(2, Fraction(1, 1000)) + assert result["bound_dominates_empirical_error"] + assert result["bound_meets_tolerance"] + assert result["steps"] == 97 diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_su2clusters.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_su2clusters.py new file mode 100644 index 000000000..94b63cc77 --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_su2clusters.py @@ -0,0 +1,35 @@ +from trottercert.hamiltonian import full_heisenberg_hamiltonian +from trottercert.lattice import SquareLattice +from trottercert.su2clusters import ( + three_color_l_path_clusters, + three_l_path_fragments, +) + + +def test_three_color_decomposition_requires_compatible_torus() -> None: + try: + three_color_l_path_clusters(SquareLattice(10)) + except ValueError as error: + assert "requires 3 | L" in str(error) + else: + raise AssertionError("expected incompatible periodic coloring to fail") + + +def test_same_color_clusters_are_site_disjoint_l6() -> None: + lattice = SquareLattice(6) + groups = three_color_l_path_clusters(lattice) + assert all(len(group) == lattice.n_sites // 3 for group in groups) + for group in groups: + all_sites = [site for cluster in group for site in cluster.sites] + assert len(all_sites) == len(set(all_sites)) + + +def test_three_color_clusters_cover_every_bond_once() -> None: + lattice = SquareLattice(6) + clusters = three_color_l_path_clusters(lattice) + covered = [bond for group in clusters for cluster in group for bond in cluster.bonds] + assert len(covered) == len(set(covered)) + assert set(covered) == set(lattice.bonds()) + assert sum(three_l_path_fragments(lattice)[1:], three_l_path_fragments(lattice)[0]) == ( + full_heisenberg_hamiltonian(lattice) + ) diff --git a/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_support_groups.py b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_support_groups.py new file mode 100644 index 000000000..32ba0d86e --- /dev/null +++ b/tracks/qcs/solutions/WangTheoPhys/issue128/tests/test_support_groups.py @@ -0,0 +1,94 @@ +from __future__ import annotations + +from fractions import Fraction + +import pytest + +from trottercert.intervals import RationalInterval +from trottercert.support_groups import ( + build_d5_payload, + canonical_gzip_bytes, + certify_support_partition, + decode_d5_gzip, + discover_support_partition, + verify_d5_payload, +) + + +def test_support_certificate_rejects_cross_support_pair() -> None: + coefficients = { + (1, 0): RationalInterval.point(1), + (2, 0): RationalInterval.point(1), + } + with pytest.raises(ValueError, match="same support"): + certify_support_partition(coefficients, (((1, 0), (2, 0)),)) + + +def test_support_certificate_rejects_commuting_pair() -> None: + coefficients = { + (3, 0): RationalInterval.point(1), + (0, 3): RationalInterval.point(1), + } + with pytest.raises(ValueError, match="anticommute"): + certify_support_partition(coefficients, (((3, 0), (0, 3)),)) + + +def test_discovery_and_certification_cover_each_term_once() -> None: + coefficients = { + (3, 0): RationalInterval.point(Fraction(3, 7)), + (1, 2): RationalInterval.point(Fraction(-2, 9)), + (2, 1): RationalInterval.point(Fraction(5, 11)), + (4, 0): RationalInterval.point(Fraction(1, 13)), + } + groups = discover_support_partition(coefficients, max_group_size=3) + certificate = certify_support_partition(coefficients, groups) + flattened = [pauli for group in groups for pauli in group] + assert sorted(flattened) == sorted(coefficients) + assert certificate.bound <= sum( + (coefficient.abs_upper() for coefficient in coefficients.values()), + Fraction(), + ) + + +def test_discovery_scores_require_exact_coverage() -> None: + coefficients = { + (1, 2): RationalInterval.point(1), + (2, 1): RationalInterval.point(1), + } + with pytest.raises(ValueError, match="scores.*cover"): + discover_support_partition( + coefficients, + discovery_scores={(1, 2): Fraction(1)}, + ) + + +def test_support_certificate_rejects_missing_coverage() -> None: + coefficients = { + (1, 2): RationalInterval.point(1), + (2, 1): RationalInterval.point(1), + } + with pytest.raises(ValueError, match="coverage"): + certify_support_partition(coefficients, (((1, 2),),)) + + +def test_d5_sidecar_is_deterministic_and_rejects_missing_term() -> None: + coefficients = { + (1, 2): RationalInterval.point(Fraction(3, 7)), + (2, 1): RationalInterval.point(Fraction(-2, 9)), + } + first = build_d5_payload(coefficients) + second = build_d5_payload(coefficients) + encoded = canonical_gzip_bytes(first) + assert encoded == canonical_gzip_bytes(second) + assert encoded[9] == 0x13 + assert decode_d5_gzip(encoded) == first + verify_d5_payload(first) + groups = first["groups"] + assert isinstance(groups, list) + first_group = groups[0] + assert isinstance(first_group, list) + indices = first_group[0] + assert isinstance(indices, list) + indices.pop() + with pytest.raises(ValueError, match="coverage"): + verify_d5_payload(first)