Sign in
← All matches
✅ Cryptographically verified · sealed pick #2242

Celtic vs Ferencvaros

Europa League · UEFA · 17 Sept 2026, 19:00 UTC

Final score
1 : 3
Result
Lost
Pick
Celtic
Market
1X2
CLV vs fair close
+7.06%
Model prob.
57.5%
Best price
1.85
Min odds
1.78
Stake factor
2.50

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.

Encrypted pick (AES-256-GCM)
CN8EfKK68cfk31552xbyaXDbN76ewZU2Pk2BKhCOB++IXpAw+v6CvVPlwNOPGdt8M+4VCr6X5jDlXaopVOWhoHXAIJcMMK+ehVMmp/Fvh+gGVqcgQWVVtgPRjvgDOMRJ0Sl7kltK7hbhdgsR4WD+UDBh5BqLiJi1VyOBYvOqz6/R8jclgOSuR5Dhtvp8dtICkYbwx4bdO3FfD/tcYh6BhYf3SrsvXkakMBrF8ZWueqqsrhC9PIcpleQF86pTxaxYYFbuaU7BXBySpSF0U+wQ/G4w6WxScHDJSv/Vo+hx6lINAhdbVG+PWIqxyiovUB/rhFGiR/+SA/ezVi/uPWuJn8qQZWkcqfcUIG4=
key fingerprint sha256: 08bf9803c6e7a9e3f10b03d6b31f2e003200c529ad27ee380f192fb37395573e
Decrypt it & read the pick
Decryption key (released after the match)
d067ee3cad42a81569b38b2be031f76b8950943f2ba1b9033ca91678af985fc1
Decrypt 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 F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("CN8EfKK68cfk31552xbyaXDbN76ewZU2Pk2BKhCOB++IXpAw+v6CvVPlwNOPGdt8M+4VCr6X5jDlXaopVOWhoHXAIJcMMK+ehVMmp/Fvh+gGVqcgQWVVtgPRjvgDOMRJ0Sl7kltK7hbhdgsR4WD+UDBh5BqLiJi1VyOBYvOqz6/R8jclgOSuR5Dhtvp8dtICkYbwx4bdO3FfD/tcYh6BhYf3SrsvXkakMBrF8ZWueqqsrhC9PIcpleQF86pTxaxYYFbuaU7BXBySpSF0U+wQ/G4w6WxScHDJSv/Vo+hx6lINAhdbVG+PWIqxyiovUB/rhFGiR/+SA/ezVi/uPWuJn8qQZWkcqfcUIG4="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d067ee3cad42a81569b38b2be031f76b8950943f2ba1b9033ca91678af985fc1".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): d067ee3cad42a81569b38b2be031f76b8950943f2ba1b9033ca91678af985fc1
  • IV / nonce (hex): 08df047ca2baf1c7e4df5e79
  • Ciphertext (hex): db16f26970db37be9ec195363e4d812a108e07ef885e9030fafe82bd53e5c0d38f19db7c33ee150abe97e630e55daa2954e5a1a075c020970c30af9e855326a7f16f87e80656a720416555b603d18ef80338c449d1297b925b4aee16e1760b11e160fe503061e41a8b8898b557238162f3aacfafd1f2372580e4ae4790e1b6fa7c76d2029186f0c786dd3b715f0ffb5c621e818587f74abb2f5e46a4301ac5f195ae7aaaacae10bd3c872995e405f3aa53c5ac586056ee694ec15c1c92a5217453ec10fc6e30e96c527070c94affd5a3e871ea520d02175b546f8f588ab1ca2a2f501feb8451a247ff9203f7b356
  • Auth tag (hex): 2fee3d6b899fca9065691ca9f714206e

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:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #964861 · 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.