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

Bury FC vs Wythenshawe FC

FA Cup Qualification · England · 05 Sept 2026, 14:00 UTC

Final score
8 : 0
Result
Won
Pick
Bury FC
Market
1X2
CLV vs fair close
+12.82%
Model prob.
76.3%
Best price
1.41
Min odds
1.34
Stake factor
3.00

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)
zWJZfzuJPxDw2Hl8vIkefpGFQb8qYsIhS/z2BURFzK5VFIOrWtz4eZ6TZJpfiidLlI79dLl0Sl4rwg1LAaM2K1MVzrUWDj8r0HAjVL8+6jJGVtaqBV/GnlvzDHF8NlHmOR0N2lc9qX5j56LIBQR5lJQnhwlBMWRsp/mD7tqQaCz2U2+XCPBqI8V3NaCe6AaN9XWV7VQ6dGmIbE/1xVBMvWzQA8o+YS7Dy2qI28DQEZCWNItqImaS6FSO+le0PMWALgqZJZCH1DxxinYp3O/+X7wNVfDr70YlI76edrrhNB0HP0RZN7GfugslMA6XOXeIl6bQ+kuRdLVl2axI5CzRbhAA8pVWm3pg/Q==
key fingerprint sha256: 2927cc478f537a8782bf6d082a4e1aa23349e3649b5985fdb4c5576fcab03da8
Decrypt it & read the pick
Decryption key (released after the match)
e428ec8f381277c39e7070d6d14d47a838c5ce7611afdd5f6a97d2e824659026
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("zWJZfzuJPxDw2Hl8vIkefpGFQb8qYsIhS/z2BURFzK5VFIOrWtz4eZ6TZJpfiidLlI79dLl0Sl4rwg1LAaM2K1MVzrUWDj8r0HAjVL8+6jJGVtaqBV/GnlvzDHF8NlHmOR0N2lc9qX5j56LIBQR5lJQnhwlBMWRsp/mD7tqQaCz2U2+XCPBqI8V3NaCe6AaN9XWV7VQ6dGmIbE/1xVBMvWzQA8o+YS7Dy2qI28DQEZCWNItqImaS6FSO+le0PMWALgqZJZCH1DxxinYp3O/+X7wNVfDr70YlI76edrrhNB0HP0RZN7GfugslMA6XOXeIl6bQ+kuRdLVl2axI5CzRbhAA8pVWm3pg/Q=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("e428ec8f381277c39e7070d6d14d47a838c5ce7611afdd5f6a97d2e824659026".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): e428ec8f381277c39e7070d6d14d47a838c5ce7611afdd5f6a97d2e824659026
  • IV / nonce (hex): cd62597f3b893f10f0d8797c
  • Ciphertext (hex): bc891e7e918541bf2a62c2214bfcf6054445ccae551483ab5adcf8799e93649a5f8a274b948efd74b9744a5e2bc20d4b01a3362b5315ceb5160e3f2bd0702354bf3eea324656d6aa055fc69e5bf30c717c3651e6391d0dda573da97e63e7a2c805047994942787094131646ca7f983eeda90682cf6536f9708f06a23c57735a09ee8068df57595ed543a7469886c4ff5c5504cbd6cd003ca3e612ec3cb6a88dbc0d0119096348b6a226692e8548efa57b43cc5802e0a99259087d43c718a7629dceffe5fbc0d55f0ebef462523be9e76bae1341d073f445937b19fba0b25300e9739778897a6d0fa4b9174b565
  • Auth tag (hex): d9ac48e42cd16e1000f295569b7a60fd

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