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

Denbigh Town vs Porthmadog

Championship · Wales · 21 Aug 2026, 18:45 UTC

Final score
2 : 3
Result
Lost
Pick
Denbigh Town
Market
1X2
CLV vs fair close
+15.53%
Model prob.
49.0%
Best price
2.20
Min odds
2.08
Stake factor
2.20

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)
OfoJ2RWuTySeX6FQgMaUEePZY8bTw58AOGaPp0ACO6mhv/35kNalE2z3+Kq4WSwbTzIAzAlMA/dEuxh9/4zlinBtlqjtlIdHlS9uO6n0K+XzPJLW+wTXnEuEnsQbG1AJ3GQXALIvGU6PI16Sw7EWLgT7vbv7tIL4a+ftfiAI+6UnyOkPZafZXEQRmgIslto4qdZ3F5fDScNc73b/oO49//awkqscaHCz2vdpve3wTPWAk08PAj8wG6a+yfFyyJSai364oBAdOhbXs9p2mmDFKLOAP/K5U6ctwFdHCW9eJUQAb/xwtQLpR5psRGUw0HzsNeE445NBEj96auUp31YYZPFyNT618EeDo6wJwU2/
key fingerprint sha256: d7e909d40b7cd764d6e69b4232ea14bea74dd2cb3b3b1e3621b77c8b3c86e3af
Decrypt it & read the pick
Decryption key (released after the match)
4245e953775a54bd3e43eac814446ac90fcaa9034bc08a17ed7da1dbd2591bca
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("OfoJ2RWuTySeX6FQgMaUEePZY8bTw58AOGaPp0ACO6mhv/35kNalE2z3+Kq4WSwbTzIAzAlMA/dEuxh9/4zlinBtlqjtlIdHlS9uO6n0K+XzPJLW+wTXnEuEnsQbG1AJ3GQXALIvGU6PI16Sw7EWLgT7vbv7tIL4a+ftfiAI+6UnyOkPZafZXEQRmgIslto4qdZ3F5fDScNc73b/oO49//awkqscaHCz2vdpve3wTPWAk08PAj8wG6a+yfFyyJSai364oBAdOhbXs9p2mmDFKLOAP/K5U6ctwFdHCW9eJUQAb/xwtQLpR5psRGUw0HzsNeE445NBEj96auUp31YYZPFyNT618EeDo6wJwU2/"), c => c.charCodeAt(0));
const key  = Uint8Array.from("4245e953775a54bd3e43eac814446ac90fcaa9034bc08a17ed7da1dbd2591bca".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): 4245e953775a54bd3e43eac814446ac90fcaa9034bc08a17ed7da1dbd2591bca
  • IV / nonce (hex): 39fa09d915ae4f249e5fa150
  • Ciphertext (hex): 80c69411e3d963c6d3c39f0038668fa740023ba9a1bffdf990d6a5136cf7f8aab8592c1b4f3200cc094c03f744bb187dff8ce58a706d96a8ed948747952f6e3ba9f42be5f33c92d6fb04d79c4b849ec41b1b5009dc641700b22f194e8f235e92c3b1162e04fbbdbbfbb482f86be7ed7e2008fba527c8e90f65a7d95c44119a022c96da38a9d6771797c349c35cef76ffa0ee3dfff6b092ab1c6870b3daf769bdedf04cf580934f0f023f301ba6bec9f172c8949a8b7eb8a0101d3a16d7b3da769a60c528b3803ff2b953a72dc05747096f5e2544006ffc70b502e9479a6c446530d07cec35e138e39341123f7a6ae529df56
  • Auth tag (hex): 1864f172353eb5f04783a3ac09c14dbf

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 #963342 · 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.