Le Mans vs Lorient
Ligue 1 · France · 19 Sept 2026, 18:45 UTC
Proof this pick was locked in before kickoff
The pick was encrypted before kickoff and published the moment it was sealed to Telegram and GitHub, each carrying an independent timestamp. The encrypted batch is also anchored in Bitcoin — a public record nobody, including us, can alter or back-date. After the match the key is released; decrypting that exact pre-published message reveals the pick, proving it was fixed in advance, not cherry-picked.
9bWm+Q4hI5MMQ6z6xDr+O3SNTwgebij3kvPGnamkGbs5N2R/mow+OJBbweTW6l4OoGEfmRBquWext6ItflLpjvyX1n554JP49Tx0poemFwEMZHG4y8nhlI4y1guEUkJOfI+GBx42OkSerEzr1rNWOXWWGgYgHCnBlafqlWOX1mtl+UBrts7LxdVtqepoZgVrjvlyTQHAMCTOTJ1qoUdGMbQJKI3nSpI8/38Gi1etAdon16eTPk+p3jvFzmC4iUXrfoLwgirm/D/6QksX0DRl9KG0GAPHPhRF+XKiVIs/hRWgjiatw4Egq7h6vhmWeOlF+PvhVqUTQpbR5S1CEMUNuW/rkcDwYtUA
f1734e5e50388a72786f77a8f7e21fd051ec0a752443f59bafdef3385e17de5fDecrypt in CyberChef →
Verify it yourself — paste both values, no install
The Encrypted pick above is base64( nonce[12 bytes] + ciphertext + tag[16 bytes] ),
AES-256-GCM. Zero-install check: open your browser console (press F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("9bWm+Q4hI5MMQ6z6xDr+O3SNTwgebij3kvPGnamkGbs5N2R/mow+OJBbweTW6l4OoGEfmRBquWext6ItflLpjvyX1n554JP49Tx0poemFwEMZHG4y8nhlI4y1guEUkJOfI+GBx42OkSerEzr1rNWOXWWGgYgHCnBlafqlWOX1mtl+UBrts7LxdVtqepoZgVrjvlyTQHAMCTOTJ1qoUdGMbQJKI3nSpI8/38Gi1etAdon16eTPk+p3jvFzmC4iUXrfoLwgirm/D/6QksX0DRl9KG0GAPHPhRF+XKiVIs/hRWgjiatw4Egq7h6vhmWeOlF+PvhVqUTQpbR5S1CEMUNuW/rkcDwYtUA"), c => c.charCodeAt(0));
const key = Uint8Array.from("f1734e5e50388a72786f77a8f7e21fd051ec0a752443f59bafdef3385e17de5f".match(/../g).map(h => parseInt(h, 16)));
crypto.subtle.importKey("raw", key, "AES-GCM", false, ["decrypt"])
.then(k => crypto.subtle.decrypt({ name: "AES-GCM", iv: blob.slice(0, 12) }, k, blob.slice(12)))
.then(b => console.log(new TextDecoder().decode(b))); Prefer a GUI? The orange button opens CyberChef pre-filled. Or split the parts yourself for any AES-256-GCM tool:
- Algorithm:
AES-256-GCM - Key (hex):
f1734e5e50388a72786f77a8f7e21fd051ec0a752443f59bafdef3385e17de5f - IV / nonce (hex):
f5b5a6f90e2123930c43acfa - Ciphertext (hex):
c43afe3b748d4f081e6e28f792f3c69da9a419bb3937647f9a8c3e38905bc1e4d6ea5e0ea0611f99106ab967b1b7a22d7e52e98efc97d67e79e093f8f53c74a687a617010c6471b8cbc9e1948e32d60b8452424e7c8f86071e363a449eac4cebd6b3563975961a06201c29c195a7ea956397d66b65f9406bb6cecbc5d56da9ea6866056b8ef9724d01c03024ce4c9d6aa1474631b409288de74a923cff7f068b57ad01da27d7a7933e4fa9de3bc5ce60b88945eb7e82f0822ae6fc3ffa424b17d03465f4a1b41803c73e1445f972a2548b3f8515a08e26adc38120abb87abe199678e945f8fbe156a5134296 - Auth tag (hex):
d1e52d4210c50db96feb91c0f062d500
Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.
How to verify the Bitcoin timestamp yourself
Bitcoin doesn't store the pick — it stores a 32-byte fingerprint (SHA-256) of the
encrypted batch, via OpenTimestamps. That fingerprint is frozen in a public block nobody can alter
or back-date. You can't spot it by eye on a block explorer (a block holds thousands of unrelated
transactions) — you verify it with the .ots proof and any OpenTimestamps tool:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #967106 · anchoring transaction (its OP_RETURN holds the commitment). The block's Timestamp is when it became permanent.
Note: Bitcoin anchoring lands ~30–60 min after sealing, and a block's timestamp is miner-set (approximate). So the exact “before kickoff” proof is the seal time above — timestamped instantly by Telegram/GitHub — while Bitcoin is the independent, un-forgeable anchor of permanence.