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

Dorking Wanderers vs Truro City

National League South · England · 31 Aug 2026, 14:00 UTC

Final score
1 : 0
Result
Lost
Pick
Truro City
Market
1X2
CLV vs fair close
+1.71%
Model prob.
32.4%
Best price
3.30
Min odds
3.15
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)
u3cYXLxveltGx/JB6s2ZiC66mMD38aPsFyTmPmHn4giSbZTLOjJ3x+8YyMt+whQDzEY8Ngn4i2ytU8Dz5AURFxy1GkIa/OoSlFWqzovh8lh3ergoXGnjKjRr4hxdJmFgJcu98rEEcJaeTDXZxt/XIhj6LnA1y/tLOwCWD1oV8nfU32Zu881ef6PSfzu0eL0i6pPQS0ytMHjo7DLgUd1l74FH6vhp9DYXQXznHxzrFrQTHihRGqIdMS3wHY9bjZ2QnV5r21TRzrl/KgmuqyvC+A8MUZNY8f3/ynvd53wb3qD9Oznf06ogtrQfBJ32IbSUa/FIiPqcOFkTwS4VX2HRpJxZzycJcklsFSMb
key fingerprint sha256: 685a8f927cf9a445c6a68fa5e4534ea91dd983ef7c6e070a58951b8d2a98561d
Decrypt it & read the pick
Decryption key (released after the match)
cc0e568a10f2f21cab7abc8522f81a29ddae59ac5d6c5176c663b06cd33e924e
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("u3cYXLxveltGx/JB6s2ZiC66mMD38aPsFyTmPmHn4giSbZTLOjJ3x+8YyMt+whQDzEY8Ngn4i2ytU8Dz5AURFxy1GkIa/OoSlFWqzovh8lh3ergoXGnjKjRr4hxdJmFgJcu98rEEcJaeTDXZxt/XIhj6LnA1y/tLOwCWD1oV8nfU32Zu881ef6PSfzu0eL0i6pPQS0ytMHjo7DLgUd1l74FH6vhp9DYXQXznHxzrFrQTHihRGqIdMS3wHY9bjZ2QnV5r21TRzrl/KgmuqyvC+A8MUZNY8f3/ynvd53wb3qD9Oznf06ogtrQfBJ32IbSUa/FIiPqcOFkTwS4VX2HRpJxZzycJcklsFSMb"), c => c.charCodeAt(0));
const key  = Uint8Array.from("cc0e568a10f2f21cab7abc8522f81a29ddae59ac5d6c5176c663b06cd33e924e".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): cc0e568a10f2f21cab7abc8522f81a29ddae59ac5d6c5176c663b06cd33e924e
  • IV / nonce (hex): bb77185cbc6f7a5b46c7f241
  • Ciphertext (hex): eacd99882eba98c0f7f1a3ec1724e63e61e7e208926d94cb3a3277c7ef18c8cb7ec21403cc463c3609f88b6cad53c0f3e40511171cb51a421afcea129455aace8be1f258777ab8285c69e32a346be21c5d26616025cbbdf2b10470969e4c35d9c6dfd72218fa2e7035cbfb4b3b00960f5a15f277d4df666ef3cd5e7fa3d27f3bb478bd22ea93d04b4cad3078e8ec32e051dd65ef8147eaf869f43617417ce71f1ceb16b4131e28511aa21d312df01d8f5b8d9d909d5e6bdb54d1ceb97f2a09aeab2bc2f80f0c519358f1fdffca7bdde77c1bdea0fd3b39dfd3aa20b6b41f049df621b4946bf14888fa9c385913c12e
  • Auth tag (hex): 155f61d1a49c59cf270972496c15231b

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