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

PPS vs LPS

Kolmonen - Southern Group · Finland · 07 Aug 2026, 16:45 UTC

Final score
2 : 1
Result
Won
Pick
PPS
Market
1x2
Model prob.
14.3%
Best price
13.39
Min odds
9.66
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)
Q+QQKDVifrtvFiMQgM1ofOK9CZn31SFaDrpnb+d72dbcHmJJuVYxO04ykfZiNzsJL4Rj81FvkZ0BJoPYgj6K8JaHg80M5CwSFyv7DDLYDufBvWxwcnOuy3cRuJ70shlL27A2NJI6j7w1xKS7jHm5VBxoNMnpUKTuLzoz4LYkJxUnZPfh1MTbnRxrLJ8a23dCHawqNxIQNNfvZYjqmZJXPji2OrLAhqzCPBUk4chsWIcWXp58DDI9ziHe+YE6M7Sa9S5InGdKD8bLd0S9rVYcO9jXRMnMRjmH7IyRYwG7/tlIhVJctsspf9QaU1qUD5DOrC1DWzriq2b/5mhPY3ggpw==
key fingerprint sha256: 484e7f7ebf4f2bc5108efa9c9294a9ce291604f6db88d6470ea0785b31ac02d6
Decrypt it & read the pick
Decryption key (released after the match)
7d7c17db7a9882830f0328b45f7982c014eded94a6ee88b4422ea2f851ecb9d3
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("Q+QQKDVifrtvFiMQgM1ofOK9CZn31SFaDrpnb+d72dbcHmJJuVYxO04ykfZiNzsJL4Rj81FvkZ0BJoPYgj6K8JaHg80M5CwSFyv7DDLYDufBvWxwcnOuy3cRuJ70shlL27A2NJI6j7w1xKS7jHm5VBxoNMnpUKTuLzoz4LYkJxUnZPfh1MTbnRxrLJ8a23dCHawqNxIQNNfvZYjqmZJXPji2OrLAhqzCPBUk4chsWIcWXp58DDI9ziHe+YE6M7Sa9S5InGdKD8bLd0S9rVYcO9jXRMnMRjmH7IyRYwG7/tlIhVJctsspf9QaU1qUD5DOrC1DWzriq2b/5mhPY3ggpw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("7d7c17db7a9882830f0328b45f7982c014eded94a6ee88b4422ea2f851ecb9d3".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): 7d7c17db7a9882830f0328b45f7982c014eded94a6ee88b4422ea2f851ecb9d3
  • IV / nonce (hex): 43e4102835627ebb6f162310
  • Ciphertext (hex): 80cd687ce2bd0999f7d5215a0eba676fe77bd9d6dc1e6249b956313b4e3291f662373b092f8463f3516f919d012683d8823e8af0968783cd0ce42c12172bfb0c32d80ee7c1bd6c707273aecb7711b89ef4b2194bdbb03634923a8fbc35c4a4bb8c79b9541c6834c9e950a4ee2f3a33e0b62427152764f7e1d4c4db9d1c6b2c9f1adb77421dac2a37121034d7ef6588ea9992573e38b63ab2c086acc23c1524e1c86c5887165e9e7c0c323dce21def9813a33b49af52e489c674a0fc6cb7744bdad561c3bd8d744c9cc463987ec8c916301bbfed94885525cb6cb297fd41a535a940f90ce
  • Auth tag (hex): ac2d435b3ae2ab66ffe6684f637820a7

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