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

Warta Gorzow Wielkopolski vs Stal Brzeg

3rd Liga · Poland · 12 Sept 2026, 15:00 UTC

Final score
1 : 0
Result
Lost
Pick
Stal Brzeg
Market
1X2
CLV vs fair close
+15.90%
Model prob.
34.0%
Best price
3.35
Min odds
3.00
Stake factor
2.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)
8evHXlGpAwwh1nVQP4cK1zpwbjRu1iqjgLLkydqu4dFGGdj3cBvN0DJjN9zODwWYl7e0VuqeqkvnwkrjCZZ2Uc9D0Ouj7aK2IfP3ilb5OKLntv83JRkDoL7GEyyBCIoTkJaIIT2MZO+oFBLc4WNxGJxZehwTsrtIqRhtPYJ1WZZRTH0Y3GpY9khmnJg8EXmWKfos0RsxYmBb66iqSll1yU4BQhwEmB2Eb458wTPUYI6SNo1oTN/s5QJULXunK67MCMVWUjLyQXOYDp7qrZW66I5uleCRpAksJ2OP3qW35G0CjCRzbhfsYNAbUy0Hjrr7Nd5qIuareB/V1RwUpaPl8ap0oqZQ+s5quw==
key fingerprint sha256: 4dd38d8837c6a77307e37b2a992d24a1f56cd50ffb38f8f8c188e74ef7ed7e79
Decrypt it & read the pick
Decryption key (released after the match)
e1c50dbb607030f57de6658e032dcbce405e6c32173bb0f4cf080bdbfe6d6cda
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("8evHXlGpAwwh1nVQP4cK1zpwbjRu1iqjgLLkydqu4dFGGdj3cBvN0DJjN9zODwWYl7e0VuqeqkvnwkrjCZZ2Uc9D0Ouj7aK2IfP3ilb5OKLntv83JRkDoL7GEyyBCIoTkJaIIT2MZO+oFBLc4WNxGJxZehwTsrtIqRhtPYJ1WZZRTH0Y3GpY9khmnJg8EXmWKfos0RsxYmBb66iqSll1yU4BQhwEmB2Eb458wTPUYI6SNo1oTN/s5QJULXunK67MCMVWUjLyQXOYDp7qrZW66I5uleCRpAksJ2OP3qW35G0CjCRzbhfsYNAbUy0Hjrr7Nd5qIuareB/V1RwUpaPl8ap0oqZQ+s5quw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("e1c50dbb607030f57de6658e032dcbce405e6c32173bb0f4cf080bdbfe6d6cda".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): e1c50dbb607030f57de6658e032dcbce405e6c32173bb0f4cf080bdbfe6d6cda
  • IV / nonce (hex): f1ebc75e51a9030c21d67550
  • Ciphertext (hex): 3f870ad73a706e346ed62aa380b2e4c9daaee1d14619d8f7701bcdd0326337dcce0f059897b7b456ea9eaa4be7c24ae309967651cf43d0eba3eda2b621f3f78a56f938a2e7b6ff37251903a0bec6132c81088a13909688213d8c64efa81412dce16371189c597a1c13b2bb48a9186d3d82755996514c7d18dc6a58f648669c983c11799629fa2cd11b3162605beba8aa4a5975c94e01421c04981d846f8e7cc133d4608e92368d684cdfece502542d7ba72baecc08c5565232f24173980e9eeaad95bae88e6e95e091a4092c27638fdea5b7e46d028c24736e17ec60d01b532d078ebafb35de6a22e6ab781fd5
  • Auth tag (hex): d51c14a5a3e5f1aa74a2a650face6abb

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