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

Gintra W vs Hearts W

UEFA Women's Champions League · Europe · 05 Aug 2026, 13:30 UTC

Final score
1 : 2
Result
Lost
Pick
Gintra W
Market
1x2
Model prob.
20.8%
Best price
7.73
Min odds
5.97
Stake factor
3.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)
SVkCsmRnwldMiiAZbnbyfIa22D4IEe87Xd4787i6IwKczEhgkoL+EZK42uKNSbeEZecjMPBRGVaNl1hoNyXEZy7hwoDWegew4TcHCIXBB3/KhErDN1fBvXufHl0SGDR6JepAYPmmjqxyEJU2TAljgu35NarJvf07Za6TLKSU/PvpmjQDw/X7cBwfjNesq1/4EZVwnbEPzSuVdPpCdVTZH6AglhGGZkOWyqyx5p/OZ9M7y0wlpvLg1p1NRHaFeYcVjVkpmQCWw8FzQMGvad6eVN/RlP001N0y+7B6SUm6Er0nUJcJL60w7/ElBJjpQaayOO1hNJ1PQKmZeVoo7LRusGal68bscA==
key fingerprint sha256: a9e37d1561d5346759624ad91f647df33eecdef9c293e4373dcda909e655394d
Decrypt it & read the pick
Decryption key (released after the match)
fc29177580f39ee8d18d78fc8f6500a029ddba4af44e39f80842fbf610bd406d
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("SVkCsmRnwldMiiAZbnbyfIa22D4IEe87Xd4787i6IwKczEhgkoL+EZK42uKNSbeEZecjMPBRGVaNl1hoNyXEZy7hwoDWegew4TcHCIXBB3/KhErDN1fBvXufHl0SGDR6JepAYPmmjqxyEJU2TAljgu35NarJvf07Za6TLKSU/PvpmjQDw/X7cBwfjNesq1/4EZVwnbEPzSuVdPpCdVTZH6AglhGGZkOWyqyx5p/OZ9M7y0wlpvLg1p1NRHaFeYcVjVkpmQCWw8FzQMGvad6eVN/RlP001N0y+7B6SUm6Er0nUJcJL60w7/ElBJjpQaayOO1hNJ1PQKmZeVoo7LRusGal68bscA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("fc29177580f39ee8d18d78fc8f6500a029ddba4af44e39f80842fbf610bd406d".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): fc29177580f39ee8d18d78fc8f6500a029ddba4af44e39f80842fbf610bd406d
  • IV / nonce (hex): 495902b26467c2574c8a2019
  • Ciphertext (hex): 6e76f27c86b6d83e0811ef3b5dde3bf3b8ba23029ccc48609282fe1192b8dae28d49b78465e72330f05119568d9758683725c4672ee1c280d67a07b0e137070885c1077fca844ac33757c1bd7b9f1e5d1218347a25ea4060f9a68eac721095364c096382edf935aac9bdfd3b65ae932ca494fcfbe99a3403c3f5fb701c1f8cd7acab5ff81195709db10fcd2b9574fa427554d91fa020961186664396caacb1e69fce67d33bcb4c25a6f2e0d69d4d4476857987158d5929990096c3c17340c1af69de9e54dfd194fd34d4dd32fbb07a4949ba12bd275097092fad30eff1250498e941a6b238ed61349d4f
  • Auth tag (hex): 40a999795a28ecb46eb066a5ebc6ec70

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