Moneyfields vs Wimborne Town
FA Trophy · England · 26 Sept 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.
Kq+o0pF0G22djJ2saT4DuE2o9MYiYoFFWtB25wnQFKZ0Y8AkPoaceTqzuHNaCkLSvLzWrKIWqtbGfJpWh5uBdHEBzd5Ie9Zpo+g+oFYJYrM7l54ErP6d4/4BjUuVPH4F39qUKwQfDfUp0Ig+LmGnSOH5VoB1SJoP81wFrZZFPI8rBKR0NqKJqzU4A+QCZfqmlFro0+l+mCrKo9ZYA9g51iQvzvxxfT22bvAPho6TiQyfQjllq8lnlSnSUO4JtXiIJ+izumadXKbsPG8rWpruRvKpX5b0O8cNK4m3/HiZ38wx3a4p0dlczLfnCXKHTR/da5nxtCRp8CBWBodcd9M84iiXXCTPAjPmqzQXQa/HR3E7lkMszUdgX2Lfu98G6f/9f1B69sIlVQV7BOXFNsOy74dkp4Kv5M2gjlDLuXHKgzEPwgmHo6P0IjhZz6z0ai7U3eYTROD2Xbr2CxymR+t0U0nDokMGCKshvEWK+EhrAeQIN8HBj8Z6fTcKeywXejylrqbzpilui7BZvgNyBhLCM8mSWCYpxrN9kt9DRG3u3+ZILQBN/gia5zVjZxVqdVkjTK5gwUdFodGO8k1emUZynO629IpPbzwmsUAt7/Wm9yYm3TrtAhy8875fxbqnudsnGLE/le24yr2iApgXYCFruVWuLZjwuukz+77Ww7RIIwQhv1F1FNyfzff3WPNhSCXv31KGRJGjvkpWk0tg
6af8e6f50207a361f3cf9017416dbb2d2f671082b01e0d47e733a7f5189d0f0cDecrypt 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("Kq+o0pF0G22djJ2saT4DuE2o9MYiYoFFWtB25wnQFKZ0Y8AkPoaceTqzuHNaCkLSvLzWrKIWqtbGfJpWh5uBdHEBzd5Ie9Zpo+g+oFYJYrM7l54ErP6d4/4BjUuVPH4F39qUKwQfDfUp0Ig+LmGnSOH5VoB1SJoP81wFrZZFPI8rBKR0NqKJqzU4A+QCZfqmlFro0+l+mCrKo9ZYA9g51iQvzvxxfT22bvAPho6TiQyfQjllq8lnlSnSUO4JtXiIJ+izumadXKbsPG8rWpruRvKpX5b0O8cNK4m3/HiZ38wx3a4p0dlczLfnCXKHTR/da5nxtCRp8CBWBodcd9M84iiXXCTPAjPmqzQXQa/HR3E7lkMszUdgX2Lfu98G6f/9f1B69sIlVQV7BOXFNsOy74dkp4Kv5M2gjlDLuXHKgzEPwgmHo6P0IjhZz6z0ai7U3eYTROD2Xbr2CxymR+t0U0nDokMGCKshvEWK+EhrAeQIN8HBj8Z6fTcKeywXejylrqbzpilui7BZvgNyBhLCM8mSWCYpxrN9kt9DRG3u3+ZILQBN/gia5zVjZxVqdVkjTK5gwUdFodGO8k1emUZynO629IpPbzwmsUAt7/Wm9yYm3TrtAhy8875fxbqnudsnGLE/le24yr2iApgXYCFruVWuLZjwuukz+77Ww7RIIwQhv1F1FNyfzff3WPNhSCXv31KGRJGjvkpWk0tg"), c => c.charCodeAt(0));
const key = Uint8Array.from("6af8e6f50207a361f3cf9017416dbb2d2f671082b01e0d47e733a7f5189d0f0c".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).split("\n")[0])); 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):
6af8e6f50207a361f3cf9017416dbb2d2f671082b01e0d47e733a7f5189d0f0c - IV / nonce (hex):
2aafa8d291741b6d9d8c9dac - Ciphertext (hex):
693e03b84da8f4c6226281455ad076e709d014a67463c0243e869c793ab3b8735a0a42d2bcbcd6aca216aad6c67c9a56879b81747101cdde487bd669a3e83ea0560962b33b979e04acfe9de3fe018d4b953c7e05dfda942b041f0df529d0883e2e61a748e1f9568075489a0ff35c05ad96453c8f2b04a47436a289ab353803e40265faa6945ae8d3e97e982acaa3d65803d839d6242fcefc717d3db66ef00f868e93890c9f423965abc9679529d250ee09b5788827e8b3ba669d5ca6ec3c6f2b5a9aee46f2a95f96f43bc70d2b89b7fc7899dfcc31ddae29d1d95cccb7e70972874d1fdd6b99f1b42469f0205606875c77d33ce228975c24cf0233e6ab341741afc747713b96432ccd47605f62dfbbdf06e9fffd7f507af6c22555057b04e5c536c3b2ef8764a782afe4cda08e50cbb971ca83310fc20987a3a3f4223859cfacf46a2ed4dde61344e0f65dbaf60b1ca647eb745349c3a2430608ab21bc458af8486b01e40837c1c18fc67a7d370a7b2c177a3ca5aea6f3a6296e8bb059be03720612c233c992582629c6b37d92df43446deedfe6482d004dfe089ae7356367156a7559234cae60c14745a1d18ef24d5e9946729ceeb6f48a4f6f3c26b1402deff5a6f72626dd3aed021cbcf3be5fc5baa7b9db2718b13f95edb8cabda202981760216bb955ae2d98f0bae933fbbed6c3b448230421bf517514dc9fcdf7f758f3 - Auth tag (hex):
614825efdf52864491a3be4a56934b60
Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.
The pick is the first line of the decrypted text. Records sealed from 24 September 2026
are followed by a line break and spaces up to a fixed size, so every encrypted pick has the same length
and its size reveals nothing about the selection before the key is published. The commitment hash is
sha256(first line + key), exactly as before.
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 #968622 · 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.