Three Bridges vs Kingstonian
FA Cup Qualification · England · 04 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.
SotzJMTZEhUcNEC1JNXKlQdiHK8T4dZBU3YA5iTcbUQlTKJafg0sfkR41T4qQgcB4IrIqtVa2nwWWOzbz7ZdGN7Qv0uHmwPFJNaKmq2Psr2lGZjZ19+qlicn8qGMIvnXIpQ1go49h9IA4I0jAqXjO9RF7EeSS4Cm6gWJFlxxTieUYOAUtd5/wPIX6AgxOLxeqC0oS1OyiWC3MPWs8DeEnIW2ssjxcZ8lM42WEa47rUDsGFyDv+E6IBdsdplzEOvc/+pH1yiD21ALLv0B8RZ7m7NBNf04hN3neIOlcTHNFabhcCfTNuD6FLwGg6XIk4q2k6z5K+pjxHmrWEWlBItUaH6SY1NzgD1kqR2o
a6b9964ae62091cfb1ef7d331f9390fe96dac87aa789e72f7d3973b45ea0f713Decrypt 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("SotzJMTZEhUcNEC1JNXKlQdiHK8T4dZBU3YA5iTcbUQlTKJafg0sfkR41T4qQgcB4IrIqtVa2nwWWOzbz7ZdGN7Qv0uHmwPFJNaKmq2Psr2lGZjZ19+qlicn8qGMIvnXIpQ1go49h9IA4I0jAqXjO9RF7EeSS4Cm6gWJFlxxTieUYOAUtd5/wPIX6AgxOLxeqC0oS1OyiWC3MPWs8DeEnIW2ssjxcZ8lM42WEa47rUDsGFyDv+E6IBdsdplzEOvc/+pH1yiD21ALLv0B8RZ7m7NBNf04hN3neIOlcTHNFabhcCfTNuD6FLwGg6XIk4q2k6z5K+pjxHmrWEWlBItUaH6SY1NzgD1kqR2o"), c => c.charCodeAt(0));
const key = Uint8Array.from("a6b9964ae62091cfb1ef7d331f9390fe96dac87aa789e72f7d3973b45ea0f713".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):
a6b9964ae62091cfb1ef7d331f9390fe96dac87aa789e72f7d3973b45ea0f713 - IV / nonce (hex):
4a8b7324c4d912151c3440b5 - Ciphertext (hex):
24d5ca9507621caf13e1d641537600e624dc6d44254ca25a7e0d2c7e4478d53e2a420701e08ac8aad55ada7c1658ecdbcfb65d18ded0bf4b879b03c524d68a9aad8fb2bda51998d9d7dfaa962727f2a18c22f9d7229435828e3d87d200e08d2302a5e33bd445ec47924b80a6ea0589165c714e279460e014b5de7fc0f217e8083138bc5ea82d284b53b28960b730f5acf037849c85b6b2c8f1719f25338d9611ae3bad40ec185c83bfe13a20176c76997310ebdcffea47d72883db500b2efd01f1167b9bb34135fd3884dde77883a57131cd15a6e17027d336e0fa14bc0683a5c8938ab693acf92bea63c479ab5845 - Auth tag (hex):
a5048b54687e92635373803d64a91da8
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 #965447 · 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.