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

Ullensaker/Kisa vs Levanger

2nd Division · Norway · 06 Sept 2026, 13:00 UTC

Final score
0 : 5
Result
Won
Pick
Levanger
Market
1X2
CLV vs fair close
+15.01%
Model prob.
72.7%
Best price
1.47
Min odds
1.40
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)
oZMnRYr7qKAGFfoVjjn+Q1waxwQAdtd2W98MxVeNoOEkTiqyhS+LzxfOXeP0zpg0P/JNZzcr3pH95S3tqsMcbKDjmAzANQgat7GpZRMtxpymi5Z17M5wFQmMrtTarRnc+viOtTqkRxbaMCOdyFoOpBzjPns8KrGB6RNBsVxIimK9Fj9TeiNMxM7p+VCpGp38jTsQ1pLpBCKBvQUmthYkHoP6OrysrJ2eL+hLts9tSkzbfPc0AEwWN3fu+68xOhteRHqAvCS/2b3jlk/8YgarQZRFsWrY4F/C31wTBti7Nu8Wv7EsxXllFTGhTthpXrVeDeJahwL3RRaybX28Jk2NR5kKJDqPwyWDNQ==
key fingerprint sha256: e1b8b89057d7b734e3c47367cf52e11743b47960e111fb11756d9b179e0e4e73
Decrypt it & read the pick
Decryption key (released after the match)
08842faff589ec58ab466eb0d37d088da900db6796f81341289fa4df47bb5912
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("oZMnRYr7qKAGFfoVjjn+Q1waxwQAdtd2W98MxVeNoOEkTiqyhS+LzxfOXeP0zpg0P/JNZzcr3pH95S3tqsMcbKDjmAzANQgat7GpZRMtxpymi5Z17M5wFQmMrtTarRnc+viOtTqkRxbaMCOdyFoOpBzjPns8KrGB6RNBsVxIimK9Fj9TeiNMxM7p+VCpGp38jTsQ1pLpBCKBvQUmthYkHoP6OrysrJ2eL+hLts9tSkzbfPc0AEwWN3fu+68xOhteRHqAvCS/2b3jlk/8YgarQZRFsWrY4F/C31wTBti7Nu8Wv7EsxXllFTGhTthpXrVeDeJahwL3RRaybX28Jk2NR5kKJDqPwyWDNQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("08842faff589ec58ab466eb0d37d088da900db6796f81341289fa4df47bb5912".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): 08842faff589ec58ab466eb0d37d088da900db6796f81341289fa4df47bb5912
  • IV / nonce (hex): a19327458afba8a00615fa15
  • Ciphertext (hex): 8e39fe435c1ac7040076d7765bdf0cc5578da0e1244e2ab2852f8bcf17ce5de3f4ce98343ff24d67372bde91fde52dedaac31c6ca0e3980cc035081ab7b1a965132dc69ca68b9675ecce7015098caed4daad19dcfaf88eb53aa44716da30239dc85a0ea41ce33e7b3c2ab181e91341b15c488a62bd163f537a234cc4cee9f950a91a9dfc8d3b10d692e9042281bd0526b616241e83fa3abcacac9d9e2fe84bb6cf6d4a4cdb7cf734004c163777eefbaf313a1b5e447a80bc24bfd9bde3964ffc6206ab419445b16ad8e05fc2df5c1306d8bb36ef16bfb12cc579651531a14ed8695eb55e0de25a8702f74516b2
  • Auth tag (hex): 6d7dbc264d8d47990a243a8fc3258335

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