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

Ponte Preta U20 vs União Suzano U20

Paulista U20 · Brazil · 24 Jul 2026, 18:00 UTC

Final score
2 : 0
Result
Won
Pick
Ponte Preta U20
Market
1x2
Model prob.
64.4%
Best price
1.76
Min odds
1.66
Stake factor
2.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)
vHIl6cnOds8D9CLgS4AQCtC5ybSN7MiRZQCjDbk9jdRfq/sYfhiInzNsyMVANPjief8XdfQZPEYFhYf3AZf2/GFo4dslDNjWtp1t/29uM62SIuEgiptraCEvJNEjem81UpTMhjpKwXAd2nMB0M7+e9rHSkkihSMkH8vePNlNIwjVo985RDxDropo6g2wG2QrQJFW9sclAtihAZc7+AYiBNGjEf+2PGZ/5NzA/ri61utAtim/39ElCChsbMYhPTzQUdVvEPEIseGEF1vFQaBsoFmbsOoM/U0NuXUnmnFNH9gtrxLFjYvCoGAOPsq6ZUGoJbU/mWp+z2E3xOMkGy/Wzsh2dC028UjsC41Wb0B+
key fingerprint sha256: 3b7159f1851c2212daaf024bbab4ad988f77a23b6c476694453470e87b5b328c
Decrypt it & read the pick
Decryption key (released after the match)
2e775248be9443a39cb90f7e7dadb0b974407c68a1125954e143f1d11c5a6492
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("vHIl6cnOds8D9CLgS4AQCtC5ybSN7MiRZQCjDbk9jdRfq/sYfhiInzNsyMVANPjief8XdfQZPEYFhYf3AZf2/GFo4dslDNjWtp1t/29uM62SIuEgiptraCEvJNEjem81UpTMhjpKwXAd2nMB0M7+e9rHSkkihSMkH8vePNlNIwjVo985RDxDropo6g2wG2QrQJFW9sclAtihAZc7+AYiBNGjEf+2PGZ/5NzA/ri61utAtim/39ElCChsbMYhPTzQUdVvEPEIseGEF1vFQaBsoFmbsOoM/U0NuXUnmnFNH9gtrxLFjYvCoGAOPsq6ZUGoJbU/mWp+z2E3xOMkGy/Wzsh2dC028UjsC41Wb0B+"), c => c.charCodeAt(0));
const key  = Uint8Array.from("2e775248be9443a39cb90f7e7dadb0b974407c68a1125954e143f1d11c5a6492".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): 2e775248be9443a39cb90f7e7dadb0b974407c68a1125954e143f1d11c5a6492
  • IV / nonce (hex): bc7225e9c9ce76cf03f422e0
  • Ciphertext (hex): 4b80100ad0b9c9b48decc8916500a30db93d8dd45fabfb187e18889f336cc8c54034f8e279ff1775f4193c46058587f70197f6fc6168e1db250cd8d6b69d6dff6f6e33ad9222e1208a9b6b68212f24d1237a6f355294cc863a4ac1701dda7301d0cefe7bdac74a49228523241fcbde3cd94d2308d5a3df39443c43ae8a68ea0db01b642b409156f6c72502d8a101973bf8062204d1a311ffb63c667fe4dcc0feb8bad6eb40b629bfdfd12508286c6cc6213d3cd051d56f10f108b1e184175bc541a06ca0599bb0ea0cfd4d0db975279a714d1fd82daf12c58d8bc2a0600e3ecaba6541a825b53f996a7ecf6137c4e3241b2f
  • Auth tag (hex): d6cec876742d36f148ec0b8d566f407e

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