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

ACV Assen vs Hoogeveen

Cup · Netherlands · 22 Sept 2026, 18:00 UTC

Final score
2 : 1
Result
Won
Pick
ACV Assen
Market
1X2
CLV vs fair close
+2.53%
Model prob.
78.2%
Best price
1.36
Min odds
1.30
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)
BzB0zxvozHIH6rgZvdQIVJWTY9wu1O2vAIRny8h43TsWWLSmtPvO9+YkL/Lfp0aqCz1G6Xq3RvUAYpso7/d+jisjLGd8dB0oPIv6DdpXWd20BpyOxDW8VyMWm5WHgrh+JNvB4LZRfZXHEb0lbufYx/xD0V9bItwLp0Y30WxQqPG6k6AKnEZ/RiQFtT3fQbD/LSmEEc5rc43D1qvIRVFvu+aNcfBJ06nmwOrj+XX97zJwTUkP/q5ptzuQYtPN0CIcPe45nuJxv/6IZ6GCS/AO7z4HYVru4T6ZGi2hlykA3xaWp8gSW+4uiItzB1nVxyZd7sobtP+K/WHE+AZswqQ5cE63zDcIFf5y9SQ=
key fingerprint sha256: 4cb4d97d8ac9dcba77a74d4c71b7fe0216723a4cefb49e85c4abe1a6cae1006a
Decrypt it & read the pick
Decryption key (released after the match)
fda3ac20c8b276ef13fbec728addb7183141e51a2509bced0c3c2813d1c7c383
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("BzB0zxvozHIH6rgZvdQIVJWTY9wu1O2vAIRny8h43TsWWLSmtPvO9+YkL/Lfp0aqCz1G6Xq3RvUAYpso7/d+jisjLGd8dB0oPIv6DdpXWd20BpyOxDW8VyMWm5WHgrh+JNvB4LZRfZXHEb0lbufYx/xD0V9bItwLp0Y30WxQqPG6k6AKnEZ/RiQFtT3fQbD/LSmEEc5rc43D1qvIRVFvu+aNcfBJ06nmwOrj+XX97zJwTUkP/q5ptzuQYtPN0CIcPe45nuJxv/6IZ6GCS/AO7z4HYVru4T6ZGi2hlykA3xaWp8gSW+4uiItzB1nVxyZd7sobtP+K/WHE+AZswqQ5cE63zDcIFf5y9SQ="), c => c.charCodeAt(0));
const key  = Uint8Array.from("fda3ac20c8b276ef13fbec728addb7183141e51a2509bced0c3c2813d1c7c383".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): fda3ac20c8b276ef13fbec728addb7183141e51a2509bced0c3c2813d1c7c383
  • IV / nonce (hex): 073074cf1be8cc7207eab819
  • Ciphertext (hex): bdd40854959363dc2ed4edaf008467cbc878dd3b1658b4a6b4fbcef7e6242ff2dfa746aa0b3d46e97ab746f500629b28eff77e8e2b232c677c741d283c8bfa0dda5759ddb4069c8ec435bc5723169b958782b87e24dbc1e0b6517d95c711bd256ee7d8c7fc43d15f5b22dc0ba74637d16c50a8f1ba93a00a9c467f462405b53ddf41b0ff2d298411ce6b738dc3d6abc845516fbbe68d71f049d3a9e6c0eae3f975fdef32704d490ffeae69b73b9062d3cdd0221c3dee399ee271bffe8867a1824bf00eef3e07615aeee13e991a2da1972900df1696a7c8125bee2e888b730759d5c7265deeca1bb4ff8afd61c4f8
  • Auth tag (hex): 066cc2a439704eb7cc370815fe72f524

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