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

Poland U19 W vs Bosnia & Herzegovina U19 W

Euro U19 Women · Europe · 03 Jul 2026, 15:00 UTC

Final score
5 : 1
Result
Won
Pick
Poland U19 W
Market
1x2
Model prob.
97.7%
Best price
1.09
Min odds
1.07
Stake factor
1.50

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)
V0HjtGOgxmrzYjOxjF0KgjdiJU2jqqcWddVEgiIswk1+lGkapw41dm1B0e0E7Rec2ZppEHqw43OSa6mtlJxAETj0TwE3FonFAhxrD7/YfCAOO83t+/3ICZM0QS6VHS+Un0duMnrEWtsc0PfL4OXCW47uAruT+K5Vj+KXg96PYSOxfaMFB9VhFa5lVkmaV7JLRO2e1TPANdZCxsKfzz39Ru0nHrCA9EiQ6I22i98DxVV43poZBQr7vcuxcDTJdwcPS4OrHycoIXrb+HgoorWcO+HYGW8g3krhkRX2G+JMrtn+7QArV8ddEnGZdrWvSF5zlqCLHIVCHAg92OFfUkEYI6zS6JAR07gk3/JFFQ==
key fingerprint sha256: 7f8916f1aa6d32c089d9c0472be3b0dce887cd9e907d9f02eeb701045883f5df
Decrypt it & read the pick
Decryption key (released after the match)
eb321b3f04001b9822c73f60f2f59f17bc586009ef80d250e8f98b04f4fce769
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("V0HjtGOgxmrzYjOxjF0KgjdiJU2jqqcWddVEgiIswk1+lGkapw41dm1B0e0E7Rec2ZppEHqw43OSa6mtlJxAETj0TwE3FonFAhxrD7/YfCAOO83t+/3ICZM0QS6VHS+Un0duMnrEWtsc0PfL4OXCW47uAruT+K5Vj+KXg96PYSOxfaMFB9VhFa5lVkmaV7JLRO2e1TPANdZCxsKfzz39Ru0nHrCA9EiQ6I22i98DxVV43poZBQr7vcuxcDTJdwcPS4OrHycoIXrb+HgoorWcO+HYGW8g3krhkRX2G+JMrtn+7QArV8ddEnGZdrWvSF5zlqCLHIVCHAg92OFfUkEYI6zS6JAR07gk3/JFFQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("eb321b3f04001b9822c73f60f2f59f17bc586009ef80d250e8f98b04f4fce769".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): eb321b3f04001b9822c73f60f2f59f17bc586009ef80d250e8f98b04f4fce769
  • IV / nonce (hex): 5741e3b463a0c66af36233b1
  • Ciphertext (hex): 8c5d0a823762254da3aaa71675d54482222cc24d7e94691aa70e35766d41d1ed04ed179cd99a69107ab0e373926ba9ad949c401138f44f01371689c5021c6b0fbfd87c200e3bcdedfbfdc8099334412e951d2f949f476e327ac45adb1cd0f7cbe0e5c25b8eee02bb93f8ae558fe29783de8f6123b17da30507d56115ae6556499a57b24b44ed9ed533c035d642c6c29fcf3dfd46ed271eb080f44890e88db68bdf03c55578de9a19050afbbdcbb17034c977070f4b83ab1f2728217adbf87828a2b59c3be1d8196f20de4ae19115f61be24caed9feed002b57c75d12719976b5af485e7396a08b1c85421c083dd8e15f
  • Auth tag (hex): 52411823acd2e89011d3b824dff24515

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