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

Irtysh vs Kaspiy

Premier League · Kazakhstan · 01 Aug 2026, 12:00 UTC

Final score
3 : 2
Result
Won
Pick
Irtysh
Market
1x2
Model prob.
37.0%
Best price
3.52
Min odds
3.03
Stake factor
3.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)
IGCtlmqZRxRCnVm7JFYUyKomBD7WdlPoaGuEztE8jUabOguSOr9xxTX5K3wVuz0itggBBYP8eYYwlAkJTVuOsuj8iQpIYmFH2H1M2ubYM/7BM8m/5Kkx4selPFRboelaxONOr6JkkiKpdnnt1rtbYLolbA9QMYRQ0bPjCK0gyG1jpU9kvkZ8Ffn117f5rxHsT8V9CJNlkfidg79r2klsZVJ6HKpCVm9PpNft11PToyLhtuLS4+dP5aAPnwjrYJNY83wLaXr+TXzeRPch3j/DO7R+nFkKduMGgNsKb8AdBaGKHCJNu2theEuYbuJjtV8YU3f4B6B0EYZUFdyAKqtR8gQfqG9A
key fingerprint sha256: 0214b6ba9c7571e95887149d840c4530384cb8ddd4fc7cf8c81f0aa1a81bb141
Decrypt it & read the pick
Decryption key (released after the match)
98a797f5221d6bf4c6bbfb09b0f13975742710102fa7379c1bff1b363a51ddc1
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("IGCtlmqZRxRCnVm7JFYUyKomBD7WdlPoaGuEztE8jUabOguSOr9xxTX5K3wVuz0itggBBYP8eYYwlAkJTVuOsuj8iQpIYmFH2H1M2ubYM/7BM8m/5Kkx4selPFRboelaxONOr6JkkiKpdnnt1rtbYLolbA9QMYRQ0bPjCK0gyG1jpU9kvkZ8Ffn117f5rxHsT8V9CJNlkfidg79r2klsZVJ6HKpCVm9PpNft11PToyLhtuLS4+dP5aAPnwjrYJNY83wLaXr+TXzeRPch3j/DO7R+nFkKduMGgNsKb8AdBaGKHCJNu2theEuYbuJjtV8YU3f4B6B0EYZUFdyAKqtR8gQfqG9A"), c => c.charCodeAt(0));
const key  = Uint8Array.from("98a797f5221d6bf4c6bbfb09b0f13975742710102fa7379c1bff1b363a51ddc1".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): 98a797f5221d6bf4c6bbfb09b0f13975742710102fa7379c1bff1b363a51ddc1
  • IV / nonce (hex): 2060ad966a994714429d59bb
  • Ciphertext (hex): 245614c8aa26043ed67653e8686b84ced13c8d469b3a0b923abf71c535f92b7c15bb3d22b608010583fc7986309409094d5b8eb2e8fc890a48626147d87d4cdae6d833fec133c9bfe4a931e2c7a53c545ba1e95ac4e34eafa2649222a97679edd6bb5b60ba256c0f50318450d1b3e308ad20c86d63a54f64be467c15f9f5d7b7f9af11ec4fc57d08936591f89d83bf6bda496c65527a1caa42566f4fa4d7edd753d3a322e1b6e2d2e3e74fe5a00f9f08eb609358f37c0b697afe4d7cde44f721de3fc33bb47e9c590a76e30680db0a6fc01d05a18a1c224dbb6b61784b986ee263b55f185377f807a0
  • Auth tag (hex): 7411865415dc802aab51f2041fa86f40

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