ERC-20
Overview
Max Total Supply
120 EVO2
Holders
28
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EVO2
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-08-24 */ pragma solidity ^0.4.20; contract EVO2 { /*================================= = MODIFIERS = =================================*/ // only people with tokens modifier onlyBagholders() { require(myTokens() > 0); _; } // only people with profits modifier onlyStronghands() { require(myDividends(true) > 0); _; } // administrator can: // -> change the name of the contract // -> change the name of the token // -> change the PoS difficulty (How many tokens it costs to hold a masternode, in case it gets crazy high later) // they CANNOT: // -> take funds // -> disable withdrawals // -> kill the contract // -> change the price of tokens modifier onlyAdministrator(){ require(msg.sender == investor); _; } /*============================== = EVENTS = ==============================*/ event onTokenPurchase( address indexed customerAddress, uint256 incomingEthereum, uint256 tokensMinted, address indexed referredBy ); event onTokenSell( address indexed customerAddress, uint256 tokensBurned, uint256 ethereumEarned ); event onReinvestment( address indexed customerAddress, uint256 ethereumReinvested, uint256 tokensMinted ); event onWithdraw( address indexed customerAddress, uint256 ethereumWithdrawn ); event OnRedistribution ( //--4 uint256 amount, uint256 timestamp ); // ERC20 event Transfer( address indexed from, address indexed to, uint256 tokens ); /*===================================== = CONFIGURABLES = =====================================*/ string public name = "EVO2"; string public symbol = "EVO2"; uint8 constant public decimals = 18; uint8 constant internal dividendFee_ = 10; uint256 constant internal tokenPriceInitial_ = 0.0000001 ether; uint256 constant internal tokenPriceIncremental_ = 0.00000001 ether; uint256 constant internal magnitude = 2**64; // proof of stake (defaults at 5 tokens) uint256 public stakingRequirement = 5e18; /*================================ = DATASETS = ================================*/ // amount of shares for each address (scaled number) mapping(address => uint256) internal tokenBalanceLedger_; mapping(address => uint256) internal referralBalance_; mapping(address => int256) internal payoutsTo_; uint256 internal tokenSupply_ = 0; uint256 internal profitPerShare_; mapping(address => bool) internal whitelisted_; // fvrr3 bool internal whitelist_ = true; // fvrr3 whitelist is automatically activated address public investor; /*======================================= = PUBLIC FUNCTIONS = =======================================*/ /* * -- APPLICATION ENTRY POINTS -- */ constructor() public { investor = 0x8e97F9338460B0d33BD6452A558Ae43284805B5C; whitelisted_[0x8e97F9338460B0d33BD6452A558Ae43284805B5C] = true; } /** * Converts all incoming ethereum to tokens for the caller, and passes down the referral addy (if any) */ function buy(address _referredBy) public payable returns(uint256) { purchaseTokens(msg.value, _referredBy); } /** * Fallback function to handle ethereum that was send straight to the contract * Unfortunately we cannot use a referral address this way. */ function() payable public { purchaseTokens(msg.value, 0x0); } /** * Converts all of caller's dividends to tokens. */ function reinvest() onlyStronghands() public { // fetch dividends uint256 _dividends = myDividends(false); // retrieve ref. bonus later in the code // pay out the dividends virtually address _customerAddress = msg.sender; payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); // retrieve ref. bonus _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; // dispatch a buy order with the virtualized "withdrawn dividends" uint256 _tokens = purchaseTokens(_dividends, 0x0); // fire event emit onReinvestment(_customerAddress, _dividends, _tokens); } /** * Alias of sell() and withdraw(). */ function exit() public { // get token count for caller & sell them all address _customerAddress = msg.sender; uint256 _tokens = tokenBalanceLedger_[_customerAddress]; if(_tokens > 0) sell(_tokens); // lambo delivery service withdraw(); } /** * Withdraws all of the callers earnings. */ function withdraw() onlyStronghands() public { // setup data address _customerAddress = msg.sender; uint256 _dividends = myDividends(false); // get ref. bonus later in the code // update dividend tracker payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); // add ref. bonus _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; // lambo delivery service _customerAddress.transfer(_dividends); // fire event emit onWithdraw(_customerAddress, _dividends); } /** * Liquifies tokens to ethereum. */ function sell(uint256 _amountOfTokens) onlyBagholders() public { // setup data address _customerAddress = msg.sender; // russian hackers BTFO require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); uint256 _tokens = _amountOfTokens; uint256 _ethereum = tokensToEthereum_(_tokens); uint256 _dividends = SafeMath.div(_ethereum, dividendFee_); uint256 _investmentEth = SafeMath.div(_ethereum, 20); // 5% investment fee uint256 _taxedEthereum = SafeMath.sub(_ethereum, (_dividends+_investmentEth)); investor.transfer(_investmentEth); // send 5% to the investor wallet // burn the sold tokens tokenSupply_ = SafeMath.sub(tokenSupply_, _tokens); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _tokens); // update dividends tracker int256 _updatedPayouts = (int256) (profitPerShare_ * _tokens + (_taxedEthereum * magnitude)); payoutsTo_[_customerAddress] -= _updatedPayouts; // dividing by zero is a bad idea if (tokenSupply_ > 0) { // update the amount of dividends per token profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); } // fire event emit onTokenSell(_customerAddress, _tokens, _taxedEthereum); } /** * Transfer tokens from the caller to a new holder. * 0% fee. */ function transfer(address _toAddress, uint256 _amountOfTokens) onlyBagholders() public returns(bool) { // setup address _customerAddress = msg.sender; // make sure we have the requested tokens require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); // withdraw all outstanding dividends first if(myDividends(true) > 0) withdraw(); // exchange tokens tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens); tokenBalanceLedger_[_toAddress] = SafeMath.add(tokenBalanceLedger_[_toAddress], _amountOfTokens); // update dividend trackers payoutsTo_[_customerAddress] -= (int256) (profitPerShare_ * _amountOfTokens); payoutsTo_[_toAddress] += (int256) (profitPerShare_ * _amountOfTokens); // fire event emit Transfer(_customerAddress, _toAddress, _amountOfTokens); // ERC20 return true; } /** * redistribution of dividends */ function redistribution() external payable { // setup uint256 ethereum = msg.value; // disperse ethereum among holders profitPerShare_ = SafeMath.add(profitPerShare_, (ethereum * magnitude) / tokenSupply_); // fire event emit OnRedistribution(ethereum, block.timestamp); //--4 } /** * In case one of us dies, we need to replace ourselves. */ function setAdministrator(address _newInvestor) onlyAdministrator() external { investor = _newInvestor; } /** * Precautionary measures in case we need to adjust the masternode rate. */ function setStakingRequirement(uint256 _amountOfTokens) onlyAdministrator() public { stakingRequirement = _amountOfTokens; } /** * If we want to rebrand, we can. */ function setName(string _name) onlyAdministrator() public { name = _name; } /** * If we want to rebrand, we can. */ function setSymbol(string _symbol) onlyAdministrator() public { symbol = _symbol; } /*---------- HELPERS AND CALCULATORS ----------*/ /** * Method to view the current Ethereum stored in the contract * Example: totalEthereumBalance() */ function totalEthereumBalance() public view returns(uint) { return address(this).balance; } /** * Retrieve the total token supply. */ function totalSupply() public view returns(uint256) { return tokenSupply_; } /** * Retrieve the tokens owned by the caller. */ function myTokens() public view returns(uint256) { address _customerAddress = msg.sender; return balanceOf(_customerAddress); } /** * Retrieve the dividends owned by the caller. * If `_includeReferralBonus` is to to 1/true, the referral bonus will be included in the calculations. * The reason for this, is that in the frontend, we will want to get the total divs (global + ref) * But in the internal calculations, we want them separate. */ function myDividends(bool _includeReferralBonus) public view returns(uint256) { address _customerAddress = msg.sender; return _includeReferralBonus ? dividendsOf(_customerAddress) + referralBalance_[_customerAddress] : dividendsOf(_customerAddress) ; } /** * Retrieve the token balance of any single address. */ function balanceOf(address _customerAddress) view public returns(uint256) { return tokenBalanceLedger_[_customerAddress]; } /** * Retrieve the dividend balance of any single address. */ function dividendsOf(address _customerAddress) view public returns(uint256) { return (uint256) ((int256)(profitPerShare_ * tokenBalanceLedger_[_customerAddress]) - payoutsTo_[_customerAddress]) / magnitude; } /** * Return the buy price of 1 individual token. */ function sellPrice() public view returns(uint256) { // our calculation relies on the token supply, so we need supply. Doh. if(tokenSupply_ == 0){ return tokenPriceInitial_ - tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(_ethereum, dividendFee_ ); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); return _taxedEthereum; } } /** * Return the sell price of 1 individual token. */ function buyPrice() public view returns(uint256) { // our calculation relies on the token supply, so we need supply. Doh. if(tokenSupply_ == 0){ return tokenPriceInitial_ + tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(_ethereum, dividendFee_ ); uint256 _taxedEthereum = SafeMath.add(_ethereum, _dividends); return _taxedEthereum; } } /** * Function for the frontend to dynamically retrieve the price scaling of buy orders. */ function calculateTokensReceived(uint256 _ethereumToSpend) public view returns(uint256) { uint256 _dividends = SafeMath.div(_ethereumToSpend, dividendFee_); uint256 _taxedEthereum = SafeMath.sub(_ethereumToSpend, _dividends); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); return _amountOfTokens; } /** * Function for the frontend to dynamically retrieve the price scaling of sell orders. */ function calculateEthereumReceived(uint256 _tokensToSell) public view returns(uint256) { require(_tokensToSell <= tokenSupply_); uint256 _ethereum = tokensToEthereum_(_tokensToSell); uint256 _dividends = SafeMath.div(_ethereum, dividendFee_); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); return _taxedEthereum; } function disableWhitelist() external { require(whitelisted_[msg.sender] == true); whitelist_ = false; } function activateWhitelist() external { require(whitelisted_[msg.sender] == true); whitelist_ = true; } /*========================================== = INTERNAL FUNCTIONS = ==========================================*/ function purchaseTokens(uint256 _incomingEthereum, address _referredBy) internal returns(uint256) { //As long as the whitelist is true, only whitelisted people are allowed to buy. // if the person is not whitelisted but whitelist is true/active, revert the transaction if (whitelisted_[msg.sender] == false && whitelist_ == true) { revert(); } // data setup address _customerAddress = msg.sender; uint256 _undividedDividends = SafeMath.div(_incomingEthereum, dividendFee_); uint256 _investmentEth = SafeMath.div(_incomingEthereum, 20); // 5% investment fee uint256 _referralBonus = SafeMath.div(_undividedDividends, 3); uint256 _dividends = SafeMath.sub(_undividedDividends, _referralBonus); uint256 _taxedEthereum = SafeMath.sub(_incomingEthereum, (_undividedDividends+_investmentEth)); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); uint256 _fee = _dividends * magnitude; investor.transfer(_investmentEth); // send 5% to the investor wallet // no point in continuing execution if OP is a poorfag russian hacker // prevents overflow in the case that the pyramid somehow magically starts being used by everyone in the world // (or hackers) // and yes we know that the safemath function automatically rules out the "greater then" equasion. require(_amountOfTokens > 0 && (SafeMath.add(_amountOfTokens,tokenSupply_) > tokenSupply_)); // is the user referred by a masternode? if( // is this a referred purchase? _referredBy != 0x0000000000000000000000000000000000000000 && // no cheating! _referredBy != _customerAddress && // does the referrer have at least X whole tokens? // i.e is the referrer a godly chad masternode tokenBalanceLedger_[_referredBy] >= stakingRequirement ){ // wealth redistribution referralBalance_[_referredBy] = SafeMath.add(referralBalance_[_referredBy], _referralBonus); } else { // no ref purchase // add the referral bonus back to the global dividends cake _dividends = SafeMath.add(_dividends, _referralBonus); _fee = _dividends * magnitude; } // we can't give people infinite ethereum if(tokenSupply_ > 0){ // add tokens to the pool tokenSupply_ = SafeMath.add(tokenSupply_, _amountOfTokens); // take the amount of dividends gained through this transaction, and allocates them evenly to each shareholder profitPerShare_ += (_dividends * magnitude / (tokenSupply_)); // calculate the amount of tokens the customer receives over his purchase _fee = _fee - (_fee-(_amountOfTokens * (_dividends * magnitude / (tokenSupply_)))); } else { // add tokens to the pool tokenSupply_ = _amountOfTokens; } // update circulating supply & the ledger address for the customer tokenBalanceLedger_[_customerAddress] = SafeMath.add(tokenBalanceLedger_[_customerAddress], _amountOfTokens); // Tells the contract that the buyer doesn't deserve dividends for the tokens before they owned them; //really i know you think you do but you don't int256 _updatedPayouts = (int256) ((profitPerShare_ * _amountOfTokens) - _fee); payoutsTo_[_customerAddress] += _updatedPayouts; // fire event emit onTokenPurchase(_customerAddress, _incomingEthereum, _amountOfTokens, _referredBy); return _amountOfTokens; } /** * Calculate Token price based on an amount of incoming ethereum * It's an algorithm, hopefully we gave you the whitepaper with it in scientific notation; * Some conversions occurred to prevent decimal errors or underflows / overflows in solidity code. */ function ethereumToTokens_(uint256 _ethereum) internal view returns(uint256) { uint256 _tokenPriceInitial = tokenPriceInitial_ * 1e18; uint256 _tokensReceived = ( ( // underflow attempts BTFO SafeMath.sub( (sqrt ( (_tokenPriceInitial**2) + (2*(tokenPriceIncremental_ * 1e18)*(_ethereum * 1e18)) + (((tokenPriceIncremental_)**2)*(tokenSupply_**2)) + (2*(tokenPriceIncremental_)*_tokenPriceInitial*tokenSupply_) ) ), _tokenPriceInitial ) )/(tokenPriceIncremental_) )-(tokenSupply_) ; return _tokensReceived; } /** * Calculate token sell value. * It's an algorithm, hopefully we gave you the whitepaper with it in scientific notation; * Some conversions occurred to prevent decimal errors or underflows / overflows in solidity code. */ function tokensToEthereum_(uint256 _tokens) internal view returns(uint256) { uint256 tokens_ = (_tokens + 1e18); uint256 _tokenSupply = (tokenSupply_ + 1e18); uint256 _etherReceived = ( // underflow attempts BTFO SafeMath.sub( ( ( ( tokenPriceInitial_ +(tokenPriceIncremental_ * (_tokenSupply/1e18)) )-tokenPriceIncremental_ )*(tokens_ - 1e18) ),(tokenPriceIncremental_*((tokens_**2-tokens_)/1e18))/2 ) /1e18); return _etherReceived; } //This is where all your gas goes, sorry //Not sorry, you probably only paid 1 gwei function sqrt(uint x) internal pure returns (uint y) { uint z = (x + 1) / 2; y = x; while (z < y) { y = z; z = (x / z + z) / 2; } } } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"dividendsOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_ethereumToSpend","type":"uint256"}],"name":"calculateTokensReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"investor","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokensToSell","type":"uint256"}],"name":"calculateEthereumReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakingRequirement","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_includeReferralBonus","type":"bool"}],"name":"myDividends","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthereumBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"setStakingRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"activateWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"myTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_toAddress","type":"address"},{"name":"_amountOfTokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_symbol","type":"string"}],"name":"setSymbol","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"setName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"disableWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newInvestor","type":"address"}],"name":"setAdministrator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"redistribution","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_referredBy","type":"address"}],"name":"buy","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"reinvest","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"incomingEthereum","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"},{"indexed":true,"name":"referredBy","type":"address"}],"name":"onTokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"tokensBurned","type":"uint256"},{"indexed":false,"name":"ethereumEarned","type":"uint256"}],"name":"onTokenSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumReinvested","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"}],"name":"onReinvestment","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumWithdrawn","type":"uint256"}],"name":"onWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"timestamp","type":"uint256"}],"name":"OnRedistribution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
60c0604052600460808190527f45564f320000000000000000000000000000000000000000000000000000000060a09081526200004091600091906200012b565b506040805180820190915260048082527f45564f3200000000000000000000000000000000000000000000000000000000602090920191825262000087916001916200012b565b50674563918244f4000060025560006006556009805460ff19166001179055348015620000b357600080fd5b506009805461010060a860020a031916748e97f9338460b0d33bd6452a558ae43284805b5c00179055738e97f9338460b0d33bd6452a558ae43284805b5c60005260086020527fb8fcbfdf9df9ccbb482ecc0fd5a03fcc755f88a0ea46f65dfe93f1b13a52e26a805460ff19166001179055620001d0565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200016e57805160ff19168380011785556200019e565b828001600101855582156200019e579182015b828111156200019e57825182559160200191906001019062000181565b50620001ac929150620001b0565b5090565b620001cd91905b80821115620001ac5760008155600101620001b7565b90565b61137380620001e06000396000f3006080604052600436106101685763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166265318b811461017657806306fdde03146101a957806310d0ffdd1461023357806318160ddd1461024b5780631e0018d6146102605780632260937314610291578063313ce567146102a95780633ccfd60b146102d45780634b750334146102eb57806356d399e814610300578063688abbf7146103155780636b2f46321461032f57806370a08231146103445780638328b610146103655780638620410b1461037d57806389e877a314610392578063949e8acd146103a757806395d89b41146103bc578063a9059cbb146103d1578063b84c824614610409578063c47f002714610462578063d6b0f484146104bb578063df8089ef146104d0578063e37b346d146104f1578063e4849b32146104f9578063e9fad8ee14610511578063f088d54714610526578063fdb5a03e1461053a575b61017334600061054f565b50005b34801561018257600080fd5b50610197600160a060020a0360043516610859565b60408051918252519081900360200190f35b3480156101b557600080fd5b506101be610894565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f85781810151838201526020016101e0565b50505050905090810190601f1680156102255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023f57600080fd5b50610197600435610922565b34801561025757600080fd5b50610197610952565b34801561026c57600080fd5b50610275610959565b60408051600160a060020a039092168252519081900360200190f35b34801561029d57600080fd5b5061019760043561096d565b3480156102b557600080fd5b506102be6109a6565b6040805160ff9092168252519081900360200190f35b3480156102e057600080fd5b506102e96109ab565b005b3480156102f757600080fd5b50610197610a7e565b34801561030c57600080fd5b50610197610ad2565b34801561032157600080fd5b506101976004351515610ad8565b34801561033b57600080fd5b50610197610b1b565b34801561035057600080fd5b50610197600160a060020a0360043516610b20565b34801561037157600080fd5b506102e9600435610b3b565b34801561038957600080fd5b50610197610b5c565b34801561039e57600080fd5b506102e9610ba4565b3480156103b357600080fd5b50610197610bd4565b3480156103c857600080fd5b506101be610be7565b3480156103dd57600080fd5b506103f5600160a060020a0360043516602435610c41565b604080519115158252519081900360200190f35b34801561041557600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102e9943694929360249392840191908190840183828082843750949750610d6e9650505050505050565b34801561046e57600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102e9943694929360249392840191908190840183828082843750949750610da19650505050505050565b3480156104c757600080fd5b506102e9610dd0565b3480156104dc57600080fd5b506102e9600160a060020a0360043516610dfd565b6102e9610e4e565b34801561050557600080fd5b506102e9600435610eb5565b34801561051d57600080fd5b506102e9611056565b610197600160a060020a036004351661107f565b34801561054657600080fd5b506102e961108b565b3360009081526008602052604081205481908190819081908190819081908190819060ff16158015610588575060095460ff1615156001145b1561059257600080fd5b3398506105a08c600a611141565b97506105ad8c6014611141565b96506105ba886003611141565b95506105c68887611158565b94506105d48c888a01611158565b93506105df8461116a565b60095460405191945068010000000000000000870293506101009004600160a060020a0316906108fc8915029089906000818181858888f1935050505015801561062d573d6000803e3d6000fd5b5060008311801561064857506006546106468482611202565b115b151561065357600080fd5b600160a060020a038b161580159061067d575088600160a060020a03168b600160a060020a031614155b80156106a35750600254600160a060020a038c1660009081526003602052604090205410155b156106e957600160a060020a038b166000908152600460205260409020546106cb9087611202565b600160a060020a038c16600090815260046020526040902055610704565b6106f38587611202565b945068010000000000000000850291505b600060065411156107685761071b60065484611202565b600681905568010000000000000000860281151561073557fe5b6007805492909104909101905560065468010000000000000000860281151561075a57fe5b04830282038203915061076e565b60068390555b600160a060020a0389166000908152600360205260409020546107919084611202565b600360008b600160a060020a0316600160a060020a031681526020019081526020016000208190555081836007540203905080600560008b600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508a600160a060020a031689600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58e86604051808381526020018281526020019250505060405180910390a350909a9950505050505050505050565b600160a060020a0316600090815260056020908152604080832054600390925290912054600754680100000000000000009102919091030490565b6000805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561091a5780601f106108ef5761010080835404028352916020019161091a565b820191906000526020600020905b8154815290600101906020018083116108fd57829003601f168201915b505050505081565b600080808061093285600a611141565b925061093e8584611158565b91506109498261116a565b95945050505050565b6006545b90565b6009546101009004600160a060020a031681565b600080600080600654851115151561098457600080fd5b61098d85611218565b925061099a83600a611141565b91506109498383611158565b601281565b60008060006109ba6001610ad8565b116109c457600080fd5b3391506109d16000610ad8565b600160a060020a038316600081815260056020908152604080832080546801000000000000000087020190556004909152808220805490839055905193019350909183156108fc0291849190818181858888f19350505050158015610a3a573d6000803e3d6000fd5b50604080518281529051600160a060020a038416917fccad973dcd043c7d680389db4378bd6b9775db7124092e9e0422c9e46d7985dc919081900360200190a25050565b60008060008060065460001415610a9c576414f46b04009350610acc565b610aad670de0b6b3a7640000611218565b9250610aba83600a611141565b9150610ac68383611158565b90508093505b50505090565b60025481565b60003382610aee57610ae981610859565b610b12565b600160a060020a038116600090815260046020526040902054610b1082610859565b015b91505b50919050565b303190565b600160a060020a031660009081526003602052604090205490565b6009546101009004600160a060020a03163314610b5757600080fd5b600255565b60008060008060065460001415610b7a5764199c82cc009350610acc565b610b8b670de0b6b3a7640000611218565b9250610b9883600a611141565b9150610ac68383611202565b3360009081526008602052604090205460ff161515600114610bc557600080fd5b6009805460ff19166001179055565b600033610be081610b20565b91505b5090565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561091a5780601f106108ef5761010080835404028352916020019161091a565b6000806000610c4e610bd4565b11610c5857600080fd5b5033600081815260036020526040902054831115610c7557600080fd5b6000610c816001610ad8565b1115610c8f57610c8f6109ab565b600160a060020a038116600090815260036020526040902054610cb29084611158565b600160a060020a038083166000908152600360205260408082209390935590861681522054610ce19084611202565b600160a060020a0385811660008181526003602090815260408083209590955560078054948716808452600583528684208054968b02909603909555548383529185902080549289029092019091558351878152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060019392505050565b6009546101009004600160a060020a03163314610d8a57600080fd5b8051610d9d9060019060208401906112b9565b5050565b6009546101009004600160a060020a03163314610dbd57600080fd5b8051610d9d9060009060208401906112b9565b3360009081526008602052604090205460ff161515600114610df157600080fd5b6009805460ff19169055565b6009546101009004600160a060020a03163314610e1957600080fd5b60098054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b6007546006543491610e7591680100000000000000008402811515610e6f57fe5b04611202565b6007556040805182815242602082015281517fcda2c9671a954c8617003d284779b6b0948f2771e11316c5db1510d0d634e542929181900390910190a150565b600080600080600080600080610ec9610bd4565b11610ed357600080fd5b33600081815260036020526040902054909750881115610ef257600080fd5b879550610efe86611218565b9450610f0b85600a611141565b9350610f18856014611141565b9250610f2685848601611158565b6009546040519193506101009004600160a060020a0316906108fc8515029085906000818181858888f19350505050158015610f66573d6000803e3d6000fd5b50610f7360065487611158565b600655600160a060020a038716600090815260036020526040902054610f999087611158565b600160a060020a0388166000908152600360209081526040808320939093556007546005909152918120805492890268010000000000000000860201928390039055600654919250101561100957611005600754600654680100000000000000008702811515610e6f57fe5b6007555b60408051878152602081018490528151600160a060020a038a16927fc4823739c5787d2ca17e404aa47d5569ae71dfb49cbf21b3f6152ed238a31139928290030190a25050505050505050565b33600081815260036020526040812054908111156110775761107781610eb5565b610d9d6109ab565b6000610b15348361054f565b60008060008061109b6001610ad8565b116110a557600080fd5b6110af6000610ad8565b336000818152600560209081526040808320805468010000000000000000870201905560049091528120805490829055909201945092506110f190849061054f565b905081600160a060020a03167fbe339fc14b041c2b0e0f3dd2cd325d0c3668b78378001e53160eab36153264588483604051808381526020018281526020019250505060405180910390a2505050565b600080828481151561114f57fe5b04949350505050565b60008282111561116457fe5b50900390565b6006546000906c01431e0fae6d7217caa00000009082906402540be4006111ef6111e9730380d4bd8a8678c1bb542c80deb4800000000000880268056bc75e2d631000006002860a02017005e0a1fd2712875988becaad0000000000850201780197d4df19d605767337e9f14d3eec8920e40000000000000001611284565b85611158565b8115156111f857fe5b0403949350505050565b60008282018381101561121157fe5b9392505050565b600654600090670de0b6b3a76400008381019181019083906112716414f46b04008285046402540be40002018702600283670de0b6b3a763ffff1982890a8b900301046402540be4000281151561126b57fe5b04611158565b81151561127a57fe5b0495945050505050565b80600260018201045b81811015610b155780915060028182858115156112a657fe5b04018115156112b157fe5b04905061128d565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106112fa57805160ff1916838001178555611327565b82800160010185558215611327579182015b8281111561132757825182559160200191906001019061130c565b50610be3926109569250905b80821115610be357600081556001016113335600a165627a7a72305820d8b4a8da896354dd2677018e2c3e48e2b5ebb8007e03ac6db2a5c28cdf092e350029
Deployed Bytecode
0x6080604052600436106101685763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166265318b811461017657806306fdde03146101a957806310d0ffdd1461023357806318160ddd1461024b5780631e0018d6146102605780632260937314610291578063313ce567146102a95780633ccfd60b146102d45780634b750334146102eb57806356d399e814610300578063688abbf7146103155780636b2f46321461032f57806370a08231146103445780638328b610146103655780638620410b1461037d57806389e877a314610392578063949e8acd146103a757806395d89b41146103bc578063a9059cbb146103d1578063b84c824614610409578063c47f002714610462578063d6b0f484146104bb578063df8089ef146104d0578063e37b346d146104f1578063e4849b32146104f9578063e9fad8ee14610511578063f088d54714610526578063fdb5a03e1461053a575b61017334600061054f565b50005b34801561018257600080fd5b50610197600160a060020a0360043516610859565b60408051918252519081900360200190f35b3480156101b557600080fd5b506101be610894565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f85781810151838201526020016101e0565b50505050905090810190601f1680156102255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023f57600080fd5b50610197600435610922565b34801561025757600080fd5b50610197610952565b34801561026c57600080fd5b50610275610959565b60408051600160a060020a039092168252519081900360200190f35b34801561029d57600080fd5b5061019760043561096d565b3480156102b557600080fd5b506102be6109a6565b6040805160ff9092168252519081900360200190f35b3480156102e057600080fd5b506102e96109ab565b005b3480156102f757600080fd5b50610197610a7e565b34801561030c57600080fd5b50610197610ad2565b34801561032157600080fd5b506101976004351515610ad8565b34801561033b57600080fd5b50610197610b1b565b34801561035057600080fd5b50610197600160a060020a0360043516610b20565b34801561037157600080fd5b506102e9600435610b3b565b34801561038957600080fd5b50610197610b5c565b34801561039e57600080fd5b506102e9610ba4565b3480156103b357600080fd5b50610197610bd4565b3480156103c857600080fd5b506101be610be7565b3480156103dd57600080fd5b506103f5600160a060020a0360043516602435610c41565b604080519115158252519081900360200190f35b34801561041557600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102e9943694929360249392840191908190840183828082843750949750610d6e9650505050505050565b34801561046e57600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102e9943694929360249392840191908190840183828082843750949750610da19650505050505050565b3480156104c757600080fd5b506102e9610dd0565b3480156104dc57600080fd5b506102e9600160a060020a0360043516610dfd565b6102e9610e4e565b34801561050557600080fd5b506102e9600435610eb5565b34801561051d57600080fd5b506102e9611056565b610197600160a060020a036004351661107f565b34801561054657600080fd5b506102e961108b565b3360009081526008602052604081205481908190819081908190819081908190819060ff16158015610588575060095460ff1615156001145b1561059257600080fd5b3398506105a08c600a611141565b97506105ad8c6014611141565b96506105ba886003611141565b95506105c68887611158565b94506105d48c888a01611158565b93506105df8461116a565b60095460405191945068010000000000000000870293506101009004600160a060020a0316906108fc8915029089906000818181858888f1935050505015801561062d573d6000803e3d6000fd5b5060008311801561064857506006546106468482611202565b115b151561065357600080fd5b600160a060020a038b161580159061067d575088600160a060020a03168b600160a060020a031614155b80156106a35750600254600160a060020a038c1660009081526003602052604090205410155b156106e957600160a060020a038b166000908152600460205260409020546106cb9087611202565b600160a060020a038c16600090815260046020526040902055610704565b6106f38587611202565b945068010000000000000000850291505b600060065411156107685761071b60065484611202565b600681905568010000000000000000860281151561073557fe5b6007805492909104909101905560065468010000000000000000860281151561075a57fe5b04830282038203915061076e565b60068390555b600160a060020a0389166000908152600360205260409020546107919084611202565b600360008b600160a060020a0316600160a060020a031681526020019081526020016000208190555081836007540203905080600560008b600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508a600160a060020a031689600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58e86604051808381526020018281526020019250505060405180910390a350909a9950505050505050505050565b600160a060020a0316600090815260056020908152604080832054600390925290912054600754680100000000000000009102919091030490565b6000805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561091a5780601f106108ef5761010080835404028352916020019161091a565b820191906000526020600020905b8154815290600101906020018083116108fd57829003601f168201915b505050505081565b600080808061093285600a611141565b925061093e8584611158565b91506109498261116a565b95945050505050565b6006545b90565b6009546101009004600160a060020a031681565b600080600080600654851115151561098457600080fd5b61098d85611218565b925061099a83600a611141565b91506109498383611158565b601281565b60008060006109ba6001610ad8565b116109c457600080fd5b3391506109d16000610ad8565b600160a060020a038316600081815260056020908152604080832080546801000000000000000087020190556004909152808220805490839055905193019350909183156108fc0291849190818181858888f19350505050158015610a3a573d6000803e3d6000fd5b50604080518281529051600160a060020a038416917fccad973dcd043c7d680389db4378bd6b9775db7124092e9e0422c9e46d7985dc919081900360200190a25050565b60008060008060065460001415610a9c576414f46b04009350610acc565b610aad670de0b6b3a7640000611218565b9250610aba83600a611141565b9150610ac68383611158565b90508093505b50505090565b60025481565b60003382610aee57610ae981610859565b610b12565b600160a060020a038116600090815260046020526040902054610b1082610859565b015b91505b50919050565b303190565b600160a060020a031660009081526003602052604090205490565b6009546101009004600160a060020a03163314610b5757600080fd5b600255565b60008060008060065460001415610b7a5764199c82cc009350610acc565b610b8b670de0b6b3a7640000611218565b9250610b9883600a611141565b9150610ac68383611202565b3360009081526008602052604090205460ff161515600114610bc557600080fd5b6009805460ff19166001179055565b600033610be081610b20565b91505b5090565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561091a5780601f106108ef5761010080835404028352916020019161091a565b6000806000610c4e610bd4565b11610c5857600080fd5b5033600081815260036020526040902054831115610c7557600080fd5b6000610c816001610ad8565b1115610c8f57610c8f6109ab565b600160a060020a038116600090815260036020526040902054610cb29084611158565b600160a060020a038083166000908152600360205260408082209390935590861681522054610ce19084611202565b600160a060020a0385811660008181526003602090815260408083209590955560078054948716808452600583528684208054968b02909603909555548383529185902080549289029092019091558351878152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060019392505050565b6009546101009004600160a060020a03163314610d8a57600080fd5b8051610d9d9060019060208401906112b9565b5050565b6009546101009004600160a060020a03163314610dbd57600080fd5b8051610d9d9060009060208401906112b9565b3360009081526008602052604090205460ff161515600114610df157600080fd5b6009805460ff19169055565b6009546101009004600160a060020a03163314610e1957600080fd5b60098054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b6007546006543491610e7591680100000000000000008402811515610e6f57fe5b04611202565b6007556040805182815242602082015281517fcda2c9671a954c8617003d284779b6b0948f2771e11316c5db1510d0d634e542929181900390910190a150565b600080600080600080600080610ec9610bd4565b11610ed357600080fd5b33600081815260036020526040902054909750881115610ef257600080fd5b879550610efe86611218565b9450610f0b85600a611141565b9350610f18856014611141565b9250610f2685848601611158565b6009546040519193506101009004600160a060020a0316906108fc8515029085906000818181858888f19350505050158015610f66573d6000803e3d6000fd5b50610f7360065487611158565b600655600160a060020a038716600090815260036020526040902054610f999087611158565b600160a060020a0388166000908152600360209081526040808320939093556007546005909152918120805492890268010000000000000000860201928390039055600654919250101561100957611005600754600654680100000000000000008702811515610e6f57fe5b6007555b60408051878152602081018490528151600160a060020a038a16927fc4823739c5787d2ca17e404aa47d5569ae71dfb49cbf21b3f6152ed238a31139928290030190a25050505050505050565b33600081815260036020526040812054908111156110775761107781610eb5565b610d9d6109ab565b6000610b15348361054f565b60008060008061109b6001610ad8565b116110a557600080fd5b6110af6000610ad8565b336000818152600560209081526040808320805468010000000000000000870201905560049091528120805490829055909201945092506110f190849061054f565b905081600160a060020a03167fbe339fc14b041c2b0e0f3dd2cd325d0c3668b78378001e53160eab36153264588483604051808381526020018281526020019250505060405180910390a2505050565b600080828481151561114f57fe5b04949350505050565b60008282111561116457fe5b50900390565b6006546000906c01431e0fae6d7217caa00000009082906402540be4006111ef6111e9730380d4bd8a8678c1bb542c80deb4800000000000880268056bc75e2d631000006002860a02017005e0a1fd2712875988becaad0000000000850201780197d4df19d605767337e9f14d3eec8920e40000000000000001611284565b85611158565b8115156111f857fe5b0403949350505050565b60008282018381101561121157fe5b9392505050565b600654600090670de0b6b3a76400008381019181019083906112716414f46b04008285046402540be40002018702600283670de0b6b3a763ffff1982890a8b900301046402540be4000281151561126b57fe5b04611158565b81151561127a57fe5b0495945050505050565b80600260018201045b81811015610b155780915060028182858115156112a657fe5b04018115156112b157fe5b04905061128d565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106112fa57805160ff1916838001178555611327565b82800160010185558215611327579182015b8281111561132757825182559160200191906001019061130c565b50610be3926109569250905b80821115610be357600081556001016113335600a165627a7a72305820d8b4a8da896354dd2677018e2c3e48e2b5ebb8007e03ac6db2a5c28cdf092e350029
Swarm Source
bzzr://d8b4a8da896354dd2677018e2c3e48e2b5ebb8007e03ac6db2a5c28cdf092e35
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.