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

Avia Swidnik vs Rekord Bielsko Biala

2nd Liga · Poland · 13 Sept 2026, 12:30 UTC

Final score
0 : 1
Result
Won
Pick
Rekord Bielsko Biala
Market
1X2
CLV vs fair close
-2.93%
Model prob.
36.4%
Best price
3.15
Min odds
2.80
Stake factor
2.30

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)
SyFWmGAB2MkogEV02u3MWS2/d6sjH3ExhOXEa/vvL3kiHbPxe3bCmiPwMMAIasC8vuCFUsTlSRrfildtZRsshYmddnShCL4kMMzGdBX2YnL1xKO7O7Nj9b+NOlmjjxPOQNFVX6BXdnYHld7MJq1Er77SrDafWYIANRua0TAnV7BEZmw/UmnKLPnebb4CovXZPK73y5IGH+2mD7zIeF0nZJXpvWW5D3c2f4Z58aGcaTyBZPefCJu8PVYagbjw/D+Et64zCJEJg6CzFTVwbZjMf0QWwWbQb+UoK/cClWOpyK0Plz0oDd/VQ7+KEodDId8tLKvXjpZDM4Brmkny7Y2W5O06iJGPc8GGwz32wSt7ilW8/CIPKDwziQ==
key fingerprint sha256: 9be33c02c2b1bee1a409c99e656c5a99d2bdad2f905c7875ce523da1b50918ec
Decrypt it & read the pick
Decryption key (released after the match)
897513b6d08603bf8887813050fc602ef25c152f0aea98e9d1c175d7a13f8bc2
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("SyFWmGAB2MkogEV02u3MWS2/d6sjH3ExhOXEa/vvL3kiHbPxe3bCmiPwMMAIasC8vuCFUsTlSRrfildtZRsshYmddnShCL4kMMzGdBX2YnL1xKO7O7Nj9b+NOlmjjxPOQNFVX6BXdnYHld7MJq1Er77SrDafWYIANRua0TAnV7BEZmw/UmnKLPnebb4CovXZPK73y5IGH+2mD7zIeF0nZJXpvWW5D3c2f4Z58aGcaTyBZPefCJu8PVYagbjw/D+Et64zCJEJg6CzFTVwbZjMf0QWwWbQb+UoK/cClWOpyK0Plz0oDd/VQ7+KEodDId8tLKvXjpZDM4Brmkny7Y2W5O06iJGPc8GGwz32wSt7ilW8/CIPKDwziQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("897513b6d08603bf8887813050fc602ef25c152f0aea98e9d1c175d7a13f8bc2".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): 897513b6d08603bf8887813050fc602ef25c152f0aea98e9d1c175d7a13f8bc2
  • IV / nonce (hex): 4b2156986001d8c928804574
  • Ciphertext (hex): daedcc592dbf77ab231f713184e5c46bfbef2f79221db3f17b76c29a23f030c0086ac0bcbee08552c4e5491adf8a576d651b2c85899d7674a108be2430ccc67415f66272f5c4a3bb3bb363f5bf8d3a59a38f13ce40d1555fa05776760795decc26ad44afbed2ac369f598200351b9ad1302757b044666c3f5269ca2cf9de6dbe02a2f5d93caef7cb92061feda60fbcc8785d276495e9bd65b90f77367f8679f1a19c693c8164f79f089bbc3d561a81b8f0fc3f84b7ae3308910983a0b31535706d98cc7f4416c166d06fe5282bf7029563a9c8ad0f973d280ddfd543bf8a12874321df2d2cabd78e964333806b9a49f2ed8d96e4ed3a88918f73c186
  • Auth tag (hex): c33df6c12b7b8a55bcfc220f283c3389

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