Alvechurch vs Racing Club Warwick
Southern Premier League Central · England · 29 Aug 2026, 14:00 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.
ftv10NGVUvsaWBGfo8kYER7A60iy4eYtyHqKgn3FNM04qdLtQYKRC8sUTy+PgBpXLTdTC2O+wN0Bb7LccJephqDs977dGSpqAqWYzDWINsO8rODUDhhvIqIQOvn3gOHs3gNA02M5/q/+ms4U1PzQZOw8L+Ve7kEHe0R51Qc0NLk/CQdMmaBu+rqH/RcHOG+xxsKBTGNWI7ctjt1qAxZXMAOwFXSLLa6+tS5G6dpjBDF3DZIvKLWDjfsw2SJKGeF6jxOROREMbP2ei1Aow3Pta5T/eU3MukjCISadbozaV4ktajDAyr5affKkLBegrk5iK3PLbz8wHRQdyEnmskWZFAxi0U6T8dg55uUCiwyUhwIE
3192cc03e1dff360689052f4a71b6e2573286dbdaf4e91688ffe87e353c6e3e0Decrypt 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("ftv10NGVUvsaWBGfo8kYER7A60iy4eYtyHqKgn3FNM04qdLtQYKRC8sUTy+PgBpXLTdTC2O+wN0Bb7LccJephqDs977dGSpqAqWYzDWINsO8rODUDhhvIqIQOvn3gOHs3gNA02M5/q/+ms4U1PzQZOw8L+Ve7kEHe0R51Qc0NLk/CQdMmaBu+rqH/RcHOG+xxsKBTGNWI7ctjt1qAxZXMAOwFXSLLa6+tS5G6dpjBDF3DZIvKLWDjfsw2SJKGeF6jxOROREMbP2ei1Aow3Pta5T/eU3MukjCISadbozaV4ktajDAyr5affKkLBegrk5iK3PLbz8wHRQdyEnmskWZFAxi0U6T8dg55uUCiwyUhwIE"), c => c.charCodeAt(0));
const key = Uint8Array.from("3192cc03e1dff360689052f4a71b6e2573286dbdaf4e91688ffe87e353c6e3e0".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):
3192cc03e1dff360689052f4a71b6e2573286dbdaf4e91688ffe87e353c6e3e0 - IV / nonce (hex):
7edbf5d0d19552fb1a58119f - Ciphertext (hex):
a3c918111ec0eb48b2e1e62dc87a8a827dc534cd38a9d2ed4182910bcb144f2f8f801a572d37530b63bec0dd016fb2dc7097a986a0ecf7bedd192a6a02a598cc358836c3bcace0d40e186f22a2103af9f780e1ecde0340d36339feaffe9ace14d4fcd064ec3c2fe55eee41077b4479d5073434b93f09074c99a06efaba87fd1707386fb1c6c2814c635623b72d8edd6a0316573003b015748b2daebeb52e46e9da630431770d922f28b5838dfb30d9224a19e17a8f139139110c6cfd9e8b5028c373ed6b94ff794dccba48c221269d6e8cda57892d6a30c0cabe5a7df2a42c17a0ae4e622b73cb6f3f301d141dc849e6b24599140c - Auth tag (hex):
62d14e93f1d839e6e5028b0c94870204
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 #964449 · 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.