ETH Price: $3,154.78 (-4.15%)

Token

Venture Capital Token (VC)
 

Overview

Max Total Supply

200,000,000 VC

Holders

35

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 4 Decimals)

Balance
728,737.14 VC

Value
$0.00
0x5e61032fb917699b702c6c9274a57c3aca18b630
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:
VCToken

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-11-08
*/

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-contracts/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;
    }
}

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


/**
 * @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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

/**
 * @dev Extension of `ERC20` that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @dev Destoys `amount` tokens from the caller.
     *
     * See `ERC20._burn`.
     */
    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    /**
     * @dev See `ERC20._burnFrom`.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

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

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

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);
    }
}

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

/**
 * @title Pausable token
 * @dev ERC20 modified with pausable transfers.
 */
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, uint addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

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

contract VCToken is ERC20, ERC20Burnable, ERC20Pausable, ERC20Detailed {

    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor () public ERC20Detailed("Venture Capital Token", "VC", 4) {
        _mint(msg.sender, 200000000 * (10 ** uint256(decimals())));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601581526020017f56656e74757265204361706974616c20546f6b656e00000000000000000000008152506040518060400160405280600281526020017f5643000000000000000000000000000000000000000000000000000000000000815250600462000091336200010b60201b60201c565b6004805460ff191690558251620000b090600590602086019062000428565b508151620000c690600690602085019062000428565b506007805460ff191660ff929092169190911790555062000105905033620000ed6200015d565b60ff16600a0a630bebc200026200016760201b60201c565b620004ca565b620001268160036200028260201b62000f861790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60075460ff165b90565b6001600160a01b038216620001dd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001f9816002546200032960201b62000ec51790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200022c91839062000ec562000329821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200029782826001600160e01b03620003a516565b156200030457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156200039e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006001600160a01b03821662000408576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620016386022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046b57805160ff19168380011785556200049b565b828001600101855582156200049b579182015b828111156200049b5782518255916020019190600101906200047e565b50620004a9929150620004ad565b5090565b6200016491905b80821115620004a95760008155600101620004b4565b61115e80620004da6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad5780638456cb59116100715780638456cb591461035257806395d89b411461035a578063a457c2d714610362578063a9059cbb1461038e578063dd62ed3e146103ba57610121565b80635c975abb146102ca5780636ef8d66d146102d257806370a08231146102da57806379cc67901461030057806382dc1ec41461032c57610121565b8063313ce567116100f4578063313ce5671461023357806339509351146102515780633f4ba83a1461027d57806342966c681461028757806346fbf68e146102a457610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e6103e8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b03813516906020013561047e565b604080519115158252519081900360200190f35b6101eb6104dd565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b038135811691602081013590911690604001356104e3565b61023b610544565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b03813516906020013561054d565b6102856105a5565b005b6102856004803603602081101561029d57600080fd5b5035610676565b6101cf600480360360208110156102ba57600080fd5b50356001600160a01b0316610683565b6101cf61069c565b6102856106a5565b6101eb600480360360208110156102f057600080fd5b50356001600160a01b03166106b0565b6102856004803603604081101561031657600080fd5b506001600160a01b0381351690602001356106cb565b6102856004803603602081101561034257600080fd5b50356001600160a01b03166106d9565b610285610726565b61012e6107f7565b6101cf6004803603604081101561037857600080fd5b506001600160a01b038135169060200135610858565b6101cf600480360360408110156103a457600080fd5b506001600160a01b0381351690602001356108b0565b6101eb600480360360408110156103d057600080fd5b506001600160a01b0381358116916020013516610908565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60045460009060ff16156104cc576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610933565b9392505050565b60025490565b60045460009060ff1615610531576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61053c848484610949565b949350505050565b60075460ff1690565b60045460009060ff161561059b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d683836109a0565b6105ae33610683565b6105e95760405162461bcd60e51b815260040180806020018281038252603081526020018061102b6030913960400191505060405180910390fd5b60045460ff16610637576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6004805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b61068033826109dc565b50565b600061069660038363ffffffff610ab516565b92915050565b60045460ff1690565b6106ae33610b1c565b565b6001600160a01b031660009081526020819052604090205490565b6106d58282610b64565b5050565b6106e233610683565b61071d5760405162461bcd60e51b815260040180806020018281038252603081526020018061102b6030913960400191505060405180910390fd5b61068081610ba9565b61072f33610683565b61076a5760405162461bcd60e51b815260040180806020018281038252603081526020018061102b6030913960400191505060405180910390fd5b60045460ff16156107b5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6004805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104745780601f1061044957610100808354040283529160200191610474565b60045460009060ff16156108a6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610bf1565b60045460009060ff16156108fe576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610c2d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610940338484610c3a565b50600192915050565b6000610956848484610d26565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610996918691610991908663ffffffff610e6816565b610c3a565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610940918590610991908663ffffffff610ec516565b6001600160a01b038216610a215760405162461bcd60e51b81526004018080602001828103825260218152602001806110c06021913960400191505060405180910390fd5b600254610a34908263ffffffff610e6816565b6002556001600160a01b038216600090815260208190526040902054610a60908263ffffffff610e6816565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b038216610afc5760405162461bcd60e51b815260040180806020018281038252602281526020018061109e6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610b2d60038263ffffffff610f1f16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610b6e82826109dc565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546106d5918491610991908563ffffffff610e6816565b610bba60038263ffffffff610f8616565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610940918590610991908663ffffffff610e6816565b6000610940338484610d26565b6001600160a01b038316610c7f5760405162461bcd60e51b81526004018080602001828103825260248152602001806111066024913960400191505060405180910390fd5b6001600160a01b038216610cc45760405162461bcd60e51b815260040180806020018281038252602281526020018061105b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d6b5760405162461bcd60e51b81526004018080602001828103825260258152602001806110e16025913960400191505060405180910390fd5b6001600160a01b038216610db05760405162461bcd60e51b81526004018080602001828103825260238152602001806110086023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610dd9908263ffffffff610e6816565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e0e908263ffffffff610ec516565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610ebf576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156104d6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610f298282610ab5565b610f645760405162461bcd60e51b815260040180806020018281038252602181526020018061107d6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b610f908282610ab5565b15610fe2576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820a0ebd50a1186a931336a5bcf2d71f88a2ed65c7f0d3f04cfa464121cf1a892b764736f6c634300050c0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad5780638456cb59116100715780638456cb591461035257806395d89b411461035a578063a457c2d714610362578063a9059cbb1461038e578063dd62ed3e146103ba57610121565b80635c975abb146102ca5780636ef8d66d146102d257806370a08231146102da57806379cc67901461030057806382dc1ec41461032c57610121565b8063313ce567116100f4578063313ce5671461023357806339509351146102515780633f4ba83a1461027d57806342966c681461028757806346fbf68e146102a457610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e6103e8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b03813516906020013561047e565b604080519115158252519081900360200190f35b6101eb6104dd565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b038135811691602081013590911690604001356104e3565b61023b610544565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b03813516906020013561054d565b6102856105a5565b005b6102856004803603602081101561029d57600080fd5b5035610676565b6101cf600480360360208110156102ba57600080fd5b50356001600160a01b0316610683565b6101cf61069c565b6102856106a5565b6101eb600480360360208110156102f057600080fd5b50356001600160a01b03166106b0565b6102856004803603604081101561031657600080fd5b506001600160a01b0381351690602001356106cb565b6102856004803603602081101561034257600080fd5b50356001600160a01b03166106d9565b610285610726565b61012e6107f7565b6101cf6004803603604081101561037857600080fd5b506001600160a01b038135169060200135610858565b6101cf600480360360408110156103a457600080fd5b506001600160a01b0381351690602001356108b0565b6101eb600480360360408110156103d057600080fd5b506001600160a01b0381358116916020013516610908565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60045460009060ff16156104cc576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610933565b9392505050565b60025490565b60045460009060ff1615610531576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61053c848484610949565b949350505050565b60075460ff1690565b60045460009060ff161561059b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d683836109a0565b6105ae33610683565b6105e95760405162461bcd60e51b815260040180806020018281038252603081526020018061102b6030913960400191505060405180910390fd5b60045460ff16610637576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6004805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b61068033826109dc565b50565b600061069660038363ffffffff610ab516565b92915050565b60045460ff1690565b6106ae33610b1c565b565b6001600160a01b031660009081526020819052604090205490565b6106d58282610b64565b5050565b6106e233610683565b61071d5760405162461bcd60e51b815260040180806020018281038252603081526020018061102b6030913960400191505060405180910390fd5b61068081610ba9565b61072f33610683565b61076a5760405162461bcd60e51b815260040180806020018281038252603081526020018061102b6030913960400191505060405180910390fd5b60045460ff16156107b5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6004805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104745780601f1061044957610100808354040283529160200191610474565b60045460009060ff16156108a6576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610bf1565b60045460009060ff16156108fe576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610c2d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610940338484610c3a565b50600192915050565b6000610956848484610d26565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610996918691610991908663ffffffff610e6816565b610c3a565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610940918590610991908663ffffffff610ec516565b6001600160a01b038216610a215760405162461bcd60e51b81526004018080602001828103825260218152602001806110c06021913960400191505060405180910390fd5b600254610a34908263ffffffff610e6816565b6002556001600160a01b038216600090815260208190526040902054610a60908263ffffffff610e6816565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b038216610afc5760405162461bcd60e51b815260040180806020018281038252602281526020018061109e6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610b2d60038263ffffffff610f1f16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610b6e82826109dc565b6001600160a01b0382166000908152600160209081526040808320338085529252909120546106d5918491610991908563ffffffff610e6816565b610bba60038263ffffffff610f8616565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610940918590610991908663ffffffff610e6816565b6000610940338484610d26565b6001600160a01b038316610c7f5760405162461bcd60e51b81526004018080602001828103825260248152602001806111066024913960400191505060405180910390fd5b6001600160a01b038216610cc45760405162461bcd60e51b815260040180806020018281038252602281526020018061105b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d6b5760405162461bcd60e51b81526004018080602001828103825260258152602001806110e16025913960400191505060405180910390fd5b6001600160a01b038216610db05760405162461bcd60e51b81526004018080602001828103825260238152602001806110086023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610dd9908263ffffffff610e6816565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e0e908263ffffffff610ec516565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610ebf576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156104d6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610f298282610ab5565b610f645760405162461bcd60e51b815260040180806020018281038252602181526020018061107d6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b610f908282610ab5565b15610fe2576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820a0ebd50a1186a931336a5bcf2d71f88a2ed65c7f0d3f04cfa464121cf1a892b764736f6c634300050c0032

Deployed Bytecode Sourcemap

21456:319:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21456:319:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15608:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;15608:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20949:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20949:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;7891:91;;;:::i;:::-;;;;;;;;;;;;;;;;20781:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20781:160:0;;;;;;;;;;;;;;;;;:::i;16466:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21097:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21097:167:0;;;;;;;;:::i;20382:118::-;;;:::i;:::-;;14738:81;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14738:81:0;;:::i;17964:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17964:109:0;-1:-1:-1;;;;;17964:109:0;;:::i;19591:78::-;;;:::i;18181:77::-;;;:::i;8045:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8045:110:0;-1:-1:-1;;;;;8045:110:0;;:::i;14881:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14881:103:0;;;;;;;;:::i;18081:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18081:92:0;-1:-1:-1;;;;;18081:92:0;;:::i;20171:116::-;;;:::i;15810:87::-;;;:::i;21272:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21272:177:0;;;;;;;;:::i;20641:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20641:132:0;;;;;;;;:::i;8587:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8587:134:0;;;;;;;;;;:::i;15608:83::-;15678:5;15671:12;;;;;;;;-1:-1:-1;;15671:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15645:13;;15671:12;;15678:5;;15671:12;;15678:5;15671:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15608:83;:::o;20949:140::-;19828:7;;21028:4;;19828:7;;19827:8;19819:37;;;;;-1:-1:-1;;;19819:37:0;;;;;;;;;;;;-1:-1:-1;;;19819:37:0;;;;;;;;;;;;;;;21052:29;21066:7;21075:5;21052:13;:29::i;:::-;21045:36;20949:140;-1:-1:-1;;;20949:140:0:o;7891:91::-;7962:12;;7891:91;:::o;20781:160::-;19828:7;;20874:4;;19828:7;;19827:8;19819:37;;;;;-1:-1:-1;;;19819:37:0;;;;;;;;;;;;-1:-1:-1;;;19819:37:0;;;;;;;;;;;;;;;20898:35;20917:4;20923:2;20927:5;20898:18;:35::i;:::-;20891:42;20781:160;-1:-1:-1;;;;20781:160:0:o;16466:83::-;16532:9;;;;16466:83;:::o;21097:167::-;19828:7;;21188:4;;19828:7;;19827:8;19819:37;;;;;-1:-1:-1;;;19819:37:0;;;;;;;;;;;;-1:-1:-1;;;19819:37:0;;;;;;;;;;;;;;;21212:44;21236:7;21245:10;21212:23;:44::i;20382:118::-;17863:20;17872:10;17863:8;:20::i;:::-;17855:81;;;;-1:-1:-1;;;17855:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20027:7;;;;20019:40;;;;;-1:-1:-1;;;20019:40:0;;;;;;;;;;;;-1:-1:-1;;;20019:40:0;;;;;;;;;;;;;;;20441:7;:15;;-1:-1:-1;;20441:15:0;;;20472:20;;;20481:10;20472:20;;;;;;;;;;;;;20382:118::o;14738:81::-;14786:25;14792:10;14804:6;14786:5;:25::i;:::-;14738:81;:::o;17964:109::-;18020:4;18044:21;:8;18057:7;18044:21;:12;:21;:::i;:::-;18037:28;17964:109;-1:-1:-1;;17964:109:0:o;19591:78::-;19654:7;;;;19591:78;:::o;18181:77::-;18225:25;18239:10;18225:13;:25::i;:::-;18181:77::o;8045:110::-;-1:-1:-1;;;;;8129:18:0;8102:7;8129:18;;;;;;;;;;;;8045:110::o;14881:103::-;14950:26;14960:7;14969:6;14950:9;:26::i;:::-;14881:103;;:::o;18081:92::-;17863:20;17872:10;17863:8;:20::i;:::-;17855:81;;;;-1:-1:-1;;;17855:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18146:19;18157:7;18146:10;:19::i;20171:116::-;17863:20;17872:10;17863:8;:20::i;:::-;17855:81;;;;-1:-1:-1;;;17855:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19828:7;;;;19827:8;19819:37;;;;;-1:-1:-1;;;19819:37:0;;;;;;;;;;;;-1:-1:-1;;;19819:37:0;;;;;;;;;;;;;;;20231:7;:14;;-1:-1:-1;;20231:14:0;20241:4;20231:14;;;20261:18;;;20268:10;20261:18;;;;;;;;;;;;;20171:116::o;15810:87::-;15882:7;15875:14;;;;;;;;-1:-1:-1;;15875:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15849:13;;15875:14;;15882:7;;15875:14;;15882:7;15875:14;;;;;;;;;;;;;;;;;;;;;;;;21272:177;19828:7;;21368:4;;19828:7;;19827:8;19819:37;;;;;-1:-1:-1;;;19819:37:0;;;;;;;;;;;;-1:-1:-1;;;19819:37:0;;;;;;;;;;;;;;;21392:49;21416:7;21425:15;21392:23;:49::i;20641:132::-;19828:7;;20716:4;;19828:7;;19827:8;19819:37;;;;;-1:-1:-1;;;19819:37:0;;;;;;;;;;;;-1:-1:-1;;;19819:37:0;;;;;;;;;;;;;;;20740:25;20755:2;20759:5;20740:14;:25::i;8587:134::-;-1:-1:-1;;;;;8686:18:0;;;8659:7;8686:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8587:134::o;8868:148::-;8933:4;8950:36;8959:10;8971:7;8980:5;8950:8;:36::i;:::-;-1:-1:-1;9004:4:0;8868:148;;;;:::o;9487:256::-;9576:4;9593:36;9603:6;9611:9;9622:6;9593:9;:36::i;:::-;-1:-1:-1;;;;;9669:19:0;;;;;;:11;:19;;;;;;;;9657:10;9669:31;;;;;;;;;9640:73;;9649:6;;9669:43;;9705:6;9669:43;:35;:43;:::i;:::-;9640:8;:73::i;:::-;-1:-1:-1;9731:4:0;9487:256;;;;;:::o;10152:206::-;10258:10;10232:4;10279:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10279:32:0;;;;;;;;;;10232:4;;10249:79;;10270:7;;10279:48;;10316:10;10279:48;:36;:48;:::i;12917:306::-;-1:-1:-1;;;;;12992:21:0;;12984:67;;;;-1:-1:-1;;;12984:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13079:12;;:23;;13096:5;13079:23;:16;:23;:::i;:::-;13064:12;:38;-1:-1:-1;;;;;13134:18:0;;:9;:18;;;;;;;;;;;:29;;13157:5;13134:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;13113:18:0;;:9;:18;;;;;;;;;;;:50;;;;13179:36;;;;;;;13113:9;;13179:36;;;;;;;;;;;12917:306;;:::o;17339:203::-;17411:4;-1:-1:-1;;;;;17436:21:0;;17428:68;;;;-1:-1:-1;;;17428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17514:20:0;:11;:20;;;;;;;;;;;;;;;17339:203::o;18396:130::-;18456:24;:8;18472:7;18456:24;:15;:24;:::i;:::-;18496:22;;-1:-1:-1;;;;;18496:22:0;;;;;;;;18396:130;:::o;14183:188::-;14255:22;14261:7;14270:6;14255:5;:22::i;:::-;-1:-1:-1;;;;;14318:20:0;;;;;;:11;:20;;;;;;;;14306:10;14318:32;;;;;;;;;14288:75;;14297:7;;14318:44;;14355:6;14318:44;:36;:44;:::i;18266:122::-;18323:21;:8;18336:7;18323:21;:12;:21;:::i;:::-;18360:20;;-1:-1:-1;;;;;18360:20:0;;;;;;;;18266:122;:::o;10861:216::-;10972:10;10946:4;10993:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10993:32:0;;;;;;;;;;10946:4;;10963:84;;10984:7;;10993:53;;11030:15;10993:53;:36;:53;:::i;8368:156::-;8437:4;8454:40;8464:10;8476:9;8487:6;8454:9;:40::i;13663:335::-;-1:-1:-1;;;;;13756:19:0;;13748:68;;;;-1:-1:-1;;;13748:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13835:21:0;;13827:68;;;;-1:-1:-1;;;13827:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13908:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;13959:31;;;;;;;;;;;;;;;;;13663:335;;;:::o;11567:429::-;-1:-1:-1;;;;;11665:20:0;;11657:70;;;;-1:-1:-1;;;11657:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11746:23:0;;11738:71;;;;-1:-1:-1;;;11738:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11842:17:0;;:9;:17;;;;;;;;;;;:29;;11864:6;11842:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;11822:17:0;;;:9;:17;;;;;;;;;;;:49;;;;11905:20;;;;;;;:32;;11930:6;11905:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;11882:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;11953:35;;;;;;;11882:20;;11953:35;;;;;;;;;;;;;11567:429;;;:::o;1315:184::-;1373:7;1406:1;1401;:6;;1393:49;;;;;-1:-1:-1;;;1393:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1465:5:0;;;1315:184::o;859:181::-;917:7;949:5;;;973:6;;;;965:46;;;;;-1:-1:-1;;;965:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;17061:183;17141:18;17145:4;17151:7;17141:3;:18::i;:::-;17133:64;;;;-1:-1:-1;;;17133:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17208:20:0;17231:5;17208:20;;;;;;;;;;;:28;;-1:-1:-1;;17208:28:0;;;17061:183::o;16803:178::-;16881:18;16885:4;16891:7;16881:3;:18::i;:::-;16880:19;16872:63;;;;;-1:-1:-1;;;16872:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16946:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;16946:27:0;16969:4;16946:27;;;16803:178::o

Swarm Source

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