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

Ararat-Armenia vs Urartu

Premier League · Armenia · 07 Aug 2026, 15:00 UTC

Final score
2 : 1
Result
Lost
Pick
Urartu
Market
1x2
Model prob.
29.9%
Best price
4.92
Min odds
3.86
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)
ZdU1UNKoTUHWOJ9ZHD5RkhxpilBKtO4b1IPLPaiD36uCKy/ygYrWVxkDFbXG3pINUGU5x614aSuxN1d4p6af74ZjNqXTF+HnXn12d+tgweZzESDQpMp8aCPmHMKSslhw4asYRaLCYyoOqVMal/z/4zaoQzs2jmHSMTBf2OAP/MJJ0a0HNigGrdZWUZWEd9Kuqo+sB6mabfwHaNWvC7lDjFhXXz/G7caSvOk1Vyd9W/4jpT86IYDSvSh8fFz9UmWsdrFJbqkKzLiX44xVXF1wMHN2Yfmx78i8iZxtUl9wvEhQlCkZ+QkWugpQOLRmNPh2xqg9OU6e4G5eCTHLRkoTcLA48cFq
key fingerprint sha256: 25cb244b5fb6b7100b900e04a245d4c15a6d73dfc24861c030355081ba9a53d0
Decrypt it & read the pick
Decryption key (released after the match)
80fb263223d0f945c4b85eb7c5927bdcc649e1dc8c8296ad6e591f1c75ac0eca
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("ZdU1UNKoTUHWOJ9ZHD5RkhxpilBKtO4b1IPLPaiD36uCKy/ygYrWVxkDFbXG3pINUGU5x614aSuxN1d4p6af74ZjNqXTF+HnXn12d+tgweZzESDQpMp8aCPmHMKSslhw4asYRaLCYyoOqVMal/z/4zaoQzs2jmHSMTBf2OAP/MJJ0a0HNigGrdZWUZWEd9Kuqo+sB6mabfwHaNWvC7lDjFhXXz/G7caSvOk1Vyd9W/4jpT86IYDSvSh8fFz9UmWsdrFJbqkKzLiX44xVXF1wMHN2Yfmx78i8iZxtUl9wvEhQlCkZ+QkWugpQOLRmNPh2xqg9OU6e4G5eCTHLRkoTcLA48cFq"), c => c.charCodeAt(0));
const key  = Uint8Array.from("80fb263223d0f945c4b85eb7c5927bdcc649e1dc8c8296ad6e591f1c75ac0eca".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): 80fb263223d0f945c4b85eb7c5927bdcc649e1dc8c8296ad6e591f1c75ac0eca
  • IV / nonce (hex): 65d53550d2a84d41d6389f59
  • Ciphertext (hex): 1c3e51921c698a504ab4ee1bd483cb3da883dfab822b2ff2818ad657190315b5c6de920d506539c7ad78692bb1375778a7a69fef866336a5d317e1e75e7d7677eb60c1e6731120d0a4ca7c6823e61cc292b25870e1ab1845a2c2632a0ea9531a97fcffe336a8433b368e61d231305fd8e00ffcc249d1ad07362806add65651958477d2aeaa8fac07a99a6dfc0768d5af0bb9438c58575f3fc6edc692bce93557277d5bfe23a53f3a2180d2bd287c7c5cfd5265ac76b1496ea90accb897e38c555c5d7030737661f9b1efc8bc899c6d525f70bc4850942919f90916ba0a5038b46634f876c6a83d394e
  • Auth tag (hex): 9ee06e5e0931cb464a1370b038f1c16a

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