Slots verify


Input


Output


Results

Final Result
Left Middle Right Ghost Blank
{{ num[0] }}
[{{ num[1].join(',') }})
{{ lucky }}
Roulette Result
Lucky Algorithm
        function getLucky(serverSeed, clientSeed, nonce) {
          var hash = hmac_sha512(client_seed + ":" +nonce, server_seed);
          var index = 0;
          do {
            var lucky = parseInt(hash.substr(index, 5), 16);
            index += 5;
          } while (lucky >= 1e6);
          return lucky;
        }
      
Layer Data
Layer Left Middle Right Ghost Blank
{{ formatLayerString(item[0]) }} {{ item[1] }} {{ item[2] }} {{ item[3] }} {{ item[4] }} {{ item[5] }}