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

Audax Italiano vs Universidad Chile

Primera Division · Chile · 26 Jul 2026, 21:30 UTC

Final score
1 : 2
Result
Won
Pick
Universidad Chile
Market
1x2
Model prob.
48.2%
Best price
2.43
Min odds
2.26
Stake factor
2.40

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)
7MGR+rLIbvfjoXka+GqdjeXFGun6Zf1i+nJ84flQYjSnVE3pSju2NpVYY4JHNGVm868oH2l/AJlheULv4jQJpUIA4I56c/ZrbN885/VhYp3cV00FHbUWNnaEmZYcpM6lSD9F0o4mh5IijgiyuweoQ5M4ykIotJxf1umnqjjZKQ5pQeBuO5RduZo1YBHqMzRyQu1yCbdp4r3Z8JQ+z+viJF3dq4Qjh5fCPO0o3CTxAcbU1JZ2F77lw+gyJNR4I+zC6dHgT1RtnVin73ncBie7LWmXTp67cGJuVHxWe42gRKnrQxu7uOBx3CejvMZN2kJ1TI4HMXiMCsioBLjZL9+PMTpmOVA5LcjdLSReajfSYyTA
key fingerprint sha256: 7ee28bc37072fe41c7817d8e26a6ad92a7da93bd30fb797aade967b5dd02b0da
Decrypt it & read the pick
Decryption key (released after the match)
1a687a94abbe88afb62058d97e69c4e95b173f8d960316c34baad7cd0044628e
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("7MGR+rLIbvfjoXka+GqdjeXFGun6Zf1i+nJ84flQYjSnVE3pSju2NpVYY4JHNGVm868oH2l/AJlheULv4jQJpUIA4I56c/ZrbN885/VhYp3cV00FHbUWNnaEmZYcpM6lSD9F0o4mh5IijgiyuweoQ5M4ykIotJxf1umnqjjZKQ5pQeBuO5RduZo1YBHqMzRyQu1yCbdp4r3Z8JQ+z+viJF3dq4Qjh5fCPO0o3CTxAcbU1JZ2F77lw+gyJNR4I+zC6dHgT1RtnVin73ncBie7LWmXTp67cGJuVHxWe42gRKnrQxu7uOBx3CejvMZN2kJ1TI4HMXiMCsioBLjZL9+PMTpmOVA5LcjdLSReajfSYyTA"), c => c.charCodeAt(0));
const key  = Uint8Array.from("1a687a94abbe88afb62058d97e69c4e95b173f8d960316c34baad7cd0044628e".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): 1a687a94abbe88afb62058d97e69c4e95b173f8d960316c34baad7cd0044628e
  • IV / nonce (hex): ecc191fab2c86ef7e3a1791a
  • Ciphertext (hex): f86a9d8de5c51ae9fa65fd62fa727ce1f9506234a7544de94a3bb6369558638247346566f3af281f697f0099617942efe23409a54200e08e7a73f66b6cdf3ce7f561629ddc574d051db51636768499961ca4cea5483f45d28e268792228e08b2bb07a8439338ca4228b49c5fd6e9a7aa38d9290e6941e06e3b945db99a356011ea33347242ed7209b769e2bdd9f0943ecfebe2245dddab84238797c23ced28dc24f101c6d4d4967617bee5c3e83224d47823ecc2e9d1e04f546d9d58a7ef79dc0627bb2d69974e9ebb70626e547c567b8da044a9eb431bbbb8e071dc27a3bcc64dda42754c8e0731788c0ac8a804b8d92fdf8f313a
  • Auth tag (hex): 663950392dc8dd2d245e6a37d26324c0

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