ETH Price: $2,800.66 (+2.88%)

Token

Career Trust Ecosystem (CTE)
 

Overview

Max Total Supply

5,000,000,000 CTE

Holders

845

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
75,000 CTE

Value
$0.00
0x059a6db70030d8612a07e902874834ab9ac5a3ab
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:
CTESale

Compiler Version
v0.4.20-nightly.2017.12.20+commit.efc198d5

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-01-02
*/

pragma solidity ^0.4.18;


/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    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;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a / b;
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        assert(b <= a);
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a);
        return c;
    }
}


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address public owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    function Ownable() public {
        owner = msg.sender;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    // Return true if sender is owner or super-owner of the contract
    function isOwner() internal view returns(bool success) {
        if (msg.sender == owner) return true;
        return false;
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) onlyOwner public {
        require(newOwner != address(0));
        OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    uint256 public totalSupply;
    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 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 Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
    using SafeMath for uint256;

    mapping(address => uint256) balances;

    /**
    * @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);
        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 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);
        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;
        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 view returns (uint256) {
        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) {
        allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
        Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
        return true;
    }

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


contract CTESale is Ownable, StandardToken {


    uint8 public constant TOKEN_DECIMALS = 18;  // decimals
    uint8 public constant PRE_SALE_PERCENT = 20; // 20%

    // Public variables of the token
    string public name = "Career Trust Ecosystem";
    string public symbol = "CTE";
    uint8 public decimals = TOKEN_DECIMALS; // 18 decimals is the strongly suggested default, avoid changing it


    uint256 public totalSupply = 5000000000 * (10 ** uint256(TOKEN_DECIMALS)); // Five billion
    uint256 public preSaleSupply; // PRE_SALE_PERCENT / 20 * totalSupply
    uint256 public soldSupply = 0; // current supply tokens for sell
    uint256 public sellSupply = 0;
    uint256 public buySupply = 0;
    bool public stopSell = false;
    bool public stopBuy = false;

    /*
    	Sell/Buy prices in wei
    	1 ETH = 10^18 of wei
    */
    uint256 public buyExchangeRate = 8000;   // 8000 CTE tokens per 1 ETHs
    uint256 public sellExchangeRate = 40000;  // 1 ETH need 40000 CTE token
    address public ethFundDeposit;  // deposit address for ETH for CTE Team.


    bool public allowTransfers = true; // if true then allow coin transfers


    mapping (address => bool) public frozenAccount;

    bool public enableInternalLock = true; // if false then allow coin transfers by internal sell lock
    mapping (address => bool) public internalLockAccount;



    /* This generates a public event on the blockchain that will notify clients */
    event FrozenFunds(address target, bool frozen);
    event IncreasePreSaleSupply(uint256 _value);
    event DecreasePreSaleSupply(uint256 _value);
    event IncreaseSoldSaleSupply(uint256 _value);
    event DecreaseSoldSaleSupply(uint256 _value);


    /* Initializes contract with initial supply tokens to the creator of the contract */
    function CTESale() public {
        balances[msg.sender] = totalSupply;                 // Give the creator all initial tokens
        preSaleSupply = totalSupply * PRE_SALE_PERCENT / 100;      // preSaleSupply

        ethFundDeposit = msg.sender;                        // deposit eth
        allowTransfers = false;
    }

    function _isUserInternalLock() internal view returns (bool) {
        return (enableInternalLock && internalLockAccount[msg.sender]);
    }

    /// @dev increase the token's supply
    function increasePreSaleSupply (uint256 _value) onlyOwner public {
        require (_value + preSaleSupply < totalSupply);
        preSaleSupply += _value;
        IncreasePreSaleSupply(_value);
    }

    /// @dev decrease the token's supply
    function decreasePreSaleSupply (uint256 _value) onlyOwner public {
        require (preSaleSupply - _value > 0);
        preSaleSupply -= _value;
        DecreasePreSaleSupply(_value);
    }

    /// @dev increase the token's supply
    function increaseSoldSaleSupply (uint256 _value) onlyOwner public {
        require (_value + soldSupply < totalSupply);
        soldSupply += _value;
        IncreaseSoldSaleSupply(_value);
    }

    /// @dev decrease the token's supply
    function decreaseSoldSaleSupply (uint256 _value) onlyOwner public {
        require (soldSupply - _value > 0);
        soldSupply -= _value;
        DecreaseSoldSaleSupply(_value);
    }

    /// @notice Create `mintedAmount` tokens and send it to `target`
    /// @param target Address to receive the tokens
    /// @param mintedAmount the amount of tokens it will receive
    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balances[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }

    function destroyToken(address target, uint256 amount) onlyOwner public {
        balances[target] -= amount;
        totalSupply -= amount;
        Transfer(target, this, amount);
        Transfer(this, 0, amount);
    }


    /// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens
    /// @param target Address to be frozen
    /// @param freeze either to freeze it or not
    function freezeAccount(address target, bool freeze) onlyOwner public {
        frozenAccount[target] = freeze;
        FrozenFunds(target, freeze);
    }

    /// @dev set EthFundDeposit
    function setEthFundDeposit(address _ethFundDeposit) onlyOwner public {
        require(_ethFundDeposit != address(0));
        ethFundDeposit = _ethFundDeposit;
    }

    /// @dev sends ETH to CTE team
    function transferETH() onlyOwner public {
        require(ethFundDeposit != address(0));
        require(this.balance != 0);
        require(ethFundDeposit.send(this.balance));
    }

    /// @notice Allow users to buy tokens for `_buyExchangeRate` eth and sell tokens for `_sellExchangeRate` eth
    /// @param _sellExchangeRate the users can sell to the contract
    /// @param _buyExchangeRate users can buy from the contract
    function setExchangeRate(uint256 _sellExchangeRate, uint256 _buyExchangeRate) onlyOwner public {
        sellExchangeRate = _sellExchangeRate;
        buyExchangeRate = _buyExchangeRate;
    }

    function setExchangeStatus(bool _stopSell, bool _stopBuy) onlyOwner public {
        stopSell = _stopSell;
        stopBuy = _stopBuy;
    }

    function setAllowTransfers(bool _allowTransfers) onlyOwner public {
        allowTransfers = _allowTransfers;
    }

    // Admin function for transfer coins
    function transferFromAdmin(address _from, address _to, uint256 _value) onlyOwner public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[_from]);

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

    function setEnableInternalLock(bool _isEnable) onlyOwner public {
        enableInternalLock = _isEnable;
    }

    function lockInternalAccount(address target, bool lock) onlyOwner public {
        require(target != address(0));
        internalLockAccount[target] = lock;
    }

    // sell token, soldSupply, lockAccount
    function internalSellTokenFromAdmin(address _to, uint256 _value, bool _lock) onlyOwner public returns (bool) {
        require(_to != address(0));
        require(_value <= balances[owner]);

        // SafeMath.sub will throw if there is not enough balance.
        balances[owner] = balances[owner].sub(_value);
        balances[_to] = balances[_to].add(_value);
        soldSupply += _value;
        sellSupply += _value;

        Transfer(owner, _to, _value);

        internalLockAccount[_to] = _lock;     // lock internalSell lock

        return true;
    }

    /***************************************************/
    /*                        BASE                     */
    /***************************************************/

    // @dev override
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
        if (!isOwner()) {
            require (allowTransfers);
            require(!frozenAccount[_from]);                                          // Check if sender is frozen
            require(!frozenAccount[_to]);                                            // Check if recipient is frozen
            require(!_isUserInternalLock());                                         // Check if recipient is internalSellLock
        }
        return super.transferFrom(_from, _to, _value);
    }

    // @dev override
    function transfer(address _to, uint256 _value) public returns (bool) {
        if (!isOwner()) {
            require (allowTransfers);
            require(!frozenAccount[msg.sender]);                                        // Check if sender is frozen
            require(!frozenAccount[_to]);                                               // Check if recipient is frozen
            require(!_isUserInternalLock());                                            // Check if recipient is internalSellLock
        }
        return super.transfer(_to, _value);
    }


    /// @dev send ether to contract
    function pay() payable public {}


    /// @notice Buy tokens from contract by sending ether
    function buy() payable public {
        uint256 amount = msg.value.mul(buyExchangeRate);

        require(!stopBuy);
        require(amount <= balances[owner]);

        // SafeMath.sub will throw if there is not enough balance.
        balances[owner] = balances[owner].sub(amount);
        balances[msg.sender] = balances[msg.sender].add(amount);

        soldSupply += amount;
        buySupply += amount;

        Transfer(owner, msg.sender, amount);
    }

    /// @notice Sell `amount` tokens to contract
    /// @param amount amount of tokens to be sold
    function sell(uint256 amount) public {
        uint256 ethAmount = amount.div(sellExchangeRate);
        require(!stopSell);
        require(this.balance >= ethAmount);      // checks if the contract has enough ether to buy
        require(ethAmount >= 1);      // checks if the contract has enough ether to buy

        require(balances[msg.sender] >= amount);                   // Check if the sender has enough
        require(balances[owner] + amount > balances[owner]);       // Check for overflows
        require(!frozenAccount[msg.sender]);                        // Check if sender is frozen
        require(!_isUserInternalLock());                                            // Check if recipient is internalSellLock

        // SafeMath.add will throw if there is not enough balance.
        balances[owner] = balances[owner].add(amount);
        balances[msg.sender] = balances[msg.sender].sub(amount);

        soldSupply -= amount;
        sellSupply += amount;

        Transfer(msg.sender, owner, amount);

        msg.sender.transfer(ethAmount);          // sends ether to the seller. It's important to do this last to avoid recursion attacks
    }
}

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":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFromAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"PRE_SALE_PERCENT","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"sellExchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"lock","type":"bool"}],"name":"lockInternalAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"allowTransfers","outputs":[{"name":"","type":"bool"}],"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":"preSaleSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"sellSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"decreaseSoldSaleSupply","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stopBuy","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"enableInternalLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_DECIMALS","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stopSell","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"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":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"increasePreSaleSupply","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_stopSell","type":"bool"},{"name":"_stopBuy","type":"bool"}],"name":"setExchangeStatus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"increaseSoldSaleSupply","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"amount","type":"uint256"}],"name":"destroyToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_isEnable","type":"bool"}],"name":"setEnableInternalLock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"internalLockAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"ethFundDeposit","outputs":[{"name":"","type":"address"}],"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":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"buySupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ethFundDeposit","type":"address"}],"name":"setEthFundDeposit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyExchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_allowTransfers","type":"bool"}],"name":"setAllowTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"transferETH","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"decreasePreSaleSupply","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_lock","type":"bool"}],"name":"internalSellTokenFromAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_sellExchangeRate","type":"uint256"},{"name":"_buyExchangeRate","type":"uint256"}],"name":"setExchangeRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"soldSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_value","type":"uint256"}],"name":"IncreasePreSaleSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_value","type":"uint256"}],"name":"DecreasePreSaleSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_value","type":"uint256"}],"name":"IncreaseSoldSaleSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_value","type":"uint256"}],"name":"DecreaseSoldSaleSupply","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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

606060405260408051908101604052601681527f4361726565722054727573742045636f73797374656d00000000000000000000602082015260049080516200004d92916020019062000182565b5060408051908101604052600381527f4354450000000000000000000000000000000000000000000000000000000000602082015260059080516200009792916020019062000182565b506006805460ff199081166012179091556b1027e72f1f1281308800000060075560006009819055600a819055600b55600c805461ffff19169055611f40600d55619c40600e55600f805460a060020a60ff0219167401000000000000000000000000000000000000000017905560118054909116600117905534156200011d57600080fd5b60008054600160a060020a03191633600160a060020a031690811782556007549082526002602052604090912081905560649060140204600855600f8054600160a060020a03191633600160a060020a03161760a060020a60ff021916905562000227565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001c557805160ff1916838001178555620001f5565b82800160010185558215620001f5579182015b82811115620001f5578251825591602001919060010190620001d8565b506200020392915062000207565b5090565b6200022491905b808211156200020357600081556001016200020e565b90565b611b7a80620002376000396000f30060606040526004361061023a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461023f578063095ea7b3146102c95780630d271720146102ff5780631440f2bf14610327578063149f2fdb1461035057806318160ddd1461037557806318cda1e7146103885780631b9265b8146103ae5780632185810b146103b657806323b872dd146103c95780632e055bcc146103f1578063308f505b14610404578063313ce56714610417578063417998831461042a578063493a7209146104405780634b0e2c90146104535780635b7f415c1461046657806361aebe5914610479578063661884631461048c57806370a08231146104ae57806379c65068146104cd5780637ea83869146104ef57806388f7c6d6146105055780638da5cb5b146105225780639061a6e91461055157806395d89b41146105675780639b1ad7921461057a5780639bcf73521461059c578063a4b03f52146105b4578063a6f2ae3a146105d3578063a81c3bdf146105db578063a9059cbb146105ee578063b414d4b614610610578063b51dfa9d1461062f578063d73dd62314610642578063d903744114610664578063db1366bf14610683578063dd62ed3e14610696578063df50afa4146106bb578063e28d717b146106d3578063e4849b32146106e6578063e724529c146106fc578063ee1fc2e614610720578063f09a58f814610736578063f2fde38b1461075d578063f55ecf061461077c578063fa2299ee14610795575b600080fd5b341561024a57600080fd5b6102526107a8565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561028e578082015183820152602001610276565b50505050905090810190601f1680156102bb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102d457600080fd5b6102eb600160a060020a0360043516602435610846565b604051901515815260200160405180910390f35b341561030a57600080fd5b6102eb600160a060020a03600435811690602435166044356108b2565b341561033257600080fd5b61033a6109b5565b60405160ff909116815260200160405180910390f35b341561035b57600080fd5b6103636109ba565b60405190815260200160405180910390f35b341561038057600080fd5b6103636109c0565b341561039357600080fd5b6103ac600160a060020a036004351660243515156109c6565b005b6103ac610a21565b34156103c157600080fd5b6102eb610a23565b34156103d457600080fd5b6102eb600160a060020a0360043581169060243516604435610a33565b34156103fc57600080fd5b610363610acc565b341561040f57600080fd5b610363610ad2565b341561042257600080fd5b61033a610ad8565b341561043557600080fd5b6103ac600435610ae1565b341561044b57600080fd5b6102eb610b4e565b341561045e57600080fd5b6102eb610b5c565b341561047157600080fd5b61033a610b65565b341561048457600080fd5b6102eb610b6a565b341561049757600080fd5b6102eb600160a060020a0360043516602435610b73565b34156104b957600080fd5b610363600160a060020a0360043516610c6f565b34156104d857600080fd5b6103ac600160a060020a0360043516602435610c8a565b34156104fa57600080fd5b6103ac600435610d2c565b341561051057600080fd5b6103ac60043515156024351515610d97565b341561052d57600080fd5b610535610dd5565b604051600160a060020a03909116815260200160405180910390f35b341561055c57600080fd5b6103ac600435610de4565b341561057257600080fd5b610252610e4f565b341561058557600080fd5b6103ac600160a060020a0360043516602435610eba565b34156105a757600080fd5b6103ac6004351515610f57565b34156105bf57600080fd5b6102eb600160a060020a0360043516610f85565b6103ac610f9a565b34156105e657600080fd5b6105356110a4565b34156105f957600080fd5b6102eb600160a060020a03600435166024356110b3565b341561061b57600080fd5b6102eb600160a060020a036004351661114a565b341561063a57600080fd5b61036361115f565b341561064d57600080fd5b6102eb600160a060020a0360043516602435611165565b341561066f57600080fd5b6103ac600160a060020a0360043516611209565b341561068e57600080fd5b610363611268565b34156106a157600080fd5b610363600160a060020a036004358116906024351661126e565b34156106c657600080fd5b6103ac6004351515611299565b34156106de57600080fd5b6103ac6112e3565b34156106f157600080fd5b6103ac600435611364565b341561070757600080fd5b6103ac600160a060020a03600435166024351515611520565b341561072b57600080fd5b6103ac6004356115ac565b341561074157600080fd5b6102eb600160a060020a03600435166024356044351515611619565b341561076857600080fd5b6103ac600160a060020a0360043516611752565b341561078757600080fd5b6103ac6004356024356117ed565b34156107a057600080fd5b610363611813565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b505050505081565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000805433600160a060020a039081169116146108ce57600080fd5b600160a060020a03831615156108e357600080fd5b600160a060020a03841660009081526002602052604090205482111561090857600080fd5b600160a060020a038416600090815260026020526040902054610931908363ffffffff61181916565b600160a060020a038086166000908152600260205260408082209390935590851681522054610966908363ffffffff61182b16565b600160a060020a0380851660008181526002602052604090819020939093559190861690600080516020611b2f8339815191529085905190815260200160405180910390a35060019392505050565b601481565b600e5481565b60075481565b60005433600160a060020a039081169116146109e157600080fd5b600160a060020a03821615156109f657600080fd5b600160a060020a03919091166000908152601260205260409020805460ff1916911515919091179055565b565b600f5460a060020a900460ff1681565b6000610a3d61183a565b1515610ab957600f5460a060020a900460ff161515610a5b57600080fd5b600160a060020a03841660009081526010602052604090205460ff1615610a8157600080fd5b600160a060020a03831660009081526010602052604090205460ff1615610aa757600080fd5b610aaf611861565b15610ab957600080fd5b610ac4848484611893565b949350505050565b60085481565b600a5481565b60065460ff1681565b60005433600160a060020a03908116911614610afc57600080fd5b60008160095403111515610b0f57600080fd5b6009805482900390557ff708844f569f2a630c36e2c8c1422c319aa04d0ef131636d78737df669e89b2f8160405190815260200160405180910390a150565b600c54610100900460ff1681565b60115460ff1681565b601281565b600c5460ff1681565b600160a060020a03338116600090815260036020908152604080832093861683529290529081205480831115610bd057600160a060020a033381166000908152600360209081526040808320938816835292905290812055610c07565b610be0818463ffffffff61181916565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a031660009081526002602052604090205490565b60005433600160a060020a03908116911614610ca557600080fd5b600160a060020a0380831660009081526002602052604080822080548501905560078054850190553090921691600080516020611b2f8339815191529084905190815260200160405180910390a381600160a060020a031630600160a060020a0316600080516020611b2f8339815191528360405190815260200160405180910390a35050565b60005433600160a060020a03908116911614610d4757600080fd5b600754600854820110610d5957600080fd5b60088054820190557fe4799cac6ada509ab0b77cd34eb32d0a398b864f0f4e8e69f0095c439851b37a8160405190815260200160405180910390a150565b60005433600160a060020a03908116911614610db257600080fd5b600c805460ff19169215159290921761ff00191661010091151591909102179055565b600054600160a060020a031681565b60005433600160a060020a03908116911614610dff57600080fd5b600754600954820110610e1157600080fd5b60098054820190557f03e0d50af85e41e334dc3f5787a0c79260b3d45a70927162c106c45ebf9da6498160405190815260200160405180910390a150565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561083e5780601f106108135761010080835404028352916020019161083e565b60005433600160a060020a03908116911614610ed557600080fd5b600160a060020a0380831660008181526002602052604090819020805485900390556007805485900390553090921691600080516020611b2f8339815191529084905190815260200160405180910390a3600030600160a060020a0316600080516020611b2f8339815191528360405190815260200160405180910390a35050565b60005433600160a060020a03908116911614610f7257600080fd5b6011805460ff1916911515919091179055565b60126020526000908152604090205460ff1681565b6000610fb1600d5434611a0390919063ffffffff16565b600c54909150610100900460ff1615610fc957600080fd5b60008054600160a060020a0316815260026020526040902054811115610fee57600080fd5b60008054600160a060020a0316815260026020526040902054611017908263ffffffff61181916565b60008054600160a060020a039081168252600260205260408083209390935533168152205461104c908263ffffffff61182b16565b600160a060020a03338116600081815260026020526040808220949094556009805486019055600b805486019055549092911690600080516020611b2f8339815191529084905190815260200160405180910390a350565b600f54600160a060020a031681565b60006110bd61183a565b151561113957600f5460a060020a900460ff1615156110db57600080fd5b600160a060020a03331660009081526010602052604090205460ff161561110157600080fd5b600160a060020a03831660009081526010602052604090205460ff161561112757600080fd5b61112f611861565b1561113957600080fd5b6111438383611a2e565b9392505050565b60106020526000908152604090205460ff1681565b600b5481565b600160a060020a03338116600090815260036020908152604080832093861683529290529081205461119d908363ffffffff61182b16565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60005433600160a060020a0390811691161461122457600080fd5b600160a060020a038116151561123957600080fd5b600f805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600d5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60005433600160a060020a039081169116146112b457600080fd5b600f805491151560a060020a0274ff000000000000000000000000000000000000000019909216919091179055565b60005433600160a060020a039081169116146112fe57600080fd5b600f54600160a060020a0316151561131557600080fd5b600160a060020a03301631151561132b57600080fd5b600f54600160a060020a039081169030163180156108fc0290604051600060405180830381858888f193505050501515610a2157600080fd5b600061137b600e5483611b1790919063ffffffff16565b600c5490915060ff161561138e57600080fd5b600160a060020a03301631819010156113a657600080fd5b60018110156113b457600080fd5b600160a060020a033316600090815260026020526040902054829010156113da57600080fd5b60008054600160a060020a03168152600260205260409020548281011161140057600080fd5b600160a060020a03331660009081526010602052604090205460ff161561142657600080fd5b61142e611861565b1561143857600080fd5b60008054600160a060020a0316815260026020526040902054611461908363ffffffff61182b16565b60008054600160a060020a0390811682526002602052604080832093909355331681522054611496908363ffffffff61181916565b600160a060020a0333811660008181526002602052604080822094909455600980548790039055600a8054870190555490911691600080516020611b2f8339815191529085905190815260200160405180910390a3600160a060020a03331681156108fc0282604051600060405180830381858888f19350505050151561151c57600080fd5b5050565b60005433600160a060020a0390811691161461153b57600080fd5b600160a060020a03821660009081526010602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a039081169116146115c757600080fd5b600081600854031115156115da57600080fd5b6008805482900390557f028bbf5308c13ec2827baf97294bf77054dee3dc0188ae99889bc791daed65d18160405190815260200160405180910390a150565b6000805433600160a060020a0390811691161461163557600080fd5b600160a060020a038416151561164a57600080fd5b60008054600160a060020a031681526002602052604090205483111561166f57600080fd5b60008054600160a060020a0316815260026020526040902054611698908463ffffffff61181916565b60008054600160a060020a03908116825260026020526040808320939093558616815220546116cd908463ffffffff61182b16565b600160a060020a03808616600081815260026020526040808220949094556009805488019055600a805488019055549092911690600080516020611b2f8339815191529086905190815260200160405180910390a350600160a060020a0383166000908152601260205260409020805482151560ff1990911617905560019392505050565b60005433600160a060020a0390811691161461176d57600080fd5b600160a060020a038116151561178257600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005433600160a060020a0390811691161461180857600080fd5b600e91909155600d55565b60095481565b60008282111561182557fe5b50900390565b60008282018381101561114357fe5b6000805433600160a060020a039081169116141561185a5750600161185e565b5060005b90565b60115460009060ff16801561188e5750600160a060020a03331660009081526012602052604090205460ff165b905090565b6000600160a060020a03831615156118aa57600080fd5b600160a060020a0384166000908152600260205260409020548211156118cf57600080fd5b600160a060020a038085166000908152600360209081526040808320339094168352929052205482111561190257600080fd5b600160a060020a03841660009081526002602052604090205461192b908363ffffffff61181916565b600160a060020a038086166000908152600260205260408082209390935590851681522054611960908363ffffffff61182b16565b600160a060020a038085166000908152600260209081526040808320949094558783168252600381528382203390931682529190915220546119a8908363ffffffff61181916565b600160a060020a0380861660008181526003602090815260408083203386168452909152908190209390935590851691600080516020611b2f8339815191529085905190815260200160405180910390a35060019392505050565b600080831515611a165760009150610c68565b50828202828482811515611a2657fe5b041461114357fe5b6000600160a060020a0383161515611a4557600080fd5b600160a060020a033316600090815260026020526040902054821115611a6a57600080fd5b600160a060020a033316600090815260026020526040902054611a93908363ffffffff61181916565b600160a060020a033381166000908152600260205260408082209390935590851681522054611ac8908363ffffffff61182b16565b600160a060020a038085166000818152600260205260409081902093909355913390911690600080516020611b2f8339815191529085905190815260200160405180910390a350600192915050565b6000808284811515611b2557fe5b049493505050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f8936799816c085ad5c1d8d281910f85b7eaee8e923b122c6733c2bb6c96ab850029

Deployed Bytecode

0x60606040526004361061023a5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461023f578063095ea7b3146102c95780630d271720146102ff5780631440f2bf14610327578063149f2fdb1461035057806318160ddd1461037557806318cda1e7146103885780631b9265b8146103ae5780632185810b146103b657806323b872dd146103c95780632e055bcc146103f1578063308f505b14610404578063313ce56714610417578063417998831461042a578063493a7209146104405780634b0e2c90146104535780635b7f415c1461046657806361aebe5914610479578063661884631461048c57806370a08231146104ae57806379c65068146104cd5780637ea83869146104ef57806388f7c6d6146105055780638da5cb5b146105225780639061a6e91461055157806395d89b41146105675780639b1ad7921461057a5780639bcf73521461059c578063a4b03f52146105b4578063a6f2ae3a146105d3578063a81c3bdf146105db578063a9059cbb146105ee578063b414d4b614610610578063b51dfa9d1461062f578063d73dd62314610642578063d903744114610664578063db1366bf14610683578063dd62ed3e14610696578063df50afa4146106bb578063e28d717b146106d3578063e4849b32146106e6578063e724529c146106fc578063ee1fc2e614610720578063f09a58f814610736578063f2fde38b1461075d578063f55ecf061461077c578063fa2299ee14610795575b600080fd5b341561024a57600080fd5b6102526107a8565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561028e578082015183820152602001610276565b50505050905090810190601f1680156102bb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102d457600080fd5b6102eb600160a060020a0360043516602435610846565b604051901515815260200160405180910390f35b341561030a57600080fd5b6102eb600160a060020a03600435811690602435166044356108b2565b341561033257600080fd5b61033a6109b5565b60405160ff909116815260200160405180910390f35b341561035b57600080fd5b6103636109ba565b60405190815260200160405180910390f35b341561038057600080fd5b6103636109c0565b341561039357600080fd5b6103ac600160a060020a036004351660243515156109c6565b005b6103ac610a21565b34156103c157600080fd5b6102eb610a23565b34156103d457600080fd5b6102eb600160a060020a0360043581169060243516604435610a33565b34156103fc57600080fd5b610363610acc565b341561040f57600080fd5b610363610ad2565b341561042257600080fd5b61033a610ad8565b341561043557600080fd5b6103ac600435610ae1565b341561044b57600080fd5b6102eb610b4e565b341561045e57600080fd5b6102eb610b5c565b341561047157600080fd5b61033a610b65565b341561048457600080fd5b6102eb610b6a565b341561049757600080fd5b6102eb600160a060020a0360043516602435610b73565b34156104b957600080fd5b610363600160a060020a0360043516610c6f565b34156104d857600080fd5b6103ac600160a060020a0360043516602435610c8a565b34156104fa57600080fd5b6103ac600435610d2c565b341561051057600080fd5b6103ac60043515156024351515610d97565b341561052d57600080fd5b610535610dd5565b604051600160a060020a03909116815260200160405180910390f35b341561055c57600080fd5b6103ac600435610de4565b341561057257600080fd5b610252610e4f565b341561058557600080fd5b6103ac600160a060020a0360043516602435610eba565b34156105a757600080fd5b6103ac6004351515610f57565b34156105bf57600080fd5b6102eb600160a060020a0360043516610f85565b6103ac610f9a565b34156105e657600080fd5b6105356110a4565b34156105f957600080fd5b6102eb600160a060020a03600435166024356110b3565b341561061b57600080fd5b6102eb600160a060020a036004351661114a565b341561063a57600080fd5b61036361115f565b341561064d57600080fd5b6102eb600160a060020a0360043516602435611165565b341561066f57600080fd5b6103ac600160a060020a0360043516611209565b341561068e57600080fd5b610363611268565b34156106a157600080fd5b610363600160a060020a036004358116906024351661126e565b34156106c657600080fd5b6103ac6004351515611299565b34156106de57600080fd5b6103ac6112e3565b34156106f157600080fd5b6103ac600435611364565b341561070757600080fd5b6103ac600160a060020a03600435166024351515611520565b341561072b57600080fd5b6103ac6004356115ac565b341561074157600080fd5b6102eb600160a060020a03600435166024356044351515611619565b341561076857600080fd5b6103ac600160a060020a0360043516611752565b341561078757600080fd5b6103ac6004356024356117ed565b34156107a057600080fd5b610363611813565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b505050505081565b600160a060020a03338116600081815260036020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000805433600160a060020a039081169116146108ce57600080fd5b600160a060020a03831615156108e357600080fd5b600160a060020a03841660009081526002602052604090205482111561090857600080fd5b600160a060020a038416600090815260026020526040902054610931908363ffffffff61181916565b600160a060020a038086166000908152600260205260408082209390935590851681522054610966908363ffffffff61182b16565b600160a060020a0380851660008181526002602052604090819020939093559190861690600080516020611b2f8339815191529085905190815260200160405180910390a35060019392505050565b601481565b600e5481565b60075481565b60005433600160a060020a039081169116146109e157600080fd5b600160a060020a03821615156109f657600080fd5b600160a060020a03919091166000908152601260205260409020805460ff1916911515919091179055565b565b600f5460a060020a900460ff1681565b6000610a3d61183a565b1515610ab957600f5460a060020a900460ff161515610a5b57600080fd5b600160a060020a03841660009081526010602052604090205460ff1615610a8157600080fd5b600160a060020a03831660009081526010602052604090205460ff1615610aa757600080fd5b610aaf611861565b15610ab957600080fd5b610ac4848484611893565b949350505050565b60085481565b600a5481565b60065460ff1681565b60005433600160a060020a03908116911614610afc57600080fd5b60008160095403111515610b0f57600080fd5b6009805482900390557ff708844f569f2a630c36e2c8c1422c319aa04d0ef131636d78737df669e89b2f8160405190815260200160405180910390a150565b600c54610100900460ff1681565b60115460ff1681565b601281565b600c5460ff1681565b600160a060020a03338116600090815260036020908152604080832093861683529290529081205480831115610bd057600160a060020a033381166000908152600360209081526040808320938816835292905290812055610c07565b610be0818463ffffffff61181916565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a3600191505b5092915050565b600160a060020a031660009081526002602052604090205490565b60005433600160a060020a03908116911614610ca557600080fd5b600160a060020a0380831660009081526002602052604080822080548501905560078054850190553090921691600080516020611b2f8339815191529084905190815260200160405180910390a381600160a060020a031630600160a060020a0316600080516020611b2f8339815191528360405190815260200160405180910390a35050565b60005433600160a060020a03908116911614610d4757600080fd5b600754600854820110610d5957600080fd5b60088054820190557fe4799cac6ada509ab0b77cd34eb32d0a398b864f0f4e8e69f0095c439851b37a8160405190815260200160405180910390a150565b60005433600160a060020a03908116911614610db257600080fd5b600c805460ff19169215159290921761ff00191661010091151591909102179055565b600054600160a060020a031681565b60005433600160a060020a03908116911614610dff57600080fd5b600754600954820110610e1157600080fd5b60098054820190557f03e0d50af85e41e334dc3f5787a0c79260b3d45a70927162c106c45ebf9da6498160405190815260200160405180910390a150565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561083e5780601f106108135761010080835404028352916020019161083e565b60005433600160a060020a03908116911614610ed557600080fd5b600160a060020a0380831660008181526002602052604090819020805485900390556007805485900390553090921691600080516020611b2f8339815191529084905190815260200160405180910390a3600030600160a060020a0316600080516020611b2f8339815191528360405190815260200160405180910390a35050565b60005433600160a060020a03908116911614610f7257600080fd5b6011805460ff1916911515919091179055565b60126020526000908152604090205460ff1681565b6000610fb1600d5434611a0390919063ffffffff16565b600c54909150610100900460ff1615610fc957600080fd5b60008054600160a060020a0316815260026020526040902054811115610fee57600080fd5b60008054600160a060020a0316815260026020526040902054611017908263ffffffff61181916565b60008054600160a060020a039081168252600260205260408083209390935533168152205461104c908263ffffffff61182b16565b600160a060020a03338116600081815260026020526040808220949094556009805486019055600b805486019055549092911690600080516020611b2f8339815191529084905190815260200160405180910390a350565b600f54600160a060020a031681565b60006110bd61183a565b151561113957600f5460a060020a900460ff1615156110db57600080fd5b600160a060020a03331660009081526010602052604090205460ff161561110157600080fd5b600160a060020a03831660009081526010602052604090205460ff161561112757600080fd5b61112f611861565b1561113957600080fd5b6111438383611a2e565b9392505050565b60106020526000908152604090205460ff1681565b600b5481565b600160a060020a03338116600090815260036020908152604080832093861683529290529081205461119d908363ffffffff61182b16565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60005433600160a060020a0390811691161461122457600080fd5b600160a060020a038116151561123957600080fd5b600f805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600d5481565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60005433600160a060020a039081169116146112b457600080fd5b600f805491151560a060020a0274ff000000000000000000000000000000000000000019909216919091179055565b60005433600160a060020a039081169116146112fe57600080fd5b600f54600160a060020a0316151561131557600080fd5b600160a060020a03301631151561132b57600080fd5b600f54600160a060020a039081169030163180156108fc0290604051600060405180830381858888f193505050501515610a2157600080fd5b600061137b600e5483611b1790919063ffffffff16565b600c5490915060ff161561138e57600080fd5b600160a060020a03301631819010156113a657600080fd5b60018110156113b457600080fd5b600160a060020a033316600090815260026020526040902054829010156113da57600080fd5b60008054600160a060020a03168152600260205260409020548281011161140057600080fd5b600160a060020a03331660009081526010602052604090205460ff161561142657600080fd5b61142e611861565b1561143857600080fd5b60008054600160a060020a0316815260026020526040902054611461908363ffffffff61182b16565b60008054600160a060020a0390811682526002602052604080832093909355331681522054611496908363ffffffff61181916565b600160a060020a0333811660008181526002602052604080822094909455600980548790039055600a8054870190555490911691600080516020611b2f8339815191529085905190815260200160405180910390a3600160a060020a03331681156108fc0282604051600060405180830381858888f19350505050151561151c57600080fd5b5050565b60005433600160a060020a0390811691161461153b57600080fd5b600160a060020a03821660009081526010602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a039081169116146115c757600080fd5b600081600854031115156115da57600080fd5b6008805482900390557f028bbf5308c13ec2827baf97294bf77054dee3dc0188ae99889bc791daed65d18160405190815260200160405180910390a150565b6000805433600160a060020a0390811691161461163557600080fd5b600160a060020a038416151561164a57600080fd5b60008054600160a060020a031681526002602052604090205483111561166f57600080fd5b60008054600160a060020a0316815260026020526040902054611698908463ffffffff61181916565b60008054600160a060020a03908116825260026020526040808320939093558616815220546116cd908463ffffffff61182b16565b600160a060020a03808616600081815260026020526040808220949094556009805488019055600a805488019055549092911690600080516020611b2f8339815191529086905190815260200160405180910390a350600160a060020a0383166000908152601260205260409020805482151560ff1990911617905560019392505050565b60005433600160a060020a0390811691161461176d57600080fd5b600160a060020a038116151561178257600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005433600160a060020a0390811691161461180857600080fd5b600e91909155600d55565b60095481565b60008282111561182557fe5b50900390565b60008282018381101561114357fe5b6000805433600160a060020a039081169116141561185a5750600161185e565b5060005b90565b60115460009060ff16801561188e5750600160a060020a03331660009081526012602052604090205460ff165b905090565b6000600160a060020a03831615156118aa57600080fd5b600160a060020a0384166000908152600260205260409020548211156118cf57600080fd5b600160a060020a038085166000908152600360209081526040808320339094168352929052205482111561190257600080fd5b600160a060020a03841660009081526002602052604090205461192b908363ffffffff61181916565b600160a060020a038086166000908152600260205260408082209390935590851681522054611960908363ffffffff61182b16565b600160a060020a038085166000908152600260209081526040808320949094558783168252600381528382203390931682529190915220546119a8908363ffffffff61181916565b600160a060020a0380861660008181526003602090815260408083203386168452909152908190209390935590851691600080516020611b2f8339815191529085905190815260200160405180910390a35060019392505050565b600080831515611a165760009150610c68565b50828202828482811515611a2657fe5b041461114357fe5b6000600160a060020a0383161515611a4557600080fd5b600160a060020a033316600090815260026020526040902054821115611a6a57600080fd5b600160a060020a033316600090815260026020526040902054611a93908363ffffffff61181916565b600160a060020a033381166000908152600260205260408082209390935590851681522054611ac8908363ffffffff61182b16565b600160a060020a038085166000818152600260205260409081902093909355913390911690600080516020611b2f8339815191529085905190815260200160405180910390a350600192915050565b6000808284811515611b2557fe5b049493505050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f8936799816c085ad5c1d8d281910f85b7eaee8e923b122c6733c2bb6c96ab850029

Swarm Source

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