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

Servette vs Stade Lausanne-Ouchy

Club Friendlies 3 · World · 08 Jul 2026, 09:00 UTC

Final score
2 : 0
Result
Won
Pick
Servette
Market
1x2
Model prob.
54.1%
Best price
2.09
Min odds
1.99
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)
nm+EV2m5LRHqBwC/lYGXnQxJJu5Php1MZCcQ60/SUBmQ2WHXb1qftWiDPNimmRNQ+XPIiUSC3Nbz6K3MYRZrYMwTKxGg5gxwmEMOsrrUE4c6ltQ8SauPnfnZ8gcbFXepXXAIGr93LVujlY9b5pgXcSRbYFkieIZlQz6T84A+VE357LsSuHdzVXMawPvqlDxyd2x96gT49Zgkhi1oLc3ID4XU53mt9ZWQhomAalETbpU7I4EmmWzLlTvRhmm1zbR6zY9XaXFWQFUQi1rE0/8l4mIAaV1BzTixcJzOhmApc4V0ns2IVCdkgfIcnBXj7V72Yjz5e/ZWcplgruZrXuAPA0upa6ARk5k=
key fingerprint sha256: 6d6f0eaa982476f929a74c1a4c9f63fd99b71509a9d1220cbd53488439c76ad7
Decrypt it & read the pick
Decryption key (released after the match)
ea174148db676b53ca0585f027f242d9dace6a96877a0669fce60045dbca0594
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("nm+EV2m5LRHqBwC/lYGXnQxJJu5Php1MZCcQ60/SUBmQ2WHXb1qftWiDPNimmRNQ+XPIiUSC3Nbz6K3MYRZrYMwTKxGg5gxwmEMOsrrUE4c6ltQ8SauPnfnZ8gcbFXepXXAIGr93LVujlY9b5pgXcSRbYFkieIZlQz6T84A+VE357LsSuHdzVXMawPvqlDxyd2x96gT49Zgkhi1oLc3ID4XU53mt9ZWQhomAalETbpU7I4EmmWzLlTvRhmm1zbR6zY9XaXFWQFUQi1rE0/8l4mIAaV1BzTixcJzOhmApc4V0ns2IVCdkgfIcnBXj7V72Yjz5e/ZWcplgruZrXuAPA0upa6ARk5k="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ea174148db676b53ca0585f027f242d9dace6a96877a0669fce60045dbca0594".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): ea174148db676b53ca0585f027f242d9dace6a96877a0669fce60045dbca0594
  • IV / nonce (hex): 9e6f845769b92d11ea0700bf
  • Ciphertext (hex): 9581979d0c4926ee4f869d4c642710eb4fd2501990d961d76f5a9fb568833cd8a6991350f973c8894482dcd6f3e8adcc61166b60cc132b11a0e60c7098430eb2bad413873a96d43c49ab8f9df9d9f2071b1577a95d70081abf772d5ba3958f5be6981771245b605922788665433e93f3803e544df9ecbb12b8777355731ac0fbea943c72776c7dea04f8f59824862d682dcdc80f85d4e779adf595908689806a51136e953b238126996ccb953bd18669b5cdb47acd8f576971564055108b5ac4d3ff25e26200695d41cd38b1709cce8660297385749ecd8854276481f21c9c15e3ed5ef6623cf97bf65672
  • Auth tag (hex): 9960aee66b5ee00f034ba96ba0119399

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