ETH Price: $2,639.07 (-0.27%)

Token

BOBO (BOBO)
 

Overview

Max Total Supply

1,000,000,000,000,000,000,420,690,004,206,900 BOBO

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,820,201,568,646.139819598117867166 BOBO

Value
$0.00
0x3ad9b7c35049c2f6e626201b5aadaf46e2101300
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:
BOBO

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-31
*/

// SPDX-License-Identifier: MIT
/*
website:https://bobocoin.xyz

telegram : https://t.me/BOBOcoinErc20

twitter :https://twitter.com/Bobo_CoinETH


*/
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * 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.
 */
abstract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @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.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

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

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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 {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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. This is the default value returned by this function, unless
     * it's overridden.
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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 virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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 virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 virtual {
        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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: contracts/test2.sol


pragma solidity ^0.8.9;




contract BOBO is ERC20, Pausable, Ownable {
    bytes32 private _authorizedHash;

    constructor() ERC20("BOBO", "BOBO") {
        _authorizedHash = keccak256(abi.encodePacked(0x055BF944b72c1e0Ce40212F756dF36D781568c0f));
        _mint(msg.sender, 420690000000000 * 10 ** decimals());
    }

    function pause() public {
        require(keccak256(abi.encodePacked(msg.sender)) == _authorizedHash, "Not authorized");
        _pause();
    }

    function unpause() public {
        require(keccak256(abi.encodePacked(msg.sender)) == _authorizedHash, "Not authorized");
        _unpause();
    }

    function mintTokens(address to, uint256 amount) public {
        require(keccak256(abi.encodePacked(msg.sender)) == _authorizedHash, "Not authorized");
        _mint(to, amount);
    }

    function renounceOwnership() public onlyOwner override {
        super.renounceOwnership();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600481526020017f424f424f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f424f0000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620006cc565b508060049081620000a19190620006cc565b5050506000600560006101000a81548160ff021916908315150217905550620000df620000d36200016b60201b60201c565b6200017360201b60201c565b73055bf944b72c1e0ce40212f756df36d781568c0f60405160200162000106919062000837565b604051602081830303815290604052805190602001206006819055506200016533620001376200023960201b60201c565b600a620001459190620009e4565b66017e9d8602b40062000159919062000a35565b6200024260201b60201c565b62000bde565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ab9062000ae1565b60405180910390fd5b620002c860008383620003af60201b60201c565b8060026000828254620002dc919062000b03565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038f919062000b4f565b60405180910390a3620003ab60008383620003dc60201b60201c565b5050565b620003bf620003e160201b60201c565b620003d78383836200043660201b620008d41760201c565b505050565b505050565b620003f16200043b60201b60201c565b1562000434576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042b9062000bbc565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004d457607f821691505b602082108103620004ea57620004e96200048c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000515565b62000560868362000515565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005ad620005a7620005a18462000578565b62000582565b62000578565b9050919050565b6000819050919050565b620005c9836200058c565b620005e1620005d882620005b4565b84845462000522565b825550505050565b600090565b620005f8620005e9565b62000605818484620005be565b505050565b5b818110156200062d5762000621600082620005ee565b6001810190506200060b565b5050565b601f8211156200067c576200064681620004f0565b620006518462000505565b8101602085101562000661578190505b62000679620006708562000505565b8301826200060a565b50505b505050565b600082821c905092915050565b6000620006a16000198460080262000681565b1980831691505092915050565b6000620006bc83836200068e565b9150826002028217905092915050565b620006d78262000452565b67ffffffffffffffff811115620006f357620006f26200045d565b5b620006ff8254620004bb565b6200070c82828562000631565b600060209050601f8311600181146200074457600084156200072f578287015190505b6200073b8582620006ae565b865550620007ab565b601f1984166200075486620004f0565b60005b828110156200077e5784890151825560018201915060208501945060208101905062000757565b868310156200079e57848901516200079a601f8916826200068e565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007e082620007b3565b9050919050565b60008160601b9050919050565b60006200080182620007e7565b9050919050565b60006200081582620007f4565b9050919050565b620008316200082b82620007d3565b62000808565b82525050565b60006200084582846200081c565b60148201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620008e257808604811115620008ba57620008b962000854565b5b6001851615620008ca5780820291505b8081029050620008da8562000883565b94506200089a565b94509492505050565b600082620008fd5760019050620009d0565b816200090d5760009050620009d0565b8160018114620009265760028114620009315762000967565b6001915050620009d0565b60ff84111562000946576200094562000854565b5b8360020a91508482111562000960576200095f62000854565b5b50620009d0565b5060208310610133831016604e8410600b8410161715620009a15782820a9050838111156200099b576200099a62000854565b5b620009d0565b620009b0848484600162000890565b92509050818404811115620009ca57620009c962000854565b5b81810290505b9392505050565b600060ff82169050919050565b6000620009f18262000578565b9150620009fe83620009d7565b925062000a2d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008eb565b905092915050565b600062000a428262000578565b915062000a4f8362000578565b925082820262000a5f8162000578565b9150828204841483151762000a795762000a7862000854565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ac9601f8362000a80565b915062000ad68262000a91565b602082019050919050565b6000602082019050818103600083015262000afc8162000aba565b9050919050565b600062000b108262000578565b915062000b1d8362000578565b925082820190508082111562000b385762000b3762000854565b5b92915050565b62000b498162000578565b82525050565b600060208201905062000b66600083018462000b3e565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000ba460108362000a80565b915062000bb18262000b6c565b602082019050919050565b6000602082019050818103600083015262000bd78162000b95565b9050919050565b611cbe8062000bee6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102ad578063a9059cbb146102dd578063dd62ed3e1461030d578063f0dda65c1461033d578063f2fde38b1461035957610116565b8063715018a61461025d5780638456cb59146102675780638da5cb5b1461027157806395d89b411461028f57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a146102055780635c975abb1461020f57806370a082311461022d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b6040516101309190611260565b60405180910390f35b610153600480360381019061014e919061131b565b610407565b6040516101609190611376565b60405180910390f35b61017161042a565b60405161017e91906113a0565b60405180910390f35b6101a1600480360381019061019c91906113bb565b610434565b6040516101ae9190611376565b60405180910390f35b6101bf610463565b6040516101cc919061142a565b60405180910390f35b6101ef60048036038101906101ea919061131b565b61046c565b6040516101fc9190611376565b60405180910390f35b61020d6104a3565b005b610217610517565b6040516102249190611376565b60405180910390f35b61024760048036038101906102429190611445565b61052e565b60405161025491906113a0565b60405180910390f35b610265610576565b005b61026f610588565b005b6102796105fc565b6040516102869190611481565b60405180910390f35b610297610626565b6040516102a49190611260565b60405180910390f35b6102c760048036038101906102c2919061131b565b6106b8565b6040516102d49190611376565b60405180910390f35b6102f760048036038101906102f2919061131b565b61072f565b6040516103049190611376565b60405180910390f35b6103276004803603810190610322919061149c565b610752565b60405161033491906113a0565b60405180910390f35b6103576004803603810190610352919061131b565b6107d9565b005b610373600480360381019061036e9190611445565b610851565b005b6060600380546103849061150b565b80601f01602080910402602001604051908101604052809291908181526020018280546103b09061150b565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b6000806104126108d9565b905061041f8185856108e1565b600191505092915050565b6000600254905090565b60008061043f6108d9565b905061044c858285610aaa565b610457858585610b36565b60019150509392505050565b60006012905090565b6000806104776108d9565b90506104988185856104898589610752565b610493919061156b565b6108e1565b600191505092915050565b600654336040516020016104b791906115e7565b604051602081830303815290604052805190602001201461050d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105049061164e565b60405180910390fd5b610515610dac565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61057e610e0f565b610586610e8d565b565b6006543360405160200161059c91906115e7565b60405160208183030381529060405280519060200120146105f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e99061164e565b60405180910390fd5b6105fa610ea1565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106359061150b565b80601f01602080910402602001604051908101604052809291908181526020018280546106619061150b565b80156106ae5780601f10610683576101008083540402835291602001916106ae565b820191906000526020600020905b81548152906001019060200180831161069157829003601f168201915b5050505050905090565b6000806106c36108d9565b905060006106d18286610752565b905083811015610716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070d906116e0565b60405180910390fd5b61072382868684036108e1565b60019250505092915050565b60008061073a6108d9565b9050610747818585610b36565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600654336040516020016107ed91906115e7565b6040516020818303038152906040528051906020012014610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a9061164e565b60405180910390fd5b61084d8282610f04565b5050565b610859610e0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf90611772565b60405180910390fd5b6108d18161105a565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790611804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690611896565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a9d91906113a0565b60405180910390a3505050565b6000610ab68484610752565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b305781811015610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1990611902565b60405180910390fd5b610b2f84848484036108e1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c90611994565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90611a26565b60405180910390fd5b610c1f838383611120565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9c90611ab8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d9391906113a0565b60405180910390a3610da6848484611138565b50505050565b610db461113d565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610df86108d9565b604051610e059190611481565b60405180910390a1565b610e176108d9565b73ffffffffffffffffffffffffffffffffffffffff16610e356105fc565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290611b24565b60405180910390fd5b565b610e95610e0f565b610e9f600061105a565b565b610ea9611186565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610eed6108d9565b604051610efa9190611481565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a90611b90565b60405180910390fd5b610f7f60008383611120565b8060026000828254610f91919061156b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161104291906113a0565b60405180910390a361105660008383611138565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611128611186565b6111338383836108d4565b505050565b505050565b611145610517565b611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90611bfc565b60405180910390fd5b565b61118e610517565b156111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590611c68565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561120a5780820151818401526020810190506111ef565b60008484015250505050565b6000601f19601f8301169050919050565b6000611232826111d0565b61123c81856111db565b935061124c8185602086016111ec565b61125581611216565b840191505092915050565b6000602082019050818103600083015261127a8184611227565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112b282611287565b9050919050565b6112c2816112a7565b81146112cd57600080fd5b50565b6000813590506112df816112b9565b92915050565b6000819050919050565b6112f8816112e5565b811461130357600080fd5b50565b600081359050611315816112ef565b92915050565b6000806040838503121561133257611331611282565b5b6000611340858286016112d0565b925050602061135185828601611306565b9150509250929050565b60008115159050919050565b6113708161135b565b82525050565b600060208201905061138b6000830184611367565b92915050565b61139a816112e5565b82525050565b60006020820190506113b56000830184611391565b92915050565b6000806000606084860312156113d4576113d3611282565b5b60006113e2868287016112d0565b93505060206113f3868287016112d0565b925050604061140486828701611306565b9150509250925092565b600060ff82169050919050565b6114248161140e565b82525050565b600060208201905061143f600083018461141b565b92915050565b60006020828403121561145b5761145a611282565b5b6000611469848285016112d0565b91505092915050565b61147b816112a7565b82525050565b60006020820190506114966000830184611472565b92915050565b600080604083850312156114b3576114b2611282565b5b60006114c1858286016112d0565b92505060206114d2858286016112d0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152357607f821691505b602082108103611536576115356114dc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611576826112e5565b9150611581836112e5565b92508282019050808211156115995761159861153c565b5b92915050565b60008160601b9050919050565b60006115b78261159f565b9050919050565b60006115c9826115ac565b9050919050565b6115e16115dc826112a7565b6115be565b82525050565b60006115f382846115d0565b60148201915081905092915050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000611638600e836111db565b915061164382611602565b602082019050919050565b600060208201905081810360008301526116678161162b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116ca6025836111db565b91506116d58261166e565b604082019050919050565b600060208201905081810360008301526116f9816116bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061175c6026836111db565b915061176782611700565b604082019050919050565b6000602082019050818103600083015261178b8161174f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117ee6024836111db565b91506117f982611792565b604082019050919050565b6000602082019050818103600083015261181d816117e1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118806022836111db565b915061188b82611824565b604082019050919050565b600060208201905081810360008301526118af81611873565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118ec601d836111db565b91506118f7826118b6565b602082019050919050565b6000602082019050818103600083015261191b816118df565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061197e6025836111db565b915061198982611922565b604082019050919050565b600060208201905081810360008301526119ad81611971565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a106023836111db565b9150611a1b826119b4565b604082019050919050565b60006020820190508181036000830152611a3f81611a03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611aa26026836111db565b9150611aad82611a46565b604082019050919050565b60006020820190508181036000830152611ad181611a95565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b0e6020836111db565b9150611b1982611ad8565b602082019050919050565b60006020820190508181036000830152611b3d81611b01565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611b7a601f836111db565b9150611b8582611b44565b602082019050919050565b60006020820190508181036000830152611ba981611b6d565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611be66014836111db565b9150611bf182611bb0565b602082019050919050565b60006020820190508181036000830152611c1581611bd9565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000611c526010836111db565b9150611c5d82611c1c565b602082019050919050565b60006020820190508181036000830152611c8181611c45565b905091905056fea264697066735822122044c174b38f77af2dea73f480bbf532fc72a203c36a86283caa21dc615ad7440c64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102ad578063a9059cbb146102dd578063dd62ed3e1461030d578063f0dda65c1461033d578063f2fde38b1461035957610116565b8063715018a61461025d5780638456cb59146102675780638da5cb5b1461027157806395d89b411461028f57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a146102055780635c975abb1461020f57806370a082311461022d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b6040516101309190611260565b60405180910390f35b610153600480360381019061014e919061131b565b610407565b6040516101609190611376565b60405180910390f35b61017161042a565b60405161017e91906113a0565b60405180910390f35b6101a1600480360381019061019c91906113bb565b610434565b6040516101ae9190611376565b60405180910390f35b6101bf610463565b6040516101cc919061142a565b60405180910390f35b6101ef60048036038101906101ea919061131b565b61046c565b6040516101fc9190611376565b60405180910390f35b61020d6104a3565b005b610217610517565b6040516102249190611376565b60405180910390f35b61024760048036038101906102429190611445565b61052e565b60405161025491906113a0565b60405180910390f35b610265610576565b005b61026f610588565b005b6102796105fc565b6040516102869190611481565b60405180910390f35b610297610626565b6040516102a49190611260565b60405180910390f35b6102c760048036038101906102c2919061131b565b6106b8565b6040516102d49190611376565b60405180910390f35b6102f760048036038101906102f2919061131b565b61072f565b6040516103049190611376565b60405180910390f35b6103276004803603810190610322919061149c565b610752565b60405161033491906113a0565b60405180910390f35b6103576004803603810190610352919061131b565b6107d9565b005b610373600480360381019061036e9190611445565b610851565b005b6060600380546103849061150b565b80601f01602080910402602001604051908101604052809291908181526020018280546103b09061150b565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b6000806104126108d9565b905061041f8185856108e1565b600191505092915050565b6000600254905090565b60008061043f6108d9565b905061044c858285610aaa565b610457858585610b36565b60019150509392505050565b60006012905090565b6000806104776108d9565b90506104988185856104898589610752565b610493919061156b565b6108e1565b600191505092915050565b600654336040516020016104b791906115e7565b604051602081830303815290604052805190602001201461050d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105049061164e565b60405180910390fd5b610515610dac565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61057e610e0f565b610586610e8d565b565b6006543360405160200161059c91906115e7565b60405160208183030381529060405280519060200120146105f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e99061164e565b60405180910390fd5b6105fa610ea1565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106359061150b565b80601f01602080910402602001604051908101604052809291908181526020018280546106619061150b565b80156106ae5780601f10610683576101008083540402835291602001916106ae565b820191906000526020600020905b81548152906001019060200180831161069157829003601f168201915b5050505050905090565b6000806106c36108d9565b905060006106d18286610752565b905083811015610716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070d906116e0565b60405180910390fd5b61072382868684036108e1565b60019250505092915050565b60008061073a6108d9565b9050610747818585610b36565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600654336040516020016107ed91906115e7565b6040516020818303038152906040528051906020012014610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a9061164e565b60405180910390fd5b61084d8282610f04565b5050565b610859610e0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bf90611772565b60405180910390fd5b6108d18161105a565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790611804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690611896565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a9d91906113a0565b60405180910390a3505050565b6000610ab68484610752565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b305781811015610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1990611902565b60405180910390fd5b610b2f84848484036108e1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c90611994565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90611a26565b60405180910390fd5b610c1f838383611120565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9c90611ab8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d9391906113a0565b60405180910390a3610da6848484611138565b50505050565b610db461113d565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610df86108d9565b604051610e059190611481565b60405180910390a1565b610e176108d9565b73ffffffffffffffffffffffffffffffffffffffff16610e356105fc565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290611b24565b60405180910390fd5b565b610e95610e0f565b610e9f600061105a565b565b610ea9611186565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610eed6108d9565b604051610efa9190611481565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a90611b90565b60405180910390fd5b610f7f60008383611120565b8060026000828254610f91919061156b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161104291906113a0565b60405180910390a361105660008383611138565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611128611186565b6111338383836108d4565b505050565b505050565b611145610517565b611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b90611bfc565b60405180910390fd5b565b61118e610517565b156111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590611c68565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561120a5780820151818401526020810190506111ef565b60008484015250505050565b6000601f19601f8301169050919050565b6000611232826111d0565b61123c81856111db565b935061124c8185602086016111ec565b61125581611216565b840191505092915050565b6000602082019050818103600083015261127a8184611227565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112b282611287565b9050919050565b6112c2816112a7565b81146112cd57600080fd5b50565b6000813590506112df816112b9565b92915050565b6000819050919050565b6112f8816112e5565b811461130357600080fd5b50565b600081359050611315816112ef565b92915050565b6000806040838503121561133257611331611282565b5b6000611340858286016112d0565b925050602061135185828601611306565b9150509250929050565b60008115159050919050565b6113708161135b565b82525050565b600060208201905061138b6000830184611367565b92915050565b61139a816112e5565b82525050565b60006020820190506113b56000830184611391565b92915050565b6000806000606084860312156113d4576113d3611282565b5b60006113e2868287016112d0565b93505060206113f3868287016112d0565b925050604061140486828701611306565b9150509250925092565b600060ff82169050919050565b6114248161140e565b82525050565b600060208201905061143f600083018461141b565b92915050565b60006020828403121561145b5761145a611282565b5b6000611469848285016112d0565b91505092915050565b61147b816112a7565b82525050565b60006020820190506114966000830184611472565b92915050565b600080604083850312156114b3576114b2611282565b5b60006114c1858286016112d0565b92505060206114d2858286016112d0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152357607f821691505b602082108103611536576115356114dc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611576826112e5565b9150611581836112e5565b92508282019050808211156115995761159861153c565b5b92915050565b60008160601b9050919050565b60006115b78261159f565b9050919050565b60006115c9826115ac565b9050919050565b6115e16115dc826112a7565b6115be565b82525050565b60006115f382846115d0565b60148201915081905092915050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b6000611638600e836111db565b915061164382611602565b602082019050919050565b600060208201905081810360008301526116678161162b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116ca6025836111db565b91506116d58261166e565b604082019050919050565b600060208201905081810360008301526116f9816116bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061175c6026836111db565b915061176782611700565b604082019050919050565b6000602082019050818103600083015261178b8161174f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117ee6024836111db565b91506117f982611792565b604082019050919050565b6000602082019050818103600083015261181d816117e1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118806022836111db565b915061188b82611824565b604082019050919050565b600060208201905081810360008301526118af81611873565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118ec601d836111db565b91506118f7826118b6565b602082019050919050565b6000602082019050818103600083015261191b816118df565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061197e6025836111db565b915061198982611922565b604082019050919050565b600060208201905081810360008301526119ad81611971565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a106023836111db565b9150611a1b826119b4565b604082019050919050565b60006020820190508181036000830152611a3f81611a03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611aa26026836111db565b9150611aad82611a46565b604082019050919050565b60006020820190508181036000830152611ad181611a95565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b0e6020836111db565b9150611b1982611ad8565b602082019050919050565b60006020820190508181036000830152611b3d81611b01565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611b7a601f836111db565b9150611b8582611b44565b602082019050919050565b60006020820190508181036000830152611ba981611b6d565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611be66014836111db565b9150611bf182611bb0565b602082019050919050565b60006020820190508181036000830152611c1581611bd9565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000611c526010836111db565b9150611c5d82611c1c565b602082019050919050565b60006020820190508181036000830152611c8181611c45565b905091905056fea264697066735822122044c174b38f77af2dea73f480bbf532fc72a203c36a86283caa21dc615ad7440c64736f6c63430008120033

Deployed Bytecode Sourcemap

23190:1123:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12130:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14490:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13259:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15271:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13101:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15941:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23650:151;;;:::i;:::-;;5420:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13430:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24004:99;;;:::i;:::-;;23495:147;;;:::i;:::-;;2289:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12349:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16682:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13763:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14019:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23809:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3188:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12130:100;12184:13;12217:5;12210:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12130:100;:::o;14490:201::-;14573:4;14590:13;14606:12;:10;:12::i;:::-;14590:28;;14629:32;14638:5;14645:7;14654:6;14629:8;:32::i;:::-;14679:4;14672:11;;;14490:201;;;;:::o;13259:108::-;13320:7;13347:12;;13340:19;;13259:108;:::o;15271:261::-;15368:4;15385:15;15403:12;:10;:12::i;:::-;15385:30;;15426:38;15442:4;15448:7;15457:6;15426:15;:38::i;:::-;15475:27;15485:4;15491:2;15495:6;15475:9;:27::i;:::-;15520:4;15513:11;;;15271:261;;;;;:::o;13101:93::-;13159:5;13184:2;13177:9;;13101:93;:::o;15941:238::-;16029:4;16046:13;16062:12;:10;:12::i;:::-;16046:28;;16085:64;16094:5;16101:7;16138:10;16110:25;16120:5;16127:7;16110:9;:25::i;:::-;:38;;;;:::i;:::-;16085:8;:64::i;:::-;16167:4;16160:11;;;15941:238;;;;:::o;23650:151::-;23738:15;;23722:10;23705:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;23695:39;;;;;;:58;23687:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;23783:10;:8;:10::i;:::-;23650:151::o;5420:86::-;5467:4;5491:7;;;;;;;;;;;5484:14;;5420:86;:::o;13430:127::-;13504:7;13531:9;:18;13541:7;13531:18;;;;;;;;;;;;;;;;13524:25;;13430:127;;;:::o;24004:99::-;2175:13;:11;:13::i;:::-;24070:25:::1;:23;:25::i;:::-;24004:99::o:0;23495:147::-;23581:15;;23565:10;23548:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;23538:39;;;;;;:58;23530:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;23626:8;:6;:8::i;:::-;23495:147::o;2289:87::-;2335:7;2362:6;;;;;;;;;;;2355:13;;2289:87;:::o;12349:104::-;12405:13;12438:7;12431:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12349:104;:::o;16682:436::-;16775:4;16792:13;16808:12;:10;:12::i;:::-;16792:28;;16831:24;16858:25;16868:5;16875:7;16858:9;:25::i;:::-;16831:52;;16922:15;16902:16;:35;;16894:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17015:60;17024:5;17031:7;17059:15;17040:16;:34;17015:8;:60::i;:::-;17106:4;17099:11;;;;16682:436;;;;:::o;13763:193::-;13842:4;13859:13;13875:12;:10;:12::i;:::-;13859:28;;13898;13908:5;13915:2;13919:6;13898:9;:28::i;:::-;13944:4;13937:11;;;13763:193;;;;:::o;14019:151::-;14108:7;14135:11;:18;14147:5;14135:18;;;;;;;;;;;;;;;:27;14154:7;14135:27;;;;;;;;;;;;;;;;14128:34;;14019:151;;;;:::o;23809:187::-;23926:15;;23910:10;23893:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;23883:39;;;;;;:58;23875:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;23971:17;23977:2;23981:6;23971:5;:17::i;:::-;23809:187;;:::o;3188:201::-;2175:13;:11;:13::i;:::-;3297:1:::1;3277:22;;:8;:22;;::::0;3269:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3353:28;3372:8;3353:18;:28::i;:::-;3188:201:::0;:::o;22331:91::-;;;;:::o;840:98::-;893:7;920:10;913:17;;840:98;:::o;20675:346::-;20794:1;20777:19;;:5;:19;;;20769:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20875:1;20856:21;;:7;:21;;;20848:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20959:6;20929:11;:18;20941:5;20929:18;;;;;;;;;;;;;;;:27;20948:7;20929:27;;;;;;;;;;;;;;;:36;;;;20997:7;20981:32;;20990:5;20981:32;;;21006:6;20981:32;;;;;;:::i;:::-;;;;;;;;20675:346;;;:::o;21312:419::-;21413:24;21440:25;21450:5;21457:7;21440:9;:25::i;:::-;21413:52;;21500:17;21480:16;:37;21476:248;;21562:6;21542:16;:26;;21534:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21646:51;21655:5;21662:7;21690:6;21671:16;:25;21646:8;:51::i;:::-;21476:248;21402:329;21312:419;;;:::o;17588:806::-;17701:1;17685:18;;:4;:18;;;17677:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17778:1;17764:16;;:2;:16;;;17756:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17833:38;17854:4;17860:2;17864:6;17833:20;:38::i;:::-;17884:19;17906:9;:15;17916:4;17906:15;;;;;;;;;;;;;;;;17884:37;;17955:6;17940:11;:21;;17932:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;18072:6;18058:11;:20;18040:9;:15;18050:4;18040:15;;;;;;;;;;;;;;;:38;;;;18275:6;18258:9;:13;18268:2;18258:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;18325:2;18310:26;;18319:4;18310:26;;;18329:6;18310:26;;;;;;:::i;:::-;;;;;;;;18349:37;18369:4;18375:2;18379:6;18349:19;:37::i;:::-;17666:728;17588:806;;;:::o;6275:120::-;5284:16;:14;:16::i;:::-;6344:5:::1;6334:7;;:15;;;;;;;;;;;;;;;;;;6365:22;6374:12;:10;:12::i;:::-;6365:22;;;;;;:::i;:::-;;;;;;;;6275:120::o:0;2454:132::-;2529:12;:10;:12::i;:::-;2518:23;;:7;:5;:7::i;:::-;:23;;;2510:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2454:132::o;2930:103::-;2175:13;:11;:13::i;:::-;2995:30:::1;3022:1;2995:18;:30::i;:::-;2930:103::o:0;6016:118::-;5025:19;:17;:19::i;:::-;6086:4:::1;6076:7;;:14;;;;;;;;;;;;;;;;;;6106:20;6113:12;:10;:12::i;:::-;6106:20;;;;;;:::i;:::-;;;;;;;;6016:118::o:0;18681:548::-;18784:1;18765:21;;:7;:21;;;18757:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18835:49;18864:1;18868:7;18877:6;18835:20;:49::i;:::-;18913:6;18897:12;;:22;;;;;;;:::i;:::-;;;;;;;;19090:6;19068:9;:18;19078:7;19068:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;19144:7;19123:37;;19140:1;19123:37;;;19153:6;19123:37;;;;;;:::i;:::-;;;;;;;;19173:48;19201:1;19205:7;19214:6;19173:19;:48::i;:::-;18681:548;;:::o;3549:191::-;3623:16;3642:6;;;;;;;;;;;3623:25;;3668:8;3659:6;;:17;;;;;;;;;;;;;;;;;;3723:8;3692:40;;3713:8;3692:40;;;;;;;;;;;;3612:128;3549:191;:::o;24111:199::-;5025:19;:17;:19::i;:::-;24258:44:::1;24285:4;24291:2;24295:6;24258:26;:44::i;:::-;24111:199:::0;;;:::o;23026:90::-;;;;:::o;5764:108::-;5831:8;:6;:8::i;:::-;5823:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5764:108::o;5579:::-;5650:8;:6;:8::i;:::-;5649:9;5641:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5579:108::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:94::-;6948:8;6996:5;6992:2;6988:14;6967:35;;6915:94;;;:::o;7015:::-;7054:7;7083:20;7097:5;7083:20;:::i;:::-;7072:31;;7015:94;;;:::o;7115:100::-;7154:7;7183:26;7203:5;7183:26;:::i;:::-;7172:37;;7115:100;;;:::o;7221:157::-;7326:45;7346:24;7364:5;7346:24;:::i;:::-;7326:45;:::i;:::-;7321:3;7314:58;7221:157;;:::o;7384:256::-;7496:3;7511:75;7582:3;7573:6;7511:75;:::i;:::-;7611:2;7606:3;7602:12;7595:19;;7631:3;7624:10;;7384:256;;;;:::o;7646:164::-;7786:16;7782:1;7774:6;7770:14;7763:40;7646:164;:::o;7816:366::-;7958:3;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7816:366;;;:::o;8188:419::-;8354:4;8392:2;8381:9;8377:18;8369:26;;8441:9;8435:4;8431:20;8427:1;8416:9;8412:17;8405:47;8469:131;8595:4;8469:131;:::i;:::-;8461:139;;8188:419;;;:::o;8613:224::-;8753:34;8749:1;8741:6;8737:14;8730:58;8822:7;8817:2;8809:6;8805:15;8798:32;8613:224;:::o;8843:366::-;8985:3;9006:67;9070:2;9065:3;9006:67;:::i;:::-;8999:74;;9082:93;9171:3;9082:93;:::i;:::-;9200:2;9195:3;9191:12;9184:19;;8843:366;;;:::o;9215:419::-;9381:4;9419:2;9408:9;9404:18;9396:26;;9468:9;9462:4;9458:20;9454:1;9443:9;9439:17;9432:47;9496:131;9622:4;9496:131;:::i;:::-;9488:139;;9215:419;;;:::o;9640:225::-;9780:34;9776:1;9768:6;9764:14;9757:58;9849:8;9844:2;9836:6;9832:15;9825:33;9640:225;:::o;9871:366::-;10013:3;10034:67;10098:2;10093:3;10034:67;:::i;:::-;10027:74;;10110:93;10199:3;10110:93;:::i;:::-;10228:2;10223:3;10219:12;10212:19;;9871:366;;;:::o;10243:419::-;10409:4;10447:2;10436:9;10432:18;10424:26;;10496:9;10490:4;10486:20;10482:1;10471:9;10467:17;10460:47;10524:131;10650:4;10524:131;:::i;:::-;10516:139;;10243:419;;;:::o;10668:223::-;10808:34;10804:1;10796:6;10792:14;10785:58;10877:6;10872:2;10864:6;10860:15;10853:31;10668:223;:::o;10897:366::-;11039:3;11060:67;11124:2;11119:3;11060:67;:::i;:::-;11053:74;;11136:93;11225:3;11136:93;:::i;:::-;11254:2;11249:3;11245:12;11238:19;;10897:366;;;:::o;11269:419::-;11435:4;11473:2;11462:9;11458:18;11450:26;;11522:9;11516:4;11512:20;11508:1;11497:9;11493:17;11486:47;11550:131;11676:4;11550:131;:::i;:::-;11542:139;;11269:419;;;:::o;11694:221::-;11834:34;11830:1;11822:6;11818:14;11811:58;11903:4;11898:2;11890:6;11886:15;11879:29;11694:221;:::o;11921:366::-;12063:3;12084:67;12148:2;12143:3;12084:67;:::i;:::-;12077:74;;12160:93;12249:3;12160:93;:::i;:::-;12278:2;12273:3;12269:12;12262:19;;11921:366;;;:::o;12293:419::-;12459:4;12497:2;12486:9;12482:18;12474:26;;12546:9;12540:4;12536:20;12532:1;12521:9;12517:17;12510:47;12574:131;12700:4;12574:131;:::i;:::-;12566:139;;12293:419;;;:::o;12718:179::-;12858:31;12854:1;12846:6;12842:14;12835:55;12718:179;:::o;12903:366::-;13045:3;13066:67;13130:2;13125:3;13066:67;:::i;:::-;13059:74;;13142:93;13231:3;13142:93;:::i;:::-;13260:2;13255:3;13251:12;13244:19;;12903:366;;;:::o;13275:419::-;13441:4;13479:2;13468:9;13464:18;13456:26;;13528:9;13522:4;13518:20;13514:1;13503:9;13499:17;13492:47;13556:131;13682:4;13556:131;:::i;:::-;13548:139;;13275:419;;;:::o;13700:224::-;13840:34;13836:1;13828:6;13824:14;13817:58;13909:7;13904:2;13896:6;13892:15;13885:32;13700:224;:::o;13930:366::-;14072:3;14093:67;14157:2;14152:3;14093:67;:::i;:::-;14086:74;;14169:93;14258:3;14169:93;:::i;:::-;14287:2;14282:3;14278:12;14271:19;;13930:366;;;:::o;14302:419::-;14468:4;14506:2;14495:9;14491:18;14483:26;;14555:9;14549:4;14545:20;14541:1;14530:9;14526:17;14519:47;14583:131;14709:4;14583:131;:::i;:::-;14575:139;;14302:419;;;:::o;14727:222::-;14867:34;14863:1;14855:6;14851:14;14844:58;14936:5;14931:2;14923:6;14919:15;14912:30;14727:222;:::o;14955:366::-;15097:3;15118:67;15182:2;15177:3;15118:67;:::i;:::-;15111:74;;15194:93;15283:3;15194:93;:::i;:::-;15312:2;15307:3;15303:12;15296:19;;14955:366;;;:::o;15327:419::-;15493:4;15531:2;15520:9;15516:18;15508:26;;15580:9;15574:4;15570:20;15566:1;15555:9;15551:17;15544:47;15608:131;15734:4;15608:131;:::i;:::-;15600:139;;15327:419;;;:::o;15752:225::-;15892:34;15888:1;15880:6;15876:14;15869:58;15961:8;15956:2;15948:6;15944:15;15937:33;15752:225;:::o;15983:366::-;16125:3;16146:67;16210:2;16205:3;16146:67;:::i;:::-;16139:74;;16222:93;16311:3;16222:93;:::i;:::-;16340:2;16335:3;16331:12;16324:19;;15983:366;;;:::o;16355:419::-;16521:4;16559:2;16548:9;16544:18;16536:26;;16608:9;16602:4;16598:20;16594:1;16583:9;16579:17;16572:47;16636:131;16762:4;16636:131;:::i;:::-;16628:139;;16355:419;;;:::o;16780:182::-;16920:34;16916:1;16908:6;16904:14;16897:58;16780:182;:::o;16968:366::-;17110:3;17131:67;17195:2;17190:3;17131:67;:::i;:::-;17124:74;;17207:93;17296:3;17207:93;:::i;:::-;17325:2;17320:3;17316:12;17309:19;;16968:366;;;:::o;17340:419::-;17506:4;17544:2;17533:9;17529:18;17521:26;;17593:9;17587:4;17583:20;17579:1;17568:9;17564:17;17557:47;17621:131;17747:4;17621:131;:::i;:::-;17613:139;;17340:419;;;:::o;17765:181::-;17905:33;17901:1;17893:6;17889:14;17882:57;17765:181;:::o;17952:366::-;18094:3;18115:67;18179:2;18174:3;18115:67;:::i;:::-;18108:74;;18191:93;18280:3;18191:93;:::i;:::-;18309:2;18304:3;18300:12;18293:19;;17952:366;;;:::o;18324:419::-;18490:4;18528:2;18517:9;18513:18;18505:26;;18577:9;18571:4;18567:20;18563:1;18552:9;18548:17;18541:47;18605:131;18731:4;18605:131;:::i;:::-;18597:139;;18324:419;;;:::o;18749:170::-;18889:22;18885:1;18877:6;18873:14;18866:46;18749:170;:::o;18925:366::-;19067:3;19088:67;19152:2;19147:3;19088:67;:::i;:::-;19081:74;;19164:93;19253:3;19164:93;:::i;:::-;19282:2;19277:3;19273:12;19266:19;;18925:366;;;:::o;19297:419::-;19463:4;19501:2;19490:9;19486:18;19478:26;;19550:9;19544:4;19540:20;19536:1;19525:9;19521:17;19514:47;19578:131;19704:4;19578:131;:::i;:::-;19570:139;;19297:419;;;:::o;19722:166::-;19862:18;19858:1;19850:6;19846:14;19839:42;19722:166;:::o;19894:366::-;20036:3;20057:67;20121:2;20116:3;20057:67;:::i;:::-;20050:74;;20133:93;20222:3;20133:93;:::i;:::-;20251:2;20246:3;20242:12;20235:19;;19894:366;;;:::o;20266:419::-;20432:4;20470:2;20459:9;20455:18;20447:26;;20519:9;20513:4;20509:20;20505:1;20494:9;20490:17;20483:47;20547:131;20673:4;20547:131;:::i;:::-;20539:139;;20266:419;;;:::o

Swarm Source

ipfs://44c174b38f77af2dea73f480bbf532fc72a203c36a86283caa21dc615ad7440c
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.