ETH Price: $1,556.74 (-2.33%)
 

Overview

Max Total Supply

186,627.585 WHIVE

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 3 Decimals)

Balance
3.014 WHIVE

Value
$0.00
0x1C56f92E8DA9D57C3AFA409c4dE70e15A51e992F
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:
WHIVE

Compiler Version
v0.5.11+commit.c082d0b4

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-16
*/

pragma solidity ^0.5.11;
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;
    }
}

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

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

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

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

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

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

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

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

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

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

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

contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the {MinterRole}.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

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 WHIVE is ERC20Pausable, ERC20Burnable, ERC20Mintable, ERC20Detailed {

    constructor() ERC20Detailed("Wrapped Hive", "WHIVE", 3) public {}

}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":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":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"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":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","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":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","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"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":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"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f57726170706564204869766500000000000000000000000000000000000000008152506040518060400160405280600581526020017f57484956450000000000000000000000000000000000000000000000000000008152506003620000a3620000946200011c60201b60201c565b6001600160e01b036200012116565b6004805460ff19169055620000d3620000c46001600160e01b036200011c16565b6001600160e01b036200017316565b8251620000e8906006906020860190620002ef565b508151620000fe906007906020850190620002ef565b506008805460ff191660ff9290921691909117905550620003919050565b335b90565b6200013c816003620001c560201b620013f31790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6200018e816005620001c560201b620013f31790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001da82826001600160e01b036200026c16565b156200024757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620002cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062001a556022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200033257805160ff191683800117855562000362565b8280016001018555821562000362579182015b828111156200036257825182559160200191906001019062000345565b506200037092915062000374565b5090565b6200011e91905b808211156200037057600081556001016200037b565b6116b480620003a16000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80636ef8d66d116100c3578063983b2d561161007c578063983b2d56146103ba57806398650275146103e0578063a457c2d7146103e8578063a9059cbb14610414578063aa271e1a14610440578063dd62ed3e146104665761014d565b80636ef8d66d1461032a57806370a082311461033257806379cc67901461035857806382dc1ec4146103845780638456cb59146103aa57806395d89b41146103b25761014d565b80633950935111610115578063395093511461027d5780633f4ba83a146102a957806340c10f19146102b357806342966c68146102df57806346fbf68e146102fc5780635c975abb146103225761014d565b806306fdde0314610152578063095ea7b3146101cf57806318160ddd1461020f57806323b872dd14610229578063313ce5671461025f575b600080fd5b61015a610494565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b03813516906020013561052a565b604080519115158252519081900360200190f35b610217610589565b60408051918252519081900360200190f35b6101fb6004803603606081101561023f57600080fd5b506001600160a01b0381358116916020810135909116906040013561058f565b6102676105f0565b6040805160ff9092168252519081900360200190f35b6101fb6004803603604081101561029357600080fd5b506001600160a01b0381351690602001356105f9565b6102b1610651565b005b6101fb600480360360408110156102c957600080fd5b506001600160a01b03813516906020013561073a565b6102b1600480360360208110156102f557600080fd5b503561079a565b6101fb6004803603602081101561031257600080fd5b50356001600160a01b03166107ae565b6101fb6107c7565b6102b16107d0565b6102176004803603602081101561034857600080fd5b50356001600160a01b03166107e2565b6102b16004803603604081101561036e57600080fd5b506001600160a01b0381351690602001356107fd565b6102b16004803603602081101561039a57600080fd5b50356001600160a01b031661080b565b6102b161085a565b61015a610921565b6102b1600480360360208110156103d057600080fd5b50356001600160a01b0316610982565b6102b16109d1565b6101fb600480360360408110156103fe57600080fd5b506001600160a01b0381351690602001356109e1565b6101fb6004803603604081101561042a57600080fd5b506001600160a01b038135169060200135610a39565b6101fb6004803603602081101561045657600080fd5b50356001600160a01b0316610a91565b6102176004803603604081101561047c57600080fd5b506001600160a01b0381358116916020013516610aa4565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105205780601f106104f557610100808354040283529160200191610520565b820191906000526020600020905b81548152906001019060200180831161050357829003601f168201915b5050505050905090565b60045460009060ff1615610578576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105828383610acf565b9392505050565b60025490565b60045460009060ff16156105dd576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105e8848484610ae3565b949350505050565b60085460ff1690565b60045460009060ff1615610647576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105828383610b70565b61066161065c610bc4565b6107ae565b61069c5760405162461bcd60e51b81526004018080602001828103825260308152602001806114ba6030913960400191505060405180910390fd5b60045460ff166106ea576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61071d610bc4565b604080516001600160a01b039092168252519081900360200190a1565b600061074c610747610bc4565b610a91565b6107875760405162461bcd60e51b81526004018080602001828103825260308152602001806115326030913960400191505060405180910390fd5b6107918383610bc8565b50600192915050565b6107ab6107a5610bc4565b82610cb8565b50565b60006107c160038363ffffffff610db416565b92915050565b60045460ff1690565b6107e06107db610bc4565b610e1b565b565b6001600160a01b031660009081526020819052604090205490565b6108078282610e63565b5050565b61081661065c610bc4565b6108515760405162461bcd60e51b81526004018080602001828103825260308152602001806114ba6030913960400191505060405180910390fd5b6107ab81610eb7565b61086561065c610bc4565b6108a05760405162461bcd60e51b81526004018080602001828103825260308152602001806114ba6030913960400191505060405180910390fd5b60045460ff16156108eb576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861071d610bc4565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105205780601f106104f557610100808354040283529160200191610520565b61098d610747610bc4565b6109c85760405162461bcd60e51b81526004018080602001828103825260308152602001806115326030913960400191505060405180910390fd5b6107ab81610eff565b6107e06109dc610bc4565b610f47565b60045460009060ff1615610a2f576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105828383610f8f565b60045460009060ff1615610a87576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105828383610ffd565b60006107c160058363ffffffff610db416565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610791610adc610bc4565b8484611011565b6000610af08484846110fd565b610b6684610afc610bc4565b610b6185604051806060016040528060288152602001611583602891396001600160a01b038a16600090815260016020526040812090610b3a610bc4565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61125916565b611011565b5060019392505050565b6000610791610b7d610bc4565b84610b618560016000610b8e610bc4565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6112f016565b3390565b6001600160a01b038216610c23576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610c36908263ffffffff6112f016565b6002556001600160a01b038216600090815260208190526040902054610c62908263ffffffff6112f016565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610cfd5760405162461bcd60e51b81526004018080602001828103825260218152602001806115f16021913960400191505060405180910390fd5b610d4081604051806060016040528060228152602001611498602291396001600160a01b038516600090815260208190526040902054919063ffffffff61125916565b6001600160a01b038316600090815260208190526040902055600254610d6c908263ffffffff61134a16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006001600160a01b038216610dfb5760405162461bcd60e51b81526004018080602001828103825260228152602001806115ab6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610e2c60038263ffffffff61138c16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610e6d8282610cb8565b61080782610e79610bc4565b610b61846040518060600160405280602481526020016115cd602491396001600160a01b038816600090815260016020526040812090610b3a610bc4565b610ec860038263ffffffff6113f316565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610f1060058263ffffffff6113f316565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610f5860058263ffffffff61138c16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000610791610f9c610bc4565b84610b618560405180606001604052806025815260200161165b6025913960016000610fc6610bc4565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61125916565b600061079161100a610bc4565b84846110fd565b6001600160a01b0383166110565760405162461bcd60e51b81526004018080602001828103825260248152602001806116376024913960400191505060405180910390fd5b6001600160a01b03821661109b5760405162461bcd60e51b81526004018080602001828103825260228152602001806114ea6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111425760405162461bcd60e51b81526004018080602001828103825260258152602001806116126025913960400191505060405180910390fd5b6001600160a01b0382166111875760405162461bcd60e51b81526004018080602001828103825260238152602001806114756023913960400191505060405180910390fd5b6111ca8160405180606001604052806026815260200161150c602691396001600160a01b038616600090815260208190526040902054919063ffffffff61125916565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546111ff908263ffffffff6112f016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156112e85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112ad578181015183820152602001611295565b50505050905090810190601f1680156112da5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610582576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061058283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611259565b6113968282610db4565b6113d15760405162461bcd60e51b81526004018080602001828103825260218152602001806115626021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6113fd8282610db4565b1561144f576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158200d76187c305eaccfa019202790443f7d8895d5a38ca6821c9c4a0cd8bcaeb9a864736f6c634300050b0032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80636ef8d66d116100c3578063983b2d561161007c578063983b2d56146103ba57806398650275146103e0578063a457c2d7146103e8578063a9059cbb14610414578063aa271e1a14610440578063dd62ed3e146104665761014d565b80636ef8d66d1461032a57806370a082311461033257806379cc67901461035857806382dc1ec4146103845780638456cb59146103aa57806395d89b41146103b25761014d565b80633950935111610115578063395093511461027d5780633f4ba83a146102a957806340c10f19146102b357806342966c68146102df57806346fbf68e146102fc5780635c975abb146103225761014d565b806306fdde0314610152578063095ea7b3146101cf57806318160ddd1461020f57806323b872dd14610229578063313ce5671461025f575b600080fd5b61015a610494565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b03813516906020013561052a565b604080519115158252519081900360200190f35b610217610589565b60408051918252519081900360200190f35b6101fb6004803603606081101561023f57600080fd5b506001600160a01b0381358116916020810135909116906040013561058f565b6102676105f0565b6040805160ff9092168252519081900360200190f35b6101fb6004803603604081101561029357600080fd5b506001600160a01b0381351690602001356105f9565b6102b1610651565b005b6101fb600480360360408110156102c957600080fd5b506001600160a01b03813516906020013561073a565b6102b1600480360360208110156102f557600080fd5b503561079a565b6101fb6004803603602081101561031257600080fd5b50356001600160a01b03166107ae565b6101fb6107c7565b6102b16107d0565b6102176004803603602081101561034857600080fd5b50356001600160a01b03166107e2565b6102b16004803603604081101561036e57600080fd5b506001600160a01b0381351690602001356107fd565b6102b16004803603602081101561039a57600080fd5b50356001600160a01b031661080b565b6102b161085a565b61015a610921565b6102b1600480360360208110156103d057600080fd5b50356001600160a01b0316610982565b6102b16109d1565b6101fb600480360360408110156103fe57600080fd5b506001600160a01b0381351690602001356109e1565b6101fb6004803603604081101561042a57600080fd5b506001600160a01b038135169060200135610a39565b6101fb6004803603602081101561045657600080fd5b50356001600160a01b0316610a91565b6102176004803603604081101561047c57600080fd5b506001600160a01b0381358116916020013516610aa4565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105205780601f106104f557610100808354040283529160200191610520565b820191906000526020600020905b81548152906001019060200180831161050357829003601f168201915b5050505050905090565b60045460009060ff1615610578576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105828383610acf565b9392505050565b60025490565b60045460009060ff16156105dd576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105e8848484610ae3565b949350505050565b60085460ff1690565b60045460009060ff1615610647576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105828383610b70565b61066161065c610bc4565b6107ae565b61069c5760405162461bcd60e51b81526004018080602001828103825260308152602001806114ba6030913960400191505060405180910390fd5b60045460ff166106ea576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6004805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61071d610bc4565b604080516001600160a01b039092168252519081900360200190a1565b600061074c610747610bc4565b610a91565b6107875760405162461bcd60e51b81526004018080602001828103825260308152602001806115326030913960400191505060405180910390fd5b6107918383610bc8565b50600192915050565b6107ab6107a5610bc4565b82610cb8565b50565b60006107c160038363ffffffff610db416565b92915050565b60045460ff1690565b6107e06107db610bc4565b610e1b565b565b6001600160a01b031660009081526020819052604090205490565b6108078282610e63565b5050565b61081661065c610bc4565b6108515760405162461bcd60e51b81526004018080602001828103825260308152602001806114ba6030913960400191505060405180910390fd5b6107ab81610eb7565b61086561065c610bc4565b6108a05760405162461bcd60e51b81526004018080602001828103825260308152602001806114ba6030913960400191505060405180910390fd5b60045460ff16156108eb576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6004805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861071d610bc4565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105205780601f106104f557610100808354040283529160200191610520565b61098d610747610bc4565b6109c85760405162461bcd60e51b81526004018080602001828103825260308152602001806115326030913960400191505060405180910390fd5b6107ab81610eff565b6107e06109dc610bc4565b610f47565b60045460009060ff1615610a2f576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105828383610f8f565b60045460009060ff1615610a87576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6105828383610ffd565b60006107c160058363ffffffff610db416565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000610791610adc610bc4565b8484611011565b6000610af08484846110fd565b610b6684610afc610bc4565b610b6185604051806060016040528060288152602001611583602891396001600160a01b038a16600090815260016020526040812090610b3a610bc4565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61125916565b611011565b5060019392505050565b6000610791610b7d610bc4565b84610b618560016000610b8e610bc4565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6112f016565b3390565b6001600160a01b038216610c23576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610c36908263ffffffff6112f016565b6002556001600160a01b038216600090815260208190526040902054610c62908263ffffffff6112f016565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610cfd5760405162461bcd60e51b81526004018080602001828103825260218152602001806115f16021913960400191505060405180910390fd5b610d4081604051806060016040528060228152602001611498602291396001600160a01b038516600090815260208190526040902054919063ffffffff61125916565b6001600160a01b038316600090815260208190526040902055600254610d6c908263ffffffff61134a16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006001600160a01b038216610dfb5760405162461bcd60e51b81526004018080602001828103825260228152602001806115ab6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b610e2c60038263ffffffff61138c16565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b610e6d8282610cb8565b61080782610e79610bc4565b610b61846040518060600160405280602481526020016115cd602491396001600160a01b038816600090815260016020526040812090610b3a610bc4565b610ec860038263ffffffff6113f316565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b610f1060058263ffffffff6113f316565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610f5860058263ffffffff61138c16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000610791610f9c610bc4565b84610b618560405180606001604052806025815260200161165b6025913960016000610fc6610bc4565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61125916565b600061079161100a610bc4565b84846110fd565b6001600160a01b0383166110565760405162461bcd60e51b81526004018080602001828103825260248152602001806116376024913960400191505060405180910390fd5b6001600160a01b03821661109b5760405162461bcd60e51b81526004018080602001828103825260228152602001806114ea6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111425760405162461bcd60e51b81526004018080602001828103825260258152602001806116126025913960400191505060405180910390fd5b6001600160a01b0382166111875760405162461bcd60e51b81526004018080602001828103825260238152602001806114756023913960400191505060405180910390fd5b6111ca8160405180606001604052806026815260200161150c602691396001600160a01b038616600090815260208190526040902054919063ffffffff61125916565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546111ff908263ffffffff6112f016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156112e85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112ad578181015183820152602001611295565b50505050905090810190601f1680156112da5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610582576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600061058283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611259565b6113968282610db4565b6113d15760405162461bcd60e51b81526004018080602001828103825260218152602001806115626021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6113fd8282610db4565b1561144f576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff1916600117905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158200d76187c305eaccfa019202790443f7d8895d5a38ca6821c9c4a0cd8bcaeb9a864736f6c634300050b0032

Deployed Bytecode Sourcemap

22711:156:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22711:156:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9584: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;9584:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22198:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22198:140:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;10829:91;;;:::i;:::-;;;;;;;;;;;;;;;;22030:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22030:160:0;;;;;;;;;;;;;;;;;:::i;10436:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22346:170;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22346:170:0;;;;;;;;:::i;21376:120::-;;;:::i;:::-;;21691:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21691:143:0;;;;;;;;:::i;19710:83::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19710:83:0;;:::i;17982:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17982:109:0;-1:-1:-1;;;;;17982:109:0;;:::i;20583:78::-;;;:::i;18199:79::-;;;:::i;10983:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10983:110:0;-1:-1:-1;;;;;10983:110:0;;:::i;19855:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19855:103:0;;;;;;;;:::i;18099:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18099:92:0;-1:-1:-1;;;;;18099:92:0;;:::i;21163:118::-;;;:::i;9786:87::-;;;:::i;19100:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19100:92:0;-1:-1:-1;;;;;19100:92:0;;:::i;19200:79::-;;;:::i;22524:180::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22524:180:0;;;;;;;;:::i;21890:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21890:132:0;;;;;;;;:::i;18983:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18983:109:0;-1:-1:-1;;;;;18983:109:0;;:::i;11527:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11527:134:0;;;;;;;;;;:::i;9584:83::-;9654:5;9647:12;;;;;;;;-1:-1:-1;;9647:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9621:13;;9647:12;;9654:5;;9647:12;;9654:5;9647:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9584:83;:::o;22198:140::-;20820:7;;22277:4;;20820:7;;20819:8;20811:37;;;;;-1:-1:-1;;;20811:37:0;;;;;;;;;;;;-1:-1:-1;;;20811:37:0;;;;;;;;;;;;;;;22301:29;22315:7;22324:5;22301:13;:29::i;:::-;22294:36;22198:140;-1:-1:-1;;;22198:140:0:o;10829:91::-;10900:12;;10829:91;:::o;22030:160::-;20820:7;;22123:4;;20820:7;;20819:8;20811:37;;;;;-1:-1:-1;;;20811:37:0;;;;;;;;;;;;-1:-1:-1;;;20811:37:0;;;;;;;;;;;;;;;22147:35;22166:4;22172:2;22176:5;22147:18;:35::i;:::-;22140:42;22030:160;-1:-1:-1;;;;22030:160:0:o;10436:83::-;10502:9;;;;10436:83;:::o;22346:170::-;20820:7;;22440:4;;20820:7;;20819:8;20811:37;;;;;-1:-1:-1;;;20811:37:0;;;;;;;;;;;;-1:-1:-1;;;20811:37:0;;;;;;;;;;;;;;;22464:44;22488:7;22497:10;22464:23;:44::i;21376:120::-;17879:22;17888:12;:10;:12::i;:::-;17879:8;:22::i;:::-;17871:83;;;;-1:-1:-1;;;17871:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21019:7;;;;21011:40;;;;;-1:-1:-1;;;21011:40:0;;;;;;;;;;;;-1:-1:-1;;;21011:40:0;;;;;;;;;;;;;;;21435:7;:15;;-1:-1:-1;;21435:15:0;;;21466:22;21475:12;:10;:12::i;:::-;21466:22;;;-1:-1:-1;;;;;21466:22:0;;;;;;;;;;;;;;21376:120::o;21691:143::-;21765:4;18880:22;18889:12;:10;:12::i;:::-;18880:8;:22::i;:::-;18872:83;;;;-1:-1:-1;;;18872:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21782:22;21788:7;21797:6;21782:5;:22::i;:::-;-1:-1:-1;21822:4:0;21691:143;;;;:::o;19710:83::-;19758:27;19764:12;:10;:12::i;:::-;19778:6;19758:5;:27::i;:::-;19710:83;:::o;17982:109::-;18038:4;18062:21;:8;18075:7;18062:21;:12;:21;:::i;:::-;18055:28;17982:109;-1:-1:-1;;17982:109:0:o;20583:78::-;20646:7;;;;20583:78;:::o;18199:79::-;18243:27;18257:12;:10;:12::i;:::-;18243:13;:27::i;:::-;18199:79::o;10983:110::-;-1:-1:-1;;;;;11067:18:0;11040:7;11067:18;;;;;;;;;;;;10983:110::o;19855:103::-;19924:26;19934:7;19943:6;19924:9;:26::i;:::-;19855:103;;:::o;18099:92::-;17879:22;17888:12;:10;:12::i;17879:22::-;17871:83;;;;-1:-1:-1;;;17871:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:19;18175:7;18164:10;:19::i;21163:118::-;17879:22;17888:12;:10;:12::i;17879:22::-;17871:83;;;;-1:-1:-1;;;17871:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20820:7;;;;20819:8;20811:37;;;;;-1:-1:-1;;;20811:37:0;;;;;;;;;;;;-1:-1:-1;;;20811:37:0;;;;;;;;;;;;;;;21223:7;:14;;-1:-1:-1;;21223:14:0;21233:4;21223:14;;;21253:20;21260:12;:10;:12::i;9786:87::-;9858:7;9851:14;;;;;;;;-1:-1:-1;;9851:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9825:13;;9851:14;;9858:7;;9851:14;;9858:7;9851:14;;;;;;;;;;;;;;;;;;;;;;;;19100:92;18880:22;18889:12;:10;:12::i;18880:22::-;18872:83;;;;-1:-1:-1;;;18872:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19165:19;19176:7;19165:10;:19::i;19200:79::-;19244:27;19258:12;:10;:12::i;:::-;19244:13;:27::i;22524:180::-;20820:7;;22623:4;;20820:7;;20819:8;20811:37;;;;;-1:-1:-1;;;20811:37:0;;;;;;;;;;;;-1:-1:-1;;;20811:37:0;;;;;;;;;;;;;;;22647:49;22671:7;22680:15;22647:23;:49::i;21890:132::-;20820:7;;21965:4;;20820:7;;20819:8;20811:37;;;;;-1:-1:-1;;;20811:37:0;;;;;;;;;;;;-1:-1:-1;;;20811:37:0;;;;;;;;;;;;;;;21989:25;22004:2;22008:5;21989:14;:25::i;18983:109::-;19039:4;19063:21;:8;19076:7;19063:21;:12;:21;:::i;11527:134::-;-1:-1:-1;;;;;11626:18:0;;;11599:7;11626:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11527:134::o;11808:152::-;11874:4;11891:39;11900:12;:10;:12::i;:::-;11914:7;11923:6;11891:8;:39::i;12432:304::-;12521:4;12538:36;12548:6;12556:9;12567:6;12538:9;:36::i;:::-;12585:121;12594:6;12602:12;:10;:12::i;:::-;12616:89;12654:6;12616:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12616:19:0;;;;;;:11;:19;;;;;;12636:12;:10;:12::i;:::-;-1:-1:-1;;;;;12616:33:0;;;;;;;;;;;;-1:-1:-1;12616:33:0;;;:89;;:37;:89;:::i;:::-;12585:8;:121::i;:::-;-1:-1:-1;12724:4:0;12432:304;;;;;:::o;13145:210::-;13225:4;13242:83;13251:12;:10;:12::i;:::-;13265:7;13274:50;13313:10;13274:11;:25;13286:12;:10;:12::i;:::-;-1:-1:-1;;;;;13274:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13274:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;5147:98::-;5227:10;5147:98;:::o;15361:308::-;-1:-1:-1;;;;;15437:21:0;;15429:65;;;;;-1:-1:-1;;;15429:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15522:12;;:24;;15539:6;15522:24;:16;:24;:::i;:::-;15507:12;:39;-1:-1:-1;;;;;15578:18:0;;:9;:18;;;;;;;;;;;:30;;15601:6;15578:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;15557:18:0;;:9;:18;;;;;;;;;;;:51;;;;15624:37;;;;;;;15557:18;;:9;;15624:37;;;;;;;;;;15361:308;;:::o;16001:348::-;-1:-1:-1;;;;;16077:21:0;;16069:67;;;;-1:-1:-1;;;16069:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16170:68;16193:6;16170:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16170:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;16149:18:0;;:9;:18;;;;;;;;;;:89;16264:12;;:24;;16281:6;16264:24;:16;:24;:::i;:::-;16249:12;:39;16304:37;;;;;;;;16330:1;;-1:-1:-1;;;;;16304:37:0;;;;;;;;;;;;16001:348;;:::o;8820:203::-;8892:4;-1:-1:-1;;;;;8917:21:0;;8909:68;;;;-1:-1:-1;;;8909:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8995:20:0;:11;:20;;;;;;;;;;;;;;;8820:203::o;18416:130::-;18476:24;:8;18492:7;18476:24;:15;:24;:::i;:::-;18516:22;;-1:-1:-1;;;;;18516:22:0;;;;;;;;18416:130;:::o;17313:232::-;17385:22;17391:7;17400:6;17385:5;:22::i;:::-;17418:119;17427:7;17436:12;:10;:12::i;:::-;17450:86;17489:6;17450:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17450:20:0;;;;;;:11;:20;;;;;;17471:12;:10;:12::i;18286:122::-;18343:21;:8;18356:7;18343:21;:12;:21;:::i;:::-;18380:20;;-1:-1:-1;;;;;18380:20:0;;;;;;;;18286:122;:::o;19287:::-;19344:21;:8;19357:7;19344:21;:12;:21;:::i;:::-;19381:20;;-1:-1:-1;;;;;19381:20:0;;;;;;;;19287:122;:::o;19417:130::-;19477:24;:8;19493:7;19477:24;:15;:24;:::i;:::-;19517:22;;-1:-1:-1;;;;;19517:22:0;;;;;;;;19417:130;:::o;13858:261::-;13943:4;13960:129;13969:12;:10;:12::i;:::-;13983:7;13992:96;14031:15;13992:96;;;;;;;;;;;;;;;;;:11;:25;14004:12;:10;:12::i;:::-;-1:-1:-1;;;;;13992:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13992:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;11306:158::-;11375:4;11392:42;11402:12;:10;:12::i;:::-;11416:9;11427:6;11392:9;:42::i;16789:338::-;-1:-1:-1;;;;;16883:19:0;;16875:68;;;;-1:-1:-1;;;16875:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16962:21:0;;16954:68;;;;-1:-1:-1;;;16954:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17035:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17087:32;;;;;;;;;;;;;;;;;16789:338;;;:::o;14609:471::-;-1:-1:-1;;;;;14707:20:0;;14699:70;;;;-1:-1:-1;;;14699:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14788:23:0;;14780:71;;;;-1:-1:-1;;;14780:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14884;14906:6;14884:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14884:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;14864:17:0;;;:9;:17;;;;;;;;;;;:91;;;;14989:20;;;;;;;:32;;15014:6;14989:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;14966:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15037:35;;;;;;;14966:20;;15037:35;;;;;;;;;;;;;14609:471;;;:::o;1210:192::-;1296:7;1332:12;1324:6;;;;1316:29;;;;-1:-1:-1;;;1316: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;1316:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1368:5:0;;;1210:192::o;281:181::-;339:7;371:5;;;395:6;;;;387:46;;;;;-1:-1:-1;;;387:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;737:136;795:7;822:43;826:1;829;822:43;;;;;;;;;;;;;;;;;:3;:43::i;8542:183::-;8622:18;8626:4;8632:7;8622:3;:18::i;:::-;8614:64;;;;-1:-1:-1;;;8614:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8689:20:0;8712:5;8689:20;;;;;;;;;;;:28;;-1:-1:-1;;8689:28:0;;;8542:183::o;8284:178::-;8362:18;8366:4;8372:7;8362:3;:18::i;:::-;8361:19;8353:63;;;;;-1:-1:-1;;;8353:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8427:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;8427:27:0;8450:4;8427:27;;;8284:178::o

Swarm Source

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