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

Arborg vs Alftanes

4. Deild · Iceland · 02 Sept 2026, 19:15 UTC

Final score
2 : 4
Result
Won
Pick
Alftanes
Market
1X2
CLV vs fair close
+9.09%
Model prob.
51.6%
Best price
2.06
Min odds
1.98
Stake factor
2.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)
E417HNc9kW03ebx4Y0r/5vJ6n+uER3zdIks7g5F2LAjr+YSP9lfXXI8rKty6flSInCetnm0ckR2NryqZr363gE/vD3JPit+d2dQjSn7ehsAh5Vq9yOjByp6KbsCIRE6i1VG83+FjtWRnvuX8oivN551JF2eWborLjedZT6HW0s4m0pdXHXEyuaoXvmNsAqGMBulId2Xt6YsDo9H930SQyoFwk+F6r7yac2oq7f9yMD75IcaEmztpcGB9bTdD4B5LfFlcGikfefcvBL9dGq0lWnvPiYFOmG0ZXZyPeZ+A8nbekphhq29ghU4E0wabrmLQ+ZJbZxUGBYrPyH3CGXYin6FG1ErOetWs7Mk=
key fingerprint sha256: 126b5a13bbed6a83b11798ec45f9fafef2be493e4a65a85ccc39f4df71cf792b
Decrypt it & read the pick
Decryption key (released after the match)
ef795c85c6575f57e901ef257befab434db9c4195e0576b1469af479e4ead495
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("E417HNc9kW03ebx4Y0r/5vJ6n+uER3zdIks7g5F2LAjr+YSP9lfXXI8rKty6flSInCetnm0ckR2NryqZr363gE/vD3JPit+d2dQjSn7ehsAh5Vq9yOjByp6KbsCIRE6i1VG83+FjtWRnvuX8oivN551JF2eWborLjedZT6HW0s4m0pdXHXEyuaoXvmNsAqGMBulId2Xt6YsDo9H930SQyoFwk+F6r7yac2oq7f9yMD75IcaEmztpcGB9bTdD4B5LfFlcGikfefcvBL9dGq0lWnvPiYFOmG0ZXZyPeZ+A8nbekphhq29ghU4E0wabrmLQ+ZJbZxUGBYrPyH3CGXYin6FG1ErOetWs7Mk="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ef795c85c6575f57e901ef257befab434db9c4195e0576b1469af479e4ead495".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): ef795c85c6575f57e901ef257befab434db9c4195e0576b1469af479e4ead495
  • IV / nonce (hex): 138d7b1cd73d916d3779bc78
  • Ciphertext (hex): 634affe6f27a9feb84477cdd224b3b8391762c08ebf9848ff657d75c8f2b2adcba7e54889c27ad9e6d1c911d8daf2a99af7eb7804fef0f724f8adf9dd9d4234a7ede86c021e55abdc8e8c1ca9e8a6ec088444ea2d551bcdfe163b56467bee5fca22bcde79d491767966e8acb8de7594fa1d6d2ce26d297571d7132b9aa17be636c02a18c06e9487765ede98b03a3d1fddf4490ca817093e17aafbc9a736a2aedff72303ef921c6849b3b6970607d6d3743e01e4b7c595c1a291f79f72f04bf5d1aad255a7bcf89814e986d195d9c8f799f80f276de929861ab6f60854e04d3069bae62d0f9925b671506058acfc8
  • Auth tag (hex): 7dc21976229fa146d44ace7ad5acecc9

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