ETH Price: $2,965.67 (-0.62%)
Gas: 5 Gwei

Token

Option Token (OT)
 

Overview

Max Total Supply

90,344,901 OT

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
Null: 0x000...000
Balance
0 OT

Value
$0.00
0x0000000000000000000000000000000000000000
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:
OTToken

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-05-09
*/

pragma solidity 0.5.17;

/**
 * @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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        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) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        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.
     *
     * IMPORTANT: 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 Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}



/**
 * @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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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 Context, 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(_msgSender(), 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 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        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 `amount`.
     * - 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, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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(_msgSender(), spender, _allowances[_msgSender()][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(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        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, "ERC20: transfer amount exceeds balance");
        _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 Destroys `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 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @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 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Destroys `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, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}



/**
 * @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 Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), 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: 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;
    }
}


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @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 BlackList is Context, Ownable, ERC20Burnable {
    mapping (address => bool) public isBlackListed;
    function getBlackListStatus(address _maker) public view returns (bool) {
        return isBlackListed[_maker];
    }

    function addBlackList (address _evilUser) public onlyOwner {
        isBlackListed[_evilUser] = true;
        emit AddedBlackList(_evilUser);
    }

    function removeBlackList (address _clearedUser) public onlyOwner {
        isBlackListed[_clearedUser] = false;
        emit RemovedBlackList(_clearedUser);
    }

    function destroyBlackFunds (address _blackListedUser) public onlyOwner {
        require(isBlackListed[_blackListedUser], "BlackList: can only destroy fund of black listed user");
        uint dirtyFunds = balanceOf(_blackListedUser);
        _burn(_blackListedUser, dirtyFunds);
        emit DestroyedBlackFunds(_blackListedUser, dirtyFunds);
    }

    event DestroyedBlackFunds(address _blackListedUser, uint _balance);
    event AddedBlackList(address _user);
    event RemovedBlackList(address _user);
}

contract PauserRole is Context {
    using Roles for Roles.Role;

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

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(_msgSender());
    }

    modifier onlyPauser() {
        require(isPauser(_msgSender()), "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(_msgSender());
    }

    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 Context, 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(_msgSender());
    }

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



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

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

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

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

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

contract ERC20BlackList is ERC20, BlackList {
    function transfer(address to, uint256 value) public returns (bool) {
        require(!getBlackListStatus(_msgSender()), "BlackList: can not transfer from account in blacklist");
        require(!getBlackListStatus(to), "BlackList: can not transfer to account in blacklist");
        return super.transfer(to, value);
    }
    function transferFrom(address from, address to, uint256 value) public returns (bool) {
        require(!getBlackListStatus(_msgSender()), "BlackList: can not transfer by account in blacklist");
        require(!getBlackListStatus(from), "BlackList: can not transfer from account in blacklist");
        require(!getBlackListStatus(to), "BlackList: can not transfer to account in blacklist");
        return super.transferFrom(from, to, value);
    }
}

contract OTToken is ERC20Burnable, ERC20BlackList, ERC20Pausable, ERC20Detailed {
    /**
     * @dev Constructor that gives msg.sender all of existing tokens.
     */
    constructor () public ERC20Detailed("Option Token", "OT", 8) {
        _mint(_msgSender(), 100000000 * (10 ** uint256(decimals())));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"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":"_blackListedUser","type":"address"},{"indexed":false,"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":false,"internalType":"address","name":"_user","type":"address"}],"name":"RemovedBlackList","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":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"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":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020016b27b83a34b7b7102a37b5b2b760a11b8152506040518060400160405280600281526020016113d560f21b81525060086000620000666200016260201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000d6620000c76001600160e01b036200016216565b6001600160e01b036200016716565b6006805460ff191690558251620000f59060079060208601906200041f565b5081516200010b9060089060208501906200041f565b506009805460ff191660ff92909216919091179055506200015c90506200013162000162565b620001446001600160e01b03620001b916565b60ff16600a0a6305f5e10002620001c260201b60201c565b620004c1565b335b90565b62000182816005620002c760201b620016e91790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60095460ff1690565b6001600160a01b0382166200021e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200023a816003546200035460201b6200154f1790919060201c565b6003556001600160a01b0382166000908152600160209081526040909120546200026f9183906200154f62000354821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620002dc82826001600160e01b03620003b616565b156200032f576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b600082820183811015620003af576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006001600160a01b038216620003ff5760405162461bcd60e51b8152600401808060200182810382526022815260200180620020cf6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046257805160ff191683800117855562000492565b8280016001018555821562000492579182015b828111156200049257825182559160200191906001019062000475565b50620004a0929150620004a4565b5090565b6200016491905b80821115620004a05760008155600101620004ab565b611bfe80620004d16000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063a457c2d711610097578063e47d606011610071578063e47d60601461050b578063e4997dc514610531578063f2fde38b14610557578063f3bdc2281461057d576101c4565b8063a457c2d714610485578063a9059cbb146104b1578063dd62ed3e146104dd576101c4565b80638456cb59116100d35780638456cb59146104495780638da5cb5b146104515780638f32d59b1461047557806395d89b411461047d576101c4565b8063715018a6146103ef57806379cc6790146103f757806382dc1ec414610423576101c4565b80633f4ba83a1161016657806359bf1abe1161014057806359bf1abe146103935780635c975abb146103b95780636ef8d66d146103c157806370a08231146103c9576101c4565b80633f4ba83a1461034857806342966c681461035057806346fbf68e1461036d576101c4565b806318160ddd116101a257806318160ddd146102ae57806323b872dd146102c8578063313ce567146102fe578063395093511461031c576101c4565b806306fdde03146101c9578063095ea7b3146102465780630ecb93c014610286575b600080fd5b6101d16105a3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102726004803603604081101561025c57600080fd5b506001600160a01b038135169060200135610639565b604080519115158252519081900360200190f35b6102ac6004803603602081101561029c57600080fd5b50356001600160a01b0316610698565b005b6102b661073a565b60408051918252519081900360200190f35b610272600480360360608110156102de57600080fd5b506001600160a01b03813581169160208101359091169060400135610740565b6103066107a1565b6040805160ff9092168252519081900360200190f35b6102726004803603604081101561033257600080fd5b506001600160a01b0381351690602001356107aa565b6102ac610802565b6102ac6004803603602081101561036657600080fd5b50356108eb565b6102726004803603602081101561038357600080fd5b50356001600160a01b03166108ff565b610272600480360360208110156103a957600080fd5b50356001600160a01b0316610918565b610272610936565b6102ac61093f565b6102b6600480360360208110156103df57600080fd5b50356001600160a01b0316610951565b6102ac61096c565b6102ac6004803603604081101561040d57600080fd5b506001600160a01b0381351690602001356109fd565b6102ac6004803603602081101561043957600080fd5b50356001600160a01b0316610a0b565b6102ac610a5a565b610459610b21565b604080516001600160a01b039092168252519081900360200190f35b610272610b30565b6101d1610b54565b6102726004803603604081101561049b57600080fd5b506001600160a01b038135169060200135610bb5565b610272600480360360408110156104c757600080fd5b506001600160a01b038135169060200135610c0d565b6102b6600480360360408110156104f357600080fd5b506001600160a01b0381358116916020013516610c65565b6102726004803603602081101561052157600080fd5b50356001600160a01b0316610c90565b6102ac6004803603602081101561054757600080fd5b50356001600160a01b0316610ca5565b6102ac6004803603602081101561056d57600080fd5b50356001600160a01b0316610d44565b6102ac6004803603602081101561059357600080fd5b50356001600160a01b0316610d94565b60078054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561062f5780601f106106045761010080835404028352916020019161062f565b820191906000526020600020905b81548152906001019060200180831161061257829003601f168201915b5050505050905090565b60065460009060ff1615610687576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106918383610e91565b9392505050565b6106a0610b30565b6106df576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad5833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260046020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b60035490565b60065460009060ff161561078e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610799848484610eae565b949350505050565b60095460ff1690565b60065460009060ff16156107f8576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106918383610f91565b61081261080d610fea565b6108ff565b61084d5760405162461bcd60e51b815260040180806020018281038252603081526020018061191e6030913960400191505060405180910390fd5b60065460ff1661089b576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6108ce610fea565b604080516001600160a01b039092168252519081900360200190a1565b6108fc6108f6610fea565b82610fee565b50565b600061091260058363ffffffff6110ea16565b92915050565b6001600160a01b031660009081526004602052604090205460ff1690565b60065460ff1690565b61094f61094a610fea565b611151565b565b6001600160a01b031660009081526001602052604090205490565b610974610b30565b6109b3576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad5833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610a078282611199565b5050565b610a1661080d610fea565b610a515760405162461bcd60e51b815260040180806020018281038252603081526020018061191e6030913960400191505060405180910390fd5b6108fc81611214565b610a6561080d610fea565b610aa05760405162461bcd60e51b815260040180806020018281038252603081526020018061191e6030913960400191505060405180910390fd5b60065460ff1615610aeb576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586108ce610fea565b6000546001600160a01b031690565b600080546001600160a01b0316610b45610fea565b6001600160a01b031614905090565b60088054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561062f5780601f106106045761010080835404028352916020019161062f565b60065460009060ff1615610c03576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610691838361125c565b60065460009060ff1615610c5b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61069183836112ca565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60046020526000908152604090205460ff1681565b610cad610b30565b610cec576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad5833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260046020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b610d4c610b30565b610d8b576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad5833981519152604482015290519081900360640190fd5b6108fc81611362565b610d9c610b30565b610ddb576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad5833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610e325760405162461bcd60e51b81526004018080602001828103825260358152602001806119ef6035913960400191505060405180910390fd5b6000610e3d82610951565b9050610e498282610fee565b604080516001600160a01b03841681526020810183905281517f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6929181900390910190a15050565b6000610ea5610e9e610fea565b8484611402565b50600192915050565b6000610ec0610ebb610fea565b610918565b15610efc5760405162461bcd60e51b81526004018080602001828103825260338152602001806119bc6033913960400191505060405180910390fd5b610f0584610918565b15610f415760405162461bcd60e51b8152600401808060200182810382526035815260200180611a246035913960400191505060405180910390fd5b610f4a83610918565b15610f865760405162461bcd60e51b8152600401808060200182810382526033815260200180611a7a6033913960400191505060405180910390fd5b6107998484846114ee565b6000610ea5610f9e610fea565b84610fe58560026000610faf610fea565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61154f16565b611402565b3390565b6001600160a01b0382166110335760405162461bcd60e51b8152600401808060200182810382526021815260200180611b3b6021913960400191505060405180910390fd5b611076816040518060600160405280602281526020016118fc602291396001600160a01b038516600090815260016020526040902054919063ffffffff6115a916565b6001600160a01b0383166000908152600160205260409020556003546110a2908263ffffffff61164016565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006001600160a01b0382166111315760405162461bcd60e51b8152600401808060200182810382526022815260200180611af56022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61116260058263ffffffff61168216565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6111a38282610fee565b610a07826111af610fea565b610fe584604051806060016040528060248152602001611b17602491396001600160a01b0388166000908152600260205260408120906111ed610fea565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6115a916565b61122560058263ffffffff6116e916565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000610ea5611269610fea565b84610fe585604051806060016040528060258152602001611ba56025913960026000611293610fea565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6115a916565b60006112d7610ebb610fea565b156113135760405162461bcd60e51b8152600401808060200182810382526035815260200180611a246035913960400191505060405180910390fd5b61131c83610918565b156113585760405162461bcd60e51b8152600401808060200182810382526033815260200180611a7a6033913960400191505060405180910390fd5b610691838361176a565b6001600160a01b0381166113a75760405162461bcd60e51b815260040180806020018281038252602681526020018061194e6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166114475760405162461bcd60e51b8152600401808060200182810382526024815260200180611b816024913960400191505060405180910390fd5b6001600160a01b03821661148c5760405162461bcd60e51b81526004018080602001828103825260228152602001806119746022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006114fb84848461177a565b61154584611507610fea565b610fe585604051806060016040528060288152602001611aad602891396001600160a01b038a166000908152600260205260408120906111ed610fea565b5060019392505050565b600082820183811015610691576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156116385760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115fd5781810151838201526020016115e5565b50505050905090810190601f16801561162a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061069183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115a9565b61168c82826110ea565b6116c75760405162461bcd60e51b8152600401808060200182810382526021815260200180611a596021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6116f382826110ea565b15611745576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000610ea5611777610fea565b84845b6001600160a01b0383166117bf5760405162461bcd60e51b8152600401808060200182810382526025815260200180611b5c6025913960400191505060405180910390fd5b6001600160a01b0382166118045760405162461bcd60e51b81526004018080602001828103825260238152602001806118d96023913960400191505060405180910390fd5b61184781604051806060016040528060268152602001611996602691396001600160a01b038616600090815260016020526040902054919063ffffffff6115a916565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461187c908263ffffffff61154f16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365426c61636b4c6973743a2063616e206e6f74207472616e73666572206279206163636f756e7420696e20626c61636b6c697374426c61636b4c6973743a2063616e206f6e6c792064657374726f792066756e64206f6620626c61636b206c69737465642075736572426c61636b4c6973743a2063616e206e6f74207472616e736665722066726f6d206163636f756e7420696e20626c61636b6c697374526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65426c61636b4c6973743a2063616e206e6f74207472616e7366657220746f206163636f756e7420696e20626c61636b6c69737445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158202f53d0d32d024c5acbfb7b67a7e0aaa569d79834ae44ee722a64506112cf1e6364736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063a457c2d711610097578063e47d606011610071578063e47d60601461050b578063e4997dc514610531578063f2fde38b14610557578063f3bdc2281461057d576101c4565b8063a457c2d714610485578063a9059cbb146104b1578063dd62ed3e146104dd576101c4565b80638456cb59116100d35780638456cb59146104495780638da5cb5b146104515780638f32d59b1461047557806395d89b411461047d576101c4565b8063715018a6146103ef57806379cc6790146103f757806382dc1ec414610423576101c4565b80633f4ba83a1161016657806359bf1abe1161014057806359bf1abe146103935780635c975abb146103b95780636ef8d66d146103c157806370a08231146103c9576101c4565b80633f4ba83a1461034857806342966c681461035057806346fbf68e1461036d576101c4565b806318160ddd116101a257806318160ddd146102ae57806323b872dd146102c8578063313ce567146102fe578063395093511461031c576101c4565b806306fdde03146101c9578063095ea7b3146102465780630ecb93c014610286575b600080fd5b6101d16105a3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102726004803603604081101561025c57600080fd5b506001600160a01b038135169060200135610639565b604080519115158252519081900360200190f35b6102ac6004803603602081101561029c57600080fd5b50356001600160a01b0316610698565b005b6102b661073a565b60408051918252519081900360200190f35b610272600480360360608110156102de57600080fd5b506001600160a01b03813581169160208101359091169060400135610740565b6103066107a1565b6040805160ff9092168252519081900360200190f35b6102726004803603604081101561033257600080fd5b506001600160a01b0381351690602001356107aa565b6102ac610802565b6102ac6004803603602081101561036657600080fd5b50356108eb565b6102726004803603602081101561038357600080fd5b50356001600160a01b03166108ff565b610272600480360360208110156103a957600080fd5b50356001600160a01b0316610918565b610272610936565b6102ac61093f565b6102b6600480360360208110156103df57600080fd5b50356001600160a01b0316610951565b6102ac61096c565b6102ac6004803603604081101561040d57600080fd5b506001600160a01b0381351690602001356109fd565b6102ac6004803603602081101561043957600080fd5b50356001600160a01b0316610a0b565b6102ac610a5a565b610459610b21565b604080516001600160a01b039092168252519081900360200190f35b610272610b30565b6101d1610b54565b6102726004803603604081101561049b57600080fd5b506001600160a01b038135169060200135610bb5565b610272600480360360408110156104c757600080fd5b506001600160a01b038135169060200135610c0d565b6102b6600480360360408110156104f357600080fd5b506001600160a01b0381358116916020013516610c65565b6102726004803603602081101561052157600080fd5b50356001600160a01b0316610c90565b6102ac6004803603602081101561054757600080fd5b50356001600160a01b0316610ca5565b6102ac6004803603602081101561056d57600080fd5b50356001600160a01b0316610d44565b6102ac6004803603602081101561059357600080fd5b50356001600160a01b0316610d94565b60078054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561062f5780601f106106045761010080835404028352916020019161062f565b820191906000526020600020905b81548152906001019060200180831161061257829003601f168201915b5050505050905090565b60065460009060ff1615610687576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106918383610e91565b9392505050565b6106a0610b30565b6106df576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad5833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260046020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b60035490565b60065460009060ff161561078e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610799848484610eae565b949350505050565b60095460ff1690565b60065460009060ff16156107f8576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6106918383610f91565b61081261080d610fea565b6108ff565b61084d5760405162461bcd60e51b815260040180806020018281038252603081526020018061191e6030913960400191505060405180910390fd5b60065460ff1661089b576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6108ce610fea565b604080516001600160a01b039092168252519081900360200190a1565b6108fc6108f6610fea565b82610fee565b50565b600061091260058363ffffffff6110ea16565b92915050565b6001600160a01b031660009081526004602052604090205460ff1690565b60065460ff1690565b61094f61094a610fea565b611151565b565b6001600160a01b031660009081526001602052604090205490565b610974610b30565b6109b3576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad5833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610a078282611199565b5050565b610a1661080d610fea565b610a515760405162461bcd60e51b815260040180806020018281038252603081526020018061191e6030913960400191505060405180910390fd5b6108fc81611214565b610a6561080d610fea565b610aa05760405162461bcd60e51b815260040180806020018281038252603081526020018061191e6030913960400191505060405180910390fd5b60065460ff1615610aeb576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586108ce610fea565b6000546001600160a01b031690565b600080546001600160a01b0316610b45610fea565b6001600160a01b031614905090565b60088054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561062f5780601f106106045761010080835404028352916020019161062f565b60065460009060ff1615610c03576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b610691838361125c565b60065460009060ff1615610c5b576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61069183836112ca565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60046020526000908152604090205460ff1681565b610cad610b30565b610cec576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad5833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260046020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b610d4c610b30565b610d8b576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad5833981519152604482015290519081900360640190fd5b6108fc81611362565b610d9c610b30565b610ddb576040805162461bcd60e51b81526020600482018190526024820152600080516020611ad5833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610e325760405162461bcd60e51b81526004018080602001828103825260358152602001806119ef6035913960400191505060405180910390fd5b6000610e3d82610951565b9050610e498282610fee565b604080516001600160a01b03841681526020810183905281517f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6929181900390910190a15050565b6000610ea5610e9e610fea565b8484611402565b50600192915050565b6000610ec0610ebb610fea565b610918565b15610efc5760405162461bcd60e51b81526004018080602001828103825260338152602001806119bc6033913960400191505060405180910390fd5b610f0584610918565b15610f415760405162461bcd60e51b8152600401808060200182810382526035815260200180611a246035913960400191505060405180910390fd5b610f4a83610918565b15610f865760405162461bcd60e51b8152600401808060200182810382526033815260200180611a7a6033913960400191505060405180910390fd5b6107998484846114ee565b6000610ea5610f9e610fea565b84610fe58560026000610faf610fea565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61154f16565b611402565b3390565b6001600160a01b0382166110335760405162461bcd60e51b8152600401808060200182810382526021815260200180611b3b6021913960400191505060405180910390fd5b611076816040518060600160405280602281526020016118fc602291396001600160a01b038516600090815260016020526040902054919063ffffffff6115a916565b6001600160a01b0383166000908152600160205260409020556003546110a2908263ffffffff61164016565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006001600160a01b0382166111315760405162461bcd60e51b8152600401808060200182810382526022815260200180611af56022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61116260058263ffffffff61168216565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b6111a38282610fee565b610a07826111af610fea565b610fe584604051806060016040528060248152602001611b17602491396001600160a01b0388166000908152600260205260408120906111ed610fea565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6115a916565b61122560058263ffffffff6116e916565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6000610ea5611269610fea565b84610fe585604051806060016040528060258152602001611ba56025913960026000611293610fea565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6115a916565b60006112d7610ebb610fea565b156113135760405162461bcd60e51b8152600401808060200182810382526035815260200180611a246035913960400191505060405180910390fd5b61131c83610918565b156113585760405162461bcd60e51b8152600401808060200182810382526033815260200180611a7a6033913960400191505060405180910390fd5b610691838361176a565b6001600160a01b0381166113a75760405162461bcd60e51b815260040180806020018281038252602681526020018061194e6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166114475760405162461bcd60e51b8152600401808060200182810382526024815260200180611b816024913960400191505060405180910390fd5b6001600160a01b03821661148c5760405162461bcd60e51b81526004018080602001828103825260228152602001806119746022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006114fb84848461177a565b61154584611507610fea565b610fe585604051806060016040528060288152602001611aad602891396001600160a01b038a166000908152600260205260408120906111ed610fea565b5060019392505050565b600082820183811015610691576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156116385760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115fd5781810151838201526020016115e5565b50505050905090810190601f16801561162a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061069183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115a9565b61168c82826110ea565b6116c75760405162461bcd60e51b8152600401808060200182810382526021815260200180611a596021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6116f382826110ea565b15611745576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000610ea5611777610fea565b84845b6001600160a01b0383166117bf5760405162461bcd60e51b8152600401808060200182810382526025815260200180611b5c6025913960400191505060405180910390fd5b6001600160a01b0382166118045760405162461bcd60e51b81526004018080602001828103825260238152602001806118d96023913960400191505060405180910390fd5b61184781604051806060016040528060268152602001611996602691396001600160a01b038616600090815260016020526040902054919063ffffffff6115a916565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461187c908263ffffffff61154f16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365426c61636b4c6973743a2063616e206e6f74207472616e73666572206279206163636f756e7420696e20626c61636b6c697374426c61636b4c6973743a2063616e206f6e6c792064657374726f792066756e64206f6620626c61636b206c69737465642075736572426c61636b4c6973743a2063616e206e6f74207472616e736665722066726f6d206163636f756e7420696e20626c61636b6c697374526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65426c61636b4c6973743a2063616e206e6f74207472616e7366657220746f206163636f756e7420696e20626c61636b6c69737445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158202f53d0d32d024c5acbfb7b67a7e0aaa569d79834ae44ee722a64506112cf1e6364736f6c63430005110032

Deployed Bytecode Sourcemap

29263:319:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29263:319:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18832: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;18832:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27906:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27906:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;23439:150;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23439:150:0;-1:-1:-1;;;;;23439:150:0;;:::i;:::-;;10859:91;;;:::i;:::-;;;;;;;;;;;;;;;;27738:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27738:160:0;;;;;;;;;;;;;;;;;:::i;19684:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28054:170;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28054:170:0;;;;;;;;:::i;27157:120::-;;;:::i;17956:83::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17956:83:0;;:::i;24722:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24722:109:0;-1:-1:-1;;;;;24722:109:0;;:::i;23313:118::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23313:118:0;-1:-1:-1;;;;;23313:118:0;;:::i;26364:78::-;;;:::i;24939:79::-;;;:::i;11013:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11013:110:0;-1:-1:-1;;;;;11013:110:0;;:::i;21458:140::-;;;:::i;18101:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18101:103:0;;;;;;;;:::i;24839:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24839:92:0;-1:-1:-1;;;;;24839:92:0;;:::i;26944:118::-;;;:::i;20647:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;20647:79:0;;;;;;;;;;;;;;21013:94;;;:::i;19034:87::-;;;:::i;28232:180::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28232:180:0;;;;;;;;:::i;27598:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27598:132:0;;;;;;;;:::i;11557:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11557:134:0;;;;;;;;;;:::i;23260:46::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23260:46:0;-1:-1:-1;;;;;23260:46:0;;:::i;23597:165::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23597:165:0;-1:-1:-1;;;;;23597:165:0;;:::i;21753:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21753:109:0;-1:-1:-1;;;;;21753:109:0;;:::i;23770:354::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23770:354:0;-1:-1:-1;;;;;23770:354:0;;:::i;18832:83::-;18902:5;18895:12;;;;;;;;-1:-1:-1;;18895:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18869:13;;18895:12;;18902:5;;18895:12;;18902:5;18895:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18832:83;:::o;27906:140::-;26601:7;;27985:4;;26601:7;;26600:8;26592:37;;;;;-1:-1:-1;;;26592:37:0;;;;;;;;;;;;-1:-1:-1;;;26592:37:0;;;;;;;;;;;;;;;28009:29;28023:7;28032:5;28009:13;:29::i;:::-;28002:36;27906:140;-1:-1:-1;;;27906:140:0:o;23439:150::-;20859:9;:7;:9::i;:::-;20851:54;;;;;-1:-1:-1;;;20851:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20851:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23509:24:0;;;;;;:13;:24;;;;;;;;;:31;;-1:-1:-1;;23509:31:0;23536:4;23509:31;;;23556:25;;;;;;;;;;;;;;;;;23439:150;:::o;10859:91::-;10930:12;;10859:91;:::o;27738:160::-;26601:7;;27831:4;;26601:7;;26600:8;26592:37;;;;;-1:-1:-1;;;26592:37:0;;;;;;;;;;;;-1:-1:-1;;;26592:37:0;;;;;;;;;;;;;;;27855:35;27874:4;27880:2;27884:5;27855:18;:35::i;:::-;27848:42;27738:160;-1:-1:-1;;;;27738:160:0:o;19684:83::-;19750:9;;;;19684:83;:::o;28054:170::-;26601:7;;28148:4;;26601:7;;26600:8;26592:37;;;;;-1:-1:-1;;;26592:37:0;;;;;;;;;;;;-1:-1:-1;;;26592:37:0;;;;;;;;;;;;;;;28172:44;28196:7;28205:10;28172:23;:44::i;27157:120::-;24619:22;24628:12;:10;:12::i;:::-;24619:8;:22::i;:::-;24611:83;;;;-1:-1:-1;;;24611:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26800:7;;;;26792:40;;;;;-1:-1:-1;;;26792:40:0;;;;;;;;;;;;-1:-1:-1;;;26792:40:0;;;;;;;;;;;;;;;27216:7;:15;;-1:-1:-1;;27216:15:0;;;27247:22;27256:12;:10;:12::i;:::-;27247:22;;;-1:-1:-1;;;;;27247:22:0;;;;;;;;;;;;;;27157:120::o;17956:83::-;18004:27;18010:12;:10;:12::i;:::-;18024:6;18004:5;:27::i;:::-;17956:83;:::o;24722:109::-;24778:4;24802:21;:8;24815:7;24802:21;:12;:21;:::i;:::-;24795:28;24722:109;-1:-1:-1;;24722:109:0:o;23313:118::-;-1:-1:-1;;;;;23402:21:0;23378:4;23402:21;;;:13;:21;;;;;;;;;23313:118::o;26364:78::-;26427:7;;;;26364:78;:::o;24939:79::-;24983:27;24997:12;:10;:12::i;:::-;24983:13;:27::i;:::-;24939:79::o;11013:110::-;-1:-1:-1;;;;;11097:18:0;11070:7;11097:18;;;:9;:18;;;;;;;11013:110::o;21458:140::-;20859:9;:7;:9::i;:::-;20851:54;;;;;-1:-1:-1;;;20851:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20851:54:0;;;;;;;;;;;;;;;21557:1;21541:6;;21520:40;;-1:-1:-1;;;;;21541:6:0;;;;21520:40;;21557:1;;21520:40;21588:1;21571:19;;-1:-1:-1;;;;;;21571:19:0;;;21458:140::o;18101:103::-;18170:26;18180:7;18189:6;18170:9;:26::i;:::-;18101:103;;:::o;24839:92::-;24619:22;24628:12;:10;:12::i;24619:22::-;24611:83;;;;-1:-1:-1;;;24611:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24904:19;24915:7;24904:10;:19::i;26944:118::-;24619:22;24628:12;:10;:12::i;24619:22::-;24611:83;;;;-1:-1:-1;;;24611:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26601:7;;;;26600:8;26592:37;;;;;-1:-1:-1;;;26592:37:0;;;;;;;;;;;;-1:-1:-1;;;26592:37:0;;;;;;;;;;;;;;;27004:7;:14;;-1:-1:-1;;27004:14:0;27014:4;27004:14;;;27034:20;27041:12;:10;:12::i;20647:79::-;20685:7;20712:6;-1:-1:-1;;;;;20712:6:0;20647:79;:::o;21013:94::-;21053:4;21093:6;;-1:-1:-1;;;;;21093:6:0;21077:12;:10;:12::i;:::-;-1:-1:-1;;;;;21077:22:0;;21070:29;;21013:94;:::o;19034:87::-;19106:7;19099:14;;;;;;;;-1:-1:-1;;19099:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19073:13;;19099:14;;19106:7;;19099:14;;19106:7;19099:14;;;;;;;;;;;;;;;;;;;;;;;;28232:180;26601:7;;28331:4;;26601:7;;26600:8;26592:37;;;;;-1:-1:-1;;;26592:37:0;;;;;;;;;;;;-1:-1:-1;;;26592:37:0;;;;;;;;;;;;;;;28355:49;28379:7;28388:15;28355:23;:49::i;27598:132::-;26601:7;;27673:4;;26601:7;;26600:8;26592:37;;;;;-1:-1:-1;;;26592:37:0;;;;;;;;;;;;-1:-1:-1;;;26592:37:0;;;;;;;;;;;;;;;27697:25;27712:2;27716:5;27697:14;:25::i;11557:134::-;-1:-1:-1;;;;;11656:18:0;;;11629:7;11656:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11557:134::o;23260:46::-;;;;;;;;;;;;;;;:::o;23597:165::-;20859:9;:7;:9::i;:::-;20851:54;;;;;-1:-1:-1;;;20851:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20851:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23673:27:0;;23703:5;23673:27;;;:13;:27;;;;;;;;;:35;;-1:-1:-1;;23673:35:0;;;23724:30;;;;;;;;;;;;;;;;;23597:165;:::o;21753:109::-;20859:9;:7;:9::i;:::-;20851:54;;;;;-1:-1:-1;;;20851:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20851:54:0;;;;;;;;;;;;;;;21826:28;21845:8;21826:18;:28::i;23770:354::-;20859:9;:7;:9::i;:::-;20851:54;;;;;-1:-1:-1;;;20851:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20851:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23860:31:0;;;;;;:13;:31;;;;;;;;23852:97;;;;-1:-1:-1;;;23852:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23960:15;23978:27;23988:16;23978:9;:27::i;:::-;23960:45;;24016:35;24022:16;24040:10;24016:5;:35::i;:::-;24067:49;;;-1:-1:-1;;;;;24067:49:0;;;;;;;;;;;;;;;;;;;;;;;20916:1;23770:354;:::o;11838:152::-;11904:4;11921:39;11930:12;:10;:12::i;:::-;11944:7;11953:6;11921:8;:39::i;:::-;-1:-1:-1;11978:4:0;11838:152;;;;:::o;28802:454::-;28881:4;28907:32;28926:12;:10;:12::i;:::-;28907:18;:32::i;:::-;28906:33;28898:97;;;;-1:-1:-1;;;28898:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29015:24;29034:4;29015:18;:24::i;:::-;29014:25;29006:91;;;;-1:-1:-1;;;29006:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29117:22;29136:2;29117:18;:22::i;:::-;29116:23;29108:87;;;;-1:-1:-1;;;29108:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29213:35;29232:4;29238:2;29242:5;29213:18;:35::i;13175:210::-;13255:4;13272:83;13281:12;:10;:12::i;:::-;13295:7;13304:50;13343:10;13304:11;:25;13316:12;:10;:12::i;:::-;-1:-1:-1;;;;;13304:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13304:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;:::-;13272:8;:83::i;9037:98::-;9117:10;9037:98;:::o;16031:348::-;-1:-1:-1;;;;;16107:21:0;;16099:67;;;;-1:-1:-1;;;16099:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16200:68;16223:6;16200:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16200:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;16179:18:0;;;;;;:9;:18;;;;;:89;16294:12;;:24;;16311:6;16294:24;:16;:24;:::i;:::-;16279:12;:39;16334:37;;;;;;;;16360:1;;-1:-1:-1;;;;;16334:37:0;;;;;;;;;;;;16031:348;;:::o;22989:203::-;23061:4;-1:-1:-1;;;;;23086:21:0;;23078:68;;;;-1:-1:-1;;;23078:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23164:20:0;:11;:20;;;;;;;;;;;;;;;22989:203::o;25156:130::-;25216:24;:8;25232:7;25216:24;:15;:24;:::i;:::-;25256:22;;-1:-1:-1;;;;;25256:22:0;;;;;;;;25156:130;:::o;17343:232::-;17415:22;17421:7;17430:6;17415:5;:22::i;:::-;17448:119;17457:7;17466:12;:10;:12::i;:::-;17480:86;17519:6;17480:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17480:20:0;;;;;;:11;:20;;;;;;17501:12;:10;:12::i;:::-;-1:-1:-1;;;;;17480:34:0;;;;;;;;;;;;-1:-1:-1;17480:34:0;;;:86;;:38;:86;:::i;25026:122::-;25083:21;:8;25096:7;25083:21;:12;:21;:::i;:::-;25120:20;;-1:-1:-1;;;;;25120:20:0;;;;;;;;25026:122;:::o;13888:261::-;13973:4;13990:129;13999:12;:10;:12::i;:::-;14013:7;14022:96;14061:15;14022:96;;;;;;;;;;;;;;;;;:11;:25;14034:12;:10;:12::i;:::-;-1:-1:-1;;;;;14022:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14022:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;28470:326::-;28531:4;28557:32;28576:12;:10;:12::i;28557:32::-;28556:33;28548:99;;;;-1:-1:-1;;;28548:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28667:22;28686:2;28667:18;:22::i;:::-;28666:23;28658:87;;;;-1:-1:-1;;;28658:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28763:25;28778:2;28782:5;28763:14;:25::i;21968:229::-;-1:-1:-1;;;;;22042:22:0;;22034:73;;;;-1:-1:-1;;;22034:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22144:6;;;22123:38;;-1:-1:-1;;;;;22123:38:0;;;;22144:6;;;22123:38;;;22172:6;:17;;-1:-1:-1;;;;;;22172:17:0;-1:-1:-1;;;;;22172:17:0;;;;;;;;;;21968:229::o;16819:338::-;-1:-1:-1;;;;;16913:19:0;;16905:68;;;;-1:-1:-1;;;16905:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16992:21:0;;16984:68;;;;-1:-1:-1;;;16984:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17065:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17117:32;;;;;;;;;;;;;;;;;16819:338;;;:::o;12462:304::-;12551:4;12568:36;12578:6;12586:9;12597:6;12568:9;:36::i;:::-;12615:121;12624:6;12632:12;:10;:12::i;:::-;12646:89;12684:6;12646:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12646:19:0;;;;;;:11;:19;;;;;;12666:12;:10;:12::i;12615:121::-;-1:-1:-1;12754:4:0;12462:304;;;;;:::o;859:181::-;917:7;949:5;;;973:6;;;;965:46;;;;;-1:-1:-1;;;965:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1788:192;1874:7;1910:12;1902:6;;;;1894:29;;;;-1:-1:-1;;;1894:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1894:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1946:5:0;;;1788:192::o;1315:136::-;1373:7;1400:43;1404:1;1407;1400:43;;;;;;;;;;;;;;;;;:3;:43::i;22711:183::-;22791:18;22795:4;22801:7;22791:3;:18::i;:::-;22783:64;;;;-1:-1:-1;;;22783:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22858:20:0;22881:5;22858:20;;;;;;;;;;;:28;;-1:-1:-1;;22858:28:0;;;22711:183::o;22453:178::-;22531:18;22535:4;22541:7;22531:3;:18::i;:::-;22530:19;22522:63;;;;;-1:-1:-1;;;22522:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22596:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;22596:27:0;22619:4;22596:27;;;22453:178::o;11336:158::-;11405:4;11422:42;11432:12;:10;:12::i;:::-;11446:9;11457:6;14639:471;-1:-1:-1;;;;;14737:20:0;;14729:70;;;;-1:-1:-1;;;14729:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14818:23:0;;14810:71;;;;-1:-1:-1;;;14810:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14914;14936:6;14914:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14914:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;14894:17:0;;;;;;;:9;:17;;;;;;:91;;;;15019:20;;;;;;;:32;;15044:6;15019:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;14996:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;15067:35;;;;;;;14996:20;;15067:35;;;;;;;;;;;;;14639:471;;;:::o

Swarm Source

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