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

Ægir vs Fylkir

Inkasso-Deildin · Iceland · 03 Jul 2026, 19:15 UTC

Final score
2 : 4
Result
Lost
Pick
Ægir
Market
1x2
Model prob.
19.6%
Best price
7.62
Min odds
6.42
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)
69KAqotdeYDmagcXCBIPABAIeh/8kLl68+Qtc6VOmPPH7VW8e22TRp9D3Te2FJgTIluj3QwIMy8998WkVn9XqRmLtvWZllgAxYwn6faKUKRXMdg70tD9SYwIUq32/3ErDEIvBeTqkdfIH/lsu8/H7aA2UC0J/PulxX3r0UTFIP/BjyTU3b3iichV2G8PB8TLh9Xs4rajiUZf+PuHer9nyrj/VmTAh9D/PQ7bmKqV6sJuZAqZZnW8hRiAHu84+a8E8RpSO7TjaSCj0jj5z6T1ytKstf0U3eJq/tzxqzoNs1ma1V0DRLxKoDBaCWpeuH7gY0BVijyaHgC7uwYxS53YSuh7X0Y=
key fingerprint sha256: a5742ad8830cf11fb6dcbe6fe6b6acdc9ae0b89a705bc94bbeab635826ffc93b
Decrypt it & read the pick
Decryption key (released after the match)
c1a1b3fd93e215a3d5820472eb1efc3233bfa55f5612d99c9fbab50e0959c186
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("69KAqotdeYDmagcXCBIPABAIeh/8kLl68+Qtc6VOmPPH7VW8e22TRp9D3Te2FJgTIluj3QwIMy8998WkVn9XqRmLtvWZllgAxYwn6faKUKRXMdg70tD9SYwIUq32/3ErDEIvBeTqkdfIH/lsu8/H7aA2UC0J/PulxX3r0UTFIP/BjyTU3b3iichV2G8PB8TLh9Xs4rajiUZf+PuHer9nyrj/VmTAh9D/PQ7bmKqV6sJuZAqZZnW8hRiAHu84+a8E8RpSO7TjaSCj0jj5z6T1ytKstf0U3eJq/tzxqzoNs1ma1V0DRLxKoDBaCWpeuH7gY0BVijyaHgC7uwYxS53YSuh7X0Y="), c => c.charCodeAt(0));
const key  = Uint8Array.from("c1a1b3fd93e215a3d5820472eb1efc3233bfa55f5612d99c9fbab50e0959c186".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): c1a1b3fd93e215a3d5820472eb1efc3233bfa55f5612d99c9fbab50e0959c186
  • IV / nonce (hex): ebd280aa8b5d7980e66a0717
  • Ciphertext (hex): 08120f0010087a1ffc90b97af3e42d73a54e98f3c7ed55bc7b6d93469f43dd37b6149813225ba3dd0c08332f3df7c5a4567f57a9198bb6f599965800c58c27e9f68a50a45731d83bd2d0fd498c0852adf6ff712b0c422f05e4ea91d7c81ff96cbbcfc7eda036502d09fcfba5c57debd144c520ffc18f24d4ddbde289c855d86f0f07c4cb87d5ece2b6a389465ff8fb877abf67cab8ff5664c087d0ff3d0edb98aa95eac26e640a996675bc8518801eef38f9af04f11a523bb4e36920a3d238f9cfa4f5cad2acb5fd14dde26afedcf1ab3a0db3599ad55d0344bc4aa0305a096a5eb87ee06340558a
  • Auth tag (hex): 3c9a1e00bbbb06314b9dd84ae87b5f46

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