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

Galtabäcks BK vs Vastra Frolunda

Division 2 · Sweden · 20 Sept 2026, 13:00 UTC

Final score
2 : 1
Result
Won
Pick
Galtabäcks BK
Market
1X2
CLV vs fair close
-8.74%
Model prob.
36.4%
Best price
3.00
Min odds
2.80
Stake factor
1.50

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)
OMlnSx4GOPLyorLJynMIUrvExayUQ043CZSMgbW4WY3GxfMV1tZJSKrNUppnIa24xjPdmWs1smfadh2JIj30hl/okBleoNlTK1MaAMXh33QyxOIPXeYwgE4jp1wq7+BCT96mieiSv6UH0hejlVV5Y3QHlWn5hvc/fSOniaAEAi93++i+nmkFWxkAnJ+gTGoABoYCRb7Xz82H2qBQFEd9AJeKql5j2BJTYVfsyC0aK7bbZiOTN/oKAbClaspkth8Qgr9o1trJgMjb5LmvtNvTfn3wUBwprpSm2ixFmaUqab6GkRBugpkrGD8eF/sxFF4KpzuHCl/WdTzinRvxgyQldR2X87btMU6zlgAVpek=
key fingerprint sha256: 229a3d3338efeb9832f7f7a421092272ec7adf5ec3c85732add92755f06d3bb8
Decrypt it & read the pick
Decryption key (released after the match)
f7b108490ad9a90c8bd6e18ef291112d04e7acf1c69acee5595eaa3a85f92ce0
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("OMlnSx4GOPLyorLJynMIUrvExayUQ043CZSMgbW4WY3GxfMV1tZJSKrNUppnIa24xjPdmWs1smfadh2JIj30hl/okBleoNlTK1MaAMXh33QyxOIPXeYwgE4jp1wq7+BCT96mieiSv6UH0hejlVV5Y3QHlWn5hvc/fSOniaAEAi93++i+nmkFWxkAnJ+gTGoABoYCRb7Xz82H2qBQFEd9AJeKql5j2BJTYVfsyC0aK7bbZiOTN/oKAbClaspkth8Qgr9o1trJgMjb5LmvtNvTfn3wUBwprpSm2ixFmaUqab6GkRBugpkrGD8eF/sxFF4KpzuHCl/WdTzinRvxgyQldR2X87btMU6zlgAVpek="), c => c.charCodeAt(0));
const key  = Uint8Array.from("f7b108490ad9a90c8bd6e18ef291112d04e7acf1c69acee5595eaa3a85f92ce0".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): f7b108490ad9a90c8bd6e18ef291112d04e7acf1c69acee5595eaa3a85f92ce0
  • IV / nonce (hex): 38c9674b1e0638f2f2a2b2c9
  • Ciphertext (hex): ca730852bbc4c5ac94434e3709948c81b5b8598dc6c5f315d6d64948aacd529a6721adb8c633dd996b35b267da761d89223df4865fe890195ea0d9532b531a00c5e1df7432c4e20f5de630804e23a75c2aefe0424fdea689e892bfa507d217a39555796374079569f986f73f7d23a789a004022f77fbe8be9e69055b19009c9fa04c6a0006860245bed7cfcd87daa05014477d00978aaa5e63d812536157ecc82d1a2bb6db66239337fa0a01b0a56aca64b61f1082bf68d6dac980c8dbe4b9afb4dbd37e7df0501c29ae94a6da2c4599a52a69be8691106e82992b183f1e17fb31145e0aa73b870a5fd6753ce29d1bf183
  • Auth tag (hex): 2425751d97f3b6ed314eb3960015a5e9

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