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

FC Iberia 1999 vs Torpedo Kutaisi

Super Cup · Georgia · 01 Jul 2026, 16:00 UTC

Final score
2 : 2
Result
Won
Pick
Draw
Market
1x2
Model prob.
32.1%
Best price
3.91
Min odds
3.56
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)
87+4vuTFBku/6nLbddqfDou+iAj+GG4dhDTCjFyxAixsz2q/K1i6UJgmuMoW8f+gCUFr9Rvn28W+Jrr4/vdLBItnGkEh4flRPNrzTh0gFidEF37JT9HQk87gmBbNEOH8kxwJVlf/5LjL20yW9afqunq2e6TctinHTm02463FDoSjsySAbDZsjAQCIovkyjbwVwL2EdWaiaNQeJRqM+4WioMAGc3xWXqKn/KM48DAJgMa0IwwE7mLQrxvB4PB7mjT4NSoipEyE1YVC/G1yg52yEiLaSOQQFkr6LvTG3QD3izL61LZliFxhqbLcTd7GZZOHUhvjXp6BBgozWIpTY8UN3Cj
key fingerprint sha256: aafb38510f205f8763a4b92e5d7f3633b106ed4596a70e3fc2848f5b5e4cf73b
Decrypt it & read the pick
Decryption key (released after the match)
17771c998850f4fd569e80d654a16990c1d96cb116bd6257eef09240ef0409ca
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("87+4vuTFBku/6nLbddqfDou+iAj+GG4dhDTCjFyxAixsz2q/K1i6UJgmuMoW8f+gCUFr9Rvn28W+Jrr4/vdLBItnGkEh4flRPNrzTh0gFidEF37JT9HQk87gmBbNEOH8kxwJVlf/5LjL20yW9afqunq2e6TctinHTm02463FDoSjsySAbDZsjAQCIovkyjbwVwL2EdWaiaNQeJRqM+4WioMAGc3xWXqKn/KM48DAJgMa0IwwE7mLQrxvB4PB7mjT4NSoipEyE1YVC/G1yg52yEiLaSOQQFkr6LvTG3QD3izL61LZliFxhqbLcTd7GZZOHUhvjXp6BBgozWIpTY8UN3Cj"), c => c.charCodeAt(0));
const key  = Uint8Array.from("17771c998850f4fd569e80d654a16990c1d96cb116bd6257eef09240ef0409ca".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): 17771c998850f4fd569e80d654a16990c1d96cb116bd6257eef09240ef0409ca
  • IV / nonce (hex): f3bfb8bee4c5064bbfea72db
  • Ciphertext (hex): 75da9f0e8bbe8808fe186e1d8434c28c5cb1022c6ccf6abf2b58ba509826b8ca16f1ffa009416bf51be7dbc5be26baf8fef74b048b671a4121e1f9513cdaf34e1d20162744177ec94fd1d093cee09816cd10e1fc931c095657ffe4b8cbdb4c96f5a7eaba7ab67ba4dcb629c74e6d36e3adc50e84a3b324806c366c8c0402228be4ca36f05702f611d59a89a35078946a33ee168a830019cdf1597a8a9ff28ce3c0c026031ad08c3013b98b42bc6f0783c1ee68d3e0d4a88a91321356150bf1b5ca0e76c8488b69239040592be8bbd31b7403de2ccbeb52d996217186a6cb71377b19964e1d48
  • Auth tag (hex): 6f8d7a7a041828cd62294d8f143770a3

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