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

Gillingham vs Northampton Town

League 2 · England · 29 Aug 2026, 14:00 UTC

Final score
1 : 1
Result
Lost
Pick
Northampton Town
Market
1X2
CLV vs fair close
+13.49%
Model prob.
38.5%
Best price
2.75
Min odds
2.65
Stake factor
1.10

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)
o1uIQg71g61S3PSkvYu/YzV/az3VO7TPhY/l3zSeaDqyS97w89Eu6HYJvdbOaF86dt9sFc03RslmRZsnL5U2vLyOnOxyanLvkSuRt0jyuYIbehYjfs1IGlZeiuyahsJTZky0by2DEfzR8hkGXwp+OZ4VB2zCuVm+KqKmBkoMxzC0/Lm0F0m4U1b5jkJ00hxD7Cf5SJQ61hT/fO9wjCZt9n0clXHEO4C++wG/ZA3nVhRsBxX5S5tliZTu7o6SRR5zpcccYDr1IX1mq4Yslasdtri8nmUvS/WpELDXNDMCa4GGWKXCJCN7xDmAP+065Zltvcas9EsC7TFVvV6PLu9SB1zOFXeymyJ4aLATvZZB42LBTM+3
key fingerprint sha256: 6d8baf6d32d0970b84f4af242cd32066f12349951a06a4eb51605a0a065797dc
Decrypt it & read the pick
Decryption key (released after the match)
356ee4034b8123e53d6934e7bf429fc52aa78c3aaaf7006f74782ae969b67532
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("o1uIQg71g61S3PSkvYu/YzV/az3VO7TPhY/l3zSeaDqyS97w89Eu6HYJvdbOaF86dt9sFc03RslmRZsnL5U2vLyOnOxyanLvkSuRt0jyuYIbehYjfs1IGlZeiuyahsJTZky0by2DEfzR8hkGXwp+OZ4VB2zCuVm+KqKmBkoMxzC0/Lm0F0m4U1b5jkJ00hxD7Cf5SJQ61hT/fO9wjCZt9n0clXHEO4C++wG/ZA3nVhRsBxX5S5tliZTu7o6SRR5zpcccYDr1IX1mq4Yslasdtri8nmUvS/WpELDXNDMCa4GGWKXCJCN7xDmAP+065Zltvcas9EsC7TFVvV6PLu9SB1zOFXeymyJ4aLATvZZB42LBTM+3"), c => c.charCodeAt(0));
const key  = Uint8Array.from("356ee4034b8123e53d6934e7bf429fc52aa78c3aaaf7006f74782ae969b67532".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): 356ee4034b8123e53d6934e7bf429fc52aa78c3aaaf7006f74782ae969b67532
  • IV / nonce (hex): a35b88420ef583ad52dcf4a4
  • Ciphertext (hex): bd8bbf63357f6b3dd53bb4cf858fe5df349e683ab24bdef0f3d12ee87609bdd6ce685f3a76df6c15cd3746c966459b272f9536bcbc8e9cec726a72ef912b91b748f2b9821b7a16237ecd481a565e8aec9a86c253664cb46f2d8311fcd1f219065f0a7e399e15076cc2b959be2aa2a6064a0cc730b4fcb9b41749b85356f98e4274d21c43ec27f948943ad614ff7cef708c266df67d1c9571c43b80befb01bf640de756146c0715f94b9b658994eeee8e92451e73a5c71c603af5217d66ab862c95ab1db6b8bc9e652f4bf5a910b0d73433026b818658a5c224237bc439803fed3ae5996dbdc6acf44b02ed3155bd5e8f2eef52075cce1577
  • Auth tag (hex): b29b227868b013bd9641e362c14ccfb7

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