ETH Price: $3,300.49 (-0.45%)
 

Overview

Max Total Supply

20,000,000,000 CES

Holders

908

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,227,485.2029001 CES

Value
$0.00
0x8786caac224f332b29c8775e3977c2fda21d86ac
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:
CES_Token

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-12-04
*/

pragma solidity 0.4.24;


/**
 * @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 Subtracts 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;
    }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    function totalSupply() public view returns (uint256);
    function balanceOf(address who) public view returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) balances;

    uint256 totalSupply_;

    /**
    * @dev total number of tokens in existence
    */
    function totalSupply() public view returns (uint256) {
        return totalSupply_;
    }

    /**
    * @dev transfer token for a specified address
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[msg.sender]);

        // SafeMath.sub will throw if there is not enough balance.
        balances[msg.sender] = balances[msg.sender].sub(_value);
        balances[_to] = balances[_to].add(_value);
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param _owner The address to query the the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address _owner) public view returns (uint256 balance) {
        return balances[_owner];
    }
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
    function allowance(address owner, address spender) public view returns (uint256);
    function transferFrom(address from, address to, uint256 value) public returns (bool);
    function approve(address spender, uint256 value) public returns (bool);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

    mapping (address => mapping (address => uint256)) internal allowed;

    /**
     * @dev Transfer tokens from one address to another
     * @param _from address The address which you want to send tokens from
     * @param _to address The address which you want to transfer to
     * @param _value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[_from]);
        require(_value <= allowed[_from][msg.sender]);

        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(_value);
        allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
        emit Transfer(_from, _to, _value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     *
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param _spender The address which will spend the funds.
     * @param _value The amount of tokens to be spent.
     */
    function approve(address _spender, uint256 _value) public returns (bool) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param _owner address The address which owns the funds.
     * @param _spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }

    /**
     * approve should be called when allowed[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     */
    function increaseApproval (address _spender, uint _addedValue) public returns (bool success) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

    function decreaseApproval (address _spender, uint _subtractedValue) public returns (bool success) {
        uint oldValue = allowed[msg.sender][_spender];
        if (_subtractedValue > oldValue) {
            allowed[msg.sender][_spender] = 0;
        } else {
            allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
        }
        emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    function safeTransfer(ERC20Basic token, address to, uint256 value) internal {
        assert(token.transfer(to, value));
    }

    function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal {
        assert(token.transferFrom(from, to, value));
    }

    function safeApprove(ERC20 token, address spender, uint256 value) internal {
        assert(token.approve(spender, value));
    }
}

contract Owned {
    address public owner;

    constructor() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }
}

/**
 * @title TokenVesting
 * @dev A token holder contract that can release its token balance gradually like a
 * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the
 * owner.
 */
contract TokenVesting is Owned {
    using SafeMath for uint256;
    using SafeERC20 for ERC20Basic;

    event Released(uint256 amount);
    event Revoked();

    // beneficiary of tokens after they are released
    address public beneficiary;

    uint256 public cliff;
    uint256 public start;
    uint256 public duration;

    bool public revocable;

    mapping (address => uint256) public released;
    mapping (address => bool) public revoked;

    address internal ownerShip;

    /**
     * @dev Creates a vesting contract that vests its balance of any ERC20 token to the
     * _beneficiary, gradually in a linear fashion until _start + _duration. By then all
     * of the balance will have vested.
     * @param _beneficiary address of the beneficiary to whom vested tokens are transferred
     * @param _cliff duration in seconds of the cliff in which tokens will begin to vest
     * @param _start the time (as Unix time) at which point vesting starts
     * @param _duration duration in seconds of the period in which the tokens will vest
     * @param _revocable whether the vesting is revocable or not
     */
    constructor(
        address _beneficiary,
        uint256 _start,
        uint256 _cliff,
        uint256 _duration,
        bool _revocable,
        address _realOwner
    )
        public
    {
        require(_beneficiary != address(0));
        require(_cliff <= _duration);

        beneficiary = _beneficiary;
        revocable = _revocable;
        duration = _duration;
        cliff = _start.add(_cliff);
        start = _start;
        ownerShip = _realOwner;
    }

    /**
     * @notice Transfers vested tokens to beneficiary.
     * @param token ERC20 token which is being vested
     */
    function release(ERC20Basic token) public {
        uint256 unreleased = releasableAmount(token);

        require(unreleased > 0);

        released[token] = released[token].add(unreleased);

        token.safeTransfer(beneficiary, unreleased);

        emit Released(unreleased);
    }

    /**
     * @notice Allows the owner to revoke the vesting. Tokens already vested
     * remain in the contract, the rest are returned to the owner.
     * @param token ERC20 token which is being vested
     */
    function revoke(ERC20Basic token) public onlyOwner {
        require(revocable);
        require(!revoked[token]);

        uint256 balance = token.balanceOf(this);

        uint256 unreleased = releasableAmount(token);
        uint256 refund = balance.sub(unreleased);

        revoked[token] = true;

        token.safeTransfer(ownerShip, refund);

        emit Revoked();
    }

    /**
     * @dev Calculates the amount that has already vested but hasn't been released yet.
     * @param token ERC20 token which is being vested
     */
    function releasableAmount(ERC20Basic token) public view returns (uint256) {
        return vestedAmount(token).sub(released[token]);
    }

    /**
     * @dev Calculates the amount that has already vested.
     * @param token ERC20 token which is being vested
     */
    function vestedAmount(ERC20Basic token) public view returns (uint256) {
        uint256 currentBalance = token.balanceOf(this);
        uint256 totalBalance = currentBalance.add(released[token]);

        if (block.timestamp < cliff) {
            return 0;
        } else if (block.timestamp >= start.add(duration) || revoked[token]) {
            return totalBalance;
        } else {
            return totalBalance.mul(block.timestamp.sub(start)).div(duration);
        }
    }
}

/**
 * @title TokenVault
 * @dev TokenVault is a token holder contract that will allow a
 * beneficiary to spend the tokens from some function of a specified ERC20 token
 */
contract TokenVault {
    using SafeERC20 for ERC20;

    // ERC20 token contract being held
    ERC20 public token;

    constructor(ERC20 _token) public {
        token = _token;
    }

    /**
     * @notice Allow the token itself to send tokens
     * using transferFrom().
     */
    function fillUpAllowance() public {
        uint256 amount = token.balanceOf(this);
        require(amount > 0);

        token.approve(token, amount);
    }
}

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is StandardToken {

    event Burn(address indexed burner, uint256 value);

    /**
     * @dev Burns a specific amount of tokens.
     * @param _value The amount of token to be burned.
     */
    function burn(uint256 _value) public {
        require(_value > 0);
        require(_value <= balances[msg.sender]);
        // no need to require value <= totalSupply, since that would imply the
        // sender's balance is greater than the totalSupply, which *should* be an assertion failure

        address burner = msg.sender;
        balances[burner] = balances[burner].sub(_value);
        totalSupply_ = totalSupply_.sub(_value);
        emit Burn(burner, _value);
    }
}

contract CES_Token is BurnableToken, Owned {
    string public constant name = "Creative Energy Sharing";
    string public constant symbol = "CES";
    uint8 public constant decimals = 18;

    /// Maximum tokens to be allocated ( 20.0 billion BKB)
    uint256 public constant HARD_CAP = 20000000000 * 10**uint256(decimals);

    /// This address will be used to distribute the team, advisors and reserve tokens
    address public saleTokensAddress;

    /// This vault is used to keep the Founders, Advisors and Partners tokens
    TokenVault public reserveTokensVault;

    /// Date when the vesting for regular users starts
    uint64 public daySecond     = 86400;
    uint64 public lock90Days    = 90;
    uint64 public unlock100Days = 100;
    uint64 public lock365Days   = 365;

    /// Store the vesting contract addresses for each sale contributor
    mapping(address => address) public vestingOf;

    constructor(address _saleTokensAddress) public payable {
        require(_saleTokensAddress != address(0));

        saleTokensAddress = _saleTokensAddress;

        /// Maximum tokens to be sold - 50 %
        uint256 saleTokens = 10000000000;
        createTokensInt(saleTokens, saleTokensAddress);

        require(totalSupply_ <= HARD_CAP);
    }

    /// @dev Create a ReserveTokenVault 
    function createReserveTokensVault() external onlyOwner {
        require(reserveTokensVault == address(0));

        /// Reserve tokens - 50 %
        uint256 reserveTokens = 10000000000;
        reserveTokensVault = createTokenVaultInt(reserveTokens);

        require(totalSupply_ <= HARD_CAP);
    }

    /// @dev Create a TokenVault and fill with the specified newly minted tokens
    function createTokenVaultInt(uint256 tokens) internal onlyOwner returns (TokenVault) {
        TokenVault tokenVault = new TokenVault(ERC20(this));
        createTokensInt(tokens, tokenVault);
        tokenVault.fillUpAllowance();
        return tokenVault;
    }

    // @dev create specified number of tokens and transfer to destination
    function createTokensInt(uint256 _tokens, address _destination) internal onlyOwner {
        uint256 tokens = _tokens * 10**uint256(decimals);
        totalSupply_ = totalSupply_.add(tokens);
        balances[_destination] = balances[_destination].add(tokens);
        emit Transfer(0x0, _destination, tokens);

        require(totalSupply_ <= HARD_CAP);
    }

    /// @dev vest Detail : second unit
    function vestTokensDetailInt(
                        address _beneficiary,
                        uint256 _startS,
                        uint256 _cliffS,
                        uint256 _durationS,
                        bool _revocable,
                        uint256 _tokensAmountInt) external onlyOwner {
        require(_beneficiary != address(0));

        uint256 tokensAmount = _tokensAmountInt * 10**uint256(decimals);

        if(vestingOf[_beneficiary] == 0x0) {
            TokenVesting vesting = new TokenVesting(_beneficiary, _startS, _cliffS, _durationS, _revocable, owner);
            vestingOf[_beneficiary] = address(vesting);
        }

        require(this.transferFrom(reserveTokensVault, vestingOf[_beneficiary], tokensAmount));
    }

    /// @dev vest StartAt : day unit
    function vestTokensStartAtInt(
                            address _beneficiary, 
                            uint256 _tokensAmountInt,
                            uint256 _startS,
                            uint256 _afterDay,
                            uint256 _cliffDay,
                            uint256 _durationDay ) public onlyOwner {
        require(_beneficiary != address(0));

        uint256 tokensAmount = _tokensAmountInt * 10**uint256(decimals);
        uint256 afterSec = _afterDay * daySecond;
        uint256 cliffSec = _cliffDay * daySecond;
        uint256 durationSec = _durationDay * daySecond;

        if(vestingOf[_beneficiary] == 0x0) {
            TokenVesting vesting = new TokenVesting(_beneficiary, _startS + afterSec, cliffSec, durationSec, true, owner);
            vestingOf[_beneficiary] = address(vesting);
        }

        require(this.transferFrom(reserveTokensVault, vestingOf[_beneficiary], tokensAmount));
    }

    /// @dev vest function from now
    function vestTokensFromNowInt(address _beneficiary, uint256 _tokensAmountInt, uint256 _afterDay, uint256 _cliffDay, uint256 _durationDay ) public onlyOwner {
        vestTokensStartAtInt(_beneficiary, _tokensAmountInt, now, _afterDay, _cliffDay, _durationDay);
    }

    /// @dev vest the sale contributor tokens for 100 days, 1% gradual release 
    function vestCmdNow1PercentInt(address _beneficiary, uint256 _tokensAmountInt) external onlyOwner {
        vestTokensFromNowInt(_beneficiary, _tokensAmountInt, 0, 0, unlock100Days);
    }
    /// @dev vest the sale contributor tokens for 100 days, 1% gradual release after 3 month later, no cliff
    function vestCmd3Month1PercentInt(address _beneficiary, uint256 _tokensAmountInt) external onlyOwner {
        vestTokensFromNowInt(_beneficiary, _tokensAmountInt, lock90Days, 0, unlock100Days);
    }

    /// @dev vest the sale contributor tokens 100% release after 1 year
    function vestCmd1YearInstantInt(address _beneficiary, uint256 _tokensAmountInt) external onlyOwner {
        vestTokensFromNowInt(_beneficiary, _tokensAmountInt, 0, lock365Days, lock365Days);
    }

    /// @dev releases vested tokens for the caller's own address
    function releaseVestedTokens() external {
        releaseVestedTokensFor(msg.sender);
    }

    /// @dev releases vested tokens for the specified address.
    /// Can be called by anyone for any address.
    function releaseVestedTokensFor(address _owner) public {
        TokenVesting(vestingOf[_owner]).release(this);
    }

    /// @dev check the vested balance for an address
    function lockedBalanceOf(address _owner) public view returns (uint256) {
        return balances[vestingOf[_owner]];
    }

    /// @dev check the locked but releaseable balance of an owner
    function releaseableBalanceOf(address _owner) public view returns (uint256) {
        if (vestingOf[_owner] == address(0) ) {
            return 0;
        } else {
            return TokenVesting(vestingOf[_owner]).releasableAmount(this);
        }
    }

    /// @dev revoke vested tokens for the specified address.
    /// Tokens already vested remain in the contract, the rest are returned to the owner.
    function revokeVestedTokensFor(address _owner) public onlyOwner {
        TokenVesting(vestingOf[_owner]).revoke(this);
    }

    /// @dev Create a ReserveTokenVault 
    function makeReserveToVault() external onlyOwner {
        require(reserveTokensVault != address(0));
        reserveTokensVault.fillUpAllowance();
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lock365Days","outputs":[{"name":"","type":"uint64"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"createReserveTokensVault","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"releaseVestedTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"lockedBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"unlock100Days","outputs":[{"name":"","type":"uint64"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"_tokensAmountInt","type":"uint256"},{"name":"_startS","type":"uint256"},{"name":"_afterDay","type":"uint256"},{"name":"_cliffDay","type":"uint256"},{"name":"_durationDay","type":"uint256"}],"name":"vestTokensStartAtInt","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"revokeVestedTokensFor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"_tokensAmountInt","type":"uint256"}],"name":"vestCmdNow1PercentInt","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleTokensAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"makeReserveToVault","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"releaseableBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"_tokensAmountInt","type":"uint256"}],"name":"vestCmd1YearInstantInt","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"releaseVestedTokensFor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"vestingOf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"_tokensAmountInt","type":"uint256"},{"name":"_afterDay","type":"uint256"},{"name":"_cliffDay","type":"uint256"},{"name":"_durationDay","type":"uint256"}],"name":"vestTokensFromNowInt","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"reserveTokensVault","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"_startS","type":"uint256"},{"name":"_cliffS","type":"uint256"},{"name":"_durationS","type":"uint256"},{"name":"_revocable","type":"bool"},{"name":"_tokensAmountInt","type":"uint256"}],"name":"vestTokensDetailInt","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lock90Days","outputs":[{"name":"","type":"uint64"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"daySecond","outputs":[{"name":"","type":"uint64"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"_tokensAmountInt","type":"uint256"}],"name":"vestCmd3Month1PercentInt","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_saleTokensAddress","type":"address"}],"payable":true,"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

608060408190526005805460a060020a60e060020a03191676015180000000000000000000000000000000000000000017905560068054605a67ffffffffffffffff1990911617604060020a608060020a0319166864000000000000000017608060020a60c060020a03191671016d000000000000000000000000000000001790556020806200256f833981016040525160038054600160a060020a031916331790556000600160a060020a0382161515620000ba57600080fd5b5060048054600160a060020a031916600160a060020a0383811691909117918290556402540be40091620000fa918391166401000000006200011e810204565b6001546b409f9cbc7c4a04c22000000010156200011657600080fd5b505062000223565b600354600090600160a060020a031633146200013957600080fd5b50600154670de0b6b3a76400008302906200016390826401000000006200161e6200020c82021704565b600155600160a060020a0382166000908152602081905260409020546200019990826401000000006200161e6200020c82021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36001546b409f9cbc7c4a04c22000000010156200020757600080fd5b505050565b6000828201838110156200021c57fe5b9392505050565b61233c80620002336000396000f300608060405260043610620001b55763ffffffff60e060020a60003504166306fdde038114620001ba578063095ea7b3146200024a57806309aa5d91146200028557806318160ddd14620002ba57806323b872dd14620002e4578063313ce567146200031157806333902973146200033f5780633a03171c146200035957806342966c68146200037157806354dd1da4146200038c5780635935573614620003a45780635de7453e14620003c857806362290f3514620003e05780636618846314620004135780636e68751c146200043a57806370a08231146200045e5780638b88cb9414620004825780638da5cb5b14620004a957806395d89b4114620004dd578063a9059cbb14620004f5578063afa31744146200051c578063b0dd5b621462000534578063b8c78391146200054c578063bbae7ab41462000570578063c26fe7ce1462000597578063c47cfca114620005bb578063d73dd62314620005df578063dd62ed3e1462000606578063de9ab12d1462000630578063e4fe9d151462000660578063edfedf931462000678578063f501556514620006ad578063f93f3e2514620006c5578063fb17eaf914620006dd575b600080fd5b348015620001c757600080fd5b50620001d262000704565b6040805160208082528351818301528351919283929083019185019080838360005b838110156200020e578181015183820152602001620001f4565b50505050905090810190601f1680156200023c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156200025757600080fd5b5062000271600160a060020a03600435166024356200073b565b604080519115158252519081900360200190f35b3480156200029257600080fd5b506200029d620007a1565b6040805167ffffffffffffffff9092168252519081900360200190f35b348015620002c757600080fd5b50620002d2620007c5565b60408051918252519081900360200190f35b348015620002f157600080fd5b5062000271600160a060020a0360043581169060243516604435620007cb565b3480156200031e57600080fd5b50620003296200094b565b6040805160ff9092168252519081900360200190f35b3480156200034c57600080fd5b506200035762000950565b005b3480156200036657600080fd5b50620002d2620009e0565b3480156200037e57600080fd5b5062000357600435620009f0565b3480156200039957600080fd5b506200035762000ab3565b348015620003b157600080fd5b50620002d2600160a060020a036004351662000ac0565b348015620003d557600080fd5b506200029d62000aed565b348015620003ed57600080fd5b5062000357600160a060020a036004351660243560443560643560843560a43562000b09565b3480156200042057600080fd5b5062000271600160a060020a036004351660243562000d29565b3480156200044757600080fd5b5062000357600160a060020a036004351662000e1d565b3480156200046b57600080fd5b50620002d2600160a060020a036004351662000ec1565b3480156200048f57600080fd5b5062000357600160a060020a036004351660243562000edc565b348015620004b657600080fd5b50620004c162000f28565b60408051600160a060020a039092168252519081900360200190f35b348015620004ea57600080fd5b50620001d262000f37565b3480156200050257600080fd5b5062000271600160a060020a036004351660243562000f6e565b3480156200052957600080fd5b50620004c162001055565b3480156200054157600080fd5b506200035762001064565b3480156200055957600080fd5b50620002d2600160a060020a036004351662001103565b3480156200057d57600080fd5b5062000357600160a060020a0360043516602435620011d7565b348015620005a457600080fd5b5062000357600160a060020a036004351662001223565b348015620005c857600080fd5b50620004c1600160a060020a036004351662001293565b348015620005ec57600080fd5b5062000271600160a060020a0360043516602435620012ae565b3480156200061357600080fd5b50620002d2600160a060020a036004358116906024351662001349565b3480156200063d57600080fd5b5062000357600160a060020a036004351660243560443560643560843562001374565b3480156200066d57600080fd5b50620004c16200139c565b3480156200068557600080fd5b5062000357600160a060020a0360043516602435604435606435608435151560a435620013ab565b348015620006ba57600080fd5b506200029d6200158b565b348015620006d257600080fd5b506200029d6200159b565b348015620006ea57600080fd5b5062000357600160a060020a0360043516602435620015c3565b60408051808201909152601781527f437265617469766520456e657267792053686172696e67000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600654700100000000000000000000000000000000900467ffffffffffffffff1681565b60015490565b6000600160a060020a0383161515620007e357600080fd5b600160a060020a0384166000908152602081905260409020548211156200080957600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156200083a57600080fd5b600160a060020a03841660009081526020819052604090205462000865908363ffffffff6200160b16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546200089c908363ffffffff6200161e16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054620008e0908363ffffffff6200160b16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b600354600090600160a060020a031633146200096b57600080fd5b600554600160a060020a0316156200098257600080fd5b506402540be400620009948162001635565b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790556001546b409f9cbc7c4a04c2200000001015620009dd57600080fd5b50565b6b409f9cbc7c4a04c22000000081565b6000808211620009ff57600080fd5b3360009081526020819052604090205482111562000a1c57600080fd5b503360008181526020819052604090205462000a3f908363ffffffff6200160b16565b600160a060020a03821660009081526020819052604090205560015462000a6d908363ffffffff6200160b16565b600155604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b62000abe3362001223565b565b600160a060020a03808216600090815260076020908152604080832054909316825281905220545b919050565b60065468010000000000000000900467ffffffffffffffff1681565b6003546000908190819081908190600160a060020a0316331462000b2c57600080fd5b600160a060020a038b16151562000b4257600080fd5b600554600160a060020a038c8116600090815260076020526040902054670de0b6b3a76400008d0297507401000000000000000000000000000000000000000090920467ffffffffffffffff168a8102965089810295508802935016151562000c5c576003548b908a86019085908590600190600160a060020a031662000bc8620017d7565b600160a060020a039687168152602081019590955260408086019490945260608501929092521515608084015290921660a082015290519081900360c001906000f08015801562000c1d573d6000803e3d6000fd5b50600160a060020a038c81166000908152600760205260409020805473ffffffffffffffffffffffffffffffffffffffff191691831691909117905590505b600554600160a060020a038c811660009081526007602090815260408083205481517f23b872dd0000000000000000000000000000000000000000000000000000000081529585166004870152909316602485015260448401899052915130936323b872dd936064808301949193928390030190829087803b15801562000ce257600080fd5b505af115801562000cf7573d6000803e3d6000fd5b505050506040513d602081101562000d0e57600080fd5b5051151562000d1c57600080fd5b5050505050505050505050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111562000d8057336000908152600260209081526040808320600160a060020a038816845290915281205562000db7565b62000d92818463ffffffff6200160b16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600354600160a060020a0316331462000e3557600080fd5b600160a060020a038082166000908152600760205260408082205481517f74a8f10300000000000000000000000000000000000000000000000000000000815230600482015291519316926374a8f1039260248084019391929182900301818387803b15801562000ea557600080fd5b505af115801562000eba573d6000803e3d6000fd5b5050505050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331462000ef457600080fd5b62000f248282600080600660089054906101000a900467ffffffffffffffff1667ffffffffffffffff1662001374565b5050565b600354600160a060020a031681565b60408051808201909152600381527f4345530000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151562000f8657600080fd5b3360009081526020819052604090205482111562000fa357600080fd5b3360009081526020819052604090205462000fc5908363ffffffff6200160b16565b3360009081526020819052604080822092909255600160a060020a0385168152205462000ff9908363ffffffff6200161e16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600454600160a060020a031681565b600354600160a060020a031633146200107c57600080fd5b600554600160a060020a031615156200109457600080fd5b600560009054906101000a9004600160a060020a0316600160a060020a03166312d60f866040518163ffffffff1660e060020a028152600401600060405180830381600087803b158015620010e857600080fd5b505af1158015620010fd573d6000803e3d6000fd5b50505050565b600160a060020a038181166000908152600760205260408120549091161515620011305750600062000ae8565b600160a060020a0380831660009081526007602090815260408083205481517f1726cbc80000000000000000000000000000000000000000000000000000000081523060048201529151941693631726cbc893602480840194938390030190829087803b158015620011a157600080fd5b505af1158015620011b6573d6000803e3d6000fd5b505050506040513d6020811015620011cd57600080fd5b5051905062000ae8565b600354600160a060020a03163314620011ef57600080fd5b60065462000f249083908390600090700100000000000000000000000000000000900467ffffffffffffffff168062001374565b600160a060020a038082166000908152600760205260408082205481517f19165587000000000000000000000000000000000000000000000000000000008152306004820152915193169263191655879260248084019391929182900301818387803b15801562000ea557600080fd5b600760205260009081526040902054600160a060020a031681565b336000908152600260209081526040808320600160a060020a0386168452909152812054620012e4908363ffffffff6200161e16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a031633146200138c57600080fd5b62000eba85854286868662000b09565b600554600160a060020a031681565b6003546000908190600160a060020a03163314620013c857600080fd5b600160a060020a0388161515620013de57600080fd5b600160a060020a03808916600090815260076020526040902054670de0b6b3a764000085029350161515620014c15760035488908890889088908890600160a060020a03166200142d620017d7565b600160a060020a039687168152602081019590955260408086019490945260608501929092521515608084015290921660a082015290519081900360c001906000f08015801562001482573d6000803e3d6000fd5b50600160a060020a038981166000908152600760205260409020805473ffffffffffffffffffffffffffffffffffffffff191691831691909117905590505b600554600160a060020a0389811660009081526007602090815260408083205481517f23b872dd0000000000000000000000000000000000000000000000000000000081529585166004870152909316602485015260448401869052915130936323b872dd936064808301949193928390030190829087803b1580156200154757600080fd5b505af11580156200155c573d6000803e3d6000fd5b505050506040513d60208110156200157357600080fd5b505115156200158157600080fd5b5050505050505050565b60065467ffffffffffffffff1681565b60055474010000000000000000000000000000000000000000900467ffffffffffffffff1681565b600354600160a060020a03163314620015db57600080fd5b60065462000f24908390839067ffffffffffffffff80821691600091680100000000000000009091041662001374565b6000828211156200161857fe5b50900390565b6000828201838110156200162e57fe5b9392505050565b6003546000908190600160a060020a031633146200165257600080fd5b306200165d620017e8565b600160a060020a03909116815260405190819003602001906000f0801580156200168b573d6000803e3d6000fd5b5090506200169a8382620016f9565b80600160a060020a03166312d60f866040518163ffffffff1660e060020a028152600401600060405180830381600087803b158015620016d957600080fd5b505af1158015620016ee573d6000803e3d6000fd5b509295945050505050565b600354600090600160a060020a031633146200171457600080fd5b50600154670de0b6b3a764000083029062001736908263ffffffff6200161e16565b600155600160a060020a03821660009081526020819052604090205462001764908263ffffffff6200161e16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36001546b409f9cbc7c4a04c2200000001015620017d257600080fd5b505050565b60405161087d80620017fa83390190565b60405161029a8062002077833901905600608060405234801561001057600080fd5b5060405160c08061087d83398101604090815281516020830151918301516060840151608085015160a09095015160008054600160a060020a0319163317905592949192909190600160a060020a038616151561006c57600080fd5b8284111561007957600080fd5b60018054600160a060020a031916600160a060020a0388161790556005805460ff191683151517905560048390556100be85856401000000006100f181026106431704565b600255600394909455505060088054600160a060020a031916600160a060020a0390931692909217909155506101079050565b60008282018381101561010057fe5b9392505050565b610767806101166000396000f3006080604052600436106100a05763ffffffff60e060020a6000350416630fb5a6b481146100a557806313d033c0146100cc5780631726cbc8146100e15780631916558714610102578063384711cc1461012557806338af3eed1461014657806374a8f10314610177578063872a7810146101985780638da5cb5b146101c15780639852595c146101d6578063be9a6555146101f7578063fa01dc061461020c575b600080fd5b3480156100b157600080fd5b506100ba61022d565b60408051918252519081900360200190f35b3480156100d857600080fd5b506100ba610233565b3480156100ed57600080fd5b506100ba600160a060020a0360043516610239565b34801561010e57600080fd5b50610123600160a060020a0360043516610271565b005b34801561013157600080fd5b506100ba600160a060020a036004351661031d565b34801561015257600080fd5b5061015b610474565b60408051600160a060020a039092168252519081900360200190f35b34801561018357600080fd5b50610123600160a060020a0360043516610483565b3480156101a457600080fd5b506101ad6105ec565b604080519115158252519081900360200190f35b3480156101cd57600080fd5b5061015b6105f5565b3480156101e257600080fd5b506100ba600160a060020a0360043516610604565b34801561020357600080fd5b506100ba610616565b34801561021857600080fd5b506101ad600160a060020a036004351661061c565b60045481565b60025481565b600160a060020a03811660009081526006602052604081205461026b9061025f8461031d565b9063ffffffff61063116565b92915050565b600061027c82610239565b90506000811161028b57600080fd5b600160a060020a0382166000908152600660205260409020546102b4908263ffffffff61064316565b600160a060020a038084166000818152600660205260409020929092556001546102e69291168363ffffffff61065d16565b6040805182815290517ffb81f9b30d73d830c3544b34d827c08142579ee75710b490bab0b3995468c5659181900360200190a15050565b600080600083600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561037d57600080fd5b505af1158015610391573d6000803e3d6000fd5b505050506040513d60208110156103a757600080fd5b5051600160a060020a0385166000908152600660205260409020549092506103d690839063ffffffff61064316565b90506002544210156103eb576000925061046d565b6004546003546104009163ffffffff61064316565b421015806104265750600160a060020a03841660009081526007602052604090205460ff165b156104335780925061046d565b61046a60045461045e6104516003544261063190919063ffffffff16565b849063ffffffff6106f916565b9063ffffffff61072416565b92505b5050919050565b600154600160a060020a031681565b6000805481908190600160a060020a0316331461049f57600080fd5b60055460ff1615156104b057600080fd5b600160a060020a03841660009081526007602052604090205460ff16156104d657600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038616916370a082319160248083019260209291908290030181600087803b15801561053757600080fd5b505af115801561054b573d6000803e3d6000fd5b505050506040513d602081101561056157600080fd5b5051925061056e84610239565b9150610580838363ffffffff61063116565b600160a060020a038086166000818152600760205260409020805460ff191660011790556008549293506105bd929091168363ffffffff61065d16565b6040517f44825a4b2df8acb19ce4e1afba9aa850c8b65cdb7942e2078f27d0b0960efee690600090a150505050565b60055460ff1681565b600054600160a060020a031681565b60066020526000908152604090205481565b60035481565b60076020526000908152604090205460ff1681565b60008282111561063d57fe5b50900390565b60008282018381101561065257fe5b8091505b5092915050565b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b1580156106c057600080fd5b505af11580156106d4573d6000803e3d6000fd5b505050506040513d60208110156106ea57600080fd5b505115156106f457fe5b505050565b60008083151561070c5760009150610656565b5082820282848281151561071c57fe5b041461065257fe5b600080828481151561073257fe5b049493505050505600a165627a7a72305820663d194d0ba6406648ddaa5be7e1e46896793ad2a87681b0eeec6ff9cfc9c21e0029608060405234801561001057600080fd5b5060405160208061029a833981016040525160008054600160a060020a03909216600160a060020a0319909216919091179055610248806100526000396000f30060806040526004361061004b5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166312d60f868114610050578063fc0c546a14610067575b600080fd5b34801561005c57600080fd5b506100656100a5565b005b34801561007357600080fd5b5061007c610200565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b60008054604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a082319160248082019260209290919082900301818787803b15801561011857600080fd5b505af115801561012c573d6000803e3d6000fd5b505050506040513d602081101561014257600080fd5b505190506000811161015357600080fd5b60008054604080517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90921660048301819052602483018590529051909263095ea7b392604480820193602093909283900390910190829087803b1580156101d157600080fd5b505af11580156101e5573d6000803e3d6000fd5b505050506040513d60208110156101fb57600080fd5b505050565b60005473ffffffffffffffffffffffffffffffffffffffff16815600a165627a7a7230582024149641088d60cb0b0662c46d171ca2356507991a80134231eb312cc59277f60029a165627a7a72305820b3a6b8e2c89abe11dd32f21dd9c34c3883e6d39dae730b5162a6d66d24baab6d0029000000000000000000000000624485638990c6a3e0a120e38a635d5044d4778e

Deployed Bytecode

0x608060405260043610620001b55763ffffffff60e060020a60003504166306fdde038114620001ba578063095ea7b3146200024a57806309aa5d91146200028557806318160ddd14620002ba57806323b872dd14620002e4578063313ce567146200031157806333902973146200033f5780633a03171c146200035957806342966c68146200037157806354dd1da4146200038c5780635935573614620003a45780635de7453e14620003c857806362290f3514620003e05780636618846314620004135780636e68751c146200043a57806370a08231146200045e5780638b88cb9414620004825780638da5cb5b14620004a957806395d89b4114620004dd578063a9059cbb14620004f5578063afa31744146200051c578063b0dd5b621462000534578063b8c78391146200054c578063bbae7ab41462000570578063c26fe7ce1462000597578063c47cfca114620005bb578063d73dd62314620005df578063dd62ed3e1462000606578063de9ab12d1462000630578063e4fe9d151462000660578063edfedf931462000678578063f501556514620006ad578063f93f3e2514620006c5578063fb17eaf914620006dd575b600080fd5b348015620001c757600080fd5b50620001d262000704565b6040805160208082528351818301528351919283929083019185019080838360005b838110156200020e578181015183820152602001620001f4565b50505050905090810190601f1680156200023c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156200025757600080fd5b5062000271600160a060020a03600435166024356200073b565b604080519115158252519081900360200190f35b3480156200029257600080fd5b506200029d620007a1565b6040805167ffffffffffffffff9092168252519081900360200190f35b348015620002c757600080fd5b50620002d2620007c5565b60408051918252519081900360200190f35b348015620002f157600080fd5b5062000271600160a060020a0360043581169060243516604435620007cb565b3480156200031e57600080fd5b50620003296200094b565b6040805160ff9092168252519081900360200190f35b3480156200034c57600080fd5b506200035762000950565b005b3480156200036657600080fd5b50620002d2620009e0565b3480156200037e57600080fd5b5062000357600435620009f0565b3480156200039957600080fd5b506200035762000ab3565b348015620003b157600080fd5b50620002d2600160a060020a036004351662000ac0565b348015620003d557600080fd5b506200029d62000aed565b348015620003ed57600080fd5b5062000357600160a060020a036004351660243560443560643560843560a43562000b09565b3480156200042057600080fd5b5062000271600160a060020a036004351660243562000d29565b3480156200044757600080fd5b5062000357600160a060020a036004351662000e1d565b3480156200046b57600080fd5b50620002d2600160a060020a036004351662000ec1565b3480156200048f57600080fd5b5062000357600160a060020a036004351660243562000edc565b348015620004b657600080fd5b50620004c162000f28565b60408051600160a060020a039092168252519081900360200190f35b348015620004ea57600080fd5b50620001d262000f37565b3480156200050257600080fd5b5062000271600160a060020a036004351660243562000f6e565b3480156200052957600080fd5b50620004c162001055565b3480156200054157600080fd5b506200035762001064565b3480156200055957600080fd5b50620002d2600160a060020a036004351662001103565b3480156200057d57600080fd5b5062000357600160a060020a0360043516602435620011d7565b348015620005a457600080fd5b5062000357600160a060020a036004351662001223565b348015620005c857600080fd5b50620004c1600160a060020a036004351662001293565b348015620005ec57600080fd5b5062000271600160a060020a0360043516602435620012ae565b3480156200061357600080fd5b50620002d2600160a060020a036004358116906024351662001349565b3480156200063d57600080fd5b5062000357600160a060020a036004351660243560443560643560843562001374565b3480156200066d57600080fd5b50620004c16200139c565b3480156200068557600080fd5b5062000357600160a060020a0360043516602435604435606435608435151560a435620013ab565b348015620006ba57600080fd5b506200029d6200158b565b348015620006d257600080fd5b506200029d6200159b565b348015620006ea57600080fd5b5062000357600160a060020a0360043516602435620015c3565b60408051808201909152601781527f437265617469766520456e657267792053686172696e67000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600654700100000000000000000000000000000000900467ffffffffffffffff1681565b60015490565b6000600160a060020a0383161515620007e357600080fd5b600160a060020a0384166000908152602081905260409020548211156200080957600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156200083a57600080fd5b600160a060020a03841660009081526020819052604090205462000865908363ffffffff6200160b16565b600160a060020a0380861660009081526020819052604080822093909355908516815220546200089c908363ffffffff6200161e16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054620008e0908363ffffffff6200160b16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b600354600090600160a060020a031633146200096b57600080fd5b600554600160a060020a0316156200098257600080fd5b506402540be400620009948162001635565b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790556001546b409f9cbc7c4a04c2200000001015620009dd57600080fd5b50565b6b409f9cbc7c4a04c22000000081565b6000808211620009ff57600080fd5b3360009081526020819052604090205482111562000a1c57600080fd5b503360008181526020819052604090205462000a3f908363ffffffff6200160b16565b600160a060020a03821660009081526020819052604090205560015462000a6d908363ffffffff6200160b16565b600155604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b62000abe3362001223565b565b600160a060020a03808216600090815260076020908152604080832054909316825281905220545b919050565b60065468010000000000000000900467ffffffffffffffff1681565b6003546000908190819081908190600160a060020a0316331462000b2c57600080fd5b600160a060020a038b16151562000b4257600080fd5b600554600160a060020a038c8116600090815260076020526040902054670de0b6b3a76400008d0297507401000000000000000000000000000000000000000090920467ffffffffffffffff168a8102965089810295508802935016151562000c5c576003548b908a86019085908590600190600160a060020a031662000bc8620017d7565b600160a060020a039687168152602081019590955260408086019490945260608501929092521515608084015290921660a082015290519081900360c001906000f08015801562000c1d573d6000803e3d6000fd5b50600160a060020a038c81166000908152600760205260409020805473ffffffffffffffffffffffffffffffffffffffff191691831691909117905590505b600554600160a060020a038c811660009081526007602090815260408083205481517f23b872dd0000000000000000000000000000000000000000000000000000000081529585166004870152909316602485015260448401899052915130936323b872dd936064808301949193928390030190829087803b15801562000ce257600080fd5b505af115801562000cf7573d6000803e3d6000fd5b505050506040513d602081101562000d0e57600080fd5b5051151562000d1c57600080fd5b5050505050505050505050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111562000d8057336000908152600260209081526040808320600160a060020a038816845290915281205562000db7565b62000d92818463ffffffff6200160b16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600354600160a060020a0316331462000e3557600080fd5b600160a060020a038082166000908152600760205260408082205481517f74a8f10300000000000000000000000000000000000000000000000000000000815230600482015291519316926374a8f1039260248084019391929182900301818387803b15801562000ea557600080fd5b505af115801562000eba573d6000803e3d6000fd5b5050505050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331462000ef457600080fd5b62000f248282600080600660089054906101000a900467ffffffffffffffff1667ffffffffffffffff1662001374565b5050565b600354600160a060020a031681565b60408051808201909152600381527f4345530000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151562000f8657600080fd5b3360009081526020819052604090205482111562000fa357600080fd5b3360009081526020819052604090205462000fc5908363ffffffff6200160b16565b3360009081526020819052604080822092909255600160a060020a0385168152205462000ff9908363ffffffff6200161e16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600454600160a060020a031681565b600354600160a060020a031633146200107c57600080fd5b600554600160a060020a031615156200109457600080fd5b600560009054906101000a9004600160a060020a0316600160a060020a03166312d60f866040518163ffffffff1660e060020a028152600401600060405180830381600087803b158015620010e857600080fd5b505af1158015620010fd573d6000803e3d6000fd5b50505050565b600160a060020a038181166000908152600760205260408120549091161515620011305750600062000ae8565b600160a060020a0380831660009081526007602090815260408083205481517f1726cbc80000000000000000000000000000000000000000000000000000000081523060048201529151941693631726cbc893602480840194938390030190829087803b158015620011a157600080fd5b505af1158015620011b6573d6000803e3d6000fd5b505050506040513d6020811015620011cd57600080fd5b5051905062000ae8565b600354600160a060020a03163314620011ef57600080fd5b60065462000f249083908390600090700100000000000000000000000000000000900467ffffffffffffffff168062001374565b600160a060020a038082166000908152600760205260408082205481517f19165587000000000000000000000000000000000000000000000000000000008152306004820152915193169263191655879260248084019391929182900301818387803b15801562000ea557600080fd5b600760205260009081526040902054600160a060020a031681565b336000908152600260209081526040808320600160a060020a0386168452909152812054620012e4908363ffffffff6200161e16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a031633146200138c57600080fd5b62000eba85854286868662000b09565b600554600160a060020a031681565b6003546000908190600160a060020a03163314620013c857600080fd5b600160a060020a0388161515620013de57600080fd5b600160a060020a03808916600090815260076020526040902054670de0b6b3a764000085029350161515620014c15760035488908890889088908890600160a060020a03166200142d620017d7565b600160a060020a039687168152602081019590955260408086019490945260608501929092521515608084015290921660a082015290519081900360c001906000f08015801562001482573d6000803e3d6000fd5b50600160a060020a038981166000908152600760205260409020805473ffffffffffffffffffffffffffffffffffffffff191691831691909117905590505b600554600160a060020a0389811660009081526007602090815260408083205481517f23b872dd0000000000000000000000000000000000000000000000000000000081529585166004870152909316602485015260448401869052915130936323b872dd936064808301949193928390030190829087803b1580156200154757600080fd5b505af11580156200155c573d6000803e3d6000fd5b505050506040513d60208110156200157357600080fd5b505115156200158157600080fd5b5050505050505050565b60065467ffffffffffffffff1681565b60055474010000000000000000000000000000000000000000900467ffffffffffffffff1681565b600354600160a060020a03163314620015db57600080fd5b60065462000f24908390839067ffffffffffffffff80821691600091680100000000000000009091041662001374565b6000828211156200161857fe5b50900390565b6000828201838110156200162e57fe5b9392505050565b6003546000908190600160a060020a031633146200165257600080fd5b306200165d620017e8565b600160a060020a03909116815260405190819003602001906000f0801580156200168b573d6000803e3d6000fd5b5090506200169a8382620016f9565b80600160a060020a03166312d60f866040518163ffffffff1660e060020a028152600401600060405180830381600087803b158015620016d957600080fd5b505af1158015620016ee573d6000803e3d6000fd5b509295945050505050565b600354600090600160a060020a031633146200171457600080fd5b50600154670de0b6b3a764000083029062001736908263ffffffff6200161e16565b600155600160a060020a03821660009081526020819052604090205462001764908263ffffffff6200161e16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36001546b409f9cbc7c4a04c2200000001015620017d257600080fd5b505050565b60405161087d80620017fa83390190565b60405161029a8062002077833901905600608060405234801561001057600080fd5b5060405160c08061087d83398101604090815281516020830151918301516060840151608085015160a09095015160008054600160a060020a0319163317905592949192909190600160a060020a038616151561006c57600080fd5b8284111561007957600080fd5b60018054600160a060020a031916600160a060020a0388161790556005805460ff191683151517905560048390556100be85856401000000006100f181026106431704565b600255600394909455505060088054600160a060020a031916600160a060020a0390931692909217909155506101079050565b60008282018381101561010057fe5b9392505050565b610767806101166000396000f3006080604052600436106100a05763ffffffff60e060020a6000350416630fb5a6b481146100a557806313d033c0146100cc5780631726cbc8146100e15780631916558714610102578063384711cc1461012557806338af3eed1461014657806374a8f10314610177578063872a7810146101985780638da5cb5b146101c15780639852595c146101d6578063be9a6555146101f7578063fa01dc061461020c575b600080fd5b3480156100b157600080fd5b506100ba61022d565b60408051918252519081900360200190f35b3480156100d857600080fd5b506100ba610233565b3480156100ed57600080fd5b506100ba600160a060020a0360043516610239565b34801561010e57600080fd5b50610123600160a060020a0360043516610271565b005b34801561013157600080fd5b506100ba600160a060020a036004351661031d565b34801561015257600080fd5b5061015b610474565b60408051600160a060020a039092168252519081900360200190f35b34801561018357600080fd5b50610123600160a060020a0360043516610483565b3480156101a457600080fd5b506101ad6105ec565b604080519115158252519081900360200190f35b3480156101cd57600080fd5b5061015b6105f5565b3480156101e257600080fd5b506100ba600160a060020a0360043516610604565b34801561020357600080fd5b506100ba610616565b34801561021857600080fd5b506101ad600160a060020a036004351661061c565b60045481565b60025481565b600160a060020a03811660009081526006602052604081205461026b9061025f8461031d565b9063ffffffff61063116565b92915050565b600061027c82610239565b90506000811161028b57600080fd5b600160a060020a0382166000908152600660205260409020546102b4908263ffffffff61064316565b600160a060020a038084166000818152600660205260409020929092556001546102e69291168363ffffffff61065d16565b6040805182815290517ffb81f9b30d73d830c3544b34d827c08142579ee75710b490bab0b3995468c5659181900360200190a15050565b600080600083600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561037d57600080fd5b505af1158015610391573d6000803e3d6000fd5b505050506040513d60208110156103a757600080fd5b5051600160a060020a0385166000908152600660205260409020549092506103d690839063ffffffff61064316565b90506002544210156103eb576000925061046d565b6004546003546104009163ffffffff61064316565b421015806104265750600160a060020a03841660009081526007602052604090205460ff165b156104335780925061046d565b61046a60045461045e6104516003544261063190919063ffffffff16565b849063ffffffff6106f916565b9063ffffffff61072416565b92505b5050919050565b600154600160a060020a031681565b6000805481908190600160a060020a0316331461049f57600080fd5b60055460ff1615156104b057600080fd5b600160a060020a03841660009081526007602052604090205460ff16156104d657600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038616916370a082319160248083019260209291908290030181600087803b15801561053757600080fd5b505af115801561054b573d6000803e3d6000fd5b505050506040513d602081101561056157600080fd5b5051925061056e84610239565b9150610580838363ffffffff61063116565b600160a060020a038086166000818152600760205260409020805460ff191660011790556008549293506105bd929091168363ffffffff61065d16565b6040517f44825a4b2df8acb19ce4e1afba9aa850c8b65cdb7942e2078f27d0b0960efee690600090a150505050565b60055460ff1681565b600054600160a060020a031681565b60066020526000908152604090205481565b60035481565b60076020526000908152604090205460ff1681565b60008282111561063d57fe5b50900390565b60008282018381101561065257fe5b8091505b5092915050565b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b1580156106c057600080fd5b505af11580156106d4573d6000803e3d6000fd5b505050506040513d60208110156106ea57600080fd5b505115156106f457fe5b505050565b60008083151561070c5760009150610656565b5082820282848281151561071c57fe5b041461065257fe5b600080828481151561073257fe5b049493505050505600a165627a7a72305820663d194d0ba6406648ddaa5be7e1e46896793ad2a87681b0eeec6ff9cfc9c21e0029608060405234801561001057600080fd5b5060405160208061029a833981016040525160008054600160a060020a03909216600160a060020a0319909216919091179055610248806100526000396000f30060806040526004361061004b5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166312d60f868114610050578063fc0c546a14610067575b600080fd5b34801561005c57600080fd5b506100656100a5565b005b34801561007357600080fd5b5061007c610200565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b60008054604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a082319160248082019260209290919082900301818787803b15801561011857600080fd5b505af115801561012c573d6000803e3d6000fd5b505050506040513d602081101561014257600080fd5b505190506000811161015357600080fd5b60008054604080517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90921660048301819052602483018590529051909263095ea7b392604480820193602093909283900390910190829087803b1580156101d157600080fd5b505af11580156101e5573d6000803e3d6000fd5b505050506040513d60208110156101fb57600080fd5b505050565b60005473ffffffffffffffffffffffffffffffffffffffff16815600a165627a7a7230582024149641088d60cb0b0662c46d171ca2356507991a80134231eb312cc59277f60029a165627a7a72305820b3a6b8e2c89abe11dd32f21dd9c34c3883e6d39dae730b5162a6d66d24baab6d0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000624485638990c6a3e0a120e38a635d5044d4778e

-----Decoded View---------------
Arg [0] : _saleTokensAddress (address): 0x624485638990C6a3E0a120e38a635D5044D4778e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000624485638990c6a3e0a120e38a635d5044d4778e


Swarm Source

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