ETH Price: $2,652.43 (-0.05%)
Gas: 1.36 Gwei

Token

ESG Global (ESGG)
 

Overview

Max Total Supply

1,000,000,000 ESGG

Holders

108

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
ESGGlobal

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// 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.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public 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.6.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.8.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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



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

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/MyToken.sol


pragma solidity ^0.8.0;





contract ESGGlobal is ERC20, ERC20Burnable, Pausable, Ownable {
    constructor() ERC20("ESG Global", "ESGG") {
        
        _mint(0xA2BaB14355C29dE09eA68e4205bED929DB3d9594, 1000000000*10**uint(decimals()));
        
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"mint","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f45534720476c6f62616c000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f455347470000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000432565b508060049080519060200190620000af92919062000432565b5050506000600560006101000a81548160ff021916908315150217905550620000ed620000e16200014a60201b60201c565b6200015260201b60201c565b6200014473a2bab14355c29de09ea68e4205bed929db3d9594620001166200021860201b60201c565b60ff16600a620001279190620006a1565b633b9aca00620001389190620007de565b6200022160201b60201c565b620008ea565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000294576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028b9062000599565b60405180910390fd5b620002a8600083836200038f60201b60201c565b8060026000828254620002bc9190620005e9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200036f9190620005bb565b60405180910390a36200038b60008383620003bc60201b60201c565b5050565b6200039f620003c160201b60201c565b620003b78383836200041660201b620008331760201c565b505050565b505050565b620003d16200041b60201b60201c565b1562000414576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040b9062000577565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b828054620004409062000849565b90600052602060002090601f016020900481019282620004645760008555620004b0565b82601f106200047f57805160ff1916838001178555620004b0565b82800160010185558215620004b0579182015b82811115620004af57825182559160200191906001019062000492565b5b509050620004bf9190620004c3565b5090565b5b80821115620004de576000816000905550600101620004c4565b5090565b6000620004f1601083620005d8565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b600062000533601f83620005d8565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000571816200083f565b82525050565b600060208201905081810360008301526200059281620004e2565b9050919050565b60006020820190508181036000830152620005b48162000524565b9050919050565b6000602082019050620005d2600083018462000566565b92915050565b600082825260208201905092915050565b6000620005f6826200083f565b915062000603836200083f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200063b576200063a6200087f565b5b828201905092915050565b6000808291508390505b6001851115620006985780860481111562000670576200066f6200087f565b5b6001851615620006805780820291505b80810290506200069085620008dd565b945062000650565b94509492505050565b6000620006ae826200083f565b9150620006bb836200083f565b9250620006ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006f2565b905092915050565b600082620007045760019050620007d7565b81620007145760009050620007d7565b81600181146200072d576002811462000738576200076e565b6001915050620007d7565b60ff8411156200074d576200074c6200087f565b5b8360020a9150848211156200076757620007666200087f565b5b50620007d7565b5060208310610133831016604e8410600b8410161715620007a85782820a905083811115620007a257620007a16200087f565b5b620007d7565b620007b7848484600162000646565b92509050818404811115620007d157620007d06200087f565b5b81810290505b9392505050565b6000620007eb826200083f565b9150620007f8836200083f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200083457620008336200087f565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200086257607f821691505b60208210811415620008795762000878620008ae565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611dc980620008fa6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f9578063a457c2d714610317578063a9059cbb14610347578063dd62ed3e14610377578063f2fde38b146103a75761012c565b806370a082311461027b578063715018a6146102ab57806379cc6790146102b55780638456cb59146102d15780638da5cb5b146102db5761012c565b806339509351116100f457806339509351146101eb5780633f4ba83a1461021b57806340c10f191461022557806342966c68146102415780635c975abb1461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c3565b60405161014691906119b2565b60405180910390f35b610169600480360381019061016491906113cc565b610455565b6040516101769190611997565b60405180910390f35b610187610478565b6040516101949190611b94565b60405180910390f35b6101b760048036038101906101b2919061137d565b610482565b6040516101c49190611997565b60405180910390f35b6101d56104b1565b6040516101e29190611baf565b60405180910390f35b610205600480360381019061020091906113cc565b6104ba565b6040516102129190611997565b60405180910390f35b6102236104f1565b005b61023f600480360381019061023a91906113cc565b610503565b005b61025b60048036038101906102569190611408565b610519565b005b61026561052d565b6040516102729190611997565b60405180910390f35b61029560048036038101906102909190611318565b610544565b6040516102a29190611b94565b60405180910390f35b6102b361058c565b005b6102cf60048036038101906102ca91906113cc565b6105a0565b005b6102d96105c0565b005b6102e36105d2565b6040516102f0919061197c565b60405180910390f35b6103016105fc565b60405161030e91906119b2565b60405180910390f35b610331600480360381019061032c91906113cc565b61068e565b60405161033e9190611997565b60405180910390f35b610361600480360381019061035c91906113cc565b610705565b60405161036e9190611997565b60405180910390f35b610391600480360381019061038c9190611341565b610728565b60405161039e9190611b94565b60405180910390f35b6103c160048036038101906103bc9190611318565b6107af565b005b6060600380546103d290611cc4565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe90611cc4565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b600080610460610838565b905061046d818585610840565b600191505092915050565b6000600254905090565b60008061048d610838565b905061049a858285610a0b565b6104a5858585610a97565b60019150509392505050565b60006012905090565b6000806104c5610838565b90506104e68185856104d78589610728565b6104e19190611be6565b610840565b600191505092915050565b6104f9610d0f565b610501610d8d565b565b61050b610d0f565b6105158282610df0565b5050565b61052a610524610838565b82610f47565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610594610d0f565b61059e6000611115565b565b6105b2826105ac610838565b83610a0b565b6105bc8282610f47565b5050565b6105c8610d0f565b6105d06111db565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461060b90611cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461063790611cc4565b80156106845780601f1061065957610100808354040283529160200191610684565b820191906000526020600020905b81548152906001019060200180831161066757829003601f168201915b5050505050905090565b600080610699610838565b905060006106a78286610728565b9050838110156106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e390611b54565b60405180910390fd5b6106f98286868403610840565b60019250505092915050565b600080610710610838565b905061071d818585610a97565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107b7610d0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081e90611a34565b60405180910390fd5b61083081611115565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790611b34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091790611a54565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109fe9190611b94565b60405180910390a3505050565b6000610a178484610728565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a915781811015610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90611a74565b60405180910390fd5b610a908484848403610840565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90611b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e906119d4565b60405180910390fd5b610b8283838361123e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90611a94565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf69190611b94565b60405180910390a3610d09848484611256565b50505050565b610d17610838565b73ffffffffffffffffffffffffffffffffffffffff16610d356105d2565b73ffffffffffffffffffffffffffffffffffffffff1614610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290611ad4565b60405180910390fd5b565b610d9561125b565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dd9610838565b604051610de6919061197c565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790611b74565b60405180910390fd5b610e6c6000838361123e565b8060026000828254610e7e9190611be6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f2f9190611b94565b60405180910390a3610f4360008383611256565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90611af4565b60405180910390fd5b610fc38260008361123e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090611a14565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110fc9190611b94565b60405180910390a361111083600084611256565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111e36112a4565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611227610838565b604051611234919061197c565b60405180910390a1565b6112466112a4565b611251838383610833565b505050565b505050565b61126361052d565b6112a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611299906119f4565b60405180910390fd5b565b6112ac61052d565b156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390611ab4565b60405180910390fd5b565b6000813590506112fd81611d65565b92915050565b60008135905061131281611d7c565b92915050565b60006020828403121561132a57600080fd5b6000611338848285016112ee565b91505092915050565b6000806040838503121561135457600080fd5b6000611362858286016112ee565b9250506020611373858286016112ee565b9150509250929050565b60008060006060848603121561139257600080fd5b60006113a0868287016112ee565b93505060206113b1868287016112ee565b92505060406113c286828701611303565b9150509250925092565b600080604083850312156113df57600080fd5b60006113ed858286016112ee565b92505060206113fe85828601611303565b9150509250929050565b60006020828403121561141a57600080fd5b600061142884828501611303565b91505092915050565b61143a81611c3c565b82525050565b61144981611c4e565b82525050565b600061145a82611bca565b6114648185611bd5565b9350611474818560208601611c91565b61147d81611d54565b840191505092915050565b6000611495602383611bd5565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114fb601483611bd5565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b600061153b602283611bd5565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115a1602683611bd5565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611607602283611bd5565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061166d601d83611bd5565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006116ad602683611bd5565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611713601083611bd5565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000611753602083611bd5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611793602183611bd5565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117f9602583611bd5565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061185f602483611bd5565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118c5602583611bd5565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061192b601f83611bd5565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61196781611c7a565b82525050565b61197681611c84565b82525050565b60006020820190506119916000830184611431565b92915050565b60006020820190506119ac6000830184611440565b92915050565b600060208201905081810360008301526119cc818461144f565b905092915050565b600060208201905081810360008301526119ed81611488565b9050919050565b60006020820190508181036000830152611a0d816114ee565b9050919050565b60006020820190508181036000830152611a2d8161152e565b9050919050565b60006020820190508181036000830152611a4d81611594565b9050919050565b60006020820190508181036000830152611a6d816115fa565b9050919050565b60006020820190508181036000830152611a8d81611660565b9050919050565b60006020820190508181036000830152611aad816116a0565b9050919050565b60006020820190508181036000830152611acd81611706565b9050919050565b60006020820190508181036000830152611aed81611746565b9050919050565b60006020820190508181036000830152611b0d81611786565b9050919050565b60006020820190508181036000830152611b2d816117ec565b9050919050565b60006020820190508181036000830152611b4d81611852565b9050919050565b60006020820190508181036000830152611b6d816118b8565b9050919050565b60006020820190508181036000830152611b8d8161191e565b9050919050565b6000602082019050611ba9600083018461195e565b92915050565b6000602082019050611bc4600083018461196d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611bf182611c7a565b9150611bfc83611c7a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c3157611c30611cf6565b5b828201905092915050565b6000611c4782611c5a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611caf578082015181840152602081019050611c94565b83811115611cbe576000848401525b50505050565b60006002820490506001821680611cdc57607f821691505b60208210811415611cf057611cef611d25565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611d6e81611c3c565b8114611d7957600080fd5b50565b611d8581611c7a565b8114611d9057600080fd5b5056fea26469706673582212207d9dc9214f8fbdd369e55821fc879ae9ebc4019bf8436e99658dffc857f90c8764736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f9578063a457c2d714610317578063a9059cbb14610347578063dd62ed3e14610377578063f2fde38b146103a75761012c565b806370a082311461027b578063715018a6146102ab57806379cc6790146102b55780638456cb59146102d15780638da5cb5b146102db5761012c565b806339509351116100f457806339509351146101eb5780633f4ba83a1461021b57806340c10f191461022557806342966c68146102415780635c975abb1461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c3565b60405161014691906119b2565b60405180910390f35b610169600480360381019061016491906113cc565b610455565b6040516101769190611997565b60405180910390f35b610187610478565b6040516101949190611b94565b60405180910390f35b6101b760048036038101906101b2919061137d565b610482565b6040516101c49190611997565b60405180910390f35b6101d56104b1565b6040516101e29190611baf565b60405180910390f35b610205600480360381019061020091906113cc565b6104ba565b6040516102129190611997565b60405180910390f35b6102236104f1565b005b61023f600480360381019061023a91906113cc565b610503565b005b61025b60048036038101906102569190611408565b610519565b005b61026561052d565b6040516102729190611997565b60405180910390f35b61029560048036038101906102909190611318565b610544565b6040516102a29190611b94565b60405180910390f35b6102b361058c565b005b6102cf60048036038101906102ca91906113cc565b6105a0565b005b6102d96105c0565b005b6102e36105d2565b6040516102f0919061197c565b60405180910390f35b6103016105fc565b60405161030e91906119b2565b60405180910390f35b610331600480360381019061032c91906113cc565b61068e565b60405161033e9190611997565b60405180910390f35b610361600480360381019061035c91906113cc565b610705565b60405161036e9190611997565b60405180910390f35b610391600480360381019061038c9190611341565b610728565b60405161039e9190611b94565b60405180910390f35b6103c160048036038101906103bc9190611318565b6107af565b005b6060600380546103d290611cc4565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe90611cc4565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b600080610460610838565b905061046d818585610840565b600191505092915050565b6000600254905090565b60008061048d610838565b905061049a858285610a0b565b6104a5858585610a97565b60019150509392505050565b60006012905090565b6000806104c5610838565b90506104e68185856104d78589610728565b6104e19190611be6565b610840565b600191505092915050565b6104f9610d0f565b610501610d8d565b565b61050b610d0f565b6105158282610df0565b5050565b61052a610524610838565b82610f47565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610594610d0f565b61059e6000611115565b565b6105b2826105ac610838565b83610a0b565b6105bc8282610f47565b5050565b6105c8610d0f565b6105d06111db565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461060b90611cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461063790611cc4565b80156106845780601f1061065957610100808354040283529160200191610684565b820191906000526020600020905b81548152906001019060200180831161066757829003601f168201915b5050505050905090565b600080610699610838565b905060006106a78286610728565b9050838110156106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e390611b54565b60405180910390fd5b6106f98286868403610840565b60019250505092915050565b600080610710610838565b905061071d818585610a97565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107b7610d0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081e90611a34565b60405180910390fd5b61083081611115565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790611b34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091790611a54565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109fe9190611b94565b60405180910390a3505050565b6000610a178484610728565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a915781811015610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90611a74565b60405180910390fd5b610a908484848403610840565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90611b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e906119d4565b60405180910390fd5b610b8283838361123e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90611a94565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf69190611b94565b60405180910390a3610d09848484611256565b50505050565b610d17610838565b73ffffffffffffffffffffffffffffffffffffffff16610d356105d2565b73ffffffffffffffffffffffffffffffffffffffff1614610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290611ad4565b60405180910390fd5b565b610d9561125b565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dd9610838565b604051610de6919061197c565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790611b74565b60405180910390fd5b610e6c6000838361123e565b8060026000828254610e7e9190611be6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f2f9190611b94565b60405180910390a3610f4360008383611256565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90611af4565b60405180910390fd5b610fc38260008361123e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090611a14565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110fc9190611b94565b60405180910390a361111083600084611256565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111e36112a4565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611227610838565b604051611234919061197c565b60405180910390a1565b6112466112a4565b611251838383610833565b505050565b505050565b61126361052d565b6112a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611299906119f4565b60405180910390fd5b565b6112ac61052d565b156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390611ab4565b60405180910390fd5b565b6000813590506112fd81611d65565b92915050565b60008135905061131281611d7c565b92915050565b60006020828403121561132a57600080fd5b6000611338848285016112ee565b91505092915050565b6000806040838503121561135457600080fd5b6000611362858286016112ee565b9250506020611373858286016112ee565b9150509250929050565b60008060006060848603121561139257600080fd5b60006113a0868287016112ee565b93505060206113b1868287016112ee565b92505060406113c286828701611303565b9150509250925092565b600080604083850312156113df57600080fd5b60006113ed858286016112ee565b92505060206113fe85828601611303565b9150509250929050565b60006020828403121561141a57600080fd5b600061142884828501611303565b91505092915050565b61143a81611c3c565b82525050565b61144981611c4e565b82525050565b600061145a82611bca565b6114648185611bd5565b9350611474818560208601611c91565b61147d81611d54565b840191505092915050565b6000611495602383611bd5565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114fb601483611bd5565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b600061153b602283611bd5565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115a1602683611bd5565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611607602283611bd5565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061166d601d83611bd5565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006116ad602683611bd5565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611713601083611bd5565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000611753602083611bd5565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611793602183611bd5565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117f9602583611bd5565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061185f602483611bd5565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118c5602583611bd5565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061192b601f83611bd5565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61196781611c7a565b82525050565b61197681611c84565b82525050565b60006020820190506119916000830184611431565b92915050565b60006020820190506119ac6000830184611440565b92915050565b600060208201905081810360008301526119cc818461144f565b905092915050565b600060208201905081810360008301526119ed81611488565b9050919050565b60006020820190508181036000830152611a0d816114ee565b9050919050565b60006020820190508181036000830152611a2d8161152e565b9050919050565b60006020820190508181036000830152611a4d81611594565b9050919050565b60006020820190508181036000830152611a6d816115fa565b9050919050565b60006020820190508181036000830152611a8d81611660565b9050919050565b60006020820190508181036000830152611aad816116a0565b9050919050565b60006020820190508181036000830152611acd81611706565b9050919050565b60006020820190508181036000830152611aed81611746565b9050919050565b60006020820190508181036000830152611b0d81611786565b9050919050565b60006020820190508181036000830152611b2d816117ec565b9050919050565b60006020820190508181036000830152611b4d81611852565b9050919050565b60006020820190508181036000830152611b6d816118b8565b9050919050565b60006020820190508181036000830152611b8d8161191e565b9050919050565b6000602082019050611ba9600083018461195e565b92915050565b6000602082019050611bc4600083018461196d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611bf182611c7a565b9150611bfc83611c7a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c3157611c30611cf6565b5b828201905092915050565b6000611c4782611c5a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611caf578082015181840152602081019050611c94565b83811115611cbe576000848401525b50505050565b60006002820490506001821680611cdc57607f821691505b60208210811415611cf057611cef611d25565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611d6e81611c3c565b8114611d7957600080fd5b50565b611d8581611c7a565b8114611d9057600080fd5b5056fea26469706673582212207d9dc9214f8fbdd369e55821fc879ae9ebc4019bf8436e99658dffc857f90c8764736f6c63430008000033

Deployed Bytecode Sourcemap

24462:687:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12039:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14390:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13159:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15171:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13001:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15875:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24771:65;;;:::i;:::-;;24844:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23810:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5299:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13330:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2809:103;;;:::i;:::-;;24220:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24702:61;;;:::i;:::-;;2161:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12258:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16616:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13663:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13919:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3067:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12039:100;12093:13;12126:5;12119:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12039:100;:::o;14390:201::-;14473:4;14490:13;14506:12;:10;:12::i;:::-;14490:28;;14529:32;14538:5;14545:7;14554:6;14529:8;:32::i;:::-;14579:4;14572:11;;;14390:201;;;;:::o;13159:108::-;13220:7;13247:12;;13240:19;;13159:108;:::o;15171:295::-;15302:4;15319:15;15337:12;:10;:12::i;:::-;15319:30;;15360:38;15376:4;15382:7;15391:6;15360:15;:38::i;:::-;15409:27;15419:4;15425:2;15429:6;15409:9;:27::i;:::-;15454:4;15447:11;;;15171:295;;;;;:::o;13001:93::-;13059:5;13084:2;13077:9;;13001:93;:::o;15875:238::-;15963:4;15980:13;15996:12;:10;:12::i;:::-;15980:28;;16019:64;16028:5;16035:7;16072:10;16044:25;16054:5;16061:7;16044:9;:25::i;:::-;:38;;;;:::i;:::-;16019:8;:64::i;:::-;16101:4;16094:11;;;15875:238;;;;:::o;24771:65::-;2047:13;:11;:13::i;:::-;24818:10:::1;:8;:10::i;:::-;24771:65::o:0;24844:95::-;2047:13;:11;:13::i;:::-;24914:17:::1;24920:2;24924:6;24914:5;:17::i;:::-;24844:95:::0;;:::o;23810:91::-;23866:27;23872:12;:10;:12::i;:::-;23886:6;23866:5;:27::i;:::-;23810:91;:::o;5299:86::-;5346:4;5370:7;;;;;;;;;;;5363:14;;5299:86;:::o;13330:127::-;13404:7;13431:9;:18;13441:7;13431:18;;;;;;;;;;;;;;;;13424:25;;13330:127;;;:::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;24220:164::-;24297:46;24313:7;24322:12;:10;:12::i;:::-;24336:6;24297:15;:46::i;:::-;24354:22;24360:7;24369:6;24354:5;:22::i;:::-;24220:164;;:::o;24702:61::-;2047:13;:11;:13::i;:::-;24747:8:::1;:6;:8::i;:::-;24702:61::o:0;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;12258:104::-;12314:13;12347:7;12340:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12258:104;:::o;16616:436::-;16709:4;16726:13;16742:12;:10;:12::i;:::-;16726:28;;16765:24;16792:25;16802:5;16809:7;16792:9;:25::i;:::-;16765:52;;16856:15;16836:16;:35;;16828:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16949:60;16958:5;16965:7;16993:15;16974:16;:34;16949:8;:60::i;:::-;17040:4;17033:11;;;;16616:436;;;;:::o;13663:193::-;13742:4;13759:13;13775:12;:10;:12::i;:::-;13759:28;;13798;13808:5;13815:2;13819:6;13798:9;:28::i;:::-;13844:4;13837:11;;;13663:193;;;;:::o;13919:151::-;14008:7;14035:11;:18;14047:5;14035:18;;;;;;;;;;;;;;;:27;14054:7;14035:27;;;;;;;;;;;;;;;;14028:34;;13919:151;;;;:::o;3067:201::-;2047:13;:11;:13::i;:::-;3176:1:::1;3156:22;;:8;:22;;;;3148:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3232:28;3251:8;3232:18;:28::i;:::-;3067:201:::0;:::o;22367:125::-;;;;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;20643:380::-;20796:1;20779:19;;:5;:19;;;;20771:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20877:1;20858:21;;:7;:21;;;;20850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20961:6;20931:11;:18;20943:5;20931:18;;;;;;;;;;;;;;;:27;20950:7;20931:27;;;;;;;;;;;;;;;:36;;;;20999:7;20983:32;;20992:5;20983:32;;;21008:6;20983:32;;;;;;:::i;:::-;;;;;;;;20643:380;;;:::o;21314:453::-;21449:24;21476:25;21486:5;21493:7;21476:9;:25::i;:::-;21449:52;;21536:17;21516:16;:37;21512:248;;21598:6;21578:16;:26;;21570:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21682:51;21691:5;21698:7;21726:6;21707:16;:25;21682:8;:51::i;:::-;21512:248;21314:453;;;;:::o;17522:840::-;17669:1;17653:18;;:4;:18;;;;17645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17746:1;17732:16;;:2;:16;;;;17724:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17801:38;17822:4;17828:2;17832:6;17801:20;:38::i;:::-;17852:19;17874:9;:15;17884:4;17874:15;;;;;;;;;;;;;;;;17852:37;;17923:6;17908:11;:21;;17900:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;18040:6;18026:11;:20;18008:9;:15;18018:4;18008:15;;;;;;;;;;;;;;;:38;;;;18243:6;18226:9;:13;18236:2;18226:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;18293:2;18278:26;;18287:4;18278:26;;;18297:6;18278:26;;;;;;:::i;:::-;;;;;;;;18317:37;18337:4;18343:2;18347:6;18317:19;:37::i;:::-;17522:840;;;;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;6154:120::-;5163:16;:14;:16::i;:::-;6223:5:::1;6213:7;;:15;;;;;;;;;;;;;;;;;;6244:22;6253:12;:10;:12::i;:::-;6244:22;;;;;;:::i;:::-;;;;;;;;6154:120::o:0;18649:548::-;18752:1;18733:21;;:7;:21;;;;18725:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18803:49;18832:1;18836:7;18845:6;18803:20;:49::i;:::-;18881:6;18865:12;;:22;;;;;;;:::i;:::-;;;;;;;;19058:6;19036:9;:18;19046:7;19036:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;19112:7;19091:37;;19108:1;19091:37;;;19121:6;19091:37;;;;;;:::i;:::-;;;;;;;;19141:48;19169:1;19173:7;19182:6;19141:19;:48::i;:::-;18649:548;;:::o;19530:675::-;19633:1;19614:21;;:7;:21;;;;19606:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19686:49;19707:7;19724:1;19728:6;19686:20;:49::i;:::-;19748:22;19773:9;:18;19783:7;19773:18;;;;;;;;;;;;;;;;19748:43;;19828:6;19810:14;:24;;19802:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19947:6;19930:14;:23;19909:9;:18;19919:7;19909:18;;;;;;;;;;;;;;;:44;;;;20064:6;20048:12;;:22;;;;;;;;;;;20125:1;20099:37;;20108:7;20099:37;;;20129:6;20099:37;;;;;;:::i;:::-;;;;;;;;20149:48;20169:7;20186:1;20190:6;20149:19;:48::i;:::-;19530:675;;;:::o;3428:191::-;3502:16;3521:6;;;;;;;;;;;3502:25;;3547:8;3538:6;;:17;;;;;;;;;;;;;;;;;;3602:8;3571:40;;3592:8;3571:40;;;;;;;;;;;;3428:191;;:::o;5895:118::-;4904:19;:17;:19::i;:::-;5965:4:::1;5955:7;;:14;;;;;;;;;;;;;;;;;;5985:20;5992:12;:10;:12::i;:::-;5985:20;;;;;;:::i;:::-;;;;;;;;5895:118::o:0;24947:199::-;4904:19;:17;:19::i;:::-;25094:44:::1;25121:4;25127:2;25131:6;25094:26;:44::i;:::-;24947:199:::0;;;:::o;23096:124::-;;;;:::o;5643:108::-;5710:8;:6;:8::i;:::-;5702:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5643:108::o;5458:::-;5529:8;:6;:8::i;:::-;5528:9;5520:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5458:108::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:318::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:22;3455:1;3450:3;3446:11;3439:43;3508:2;3503:3;3499:12;3492:19;;3345:172;;;:::o;3523:366::-;;3686:67;3750:2;3745:3;3686:67;:::i;:::-;3679:74;;3783:34;3779:1;3774:3;3770:11;3763:55;3849:4;3844:2;3839:3;3835:12;3828:26;3880:2;3875:3;3871:12;3864:19;;3669:220;;;:::o;3895:370::-;;4058:67;4122:2;4117:3;4058:67;:::i;:::-;4051:74;;4155:34;4151:1;4146:3;4142:11;4135:55;4221:8;4216:2;4211:3;4207:12;4200:30;4256:2;4251:3;4247:12;4240:19;;4041:224;;;:::o;4271:366::-;;4434:67;4498:2;4493:3;4434:67;:::i;:::-;4427:74;;4531:34;4527:1;4522:3;4518:11;4511:55;4597:4;4592:2;4587:3;4583:12;4576:26;4628:2;4623:3;4619:12;4612:19;;4417:220;;;:::o;4643:327::-;;4806:67;4870:2;4865:3;4806:67;:::i;:::-;4799:74;;4903:31;4899:1;4894:3;4890:11;4883:52;4961:2;4956:3;4952:12;4945:19;;4789:181;;;:::o;4976:370::-;;5139:67;5203:2;5198:3;5139:67;:::i;:::-;5132:74;;5236:34;5232:1;5227:3;5223:11;5216:55;5302:8;5297:2;5292:3;5288:12;5281:30;5337:2;5332:3;5328:12;5321:19;;5122:224;;;:::o;5352:314::-;;5515:67;5579:2;5574:3;5515:67;:::i;:::-;5508:74;;5612:18;5608:1;5603:3;5599:11;5592:39;5657:2;5652:3;5648:12;5641:19;;5498:168;;;:::o;5672:330::-;;5835:67;5899:2;5894:3;5835:67;:::i;:::-;5828:74;;5932:34;5928:1;5923:3;5919:11;5912:55;5993:2;5988:3;5984:12;5977:19;;5818:184;;;:::o;6008:365::-;;6171:67;6235:2;6230:3;6171:67;:::i;:::-;6164:74;;6268:34;6264:1;6259:3;6255:11;6248:55;6334:3;6329:2;6324:3;6320:12;6313:25;6364:2;6359:3;6355:12;6348:19;;6154:219;;;:::o;6379:369::-;;6542:67;6606:2;6601:3;6542:67;:::i;:::-;6535:74;;6639:34;6635:1;6630:3;6626:11;6619:55;6705:7;6700:2;6695:3;6691:12;6684:29;6739:2;6734:3;6730:12;6723:19;;6525:223;;;:::o;6754:368::-;;6917:67;6981:2;6976:3;6917:67;:::i;:::-;6910:74;;7014:34;7010:1;7005:3;7001:11;6994:55;7080:6;7075:2;7070:3;7066:12;7059:28;7113:2;7108:3;7104:12;7097:19;;6900:222;;;:::o;7128:369::-;;7291:67;7355:2;7350:3;7291:67;:::i;:::-;7284:74;;7388:34;7384:1;7379:3;7375:11;7368:55;7454:7;7449:2;7444:3;7440:12;7433:29;7488:2;7483:3;7479:12;7472:19;;7274:223;;;:::o;7503:329::-;;7666:67;7730:2;7725:3;7666:67;:::i;:::-;7659:74;;7763:33;7759:1;7754:3;7750:11;7743:54;7823:2;7818:3;7814:12;7807:19;;7649:183;;;:::o;7838:118::-;7925:24;7943:5;7925:24;:::i;:::-;7920:3;7913:37;7903:53;;:::o;7962:112::-;8045:22;8061:5;8045:22;:::i;:::-;8040:3;8033:35;8023:51;;:::o;8080:222::-;;8211:2;8200:9;8196:18;8188:26;;8224:71;8292:1;8281:9;8277:17;8268:6;8224:71;:::i;:::-;8178:124;;;;:::o;8308:210::-;;8433:2;8422:9;8418:18;8410:26;;8446:65;8508:1;8497:9;8493:17;8484:6;8446:65;:::i;:::-;8400:118;;;;:::o;8524:313::-;;8675:2;8664:9;8660:18;8652:26;;8724:9;8718:4;8714:20;8710:1;8699:9;8695:17;8688:47;8752:78;8825:4;8816:6;8752:78;:::i;:::-;8744:86;;8642:195;;;;:::o;8843:419::-;;9047:2;9036:9;9032:18;9024:26;;9096:9;9090:4;9086:20;9082:1;9071:9;9067:17;9060:47;9124:131;9250:4;9124:131;:::i;:::-;9116:139;;9014:248;;;:::o;9268:419::-;;9472:2;9461:9;9457:18;9449:26;;9521:9;9515:4;9511:20;9507:1;9496:9;9492:17;9485:47;9549:131;9675:4;9549:131;:::i;:::-;9541:139;;9439:248;;;:::o;9693:419::-;;9897:2;9886:9;9882:18;9874:26;;9946:9;9940:4;9936:20;9932:1;9921:9;9917:17;9910:47;9974:131;10100:4;9974:131;:::i;:::-;9966:139;;9864:248;;;:::o;10118:419::-;;10322:2;10311:9;10307:18;10299:26;;10371:9;10365:4;10361:20;10357:1;10346:9;10342:17;10335:47;10399:131;10525:4;10399:131;:::i;:::-;10391:139;;10289:248;;;:::o;10543:419::-;;10747:2;10736:9;10732:18;10724:26;;10796:9;10790:4;10786:20;10782:1;10771:9;10767:17;10760:47;10824:131;10950:4;10824:131;:::i;:::-;10816:139;;10714:248;;;:::o;10968:419::-;;11172:2;11161:9;11157:18;11149:26;;11221:9;11215:4;11211:20;11207:1;11196:9;11192:17;11185:47;11249:131;11375:4;11249:131;:::i;:::-;11241:139;;11139:248;;;:::o;11393:419::-;;11597:2;11586:9;11582:18;11574:26;;11646:9;11640:4;11636:20;11632:1;11621:9;11617:17;11610:47;11674:131;11800:4;11674:131;:::i;:::-;11666:139;;11564:248;;;:::o;11818:419::-;;12022:2;12011:9;12007:18;11999:26;;12071:9;12065:4;12061:20;12057:1;12046:9;12042:17;12035:47;12099:131;12225:4;12099:131;:::i;:::-;12091:139;;11989:248;;;:::o;12243:419::-;;12447:2;12436:9;12432:18;12424:26;;12496:9;12490:4;12486:20;12482:1;12471:9;12467:17;12460:47;12524:131;12650:4;12524:131;:::i;:::-;12516:139;;12414:248;;;:::o;12668:419::-;;12872:2;12861:9;12857:18;12849:26;;12921:9;12915:4;12911:20;12907:1;12896:9;12892:17;12885:47;12949:131;13075:4;12949:131;:::i;:::-;12941:139;;12839:248;;;:::o;13093:419::-;;13297:2;13286:9;13282:18;13274:26;;13346:9;13340:4;13336:20;13332:1;13321:9;13317:17;13310:47;13374:131;13500:4;13374:131;:::i;:::-;13366:139;;13264:248;;;:::o;13518:419::-;;13722:2;13711:9;13707:18;13699:26;;13771:9;13765:4;13761:20;13757:1;13746:9;13742:17;13735:47;13799:131;13925:4;13799:131;:::i;:::-;13791:139;;13689:248;;;:::o;13943:419::-;;14147:2;14136:9;14132:18;14124:26;;14196:9;14190:4;14186:20;14182:1;14171:9;14167:17;14160:47;14224:131;14350:4;14224:131;:::i;:::-;14216:139;;14114:248;;;:::o;14368:419::-;;14572:2;14561:9;14557:18;14549:26;;14621:9;14615:4;14611:20;14607:1;14596:9;14592:17;14585:47;14649:131;14775:4;14649:131;:::i;:::-;14641:139;;14539:248;;;:::o;14793:222::-;;14924:2;14913:9;14909:18;14901:26;;14937:71;15005:1;14994:9;14990:17;14981:6;14937:71;:::i;:::-;14891:124;;;;:::o;15021:214::-;;15148:2;15137:9;15133:18;15125:26;;15161:67;15225:1;15214:9;15210:17;15201:6;15161:67;:::i;:::-;15115:120;;;;:::o;15241:99::-;;15327:5;15321:12;15311:22;;15300:40;;;:::o;15346:169::-;;15464:6;15459:3;15452:19;15504:4;15499:3;15495:14;15480:29;;15442:73;;;;:::o;15521:305::-;;15580:20;15598:1;15580:20;:::i;:::-;15575:25;;15614:20;15632:1;15614:20;:::i;:::-;15609:25;;15768:1;15700:66;15696:74;15693:1;15690:81;15687:2;;;15774:18;;:::i;:::-;15687:2;15818:1;15815;15811:9;15804:16;;15565:261;;;;:::o;15832:96::-;;15898:24;15916:5;15898:24;:::i;:::-;15887:35;;15877:51;;;:::o;15934:90::-;;16011:5;16004:13;15997:21;15986:32;;15976:48;;;:::o;16030:126::-;;16107:42;16100:5;16096:54;16085:65;;16075:81;;;:::o;16162:77::-;;16228:5;16217:16;;16207:32;;;:::o;16245:86::-;;16320:4;16313:5;16309:16;16298:27;;16288:43;;;:::o;16337:307::-;16405:1;16415:113;16429:6;16426:1;16423:13;16415:113;;;16514:1;16509:3;16505:11;16499:18;16495:1;16490:3;16486:11;16479:39;16451:2;16448:1;16444:10;16439:15;;16415:113;;;16546:6;16543:1;16540:13;16537:2;;;16626:1;16617:6;16612:3;16608:16;16601:27;16537:2;16386:258;;;;:::o;16650:320::-;;16731:1;16725:4;16721:12;16711:22;;16778:1;16772:4;16768:12;16799:18;16789:2;;16855:4;16847:6;16843:17;16833:27;;16789:2;16917;16909:6;16906:14;16886:18;16883:38;16880:2;;;16936:18;;:::i;:::-;16880:2;16701:269;;;;:::o;16976:180::-;17024:77;17021:1;17014:88;17121:4;17118:1;17111:15;17145:4;17142:1;17135:15;17162:180;17210:77;17207:1;17200:88;17307:4;17304:1;17297:15;17331:4;17328:1;17321:15;17348:102;;17440:2;17436:7;17431:2;17424:5;17420:14;17416:28;17406:38;;17396:54;;;:::o;17456:122::-;17529:24;17547:5;17529:24;:::i;:::-;17522:5;17519:35;17509:2;;17568:1;17565;17558:12;17509:2;17499:79;:::o;17584:122::-;17657:24;17675:5;17657:24;:::i;:::-;17650:5;17647:35;17637:2;;17696:1;17693;17686:12;17637:2;17627:79;:::o

Swarm Source

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