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

Málaga vs Al-Arabi SC

Club Friendlies 3 · World · 06 Aug 2026, 18:00 UTC

Final score
4 : 2
Result
Won
Pick
Málaga
Market
1x2
Model prob.
55.2%
Best price
2.04
Min odds
1.95
Stake factor
2.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)
fXOqvMO4SpdUAyzFysjj5XjNjPumpHBboU6FemLr23agjMLH+E9wNI3Uaj0lf+cTQVc+0RQBMOvkwxfXngfLygmsmGNA4TCe3tL8isH0+lz8oVZSge9SbSyF6mWeN/7rShWuAmVhRhVI5xYuat9tr8NmzDFDg89CWGdeGPn+iyuueg6VKv1O8TI/WnCrBeChrMmT2rjszF5cE2pqbYUewj6IU4HsjXYkpT2+OgJH2NNdt70dTcmNjq5wCHDYHaT0JfCQ7UyEPSKdoETM7syiGCOqtIUrtnV7ZuqtsgXxXQlX0T9zXG/bxgMJceJHt+1S3+dON3rvLqFao9N8ttq/TQAup2xsjA==
key fingerprint sha256: 224df9ea2cc029f5830df7ceb98b9e72162f64272fd289d1c59a524908792402
Decrypt it & read the pick
Decryption key (released after the match)
4fa344413f08a3665ce75c451e89ad828b7ef2d5427913c810eade8098921559
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("fXOqvMO4SpdUAyzFysjj5XjNjPumpHBboU6FemLr23agjMLH+E9wNI3Uaj0lf+cTQVc+0RQBMOvkwxfXngfLygmsmGNA4TCe3tL8isH0+lz8oVZSge9SbSyF6mWeN/7rShWuAmVhRhVI5xYuat9tr8NmzDFDg89CWGdeGPn+iyuueg6VKv1O8TI/WnCrBeChrMmT2rjszF5cE2pqbYUewj6IU4HsjXYkpT2+OgJH2NNdt70dTcmNjq5wCHDYHaT0JfCQ7UyEPSKdoETM7syiGCOqtIUrtnV7ZuqtsgXxXQlX0T9zXG/bxgMJceJHt+1S3+dON3rvLqFao9N8ttq/TQAup2xsjA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("4fa344413f08a3665ce75c451e89ad828b7ef2d5427913c810eade8098921559".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): 4fa344413f08a3665ce75c451e89ad828b7ef2d5427913c810eade8098921559
  • IV / nonce (hex): 7d73aabcc3b84a9754032cc5
  • Ciphertext (hex): cac8e3e578cd8cfba6a4705ba14e857a62ebdb76a08cc2c7f84f70348dd46a3d257fe71341573ed1140130ebe4c317d79e07cbca09ac986340e1309eded2fc8ac1f4fa5cfca1565281ef526d2c85ea659e37feeb4a15ae026561461548e7162e6adf6dafc366cc314383cf4258675e18f9fe8b2bae7a0e952afd4ef1323f5a70ab05e0a1acc993dab8eccc5e5c136a6a6d851ec23e885381ec8d7624a53dbe3a0247d8d35db7bd1d4dc98d8eae700870d81da4f425f090ed4c843d229da044cceecca21823aab4852bb6757b66eaadb205f15d0957d13f735c6fdbc6030971e247b7ed52dfe74e377aef
  • Auth tag (hex): 2ea15aa3d37cb6dabf4d002ea76c6c8c

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