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

Flackwell Heath vs Hanwell Town

FA Cup Qualification · England · 04 Sept 2026, 18:45 UTC

Final score
0 : 1
Result
Lost
Pick
Flackwell Heath
Market
1X2
CLV vs fair close
+7.21%
Model prob.
27.1%
Best price
4.00
Min odds
3.77
Stake factor
1.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)
gWgva4oRn5ssoiIC/JU0E21j07Q8XE+R1LWNDmwuu4oMWKG/2pYcP9aQFJe0pomVCJzQugGIgcOZjGp9S73JWGqhAC828h936I4or0UZUAy561RP4H59bWHEujUY4fmQgN9YWfKxgFGa4mYFX1b6C9E9QLxOwSXuXuQh+WPgEUintia1hjsjO8yn310qUcQesmDzkK+7fBEl+4VbV8fkV9Rad0d4T+4HzVVU5Ob8jmOZyalUTt+hXVdwRDaJXthg3G+khR8GpDZdOi222bVHJCAoSHdEJ5QGoiD6ji65lQ1/9nd6KtxAZnYu/DS1ilnT0WwB9k8TslhejJmZAfcC+6O5Gmpy4wHMQ8kt
key fingerprint sha256: 9a1be61ab3ef4d22c1b745b324bb95d0d5416aaef4ecadcb302b46c43750966c
Decrypt it & read the pick
Decryption key (released after the match)
cce5a2cb37c0354443c471718b8c4231a3010c6d6f86d9077ffbf333cc6665d8
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("gWgva4oRn5ssoiIC/JU0E21j07Q8XE+R1LWNDmwuu4oMWKG/2pYcP9aQFJe0pomVCJzQugGIgcOZjGp9S73JWGqhAC828h936I4or0UZUAy561RP4H59bWHEujUY4fmQgN9YWfKxgFGa4mYFX1b6C9E9QLxOwSXuXuQh+WPgEUintia1hjsjO8yn310qUcQesmDzkK+7fBEl+4VbV8fkV9Rad0d4T+4HzVVU5Ob8jmOZyalUTt+hXVdwRDaJXthg3G+khR8GpDZdOi222bVHJCAoSHdEJ5QGoiD6ji65lQ1/9nd6KtxAZnYu/DS1ilnT0WwB9k8TslhejJmZAfcC+6O5Gmpy4wHMQ8kt"), c => c.charCodeAt(0));
const key  = Uint8Array.from("cce5a2cb37c0354443c471718b8c4231a3010c6d6f86d9077ffbf333cc6665d8".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): cce5a2cb37c0354443c471718b8c4231a3010c6d6f86d9077ffbf333cc6665d8
  • IV / nonce (hex): 81682f6b8a119f9b2ca22202
  • Ciphertext (hex): fc9534136d63d3b43c5c4f91d4b58d0e6c2ebb8a0c58a1bfda961c3fd6901497b4a68995089cd0ba018881c3998c6a7d4bbdc9586aa1002f36f21f77e88e28af4519500cb9eb544fe07e7d6d61c4ba3518e1f99080df5859f2b180519ae266055f56fa0bd13d40bc4ec125ee5ee421f963e01148a7b626b5863b233bcca7df5d2a51c41eb260f390afbb7c1125fb855b57c7e457d45a7747784fee07cd5554e4e6fc8e6399c9a9544edfa15d57704436895ed860dc6fa4851f06a4365d3a2db6d9b547242028487744279406a220fa8e2eb9950d7ff6777a2adc4066762efc34b58a59d3d16c01f64f13b2585e8c99
  • Auth tag (hex): 9901f702fba3b91a6a72e301cc43c92d

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