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

Juventud de Bernal vs Defensores Glew

Torneo Promocional Amateur · Argentina · 28 Jul 2026, 16:00 UTC

Final score
0 : 5
Result
Won
Pick
Defensores Glew
Market
1x2
Model prob.
75.7%
Best price
1.44
Min odds
1.40
Stake factor
1.70

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)
8VW8ZOsF0ICY0L3aFjLTWGjdnh2bPWsCJNMZejEyVrv3Tm1fwcRRLKzVYswJddydWkzu3L14A8k3yuu+lFRgXuLtp+tW2tdAqGllU0V/+zG6pfSklrSLuU8iuup72z1QIWR4cN3nj8q8Sc46uDOCCdfZyrGgmO0ekJI2tdLFnzERo+mgaI/DZSUo4hkq9LLzHMhEELyc4n64vEAwVLvyc35tXcPb98JwwbdI0S7T97Pr35T2h4CmdT2RxUoxyQZ9AEoIxSfJLezAp7gXGCc24j0IfmCboD9Ndwo9glZBMFB5V84ctSgqARyblSSQUmLRfb2TWjFmF+sAxqF585pRRTvSsqBfZg8CuP/f3HU=
key fingerprint sha256: 859eea5152500156388c6ab0e31c1ecbb5116f5e5377d9d7e09b172b944a51d5
Decrypt it & read the pick
Decryption key (released after the match)
3e6a615b83382cdf9b1c19a9f9fc2c6297badad4398464b9e19359c310b1976e
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("8VW8ZOsF0ICY0L3aFjLTWGjdnh2bPWsCJNMZejEyVrv3Tm1fwcRRLKzVYswJddydWkzu3L14A8k3yuu+lFRgXuLtp+tW2tdAqGllU0V/+zG6pfSklrSLuU8iuup72z1QIWR4cN3nj8q8Sc46uDOCCdfZyrGgmO0ekJI2tdLFnzERo+mgaI/DZSUo4hkq9LLzHMhEELyc4n64vEAwVLvyc35tXcPb98JwwbdI0S7T97Pr35T2h4CmdT2RxUoxyQZ9AEoIxSfJLezAp7gXGCc24j0IfmCboD9Ndwo9glZBMFB5V84ctSgqARyblSSQUmLRfb2TWjFmF+sAxqF585pRRTvSsqBfZg8CuP/f3HU="), c => c.charCodeAt(0));
const key  = Uint8Array.from("3e6a615b83382cdf9b1c19a9f9fc2c6297badad4398464b9e19359c310b1976e".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): 3e6a615b83382cdf9b1c19a9f9fc2c6297badad4398464b9e19359c310b1976e
  • IV / nonce (hex): f155bc64eb05d08098d0bdda
  • Ciphertext (hex): 1632d35868dd9e1d9b3d6b0224d3197a313256bbf74e6d5fc1c4512cacd562cc0975dc9d5a4ceedcbd7803c937caebbe9454605ee2eda7eb56dad740a8696553457ffb31baa5f4a496b48bb94f22baea7bdb3d5021647870dde78fcabc49ce3ab8338209d7d9cab1a098ed1e909236b5d2c59f3111a3e9a0688fc3652528e2192af4b2f31cc84410bc9ce27eb8bc403054bbf2737e6d5dc3dbf7c270c1b748d12ed3f7b3ebdf94f68780a6753d91c54a31c9067d004a08c527c92decc0a7b817182736e23d087e609ba03f4d770a3d82564130507957ce1cb5282a011c9b9524905262d17dbd935a316617eb00c6a179f3
  • Auth tag (hex): 9a51453bd2b2a05f660f02b8ffdfdc75

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