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

FKM Nove Zamky vs Spartak Myjava

3. Liga · Slovakia · 05 Sept 2026, 14:00 UTC

Final score
2 : 1
Result
Won
Pick
FKM Nove Zamky
Market
1X2
CLV vs fair close
+17.51%
Model prob.
42.4%
Best price
2.70
Min odds
2.41
Stake factor
2.80

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)
z+pi8wzmKHuPCKSVv1N+b+qQ38w/YbImnHXuJpMBfjcOM/G23nk/cdx9KOOgmdyBFHkYpJP0kffPVTcrCTmVkU6Ng14Omgn07TQIYjuH0EHjgv2yLluHYsLx6pxmCQB56kMbaCPwkGk6G8ycjpQz3IgzGhfSOZ1M8WGyUtlSgArnrSLX2jfJvjDMNtiWWGjhgho6KYR/oyd7AJ1kTUJtysS6NdmVnS4SARaUTgvL1mwLbIgfblwmmIrUkitpyPhFOiQD5n4tvlkenPSy7hAHKHhvRF2c3qsqoBcMyofnV2RysnGl+OZC/S4puz3xPmwx0CuEXrm+7lXls+bYC1vbnoffSMwFCcRtamuA8Ph0udE=
key fingerprint sha256: ee2c165c5ac8f782ffd326eb5e5d445f6f87fa7a31d0c23bd302e5e32458024d
Decrypt it & read the pick
Decryption key (released after the match)
851bc6915438501cec92a2457ceb801ec8ed36c0f14b65e68ccfe09c29a80c05
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("z+pi8wzmKHuPCKSVv1N+b+qQ38w/YbImnHXuJpMBfjcOM/G23nk/cdx9KOOgmdyBFHkYpJP0kffPVTcrCTmVkU6Ng14Omgn07TQIYjuH0EHjgv2yLluHYsLx6pxmCQB56kMbaCPwkGk6G8ycjpQz3IgzGhfSOZ1M8WGyUtlSgArnrSLX2jfJvjDMNtiWWGjhgho6KYR/oyd7AJ1kTUJtysS6NdmVnS4SARaUTgvL1mwLbIgfblwmmIrUkitpyPhFOiQD5n4tvlkenPSy7hAHKHhvRF2c3qsqoBcMyofnV2RysnGl+OZC/S4puz3xPmwx0CuEXrm+7lXls+bYC1vbnoffSMwFCcRtamuA8Ph0udE="), c => c.charCodeAt(0));
const key  = Uint8Array.from("851bc6915438501cec92a2457ceb801ec8ed36c0f14b65e68ccfe09c29a80c05".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): 851bc6915438501cec92a2457ceb801ec8ed36c0f14b65e68ccfe09c29a80c05
  • IV / nonce (hex): cfea62f30ce6287b8f08a495
  • Ciphertext (hex): bf537e6fea90dfcc3f61b2269c75ee2693017e370e33f1b6de793f71dc7d28e3a099dc81147918a493f491f7cf55372b093995914e8d835e0e9a09f4ed3408623b87d041e382fdb22e5b8762c2f1ea9c66090079ea431b6823f090693a1bcc9c8e9433dc88331a17d2399d4cf161b252d952800ae7ad22d7da37c9be30cc36d8965868e1821a3a29847fa3277b009d644d426dcac4ba35d9959d2e120116944e0bcbd66c0b6c881f6e5c26988ad4922b69c8f8453a2403e67e2dbe591e9cf4b2ee100728786f445d9cdeab2aa0170cca87e7576472b271a5f8e642fd2e29bb3df13e6c31d02b845eb9beee55e5b3e6d80b5bdb9e
  • Auth tag (hex): 87df48cc0509c46d6a6b80f0f874b9d1

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