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

Cumbernauld Colts vs Kilmarnock B

Challenge Cup · Scotland · 25 Aug 2026, 18:45 UTC

Final score
1 : 1
Result
Lost
Pick
Cumbernauld Colts
Market
1X2
CLV vs fair close
+10.95%
Model prob.
36.6%
Best price
2.90
Min odds
2.79
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)
JEvXNnNUamNnYJ/7OXzmi3im067M/0rjTWucoaQYPHR4tHvSb9k4tVkWyJ4kq/rNqSbr2YxYHg/D5rqUXwmosv651mERWaPZmho94Lk4x51kTSrdsCWjdUiKuLbb22n7RrB68ILb0/2KUd62n4UyD7Y7rwROjvhvC5iOmh7QY2eAyYeZ5JY/cU+/iBut9HFW2JBnd6Yx7opQXt0PG13jWfBT+kjTra9b/VZmXduVgwsTrhsrmddu4sIMR6njk0lehLpgsHvzcP3KGFxrqUGmPuLmprmKp3yfqow5/p/ZLoTPPDeI5ZcA5mMF7UID5HrvEaixBl1IBRmRPV1pUoPSx8HWKxpCk6PxMQxfduXFYqh3bY4=
key fingerprint sha256: 72611cb0a6528abf0ed82322446012c1f45e62e3874b0d5f732ef7973f6be83c
Decrypt it & read the pick
Decryption key (released after the match)
47c37a3794a6432f78186a810a86d1ffa3d33bc854767687e8a75522608fa683
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("JEvXNnNUamNnYJ/7OXzmi3im067M/0rjTWucoaQYPHR4tHvSb9k4tVkWyJ4kq/rNqSbr2YxYHg/D5rqUXwmosv651mERWaPZmho94Lk4x51kTSrdsCWjdUiKuLbb22n7RrB68ILb0/2KUd62n4UyD7Y7rwROjvhvC5iOmh7QY2eAyYeZ5JY/cU+/iBut9HFW2JBnd6Yx7opQXt0PG13jWfBT+kjTra9b/VZmXduVgwsTrhsrmddu4sIMR6njk0lehLpgsHvzcP3KGFxrqUGmPuLmprmKp3yfqow5/p/ZLoTPPDeI5ZcA5mMF7UID5HrvEaixBl1IBRmRPV1pUoPSx8HWKxpCk6PxMQxfduXFYqh3bY4="), c => c.charCodeAt(0));
const key  = Uint8Array.from("47c37a3794a6432f78186a810a86d1ffa3d33bc854767687e8a75522608fa683".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): 47c37a3794a6432f78186a810a86d1ffa3d33bc854767687e8a75522608fa683
  • IV / nonce (hex): 244bd73673546a6367609ffb
  • Ciphertext (hex): 397ce68b78a6d3aeccff4ae34d6b9ca1a4183c7478b47bd26fd938b55916c89e24abfacda926ebd98c581e0fc3e6ba945f09a8b2feb9d6611159a3d99a1a3de0b938c79d644d2addb025a375488ab8b6dbdb69fb46b07af082dbd3fd8a51deb69f85320fb63baf044e8ef86f0b988e9a1ed0636780c98799e4963f714fbf881badf47156d8906777a631ee8a505edd0f1b5de359f053fa48d3adaf5bfd56665ddb95830b13ae1b2b99d76ee2c20c47a9e393495e84ba60b07bf370fdca185c6ba941a63ee2e6a6b98aa77c9faa8c39fe9fd92e84cf3c3788e59700e66305ed4203e47aef11a8b1065d480519913d5d695283d2c7c1d62b
  • Auth tag (hex): 1a4293a3f1310c5f76e5c562a8776d8e

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