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

Club America vs Puebla

Liga MX · Mexico · 30 Aug 2026, 01:00 UTC

Final score
2 : 0
Result
Lost
Pick
Puebla
Market
1X2
CLV vs fair close
+40.35%
Model prob.
15.1%
Best price
6.95
Min odds
6.74
Stake factor
1.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)
F4MXGj0POIIWQlG2G4R73aqMQkJWCNBueV5oec1WQGaBE2X81NiVZKFc43mak4HUPzZs6rq6E+jY+3Zb4c589rl7ADsAlb0SWSDPQw+N57w7f7jeAJ+tVfDVf8y2LuUp9g2JTE3iMwLmg0gnK3TgecZxj/Jxv0FWARyeHXDa5PLD70vMrtZ6ow3kAq+4Hd+QHSAW16vSLz39rkE9gSF8DBmvW6Hkxte2SULVGgTanL2u/AJj4hZmRSVl60ZarNVDly9LehpcYnUEVRNRDJPSZARFaMyPDwdK5x5E/jhFT3vPDe3FSldikqc6244NrJuJ8PU+PQuJK72sgBTHH6orVeniaqBVYAE1
key fingerprint sha256: 53c93988c2fc27a35f3cadbe88134044d43c96e748024f6e7b0cce08114e449f
Decrypt it & read the pick
Decryption key (released after the match)
50eb6aa9d25875768d3a5bff21a88ec4f7372efdd45d3ad019f5a264d5414eb8
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("F4MXGj0POIIWQlG2G4R73aqMQkJWCNBueV5oec1WQGaBE2X81NiVZKFc43mak4HUPzZs6rq6E+jY+3Zb4c589rl7ADsAlb0SWSDPQw+N57w7f7jeAJ+tVfDVf8y2LuUp9g2JTE3iMwLmg0gnK3TgecZxj/Jxv0FWARyeHXDa5PLD70vMrtZ6ow3kAq+4Hd+QHSAW16vSLz39rkE9gSF8DBmvW6Hkxte2SULVGgTanL2u/AJj4hZmRSVl60ZarNVDly9LehpcYnUEVRNRDJPSZARFaMyPDwdK5x5E/jhFT3vPDe3FSldikqc6244NrJuJ8PU+PQuJK72sgBTHH6orVeniaqBVYAE1"), c => c.charCodeAt(0));
const key  = Uint8Array.from("50eb6aa9d25875768d3a5bff21a88ec4f7372efdd45d3ad019f5a264d5414eb8".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): 50eb6aa9d25875768d3a5bff21a88ec4f7372efdd45d3ad019f5a264d5414eb8
  • IV / nonce (hex): 1783171a3d0f3882164251b6
  • Ciphertext (hex): 1b847bddaa8c42425608d06e795e6879cd564066811365fcd4d89564a15ce3799a9381d43f366ceababa13e8d8fb765be1ce7cf6b97b003b0095bd125920cf430f8de7bc3b7fb8de009fad55f0d57fccb62ee529f60d894c4de23302e68348272b74e079c6718ff271bf4156011c9e1d70dae4f2c3ef4bccaed67aa30de402afb81ddf901d2016d7abd22f3dfdae413d81217c0c19af5ba1e4c6d7b64942d51a04da9cbdaefc0263e21666452565eb465aacd543972f4b7a1a5c6275045513510c93d264044568cc8f0f074ae71e44fe38454f7bcf0dedc54a576292a73adb8e0dac9b89f0f53e3d0b892bbd
  • Auth tag (hex): ac8014c71faa2b55e9e26aa055600135

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