Draw Proof Details - Draw #503724796
Prove this draw
The cryptographic inputs published before and after this draw deterministically produce the winning numbers. Click below to run the full verification in your own browser - no server round-trip, no trust required, just the maths.
Draw Information
#503724796
Fortune5M
2026-08-31 00:29:38 UTC
2026-08-31 00:29:42 UTC
Winning Numbers
Main Numbers
Bonus Numbers
Cryptographic Proof
Verification Steps:
- Server seed committed before any entries
- Client seeds collected from all entries
- Combined seed used for random generation
- Results can be independently verified
Proof Status:
Run the full verification above to confirm the server seed, combined seed and winning numbers all line up. The buttons inside the technical details below also let you re-check each piece individually.
Technical Information:
Timestamp: 1788161378
Server Seed Commitment: 67ac9492ee6bb95d29f0504b6fc5048f1a9c1d96e69d11256d1d2d4a2847fc3b
Commitment Nonce: 9e46831dc82d6baaa05179beeaa1b69c060697456d72a6c92c28b995116ed307
Merkle Root: 5a07883e6bfc799bf72a146fcbf0af5654454472d22ae07592784b55b49ddb33
Server Seed (revealed): 6adcc6092366bda5709affd80d3a24a18ce5b0d41c136a54eb16759bbef54efe
Combined Seed: 8813aa51949f9bb61bc39d90d30fc6cccb0482425d1e9ae3a68a27f80400c24c
Verification Instructions
- Copy the Server Seed (revealed after draw), Draw ID, Nonce, and other commitment data from below.
-
Verify the Server Seed Commitment by computing:
SHA256("server_seed:" + draw_id + "|" + server_seed + "|" + nonce + "|" + entropy_sources + "|" + version + "|" + commitment_type)
Confirm it equals the Server Seed Commitment hash shown below. - Compute combined_seed = SHA256(server_seed + merkle_root).
-
Generate winning numbers using this exact algorithm:
seed_integer = combined_seed.to_i(16) # Convert hex to integer rng = Random.new(seed_integer) # Ruby's Mersenne Twister PRNG main_numbers = (1..MAIN_COUNT).to_a.sample(PICK_COUNT, random: rng).sort bonus_number = (1..BONUS_COUNT).to_a.sample(1, random: rng).firstGame config for this draw: MAIN_COUNT=40, PICK_COUNT=5, BONUS_COUNT=25 - Confirm the recomputed numbers exactly match the published result numbers.
- To verify your ticket inclusion in the Merkle root: use the Inclusion Proofs section below, copy the Verifier JSON, and verify with the on-page script or a third-party tool.
In-Browser Commitment Verifier
Verify the server seed commitment matches the revealed server seed. No data is sent anywhere; verification runs locally in your browser.
External Verification
leaf: and internal:).
Standard Merkle tree tools will not work directly. You must implement the specific hashing format shown in the proof data above.
Standalone Ruby Verification Script
Copy this script and run it on jdoodle.com/execute-ruby-online (Ruby) to independently verify this draw.