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

Podhale Nowy Targ vs Pogon Grodzisk Mazowiecki

Cup · Poland · 01 Sept 2026, 13:30 UTC

Final score
3 : 1
Result
Won
Pick
Podhale Nowy Targ
Market
1X2
CLV vs fair close
+25.47%
Model prob.
35.0%
Best price
3.20
Min odds
2.92
Stake factor
1.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)
KY4EgbmXKf3Ta2cJn8+ei5ACpit7BnfoKxKQebNyBBRrAb/o2JXQLg4Oka32/bKxKIqXutZ9+Gn3gxFHWcaAqQixP24MS+ULVJgv8XjREsx32yYOKtKA7DhjcvfRztMG42FnZMFIE0BDBCvXsELHi0Nm5BlxHbNpaBcN1DzNA33bz/L3KoNuyULdWWZ58idClAcdYJ5VjCf1rcmJ8tcn37bfG2ABXzUCPt32nfYtdub05CULfI8Y5dd1T1ThXaWAoLWAConcb8hyHfUDSsU86deu0aPLfjeJrE6BpKDnyPY5ln+qxw7pQOq5i4oeHHFPzxGcq7O0lf1MvV6WTjaY8Wy7fSwXcnsJdvVi8SHEW4OFHnqa
key fingerprint sha256: 55a577f40e8d044bb84a07954194a519e343ffc7661cc6edae11a29462aefd05
Decrypt it & read the pick
Decryption key (released after the match)
d2c8ddb2a6a17aea07e8ec7d7918664b87418ba95e60e5a379b1c006e2fc6b92
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("KY4EgbmXKf3Ta2cJn8+ei5ACpit7BnfoKxKQebNyBBRrAb/o2JXQLg4Oka32/bKxKIqXutZ9+Gn3gxFHWcaAqQixP24MS+ULVJgv8XjREsx32yYOKtKA7DhjcvfRztMG42FnZMFIE0BDBCvXsELHi0Nm5BlxHbNpaBcN1DzNA33bz/L3KoNuyULdWWZ58idClAcdYJ5VjCf1rcmJ8tcn37bfG2ABXzUCPt32nfYtdub05CULfI8Y5dd1T1ThXaWAoLWAConcb8hyHfUDSsU86deu0aPLfjeJrE6BpKDnyPY5ln+qxw7pQOq5i4oeHHFPzxGcq7O0lf1MvV6WTjaY8Wy7fSwXcnsJdvVi8SHEW4OFHnqa"), c => c.charCodeAt(0));
const key  = Uint8Array.from("d2c8ddb2a6a17aea07e8ec7d7918664b87418ba95e60e5a379b1c006e2fc6b92".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): d2c8ddb2a6a17aea07e8ec7d7918664b87418ba95e60e5a379b1c006e2fc6b92
  • IV / nonce (hex): 298e0481b99729fdd36b6709
  • Ciphertext (hex): 9fcf9e8b9002a62b7b0677e82b129079b37204146b01bfe8d895d02e0e0e91adf6fdb2b1288a97bad67df869f783114759c680a908b13f6e0c4be50b54982ff178d112cc77db260e2ad280ec386372f7d1ced306e3616764c148134043042bd7b042c78b4366e419711db36968170dd43ccd037ddbcff2f72a836ec942dd596679f2274294071d609e558c27f5adc989f2d727dfb6df1b60015f35023eddf69df62d76e6f4e4250b7c8f18e5d7754f54e15da580a0b5800a89dc6fc8721df5034ac53ce9d7aed1a3cb7e3789ac4e81a4a0e7c8f639967faac70ee940eab98b8a1e1c714fcf119cabb3b495fd4cbd5e964e3698f16cbb7d2c
  • Auth tag (hex): 17727b0976f562f121c45b83851e7a9a

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