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

Artilheiros vs Hang Sai SC

Primeira Division · Macau · 18 Jul 2026, 13:00 UTC

Final score
4 : 4
Result
Lost
Pick
Artilheiros
Market
1x2
Model prob.
15.7%
Best price
11.33
Min odds
8.53
Stake factor
3.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)
lRn9cY/7l2EkSmk+dTFJrfp9G7CbVfxWwDbaDQ4mh399MqUkvUihSShmDOI5cKJC6ocu7pGIDtb4jeWpFfmMpH0PFuE/OJMrFKdSFSrgucHG0CFUz9L94s4TIHFVz6jnNCRXD4OIcAAwrDDghvYxXWaHBTV7ZVVoHbNMP8dIepssywUmxcLeHbtTEjNTh30W3pYYq3I1LCR852Dp7HqnSiPW3UP9ITL1avxICW6lNSnHr72SAV0QqkbEm8c2MyDpfJRbTFsGgTznkW0jnQX9Dns8pndCVCNbsMLI2RiUXG5v+/MfF154GFGp+1p8zLQ4EAGpb+G1ZY8biPOEUcXh1TweL/O0lnsL1y3p
key fingerprint sha256: ff5e7c24f092590f0ab8ce344830f0a100e8b7278962785105404e624716134c
Decrypt it & read the pick
Decryption key (released after the match)
f48298289ee0356cbcfad1a5fca4d89dde70c84a86c6fea46bed4081b388ed9e
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("lRn9cY/7l2EkSmk+dTFJrfp9G7CbVfxWwDbaDQ4mh399MqUkvUihSShmDOI5cKJC6ocu7pGIDtb4jeWpFfmMpH0PFuE/OJMrFKdSFSrgucHG0CFUz9L94s4TIHFVz6jnNCRXD4OIcAAwrDDghvYxXWaHBTV7ZVVoHbNMP8dIepssywUmxcLeHbtTEjNTh30W3pYYq3I1LCR852Dp7HqnSiPW3UP9ITL1avxICW6lNSnHr72SAV0QqkbEm8c2MyDpfJRbTFsGgTznkW0jnQX9Dns8pndCVCNbsMLI2RiUXG5v+/MfF154GFGp+1p8zLQ4EAGpb+G1ZY8biPOEUcXh1TweL/O0lnsL1y3p"), c => c.charCodeAt(0));
const key  = Uint8Array.from("f48298289ee0356cbcfad1a5fca4d89dde70c84a86c6fea46bed4081b388ed9e".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): f48298289ee0356cbcfad1a5fca4d89dde70c84a86c6fea46bed4081b388ed9e
  • IV / nonce (hex): 9519fd718ffb9761244a693e
  • Ciphertext (hex): 753149adfa7d1bb09b55fc56c036da0d0e26877f7d32a524bd48a14928660ce23970a242ea872eee91880ed6f88de5a915f98ca47d0f16e13f38932b14a752152ae0b9c1c6d02154cfd2fde2ce13207155cfa8e73424570f8388700030ac30e086f6315d668705357b6555681db34c3fc7487a9b2ccb0526c5c2de1dbb53123353877d16de9618ab72352c247ce760e9ec7aa74a23d6dd43fd2132f56afc48096ea53529c7afbd92015d10aa46c49bc7363320e97c945b4c5b06813ce7916d239d05fd0e7b3ca6774254235bb0c2c8d918945c6e6ffbf31f175e781851a9fb5a7cccb4381001a96fe1b5658f1b88f3
  • Auth tag (hex): 8451c5e1d53c1e2ff3b4967b0bd72de9

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