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

Linfield vs Aberdeen

Club Friendlies 3 · World · 11 Jul 2026, 13:00 UTC

Final score
0 : 2
Result
Won
Pick
Aberdeen
Market
1x2
Model prob.
58.9%
Best price
1.91
Min odds
1.82
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)
LhsDffXviaWAnXOW3vmLh5RhsHSXSG8yzMXILeTyc+MXxkOz8l7wW0YuRAPYVXqRMhf8kK6jynu6s1F4iQ5tWjctP0TxQN5TPn0QXXGWyDGkKaEJaDk4EvaZcrt2bBX9zdUDpr4u1F7bGlNOcoftWQ59BNIuRV79RshmJdz4muKxtlVeFfm1z65QxdoM3CHk4PUmc3n+EQExFyNuV45X3MvtZXcWyOLL4R1uuPLy4tUjqdceyPJTIvCE5Lps8EUWvZlcZXPhldrbcQ+ColTXYShwruVW76zGGtbshoTKUu91QjurKyuSfFr4mBGWUVUGLnSsV5578iKKSk6lhKrOOR+InAon5EzT
key fingerprint sha256: d9a76d0793d3cefd8b666ae78b7f484b2e343d1653f07d70350a46ccfd246d27
Decrypt it & read the pick
Decryption key (released after the match)
a127281fcd8cbc3108eee7ebd9b59f49f167bf71a60d26935fd25c8090f836ac
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("LhsDffXviaWAnXOW3vmLh5RhsHSXSG8yzMXILeTyc+MXxkOz8l7wW0YuRAPYVXqRMhf8kK6jynu6s1F4iQ5tWjctP0TxQN5TPn0QXXGWyDGkKaEJaDk4EvaZcrt2bBX9zdUDpr4u1F7bGlNOcoftWQ59BNIuRV79RshmJdz4muKxtlVeFfm1z65QxdoM3CHk4PUmc3n+EQExFyNuV45X3MvtZXcWyOLL4R1uuPLy4tUjqdceyPJTIvCE5Lps8EUWvZlcZXPhldrbcQ+ColTXYShwruVW76zGGtbshoTKUu91QjurKyuSfFr4mBGWUVUGLnSsV5578iKKSk6lhKrOOR+InAon5EzT"), c => c.charCodeAt(0));
const key  = Uint8Array.from("a127281fcd8cbc3108eee7ebd9b59f49f167bf71a60d26935fd25c8090f836ac".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): a127281fcd8cbc3108eee7ebd9b59f49f167bf71a60d26935fd25c8090f836ac
  • IV / nonce (hex): 2e1b037df5ef89a5809d7396
  • Ciphertext (hex): def98b879461b07497486f32ccc5c82de4f273e317c643b3f25ef05b462e4403d8557a913217fc90aea3ca7bbab35178890e6d5a372d3f44f140de533e7d105d7196c831a429a10968393812f69972bb766c15fdcdd503a6be2ed45edb1a534e7287ed590e7d04d22e455efd46c86625dcf89ae2b1b6555e15f9b5cfae50c5da0cdc21e4e0f5267379fe11013117236e578e57dccbed657716c8e2cbe11d6eb8f2f2e2d523a9d71ec8f25322f084e4ba6cf04516bd995c6573e195dadb710f82a254d7612870aee556efacc61ad6ec8684ca52ef75423bab2b2b927c5af89811965155062e74ac579e7bf222
  • Auth tag (hex): 8a4a4ea584aace391f889c0a27e44cd3

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