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

Dartford vs Welling United

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

Final score
0 : 3
Result
Won
Pick
Welling United
Market
1X2
CLV vs fair close
+25.63%
Model prob.
22.9%
Best price
5.00
Min odds
4.45
Stake factor
1.20

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)
XUZ1WKhQtckSKVT1g6Kzyf0BtTkIrtdrffvpc3uDNOvgWLBG7bK2RxXKqPoB+I56GS5TEMQhLMRxRMzhbQEAOupqd1goAhnSxWEtDXEh43223elLDm+6QYaNLPip4sI2vOsXPfCP2mUO1+0cKscS73+ZmaZ8JnpGuYisrTIJIiR54yl+rOFJ8IIqaszxroMF3zQD2bbN2iLSr+VqUIdQytP5qlIHOfUgBe0O5J828DePahp4sdIRq3Xlo6UDlcbAR0IPyPK33y3daTNkhSv7/Amqjqies338ChEgVT+8tC5Z1nnVPZUva/ZKWkqey04QtuGCmg73FI+XHNCwiJ0/F62MTcKCymzGK4Y7Pps=
key fingerprint sha256: e69124b9f1fe035a12665653990b6a80798c838c5bbcefbfecd2690f261437f9
Decrypt it & read the pick
Decryption key (released after the match)
0bcf263e2e9d04a351b94441a15e9b6e5eb01c8b32f745e5282ba64180fb18e3
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("XUZ1WKhQtckSKVT1g6Kzyf0BtTkIrtdrffvpc3uDNOvgWLBG7bK2RxXKqPoB+I56GS5TEMQhLMRxRMzhbQEAOupqd1goAhnSxWEtDXEh43223elLDm+6QYaNLPip4sI2vOsXPfCP2mUO1+0cKscS73+ZmaZ8JnpGuYisrTIJIiR54yl+rOFJ8IIqaszxroMF3zQD2bbN2iLSr+VqUIdQytP5qlIHOfUgBe0O5J828DePahp4sdIRq3Xlo6UDlcbAR0IPyPK33y3daTNkhSv7/Amqjqies338ChEgVT+8tC5Z1nnVPZUva/ZKWkqey04QtuGCmg73FI+XHNCwiJ0/F62MTcKCymzGK4Y7Pps="), c => c.charCodeAt(0));
const key  = Uint8Array.from("0bcf263e2e9d04a351b94441a15e9b6e5eb01c8b32f745e5282ba64180fb18e3".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): 0bcf263e2e9d04a351b94441a15e9b6e5eb01c8b32f745e5282ba64180fb18e3
  • IV / nonce (hex): 5d467558a850b5c9122954f5
  • Ciphertext (hex): 83a2b3c9fd01b53908aed76b7dfbe9737b8334ebe058b046edb2b64715caa8fa01f88e7a192e5310c4212cc47144cce16d01003aea6a7758280219d2c5612d0d7121e37db6dde94b0e6fba41868d2cf8a9e2c236bceb173df08fda650ed7ed1c2ac712ef7f9999a67c267a46b988acad3209222479e3297eace149f0822a6accf1ae8305df3403d9b6cdda22d2afe56a508750cad3f9aa520739f52005ed0ee49f36f0378f6a1a78b1d211ab75e5a3a50395c6c047420fc8f2b7df2ddd693364852bfbfc09aa8ea89eb37dfc0a1120553fbcb42e59d679d53d952f6bf64a5a4a9ecb4e10b6e1829a0ef7148f971cd0b088
  • Auth tag (hex): 9d3f17ad8c4dc282ca6cc62b863b3e9b

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