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

Sholing vs Chertsey Town

Southern Premier League South · England · 22 Aug 2026, 14:00 UTC

Final score
2 : 4
Result
Won
Pick
Chertsey Town
Market
1X2
CLV vs fair close
+15.84%
Model prob.
32.3%
Best price
3.30
Min odds
3.16
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)
TiQtt6fUqwzpXWPl1cinRt/aFzGAiZlpnDn8iu94UqB70gddUK+lRT+AYn1LWGA2FngeltPxWNQdXd5bXP/c+Mp6xLM01SAMfktdY+fwsAkSA6Wd8LmfDajUECOcvguvUICVi2pI2kKn0z5MgnKTAmxNguKfVCNJ5Vytd0ZrL/88xbmcEPN+hI6741KEHJPwlL946chz0xYU0k7VOqm8NcpkTVYV2oXH2V1unshAljb/gM3tLf4dTcXZA4VuYGRwbQaQIdb1sDUpsa86PS8dl6KA0/anIXhxx1mLQ0ma2h0MtxUfvD+Ms/K97MkXdCNku6+YNspiCRsvyuBtYBqMlLbwulo7sZuSbkbBCi0=
key fingerprint sha256: b7e55bb07adcf1568363227324e7289875a33d9d238c10b2ea68ae85856d93cb
Decrypt it & read the pick
Decryption key (released after the match)
a4f4a9129163a06b47b5ba19e189bb2a13d0b794b9dba5c71fef4f68efc4b22e
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("TiQtt6fUqwzpXWPl1cinRt/aFzGAiZlpnDn8iu94UqB70gddUK+lRT+AYn1LWGA2FngeltPxWNQdXd5bXP/c+Mp6xLM01SAMfktdY+fwsAkSA6Wd8LmfDajUECOcvguvUICVi2pI2kKn0z5MgnKTAmxNguKfVCNJ5Vytd0ZrL/88xbmcEPN+hI6741KEHJPwlL946chz0xYU0k7VOqm8NcpkTVYV2oXH2V1unshAljb/gM3tLf4dTcXZA4VuYGRwbQaQIdb1sDUpsa86PS8dl6KA0/anIXhxx1mLQ0ma2h0MtxUfvD+Ms/K97MkXdCNku6+YNspiCRsvyuBtYBqMlLbwulo7sZuSbkbBCi0="), c => c.charCodeAt(0));
const key  = Uint8Array.from("a4f4a9129163a06b47b5ba19e189bb2a13d0b794b9dba5c71fef4f68efc4b22e".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): a4f4a9129163a06b47b5ba19e189bb2a13d0b794b9dba5c71fef4f68efc4b22e
  • IV / nonce (hex): 4e242db7a7d4ab0ce95d63e5
  • Ciphertext (hex): d5c8a746dfda1731808999699c39fc8aef7852a07bd2075d50afa5453f80627d4b58603616781e96d3f158d41d5dde5b5cffdcf8ca7ac4b334d5200c7e4b5d63e7f0b0091203a59df0b99f0da8d410239cbe0baf5080958b6a48da42a7d33e4c827293026c4d82e29f542349e55cad77466b2fff3cc5b99c10f37e848ebbe352841c93f094bf78e9c873d31614d24ed53aa9bc35ca644d5615da85c7d95d6e9ec8409636ff80cded2dfe1d4dc5d903856e6064706d069021d6f5b03529b1af3a3d2f1d97a280d3f6a7217871c7598b43499ada1d0cb7151fbc3f8cb3f2bdecc917742364bbaf9836ca62091b2fcae06d60
  • Auth tag (hex): 1a8c94b6f0ba5a3bb19b926e46c10a2d

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