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

MTK Budapest II vs Dunaharaszti MTK

NB 3 · Hungary · 06 Sept 2026, 11:00 UTC

Final score
4 : 2
Result
Lost
Pick
Dunaharaszti MTK
Market
1X2
CLV vs fair close
-40.71%
Model prob.
20.2%
Best price
5.75
Min odds
5.06
Stake factor
1.10

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)
EbllvkLRTkDo9tTjtBOvAfMbCrcUAkk714t5p+Ex1wrSrbY3P90Vg2nEQhBdem3/bF6CgUHAO7emGjVvvidMo33iLftc9fTIfSv+8hyJ9JY6R6cEAJLDFrG3h0IjeByU4N5FbwVv9dlqJYCpVmva7G8z9pKhDICVof7+yxd9jTRZBgg3SUwD4sdOMU7zhvbWgVSmRBRPRBZFljb9fwFSZkFvYqCcEN6xS1kTpSB7TyOI1NZMKTzULO0PHw73to7Go2CCbcOwcGmj8ZFbLNXuILL8uXUANHidDEFy2T0SU0gO1VCsz4i3QASFf6dCRC2YX88/Fn2iQEJSJGe67SG9NISYSeYpM8EIhlf20AQvvtraS6zWnw==
key fingerprint sha256: dfa7d4bb5f0936dc9c7c5412941c14012d717effb00c818b51d5fa0ab3e26b47
Decrypt it & read the pick
Decryption key (released after the match)
d29df19f89ebbdd96b494a1a5ca43fea1ca2516ca1b00d2382de8ceaa3a80f68
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("EbllvkLRTkDo9tTjtBOvAfMbCrcUAkk714t5p+Ex1wrSrbY3P90Vg2nEQhBdem3/bF6CgUHAO7emGjVvvidMo33iLftc9fTIfSv+8hyJ9JY6R6cEAJLDFrG3h0IjeByU4N5FbwVv9dlqJYCpVmva7G8z9pKhDICVof7+yxd9jTRZBgg3SUwD4sdOMU7zhvbWgVSmRBRPRBZFljb9fwFSZkFvYqCcEN6xS1kTpSB7TyOI1NZMKTzULO0PHw73to7Go2CCbcOwcGmj8ZFbLNXuILL8uXUANHidDEFy2T0SU0gO1VCsz4i3QASFf6dCRC2YX88/Fn2iQEJSJGe67SG9NISYSeYpM8EIhlf20AQvvtraS6zWnw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d29df19f89ebbdd96b494a1a5ca43fea1ca2516ca1b00d2382de8ceaa3a80f68".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): d29df19f89ebbdd96b494a1a5ca43fea1ca2516ca1b00d2382de8ceaa3a80f68
  • IV / nonce (hex): 11b965be42d14e40e8f6d4e3
  • Ciphertext (hex): b413af01f31b0ab71402493bd78b79a7e131d70ad2adb6373fdd158369c442105d7a6dff6c5e828141c03bb7a61a356fbe274ca37de22dfb5cf5f4c87d2bfef21c89f4963a47a7040092c316b1b7874223781c94e0de456f056ff5d96a2580a9566bdaec6f33f692a10c8095a1fefecb177d8d3459060837494c03e2c74e314ef386f6d68154a644144f4416459636fd7f015266416f62a09c10deb14b5913a5207b4f2388d4d64c293cd42ced0f1f0ef7b68ec6a360826dc3b07069a3f1915b2cd5ee20b2fcb9750034789d0c4172d93d1253480ed550accf88b74004857fa742442d985fcf3f167da24042522467baed21bd34849849e629
  • Auth tag (hex): 33c1088657f6d0042fbedada4bacd69f

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