ETH Price: $3,586.28 (+3.61%)
 

Overview

Max Total Supply

1,400,000,000 NIC

Holders

2,341

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
56,503,354.247177 NIC

Value
$0.00
0x380ceecad13f62bec4cd92715dfab783b98a18f8
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:
NIC_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 2019-06-15
*/

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 NIC_Token is BurnableToken, Owned {
    string public constant name = "next i coin";
    string public constant symbol = "NIC";
    uint8 public constant decimals = 18;
 
    /// Maximum tokens to be allocated ( 2 billion NIC)
    uint256 public constant HARD_CAP = 2000000000 * 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 internal daySecond     = 86400;
    uint64 internal lock90Days    = 90;
    uint64 internal unlock100Days = 100;
    uint64 internal 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 - 1.4 billion
        uint256 saleTokens = 1400000000;
        createTokensInt(saleTokens, saleTokensAddress);

        require(totalSupply_ <= HARD_CAP);
    }

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

        /// Reserve tokens - 0.6 billion 
        uint256 reserveTokens = 600000000;
        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":"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":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":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"}]

608060408190526005805460a060020a60e060020a03191676015180000000000000000000000000000000000000000017905560068054605a67ffffffffffffffff1990911617604060020a608060020a0319166864000000000000000017608060020a60c060020a03191671016d000000000000000000000000000000001790556020806200236c833981016040525160038054600160a060020a031916331790556000600160a060020a0382161515620000ba57600080fd5b5060048054600160a060020a031916600160a060020a0383811691909117918290556353724e0091620000f9918391166401000000006200011d810204565b6001546b06765c793fa10079d000000010156200011557600080fd5b505062000222565b600354600090600160a060020a031633146200013857600080fd5b50600154670de0b6b3a76400008302906200016290826401000000006200142b6200020b82021704565b600155600160a060020a0382166000908152602081905260409020546200019890826401000000006200142b6200020b82021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36001546b06765c793fa10079d000000010156200020657600080fd5b505050565b6000828201838110156200021b57fe5b9392505050565b61213a80620002326000396000f3006080604052600436106101665763ffffffff60e060020a60003504166306fdde03811461016b578063095ea7b3146101f557806318160ddd1461022d57806323b872dd14610254578063313ce5671461027e57806333902973146102a95780633a03171c146102c057806342966c68146102d557806354dd1da4146102ed578063593557361461030257806362290f351461032357806366188463146103535780636e68751c1461037757806370a08231146103985780638b88cb94146103b95780638da5cb5b146103dd57806395d89b411461040e578063a9059cbb14610423578063afa3174414610447578063b0dd5b621461045c578063b8c7839114610471578063bbae7ab414610492578063c26fe7ce146104b6578063c47cfca1146104d7578063d73dd623146104f8578063dd62ed3e1461051c578063de9ab12d14610543578063e4fe9d1514610570578063edfedf9314610585578063fb17eaf9146105b7575b600080fd5b34801561017757600080fd5b506101806105db565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020157600080fd5b50610219600160a060020a0360043516602435610612565b604080519115158252519081900360200190f35b34801561023957600080fd5b50610242610678565b60408051918252519081900360200190f35b34801561026057600080fd5b50610219600160a060020a036004358116906024351660443561067e565b34801561028a57600080fd5b506102936107f5565b6040805160ff9092168252519081900360200190f35b3480156102b557600080fd5b506102be6107fa565b005b3480156102cc57600080fd5b50610242610884565b3480156102e157600080fd5b506102be600435610894565b3480156102f957600080fd5b506102be610951565b34801561030e57600080fd5b50610242600160a060020a036004351661095c565b34801561032f57600080fd5b506102be600160a060020a036004351660243560443560643560843560a435610989565b34801561035f57600080fd5b50610219600160a060020a0360043516602435610b9f565b34801561038357600080fd5b506102be600160a060020a0360043516610c8f565b3480156103a457600080fd5b50610242600160a060020a0360043516610d30565b3480156103c557600080fd5b506102be600160a060020a0360043516602435610d4b565b3480156103e957600080fd5b506103f2610d94565b60408051600160a060020a039092168252519081900360200190f35b34801561041a57600080fd5b50610180610da3565b34801561042f57600080fd5b50610219600160a060020a0360043516602435610dda565b34801561045357600080fd5b506103f2610ebb565b34801561046857600080fd5b506102be610eca565b34801561047d57600080fd5b50610242600160a060020a0360043516610f65565b34801561049e57600080fd5b506102be600160a060020a0360043516602435611033565b3480156104c257600080fd5b506102be600160a060020a036004351661107c565b3480156104e357600080fd5b506103f2600160a060020a03600435166110eb565b34801561050457600080fd5b50610219600160a060020a0360043516602435611106565b34801561052857600080fd5b50610242600160a060020a036004358116906024351661119f565b34801561054f57600080fd5b506102be600160a060020a03600435166024356044356064356084356111ca565b34801561057c57600080fd5b506103f26111ef565b34801561059157600080fd5b506102be600160a060020a0360043516602435604435606435608435151560a4356111fe565b3480156105c357600080fd5b506102be600160a060020a03600435166024356113d4565b60408051808201909152600b81527f6e657874206920636f696e000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a038316151561069557600080fd5b600160a060020a0384166000908152602081905260409020548211156106ba57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156106ea57600080fd5b600160a060020a038416600090815260208190526040902054610713908363ffffffff61141916565b600160a060020a038086166000908152602081905260408082209390935590851681522054610748908363ffffffff61142b16565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461078a908363ffffffff61141916565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b600354600090600160a060020a0316331461081457600080fd5b600554600160a060020a03161561082a57600080fd5b506323c3460061083981611441565b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790556001546b06765c793fa10079d0000000101561088157600080fd5b50565b6b06765c793fa10079d000000081565b60008082116108a257600080fd5b336000908152602081905260409020548211156108be57600080fd5b50336000818152602081905260409020546108df908363ffffffff61141916565b600160a060020a03821660009081526020819052604090205560015461090b908363ffffffff61141916565b600155604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b61095a3361107c565b565b600160a060020a03808216600090815260076020908152604080832054909316825281905220545b919050565b6003546000908190819081908190600160a060020a031633146109ab57600080fd5b600160a060020a038b1615156109c057600080fd5b600554600160a060020a038c8116600090815260076020526040902054670de0b6b3a76400008d0297507401000000000000000000000000000000000000000090920467ffffffffffffffff168a81029650898102955088029350161515610ad6576003548b908a86019085908590600190600160a060020a0316610a436115d5565b600160a060020a039687168152602081019590955260408086019490945260608501929092521515608084015290921660a082015290519081900360c001906000f080158015610a97573d6000803e3d6000fd5b50600160a060020a038c81166000908152600760205260409020805473ffffffffffffffffffffffffffffffffffffffff191691831691909117905590505b600554600160a060020a038c811660009081526007602090815260408083205481517f23b872dd0000000000000000000000000000000000000000000000000000000081529585166004870152909316602485015260448401899052915130936323b872dd936064808301949193928390030190829087803b158015610b5b57600080fd5b505af1158015610b6f573d6000803e3d6000fd5b505050506040513d6020811015610b8557600080fd5b50511515610b9257600080fd5b5050505050505050505050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610bf457336000908152600260209081526040808320600160a060020a0388168452909152812055610c29565b610c04818463ffffffff61141916565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600354600160a060020a03163314610ca657600080fd5b600160a060020a038082166000908152600760205260408082205481517f74a8f10300000000000000000000000000000000000000000000000000000000815230600482015291519316926374a8f1039260248084019391929182900301818387803b158015610d1557600080fd5b505af1158015610d29573d6000803e3d6000fd5b5050505050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610d6257600080fd5b610d908282600080600660089054906101000a900467ffffffffffffffff1667ffffffffffffffff166111ca565b5050565b600354600160a060020a031681565b60408051808201909152600381527f4e49430000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610df157600080fd5b33600090815260208190526040902054821115610e0d57600080fd5b33600090815260208190526040902054610e2d908363ffffffff61141916565b3360009081526020819052604080822092909255600160a060020a03851681522054610e5f908363ffffffff61142b16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600454600160a060020a031681565b600354600160a060020a03163314610ee157600080fd5b600554600160a060020a03161515610ef857600080fd5b600560009054906101000a9004600160a060020a0316600160a060020a03166312d60f866040518163ffffffff1660e060020a028152600401600060405180830381600087803b158015610f4b57600080fd5b505af1158015610f5f573d6000803e3d6000fd5b50505050565b600160a060020a038181166000908152600760205260408120549091161515610f9057506000610984565b600160a060020a0380831660009081526007602090815260408083205481517f1726cbc80000000000000000000000000000000000000000000000000000000081523060048201529151941693631726cbc893602480840194938390030190829087803b15801561100057600080fd5b505af1158015611014573d6000803e3d6000fd5b505050506040513d602081101561102a57600080fd5b50519050610984565b600354600160a060020a0316331461104a57600080fd5b600654610d909083908390600090700100000000000000000000000000000000900467ffffffffffffffff16806111ca565b600160a060020a038082166000908152600760205260408082205481517f19165587000000000000000000000000000000000000000000000000000000008152306004820152915193169263191655879260248084019391929182900301818387803b158015610d1557600080fd5b600760205260009081526040902054600160a060020a031681565b336000908152600260209081526040808320600160a060020a038616845290915281205461113a908363ffffffff61142b16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a031633146111e157600080fd5b610d29858542868686610989565b600554600160a060020a031681565b6003546000908190600160a060020a0316331461121a57600080fd5b600160a060020a038816151561122f57600080fd5b600160a060020a03808916600090815260076020526040902054670de0b6b3a76400008502935016151561130e5760035488908890889088908890600160a060020a031661127b6115d5565b600160a060020a039687168152602081019590955260408086019490945260608501929092521515608084015290921660a082015290519081900360c001906000f0801580156112cf573d6000803e3d6000fd5b50600160a060020a038981166000908152600760205260409020805473ffffffffffffffffffffffffffffffffffffffff191691831691909117905590505b600554600160a060020a0389811660009081526007602090815260408083205481517f23b872dd0000000000000000000000000000000000000000000000000000000081529585166004870152909316602485015260448401869052915130936323b872dd936064808301949193928390030190829087803b15801561139357600080fd5b505af11580156113a7573d6000803e3d6000fd5b505050506040513d60208110156113bd57600080fd5b505115156113ca57600080fd5b5050505050505050565b600354600160a060020a031633146113eb57600080fd5b600654610d90908390839067ffffffffffffffff8082169160009168010000000000000000909104166111ca565b60008282111561142557fe5b50900390565b60008282018381101561143a57fe5b9392505050565b6003546000908190600160a060020a0316331461145d57600080fd5b306114666115e6565b600160a060020a03909116815260405190819003602001906000f080158015611493573d6000803e3d6000fd5b5090506114a083826114fd565b80600160a060020a03166312d60f866040518163ffffffff1660e060020a028152600401600060405180830381600087803b1580156114de57600080fd5b505af11580156114f2573d6000803e3d6000fd5b509295945050505050565b600354600090600160a060020a0316331461151757600080fd5b50600154670de0b6b3a7640000830290611537908263ffffffff61142b16565b600155600160a060020a038216600090815260208190526040902054611563908263ffffffff61142b16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36001546b06765c793fa10079d000000010156115d057600080fd5b505050565b60405161087d80620015f883390190565b60405161029a8062001e75833901905600608060405234801561001057600080fd5b5060405160c08061087d83398101604090815281516020830151918301516060840151608085015160a09095015160008054600160a060020a0319163317905592949192909190600160a060020a038616151561006c57600080fd5b8284111561007957600080fd5b60018054600160a060020a031916600160a060020a0388161790556005805460ff191683151517905560048390556100be85856401000000006100f181026106431704565b600255600394909455505060088054600160a060020a031916600160a060020a0390931692909217909155506101079050565b60008282018381101561010057fe5b9392505050565b610767806101166000396000f3006080604052600436106100a05763ffffffff60e060020a6000350416630fb5a6b481146100a557806313d033c0146100cc5780631726cbc8146100e15780631916558714610102578063384711cc1461012557806338af3eed1461014657806374a8f10314610177578063872a7810146101985780638da5cb5b146101c15780639852595c146101d6578063be9a6555146101f7578063fa01dc061461020c575b600080fd5b3480156100b157600080fd5b506100ba61022d565b60408051918252519081900360200190f35b3480156100d857600080fd5b506100ba610233565b3480156100ed57600080fd5b506100ba600160a060020a0360043516610239565b34801561010e57600080fd5b50610123600160a060020a0360043516610271565b005b34801561013157600080fd5b506100ba600160a060020a036004351661031d565b34801561015257600080fd5b5061015b610474565b60408051600160a060020a039092168252519081900360200190f35b34801561018357600080fd5b50610123600160a060020a0360043516610483565b3480156101a457600080fd5b506101ad6105ec565b604080519115158252519081900360200190f35b3480156101cd57600080fd5b5061015b6105f5565b3480156101e257600080fd5b506100ba600160a060020a0360043516610604565b34801561020357600080fd5b506100ba610616565b34801561021857600080fd5b506101ad600160a060020a036004351661061c565b60045481565b60025481565b600160a060020a03811660009081526006602052604081205461026b9061025f8461031d565b9063ffffffff61063116565b92915050565b600061027c82610239565b90506000811161028b57600080fd5b600160a060020a0382166000908152600660205260409020546102b4908263ffffffff61064316565b600160a060020a038084166000818152600660205260409020929092556001546102e69291168363ffffffff61065d16565b6040805182815290517ffb81f9b30d73d830c3544b34d827c08142579ee75710b490bab0b3995468c5659181900360200190a15050565b600080600083600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561037d57600080fd5b505af1158015610391573d6000803e3d6000fd5b505050506040513d60208110156103a757600080fd5b5051600160a060020a0385166000908152600660205260409020549092506103d690839063ffffffff61064316565b90506002544210156103eb576000925061046d565b6004546003546104009163ffffffff61064316565b421015806104265750600160a060020a03841660009081526007602052604090205460ff165b156104335780925061046d565b61046a60045461045e6104516003544261063190919063ffffffff16565b849063ffffffff6106f916565b9063ffffffff61072416565b92505b5050919050565b600154600160a060020a031681565b6000805481908190600160a060020a0316331461049f57600080fd5b60055460ff1615156104b057600080fd5b600160a060020a03841660009081526007602052604090205460ff16156104d657600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038616916370a082319160248083019260209291908290030181600087803b15801561053757600080fd5b505af115801561054b573d6000803e3d6000fd5b505050506040513d602081101561056157600080fd5b5051925061056e84610239565b9150610580838363ffffffff61063116565b600160a060020a038086166000818152600760205260409020805460ff191660011790556008549293506105bd929091168363ffffffff61065d16565b6040517f44825a4b2df8acb19ce4e1afba9aa850c8b65cdb7942e2078f27d0b0960efee690600090a150505050565b60055460ff1681565b600054600160a060020a031681565b60066020526000908152604090205481565b60035481565b60076020526000908152604090205460ff1681565b60008282111561063d57fe5b50900390565b60008282018381101561065257fe5b8091505b5092915050565b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b1580156106c057600080fd5b505af11580156106d4573d6000803e3d6000fd5b505050506040513d60208110156106ea57600080fd5b505115156106f457fe5b505050565b60008083151561070c5760009150610656565b5082820282848281151561071c57fe5b041461065257fe5b600080828481151561073257fe5b049493505050505600a165627a7a723058200c88993591291e91b24d766ea31fe191fdbfbdef82ce4996fdea27fe00dd5cf00029608060405234801561001057600080fd5b5060405160208061029a833981016040525160008054600160a060020a03909216600160a060020a0319909216919091179055610248806100526000396000f30060806040526004361061004b5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166312d60f868114610050578063fc0c546a14610067575b600080fd5b34801561005c57600080fd5b506100656100a5565b005b34801561007357600080fd5b5061007c610200565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b60008054604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a082319160248082019260209290919082900301818787803b15801561011857600080fd5b505af115801561012c573d6000803e3d6000fd5b505050506040513d602081101561014257600080fd5b505190506000811161015357600080fd5b60008054604080517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90921660048301819052602483018590529051909263095ea7b392604480820193602093909283900390910190829087803b1580156101d157600080fd5b505af11580156101e5573d6000803e3d6000fd5b505050506040513d60208110156101fb57600080fd5b505050565b60005473ffffffffffffffffffffffffffffffffffffffff16815600a165627a7a7230582082634aeceb90b85d46895b2a87e591787b694e5fcf61323454e373286801f6220029a165627a7a72305820f7a08eb2bf89a6e2539dd6753199221e27d65f1f8279e7f60b04bd1684ada22500290000000000000000000000005098ff424ea8636fe525a5cb7391935196c8cc26

Deployed Bytecode

0x6080604052600436106101665763ffffffff60e060020a60003504166306fdde03811461016b578063095ea7b3146101f557806318160ddd1461022d57806323b872dd14610254578063313ce5671461027e57806333902973146102a95780633a03171c146102c057806342966c68146102d557806354dd1da4146102ed578063593557361461030257806362290f351461032357806366188463146103535780636e68751c1461037757806370a08231146103985780638b88cb94146103b95780638da5cb5b146103dd57806395d89b411461040e578063a9059cbb14610423578063afa3174414610447578063b0dd5b621461045c578063b8c7839114610471578063bbae7ab414610492578063c26fe7ce146104b6578063c47cfca1146104d7578063d73dd623146104f8578063dd62ed3e1461051c578063de9ab12d14610543578063e4fe9d1514610570578063edfedf9314610585578063fb17eaf9146105b7575b600080fd5b34801561017757600080fd5b506101806105db565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020157600080fd5b50610219600160a060020a0360043516602435610612565b604080519115158252519081900360200190f35b34801561023957600080fd5b50610242610678565b60408051918252519081900360200190f35b34801561026057600080fd5b50610219600160a060020a036004358116906024351660443561067e565b34801561028a57600080fd5b506102936107f5565b6040805160ff9092168252519081900360200190f35b3480156102b557600080fd5b506102be6107fa565b005b3480156102cc57600080fd5b50610242610884565b3480156102e157600080fd5b506102be600435610894565b3480156102f957600080fd5b506102be610951565b34801561030e57600080fd5b50610242600160a060020a036004351661095c565b34801561032f57600080fd5b506102be600160a060020a036004351660243560443560643560843560a435610989565b34801561035f57600080fd5b50610219600160a060020a0360043516602435610b9f565b34801561038357600080fd5b506102be600160a060020a0360043516610c8f565b3480156103a457600080fd5b50610242600160a060020a0360043516610d30565b3480156103c557600080fd5b506102be600160a060020a0360043516602435610d4b565b3480156103e957600080fd5b506103f2610d94565b60408051600160a060020a039092168252519081900360200190f35b34801561041a57600080fd5b50610180610da3565b34801561042f57600080fd5b50610219600160a060020a0360043516602435610dda565b34801561045357600080fd5b506103f2610ebb565b34801561046857600080fd5b506102be610eca565b34801561047d57600080fd5b50610242600160a060020a0360043516610f65565b34801561049e57600080fd5b506102be600160a060020a0360043516602435611033565b3480156104c257600080fd5b506102be600160a060020a036004351661107c565b3480156104e357600080fd5b506103f2600160a060020a03600435166110eb565b34801561050457600080fd5b50610219600160a060020a0360043516602435611106565b34801561052857600080fd5b50610242600160a060020a036004358116906024351661119f565b34801561054f57600080fd5b506102be600160a060020a03600435166024356044356064356084356111ca565b34801561057c57600080fd5b506103f26111ef565b34801561059157600080fd5b506102be600160a060020a0360043516602435604435606435608435151560a4356111fe565b3480156105c357600080fd5b506102be600160a060020a03600435166024356113d4565b60408051808201909152600b81527f6e657874206920636f696e000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a038316151561069557600080fd5b600160a060020a0384166000908152602081905260409020548211156106ba57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156106ea57600080fd5b600160a060020a038416600090815260208190526040902054610713908363ffffffff61141916565b600160a060020a038086166000908152602081905260408082209390935590851681522054610748908363ffffffff61142b16565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461078a908363ffffffff61141916565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b601281565b600354600090600160a060020a0316331461081457600080fd5b600554600160a060020a03161561082a57600080fd5b506323c3460061083981611441565b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790556001546b06765c793fa10079d0000000101561088157600080fd5b50565b6b06765c793fa10079d000000081565b60008082116108a257600080fd5b336000908152602081905260409020548211156108be57600080fd5b50336000818152602081905260409020546108df908363ffffffff61141916565b600160a060020a03821660009081526020819052604090205560015461090b908363ffffffff61141916565b600155604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a25050565b61095a3361107c565b565b600160a060020a03808216600090815260076020908152604080832054909316825281905220545b919050565b6003546000908190819081908190600160a060020a031633146109ab57600080fd5b600160a060020a038b1615156109c057600080fd5b600554600160a060020a038c8116600090815260076020526040902054670de0b6b3a76400008d0297507401000000000000000000000000000000000000000090920467ffffffffffffffff168a81029650898102955088029350161515610ad6576003548b908a86019085908590600190600160a060020a0316610a436115d5565b600160a060020a039687168152602081019590955260408086019490945260608501929092521515608084015290921660a082015290519081900360c001906000f080158015610a97573d6000803e3d6000fd5b50600160a060020a038c81166000908152600760205260409020805473ffffffffffffffffffffffffffffffffffffffff191691831691909117905590505b600554600160a060020a038c811660009081526007602090815260408083205481517f23b872dd0000000000000000000000000000000000000000000000000000000081529585166004870152909316602485015260448401899052915130936323b872dd936064808301949193928390030190829087803b158015610b5b57600080fd5b505af1158015610b6f573d6000803e3d6000fd5b505050506040513d6020811015610b8557600080fd5b50511515610b9257600080fd5b5050505050505050505050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610bf457336000908152600260209081526040808320600160a060020a0388168452909152812055610c29565b610c04818463ffffffff61141916565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600354600160a060020a03163314610ca657600080fd5b600160a060020a038082166000908152600760205260408082205481517f74a8f10300000000000000000000000000000000000000000000000000000000815230600482015291519316926374a8f1039260248084019391929182900301818387803b158015610d1557600080fd5b505af1158015610d29573d6000803e3d6000fd5b5050505050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610d6257600080fd5b610d908282600080600660089054906101000a900467ffffffffffffffff1667ffffffffffffffff166111ca565b5050565b600354600160a060020a031681565b60408051808201909152600381527f4e49430000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610df157600080fd5b33600090815260208190526040902054821115610e0d57600080fd5b33600090815260208190526040902054610e2d908363ffffffff61141916565b3360009081526020819052604080822092909255600160a060020a03851681522054610e5f908363ffffffff61142b16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600454600160a060020a031681565b600354600160a060020a03163314610ee157600080fd5b600554600160a060020a03161515610ef857600080fd5b600560009054906101000a9004600160a060020a0316600160a060020a03166312d60f866040518163ffffffff1660e060020a028152600401600060405180830381600087803b158015610f4b57600080fd5b505af1158015610f5f573d6000803e3d6000fd5b50505050565b600160a060020a038181166000908152600760205260408120549091161515610f9057506000610984565b600160a060020a0380831660009081526007602090815260408083205481517f1726cbc80000000000000000000000000000000000000000000000000000000081523060048201529151941693631726cbc893602480840194938390030190829087803b15801561100057600080fd5b505af1158015611014573d6000803e3d6000fd5b505050506040513d602081101561102a57600080fd5b50519050610984565b600354600160a060020a0316331461104a57600080fd5b600654610d909083908390600090700100000000000000000000000000000000900467ffffffffffffffff16806111ca565b600160a060020a038082166000908152600760205260408082205481517f19165587000000000000000000000000000000000000000000000000000000008152306004820152915193169263191655879260248084019391929182900301818387803b158015610d1557600080fd5b600760205260009081526040902054600160a060020a031681565b336000908152600260209081526040808320600160a060020a038616845290915281205461113a908363ffffffff61142b16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a031633146111e157600080fd5b610d29858542868686610989565b600554600160a060020a031681565b6003546000908190600160a060020a0316331461121a57600080fd5b600160a060020a038816151561122f57600080fd5b600160a060020a03808916600090815260076020526040902054670de0b6b3a76400008502935016151561130e5760035488908890889088908890600160a060020a031661127b6115d5565b600160a060020a039687168152602081019590955260408086019490945260608501929092521515608084015290921660a082015290519081900360c001906000f0801580156112cf573d6000803e3d6000fd5b50600160a060020a038981166000908152600760205260409020805473ffffffffffffffffffffffffffffffffffffffff191691831691909117905590505b600554600160a060020a0389811660009081526007602090815260408083205481517f23b872dd0000000000000000000000000000000000000000000000000000000081529585166004870152909316602485015260448401869052915130936323b872dd936064808301949193928390030190829087803b15801561139357600080fd5b505af11580156113a7573d6000803e3d6000fd5b505050506040513d60208110156113bd57600080fd5b505115156113ca57600080fd5b5050505050505050565b600354600160a060020a031633146113eb57600080fd5b600654610d90908390839067ffffffffffffffff8082169160009168010000000000000000909104166111ca565b60008282111561142557fe5b50900390565b60008282018381101561143a57fe5b9392505050565b6003546000908190600160a060020a0316331461145d57600080fd5b306114666115e6565b600160a060020a03909116815260405190819003602001906000f080158015611493573d6000803e3d6000fd5b5090506114a083826114fd565b80600160a060020a03166312d60f866040518163ffffffff1660e060020a028152600401600060405180830381600087803b1580156114de57600080fd5b505af11580156114f2573d6000803e3d6000fd5b509295945050505050565b600354600090600160a060020a0316331461151757600080fd5b50600154670de0b6b3a7640000830290611537908263ffffffff61142b16565b600155600160a060020a038216600090815260208190526040902054611563908263ffffffff61142b16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36001546b06765c793fa10079d000000010156115d057600080fd5b505050565b60405161087d80620015f883390190565b60405161029a8062001e75833901905600608060405234801561001057600080fd5b5060405160c08061087d83398101604090815281516020830151918301516060840151608085015160a09095015160008054600160a060020a0319163317905592949192909190600160a060020a038616151561006c57600080fd5b8284111561007957600080fd5b60018054600160a060020a031916600160a060020a0388161790556005805460ff191683151517905560048390556100be85856401000000006100f181026106431704565b600255600394909455505060088054600160a060020a031916600160a060020a0390931692909217909155506101079050565b60008282018381101561010057fe5b9392505050565b610767806101166000396000f3006080604052600436106100a05763ffffffff60e060020a6000350416630fb5a6b481146100a557806313d033c0146100cc5780631726cbc8146100e15780631916558714610102578063384711cc1461012557806338af3eed1461014657806374a8f10314610177578063872a7810146101985780638da5cb5b146101c15780639852595c146101d6578063be9a6555146101f7578063fa01dc061461020c575b600080fd5b3480156100b157600080fd5b506100ba61022d565b60408051918252519081900360200190f35b3480156100d857600080fd5b506100ba610233565b3480156100ed57600080fd5b506100ba600160a060020a0360043516610239565b34801561010e57600080fd5b50610123600160a060020a0360043516610271565b005b34801561013157600080fd5b506100ba600160a060020a036004351661031d565b34801561015257600080fd5b5061015b610474565b60408051600160a060020a039092168252519081900360200190f35b34801561018357600080fd5b50610123600160a060020a0360043516610483565b3480156101a457600080fd5b506101ad6105ec565b604080519115158252519081900360200190f35b3480156101cd57600080fd5b5061015b6105f5565b3480156101e257600080fd5b506100ba600160a060020a0360043516610604565b34801561020357600080fd5b506100ba610616565b34801561021857600080fd5b506101ad600160a060020a036004351661061c565b60045481565b60025481565b600160a060020a03811660009081526006602052604081205461026b9061025f8461031d565b9063ffffffff61063116565b92915050565b600061027c82610239565b90506000811161028b57600080fd5b600160a060020a0382166000908152600660205260409020546102b4908263ffffffff61064316565b600160a060020a038084166000818152600660205260409020929092556001546102e69291168363ffffffff61065d16565b6040805182815290517ffb81f9b30d73d830c3544b34d827c08142579ee75710b490bab0b3995468c5659181900360200190a15050565b600080600083600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b15801561037d57600080fd5b505af1158015610391573d6000803e3d6000fd5b505050506040513d60208110156103a757600080fd5b5051600160a060020a0385166000908152600660205260409020549092506103d690839063ffffffff61064316565b90506002544210156103eb576000925061046d565b6004546003546104009163ffffffff61064316565b421015806104265750600160a060020a03841660009081526007602052604090205460ff165b156104335780925061046d565b61046a60045461045e6104516003544261063190919063ffffffff16565b849063ffffffff6106f916565b9063ffffffff61072416565b92505b5050919050565b600154600160a060020a031681565b6000805481908190600160a060020a0316331461049f57600080fd5b60055460ff1615156104b057600080fd5b600160a060020a03841660009081526007602052604090205460ff16156104d657600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038616916370a082319160248083019260209291908290030181600087803b15801561053757600080fd5b505af115801561054b573d6000803e3d6000fd5b505050506040513d602081101561056157600080fd5b5051925061056e84610239565b9150610580838363ffffffff61063116565b600160a060020a038086166000818152600760205260409020805460ff191660011790556008549293506105bd929091168363ffffffff61065d16565b6040517f44825a4b2df8acb19ce4e1afba9aa850c8b65cdb7942e2078f27d0b0960efee690600090a150505050565b60055460ff1681565b600054600160a060020a031681565b60066020526000908152604090205481565b60035481565b60076020526000908152604090205460ff1681565b60008282111561063d57fe5b50900390565b60008282018381101561065257fe5b8091505b5092915050565b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b1580156106c057600080fd5b505af11580156106d4573d6000803e3d6000fd5b505050506040513d60208110156106ea57600080fd5b505115156106f457fe5b505050565b60008083151561070c5760009150610656565b5082820282848281151561071c57fe5b041461065257fe5b600080828481151561073257fe5b049493505050505600a165627a7a723058200c88993591291e91b24d766ea31fe191fdbfbdef82ce4996fdea27fe00dd5cf00029608060405234801561001057600080fd5b5060405160208061029a833981016040525160008054600160a060020a03909216600160a060020a0319909216919091179055610248806100526000396000f30060806040526004361061004b5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166312d60f868114610050578063fc0c546a14610067575b600080fd5b34801561005c57600080fd5b506100656100a5565b005b34801561007357600080fd5b5061007c610200565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b60008054604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a082319160248082019260209290919082900301818787803b15801561011857600080fd5b505af115801561012c573d6000803e3d6000fd5b505050506040513d602081101561014257600080fd5b505190506000811161015357600080fd5b60008054604080517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90921660048301819052602483018590529051909263095ea7b392604480820193602093909283900390910190829087803b1580156101d157600080fd5b505af11580156101e5573d6000803e3d6000fd5b505050506040513d60208110156101fb57600080fd5b505050565b60005473ffffffffffffffffffffffffffffffffffffffff16815600a165627a7a7230582082634aeceb90b85d46895b2a87e591787b694e5fcf61323454e373286801f6220029a165627a7a72305820f7a08eb2bf89a6e2539dd6753199221e27d65f1f8279e7f60b04bd1684ada2250029

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

0000000000000000000000005098Ff424eA8636fe525a5cB7391935196c8cc26

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005098Ff424eA8636fe525a5cB7391935196c8cc26


Deployed Bytecode Sourcemap

13384:6936:0:-;;;;;;;;;-1:-1:-1;;;13384:6936:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13434:43;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13434:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;13434:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5373:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5373:206:0;-1:-1:-1;;;;;5373:206:0;;;;;;;;;;;;;;;;;;;;;;;;;2038:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2038:91:0;;;;;;;;;;;;;;;;;;;;4228:488;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4228:488:0;-1:-1:-1;;;;;4228:488:0;;;;;;;;;;;;13528:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13528:35:0;;;;;;;;;;;;;;;;;;;;;;;14728:316;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14728:316:0;;;;;;13630:69;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13630:69:0;;;;12887:490;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12887:490:0;;;;;18965:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18965:93:0;;;;19361:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19361:124:0;-1:-1:-1;;;;;19361:124:0;;;;;16725:976;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16725:976:0;-1:-1:-1;;;;;16725:976:0;;;;;;;;;;;;;;;6627:459;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6627:459:0;-1:-1:-1;;;;;6627:459:0;;;;;;;19982:127;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19982:127:0;-1:-1:-1;;;;;19982:127:0;;;;;2946:115;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2946:115:0;-1:-1:-1;;;;;2946:115:0;;;;;18103:190;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18103:190:0;-1:-1:-1;;;;;18103:190:0;;;;;;;7848:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7848:20:0;;;;;;;;-1:-1:-1;;;;;7848:20:0;;;;;;;;;;;;;;13484:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13484:37:0;;;;2302:423;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2302:423:0;-1:-1:-1;;;;;2302:423:0;;;;;;;13795:32;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13795:32:0;;;;20159:156;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20159:156:0;;;;19560:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19560:261:0;-1:-1:-1;;;;;19560:261:0;;;;;18692:199;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18692:199:0;-1:-1:-1;;;;;18692:199:0;;;;;;;19180:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19180:119:0;-1:-1:-1;;;;;19180:119:0;;;;;14259:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14259:44:0;-1:-1:-1;;;;;14259:44:0;;;;;6330:289;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6330:289:0;-1:-1:-1;;;;;6330:289:0;;;;;;;5920:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5920:148:0;-1:-1:-1;;;;;5920:148:0;;;;;;;;;;17746:268;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17746:268:0;-1:-1:-1;;;;;17746:268:0;;;;;;;;;;;;;13915:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13915:36:0;;;;15900:779;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15900:779:0;-1:-1:-1;;;;;15900:779:0;;;;;;;;;;;;;;;;;18409:202;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18409:202:0;-1:-1:-1;;;;;18409:202:0;;;;;;;13434:43;;;;;;;;;;;;;;;;;;;:::o;5373:206::-;5465:10;5440:4;5457:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5457:29:0;;;;;;;;;;;:38;;;5511;;;;;;;5440:4;;5457:29;;5465:10;;5511:38;;;;;;;;-1:-1:-1;5567:4:0;5373:206;;;;:::o;2038:91::-;2109:12;;2038:91;:::o;4228:488::-;4310:4;-1:-1:-1;;;;;4335:17:0;;;;4327:26;;;;;;-1:-1:-1;;;;;4382:15:0;;:8;:15;;;;;;;;;;;4372:25;;;4364:34;;;;;;-1:-1:-1;;;;;4427:14:0;;;;;;:7;:14;;;;;;;;4442:10;4427:26;;;;;;;;4417:36;;;4409:45;;;;;;-1:-1:-1;;;;;4485:15:0;;:8;:15;;;;;;;;;;;:27;;4505:6;4485:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4467:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4539:13;;;;;;;:25;;4557:6;4539:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4523:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4604:14;;;;;:7;:14;;;;;4619:10;4604:26;;;;;;;:38;;4635:6;4604:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4575:14:0;;;;;;;:7;:14;;;;;;;;4590:10;4575:26;;;;;;;;:67;;;;4658:28;;;;;;;;;;;4575:14;;4658:28;;;;;;;;;;;-1:-1:-1;4704:4:0;4228:488;;;;;:::o;13528:35::-;13561:2;13528:35;:::o;14728:316::-;7995:5;;14891:21;;-1:-1:-1;;;;;7995:5:0;7981:10;:19;7973:28;;;;;;14802:18;;-1:-1:-1;;;;;14802:18:0;:32;14794:41;;;;;;-1:-1:-1;14915:9:0;14956:34;14915:9;14956:19;:34::i;:::-;14935:18;:55;;-1:-1:-1;;14935:55:0;-1:-1:-1;;;;;14935:55:0;;;;;;;;;;-1:-1:-1;15011:12:0;13665:34;-1:-1:-1;15011:24:0;15003:33;;;;;;14728:316;:::o;13630:69::-;13665:34;13630:69;:::o;12887:490::-;13198:14;12943:10;;;12935:19;;;;;;12992:10;12983:8;:20;;;;;;;;;;;12973:30;;;12965:39;;;;;;-1:-1:-1;13215:10:0;13255:8;:16;;;;;;;;;;;:28;;13276:6;13255:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;13236:16:0;;:8;:16;;;;;;;;;;:47;13309:12;;:24;;13326:6;13309:24;:16;:24;:::i;:::-;13294:12;:39;13349:20;;;;;;;;-1:-1:-1;;;;;13349:20:0;;;;;;;;;;;;;12887:490;;:::o;18965:93::-;19016:34;19039:10;19016:22;:34::i;:::-;18965:93::o;19361:124::-;-1:-1:-1;;;;;19459:17:0;;;19423:7;19459:17;;;:9;:17;;;;;;;;;;;;19450:27;;;;;;;19361:124;;;;:::o;16725:976::-;7995:5;;17133:20;;;;;;;;;;-1:-1:-1;;;;;7995:5:0;7981:10;:19;7973:28;;;;;;-1:-1:-1;;;;;17093:26:0;;;;17085:35;;;;;;17238:9;;-1:-1:-1;;;;;17371:23:0;;;;;;;:9;:23;;;;;;17175:21;17156:40;;;-1:-1:-1;17238:9:0;;;;;;17226:21;;;;-1:-1:-1;17277:21:0;;;;-1:-1:-1;17331:24:0;;;-1:-1:-1;17371:23:0;:30;17368:228;;;17521:5;;17458:12;;17472:18;;;;17492:8;;17502:11;;17515:4;;-1:-1:-1;;;;;17521:5:0;17441:86;;:::i;:::-;-1:-1:-1;;;;;17441:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17441:86:0;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;;;;;17542:23:0;;;;;;;:9;:23;;;;;:42;;-1:-1:-1;;17542:42:0;;;;;;;;;;;-1:-1:-1;17368:228:0;17634:18;;-1:-1:-1;;;;;17654:23:0;;;17634:18;17654:23;;;:9;:23;;;;;;;;;17616:76;;;;;17634:18;;;17616:76;;;;17654:23;;;17616:76;;;;;;;;;;;;:4;;:17;;:76;;;;;17654:23;;17616:76;;;;;;;;:4;:76;;;5:2:-1;;;;30:1;27;20:12;5:2;17616:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17616:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17616:76:0;17608:85;;;;;;;;16725:976;;;;;;;;;;;:::o;6627:459::-;6760:10;6711:12;6752:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6752:29:0;;;;;;;;;;6796:27;;;6792:188;;;6848:10;6872:1;6840:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6840:29:0;;;;;;;;;:33;6792:188;;;6938:30;:8;6951:16;6938:30;:12;:30;:::i;:::-;6914:10;6906:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6906:29:0;;;;;;;;;:62;6792:188;7004:10;7026:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6995:61:0;;7026:29;;;;;;;;;;;6995:61;;;;;;;;;7004:10;6995:61;;;;;;;;;;;-1:-1:-1;7074:4:0;;6627:459;-1:-1:-1;;;6627:459:0:o;19982:127::-;7995:5;;-1:-1:-1;;;;;7995:5:0;7981:10;:19;7973:28;;;;;;-1:-1:-1;;;;;20070:17:0;;;;;;;:9;:17;;;;;;;20057:44;;;;;20096:4;20057:44;;;;;;20070:17;;;20057:38;;:44;;;;;20070:17;;20057:44;;;;;;20070:17;;20057:44;;;5:2:-1;;;;30:1;27;20:12;5:2;20057:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20057:44:0;;;;19982:127;:::o;2946:115::-;-1:-1:-1;;;;;3037:16:0;3002:15;3037:16;;;;;;;;;;;;2946:115::o;18103:190::-;7995:5;;-1:-1:-1;;;;;7995:5:0;7981:10;:19;7973:28;;;;;;18212:73;18233:12;18247:16;18265:1;18268;18271:13;;;;;;;;;;;18212:73;;:20;:73::i;:::-;18103:190;;:::o;7848:20::-;;;-1:-1:-1;;;;;7848:20:0;;:::o;13484:37::-;;;;;;;;;;;;;;;;;;;:::o;2302:423::-;2365:4;-1:-1:-1;;;;;2390:17:0;;;;2382:26;;;;;;2446:10;2437:8;:20;;;;;;;;;;;2427:30;;;2419:39;;;;;;2571:10;2562:8;:20;;;;;;;;;;;:32;;2587:6;2562:32;:24;:32;:::i;:::-;2548:10;2539:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;2621:13:0;;;;;;:25;;2639:6;2621:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2605:13:0;;:8;:13;;;;;;;;;;;;:41;;;;2662:33;;;;;;;2605:13;;2671:10;;2662:33;;;;;;;;;;-1:-1:-1;2713:4:0;2302:423;;;;:::o;13795:32::-;;;-1:-1:-1;;;;;13795:32:0;;:::o;20159:156::-;7995:5;;-1:-1:-1;;;;;7995:5:0;7981:10;:19;7973:28;;;;;;20227:18;;-1:-1:-1;;;;;20227:18:0;:32;;20219:41;;;;;;20271:18;;;;;;;;;-1:-1:-1;;;;;20271:18:0;-1:-1:-1;;;;;20271:34:0;;:36;;;;;-1:-1:-1;;;20271:36:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20271:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20271:36:0;;;;20159:156::o;19560:261::-;-1:-1:-1;;;;;19651:17:0;;;19627:7;19651:17;;;:9;:17;;;;;;19627:7;;19651:17;:31;19647:167;;;-1:-1:-1;19707:1:0;19700:8;;19647:167;-1:-1:-1;;;;;19761:17:0;;;;;;;:9;:17;;;;;;;;;19748:54;;;;;19797:4;19748:54;;;;;;19761:17;;;19748:48;;:54;;;;;19761:17;19748:54;;;;;;;19761:17;19748:54;;;5:2:-1;;;;30:1;27;20:12;5:2;19748:54:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19748:54:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19748:54:0;;-1:-1:-1;19741:61:0;;18692:199;7995:5;;-1:-1:-1;;;;;7995:5:0;7981:10;:19;7973:28;;;;;;18858:11;;18802:81;;18823:12;;18837:16;;18855:1;;18858:11;;;;;;18802:20;:81::i;19180:119::-;-1:-1:-1;;;;;19259:17:0;;;;;;;:9;:17;;;;;;;19246:45;;;;;19286:4;19246:45;;;;;;19259:17;;;19246:39;;:45;;;;;19259:17;;19246:45;;;;;;19259:17;;19246:45;;;5:2:-1;;;;30:1;27;20:12;14259:44:0;;;;;;;;;;;;-1:-1:-1;;;;;14259:44:0;;:::o;6330:289::-;6474:10;6409:12;6466:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6466:29:0;;;;;;;;;;:46;;6500:11;6466:46;:33;:46;:::i;:::-;6442:10;6434:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6434:29:0;;;;;;;;;;;;:78;;;6528:61;;;;;;6434:29;;6528:61;;;;;;;;;;;-1:-1:-1;6607:4:0;6330:289;;;;:::o;5920:148::-;-1:-1:-1;;;;;6035:15:0;;;5998:17;6035:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5920:148::o;17746:268::-;7995:5;;-1:-1:-1;;;;;7995:5:0;7981:10;:19;7973:28;;;;;;17913:93;17934:12;17948:16;17966:3;17971:9;17982;17993:12;17913:20;:93::i;13915:36::-;;;-1:-1:-1;;;;;13915:36:0;;:::o;15900:779::-;7995:5;;16277:20;;;;-1:-1:-1;;;;;7995:5:0;7981:10;:19;7973:28;;;;;;-1:-1:-1;;;;;16237:26:0;;;;16229:35;;;;;;-1:-1:-1;;;;;16356:23:0;;;;;;;:9;:23;;;;;;16319:21;16300:40;;;-1:-1:-1;16356:23:0;:30;16353:221;;;16499:5;;16443:12;;16457:7;;16466;;16475:10;;16487;;-1:-1:-1;;;;;16499:5:0;16426:79;;:::i;:::-;-1:-1:-1;;;;;16426:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16426:79:0;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;;;;;16520:23:0;;;;;;;:9;:23;;;;;:42;;-1:-1:-1;;16520:42:0;;;;;;;;;;;-1:-1:-1;16353:221:0;16612:18;;-1:-1:-1;;;;;16632:23:0;;;16612:18;16632:23;;;:9;:23;;;;;;;;;16594:76;;;;;16612:18;;;16594:76;;;;16632:23;;;16594:76;;;;;;;;;;;;:4;;:17;;:76;;;;;16632:23;;16594:76;;;;;;;;:4;:76;;;5:2:-1;;;;30:1;27;20:12;5:2;16594:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16594:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16594:76:0;16586:85;;;;;;;;15900:779;;;;;;;;:::o;18409:202::-;7995:5;;-1:-1:-1;;;;;7995:5:0;7981:10;:19;7973:28;;;;;;18574:10;;18521:82;;18542:12;;18556:16;;18574:10;;;;;;;18589:13;;;;;18521:20;:82::i;938:123::-;996:7;1023:6;;;;1016:14;;;;-1:-1:-1;1048:5:0;;;938:123::o;1136:147::-;1194:7;1226:5;;;1249:6;;;;1242:14;;;;1274:1;1136:147;-1:-1:-1;;;1136:147:0:o;15134:268::-;7995:5;;15207:10;;;;-1:-1:-1;;;;;7995:5:0;7981:10;:19;7973:28;;;;;;15275:4;15254:27;;:::i;:::-;-1:-1:-1;;;;;15254:27:0;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15254:27:0;15230:51;;15292:35;15308:6;15316:10;15292:15;:35::i;:::-;15338:10;-1:-1:-1;;;;;15338:26:0;;:28;;;;;-1:-1:-1;;;15338:28:0;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15338:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;15384:10:0;;15134:268;-1:-1:-1;;;;;15134:268:0:o;15485:367::-;7995:5;;15579:14;;-1:-1:-1;;;;;7995:5:0;7981:10;:19;7973:28;;;;;;-1:-1:-1;15653:12:0;;15606:21;15596:31;;;15653:24;;15596:31;15653:24;:16;:24;:::i;:::-;15638:12;:39;-1:-1:-1;;;;;15713:22:0;;:8;:22;;;;;;;;;;;:34;;15740:6;15713:34;:26;:34;:::i;:::-;-1:-1:-1;;;;;15688:22:0;;:8;:22;;;;;;;;;;;:59;;;;15763:35;;;;;;;15688:22;;:8;;15763:35;;;;;;;;;;15819:12;;13665:34;-1:-1:-1;15819:24:0;15811:33;;;;;;15485:367;;;:::o;13384:6936::-;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o

Swarm Source

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