collatz: update hensel chain leaves shifted script and certs

**Motivations:**
- Sync certs_shifted artefacts and minor script fix.

**Root causes:** N/A
**Correctifs:** N/A
**Evolutions:**
- collatz_build_hensel_chain_leaves_shifted.py
- docs/artefacts/collatz/refinement_K/.../certs_shifted/*.json

**Pages affectées:**
- applications/collatz/collatz_k_scripts/collatz_build_hensel_chain_leaves_shifted.py
- docs/artefacts/collatz/refinement_K/palier2p15/hensel_chain_leaves/certs_shifted/
This commit is contained in:
ncantu 2026-03-10 12:52:10 +01:00
parent a8d234c072
commit b2d3332ced
2399 changed files with 103090 additions and 349 deletions

View File

@ -15,6 +15,7 @@ from __future__ import annotations
import argparse
import hashlib
import json
import re
from dataclasses import dataclass
from pathlib import Path
@ -147,12 +148,82 @@ def _leaf_for_sibling(*, residue: int, m: int, k_max: int, t_max: int) -> Leaf |
return d if (d.threshold, d.k_or_t) <= (f.threshold, f.k_or_t) else f
def _load_leaf_sets(*, leaf_json_paths: list[Path]) -> tuple[dict[int, set[int]], dict[tuple[int, int], Leaf]]:
"""Load leaf sets and D_minor leaf map from JSON paths."""
leaves_by_m: dict[int, set[int]] = {}
class _ResidueBitset:
"""Compact bitset for odd residues at palier m."""
def __init__(self, palier: int) -> None:
self.palier = palier
size = 1 << (palier - 1)
self._bits = bytearray(size >> 3)
if size & 7:
self._bits.append(0)
def add(self, r: int) -> None:
if r <= 0 or (r % 2) == 0:
return
idx = r >> 1
if idx < len(self._bits) * 8:
self._bits[idx >> 3] |= 1 << (idx & 7)
def __contains__(self, r: object) -> bool:
if not isinstance(r, int) or r <= 0 or (r % 2) == 0:
return False
idx = r >> 1
if idx >= len(self._bits) * 8:
return False
return (self._bits[idx >> 3] >> (idx & 7)) & 1 != 0
def update(self, it: object) -> None:
if isinstance(it, _ResidueBitset):
for i in range(len(self._bits)):
self._bits[i] |= it._bits[i]
else:
for r in it:
self.add(r)
def _load_residues_streaming(residues_path: Path, palier: int) -> set[int] | _ResidueBitset:
"""Load residues from .residues.json without loading full list in memory."""
try:
import ijson
except ImportError:
with residues_path.open("r", encoding="utf-8") as f:
obj = json.load(f)
res_list = obj.get("residues", []) if isinstance(obj, dict) else []
if palier >= 20:
out = _ResidueBitset(palier)
for r in res_list:
if isinstance(r, int):
out.add(r)
return out
return set(r for r in res_list if isinstance(r, int))
with residues_path.open("rb") as f:
residues: set[int] | _ResidueBitset = _ResidueBitset(palier) if palier >= 20 else set()
f.seek(0)
for r in ijson.items(f, "residues.item"):
if isinstance(r, (int, float)):
residues.add(int(r))
return residues
def _load_leaf_sets(*, leaf_json_paths: list[Path]) -> tuple[dict[int, set[int] | _ResidueBitset], dict[tuple[int, int], Leaf]]:
"""Load leaf sets and D_minor leaf map. Uses .residues.json when available for terminal clauses."""
leaves_by_m: dict[int, set[int] | _ResidueBitset] = {}
dminor_leaf_map: dict[tuple[int, int], Leaf] = {}
for p in leaf_json_paths:
residues_path = p.with_name(p.stem + ".residues.json")
if "clauses_terminal" in p.name and residues_path.exists():
with residues_path.open("rb") as f:
head = f.read(80)
match = re.search(rb'"palier"\s*:\s*(\d+)', head)
if match:
palier = int(match.group(1))
residues = _load_residues_streaming(residues_path, palier)
if palier not in leaves_by_m:
leaves_by_m[palier] = _ResidueBitset(palier) if palier >= 20 else set()
leaves_by_m[palier].update(residues)
continue
obj = _read_json(p)
if not isinstance(obj, dict):
continue

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1000167,
"r18_parent": 475879,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1000167,
"k_or_t": 10,
"A": null,
"threshold": 14,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 12,
"C_km1": 26923,
"B_k": 84865
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1000191,
"r18_parent": 475903,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1000191,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 60329,
"B_k": 197371
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1000699,
"r18_parent": 476411,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1000699,
"k_or_t": 10,
"A": null,
"threshold": 20,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 14,
"C_km1": 37231,
"B_k": 128077
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1001723,
"r18_parent": 1001723,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 24,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1001723,
"k_or_t": 11,
"A": null,
"threshold": 5,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 15,
"C_km1": 118861,
"B_k": 389351
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1001723,
"r18_parent": 477435,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 24,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1001723,
"k_or_t": 11,
"A": null,
"threshold": 5,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 15,
"C_km1": 118861,
"B_k": 389351
}
}
}
}

View File

@ -1,6 +1,6 @@
{
"domain": {
"start_m": 19,
"start_m": 21,
"r19_chain": 100187,
"r18_parent": 100187,
"k": 10,

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1002215,
"r18_parent": 477927,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1002215,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 82817,
"B_k": 264835
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1003239,
"r18_parent": 1003239,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 24,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1003239,
"k_or_t": 9,
"A": null,
"threshold": 3,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 12,
"C_km1": 8633,
"B_k": 29995
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1003239,
"r18_parent": 478951,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 24,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1003239,
"k_or_t": 9,
"A": null,
"threshold": 3,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 12,
"C_km1": 8633,
"B_k": 29995
}
}
}
}

View File

@ -1,6 +1,6 @@
{
"domain": {
"start_m": 19,
"start_m": 21,
"r19_chain": 100519,
"r18_parent": 100519,
"k": 11,

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1005287,
"r18_parent": 1005287,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1005287,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 87937,
"B_k": 280195
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1005287,
"r18_parent": 480999,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1005287,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 87937,
"B_k": 280195
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1009739,
"r18_parent": 1009739,
"k": 3,
"m_end": 5
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 5,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 5,
"residue_mod_2p": 1009739,
"k_or_t": 3,
"A": null,
"threshold": 5,
"extra": {
"k": 3,
"underlineA": 5,
"A_km1": 3,
"C_km1": 5,
"B_k": 23
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1009739,
"r18_parent": 485451,
"k": 3,
"m_end": 5
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 5,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 5,
"residue_mod_2p": 1009739,
"k_or_t": 3,
"A": null,
"threshold": 5,
"extra": {
"k": 3,
"underlineA": 5,
"A_km1": 3,
"C_km1": 5,
"B_k": 23
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1010715,
"r18_parent": 486427,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1010715,
"k_or_t": 10,
"A": null,
"threshold": 14,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 12,
"C_km1": 28687,
"B_k": 90157
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1011431,
"r18_parent": 1011431,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 23,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1011431,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 98177,
"B_k": 310915
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1011431,
"r18_parent": 487143,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 23,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1011431,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 98177,
"B_k": 310915
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1012763,
"r18_parent": 488475,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1012763,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 88109,
"B_k": 280711
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1013787,
"r18_parent": 1013787,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1013787,
"k_or_t": 9,
"A": null,
"threshold": 3,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 12,
"C_km1": 9221,
"B_k": 31759
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1013787,
"r18_parent": 489499,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1013787,
"k_or_t": 9,
"A": null,
"threshold": 3,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 12,
"C_km1": 9221,
"B_k": 31759
}
}
}
}

View File

@ -1,6 +1,6 @@
{
"domain": {
"start_m": 19,
"start_m": 21,
"r19_chain": 101407,
"r18_parent": 101407,
"k": 11,

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1015279,
"r18_parent": 1015279,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1015279,
"k_or_t": 9,
"A": null,
"threshold": 2,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 11,
"C_km1": 7601,
"B_k": 24851
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1015279,
"r18_parent": 490991,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1015279,
"k_or_t": 9,
"A": null,
"threshold": 2,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 11,
"C_km1": 7601,
"B_k": 24851
}
}
}
}

View File

@ -1,6 +1,6 @@
{
"domain": {
"start_m": 19,
"start_m": 20,
"r19_chain": 101531,
"r18_parent": 101531,
"k": 11,

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1015835,
"r18_parent": 1015835,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 25,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1015835,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 93229,
"B_k": 296071
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1015835,
"r18_parent": 491547,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 25,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1015835,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 93229,
"B_k": 296071
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1016303,
"r18_parent": 492015,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1016303,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 13,
"C_km1": 73529,
"B_k": 228779
}
}
}
}

View File

@ -1,6 +1,6 @@
{
"domain": {
"start_m": 19,
"start_m": 21,
"r19_chain": 101679,
"r18_parent": 101679,
"k": 10,

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1018351,
"r18_parent": 494063,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1018351,
"k_or_t": 10,
"A": null,
"threshold": 13,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 13,
"C_km1": 23827,
"B_k": 79673
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1019375,
"r18_parent": 1019375,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1019375,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 13,
"C_km1": 78649,
"B_k": 244139
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1019375,
"r18_parent": 495087,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1019375,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 13,
"C_km1": 78649,
"B_k": 244139
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1019623,
"r18_parent": 1019623,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 25,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1019623,
"k_or_t": 11,
"A": null,
"threshold": 5,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 15,
"C_km1": 106369,
"B_k": 351875
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1019623,
"r18_parent": 495335,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 25,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1019623,
"k_or_t": 11,
"A": null,
"threshold": 5,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 15,
"C_km1": 106369,
"B_k": 351875
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1019967,
"r18_parent": 1019967,
"k": 8,
"m_end": 13
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 13,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 13,
"residue_mod_2p": 1019967,
"k_or_t": 8,
"A": null,
"threshold": 6,
"extra": {
"k": 8,
"underlineA": 13,
"A_km1": 10,
"C_km1": 2507,
"B_k": 8545
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1019967,
"r18_parent": 495679,
"k": 8,
"m_end": 13
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 13,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 13,
"residue_mod_2p": 1019967,
"k_or_t": 8,
"A": null,
"threshold": 6,
"extra": {
"k": 8,
"underlineA": 13,
"A_km1": 10,
"C_km1": 2507,
"B_k": 8545
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1020287,
"r18_parent": 1020287,
"k": 7,
"m_end": 12
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 12,
"v2_L_r19": 24,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 12,
"residue_mod_2p": 1020287,
"k_or_t": 7,
"A": null,
"threshold": 2,
"extra": {
"k": 7,
"underlineA": 12,
"A_km1": 6,
"C_km1": 665,
"B_k": 2059
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1020287,
"r18_parent": 495999,
"k": 7,
"m_end": 12
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 12,
"v2_L_r19": 24,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 12,
"residue_mod_2p": 1020287,
"k_or_t": 7,
"A": null,
"threshold": 2,
"extra": {
"k": 7,
"underlineA": 12,
"A_km1": 6,
"C_km1": 665,
"B_k": 2059
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1021979,
"r18_parent": 1021979,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1021979,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 103469,
"B_k": 326791
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1021979,
"r18_parent": 497691,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1021979,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 103469,
"B_k": 326791
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1022311,
"r18_parent": 1022311,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1022311,
"k_or_t": 9,
"A": null,
"threshold": 2,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 11,
"C_km1": 7993,
"B_k": 26027
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1022311,
"r18_parent": 498023,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1022311,
"k_or_t": 9,
"A": null,
"threshold": 2,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 11,
"C_km1": 7993,
"B_k": 26027
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1022447,
"r18_parent": 498159,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1022447,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 15,
"C_km1": 75577,
"B_k": 259499
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1023335,
"r18_parent": 499047,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1023335,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 13,
"C_km1": 77057,
"B_k": 239363
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1023471,
"r18_parent": 1023471,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1023471,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 82745,
"B_k": 264619
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1023471,
"r18_parent": 499183,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1023471,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 82745,
"B_k": 264619
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1023903,
"r18_parent": 499615,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1023903,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 15,
"C_km1": 83465,
"B_k": 283163
}
}
}
}

View File

@ -1,6 +1,6 @@
{
"domain": {
"start_m": 19,
"start_m": 20,
"r19_chain": 1023,
"r18_parent": 1023,
"k": 11,

View File

@ -1,6 +1,6 @@
{
"domain": {
"start_m": 19,
"start_m": 20,
"r19_chain": 102431,
"r18_parent": 102431,
"k": 11,

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1025383,
"r18_parent": 501095,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1025383,
"k_or_t": 10,
"A": null,
"threshold": 13,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 13,
"C_km1": 25003,
"B_k": 83201
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1025951,
"r18_parent": 501663,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1025951,
"k_or_t": 10,
"A": null,
"threshold": 16,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 14,
"C_km1": 27139,
"B_k": 97801
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1026111,
"r18_parent": 1026111,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 23,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1026111,
"k_or_t": 10,
"A": null,
"threshold": 14,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 12,
"C_km1": 27683,
"B_k": 87145
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1026111,
"r18_parent": 501823,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 23,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1026111,
"k_or_t": 10,
"A": null,
"threshold": 14,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 12,
"C_km1": 27683,
"B_k": 87145
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1026407,
"r18_parent": 1026407,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1026407,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 13,
"C_km1": 82177,
"B_k": 254723
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1026407,
"r18_parent": 502119,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1026407,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 13,
"C_km1": 82177,
"B_k": 254723
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1029479,
"r18_parent": 505191,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1029479,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 15,
"C_km1": 79105,
"B_k": 270083
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1029503,
"r18_parent": 505215,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1029503,
"k_or_t": 9,
"A": null,
"threshold": 2,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 11,
"C_km1": 7201,
"B_k": 23651
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1030171,
"r18_parent": 1030171,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1030171,
"k_or_t": 11,
"A": null,
"threshold": 5,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 15,
"C_km1": 111661,
"B_k": 367751
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1030171,
"r18_parent": 505883,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1030171,
"k_or_t": 11,
"A": null,
"threshold": 5,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 15,
"C_km1": 111661,
"B_k": 367751
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1030503,
"r18_parent": 1030503,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1030503,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 86273,
"B_k": 275203
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1030503,
"r18_parent": 506215,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1030503,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 86273,
"B_k": 275203
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1032255,
"r18_parent": 1032255,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1032255,
"k_or_t": 10,
"A": null,
"threshold": 16,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 13,
"C_km1": 29731,
"B_k": 97385
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1032255,
"r18_parent": 507967,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1032255,
"k_or_t": 10,
"A": null,
"threshold": 16,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 13,
"C_km1": 29731,
"B_k": 97385
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1033119,
"r18_parent": 1033119,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 23,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1033119,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 15,
"C_km1": 98825,
"B_k": 329243
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1033119,
"r18_parent": 508831,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 23,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1033119,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 15,
"C_km1": 98825,
"B_k": 329243
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1033599,
"r18_parent": 509311,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1033599,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 13,
"C_km1": 75049,
"B_k": 233339
}
}
}
}

View File

@ -1,6 +1,6 @@
{
"domain": {
"start_m": 19,
"start_m": 20,
"r19_chain": 103615,
"r18_parent": 103615,
"k": 9,

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1037695,
"r18_parent": 513407,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1037695,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 79145,
"B_k": 253819
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1038559,
"r18_parent": 514271,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1038559,
"k_or_t": 9,
"A": null,
"threshold": 3,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 12,
"C_km1": 9409,
"B_k": 32323
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1039003,
"r18_parent": 1039003,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1039003,
"k_or_t": 10,
"A": null,
"threshold": 15,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 12,
"C_km1": 29839,
"B_k": 93613
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1039003,
"r18_parent": 514715,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1039003,
"k_or_t": 10,
"A": null,
"threshold": 15,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 12,
"C_km1": 29839,
"B_k": 93613
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1039039,
"r18_parent": 1039039,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 24,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1039039,
"k_or_t": 9,
"A": null,
"threshold": 2,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 10,
"C_km1": 6881,
"B_k": 21667
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1039039,
"r18_parent": 514751,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 24,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1039039,
"k_or_t": 9,
"A": null,
"threshold": 2,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 10,
"C_km1": 6881,
"B_k": 21667
}
}
}
}

View File

@ -1,6 +1,6 @@
{
"domain": {
"start_m": 19,
"start_m": 20,
"r19_chain": 103935,
"r18_parent": 103935,
"k": 9,

View File

@ -1,6 +1,6 @@
{
"domain": {
"start_m": 19,
"start_m": 20,
"r19_chain": 10399,
"r18_parent": 10399,
"k": 11,

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1040607,
"r18_parent": 516319,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1040607,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 94921,
"B_k": 301147
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1041051,
"r18_parent": 1041051,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 22,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1041051,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 91565,
"B_k": 291079
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1041051,
"r18_parent": 516763,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 22,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1041051,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 91565,
"B_k": 291079
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1041063,
"r18_parent": 1041063,
"k": 8,
"m_end": 13
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 13,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 13,
"residue_mod_2p": 1041063,
"k_or_t": 8,
"A": null,
"threshold": 6,
"extra": {
"k": 8,
"underlineA": 13,
"A_km1": 10,
"C_km1": 2899,
"B_k": 9721
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1041063,
"r18_parent": 516775,
"k": 8,
"m_end": 13
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 13,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 13,
"residue_mod_2p": 1041063,
"k_or_t": 8,
"A": null,
"threshold": 6,
"extra": {
"k": 8,
"underlineA": 13,
"A_km1": 10,
"C_km1": 2899,
"B_k": 9721
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1041087,
"r18_parent": 1041087,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1041087,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 12,
"C_km1": 67049,
"B_k": 205243
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1041087,
"r18_parent": 516799,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1041087,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 12,
"C_km1": 67049,
"B_k": 205243
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1041383,
"r18_parent": 1041383,
"k": 6,
"m_end": 10
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 10,
"v2_L_r19": 22,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 10,
"residue_mod_2p": 1041383,
"k_or_t": 6,
"A": null,
"threshold": 3,
"extra": {
"k": 6,
"underlineA": 10,
"A_km1": 6,
"C_km1": 251,
"B_k": 817
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1041383,
"r18_parent": 517095,
"k": 6,
"m_end": 10
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 10,
"v2_L_r19": 22,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 10,
"residue_mod_2p": 1041383,
"k_or_t": 6,
"A": null,
"threshold": 3,
"extra": {
"k": 6,
"underlineA": 10,
"A_km1": 6,
"C_km1": 251,
"B_k": 817
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1042075,
"r18_parent": 517787,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1042075,
"k_or_t": 9,
"A": null,
"threshold": 3,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 12,
"C_km1": 9605,
"B_k": 32911
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1043135,
"r18_parent": 1043135,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 22,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1043135,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 13,
"C_km1": 69097,
"B_k": 215483
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1043135,
"r18_parent": 518847,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 22,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1043135,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 13,
"C_km1": 69097,
"B_k": 215483
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1043567,
"r18_parent": 519279,
"k": 9,
"m_end": 15
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 15,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 15,
"residue_mod_2p": 1043567,
"k_or_t": 9,
"A": null,
"threshold": 2,
"extra": {
"k": 9,
"underlineA": 15,
"A_km1": 11,
"C_km1": 7985,
"B_k": 26003
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1044123,
"r18_parent": 519835,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1044123,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 96685,
"B_k": 306439
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1044591,
"r18_parent": 1044591,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1044591,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 13,
"C_km1": 76985,
"B_k": 239147
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1044591,
"r18_parent": 520303,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 21,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1044591,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 13,
"C_km1": 76985,
"B_k": 239147
}
}
}
}

View File

@ -1,6 +1,6 @@
{
"domain": {
"start_m": 19,
"start_m": 21,
"r19_chain": 104615,
"r18_parent": 104615,
"k": 11,

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1046639,
"r18_parent": 1046639,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 22,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1046639,
"k_or_t": 10,
"A": null,
"threshold": 13,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 13,
"C_km1": 24979,
"B_k": 83129
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1046639,
"r18_parent": 522351,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 22,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1046639,
"k_or_t": 10,
"A": null,
"threshold": 13,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 13,
"C_km1": 24979,
"B_k": 83129
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1046751,
"r18_parent": 522463,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1046751,
"k_or_t": 11,
"A": null,
"threshold": 4,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 105161,
"B_k": 331867
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1047207,
"r18_parent": 1047207,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 22,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1047207,
"k_or_t": 10,
"A": null,
"threshold": 16,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 12,
"C_km1": 31211,
"B_k": 97729
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1047207,
"r18_parent": 522919,
"k": 10,
"m_end": 16
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 16,
"v2_L_r19": 22,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 16,
"residue_mod_2p": 1047207,
"k_or_t": 10,
"A": null,
"threshold": 16,
"extra": {
"k": 10,
"underlineA": 16,
"A_km1": 12,
"C_km1": 31211,
"B_k": 97729
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 21,
"r19_chain": 1047231,
"r18_parent": 1047231,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 23,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1047231,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 73193,
"B_k": 235963
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1047231,
"r18_parent": 522943,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 23,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1047231,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 14,
"C_km1": 73193,
"B_k": 235963
}
}
}
}

View File

@ -0,0 +1,34 @@
{
"domain": {
"start_m": 20,
"r19_chain": 1047663,
"r18_parent": 523375,
"k": 11,
"m_end": 18
},
"params": {
"k_leaf_max": 256,
"t_leaf_max": 256,
"k_chain_max": 80
},
"chain": {
"u_min": 18,
"v2_L_r19": 20,
"steps": [],
"final": {
"kind": "D_minor",
"modulus_power": 18,
"residue_mod_2p": 1047663,
"k_or_t": 11,
"A": null,
"threshold": 3,
"extra": {
"k": 11,
"underlineA": 18,
"A_km1": 13,
"C_km1": 82105,
"B_k": 254507
}
}
}
}

Some files were not shown because too many files have changed in this diff Show More