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

Moss vs Sogndal

1st Division · Norway · 26 Aug 2026, 17:00 UTC

Final score
2 : 2
Result
Lost
Pick
Moss
Market
1X2
CLV vs fair close
+6.65%
Model prob.
46.0%
Best price
2.32
Min odds
2.22
Stake factor
1.70

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)
teh5PIaLOwuGiK3BStOUNcsteW93u3T5X03ZfAoj4os8Ub+2Tn7LD/e4yQkRHkg9CeyZyXknz0Wxz5H9qCDEQaE0HwJuEEoY3pnwWzg07EzI8L5sf0CRH9hgNMBblfu1/1wzZzDiyY0akiT1r5HJx4HSChw+lLuj/9fUoc+eHoXGgWWQ+Cgj1km2h81zHUxpAFTywyZlsDcDm18jrVdH5mTsrY4+z7pCC679k5pWKbJnLy1wcVfWo3rCH8m9yccXnEV0+yDE3LXwK9IHbf04gEawkWgIqFBYNusigwKJF658jBleg3hSXlaTiTq7TM2wfwBk4KK7IZb5aavM8iFdqGiCKcip+YZG
key fingerprint sha256: d3c3e00d1a7ce4525f2ae1cc2d7d11646d8c77404c20031b6573aebb1df3a8d7
Decrypt it & read the pick
Decryption key (released after the match)
90aca33475874ff317e3bc5ee4a27bdb93a1d055cb1ef48630815f238dd352de
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("teh5PIaLOwuGiK3BStOUNcsteW93u3T5X03ZfAoj4os8Ub+2Tn7LD/e4yQkRHkg9CeyZyXknz0Wxz5H9qCDEQaE0HwJuEEoY3pnwWzg07EzI8L5sf0CRH9hgNMBblfu1/1wzZzDiyY0akiT1r5HJx4HSChw+lLuj/9fUoc+eHoXGgWWQ+Cgj1km2h81zHUxpAFTywyZlsDcDm18jrVdH5mTsrY4+z7pCC679k5pWKbJnLy1wcVfWo3rCH8m9yccXnEV0+yDE3LXwK9IHbf04gEawkWgIqFBYNusigwKJF658jBleg3hSXlaTiTq7TM2wfwBk4KK7IZb5aavM8iFdqGiCKcip+YZG"), c => c.charCodeAt(0));
const key  = Uint8Array.from("90aca33475874ff317e3bc5ee4a27bdb93a1d055cb1ef48630815f238dd352de".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): 90aca33475874ff317e3bc5ee4a27bdb93a1d055cb1ef48630815f238dd352de
  • IV / nonce (hex): b5e8793c868b3b0b8688adc1
  • Ciphertext (hex): 4ad39435cb2d796f77bb74f95f4dd97c0a23e28b3c51bfb64e7ecb0ff7b8c909111e483d09ec99c97927cf45b1cf91fda820c441a1341f026e104a18de99f05b3834ec4cc8f0be6c7f40911fd86034c05b95fbb5ff5c336730e2c98d1a9224f5af91c9c781d20a1c3e94bba3ffd7d4a1cf9e1e85c6816590f82823d649b687cd731d4c690054f2c32665b037039b5f23ad5747e664ecad8e3ecfba420baefd939a5629b2672f2d707157d6a37ac21fc9bdc9c7179c4574fb20c4dcb5f02bd2076dfd388046b0916808a8505836eb2283028917ae7c8c195e8378525e5693893abb4ccdb07f0064e0a2bb2196
  • Auth tag (hex): f969abccf2215da8688229c8a9f98646

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