ETH Price: $3,429.02 (-7.09%)

Token

FART (FART)
 

Overview

Max Total Supply

29,737,961,597.722298193512985524 FART

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
50 FART

Value
$0.00
0x94b66369eec9423011739570f54acabbec4343dd
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FART

Compiler Version
v0.4.21+commit.dfe3193c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-05-05
*/

pragma solidity ^0.4.21;

/*
* ====================================*
*  _____   ____    ____   _______     *
* |  ___| / __ \  |    \ |__   __|    * 
* | |___ | |__| | |    /    | |       *
* |  ___||  __  | | |\ \    | |       *
* | |    | |  | | | | \ \   | |       *
* |_|    |_|  |_| |_|  \_\  |_|       *
* ====================================*
* 
* Freedom Around Revolutionary Technology
*
* Changing the humanitarian world while having fun!
*
* This source code is THE contract the crypto-community 
* deserves. It was cloned from POOH and perfected by the genius mind of 
* Kenneth Pacheco using ideas from the proof crypto-community.
*
*  
*    Auditors:
*   
*   Etherguy -------- 5/4/18
*   Sensei Kevlar --- 5/4/18
*   Sixophrenia ----- 5/4/18
*   ccashwell ------- 5/4/18
*   
*   
*   
* 
*/

contract FART {
    /*=================================
    =            MODIFIERS            =
    =================================*/
    // only people with tokens
    modifier onlyTokenHolders() {
        require(myTokens() > 0);
        _;
    }
    
    // only non-founders
    modifier onlyNonFounders() {
        require(!foundingFARTers_[msg.sender]);
        _;
    }
    
    // only people with profits
    modifier onlyStronghands() {
        require(myDividends(true) > 0);
        _;
    }
    
    // ensures that the contract is only open to the public when the founders are ready for it to be
    modifier areWeLive(uint256 _amountOfEthereum){
        address _customerAddress = msg.sender;
        
        // are we open to the public?
        if( onlyFounders && ((totalEthereumBalance() - _amountOfEthereum) <= preLiveTeamFoundersMaxPurchase_ )){
            require(
                // is the customer in the ambassador list?
                foundingFARTers_[_customerAddress] == true &&
                
                // does the customer purchase exceed the max quota needed to send contract live?
                (contractQuotaToGoLive_[_customerAddress] + _amountOfEthereum) <= preLiveIndividualFoundersMaxPurchase_
                
            );
            
            // update the accumulated quota    
            contractQuotaToGoLive_[_customerAddress] = SafeMath.add(contractQuotaToGoLive_[_customerAddress], _amountOfEthereum);
        
            // execute
            _;
        } else {
            // in case the ether count drops low, the ambassador phase won't reinitiate
            onlyFounders = false;
            _;    
        }
        
    }
    
    
    /*==============================
    =            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 Transfer(
        address indexed from,
        address indexed to,
        uint256 tokens
    );
    
    
    /*=====================================
    =            CONFIGURABLES            =
    =====================================*/
    string public name = "FART";
    string public symbol = "FART";
    uint8 constant public decimals = 18;
    uint8 constant internal dividendFee_ = 7; // roughly 15% = (5% to charity + 10% divs)
    uint256 constant internal tokenPriceInitial_ = 0.0000001 ether;
    uint256 constant internal tokenPriceIncremental_ = 0.00000001 ether;
    uint256 constant internal magnitude = 2**64;
    
    // Referral link requirement (20 tokens instead of 5 bacause this game is mainly for charity)
    uint256 public referralLinkMinimum = 20e18; 
    
    // founders program (Founders initially put in 1 ETH and can add more later when contract is live)
    mapping(address => bool) internal foundingFARTers_;
    uint256 constant internal preLiveIndividualFoundersMaxPurchase_ = 2 ether; // 2 ETH max for me so I can make sure to break the 1 ETH threshold.
    uint256 constant internal preLiveTeamFoundersMaxPurchase_ = 1 ether; // 1 ETH threshold to go live
    
    
    
   /*================================
    =            DATASETS            =
    ================================*/
    // amount of shares for each address (scaled number)
    mapping(address => uint256) internal tokenBalanceLedger_;
    mapping(address => uint256) internal referralBalance_;
    mapping(address => int256) internal payoutsTo_;
    mapping(address => uint256) internal contractQuotaToGoLive_;
    uint256 internal tokenSupply_ = 0;
    uint256 internal profitPerShare_;
    
    // administrator list (see above on what they can do)
    mapping(bytes32 => bool) public administrators;
    
    // when this is set to true, only founders can purchase tokens (this prevents an errored contract from being live to the public)
    bool public onlyFounders = true;
    


    /*=======================================
    =            PUBLIC FUNCTIONS            =
    =======================================*/
    /*
    * -- APPLICATION ENTRY POINTS --  
    */
    function FART()
        public
    {
        
        //No admin! True trust-less contracts don't have the ability to be alteredd! ('This is HUUUUUUUUUUGE!' - Donald Trump)
        
        
        // add the founders here. Founders cannot sell or transfer FART tokens, 
        // thereby making the token increase in value over time
        foundingFARTers_[0x7e474fe5Cfb720804860215f407111183cbc2f85] = true; //Kenneth Pacheco    - https://www.linkedin.com/in/kennethpacheco/
    }
    
     
    /**
     * Converts all incoming ethereum to tokens for the caller, and passes down the referral addy (if any)
     */
    function buy(address _referredBy, address _charity)
        public
        payable
        returns(uint256)
    {
        purchaseTokens(msg.value, _referredBy, _charity);
    }
    
    /**
     * Fallback function to handle ethereum that was sent straight to the contract
     */
    function()
        payable
        public
    {
        purchaseTokens(msg.value, 0x0, 0x0);
    }
    
    /**
     * Converts all of caller's dividends to tokens.
     */
    function reinvest()
        onlyStronghands()//  <------Hey! We know this term!
        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, 0x0);
        
        // fire event
        emit onReinvestment(_customerAddress, _dividends, _tokens);
    }
    
    /**
     * Alias of sell() and withdraw().
     */
    function eject()
        public
    {
        // get token count for caller & sell them all
        address _customerAddress = msg.sender;
        uint256 _tokens = tokenBalanceLedger_[_customerAddress];
        if(_tokens > 0) sell(_tokens, 0x0);
        
        // get out now
        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, address _charity)
        onlyTokenHolders() //Can't sell what you don't have
        onlyNonFounders() //Founders can't sell tokens
        public {
            // setup data
            address _customerAddress = msg.sender;
            require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]);
            uint256 _tokens = _amountOfTokens;
            uint256 _ethereum = tokensToEthereum_(_tokens);
            uint256 _dividends = SafeMath.div(_ethereum, dividendFee_);
            uint256 _charityDividends = 0;
            uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends);
            
            if(_charity != 0x0000000000000000000000000000000000000000 && _charity != _customerAddress)//if not, it's an eject-call with no charity address
            {     _charityDividends = SafeMath.div(_dividends, 3); // 1/3 of divs go to charity (5%)
                 _dividends = SafeMath.sub(_dividends, _charityDividends); // 2/3 of divs go to everyone (10%)
            }
           
            // 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);
            if(_charityDividends > 0) {
                //fire event to send to charity
                _charity.transfer(_charityDividends);
            }
        }
    
    
    /**
     * Transfer tokens from the caller to a new holder.
     * No fee to transfer because I hate doing math.
     */
    function transfer(address _toAddress, uint256 _amountOfTokens)
        onlyTokenHolders() // Can't tranfer what you don't have
        onlyNonFounders() // Founders cannot transfer their tokens to be able to sell them
        public
        returns(bool) {
        
            // setup
            address _customerAddress = msg.sender;
            
            // make sure we have the requested tokens
            // also disables transfers until ambassador phase is over
            // ( we dont want whale premines )
            require(!onlyFounders && _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);
            
            // fire event
            emit Transfer(_customerAddress, _toAddress, _amountOfTokens);
            
            // ERC20
            return true;
           
        }
    
    /*----------  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;
    }
    
    
    /*==========================================
    =            INTERNAL FUNCTIONS            =
    ==========================================*/
     function purchaseTokens(uint256 _incomingEthereum, address _referredBy, address _charity)
        areWeLive(_incomingEthereum)
        internal
        returns(uint256) {
        // data setup
       
        uint256 _undividedDividends = SafeMath.div(_incomingEthereum, dividendFee_);
        uint256 _referralBonus = SafeMath.div(_undividedDividends, 3);
        uint256 _dividends = SafeMath.sub(SafeMath.sub(_undividedDividends, _referralBonus), _referralBonus);  //subrtacting referral bonus and charity divs
        uint256 _amountOfTokens = ethereumToTokens_(SafeMath.sub(_incomingEthereum, _undividedDividends));
        uint256 _fee = _dividends * magnitude;
        bool charity = false;
 
        // 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 != msg.sender &&
            
            // does the referrer have at least X whole tokens?
            // i.e is the referrer a godly chad masternode
            tokenBalanceLedger_[_referredBy] >= referralLinkMinimum
        ){
            // 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, SafeMath.div(_undividedDividends, 3));
            _fee = _dividends * magnitude;
        }
        
        //Let's check for foul play with the charity address
        if(
            // is this a referred purchase?
            _charity != 0x0000000000000000000000000000000000000000 &&

            // no cheating!
            _charity != msg.sender 
        ){
            // charity redistribution
            charity = true;
          
            
            
        } else {
            // no ref purchase
            // add the referral bonus back to the global dividends
            _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_[msg.sender] = SafeMath.add(tokenBalanceLedger_[msg.sender], _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_[msg.sender] += _updatedPayouts;
        
        
        // fire event
        emit onTokenPurchase(msg.sender, _incomingEthereum, _amountOfTokens, _referredBy);
        if(charity) {
         // fire event to send charity proceeds
        _charity.transfer(_referralBonus);
        }
        
        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;
        
        // If you have read all the way to here, thank you.  You are one of the good players that does their OWN resarch! Way to go!
    }
}

Contract Security Audit

Contract ABI

[{"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":"_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":true,"inputs":[{"name":"","type":"bytes32"}],"name":"administrators","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"},{"name":"_charity","type":"address"}],"name":"sell","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":"_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":"eject","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"onlyFounders","outputs":[{"name":"","type":"bool"}],"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":"_referredBy","type":"address"},{"name":"_charity","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"},{"constant":true,"inputs":[],"name":"referralLinkMinimum","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"}]

606060405260408051908101604052600481527f4641525400000000000000000000000000000000000000000000000000000000602082015260009080516200004d92916020019062000112565b5060408051908101604052600481527f4641525400000000000000000000000000000000000000000000000000000000602082015260019080516200009792916020019062000112565b506801158e460913d000006002556000600855600b805460ff191660011790553415620000c357600080fd5b737e474fe5cfb720804860215f407111183cbc2f8560005260036020527fffe04858ad6a0c6ee82c408cd5d73791e4a0254108d1f3391b76383c9807acff805460ff19166001179055620001b7565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200015557805160ff191683800117855562000185565b8280016001018555821562000185579182015b828111156200018557825182559160200191906001019062000168565b506200019392915062000197565b5090565b620001b491905b808211156200019357600081556001016200019e565b90565b61144180620001c76000396000f3006060604052600436106101265763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166265318b811461013557806306fdde031461016657806310d0ffdd146101f057806318160ddd146102065780632260937314610219578063313ce5671461022f578063392efb52146102585780633ccfd60b146102825780634189a68e146102975780634b750334146102b9578063688abbf7146102cc5780636b2f4632146102e457806370a08231146102f757806382e94ac5146103165780638620410b14610329578063949e8acd1461033c57806395d89b411461034f578063a6aa7f7a14610362578063a9059cbb14610375578063ad7fadc514610397578063fdb5a03e146103b1578063fdd245ee146103c4575b610132346000806103d7565b50005b341561014057600080fd5b610154600160a060020a0360043516610a9a565b60405190815260200160405180910390f35b341561017157600080fd5b610179610ad0565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101b557808201518382015260200161019d565b50505050905090810190601f1680156101e25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101fb57600080fd5b610154600435610b6e565b341561021157600080fd5b610154610b9e565b341561022457600080fd5b610154600435610ba4565b341561023a57600080fd5b610242610bdd565b60405160ff909116815260200160405180910390f35b341561026357600080fd5b61026e600435610be2565b604051901515815260200160405180910390f35b341561028d57600080fd5b610295610bf7565b005b34156102a257600080fd5b610295600435600160a060020a0360243516610cbe565b34156102c457600080fd5b610154610ec7565b34156102d757600080fd5b6101546004351515610f1b565b34156102ef57600080fd5b610154610f5e565b341561030257600080fd5b610154600160a060020a0360043516610f6c565b341561032157600080fd5b610295610f87565b341561033457600080fd5b610154610fc0565b341561034757600080fd5b610154611008565b341561035a57600080fd5b61017961101a565b341561036d57600080fd5b61026e611085565b341561038057600080fd5b61026e600160a060020a036004351660243561108e565b610154600160a060020a03600435811690602435166111d3565b34156103bc57600080fd5b6102956111e0565b34156103cf57600080fd5b610154611297565b6000806000806000806000808a6000339050600b60009054906101000a900460ff1680156104165750670de0b6b3a764000082610412610f5e565b0311155b156107a657600160a060020a03811660009081526003602052604090205460ff161515600114801561046b5750600160a060020a038116600090815260076020526040902054671bc16d674ec8000090830111155b151561047657600080fd5b600160a060020a038116600090815260076020526040902054610499908361129d565b600160a060020a0382166000908152600760208190526040909120919091556104c3908e906112b3565b98506104d08960036112b3565b97506104e56104df8a8a6112ca565b896112ca565b96506104f96104f48e8b6112ca565b6112dc565b9550604060020a87029450600093506000861180156105225750600854610520878261129d565b115b151561052d57600080fd5b600160a060020a038c1615801590610557575033600160a060020a03168c600160a060020a031614155b801561057d5750600254600160a060020a038d1660009081526004602052604090205410155b156105c357600160a060020a038c166000908152600560205260409020546105a5908961129d565b600160a060020a038d166000908152600560205260409020556105e3565b6105d7876105d28b60036112b3565b61129d565b9650604060020a870294505b600160a060020a038b161580159061060d575033600160a060020a03168b600160a060020a031614155b1561061b5760019350610631565b610625878961129d565b9650604060020a870294505b6000600854111561068b576106486008548761129d565b6008819055604060020a880281151561065d57fe5b60098054929091049091019055600854604060020a880281151561067d57fe5b048602850385039450610691565b60088690555b600160a060020a0333166000908152600460205260409020546106b4908761129d565b6004600033600160a060020a0316600160a060020a0316815260200190815260200160002081905550848660095402039250826006600033600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508b600160a060020a031633600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f8960405191825260208201526040908101905180910390a3831561079e57600160a060020a038b1688156108fc0289604051600060405180830381858888f19350505050151561079e57600080fd5b859950610a8a565b600b805460ff191690556107bb8d60076112b3565b98506107c88960036112b3565b97506107d76104df8a8a6112ca565b96506107e66104f48e8b6112ca565b9550604060020a870294506000935060008611801561080f575060085461080d878261129d565b115b151561081a57600080fd5b600160a060020a038c1615801590610844575033600160a060020a03168c600160a060020a031614155b801561086a5750600254600160a060020a038d1660009081526004602052604090205410155b156108b057600160a060020a038c16600090815260056020526040902054610892908961129d565b600160a060020a038d166000908152600560205260409020556108cb565b6108bf876105d28b60036112b3565b9650604060020a870294505b600160a060020a038b16158015906108f5575033600160a060020a03168b600160a060020a031614155b156109035760019350610919565b61090d878961129d565b9650604060020a870294505b60006008541115610973576109306008548761129d565b6008819055604060020a880281151561094557fe5b60098054929091049091019055600854604060020a880281151561096557fe5b048602850385039450610979565b60088690555b600160a060020a03331660009081526004602052604090205461099c908761129d565b6004600033600160a060020a0316600160a060020a0316815260200190815260200160002081905550848660095402039250826006600033600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508b600160a060020a031633600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f8960405191825260208201526040908101905180910390a38315610a8657600160a060020a038b1688156108fc0289604051600060405180830381858888f193505050501515610a8657600080fd5b8599505b5050505050505050509392505050565b600160a060020a0316600090815260066020908152604080832054600490925290912054600954604060020a9102919091030490565b60008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b505050505081565b6000808080610b7e8560076112b3565b9250610b8a85846112ca565b9150610b95826112dc565b95945050505050565b60085490565b6000806000806008548511151515610bbb57600080fd5b610bc485611374565b9250610bd18360076112b3565b9150610b9583836112ca565b601281565b600a6020526000908152604090205460ff1681565b6000806000610c066001610f1b565b11610c1057600080fd5b339150610c1d6000610f1b565b600160a060020a03831660008181526006602090815260408083208054604060020a870201905560059091528082208054929055920192509082156108fc0290839051600060405180830381858888f193505050501515610c7d57600080fd5b81600160a060020a03167fccad973dcd043c7d680389db4378bd6b9775db7124092e9e0422c9e46d7985dc8260405190815260200160405180910390a25050565b600080600080600080600080610cd2611008565b11610cdc57600080fd5b600160a060020a03331660009081526003602052604090205460ff1615610d0257600080fd5b33600160a060020a038116600090815260046020526040902054909750891115610d2b57600080fd5b889550610d3786611374565b9450610d448560076112b3565b935060009250610d5485856112ca565b9150600160a060020a03881615801590610d80575086600160a060020a031688600160a060020a031614155b15610d9f57610d908460036112b3565b9250610d9c84846112ca565b93505b610dab600854876112ca565b600855600160a060020a038716600090815260046020526040902054610dd190876112ca565b600160a060020a03881660009081526004602090815260408083209390935560095460069091529181208054928902604060020a860201928390039055600854919250901115610e3e57610e3a600954600854604060020a8702811515610e3457fe5b0461129d565b6009555b86600160a060020a03167fc4823739c5787d2ca17e404aa47d5569ae71dfb49cbf21b3f6152ed238a31139878460405191825260208201526040908101905180910390a26000831115610ebc57600160a060020a03881683156108fc0284604051600060405180830381858888f193505050501515610ebc57600080fd5b505050505050505050565b60008060008060085460001415610ee5576414f46b04009350610f15565b610ef6670de0b6b3a7640000611374565b9250610f038360076112b3565b9150610f0f83836112ca565b90508093505b50505090565b60003382610f3157610f2c81610a9a565b610f55565b600160a060020a038116600090815260056020526040902054610f5382610a9a565b015b91505b50919050565b600160a060020a0330163190565b600160a060020a031660009081526004602052604090205490565b33600160a060020a03811660009081526004602052604081205490811115610fb457610fb4816000610cbe565b610fbc610bf7565b5050565b60008060008060085460001415610fde5764199c82cc009350610f15565b610fef670de0b6b3a7640000611374565b9250610ffc8360076112b3565b9150610f0f838361129d565b60003361101481610f6c565b91505090565b60018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b665780601f10610b3b57610100808354040283529160200191610b66565b600b5460ff1681565b600080600061109b611008565b116110a557600080fd5b600160a060020a03331660009081526003602052604090205460ff16156110cb57600080fd5b50600b54339060ff161580156110f95750600160a060020a0381166000908152600460205260409020548311155b151561110457600080fd5b60006111106001610f1b565b111561111e5761111e610bf7565b600160a060020a03811660009081526004602052604090205461114190846112ca565b600160a060020a038083166000908152600460205260408082209390935590861681522054611170908461129d565b600160a060020a03808616600081815260046020526040908190209390935591908316907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b5092915050565b60006111cc3484846103d7565b6000806000806111f06001610f1b565b116111fa57600080fd5b6112046000610f1b565b33600160a060020a03811660009081526006602090815260408083208054604060020a8702019055600590915281208054908290559092019450925061124c908490806103d7565b905081600160a060020a03167fbe339fc14b041c2b0e0f3dd2cd325d0c3668b78378001e53160eab3615326458848360405191825260208201526040908101905180910390a2505050565b60025481565b6000828201838110156112ac57fe5b9392505050565b60008082848115156112c157fe5b04949350505050565b6000828211156112d657fe5b50900390565b6008546000906c01431e0fae6d7217caa00000009082906402540be40061136161135b730380d4bd8a8678c1bb542c80deb4800000000000880268056bc75e2d631000006002860a02017005e0a1fd2712875988becaad0000000000850201780197d4df19d605767337e9f14d3eec8920e400000000000000016113e0565b856112ca565b81151561136a57fe5b0403949350505050565b600854600090670de0b6b3a76400008381019181019083906113cd6414f46b04008285046402540be40002018702600283670de0b6b3a763ffff1982890a8b900301046402540be400028115156113c757fe5b046112ca565b8115156113d657fe5b0495945050505050565b80600260018201045b81811015610f5857809150600281828581151561140257fe5b040181151561140d57fe5b0490506113e95600a165627a7a7230582068fb94518f9fce8e374fa33e057b42c7f033797f6b13f2375400b2ccbe984cbc0029

Deployed Bytecode

0x6060604052600436106101265763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166265318b811461013557806306fdde031461016657806310d0ffdd146101f057806318160ddd146102065780632260937314610219578063313ce5671461022f578063392efb52146102585780633ccfd60b146102825780634189a68e146102975780634b750334146102b9578063688abbf7146102cc5780636b2f4632146102e457806370a08231146102f757806382e94ac5146103165780638620410b14610329578063949e8acd1461033c57806395d89b411461034f578063a6aa7f7a14610362578063a9059cbb14610375578063ad7fadc514610397578063fdb5a03e146103b1578063fdd245ee146103c4575b610132346000806103d7565b50005b341561014057600080fd5b610154600160a060020a0360043516610a9a565b60405190815260200160405180910390f35b341561017157600080fd5b610179610ad0565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101b557808201518382015260200161019d565b50505050905090810190601f1680156101e25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101fb57600080fd5b610154600435610b6e565b341561021157600080fd5b610154610b9e565b341561022457600080fd5b610154600435610ba4565b341561023a57600080fd5b610242610bdd565b60405160ff909116815260200160405180910390f35b341561026357600080fd5b61026e600435610be2565b604051901515815260200160405180910390f35b341561028d57600080fd5b610295610bf7565b005b34156102a257600080fd5b610295600435600160a060020a0360243516610cbe565b34156102c457600080fd5b610154610ec7565b34156102d757600080fd5b6101546004351515610f1b565b34156102ef57600080fd5b610154610f5e565b341561030257600080fd5b610154600160a060020a0360043516610f6c565b341561032157600080fd5b610295610f87565b341561033457600080fd5b610154610fc0565b341561034757600080fd5b610154611008565b341561035a57600080fd5b61017961101a565b341561036d57600080fd5b61026e611085565b341561038057600080fd5b61026e600160a060020a036004351660243561108e565b610154600160a060020a03600435811690602435166111d3565b34156103bc57600080fd5b6102956111e0565b34156103cf57600080fd5b610154611297565b6000806000806000806000808a6000339050600b60009054906101000a900460ff1680156104165750670de0b6b3a764000082610412610f5e565b0311155b156107a657600160a060020a03811660009081526003602052604090205460ff161515600114801561046b5750600160a060020a038116600090815260076020526040902054671bc16d674ec8000090830111155b151561047657600080fd5b600160a060020a038116600090815260076020526040902054610499908361129d565b600160a060020a0382166000908152600760208190526040909120919091556104c3908e906112b3565b98506104d08960036112b3565b97506104e56104df8a8a6112ca565b896112ca565b96506104f96104f48e8b6112ca565b6112dc565b9550604060020a87029450600093506000861180156105225750600854610520878261129d565b115b151561052d57600080fd5b600160a060020a038c1615801590610557575033600160a060020a03168c600160a060020a031614155b801561057d5750600254600160a060020a038d1660009081526004602052604090205410155b156105c357600160a060020a038c166000908152600560205260409020546105a5908961129d565b600160a060020a038d166000908152600560205260409020556105e3565b6105d7876105d28b60036112b3565b61129d565b9650604060020a870294505b600160a060020a038b161580159061060d575033600160a060020a03168b600160a060020a031614155b1561061b5760019350610631565b610625878961129d565b9650604060020a870294505b6000600854111561068b576106486008548761129d565b6008819055604060020a880281151561065d57fe5b60098054929091049091019055600854604060020a880281151561067d57fe5b048602850385039450610691565b60088690555b600160a060020a0333166000908152600460205260409020546106b4908761129d565b6004600033600160a060020a0316600160a060020a0316815260200190815260200160002081905550848660095402039250826006600033600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508b600160a060020a031633600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f8960405191825260208201526040908101905180910390a3831561079e57600160a060020a038b1688156108fc0289604051600060405180830381858888f19350505050151561079e57600080fd5b859950610a8a565b600b805460ff191690556107bb8d60076112b3565b98506107c88960036112b3565b97506107d76104df8a8a6112ca565b96506107e66104f48e8b6112ca565b9550604060020a870294506000935060008611801561080f575060085461080d878261129d565b115b151561081a57600080fd5b600160a060020a038c1615801590610844575033600160a060020a03168c600160a060020a031614155b801561086a5750600254600160a060020a038d1660009081526004602052604090205410155b156108b057600160a060020a038c16600090815260056020526040902054610892908961129d565b600160a060020a038d166000908152600560205260409020556108cb565b6108bf876105d28b60036112b3565b9650604060020a870294505b600160a060020a038b16158015906108f5575033600160a060020a03168b600160a060020a031614155b156109035760019350610919565b61090d878961129d565b9650604060020a870294505b60006008541115610973576109306008548761129d565b6008819055604060020a880281151561094557fe5b60098054929091049091019055600854604060020a880281151561096557fe5b048602850385039450610979565b60088690555b600160a060020a03331660009081526004602052604090205461099c908761129d565b6004600033600160a060020a0316600160a060020a0316815260200190815260200160002081905550848660095402039250826006600033600160a060020a0316600160a060020a03168152602001908152602001600020600082825401925050819055508b600160a060020a031633600160a060020a03167f022c0d992e4d873a3748436d960d5140c1f9721cf73f7ca5ec679d3d9f4fe2d58f8960405191825260208201526040908101905180910390a38315610a8657600160a060020a038b1688156108fc0289604051600060405180830381858888f193505050501515610a8657600080fd5b8599505b5050505050505050509392505050565b600160a060020a0316600090815260066020908152604080832054600490925290912054600954604060020a9102919091030490565b60008054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b505050505081565b6000808080610b7e8560076112b3565b9250610b8a85846112ca565b9150610b95826112dc565b95945050505050565b60085490565b6000806000806008548511151515610bbb57600080fd5b610bc485611374565b9250610bd18360076112b3565b9150610b9583836112ca565b601281565b600a6020526000908152604090205460ff1681565b6000806000610c066001610f1b565b11610c1057600080fd5b339150610c1d6000610f1b565b600160a060020a03831660008181526006602090815260408083208054604060020a870201905560059091528082208054929055920192509082156108fc0290839051600060405180830381858888f193505050501515610c7d57600080fd5b81600160a060020a03167fccad973dcd043c7d680389db4378bd6b9775db7124092e9e0422c9e46d7985dc8260405190815260200160405180910390a25050565b600080600080600080600080610cd2611008565b11610cdc57600080fd5b600160a060020a03331660009081526003602052604090205460ff1615610d0257600080fd5b33600160a060020a038116600090815260046020526040902054909750891115610d2b57600080fd5b889550610d3786611374565b9450610d448560076112b3565b935060009250610d5485856112ca565b9150600160a060020a03881615801590610d80575086600160a060020a031688600160a060020a031614155b15610d9f57610d908460036112b3565b9250610d9c84846112ca565b93505b610dab600854876112ca565b600855600160a060020a038716600090815260046020526040902054610dd190876112ca565b600160a060020a03881660009081526004602090815260408083209390935560095460069091529181208054928902604060020a860201928390039055600854919250901115610e3e57610e3a600954600854604060020a8702811515610e3457fe5b0461129d565b6009555b86600160a060020a03167fc4823739c5787d2ca17e404aa47d5569ae71dfb49cbf21b3f6152ed238a31139878460405191825260208201526040908101905180910390a26000831115610ebc57600160a060020a03881683156108fc0284604051600060405180830381858888f193505050501515610ebc57600080fd5b505050505050505050565b60008060008060085460001415610ee5576414f46b04009350610f15565b610ef6670de0b6b3a7640000611374565b9250610f038360076112b3565b9150610f0f83836112ca565b90508093505b50505090565b60003382610f3157610f2c81610a9a565b610f55565b600160a060020a038116600090815260056020526040902054610f5382610a9a565b015b91505b50919050565b600160a060020a0330163190565b600160a060020a031660009081526004602052604090205490565b33600160a060020a03811660009081526004602052604081205490811115610fb457610fb4816000610cbe565b610fbc610bf7565b5050565b60008060008060085460001415610fde5764199c82cc009350610f15565b610fef670de0b6b3a7640000611374565b9250610ffc8360076112b3565b9150610f0f838361129d565b60003361101481610f6c565b91505090565b60018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b665780601f10610b3b57610100808354040283529160200191610b66565b600b5460ff1681565b600080600061109b611008565b116110a557600080fd5b600160a060020a03331660009081526003602052604090205460ff16156110cb57600080fd5b50600b54339060ff161580156110f95750600160a060020a0381166000908152600460205260409020548311155b151561110457600080fd5b60006111106001610f1b565b111561111e5761111e610bf7565b600160a060020a03811660009081526004602052604090205461114190846112ca565b600160a060020a038083166000908152600460205260408082209390935590861681522054611170908461129d565b600160a060020a03808616600081815260046020526040908190209390935591908316907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3600191505b5092915050565b60006111cc3484846103d7565b6000806000806111f06001610f1b565b116111fa57600080fd5b6112046000610f1b565b33600160a060020a03811660009081526006602090815260408083208054604060020a8702019055600590915281208054908290559092019450925061124c908490806103d7565b905081600160a060020a03167fbe339fc14b041c2b0e0f3dd2cd325d0c3668b78378001e53160eab3615326458848360405191825260208201526040908101905180910390a2505050565b60025481565b6000828201838110156112ac57fe5b9392505050565b60008082848115156112c157fe5b04949350505050565b6000828211156112d657fe5b50900390565b6008546000906c01431e0fae6d7217caa00000009082906402540be40061136161135b730380d4bd8a8678c1bb542c80deb4800000000000880268056bc75e2d631000006002860a02017005e0a1fd2712875988becaad0000000000850201780197d4df19d605767337e9f14d3eec8920e400000000000000016113e0565b856112ca565b81151561136a57fe5b0403949350505050565b600854600090670de0b6b3a76400008381019181019083906113cd6414f46b04008285046402540be40002018702600283670de0b6b3a763ffff1982890a8b900301046402540be400028115156113c757fe5b046112ca565b8115156113d657fe5b0495945050505050565b80600260018201045b81811015610f5857809150600281828581151561140257fe5b040181151561140d57fe5b0490506113e95600a165627a7a7230582068fb94518f9fce8e374fa33e057b42c7f033797f6b13f2375400b2ccbe984cbc0029

Swarm Source

bzzr://68fb94518f9fce8e374fa33e057b42c7f033797f6b13f2375400b2ccbe984cbc
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.