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

Cruzeiro vs Defensor Sporting

Club Friendlies 3 · World · 04 Jul 2026, 19:00 UTC

Final score
2 : 0
Result
Won
Pick
Cruzeiro
Market
1x2
Model prob.
61.3%
Best price
2.01
Min odds
1.75
Stake factor
2.90

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)
8pInM10jAaLXbTPTQ2F8lqO2GGqFJyjQOFkLGuW3awLsC4N689lDihjFK3hARbtQT4p0FiPU/xsxPxEEMcjEsrwrbBhHgLKpOd5iQ5jV372tAl47JYQTAYsM09HkrYgrxij/rCTeU+zpVn0oogg9qpofP52wNrhPKZPL2OtiHuEBs+tpLdFTz/C1YMiE8z8kGe10k4CTdzk9TSWH9bNhanfdMhdjJ6lbkmo+HPH4R//1bLq7A6TabHbnE9+35Wl994VC2zE+waeZKSdIblrQZJdJofSUAZDmbVXLB18bmgDJFWxiytgrUSZR8WkiG3d+DeLd0VHLUKisgxJwDyaAhLOxnCS2eABH
key fingerprint sha256: 0a91af53750713a18c2cd94ecb617a96620270fa9b4b03e4195fdd0ae100a111
Decrypt it & read the pick
Decryption key (released after the match)
741f4c5b965fd80782315bd17e5d34f0213f31981df2617c14405b49228a411f
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("8pInM10jAaLXbTPTQ2F8lqO2GGqFJyjQOFkLGuW3awLsC4N689lDihjFK3hARbtQT4p0FiPU/xsxPxEEMcjEsrwrbBhHgLKpOd5iQ5jV372tAl47JYQTAYsM09HkrYgrxij/rCTeU+zpVn0oogg9qpofP52wNrhPKZPL2OtiHuEBs+tpLdFTz/C1YMiE8z8kGe10k4CTdzk9TSWH9bNhanfdMhdjJ6lbkmo+HPH4R//1bLq7A6TabHbnE9+35Wl994VC2zE+waeZKSdIblrQZJdJofSUAZDmbVXLB18bmgDJFWxiytgrUSZR8WkiG3d+DeLd0VHLUKisgxJwDyaAhLOxnCS2eABH"), c => c.charCodeAt(0));
const key  = Uint8Array.from("741f4c5b965fd80782315bd17e5d34f0213f31981df2617c14405b49228a411f".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): 741f4c5b965fd80782315bd17e5d34f0213f31981df2617c14405b49228a411f
  • IV / nonce (hex): f29227335d2301a2d76d33d3
  • Ciphertext (hex): 43617c96a3b6186a852728d038590b1ae5b76b02ec0b837af3d9438a18c52b784045bb504f8a741623d4ff1b313f110431c8c4b2bc2b6c184780b2a939de624398d5dfbdad025e3b258413018b0cd3d1e4ad882bc628ffac24de53ece9567d28a2083daa9a1f3f9db036b84f2993cbd8eb621ee101b3eb692dd153cff0b560c884f33f2419ed7493809377393d4d2587f5b3616a77dd32176327a95b926a3e1cf1f847fff56cbabb03a4da6c76e713dfb7e5697df78542db313ec1a7992927486e5ad0649749a1f4940190e66d55cb075f1b9a00c9156c62cad82b512651f169221b777e0de2ddd151cb50a8
  • Auth tag (hex): ac8312700f268084b3b19c24b6780047

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