This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "30 Days": "30 jours", | |
| "60 Days": "60 jours", | |
| "90 Days": "90 jours", | |
| ":amount Total": ":amount Total", | |
| ":days day trial": ":days jours d'essai", | |
| ":resource Details": "Détails :resource", | |
| ":resource Details: :title": " Détails :resource :title :", | |
| "A fresh verification link has been sent to your email address.": "Un nouveau lien de vérification a été envoyé à votre adresse e-mail.", | |
| "A new verification link has been sent to the email address you provided during registration.": "Un nouveau lien de vérification a été envoyé à l'adresse e-mail que vous avez indiquée lors de votre inscription.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| background: linear-gradient(42deg, #8e0489, #042b8e); | |
| background-size: 400% 400%; | |
| -webkit-animation: PrimeColor 10s ease infinite; | |
| -moz-animation: PrimeColor 10s ease infinite; | |
| -o-animation: PrimeColor 10s ease infinite; | |
| animation: PrimeColor 10s ease infinite; | |
| @-webkit-keyframes PrimeColor { | |
| 0%{background-position:56% 0%} | |
| 50%{background-position:45% 100%} | |
| 100%{background-position:56% 0%} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var netHash = 126428245166274; | |
| var dificult = 2025026488477250 | |
| var dificult24 = 1987044737794760, | |
| netHash = (netHash/dificult) * dificult24; | |
| var hashPower = (10.8 * 1e6) / netHash | |
| var blockTime = 16.0172; | |
| var blockReward = 2.91; | |
| var blocksPerMin = 60.0 / blockTime | |
| var coinPermine = blocksPerMin * blockReward; | |
| var ganho = hashPower * coinPermine |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).on("mouseover", ".rotate", function() { | |
| var a = $(this), | |
| b = $(this).attr("src"), | |
| c = b.substr(0, b.length - 5); | |
| StartImageRotate(a, c, ".png"), $(this).mouseout(function() { | |
| a.attr("src", b), stopImageRotate() | |
| }) | |
| }); | |