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

EVV Echt vs Groene Ster

Derde Divisie · Netherlands · 19 Sept 2026, 17:00 UTC

Final score
0 : 0
Result
Lost
Pick
Groene Ster
Market
1X2
CLV vs fair close
+8.18%
Model prob.
46.0%
Best price
2.37
Min odds
2.22
Stake factor
2.20

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)
93HT8jPkCouk2NA+2j1+uu06iCYIZatgGRTyI9oTOSaEISobi9N5/dM3uMdGsMqdwIGkrUwngH6r66MW1Wi23fRk3badXHOkKnYbWs+FHMN9pcABLoDiYG5FiUUxscvrNzabzEoF2GivP0vnsV47TP5OkzwgGHZxrbeqZW3zrtx1tMGYlE5LTL7sKYHlXZHdsJDkgmz1HGjaYHArbYHmhZRVtSEf9zR8XYGB2Q5qYY1RXxl6hVaucPzrAgzeefZVXsh3ritb1VEcuuQml7m2nWouJKfWD5FwpvZYWQGg1tGpRe3KlB/bAYBVTGBkaiiJAeW/s3UARFhYTKzxCgrrSMp/loK1P87dMHWfCcU=
key fingerprint sha256: c8f2165d54003f470ac3ea40fb84aa7a4f58c42ac7a61ba19f87a73dab0a3906
Decrypt it & read the pick
Decryption key (released after the match)
6d3d8c803a6cf31e3da2fc7f11605b92a3cc30613afcff8f9eada241de6eb0c9
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("93HT8jPkCouk2NA+2j1+uu06iCYIZatgGRTyI9oTOSaEISobi9N5/dM3uMdGsMqdwIGkrUwngH6r66MW1Wi23fRk3badXHOkKnYbWs+FHMN9pcABLoDiYG5FiUUxscvrNzabzEoF2GivP0vnsV47TP5OkzwgGHZxrbeqZW3zrtx1tMGYlE5LTL7sKYHlXZHdsJDkgmz1HGjaYHArbYHmhZRVtSEf9zR8XYGB2Q5qYY1RXxl6hVaucPzrAgzeefZVXsh3ritb1VEcuuQml7m2nWouJKfWD5FwpvZYWQGg1tGpRe3KlB/bAYBVTGBkaiiJAeW/s3UARFhYTKzxCgrrSMp/loK1P87dMHWfCcU="), c => c.charCodeAt(0));
const key  = Uint8Array.from("6d3d8c803a6cf31e3da2fc7f11605b92a3cc30613afcff8f9eada241de6eb0c9".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): 6d3d8c803a6cf31e3da2fc7f11605b92a3cc30613afcff8f9eada241de6eb0c9
  • IV / nonce (hex): f771d3f233e40a8ba4d8d03e
  • Ciphertext (hex): da3d7ebaed3a88260865ab601914f223da13392684212a1b8bd379fdd337b8c746b0ca9dc081a4ad4c27807eabeba316d568b6ddf464ddb69d5c73a42a761b5acf851cc37da5c0012e80e2606e45894531b1cbeb37369bcc4a05d868af3f4be7b15e3b4cfe4e933c20187671adb7aa656df3aedc75b4c198944e4b4cbeec2981e55d91ddb090e4826cf51c68da60702b6d81e6859455b5211ff7347c5d8181d90e6a618d515f197a8556ae70fceb020cde79f6555ec877ae2b5bd5511cbae42697b9b69d6a2e24a7d60f9170a6f6585901a0d6d1a945edca941fdb0180554c60646a288901e5bfb375004458584cacf10a
  • Auth tag (hex): 0aeb48ca7f9682b53fcedd30759f09c5

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