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

Larne vs Cliftonville

Premiership · Northern Ireland · 15 Sept 2026, 18:45 UTC

Final score
2 : 0
Result
Lost
Pick
Cliftonville
Market
1X2
CLV vs fair close
-26.56%
Model prob.
19.4%
Best price
5.50
Min odds
5.25
Stake factor
1.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)
7xw6YZh0tSwcU8GnI6SUjB77cIewtwAictWTjCPdmSrmA7iv6WensW7hqhvaF01tWDpE5ZBufrSLrzMjnRoYG0Pnm1Mu0ucljrerbKGSI9feiqcGUu6MSXr2+BgfpEtpnP1eILrH3MVobmDYIuaQ5rlHNT7Sygd+78pNP53tnX5OWOGlYNSVvjoKJPai3Mzw2/nRlvFFk64+0Mg1mIQqgbaXKxqGS1nw8DpfO72HpeCOEzlSdrYA9D+FRvgE9yIZP2wRpWVTIIe6gKAx2w8cJFPpls50yRICEioGn4/jgiYoLClC0KoODugv6Kc/zHWmwSA+mhJ1p3sHnKhqfuUKMo7O1qRL0B5HBde3xQ==
key fingerprint sha256: 7693616ce067373864b363c19c2d08e75d8d77bb643ef9ef16d3ccdc94ab1db4
Decrypt it & read the pick
Decryption key (released after the match)
e1e1d414d919b957333b7fe5ea21cc1ef058a26ccd2429d0167ba2659f5096d2
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("7xw6YZh0tSwcU8GnI6SUjB77cIewtwAictWTjCPdmSrmA7iv6WensW7hqhvaF01tWDpE5ZBufrSLrzMjnRoYG0Pnm1Mu0ucljrerbKGSI9feiqcGUu6MSXr2+BgfpEtpnP1eILrH3MVobmDYIuaQ5rlHNT7Sygd+78pNP53tnX5OWOGlYNSVvjoKJPai3Mzw2/nRlvFFk64+0Mg1mIQqgbaXKxqGS1nw8DpfO72HpeCOEzlSdrYA9D+FRvgE9yIZP2wRpWVTIIe6gKAx2w8cJFPpls50yRICEioGn4/jgiYoLClC0KoODugv6Kc/zHWmwSA+mhJ1p3sHnKhqfuUKMo7O1qRL0B5HBde3xQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("e1e1d414d919b957333b7fe5ea21cc1ef058a26ccd2429d0167ba2659f5096d2".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): e1e1d414d919b957333b7fe5ea21cc1ef058a26ccd2429d0167ba2659f5096d2
  • IV / nonce (hex): ef1c3a619874b52c1c53c1a7
  • Ciphertext (hex): 23a4948c1efb7087b0b7002272d5938c23dd992ae603b8afe967a7b16ee1aa1bda174d6d583a44e5906e7eb48baf33239d1a181b43e79b532ed2e7258eb7ab6ca19223d7de8aa70652ee8c497af6f8181fa44b699cfd5e20bac7dcc5686e60d822e690e6b947353ed2ca077eefca4d3f9ded9d7e4e58e1a560d495be3a0a24f6a2dcccf0dbf9d196f14593ae3ed0c83598842a81b6972b1a864b59f0f03a5f3bbd87a5e08e13395276b600f43f8546f804f722193f6c11a565532087ba80a031db0f1c2453e996ce74c91202122a069f8fe38226282c2942d0aa0e0ee82fe8a73fcc75a6c1203e9a1275a77b079ca86a
  • Auth tag (hex): 7ee50a328eced6a44bd01e4705d7b7c5

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