ETH Price: $2,540.47 (-5.01%)

Token

Tepleton (TEP)
 

Overview

Max Total Supply

519,562,972.98432684 TEP

Holders

61,907

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
0.000075 TEP

Value
$0.00
0xd552870b2da7e17a5da7537ad8e66162cf671d07
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:
TEPTokenV2

Compiler Version
v0.5.13+commit.5b0b510c

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-16
*/

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

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

/**
 * @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, Pausable {
    /**
     * @dev Destoys `amount` tokens from the caller.
     *
     * See `ERC20._burn`.
     */
    function burn(uint256 amount) public whenNotPaused {
        _burn(msg.sender, amount);
    }

    /**
     * @dev See `ERC20._burnFrom`.
     */
    function burnFrom(address account, uint256 amount) public whenNotPaused {
        _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 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 TEPTokenV2 is ERC20, ERC20Burnable, ERC20Pausable, ERC20Detailed {

    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor () public ERC20Detailed("Tepleton", "TEP", 8) {
        _mint(msg.sender, 900000000 * (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"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f5465706c65746f6e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5445500000000000000000000000000000000000000000000000000000000000815250600862000091336200010b60201b60201c565b6004805460ff191690558251620000b090600590602086019062000428565b508151620000c690600690602085019062000428565b506007805460ff191660ff929092169190911790555062000105905033620000ed6200015d565b60ff16600a0a6335a4e900026200016760201b60201c565b620004ca565b620001268160036200028260201b6200101c1790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60075460ff165b90565b6001600160a01b038216620001dd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001f9816002546200032960201b62000f5b1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200022c91839062000f5b62000329821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200029782826001600160e01b03620003a516565b156200030457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156200039e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006001600160a01b03821662000408576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620016ce6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046b57805160ff19168380011785556200049b565b828001600101855582156200049b579182015b828111156200049b5782518255916020019190600101906200047e565b50620004a9929150620004ad565b5090565b6200016491905b80821115620004a95760008155600101620004b4565b6111f480620004da6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad5780638456cb59116100715780638456cb591461035257806395d89b411461035a578063a457c2d714610362578063a9059cbb1461038e578063dd62ed3e146103ba57610121565b80635c975abb146102ca5780636ef8d66d146102d257806370a08231146102da57806379cc67901461030057806382dc1ec41461032c57610121565b8063313ce567116100f4578063313ce5671461023357806339509351146102515780633f4ba83a1461027d57806342966c681461028757806346fbf68e146102a457610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e6103e8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b03813516906020013561047e565b604080519115158252519081900360200190f35b6101eb6104dd565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b038135811691602081013590911690604001356104e3565b61023b610544565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b03813516906020013561054d565b6102856105a5565b005b6102856004803603602081101561029d57600080fd5b5035610676565b6101cf600480360360208110156102ba57600080fd5b50356001600160a01b03166106ce565b6101cf6106e7565b6102856106f0565b6101eb600480360360208110156102f057600080fd5b50356001600160a01b03166106fb565b6102856004803603604081101561031657600080fd5b506001600160a01b038135169060200135610716565b6102856004803603602081101561034257600080fd5b50356001600160a01b031661076f565b6102856107bc565b61012e61088d565b6101cf6004803603604081101561037857600080fd5b506001600160a01b0381351690602001356108ee565b6101cf600480360360408110156103a457600080fd5b506001600160a01b038135169060200135610946565b6101eb600480360360408110156103d057600080fd5b506001600160a01b038135811691602001351661099e565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60045460009060ff16156104cc576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d683836109c9565b9392505050565b60025490565b60045460009060ff1615610531576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61053c8484846109df565b949350505050565b60075460ff1690565b60045460009060ff161561059b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610a36565b6105ae336106ce565b6105e95760405162461bcd60e51b81526004018080602001828103825260308152602001806110c16030913960400191505060405180910390fd5b60045460ff16610637576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6004805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60045460ff16156106c1576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106cb3382610a72565b50565b60006106e160038363ffffffff610b4b16565b92915050565b60045460ff1690565b6106f933610bb2565b565b6001600160a01b031660009081526020819052604090205490565b60045460ff1615610761576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61076b8282610bfa565b5050565b610778336106ce565b6107b35760405162461bcd60e51b81526004018080602001828103825260308152602001806110c16030913960400191505060405180910390fd5b6106cb81610c3f565b6107c5336106ce565b6108005760405162461bcd60e51b81526004018080602001828103825260308152602001806110c16030913960400191505060405180910390fd5b60045460ff161561084b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6004805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104745780601f1061044957610100808354040283529160200191610474565b60045460009060ff161561093c576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610c87565b60045460009060ff1615610994576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610cc3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006109d6338484610cd0565b50600192915050565b60006109ec848484610dbc565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610a2c918691610a27908663ffffffff610efe16565b610cd0565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109d6918590610a27908663ffffffff610f5b16565b6001600160a01b038216610ab75760405162461bcd60e51b81526004018080602001828103825260218152602001806111566021913960400191505060405180910390fd5b600254610aca908263ffffffff610efe16565b6002556001600160a01b038216600090815260208190526040902054610af6908263ffffffff610efe16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b038216610b925760405162461bcd60e51b81526004018080602001828103825260228152602001806111346022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610bc360038263ffffffff610fb516565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610c048282610a72565b6001600160a01b03821660009081526001602090815260408083203380855292529091205461076b918491610a27908563ffffffff610efe16565b610c5060038263ffffffff61101c16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109d6918590610a27908663ffffffff610efe16565b60006109d6338484610dbc565b6001600160a01b038316610d155760405162461bcd60e51b815260040180806020018281038252602481526020018061119c6024913960400191505060405180910390fd5b6001600160a01b038216610d5a5760405162461bcd60e51b81526004018080602001828103825260228152602001806110f16022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610e015760405162461bcd60e51b81526004018080602001828103825260258152602001806111776025913960400191505060405180910390fd5b6001600160a01b038216610e465760405162461bcd60e51b815260040180806020018281038252602381526020018061109e6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610e6f908263ffffffff610efe16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ea4908263ffffffff610f5b16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610f55576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156104d6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610fbf8282610b4b565b610ffa5760405162461bcd60e51b81526004018080602001828103825260218152602001806111136021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6110268282610b4b565b15611078576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820b4e66067424a037dde17b05265b1f3ce9ea4bb92578347487d97994b9212d22164736f6c634300050d0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad5780638456cb59116100715780638456cb591461035257806395d89b411461035a578063a457c2d714610362578063a9059cbb1461038e578063dd62ed3e146103ba57610121565b80635c975abb146102ca5780636ef8d66d146102d257806370a08231146102da57806379cc67901461030057806382dc1ec41461032c57610121565b8063313ce567116100f4578063313ce5671461023357806339509351146102515780633f4ba83a1461027d57806342966c681461028757806346fbf68e146102a457610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e6103e8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b03813516906020013561047e565b604080519115158252519081900360200190f35b6101eb6104dd565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b038135811691602081013590911690604001356104e3565b61023b610544565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b03813516906020013561054d565b6102856105a5565b005b6102856004803603602081101561029d57600080fd5b5035610676565b6101cf600480360360208110156102ba57600080fd5b50356001600160a01b03166106ce565b6101cf6106e7565b6102856106f0565b6101eb600480360360208110156102f057600080fd5b50356001600160a01b03166106fb565b6102856004803603604081101561031657600080fd5b506001600160a01b038135169060200135610716565b6102856004803603602081101561034257600080fd5b50356001600160a01b031661076f565b6102856107bc565b61012e61088d565b6101cf6004803603604081101561037857600080fd5b506001600160a01b0381351690602001356108ee565b6101cf600480360360408110156103a457600080fd5b506001600160a01b038135169060200135610946565b6101eb600480360360408110156103d057600080fd5b506001600160a01b038135811691602001351661099e565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60045460009060ff16156104cc576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d683836109c9565b9392505050565b60025490565b60045460009060ff1615610531576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61053c8484846109df565b949350505050565b60075460ff1690565b60045460009060ff161561059b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610a36565b6105ae336106ce565b6105e95760405162461bcd60e51b81526004018080602001828103825260308152602001806110c16030913960400191505060405180910390fd5b60045460ff16610637576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6004805460ff191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60045460ff16156106c1576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106cb3382610a72565b50565b60006106e160038363ffffffff610b4b16565b92915050565b60045460ff1690565b6106f933610bb2565b565b6001600160a01b031660009081526020819052604090205490565b60045460ff1615610761576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61076b8282610bfa565b5050565b610778336106ce565b6107b35760405162461bcd60e51b81526004018080602001828103825260308152602001806110c16030913960400191505060405180910390fd5b6106cb81610c3f565b6107c5336106ce565b6108005760405162461bcd60e51b81526004018080602001828103825260308152602001806110c16030913960400191505060405180910390fd5b60045460ff161561084b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6004805460ff191660011790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104745780601f1061044957610100808354040283529160200191610474565b60045460009060ff161561093c576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610c87565b60045460009060ff1615610994576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6104d68383610cc3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006109d6338484610cd0565b50600192915050565b60006109ec848484610dbc565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610a2c918691610a27908663ffffffff610efe16565b610cd0565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109d6918590610a27908663ffffffff610f5b16565b6001600160a01b038216610ab75760405162461bcd60e51b81526004018080602001828103825260218152602001806111566021913960400191505060405180910390fd5b600254610aca908263ffffffff610efe16565b6002556001600160a01b038216600090815260208190526040902054610af6908263ffffffff610efe16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b60006001600160a01b038216610b925760405162461bcd60e51b81526004018080602001828103825260228152602001806111346022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610bc360038263ffffffff610fb516565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610c048282610a72565b6001600160a01b03821660009081526001602090815260408083203380855292529091205461076b918491610a27908563ffffffff610efe16565b610c5060038263ffffffff61101c16565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109d6918590610a27908663ffffffff610efe16565b60006109d6338484610dbc565b6001600160a01b038316610d155760405162461bcd60e51b815260040180806020018281038252602481526020018061119c6024913960400191505060405180910390fd5b6001600160a01b038216610d5a5760405162461bcd60e51b81526004018080602001828103825260228152602001806110f16022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610e015760405162461bcd60e51b81526004018080602001828103825260258152602001806111776025913960400191505060405180910390fd5b6001600160a01b038216610e465760405162461bcd60e51b815260040180806020018281038252602381526020018061109e6023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610e6f908263ffffffff610efe16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ea4908263ffffffff610f5b16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115610f55576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156104d6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610fbf8282610b4b565b610ffa5760405162461bcd60e51b81526004018080602001828103825260218152602001806111136021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6110268282610b4b565b15611078576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820b4e66067424a037dde17b05265b1f3ce9ea4bb92578347487d97994b9212d22164736f6c634300050d0032

Deployed Bytecode Sourcemap

21494:310:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21494:310:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19597: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;19597:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20987:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20987:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;7891:91;;;:::i;:::-;;;;;;;;;;;;;;;;20819:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20819:160:0;;;;;;;;;;;;;;;;;:::i;20455:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21135:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21135:167:0;;;;;;;;:::i;18204:118::-;;;:::i;:::-;;18699:95;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18699:95:0;;:::i;15786:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15786:109:0;-1:-1:-1;;;;;15786:109:0;;:::i;17413:78::-;;;:::i;16003: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;18856:117::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18856:117:0;;;;;;;;:::i;15903:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15903:92:0;-1:-1:-1;;;;;15903:92:0;;:::i;17993:116::-;;;:::i;19799:87::-;;;:::i;21310:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21310:177:0;;;;;;;;:::i;20679:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20679: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;19597:83::-;19667:5;19660:12;;;;;;;;-1:-1:-1;;19660:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19634:13;;19660:12;;19667:5;;19660:12;;19667:5;19660:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19597:83;:::o;20987:140::-;17650:7;;21066:4;;17650:7;;17649:8;17641:37;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;;;;21090:29;21104:7;21113:5;21090:13;:29::i;:::-;21083:36;20987:140;-1:-1:-1;;;20987:140:0:o;7891:91::-;7962:12;;7891:91;:::o;20819:160::-;17650:7;;20912:4;;17650:7;;17649:8;17641:37;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;;;;20936:35;20955:4;20961:2;20965:5;20936:18;:35::i;:::-;20929:42;20819:160;-1:-1:-1;;;;20819:160:0:o;20455:83::-;20521:9;;;;20455:83;:::o;21135:167::-;17650:7;;21226:4;;17650:7;;17649:8;17641:37;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;;;;21250:44;21274:7;21283:10;21250:23;:44::i;18204:118::-;15685:20;15694:10;15685:8;:20::i;:::-;15677:81;;;;-1:-1:-1;;;15677:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17849:7;;;;17841:40;;;;;-1:-1:-1;;;17841:40:0;;;;;;;;;;;;-1:-1:-1;;;17841:40:0;;;;;;;;;;;;;;;18263:7;:15;;-1:-1:-1;;18263:15:0;;;18294:20;;;18303:10;18294:20;;;;;;;;;;;;;18204:118::o;18699:95::-;17650:7;;;;17649:8;17641:37;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;;;;18761:25;18767:10;18779:6;18761:5;:25::i;:::-;18699:95;:::o;15786:109::-;15842:4;15866:21;:8;15879:7;15866:21;:12;:21;:::i;:::-;15859:28;15786:109;-1:-1:-1;;15786:109:0:o;17413:78::-;17476:7;;;;17413:78;:::o;16003:77::-;16047:25;16061:10;16047:13;:25::i;:::-;16003:77::o;8045:110::-;-1:-1:-1;;;;;8129:18:0;8102:7;8129:18;;;;;;;;;;;;8045:110::o;18856:117::-;17650:7;;;;17649:8;17641:37;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;;;;18939:26;18949:7;18958:6;18939:9;:26::i;:::-;18856:117;;:::o;15903:92::-;15685:20;15694:10;15685:8;:20::i;:::-;15677:81;;;;-1:-1:-1;;;15677:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15968:19;15979:7;15968:10;:19::i;17993:116::-;15685:20;15694:10;15685:8;:20::i;:::-;15677:81;;;;-1:-1:-1;;;15677:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17650:7;;;;17649:8;17641:37;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;;;;18053:7;:14;;-1:-1:-1;;18053:14:0;18063:4;18053:14;;;18083:18;;;18090:10;18083:18;;;;;;;;;;;;;17993:116::o;19799:87::-;19871:7;19864:14;;;;;;;;-1:-1:-1;;19864:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19838:13;;19864:14;;19871:7;;19864:14;;19871:7;19864:14;;;;;;;;;;;;;;;;;;;;;;;;21310:177;17650:7;;21406:4;;17650:7;;17649:8;17641:37;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;;;;21430:49;21454:7;21463:15;21430:23;:49::i;20679:132::-;17650:7;;20754:4;;17650:7;;17649:8;17641:37;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;-1:-1:-1;;;17641:37:0;;;;;;;;;;;;;;;20778:25;20793:2;20797:5;20778: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;15161:203::-;15233:4;-1:-1:-1;;;;;15258:21:0;;15250:68;;;;-1:-1:-1;;;15250:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15336:20:0;:11;:20;;;;;;;;;;;;;;;15161:203::o;16218:130::-;16278:24;:8;16294:7;16278:24;:15;:24;:::i;:::-;16318:22;;-1:-1:-1;;;;;16318:22:0;;;;;;;;16218: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;16088:122::-;16145:21;:8;16158:7;16145:21;:12;:21;:::i;:::-;16182:20;;-1:-1:-1;;;;;16182:20:0;;;;;;;;16088: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;;;;;;;;;;;;;;;;;;;;;;;;;;;14883:183;14963:18;14967:4;14973:7;14963:3;:18::i;:::-;14955:64;;;;-1:-1:-1;;;14955:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15030:20:0;15053:5;15030:20;;;;;;;;;;;:28;;-1:-1:-1;;15030:28:0;;;14883:183::o;14625:178::-;14703:18;14707:4;14713:7;14703:3;:18::i;:::-;14702:19;14694:63;;;;;-1:-1:-1;;;14694:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14768:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;14768:27:0;14791:4;14768:27;;;14625:178::o

Swarm Source

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