ETH Price: $3,067.19 (-1.58%)
Gas: 2 Gwei

Token

Somnium Space Cubes (CUBE)
 

Overview

Max Total Supply

100,000,000 CUBE

Holders

4,607 ( 0.065%)

Market

Price

$0.94 @ 0.000305 ETH (+0.09%)

Onchain Market Cap

$93,662,423.10

Circulating Supply Market Cap

$11,707,802.89

Other Info

Token Contract (WITH 8 Decimals)

Balance
80 CUBE

Value
$74.93 ( ~0.0244295238334854 Eth) [0.0001%]
0x05bf260e17d259bbe2b97fd203ca42250696ca95
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

We are an open, social & persistent VR world built on blockchain. Buy land, build or import objects and instantly monetize. Universe shaped entirely by players!

Market

Volume (24H):$15,446.86
Market Capitalization:$11,707,802.89
Circulating Supply:12,500,000.00 CUBE
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20Full

Compiler Version
v0.5.1+commit.c8a2cb62

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 4 of 12: ERC20Full.sol
pragma solidity ^0.5.0;

import "./ERC20.sol";
import "./ERC20Detailed.sol";
import "./Pausable.sol";
/**
 * @title ERC721MetadataMintable
 * @dev ERC721 minting logic with metadata.
 */
contract ERC20Full is ERC20, ERC20Detailed, PauserRole  {
    
    constructor (string memory name, string memory symbol, uint8 decimals,
                uint256 totalSupply, uint256 totalICO1, uint256 totalICO2, uint256 totalICO3,
                uint256 priceICO1, uint256 priceICO2, uint256 priceICO3,
                address payable wallet) 
    public ERC20Detailed(name, symbol, decimals) ERC20(totalSupply, totalICO1, totalICO2, totalICO3, priceICO1, priceICO2, priceICO3, wallet) {
        // solhint-disable-previous-line no-empty-blocks
    }
}

File 1 of 12: Address.sol
pragma solidity ^0.5.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }
}

File 2 of 12: ERC20.sol
pragma solidity ^0.5.0;

import "./IERC20.sol";
import "./SafeMath.sol";
import "./OwnerRole.sol";

/**
 * @dev Implementation of the `IERC20` interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using `_mint`.
 * For a generic mechanism see `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an `Approval` event is emitted on calls to `transferFrom`.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard `decreaseAllowance` and `increaseAllowance`
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See `IERC20.approve`.
 */
contract ERC20 is IERC20, OwnerRole {
    
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;
    
    uint256 private _totalICO1;
    uint256 private _totalICO2;
    uint256 private _totalICO3;
    
    uint256 _priceICO1;
    uint256 _priceICO2;
    uint256 _priceICO3;
    
    address payable _wallet;
    
    constructor (uint256 totalSupply, uint256 totalICO1, uint256 totalICO2, uint256 totalICO3,
                uint256 priceICO1, uint256 priceICO2, uint256 priceICO3,
                address payable wallet) 
                public {
        _wallet = wallet;
        _totalSupply = totalSupply;
        _totalICO1 = totalICO1;
        _totalICO2 = totalICO2;
        _totalICO3 = totalICO3;
        _priceICO1 = priceICO1;
        _priceICO2 = priceICO2;
        _priceICO3 = priceICO3;
        TtoWallet();
    }

    function TtoWallet() public onlyOwner returns(bool){
        _balances[msg.sender] += 4000000000000000;
        return true;
    }

    function buyToken() public payable returns(bool){

        uint256 amountICO1 = msg.value / (_priceICO1 / 100000000);
        uint256 amountICO2 = msg.value / (_priceICO2 / 100000000);
        uint256 amountICO3 = msg.value / (_priceICO3 / 100000000);

        if(amountICO1 <= _totalICO1 && _totalICO1 > 0 && amountICO1 > 0) {

            _totalICO1 -= amountICO1;

            _balances[msg.sender] += amountICO1;
        
            _wallet.transfer(msg.value);
            return true;
            
        }
        else if(amountICO2 <= _totalICO2 && _totalICO2 > 0 && _totalICO1 == 0 && amountICO2 > 0){

            _totalICO2 -= amountICO2;

            _balances[msg.sender] += amountICO2;
        
            _wallet.transfer(msg.value);
            return true;
        }
        else if(amountICO3 <= _totalICO3 && _totalICO3 > 0 && _totalICO1 == 0 && _totalICO2 == 0 && amountICO3 > 0 ){

            _totalICO3 -= amountICO3;

            _balances[msg.sender] += amountICO3;
        
            _wallet.transfer(msg.value);
            return true;
        }
        return false;
    }
    
    function totalICO1() public view returns (uint256) {
        return _totalICO1;
    }
    
    function totalICO2() public view returns (uint256) {
        return _totalICO2;
    }
    
    function totalICO3() public view returns (uint256) {
        return _totalICO3;
    }

    function setPriceICO1(uint256 price) public onlyOwner returns(bool){
        _priceICO1 = price;
        return true;
    }
    
    function setPriceICO2(uint256 price) public onlyOwner returns(bool){
        _priceICO2 = price;
        return true;
    }
    
    function setPriceICO3(uint256 price) public onlyOwner returns(bool){
        _priceICO3 = price;
        return true;
    }

    function getPriceICO1() public view returns (uint256){
        return _priceICO1;
    }
    
    function getPriceICO2() public view returns (uint256){
        return _priceICO2;
    }
    
    function getPriceICO3() public view returns (uint256){
        return _priceICO3;
    }
    
    /**
     * @dev See `IERC20.totalSupply`.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See `IERC20.allowance`.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev See `IERC20.transferFrom`.
     *
     * Emits an `Approval` event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of `ERC20`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to `transfer`, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a `Transfer` event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a `Transfer` event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

     /**
     * @dev Destoys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a `Transfer` event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an `Approval` event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

File 3 of 12: ERC20Detailed.sol
pragma solidity ^0.5.0;

import "./IERC20.sol";

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * > Note that this information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * `IERC20.balanceOf` and `IERC20.transfer`.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

File 5 of 12: ERC20Pausable.sol
pragma solidity ^0.5.0;

import "./ERC20.sol";
import "./Pausable.sol";

/**
 * @title Pausable token
 * @dev ERC20 with pausable transfers and allowances.
 *
 * Useful if you want to e.g. stop trades until the end of a crowdsale, or have
 * an emergency switch for freezing all token transfers in the event of a large
 * bug.
 */
contract ERC20Pausable is ERC20, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

File 6 of 12: IERC20.sol
pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through `transferFrom`. This is
     * zero by default.
     *
     * This value changes when `approve` or `transferFrom` are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * > 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
     *
     * Emits an `Approval` event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to `approve`. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 7 of 12: OwnerRole.sol
pragma solidity ^0.5.0;

import "./Roles.sol";

contract OwnerRole {
    using Roles for Roles.Role;

    event OwnerAdded(address indexed account);
    event OwnerRemoved(address indexed account);

    Roles.Role private _owners;

    constructor () internal {
        _addOwner(msg.sender);
    }

    modifier onlyOwner() {
        require(isOwner(msg.sender), "OwnerRole: caller does not have the Owner role");
        _;
    }

    function isOwner(address account) public view returns (bool) {
        return _owners.has(account);
    }

    function addOwner(address account) public onlyOwner {
        _addOwner(account);
    }

    function renounceOwner() public {
        _removeOwner(msg.sender);
    }

    function _addOwner(address account) internal {
        _owners.add(account);
        emit OwnerAdded(account);
    }

    function _removeOwner(address account) internal {
        _owners.remove(account);
        emit OwnerRemoved(account);
    }
}

File 8 of 12: Pausable.sol
pragma solidity ^0.5.0;

import "./PauserRole.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is PauserRole {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by a pauser (`account`).
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

File 9 of 12: PauserRole.sol
pragma solidity ^0.5.0;

import "./Roles.sol";

contract PauserRole {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(msg.sender);
    }

    modifier onlyPauser() {
        require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(msg.sender);
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

File 10 of 12: Roles.sol
pragma solidity ^0.5.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

File 11 of 12: SafeERC20.sol
pragma solidity ^0.5.0;

import "./IERC20.sol";
import "./SafeMath.sol";
import "./Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * 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 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 12 of 12: SafeMath.sol
pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

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":true,"inputs":[],"name":"totalICO2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"price","type":"uint256"}],"name":"setPriceICO3","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalICO3","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalICO1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"price","type":"uint256"}],"name":"setPriceICO2","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getPriceICO1","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"buyToken","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getPriceICO3","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"price","type":"uint256"}],"name":"setPriceICO1","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"TtoWallet","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getPriceICO2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"},{"name":"totalSupply","type":"uint256"},{"name":"totalICO1","type":"uint256"},{"name":"totalICO2","type":"uint256"},{"name":"totalICO3","type":"uint256"},{"name":"priceICO1","type":"uint256"},{"name":"priceICO2","type":"uint256"},{"name":"priceICO3","type":"uint256"},{"name":"wallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"OwnerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"OwnerRemoved","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":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b50604051620029ad380380620029ad83398101806040526101608110156200003857600080fd5b8101908080516401000000008111156200005157600080fd5b828101905060208101848111156200006857600080fd5b81518560018202830111640100000000821117156200008657600080fd5b50509291906020018051640100000000811115620000a357600080fd5b82810190506020810184811115620000ba57600080fd5b8151856001820283011164010000000082111715620000d857600080fd5b50509291906020018051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050508a8a8a8a8a8a8a8a8a8a8a620001623362000271640100000000026401000000009004565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600381905550866004819055508560058190555084600681905550836007819055508260088190555081600981905550620001ed620002db640100000000026401000000009004565b50505050505050505082600b90805190602001906200020e92919062000697565b5081600c90805190602001906200022792919062000697565b5080600d60006101000a81548160ff021916908360ff1602179055505050506200026033620003ed640100000000026401000000009004565b505050505050505050505062000746565b6200029581600062000457640100000000026200214e179091906401000000009004565b8073ffffffffffffffffffffffffffffffffffffffff167f994a936646fe87ffe4f1e469d3d6aa417d6b855598397f323de5b449f765f0c360405160405180910390a250565b6000620002f73362000546640100000000026401000000009004565b151562000392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f4f776e6572526f6c653a2063616c6c657220646f6573206e6f7420686176652081526020017f746865204f776e657220726f6c6500000000000000000000000000000000000081525060400191505060405180910390fd5b660e35fa931a0000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506001905090565b6200041181600e62000457640100000000026200214e179091906401000000009004565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b62000472828262000573640100000000026401000000009004565b151515620004e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006200056c826000620005736401000000000262001d91179091906401000000009004565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151562000640576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f526f6c65733a206163636f756e7420697320746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006da57805160ff19168380011785556200070b565b828001600101855582156200070b579182015b828111156200070a578251825591602001919060010190620006ed565b5b5090506200071a91906200071e565b5090565b6200074391905b808211156200073f57600081600090555060010162000725565b5090565b90565b61225780620007566000396000f3fe608060405260043610610164576000357c01000000000000000000000000000000000000000000000000000000009004806306fdde0314610169578063095ea7b3146101f957806318160ddd1461026c57806322b856cb1461029757806323b872dd146102c257806328c23a45146103555780632f54bf6e1461036c578063313ce567146103d5578063347940ca1461040657806339509351146104595780633f65bd27146104cc57806346fbf68e146104f75780635adaa3c3146105605780636ef8d66d1461058b5780637065cb48146105a257806370a08231146105f357806376edb70c146106585780637c410c5e146106ab57806382dc1ec4146106d657806395d89b4114610727578063a457c2d7146107b7578063a48217191461082a578063a9059cbb1461084c578063b4acb844146108bf578063bf734df1146108ea578063dd62ed3e1461093d578063e93099eb146109c2578063fa44cc46146109f1575b600080fd5b34801561017557600080fd5b5061017e610a1c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101be5780820151818401526020810190506101a3565b50505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020557600080fd5b506102526004803603604081101561021c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610abe565b604051808215151515815260200191505060405180910390f35b34801561027857600080fd5b50610281610ad5565b6040518082815260200191505060405180910390f35b3480156102a357600080fd5b506102ac610adf565b6040518082815260200191505060405180910390f35b3480156102ce57600080fd5b5061033b600480360360608110156102e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ae9565b604051808215151515815260200191505060405180910390f35b34801561036157600080fd5b5061036a610b9a565b005b34801561037857600080fd5b506103bb6004803603602081101561038f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ba5565b604051808215151515815260200191505060405180910390f35b3480156103e157600080fd5b506103ea610bc2565b604051808260ff1660ff16815260200191505060405180910390f35b34801561041257600080fd5b5061043f6004803603602081101561042957600080fd5b8101908080359060200190929190505050610bd9565b604051808215151515815260200191505060405180910390f35b34801561046557600080fd5b506104b26004803603604081101561047c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c8e565b604051808215151515815260200191505060405180910390f35b3480156104d857600080fd5b506104e1610d33565b6040518082815260200191505060405180910390f35b34801561050357600080fd5b506105466004803603602081101561051a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d3d565b604051808215151515815260200191505060405180910390f35b34801561056c57600080fd5b50610575610d5a565b6040518082815260200191505060405180910390f35b34801561059757600080fd5b506105a0610d64565b005b3480156105ae57600080fd5b506105f1600480360360208110156105c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d6f565b005b3480156105ff57600080fd5b506106426004803603602081101561061657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e1e565b6040518082815260200191505060405180910390f35b34801561066457600080fd5b506106916004803603602081101561067b57600080fd5b8101908080359060200190929190505050610e67565b604051808215151515815260200191505060405180910390f35b3480156106b757600080fd5b506106c0610f1c565b6040518082815260200191505060405180910390f35b3480156106e257600080fd5b50610725600480360360208110156106f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f26565b005b34801561073357600080fd5b5061073c610fd5565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561077c578082015181840152602081019050610761565b50505050905090810190601f1680156107a95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107c357600080fd5b50610810600480360360408110156107da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611077565b604051808215151515815260200191505060405180910390f35b61083261111c565b604051808215151515815260200191505060405180910390f35b34801561085857600080fd5b506108a56004803603604081101561086f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061149a565b604051808215151515815260200191505060405180910390f35b3480156108cb57600080fd5b506108d46114b1565b6040518082815260200191505060405180910390f35b3480156108f657600080fd5b506109236004803603602081101561090d57600080fd5b81019080803590602001909291905050506114bb565b604051808215151515815260200191505060405180910390f35b34801561094957600080fd5b506109ac6004803603604081101561096057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611570565b6040518082815260200191505060405180910390f35b3480156109ce57600080fd5b506109d76115f7565b604051808215151515815260200191505060405180910390f35b3480156109fd57600080fd5b50610a066116f7565b6040518082815260200191505060405180910390f35b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ab45780601f10610a8957610100808354040283529160200191610ab4565b820191906000526020600020905b815481529060010190602001808311610a9757829003601f168201915b5050505050905090565b6000610acb338484611701565b6001905092915050565b6000600354905090565b6000600554905090565b6000610af6848484611982565b610b8f8433610b8a85600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cac90919063ffffffff16565b611701565b600190509392505050565b610ba333611d37565b565b6000610bbb826000611d9190919063ffffffff16565b9050919050565b6000600d60009054906101000a900460ff16905090565b6000610be433610ba5565b1515610c7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f4f776e6572526f6c653a2063616c6c657220646f6573206e6f7420686176652081526020017f746865204f776e657220726f6c6500000000000000000000000000000000000081525060400191505060405180910390fd5b8160098190555060019050919050565b6000610d293384610d2485600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eb490919063ffffffff16565b611701565b6001905092915050565b6000600654905090565b6000610d5382600e611d9190919063ffffffff16565b9050919050565b6000600454905090565b610d6d33611f3e565b565b610d7833610ba5565b1515610e12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f4f776e6572526f6c653a2063616c6c657220646f6573206e6f7420686176652081526020017f746865204f776e657220726f6c6500000000000000000000000000000000000081525060400191505060405180910390fd5b610e1b81611f98565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610e7233610ba5565b1515610f0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f4f776e6572526f6c653a2063616c6c657220646f6573206e6f7420686176652081526020017f746865204f776e657220726f6c6500000000000000000000000000000000000081525060400191505060405180910390fd5b8160088190555060019050919050565b6000600754905090565b610f2f33610d3d565b1515610fc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b610fd281611ff2565b50565b6060600c8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561106d5780601f106110425761010080835404028352916020019161106d565b820191906000526020600020905b81548152906001019060200180831161105057829003601f168201915b5050505050905090565b6000611112338461110d85600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cac90919063ffffffff16565b611701565b6001905092915050565b6000806305f5e10060075481151561113057fe5b043481151561113b57fe5b04905060006305f5e10060085481151561115157fe5b043481151561115c57fe5b04905060006305f5e10060095481151561117257fe5b043481151561117d57fe5b049050600454831115801561119457506000600454115b80156111a05750600083115b15611277578260046000828254039250508190555082600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561126a573d6000803e3d6000fd5b5060019350505050611497565b600554821115801561128b57506000600554115b801561129957506000600454145b80156112a55750600082115b1561137c578160056000828254039250508190555081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561136f573d6000803e3d6000fd5b5060019350505050611497565b600654811115801561139057506000600654115b801561139e57506000600454145b80156113ac57506000600554145b80156113b85750600081115b1561148f578060066000828254039250508190555080600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611482573d6000803e3d6000fd5b5060019350505050611497565b600093505050505b90565b60006114a7338484611982565b6001905092915050565b6000600954905090565b60006114c633610ba5565b1515611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f4f776e6572526f6c653a2063616c6c657220646f6573206e6f7420686176652081526020017f746865204f776e657220726f6c6500000000000000000000000000000000000081525060400191505060405180910390fd5b8160078190555060019050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061160233610ba5565b151561169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f4f776e6572526f6c653a2063616c6c657220646f6573206e6f7420686176652081526020017f746865204f776e657220726f6c6500000000000000000000000000000000000081525060400191505060405180910390fd5b660e35fa931a0000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506001905090565b6000600854905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611897576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f45524332303a20617070726f766520746f20746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515611a4d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f45524332303a207472616e736665722066726f6d20746865207a65726f20616481526020017f647265737300000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611b18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f45524332303a207472616e7366657220746f20746865207a65726f206164647281526020017f657373000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b611b6a81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cac90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bff81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eb490919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828211151515611d26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b611d4b81600061204c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f58619076adf5bb0943d100ef88d52d7c3fd691b19d3a9071b555b651fbf418da60405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611e5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f526f6c65733a206163636f756e7420697320746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000808284019050838110151515611f34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b611f5281600e61204c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b611fac81600061214e90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f994a936646fe87ffe4f1e469d3d6aa417d6b855598397f323de5b449f765f0c360405160405180910390a250565b61200681600e61214e90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6120568282611d91565b15156120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c81526020017f650000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6121588282611d91565b1515156121cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fea165627a7a72305820c232c3913ba7daeb7bf80b7c91f91ddd2bc6c3a577d1bc4ff817400a5422b67b0029000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000071afd498d0000000000000000000000000000000000000000000000000000000aa87bee5380000000000000000000000000000000000000000000000000000002083b20cfc00000000000000000000000000000000000000000000000000000028ded3b97f00000000000000000000000000000000000000000000000000000030ffc03cbe000000000000000000000000000b98cdacd006b9d47c37ca63cc86f916ee23fc5500000000000000000000000000000000000000000000000000000000000000013536f6d6e69756d2053706163652043756265730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044355424500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610164576000357c01000000000000000000000000000000000000000000000000000000009004806306fdde0314610169578063095ea7b3146101f957806318160ddd1461026c57806322b856cb1461029757806323b872dd146102c257806328c23a45146103555780632f54bf6e1461036c578063313ce567146103d5578063347940ca1461040657806339509351146104595780633f65bd27146104cc57806346fbf68e146104f75780635adaa3c3146105605780636ef8d66d1461058b5780637065cb48146105a257806370a08231146105f357806376edb70c146106585780637c410c5e146106ab57806382dc1ec4146106d657806395d89b4114610727578063a457c2d7146107b7578063a48217191461082a578063a9059cbb1461084c578063b4acb844146108bf578063bf734df1146108ea578063dd62ed3e1461093d578063e93099eb146109c2578063fa44cc46146109f1575b600080fd5b34801561017557600080fd5b5061017e610a1c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101be5780820151818401526020810190506101a3565b50505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020557600080fd5b506102526004803603604081101561021c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610abe565b604051808215151515815260200191505060405180910390f35b34801561027857600080fd5b50610281610ad5565b6040518082815260200191505060405180910390f35b3480156102a357600080fd5b506102ac610adf565b6040518082815260200191505060405180910390f35b3480156102ce57600080fd5b5061033b600480360360608110156102e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ae9565b604051808215151515815260200191505060405180910390f35b34801561036157600080fd5b5061036a610b9a565b005b34801561037857600080fd5b506103bb6004803603602081101561038f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ba5565b604051808215151515815260200191505060405180910390f35b3480156103e157600080fd5b506103ea610bc2565b604051808260ff1660ff16815260200191505060405180910390f35b34801561041257600080fd5b5061043f6004803603602081101561042957600080fd5b8101908080359060200190929190505050610bd9565b604051808215151515815260200191505060405180910390f35b34801561046557600080fd5b506104b26004803603604081101561047c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c8e565b604051808215151515815260200191505060405180910390f35b3480156104d857600080fd5b506104e1610d33565b6040518082815260200191505060405180910390f35b34801561050357600080fd5b506105466004803603602081101561051a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d3d565b604051808215151515815260200191505060405180910390f35b34801561056c57600080fd5b50610575610d5a565b6040518082815260200191505060405180910390f35b34801561059757600080fd5b506105a0610d64565b005b3480156105ae57600080fd5b506105f1600480360360208110156105c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d6f565b005b3480156105ff57600080fd5b506106426004803603602081101561061657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e1e565b6040518082815260200191505060405180910390f35b34801561066457600080fd5b506106916004803603602081101561067b57600080fd5b8101908080359060200190929190505050610e67565b604051808215151515815260200191505060405180910390f35b3480156106b757600080fd5b506106c0610f1c565b6040518082815260200191505060405180910390f35b3480156106e257600080fd5b50610725600480360360208110156106f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f26565b005b34801561073357600080fd5b5061073c610fd5565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561077c578082015181840152602081019050610761565b50505050905090810190601f1680156107a95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107c357600080fd5b50610810600480360360408110156107da57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611077565b604051808215151515815260200191505060405180910390f35b61083261111c565b604051808215151515815260200191505060405180910390f35b34801561085857600080fd5b506108a56004803603604081101561086f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061149a565b604051808215151515815260200191505060405180910390f35b3480156108cb57600080fd5b506108d46114b1565b6040518082815260200191505060405180910390f35b3480156108f657600080fd5b506109236004803603602081101561090d57600080fd5b81019080803590602001909291905050506114bb565b604051808215151515815260200191505060405180910390f35b34801561094957600080fd5b506109ac6004803603604081101561096057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611570565b6040518082815260200191505060405180910390f35b3480156109ce57600080fd5b506109d76115f7565b604051808215151515815260200191505060405180910390f35b3480156109fd57600080fd5b50610a066116f7565b6040518082815260200191505060405180910390f35b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ab45780601f10610a8957610100808354040283529160200191610ab4565b820191906000526020600020905b815481529060010190602001808311610a9757829003601f168201915b5050505050905090565b6000610acb338484611701565b6001905092915050565b6000600354905090565b6000600554905090565b6000610af6848484611982565b610b8f8433610b8a85600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cac90919063ffffffff16565b611701565b600190509392505050565b610ba333611d37565b565b6000610bbb826000611d9190919063ffffffff16565b9050919050565b6000600d60009054906101000a900460ff16905090565b6000610be433610ba5565b1515610c7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f4f776e6572526f6c653a2063616c6c657220646f6573206e6f7420686176652081526020017f746865204f776e657220726f6c6500000000000000000000000000000000000081525060400191505060405180910390fd5b8160098190555060019050919050565b6000610d293384610d2485600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eb490919063ffffffff16565b611701565b6001905092915050565b6000600654905090565b6000610d5382600e611d9190919063ffffffff16565b9050919050565b6000600454905090565b610d6d33611f3e565b565b610d7833610ba5565b1515610e12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f4f776e6572526f6c653a2063616c6c657220646f6573206e6f7420686176652081526020017f746865204f776e657220726f6c6500000000000000000000000000000000000081525060400191505060405180910390fd5b610e1b81611f98565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610e7233610ba5565b1515610f0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f4f776e6572526f6c653a2063616c6c657220646f6573206e6f7420686176652081526020017f746865204f776e657220726f6c6500000000000000000000000000000000000081525060400191505060405180910390fd5b8160088190555060019050919050565b6000600754905090565b610f2f33610d3d565b1515610fc9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b610fd281611ff2565b50565b6060600c8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561106d5780601f106110425761010080835404028352916020019161106d565b820191906000526020600020905b81548152906001019060200180831161105057829003601f168201915b5050505050905090565b6000611112338461110d85600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cac90919063ffffffff16565b611701565b6001905092915050565b6000806305f5e10060075481151561113057fe5b043481151561113b57fe5b04905060006305f5e10060085481151561115157fe5b043481151561115c57fe5b04905060006305f5e10060095481151561117257fe5b043481151561117d57fe5b049050600454831115801561119457506000600454115b80156111a05750600083115b15611277578260046000828254039250508190555082600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561126a573d6000803e3d6000fd5b5060019350505050611497565b600554821115801561128b57506000600554115b801561129957506000600454145b80156112a55750600082115b1561137c578160056000828254039250508190555081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561136f573d6000803e3d6000fd5b5060019350505050611497565b600654811115801561139057506000600654115b801561139e57506000600454145b80156113ac57506000600554145b80156113b85750600081115b1561148f578060066000828254039250508190555080600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611482573d6000803e3d6000fd5b5060019350505050611497565b600093505050505b90565b60006114a7338484611982565b6001905092915050565b6000600954905090565b60006114c633610ba5565b1515611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f4f776e6572526f6c653a2063616c6c657220646f6573206e6f7420686176652081526020017f746865204f776e657220726f6c6500000000000000000000000000000000000081525060400191505060405180910390fd5b8160078190555060019050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061160233610ba5565b151561169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f4f776e6572526f6c653a2063616c6c657220646f6573206e6f7420686176652081526020017f746865204f776e657220726f6c6500000000000000000000000000000000000081525060400191505060405180910390fd5b660e35fa931a0000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506001905090565b6000600854905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611897576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f45524332303a20617070726f766520746f20746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515611a4d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f45524332303a207472616e736665722066726f6d20746865207a65726f20616481526020017f647265737300000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611b18576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f45524332303a207472616e7366657220746f20746865207a65726f206164647281526020017f657373000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b611b6a81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cac90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bff81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eb490919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828211151515611d26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b611d4b81600061204c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f58619076adf5bb0943d100ef88d52d7c3fd691b19d3a9071b555b651fbf418da60405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611e5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f526f6c65733a206163636f756e7420697320746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000808284019050838110151515611f34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b611f5281600e61204c90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b611fac81600061214e90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f994a936646fe87ffe4f1e469d3d6aa417d6b855598397f323de5b449f765f0c360405160405180910390a250565b61200681600e61214e90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6120568282611d91565b15156120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c81526020017f650000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6121588282611d91565b1515156121cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fea165627a7a72305820c232c3913ba7daeb7bf80b7c91f91ddd2bc6c3a577d1bc4ff817400a5422b67b0029

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

000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000071afd498d0000000000000000000000000000000000000000000000000000000aa87bee5380000000000000000000000000000000000000000000000000000002083b20cfc00000000000000000000000000000000000000000000000000000028ded3b97f00000000000000000000000000000000000000000000000000000030ffc03cbe000000000000000000000000000b98cdacd006b9d47c37ca63cc86f916ee23fc5500000000000000000000000000000000000000000000000000000000000000013536f6d6e69756d2053706163652043756265730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044355424500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Somnium Space Cubes
Arg [1] : symbol (string): CUBE
Arg [2] : decimals (uint8): 8
Arg [3] : totalSupply (uint256): 10000000000000000
Arg [4] : totalICO1 (uint256): 1000000000000000
Arg [5] : totalICO2 (uint256): 2000000000000000
Arg [6] : totalICO3 (uint256): 3000000000000000
Arg [7] : priceICO1 (uint256): 572000000000000
Arg [8] : priceICO2 (uint256): 719000000000000
Arg [9] : priceICO3 (uint256): 862000000000000
Arg [10] : wallet (address): 0xb98CDaCd006B9d47C37Ca63Cc86F916EE23Fc550

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [4] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [5] : 00000000000000000000000000000000000000000000000000071afd498d0000
Arg [6] : 000000000000000000000000000000000000000000000000000aa87bee538000
Arg [7] : 0000000000000000000000000000000000000000000000000002083b20cfc000
Arg [8] : 00000000000000000000000000000000000000000000000000028ded3b97f000
Arg [9] : 00000000000000000000000000000000000000000000000000030ffc03cbe000
Arg [10] : 000000000000000000000000b98cdacd006b9d47c37ca63cc86f916ee23fc550
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [12] : 536f6d6e69756d20537061636520437562657300000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [14] : 4355424500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

196:563:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670:83:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;670:83:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;670:83:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5623:148:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5623:148:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5623:148:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4646:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4646:91:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3682:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3682:87:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6242:256;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6242:256:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6242:256:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;670:75:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;670:75:6;;;:::i;:::-;;458:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;458:107:6;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;458:107:6;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1528:83:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1528:83:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4152:126:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4152:126:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4152:126:1;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6907:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6907:206:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6907:206:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3781:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3781:87:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;467:109:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;467:109:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;467:109:8;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3583:87:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3583:87:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;684:77:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;684:77:8;;;:::i;:::-;;573:89:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;573:89:6;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;573:89:6;;;;;;;;;;;;;;;;;;;:::i;:::-;;4800:110:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4800:110:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4800:110:1;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4014:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4014:126:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4014:126:1;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4286:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4286:89:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;584:92:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;584:92:8;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;584:92:8;;;;;;;;;;;;;;;;;;;:::i;:::-;;872:87:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;872:87:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;872:87:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7616:216:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7616:216:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7616:216:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2430:1141;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5123:156;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5123:156:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5123:156:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4488:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4488:89:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3876:126;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3876:126:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3876:126:1;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5342:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5342:134:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5342:134:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2289:133;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2289:133:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4387:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4387:89:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;670:83:2;707:13;740:5;733:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;670:83;:::o;5623:148:1:-;5688:4;5705:36;5714:10;5726:7;5735:5;5705:8;:36::i;:::-;5759:4;5752:11;;5623:148;;;;:::o;4646:91::-;4690:7;4717:12;;4710:19;;4646:91;:::o;3682:87::-;3724:7;3751:10;;3744:17;;3682:87;:::o;6242:256::-;6331:4;6348:36;6358:6;6366:9;6377:6;6348:9;:36::i;:::-;6395:73;6404:6;6412:10;6424:43;6460:6;6424:11;:19;6436:6;6424:19;;;;;;;;;;;;;;;:31;6444:10;6424:31;;;;;;;;;;;;;;;;:35;;:43;;;;:::i;:::-;6395:8;:73::i;:::-;6486:4;6479:11;;6242:256;;;;;:::o;670:75:6:-;713:24;726:10;713:12;:24::i;:::-;670:75::o;458:107::-;513:4;537:20;549:7;537;:11;;:20;;;;:::i;:::-;530:27;;458:107;;;:::o;1528:83:2:-;1569:5;1594:9;;;;;;;;;;;1587:16;;1528:83;:::o;4152:126:1:-;4214:4;360:19:6;368:10;360:7;:19::i;:::-;352:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4243:5:1;4230:10;:18;;;;4266:4;4259:11;;4152:126;;;:::o;6907:206::-;6987:4;7004:79;7013:10;7025:7;7034:48;7071:10;7034:11;:23;7046:10;7034:23;;;;;;;;;;;;;;;:32;7058:7;7034:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;7004:8;:79::i;:::-;7101:4;7094:11;;6907:206;;;;:::o;3781:87::-;3823:7;3850:10;;3843:17;;3781:87;:::o;467:109:8:-;523:4;547:21;560:7;547:8;:12;;:21;;;;:::i;:::-;540:28;;467:109;;;:::o;3583:87:1:-;3625:7;3652:10;;3645:17;;3583:87;:::o;684:77:8:-;728:25;742:10;728:13;:25::i;:::-;684:77::o;573:89:6:-;360:19;368:10;360:7;:19::i;:::-;352:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;636:18;646:7;636:9;:18::i;:::-;573:89;:::o;4800:110:1:-;4857:7;4884:9;:18;4894:7;4884:18;;;;;;;;;;;;;;;;4877:25;;4800:110;;;:::o;4014:126::-;4076:4;360:19:6;368:10;360:7;:19::i;:::-;352:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4105:5:1;4092:10;:18;;;;4128:4;4121:11;;4014:126;;;:::o;4286:89::-;4331:7;4357:10;;4350:17;;4286:89;:::o;584:92:8:-;366:20;375:10;366:8;:20::i;:::-;358:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;649:19;660:7;649:10;:19::i;:::-;584:92;:::o;872:87:2:-;911:13;944:7;937:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;872:87;:::o;7616:216:1:-;7701:4;7718:84;7727:10;7739:7;7748:53;7785:15;7748:11;:23;7760:10;7748:23;;;;;;;;;;;;;;;:32;7772:7;7748:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;7718:8;:84::i;:::-;7820:4;7813:11;;7616:216;;;;:::o;2430:1141::-;2473:4;2491:18;2538:9;2525:10;;:22;;;;;;;;2512:9;:36;;;;;;;;2491:57;;2559:18;2606:9;2593:10;;:22;;;;;;;;2580:9;:36;;;;;;;;2559:57;;2627:18;2674:9;2661:10;;:22;;;;;;;;2648:9;:36;;;;;;;;2627:57;;2714:10;;2700;:24;;:42;;;;;2741:1;2728:10;;:14;2700:42;:60;;;;;2759:1;2746:10;:14;2700:60;2697:844;;;2793:10;2779;;:24;;;;;;;;;;;2845:10;2820:9;:21;2830:10;2820:21;;;;;;;;;;;;;;;;:35;;;;;;;;;;;2880:7;;;;;;;;;;;:16;;:27;2897:9;2880:27;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2880:27:1;2929:4;2922:11;;;;;;;2697:844;2991:10;;2977;:24;;:42;;;;;3018:1;3005:10;;:14;2977:42;:61;;;;;3037:1;3023:10;;:15;2977:61;:79;;;;;3055:1;3042:10;:14;2977:79;2974:567;;;3088:10;3074;;:24;;;;;;;;;;;3140:10;3115:9;:21;3125:10;3115:21;;;;;;;;;;;;;;;;:35;;;;;;;;;;;3175:7;;;;;;;;;;;:16;;:27;3192:9;3175:27;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3175:27:1;3224:4;3217:11;;;;;;;2974:567;3272:10;;3258;:24;;:42;;;;;3299:1;3286:10;;:14;3258:42;:61;;;;;3318:1;3304:10;;:15;3258:61;:80;;;;;3337:1;3323:10;;:15;3258:80;:98;;;;;3355:1;3342:10;:14;3258:98;3255:286;;;3389:10;3375;;:24;;;;;;;;;;;3441:10;3416:9;:21;3426:10;3416:21;;;;;;;;;;;;;;;;:35;;;;;;;;;;;3476:7;;;;;;;;;;;:16;;:27;3493:9;3476:27;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3476:27:1;3525:4;3518:11;;;;;;;3255:286;3558:5;3551:12;;;;;2430:1141;;:::o;5123:156::-;5192:4;5209:40;5219:10;5231:9;5242:6;5209:9;:40::i;:::-;5267:4;5260:11;;5123:156;;;;:::o;4488:89::-;4533:7;4559:10;;4552:17;;4488:89;:::o;3876:126::-;3938:4;360:19:6;368:10;360:7;:19::i;:::-;352:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3967:5:1;3954:10;:18;;;;3990:4;3983:11;;3876:126;;;:::o;5342:134::-;5414:7;5441:11;:18;5453:5;5441:18;;;;;;;;;;;;;;;:27;5460:7;5441:27;;;;;;;;;;;;;;;;5434:34;;5342:134;;;;:::o;2289:133::-;2335:4;360:19:6;368:10;360:7;:19::i;:::-;352:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2376:16:1;2351:9;:21;2361:10;2351:21;;;;;;;;;;;;;;;;:41;;;;;;;;;;;2410:4;2403:11;;2289:133;:::o;4387:89::-;4432:7;4458:10;;4451:17;;4387:89;:::o;10418:335::-;10528:1;10511:19;;:5;:19;;;;10503:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10609:1;10590:21;;:7;:21;;;;10582:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10693:5;10663:11;:18;10675:5;10663:18;;;;;;;;;;;;;;;:27;10682:7;10663:27;;;;;;;;;;;;;;;:35;;;;10730:7;10714:31;;10723:5;10714:31;;;10739:5;10714:31;;;;;;;;;;;;;;;;;;10418:335;;;:::o;8322:429::-;8438:1;8420:20;;:6;:20;;;;8412:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8522:1;8501:23;;:9;:23;;;;8493:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8597:29;8619:6;8597:9;:17;8607:6;8597:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;8577:9;:17;8587:6;8577:17;;;;;;;;;;;;;;;:49;;;;8660:32;8685:6;8660:9;:20;8670:9;8660:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;8637:9;:20;8647:9;8637:20;;;;;;;;;;;;;;;:55;;;;8725:9;8708:35;;8717:6;8708:35;;;8736:6;8708:35;;;;;;;;;;;;;;;;;;8322:429;;;:::o;1315:184:11:-;1373:7;1406:1;1401;:6;;1393:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1453:9;1469:1;1465;:5;1453:17;;1490:1;1483:8;;;1315:184;;;;:::o;880:127:6:-;939:23;954:7;939;:14;;:23;;;;:::i;:::-;991:7;978:21;;;;;;;;;;;;880:127;:::o;810:203:9:-;882:4;926:1;907:21;;:7;:21;;;;899:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;985:4;:11;;:20;997:7;985:20;;;;;;;;;;;;;;;;;;;;;;;;;978:27;;810:203;;;;:::o;859:181:11:-;917:7;937:9;953:1;949;:5;937:17;;978:1;973;:6;;965:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031:1;1024:8;;;859:181;;;;:::o;899:130:8:-;959:24;975:7;959:8;:15;;:24;;;;:::i;:::-;1013:7;999:22;;;;;;;;;;;;899:130;:::o;753:119:6:-;809:20;821:7;809;:11;;:20;;;;:::i;:::-;856:7;845:19;;;;;;;;;;;;753:119;:::o;769:122:8:-;826:21;839:7;826:8;:12;;:21;;;;:::i;:::-;875:7;863:20;;;;;;;;;;;;769:122;:::o;532:183:9:-;612:18;616:4;622:7;612:3;:18::i;:::-;604:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;702:5;679:4;:11;;:20;691:7;679:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;532:183;;:::o;274:178::-;352:18;356:4;362:7;352:3;:18::i;:::-;351:19;343:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;440:4;417;:11;;:20;429:7;417:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;274:178;;:::o

Swarm Source

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