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

Dumbarton vs Elgin City

League Two · Scotland · 05 Sept 2026, 14:00 UTC

Final score
2 : 1
Result
Lost
Pick
Elgin City
Market
1X2
CLV vs fair close
-6.04%
Model prob.
55.1%
Best price
1.91
Min odds
1.85
Stake factor
1.90

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)
OPXtbIKpV0Q7j338gmm7rylJB3ohiLgfmFUhIvO11LL1W7Fddea1Ob0tr8FuBBt8kpbFNFDTLVa3yj9kQz7ckdA+l3AtDLm8GCqdPI5nqzlhmOM361SeZ2QyOxI2Bj+XQSDL3NwJNQbDRDal6Zyw2R09HCD/kwE0hGUn9wiqIFKvGOnVxyLQ7WE/EG6eED5moUY2IvWgiONrOzMr+UY+dmgkbKIzW7iVxqUVbJ3L+EiJW6F990QAn2xznsNa11vmrIXNPVsAuww2FpO8hUnb181ES8B5uPGCc8LUiNtUj+p1JaLaS7+iGYqlgASj3ccF/eYP+fhfVT0c6SZPouo4A48oEptlv1IHZNsTxFg=
key fingerprint sha256: 25e51e0e6b4a733a120086c814254bcd5a1b330a3e0af5fab929bb09e22ec266
Decrypt it & read the pick
Decryption key (released after the match)
8a1dc321018843d2144195b14f4dcae4481b710e13476c55d78a850e4ebdb91b
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("OPXtbIKpV0Q7j338gmm7rylJB3ohiLgfmFUhIvO11LL1W7Fddea1Ob0tr8FuBBt8kpbFNFDTLVa3yj9kQz7ckdA+l3AtDLm8GCqdPI5nqzlhmOM361SeZ2QyOxI2Bj+XQSDL3NwJNQbDRDal6Zyw2R09HCD/kwE0hGUn9wiqIFKvGOnVxyLQ7WE/EG6eED5moUY2IvWgiONrOzMr+UY+dmgkbKIzW7iVxqUVbJ3L+EiJW6F990QAn2xznsNa11vmrIXNPVsAuww2FpO8hUnb181ES8B5uPGCc8LUiNtUj+p1JaLaS7+iGYqlgASj3ccF/eYP+fhfVT0c6SZPouo4A48oEptlv1IHZNsTxFg="), c => c.charCodeAt(0));
const key  = Uint8Array.from("8a1dc321018843d2144195b14f4dcae4481b710e13476c55d78a850e4ebdb91b".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): 8a1dc321018843d2144195b14f4dcae4481b710e13476c55d78a850e4ebdb91b
  • IV / nonce (hex): 38f5ed6c82a957443b8f7dfc
  • Ciphertext (hex): 8269bbaf2949077a2188b81f98552122f3b5d4b2f55bb15d75e6b539bd2dafc16e041b7c9296c53450d32d56b7ca3f64433edc91d03e97702d0cb9bc182a9d3c8e67ab396198e337eb549e6764323b1236063f974120cbdcdc093506c34436a5e99cb0d91d3d1c20ff930134846527f708aa2052af18e9d5c722d0ed613f106e9e103e66a1463622f5a088e36b3b332bf9463e7668246ca2335bb895c6a5156c9dcbf848895ba17df744009f6c739ec35ad75be6ac85cd3d5b00bb0c361693bc8549dbd7cd444bc079b8f18273c2d488db548fea7525a2da4bbfa2198aa58004a3ddc705fde60ff9f85f553d1ce9264fa2
  • Auth tag (hex): ea38038f28129b65bf520764db13c458

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