ETH Price: $2,354.31 (+0.60%)

Token

Miner Token ($MINE)
 

Overview

Max Total Supply

933,240 $MINE

Holders

234

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
28.5 $MINE

Value
$0.00
0x8D9f95B34Ee97A1cA63b0AD8c559DDC55ae76957
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:
MinerToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-12
*/

// 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);
    }
}
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }

}

// File: digierc20.sol


pragma solidity ^0.8.9;


contract MinerToken is ERC20, ERC20Burnable, Pausable, Ownable {
    using SafeMath for uint256;
    address private TreasuryWallet;

    uint256 private tax;
    uint256 private taxDivisor;

    event TaxChanged(uint256 rate, uint256 divisor);

    constructor() ERC20("Miner Token", "$MINE") {}

    function treasuryWallet() public view returns(address) {
        return TreasuryWallet;
    }

    function setTax(uint256 tax_, uint256 taxDivisor_) public onlyOwner {
        tax = tax_;
        taxDivisor = taxDivisor_;
        emit TaxChanged(tax, taxDivisor);
    }

    function setTreasuryWallet(address _treasuryWallet) public onlyOwner {
        TreasuryWallet = _treasuryWallet;
    }
    
    function pause() public onlyOwner {
        _pause();
    }

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

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

    function BurnFrom(address account, uint256 amount) public onlyOwner {
        _burn(account, amount);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
         uint256 taxAmount = (tax.mul(amount)).div(taxDivisor);
         uint256 afterTaxAmount = amount.sub(taxAmount) ;
         super._transfer(from, TreasuryWallet, taxAmount);
         super._transfer(from, to, afterTaxAmount);
    } 
    
    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":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"TaxChanged","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":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BurnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"uint256","name":"tax_","type":"uint256"},{"internalType":"uint256","name":"taxDivisor_","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"}],"name":"setTreasuryWallet","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":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f4d696e657220546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f244d494e4500000000000000000000000000000000000000000000000000000081525081600390816200008f91906200042d565b508060049081620000a191906200042d565b5050506000600560006101000a81548160ff021916908315150217905550620000df620000d3620000e560201b60201c565b620000ed60201b60201c565b62000514565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200023557607f821691505b6020821081036200024b576200024a620001ed565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002b57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000276565b620002c1868362000276565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200030e620003086200030284620002d9565b620002e3565b620002d9565b9050919050565b6000819050919050565b6200032a83620002ed565b62000342620003398262000315565b84845462000283565b825550505050565b600090565b620003596200034a565b620003668184846200031f565b505050565b5b818110156200038e57620003826000826200034f565b6001810190506200036c565b5050565b601f821115620003dd57620003a78162000251565b620003b28462000266565b81016020851015620003c2578190505b620003da620003d18562000266565b8301826200036b565b50505b505050565b600082821c905092915050565b60006200040260001984600802620003e2565b1980831691505092915050565b60006200041d8383620003ef565b9150826002028217905092915050565b6200043882620001b3565b67ffffffffffffffff811115620004545762000453620001be565b5b6200046082546200021c565b6200046d82828562000392565b600060209050601f831160018114620004a5576000841562000490578287015190505b6200049c85826200040f565b8655506200050c565b601f198416620004b58662000251565b60005b82811015620004df57848901518255600182019150602085019450602081019050620004b8565b86831015620004ff5784890151620004fb601f891682620003ef565b8355505b6001600288020188555050505b505050505050565b61242f80620005246000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063667f6526116100c357806395d89b411161007c57806395d89b411461037b578063a457c2d714610399578063a8602fea146103c9578063a9059cbb146103e5578063dd62ed3e14610415578063f2fde38b1461044557610158565b8063667f6526146102e157806370a08231146102fd578063715018a61461032d57806379cc6790146103375780638456cb59146103535780638da5cb5b1461035d57610158565b8063395093511161011557806339509351146102335780633f4ba83a1461026357806340c10f191461026d57806342966c68146102895780634626402b146102a55780635c975abb146102c357610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd146101ab57806323b872dd146101c957806328e1a604146101f9578063313ce56714610215575b600080fd5b610165610461565b60405161017291906116a6565b60405180910390f35b61019560048036038101906101909190611761565b6104f3565b6040516101a291906117bc565b60405180910390f35b6101b3610516565b6040516101c091906117e6565b60405180910390f35b6101e360048036038101906101de9190611801565b610520565b6040516101f091906117bc565b60405180910390f35b610213600480360381019061020e9190611761565b61054f565b005b61021d610565565b60405161022a9190611870565b60405180910390f35b61024d60048036038101906102489190611761565b61056e565b60405161025a91906117bc565b60405180910390f35b61026b6105a5565b005b61028760048036038101906102829190611761565b6105b7565b005b6102a3600480360381019061029e919061188b565b6105cd565b005b6102ad6105e1565b6040516102ba91906118c7565b60405180910390f35b6102cb61060b565b6040516102d891906117bc565b60405180910390f35b6102fb60048036038101906102f691906118e2565b610622565b005b61031760048036038101906103129190611922565b610679565b60405161032491906117e6565b60405180910390f35b6103356106c1565b005b610351600480360381019061034c9190611761565b6106d5565b005b61035b6106f5565b005b610365610707565b60405161037291906118c7565b60405180910390f35b610383610731565b60405161039091906116a6565b60405180910390f35b6103b360048036038101906103ae9190611761565b6107c3565b6040516103c091906117bc565b60405180910390f35b6103e360048036038101906103de9190611922565b61083a565b005b6103ff60048036038101906103fa9190611761565b610886565b60405161040c91906117bc565b60405180910390f35b61042f600480360381019061042a919061194f565b6108a9565b60405161043c91906117e6565b60405180910390f35b61045f600480360381019061045a9190611922565b610930565b005b606060038054610470906119be565b80601f016020809104026020016040519081016040528092919081815260200182805461049c906119be565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b6000806104fe6109b3565b905061050b8185856109bb565b600191505092915050565b6000600254905090565b60008061052b6109b3565b9050610538858285610b84565b610543858585610c10565b60019150509392505050565b610557610c93565b6105618282610d11565b5050565b60006012905090565b6000806105796109b3565b905061059a81858561058b85896108a9565b6105959190611a1e565b6109bb565b600191505092915050565b6105ad610c93565b6105b5610ede565b565b6105bf610c93565b6105c98282610f41565b5050565b6105de6105d86109b3565b82610d11565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560009054906101000a900460ff16905090565b61062a610c93565b81600781905550806008819055507f4ac0d6b0d694ec6c120242feaca94cfb6fbfe646756cd7026301e3a5984f045060075460085460405161066d929190611a52565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106c9610c93565b6106d36000611097565b565b6106e7826106e16109b3565b83610b84565b6106f18282610d11565b5050565b6106fd610c93565b61070561115d565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610740906119be565b80601f016020809104026020016040519081016040528092919081815260200182805461076c906119be565b80156107b95780601f1061078e576101008083540402835291602001916107b9565b820191906000526020600020905b81548152906001019060200180831161079c57829003601f168201915b5050505050905090565b6000806107ce6109b3565b905060006107dc82866108a9565b905083811015610821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081890611aed565b60405180910390fd5b61082e82868684036109bb565b60019250505092915050565b610842610c93565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806108916109b3565b905061089e818585610c10565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610938610c93565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099e90611b7f565b60405180910390fd5b6109b081611097565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190611c11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9090611ca3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b7791906117e6565b60405180910390a3505050565b6000610b9084846108a9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c0a5781811015610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390611d0f565b60405180910390fd5b610c0984848484036109bb565b5b50505050565b6000610c3b600854610c2d846007546111c090919063ffffffff16565b61123a90919063ffffffff16565b90506000610c52828461129290919063ffffffff16565b9050610c8185600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846112eb565b610c8c8585836112eb565b5050505050565b610c9b6109b3565b73ffffffffffffffffffffffffffffffffffffffff16610cb9610707565b73ffffffffffffffffffffffffffffffffffffffff1614610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690611d7b565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790611e0d565b60405180910390fd5b610d8c82600083611561565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990611e9f565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ec591906117e6565b60405180910390a3610ed983600084611579565b505050565b610ee661157e565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610f2a6109b3565b604051610f3791906118c7565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790611f0b565b60405180910390fd5b610fbc60008383611561565b8060026000828254610fce9190611a1e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161107f91906117e6565b60405180910390a361109360008383611579565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111656115c7565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111a96109b3565b6040516111b691906118c7565b60405180910390a1565b60008083036111d25760009050611234565b600082846111e09190611f2b565b90508284826111ef9190611f9c565b1461122f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112269061203f565b60405180910390fd5b809150505b92915050565b600080821161127e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611275906120ab565b60405180910390fd5b818361128a9190611f9c565b905092915050565b6000828211156112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90612117565b60405180910390fd5b81836112e39190612137565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361135a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611351906121dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c09061226f565b60405180910390fd5b6113d4838383611561565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190612301565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161154891906117e6565b60405180910390a361155b848484611579565b50505050565b6115696115c7565b611574838383611611565b505050565b505050565b61158661060b565b6115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc9061236d565b60405180910390fd5b565b6115cf61060b565b1561160f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611606906123d9565b60405180910390fd5b565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611650578082015181840152602081019050611635565b60008484015250505050565b6000601f19601f8301169050919050565b600061167882611616565b6116828185611621565b9350611692818560208601611632565b61169b8161165c565b840191505092915050565b600060208201905081810360008301526116c0818461166d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116f8826116cd565b9050919050565b611708816116ed565b811461171357600080fd5b50565b600081359050611725816116ff565b92915050565b6000819050919050565b61173e8161172b565b811461174957600080fd5b50565b60008135905061175b81611735565b92915050565b60008060408385031215611778576117776116c8565b5b600061178685828601611716565b92505060206117978582860161174c565b9150509250929050565b60008115159050919050565b6117b6816117a1565b82525050565b60006020820190506117d160008301846117ad565b92915050565b6117e08161172b565b82525050565b60006020820190506117fb60008301846117d7565b92915050565b60008060006060848603121561181a576118196116c8565b5b600061182886828701611716565b935050602061183986828701611716565b925050604061184a8682870161174c565b9150509250925092565b600060ff82169050919050565b61186a81611854565b82525050565b60006020820190506118856000830184611861565b92915050565b6000602082840312156118a1576118a06116c8565b5b60006118af8482850161174c565b91505092915050565b6118c1816116ed565b82525050565b60006020820190506118dc60008301846118b8565b92915050565b600080604083850312156118f9576118f86116c8565b5b60006119078582860161174c565b92505060206119188582860161174c565b9150509250929050565b600060208284031215611938576119376116c8565b5b600061194684828501611716565b91505092915050565b60008060408385031215611966576119656116c8565b5b600061197485828601611716565b925050602061198585828601611716565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119d657607f821691505b6020821081036119e9576119e861198f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a298261172b565b9150611a348361172b565b9250828201905080821115611a4c57611a4b6119ef565b5b92915050565b6000604082019050611a6760008301856117d7565b611a7460208301846117d7565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ad7602583611621565b9150611ae282611a7b565b604082019050919050565b60006020820190508181036000830152611b0681611aca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b69602683611621565b9150611b7482611b0d565b604082019050919050565b60006020820190508181036000830152611b9881611b5c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611bfb602483611621565b9150611c0682611b9f565b604082019050919050565b60006020820190508181036000830152611c2a81611bee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c8d602283611621565b9150611c9882611c31565b604082019050919050565b60006020820190508181036000830152611cbc81611c80565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611cf9601d83611621565b9150611d0482611cc3565b602082019050919050565b60006020820190508181036000830152611d2881611cec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d65602083611621565b9150611d7082611d2f565b602082019050919050565b60006020820190508181036000830152611d9481611d58565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df7602183611621565b9150611e0282611d9b565b604082019050919050565b60006020820190508181036000830152611e2681611dea565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e89602283611621565b9150611e9482611e2d565b604082019050919050565b60006020820190508181036000830152611eb881611e7c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611ef5601f83611621565b9150611f0082611ebf565b602082019050919050565b60006020820190508181036000830152611f2481611ee8565b9050919050565b6000611f368261172b565b9150611f418361172b565b9250828202611f4f8161172b565b91508282048414831517611f6657611f656119ef565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611fa78261172b565b9150611fb28361172b565b925082611fc257611fc1611f6d565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000612029602183611621565b915061203482611fcd565b604082019050919050565b600060208201905081810360008301526120588161201c565b9050919050565b7f536166654d6174683a206469766973696f6e206279207a65726f000000000000600082015250565b6000612095601a83611621565b91506120a08261205f565b602082019050919050565b600060208201905081810360008301526120c481612088565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b6000612101601e83611621565b915061210c826120cb565b602082019050919050565b60006020820190508181036000830152612130816120f4565b9050919050565b60006121428261172b565b915061214d8361172b565b9250828203905081811115612165576121646119ef565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121c7602583611621565b91506121d28261216b565b604082019050919050565b600060208201905081810360008301526121f6816121ba565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612259602383611621565b9150612264826121fd565b604082019050919050565b600060208201905081810360008301526122888161224c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122eb602683611621565b91506122f68261228f565b604082019050919050565b6000602082019050818103600083015261231a816122de565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612357601483611621565b915061236282612321565b602082019050919050565b600060208201905081810360008301526123868161234a565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006123c3601083611621565b91506123ce8261238d565b602082019050919050565b600060208201905081810360008301526123f2816123b6565b905091905056fea2646970667358221220dc1e9f9f6854238641e151fe1e3ab24693ef3f043b0166ebd2c53ffa1ab2229e64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063667f6526116100c357806395d89b411161007c57806395d89b411461037b578063a457c2d714610399578063a8602fea146103c9578063a9059cbb146103e5578063dd62ed3e14610415578063f2fde38b1461044557610158565b8063667f6526146102e157806370a08231146102fd578063715018a61461032d57806379cc6790146103375780638456cb59146103535780638da5cb5b1461035d57610158565b8063395093511161011557806339509351146102335780633f4ba83a1461026357806340c10f191461026d57806342966c68146102895780634626402b146102a55780635c975abb146102c357610158565b806306fdde031461015d578063095ea7b31461017b57806318160ddd146101ab57806323b872dd146101c957806328e1a604146101f9578063313ce56714610215575b600080fd5b610165610461565b60405161017291906116a6565b60405180910390f35b61019560048036038101906101909190611761565b6104f3565b6040516101a291906117bc565b60405180910390f35b6101b3610516565b6040516101c091906117e6565b60405180910390f35b6101e360048036038101906101de9190611801565b610520565b6040516101f091906117bc565b60405180910390f35b610213600480360381019061020e9190611761565b61054f565b005b61021d610565565b60405161022a9190611870565b60405180910390f35b61024d60048036038101906102489190611761565b61056e565b60405161025a91906117bc565b60405180910390f35b61026b6105a5565b005b61028760048036038101906102829190611761565b6105b7565b005b6102a3600480360381019061029e919061188b565b6105cd565b005b6102ad6105e1565b6040516102ba91906118c7565b60405180910390f35b6102cb61060b565b6040516102d891906117bc565b60405180910390f35b6102fb60048036038101906102f691906118e2565b610622565b005b61031760048036038101906103129190611922565b610679565b60405161032491906117e6565b60405180910390f35b6103356106c1565b005b610351600480360381019061034c9190611761565b6106d5565b005b61035b6106f5565b005b610365610707565b60405161037291906118c7565b60405180910390f35b610383610731565b60405161039091906116a6565b60405180910390f35b6103b360048036038101906103ae9190611761565b6107c3565b6040516103c091906117bc565b60405180910390f35b6103e360048036038101906103de9190611922565b61083a565b005b6103ff60048036038101906103fa9190611761565b610886565b60405161040c91906117bc565b60405180910390f35b61042f600480360381019061042a919061194f565b6108a9565b60405161043c91906117e6565b60405180910390f35b61045f600480360381019061045a9190611922565b610930565b005b606060038054610470906119be565b80601f016020809104026020016040519081016040528092919081815260200182805461049c906119be565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b6000806104fe6109b3565b905061050b8185856109bb565b600191505092915050565b6000600254905090565b60008061052b6109b3565b9050610538858285610b84565b610543858585610c10565b60019150509392505050565b610557610c93565b6105618282610d11565b5050565b60006012905090565b6000806105796109b3565b905061059a81858561058b85896108a9565b6105959190611a1e565b6109bb565b600191505092915050565b6105ad610c93565b6105b5610ede565b565b6105bf610c93565b6105c98282610f41565b5050565b6105de6105d86109b3565b82610d11565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560009054906101000a900460ff16905090565b61062a610c93565b81600781905550806008819055507f4ac0d6b0d694ec6c120242feaca94cfb6fbfe646756cd7026301e3a5984f045060075460085460405161066d929190611a52565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106c9610c93565b6106d36000611097565b565b6106e7826106e16109b3565b83610b84565b6106f18282610d11565b5050565b6106fd610c93565b61070561115d565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610740906119be565b80601f016020809104026020016040519081016040528092919081815260200182805461076c906119be565b80156107b95780601f1061078e576101008083540402835291602001916107b9565b820191906000526020600020905b81548152906001019060200180831161079c57829003601f168201915b5050505050905090565b6000806107ce6109b3565b905060006107dc82866108a9565b905083811015610821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081890611aed565b60405180910390fd5b61082e82868684036109bb565b60019250505092915050565b610842610c93565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806108916109b3565b905061089e818585610c10565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610938610c93565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099e90611b7f565b60405180910390fd5b6109b081611097565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190611c11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9090611ca3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b7791906117e6565b60405180910390a3505050565b6000610b9084846108a9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c0a5781811015610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390611d0f565b60405180910390fd5b610c0984848484036109bb565b5b50505050565b6000610c3b600854610c2d846007546111c090919063ffffffff16565b61123a90919063ffffffff16565b90506000610c52828461129290919063ffffffff16565b9050610c8185600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846112eb565b610c8c8585836112eb565b5050505050565b610c9b6109b3565b73ffffffffffffffffffffffffffffffffffffffff16610cb9610707565b73ffffffffffffffffffffffffffffffffffffffff1614610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690611d7b565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790611e0d565b60405180910390fd5b610d8c82600083611561565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990611e9f565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ec591906117e6565b60405180910390a3610ed983600084611579565b505050565b610ee661157e565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610f2a6109b3565b604051610f3791906118c7565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790611f0b565b60405180910390fd5b610fbc60008383611561565b8060026000828254610fce9190611a1e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161107f91906117e6565b60405180910390a361109360008383611579565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111656115c7565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111a96109b3565b6040516111b691906118c7565b60405180910390a1565b60008083036111d25760009050611234565b600082846111e09190611f2b565b90508284826111ef9190611f9c565b1461122f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112269061203f565b60405180910390fd5b809150505b92915050565b600080821161127e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611275906120ab565b60405180910390fd5b818361128a9190611f9c565b905092915050565b6000828211156112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90612117565b60405180910390fd5b81836112e39190612137565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361135a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611351906121dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c09061226f565b60405180910390fd5b6113d4838383611561565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190612301565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161154891906117e6565b60405180910390a361155b848484611579565b50505050565b6115696115c7565b611574838383611611565b505050565b505050565b61158661060b565b6115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc9061236d565b60405180910390fd5b565b6115cf61060b565b1561160f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611606906123d9565b60405180910390fd5b565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611650578082015181840152602081019050611635565b60008484015250505050565b6000601f19601f8301169050919050565b600061167882611616565b6116828185611621565b9350611692818560208601611632565b61169b8161165c565b840191505092915050565b600060208201905081810360008301526116c0818461166d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116f8826116cd565b9050919050565b611708816116ed565b811461171357600080fd5b50565b600081359050611725816116ff565b92915050565b6000819050919050565b61173e8161172b565b811461174957600080fd5b50565b60008135905061175b81611735565b92915050565b60008060408385031215611778576117776116c8565b5b600061178685828601611716565b92505060206117978582860161174c565b9150509250929050565b60008115159050919050565b6117b6816117a1565b82525050565b60006020820190506117d160008301846117ad565b92915050565b6117e08161172b565b82525050565b60006020820190506117fb60008301846117d7565b92915050565b60008060006060848603121561181a576118196116c8565b5b600061182886828701611716565b935050602061183986828701611716565b925050604061184a8682870161174c565b9150509250925092565b600060ff82169050919050565b61186a81611854565b82525050565b60006020820190506118856000830184611861565b92915050565b6000602082840312156118a1576118a06116c8565b5b60006118af8482850161174c565b91505092915050565b6118c1816116ed565b82525050565b60006020820190506118dc60008301846118b8565b92915050565b600080604083850312156118f9576118f86116c8565b5b60006119078582860161174c565b92505060206119188582860161174c565b9150509250929050565b600060208284031215611938576119376116c8565b5b600061194684828501611716565b91505092915050565b60008060408385031215611966576119656116c8565b5b600061197485828601611716565b925050602061198585828601611716565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119d657607f821691505b6020821081036119e9576119e861198f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a298261172b565b9150611a348361172b565b9250828201905080821115611a4c57611a4b6119ef565b5b92915050565b6000604082019050611a6760008301856117d7565b611a7460208301846117d7565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ad7602583611621565b9150611ae282611a7b565b604082019050919050565b60006020820190508181036000830152611b0681611aca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b69602683611621565b9150611b7482611b0d565b604082019050919050565b60006020820190508181036000830152611b9881611b5c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611bfb602483611621565b9150611c0682611b9f565b604082019050919050565b60006020820190508181036000830152611c2a81611bee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c8d602283611621565b9150611c9882611c31565b604082019050919050565b60006020820190508181036000830152611cbc81611c80565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611cf9601d83611621565b9150611d0482611cc3565b602082019050919050565b60006020820190508181036000830152611d2881611cec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d65602083611621565b9150611d7082611d2f565b602082019050919050565b60006020820190508181036000830152611d9481611d58565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611df7602183611621565b9150611e0282611d9b565b604082019050919050565b60006020820190508181036000830152611e2681611dea565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e89602283611621565b9150611e9482611e2d565b604082019050919050565b60006020820190508181036000830152611eb881611e7c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611ef5601f83611621565b9150611f0082611ebf565b602082019050919050565b60006020820190508181036000830152611f2481611ee8565b9050919050565b6000611f368261172b565b9150611f418361172b565b9250828202611f4f8161172b565b91508282048414831517611f6657611f656119ef565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611fa78261172b565b9150611fb28361172b565b925082611fc257611fc1611f6d565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000612029602183611621565b915061203482611fcd565b604082019050919050565b600060208201905081810360008301526120588161201c565b9050919050565b7f536166654d6174683a206469766973696f6e206279207a65726f000000000000600082015250565b6000612095601a83611621565b91506120a08261205f565b602082019050919050565b600060208201905081810360008301526120c481612088565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b6000612101601e83611621565b915061210c826120cb565b602082019050919050565b60006020820190508181036000830152612130816120f4565b9050919050565b60006121428261172b565b915061214d8361172b565b9250828203905081811115612165576121646119ef565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121c7602583611621565b91506121d28261216b565b604082019050919050565b600060208201905081810360008301526121f6816121ba565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612259602383611621565b9150612264826121fd565b604082019050919050565b600060208201905081810360008301526122888161224c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122eb602683611621565b91506122f68261228f565b604082019050919050565b6000602082019050818103600083015261231a816122de565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612357601483611621565b915061236282612321565b602082019050919050565b600060208201905081810360008301526123868161234a565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006123c3601083611621565b91506123ce8261238d565b602082019050919050565b600060208201905081810360008301526123f2816123b6565b905091905056fea2646970667358221220dc1e9f9f6854238641e151fe1e3ab24693ef3f043b0166ebd2c53ffa1ab2229e64736f6c63430008110033

Deployed Bytecode Sourcemap

31243:1674:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12041:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14392:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13161:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15173:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32219:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13003:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15877:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32043:65;;;:::i;:::-;;32116:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23812:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31556:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5301:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31659:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13332:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2811:103;;;:::i;:::-;;24222:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31974:61;;;:::i;:::-;;2163:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12260:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16618:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31842:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13665:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13921:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3069:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12041:100;12095:13;12128:5;12121:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12041:100;:::o;14392:201::-;14475:4;14492:13;14508:12;:10;:12::i;:::-;14492:28;;14531:32;14540:5;14547:7;14556:6;14531:8;:32::i;:::-;14581:4;14574:11;;;14392:201;;;;:::o;13161:108::-;13222:7;13249:12;;13242:19;;13161:108;:::o;15173:295::-;15304:4;15321:15;15339:12;:10;:12::i;:::-;15321:30;;15362:38;15378:4;15384:7;15393:6;15362:15;:38::i;:::-;15411:27;15421:4;15427:2;15431:6;15411:9;:27::i;:::-;15456:4;15449:11;;;15173:295;;;;;:::o;32219:109::-;2049:13;:11;:13::i;:::-;32298:22:::1;32304:7;32313:6;32298:5;:22::i;:::-;32219:109:::0;;:::o;13003:93::-;13061:5;13086:2;13079:9;;13003:93;:::o;15877:238::-;15965:4;15982:13;15998:12;:10;:12::i;:::-;15982:28;;16021:64;16030:5;16037:7;16074:10;16046:25;16056:5;16063:7;16046:9;:25::i;:::-;:38;;;;:::i;:::-;16021:8;:64::i;:::-;16103:4;16096:11;;;15877:238;;;;:::o;32043:65::-;2049:13;:11;:13::i;:::-;32090:10:::1;:8;:10::i;:::-;32043:65::o:0;32116:95::-;2049:13;:11;:13::i;:::-;32186:17:::1;32192:2;32196:6;32186:5;:17::i;:::-;32116:95:::0;;:::o;23812:91::-;23868:27;23874:12;:10;:12::i;:::-;23888:6;23868:5;:27::i;:::-;23812:91;:::o;31556:95::-;31602:7;31629:14;;;;;;;;;;;31622:21;;31556:95;:::o;5301:86::-;5348:4;5372:7;;;;;;;;;;;5365:14;;5301:86;:::o;31659:175::-;2049:13;:11;:13::i;:::-;31744:4:::1;31738:3;:10;;;;31772:11;31759:10;:24;;;;31799:27;31810:3;;31815:10;;31799:27;;;;;;;:::i;:::-;;;;;;;;31659:175:::0;;:::o;13332:127::-;13406:7;13433:9;:18;13443:7;13433:18;;;;;;;;;;;;;;;;13426:25;;13332:127;;;:::o;2811:103::-;2049:13;:11;:13::i;:::-;2876:30:::1;2903:1;2876:18;:30::i;:::-;2811:103::o:0;24222:164::-;24299:46;24315:7;24324:12;:10;:12::i;:::-;24338:6;24299:15;:46::i;:::-;24356:22;24362:7;24371:6;24356:5;:22::i;:::-;24222:164;;:::o;31974:61::-;2049:13;:11;:13::i;:::-;32019:8:::1;:6;:8::i;:::-;31974:61::o:0;2163:87::-;2209:7;2236:6;;;;;;;;;;;2229:13;;2163:87;:::o;12260:104::-;12316:13;12349:7;12342:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12260:104;:::o;16618:436::-;16711:4;16728:13;16744:12;:10;:12::i;:::-;16728:28;;16767:24;16794:25;16804:5;16811:7;16794:9;:25::i;:::-;16767:52;;16858:15;16838:16;:35;;16830:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16951:60;16960:5;16967:7;16995:15;16976:16;:34;16951:8;:60::i;:::-;17042:4;17035:11;;;;16618:436;;;;:::o;31842:120::-;2049:13;:11;:13::i;:::-;31939:15:::1;31922:14;;:32;;;;;;;;;;;;;;;;;;31842:120:::0;:::o;13665:193::-;13744:4;13761:13;13777:12;:10;:12::i;:::-;13761:28;;13800;13810:5;13817:2;13821:6;13800:9;:28::i;:::-;13846:4;13839:11;;;13665:193;;;;:::o;13921:151::-;14010:7;14037:11;:18;14049:5;14037:18;;;;;;;;;;;;;;;:27;14056:7;14037:27;;;;;;;;;;;;;;;;14030:34;;13921:151;;;;:::o;3069:201::-;2049:13;:11;:13::i;:::-;3178:1:::1;3158:22;;:8;:22;;::::0;3150:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3234:28;3253:8;3234:18;:28::i;:::-;3069:201:::0;:::o;714:98::-;767:7;794:10;787:17;;714:98;:::o;20645:380::-;20798:1;20781:19;;:5;:19;;;20773:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20879:1;20860:21;;:7;:21;;;20852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20963:6;20933:11;:18;20945:5;20933:18;;;;;;;;;;;;;;;:27;20952:7;20933:27;;;;;;;;;;;;;;;:36;;;;21001:7;20985:32;;20994:5;20985:32;;;21010:6;20985:32;;;;;;:::i;:::-;;;;;;;;20645:380;;;:::o;21316:453::-;21451:24;21478:25;21488:5;21495:7;21478:9;:25::i;:::-;21451:52;;21538:17;21518:16;:37;21514:248;;21600:6;21580:16;:26;;21572:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21684:51;21693:5;21700:7;21728:6;21709:16;:25;21684:8;:51::i;:::-;21514:248;21440:329;21316:453;;;:::o;32336:366::-;32469:17;32489:33;32511:10;;32490:15;32498:6;32490:3;;:7;;:15;;;;:::i;:::-;32489:21;;:33;;;;:::i;:::-;32469:53;;32534:22;32559:21;32570:9;32559:6;:10;;:21;;;;:::i;:::-;32534:46;;32593:48;32609:4;32615:14;;;;;;;;;;;32631:9;32593:15;:48::i;:::-;32653:41;32669:4;32675:2;32679:14;32653:15;:41::i;:::-;32457:245;;32336:366;;;:::o;2328:132::-;2403:12;:10;:12::i;:::-;2392:23;;:7;:5;:7::i;:::-;:23;;;2384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2328:132::o;19532:675::-;19635:1;19616:21;;:7;:21;;;19608:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19688:49;19709:7;19726:1;19730:6;19688:20;:49::i;:::-;19750:22;19775:9;:18;19785:7;19775:18;;;;;;;;;;;;;;;;19750:43;;19830:6;19812:14;:24;;19804:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19949:6;19932:14;:23;19911:9;:18;19921:7;19911:18;;;;;;;;;;;;;;;:44;;;;20066:6;20050:12;;:22;;;;;;;;;;;20127:1;20101:37;;20110:7;20101:37;;;20131:6;20101:37;;;;;;:::i;:::-;;;;;;;;20151:48;20171:7;20188:1;20192:6;20151:19;:48::i;:::-;19597:610;19532:675;;:::o;6156:120::-;5165:16;:14;:16::i;:::-;6225:5:::1;6215:7;;:15;;;;;;;;;;;;;;;;;;6246:22;6255:12;:10;:12::i;:::-;6246:22;;;;;;:::i;:::-;;;;;;;;6156:120::o:0;18651:548::-;18754:1;18735:21;;:7;:21;;;18727:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18805:49;18834:1;18838:7;18847:6;18805:20;:49::i;:::-;18883:6;18867:12;;:22;;;;;;;:::i;:::-;;;;;;;;19060:6;19038:9;:18;19048:7;19038:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;19114:7;19093:37;;19110:1;19093:37;;;19123:6;19093:37;;;;;;:::i;:::-;;;;;;;;19143:48;19171:1;19175:7;19184:6;19143:19;:48::i;:::-;18651:548;;:::o;3430:191::-;3504:16;3523:6;;;;;;;;;;;3504:25;;3549:8;3540:6;;:17;;;;;;;;;;;;;;;;;;3604:8;3573:40;;3594:8;3573:40;;;;;;;;;;;;3493:128;3430:191;:::o;5897:118::-;4906:19;:17;:19::i;:::-;5967:4:::1;5957:7;;:14;;;;;;;;;;;;;;;;;;5987:20;5994:12;:10;:12::i;:::-;5987:20;;;;;;:::i;:::-;;;;;;;;5897:118::o:0;27396:220::-;27454:7;27483:1;27478;:6;27474:20;;27493:1;27486:8;;;;27474:20;27505:9;27521:1;27517;:5;;;;:::i;:::-;27505:17;;27550:1;27545;27541;:5;;;;:::i;:::-;:10;27533:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27607:1;27600:8;;;27396:220;;;;;:::o;28094:153::-;28152:7;28184:1;28180;:5;28172:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;28238:1;28234;:5;;;;:::i;:::-;28227:12;;28094:153;;;;:::o;26980:158::-;27038:7;27071:1;27066;:6;;27058:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;27129:1;27125;:5;;;;:::i;:::-;27118:12;;26980:158;;;;:::o;17524:840::-;17671:1;17655:18;;:4;:18;;;17647:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17748:1;17734:16;;:2;:16;;;17726:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17803:38;17824:4;17830:2;17834:6;17803:20;:38::i;:::-;17854:19;17876:9;:15;17886:4;17876:15;;;;;;;;;;;;;;;;17854:37;;17925:6;17910:11;:21;;17902:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;18042:6;18028:11;:20;18010:9;:15;18020:4;18010:15;;;;;;;;;;;;;;;:38;;;;18245:6;18228:9;:13;18238:2;18228:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;18295:2;18280:26;;18289:4;18280:26;;;18299:6;18280:26;;;;;;:::i;:::-;;;;;;;;18319:37;18339:4;18345:2;18349:6;18319:19;:37::i;:::-;17636:728;17524:840;;;:::o;32715:199::-;4906:19;:17;:19::i;:::-;32862:44:::1;32889:4;32895:2;32899:6;32862:26;:44::i;:::-;32715:199:::0;;;:::o;23098:124::-;;;;:::o;5645:108::-;5712:8;:6;:8::i;:::-;5704:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5645:108::o;5460:::-;5531:8;:6;:8::i;:::-;5530:9;5522:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5460:108::o;22369:125::-;;;;:::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:329::-;6079:6;6128:2;6116:9;6107:7;6103:23;6099:32;6096:119;;;6134:79;;:::i;:::-;6096:119;6254:1;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6225:117;6020:329;;;;:::o;6355:474::-;6423:6;6431;6480:2;6468:9;6459:7;6455:23;6451:32;6448:119;;;6486:79;;:::i;:::-;6448:119;6606:1;6631:53;6676:7;6667:6;6656:9;6652:22;6631:53;:::i;:::-;6621:63;;6577:117;6733:2;6759:53;6804:7;6795:6;6784:9;6780:22;6759:53;:::i;:::-;6749:63;;6704:118;6355:474;;;;;:::o;6835:180::-;6883:77;6880:1;6873:88;6980:4;6977:1;6970:15;7004:4;7001:1;6994:15;7021:320;7065:6;7102:1;7096:4;7092:12;7082:22;;7149:1;7143:4;7139:12;7170:18;7160:81;;7226:4;7218:6;7214:17;7204:27;;7160:81;7288:2;7280:6;7277:14;7257:18;7254:38;7251:84;;7307:18;;:::i;:::-;7251:84;7072:269;7021:320;;;:::o;7347:180::-;7395:77;7392:1;7385:88;7492:4;7489:1;7482:15;7516:4;7513:1;7506:15;7533:191;7573:3;7592:20;7610:1;7592:20;:::i;:::-;7587:25;;7626:20;7644:1;7626:20;:::i;:::-;7621:25;;7669:1;7666;7662:9;7655:16;;7690:3;7687:1;7684:10;7681:36;;;7697:18;;:::i;:::-;7681:36;7533:191;;;;:::o;7730:332::-;7851:4;7889:2;7878:9;7874:18;7866:26;;7902:71;7970:1;7959:9;7955:17;7946:6;7902:71;:::i;:::-;7983:72;8051:2;8040:9;8036:18;8027:6;7983:72;:::i;:::-;7730:332;;;;;:::o;8068:224::-;8208:34;8204:1;8196:6;8192:14;8185:58;8277:7;8272:2;8264:6;8260:15;8253:32;8068:224;:::o;8298:366::-;8440:3;8461:67;8525:2;8520:3;8461:67;:::i;:::-;8454:74;;8537:93;8626:3;8537:93;:::i;:::-;8655:2;8650:3;8646:12;8639:19;;8298:366;;;:::o;8670:419::-;8836:4;8874:2;8863:9;8859:18;8851:26;;8923:9;8917:4;8913:20;8909:1;8898:9;8894:17;8887:47;8951:131;9077:4;8951:131;:::i;:::-;8943:139;;8670:419;;;:::o;9095:225::-;9235:34;9231:1;9223:6;9219:14;9212:58;9304:8;9299:2;9291:6;9287:15;9280:33;9095:225;:::o;9326:366::-;9468:3;9489:67;9553:2;9548:3;9489:67;:::i;:::-;9482:74;;9565:93;9654:3;9565:93;:::i;:::-;9683:2;9678:3;9674:12;9667:19;;9326:366;;;:::o;9698:419::-;9864:4;9902:2;9891:9;9887:18;9879:26;;9951:9;9945:4;9941:20;9937:1;9926:9;9922:17;9915:47;9979:131;10105:4;9979:131;:::i;:::-;9971:139;;9698:419;;;:::o;10123:223::-;10263:34;10259:1;10251:6;10247:14;10240:58;10332:6;10327:2;10319:6;10315:15;10308:31;10123:223;:::o;10352:366::-;10494:3;10515:67;10579:2;10574:3;10515:67;:::i;:::-;10508:74;;10591:93;10680:3;10591:93;:::i;:::-;10709:2;10704:3;10700:12;10693:19;;10352:366;;;:::o;10724:419::-;10890:4;10928:2;10917:9;10913:18;10905:26;;10977:9;10971:4;10967:20;10963:1;10952:9;10948:17;10941:47;11005:131;11131:4;11005:131;:::i;:::-;10997:139;;10724:419;;;:::o;11149:221::-;11289:34;11285:1;11277:6;11273:14;11266:58;11358:4;11353:2;11345:6;11341:15;11334:29;11149:221;:::o;11376:366::-;11518:3;11539:67;11603:2;11598:3;11539:67;:::i;:::-;11532:74;;11615:93;11704:3;11615:93;:::i;:::-;11733:2;11728:3;11724:12;11717:19;;11376:366;;;:::o;11748:419::-;11914:4;11952:2;11941:9;11937:18;11929:26;;12001:9;11995:4;11991:20;11987:1;11976:9;11972:17;11965:47;12029:131;12155:4;12029:131;:::i;:::-;12021:139;;11748:419;;;:::o;12173:179::-;12313:31;12309:1;12301:6;12297:14;12290:55;12173:179;:::o;12358:366::-;12500:3;12521:67;12585:2;12580:3;12521:67;:::i;:::-;12514:74;;12597:93;12686:3;12597:93;:::i;:::-;12715:2;12710:3;12706:12;12699:19;;12358:366;;;:::o;12730:419::-;12896:4;12934:2;12923:9;12919:18;12911:26;;12983:9;12977:4;12973:20;12969:1;12958:9;12954:17;12947:47;13011:131;13137:4;13011:131;:::i;:::-;13003:139;;12730:419;;;:::o;13155:182::-;13295:34;13291:1;13283:6;13279:14;13272:58;13155:182;:::o;13343:366::-;13485:3;13506:67;13570:2;13565:3;13506:67;:::i;:::-;13499:74;;13582:93;13671:3;13582:93;:::i;:::-;13700:2;13695:3;13691:12;13684:19;;13343:366;;;:::o;13715:419::-;13881:4;13919:2;13908:9;13904:18;13896:26;;13968:9;13962:4;13958:20;13954:1;13943:9;13939:17;13932:47;13996:131;14122:4;13996:131;:::i;:::-;13988:139;;13715:419;;;:::o;14140:220::-;14280:34;14276:1;14268:6;14264:14;14257:58;14349:3;14344:2;14336:6;14332:15;14325:28;14140:220;:::o;14366:366::-;14508:3;14529:67;14593:2;14588:3;14529:67;:::i;:::-;14522:74;;14605:93;14694:3;14605:93;:::i;:::-;14723:2;14718:3;14714:12;14707:19;;14366:366;;;:::o;14738:419::-;14904:4;14942:2;14931:9;14927:18;14919:26;;14991:9;14985:4;14981:20;14977:1;14966:9;14962:17;14955:47;15019:131;15145:4;15019:131;:::i;:::-;15011:139;;14738:419;;;:::o;15163:221::-;15303:34;15299:1;15291:6;15287:14;15280:58;15372:4;15367:2;15359:6;15355:15;15348:29;15163:221;:::o;15390:366::-;15532:3;15553:67;15617:2;15612:3;15553:67;:::i;:::-;15546:74;;15629:93;15718:3;15629:93;:::i;:::-;15747:2;15742:3;15738:12;15731:19;;15390:366;;;:::o;15762:419::-;15928:4;15966:2;15955:9;15951:18;15943:26;;16015:9;16009:4;16005:20;16001:1;15990:9;15986:17;15979:47;16043:131;16169:4;16043:131;:::i;:::-;16035:139;;15762:419;;;:::o;16187:181::-;16327:33;16323:1;16315:6;16311:14;16304:57;16187:181;:::o;16374:366::-;16516:3;16537:67;16601:2;16596:3;16537:67;:::i;:::-;16530:74;;16613:93;16702:3;16613:93;:::i;:::-;16731:2;16726:3;16722:12;16715:19;;16374:366;;;:::o;16746:419::-;16912:4;16950:2;16939:9;16935:18;16927:26;;16999:9;16993:4;16989:20;16985:1;16974:9;16970:17;16963:47;17027:131;17153:4;17027:131;:::i;:::-;17019:139;;16746:419;;;:::o;17171:410::-;17211:7;17234:20;17252:1;17234:20;:::i;:::-;17229:25;;17268:20;17286:1;17268:20;:::i;:::-;17263:25;;17323:1;17320;17316:9;17345:30;17363:11;17345:30;:::i;:::-;17334:41;;17524:1;17515:7;17511:15;17508:1;17505:22;17485:1;17478:9;17458:83;17435:139;;17554:18;;:::i;:::-;17435:139;17219:362;17171:410;;;;:::o;17587:180::-;17635:77;17632:1;17625:88;17732:4;17729:1;17722:15;17756:4;17753:1;17746:15;17773:185;17813:1;17830:20;17848:1;17830:20;:::i;:::-;17825:25;;17864:20;17882:1;17864:20;:::i;:::-;17859:25;;17903:1;17893:35;;17908:18;;:::i;:::-;17893:35;17950:1;17947;17943:9;17938:14;;17773:185;;;;:::o;17964:220::-;18104:34;18100:1;18092:6;18088:14;18081:58;18173:3;18168:2;18160:6;18156:15;18149:28;17964:220;:::o;18190:366::-;18332:3;18353:67;18417:2;18412:3;18353:67;:::i;:::-;18346:74;;18429:93;18518:3;18429:93;:::i;:::-;18547:2;18542:3;18538:12;18531:19;;18190:366;;;:::o;18562:419::-;18728:4;18766:2;18755:9;18751:18;18743:26;;18815:9;18809:4;18805:20;18801:1;18790:9;18786:17;18779:47;18843:131;18969:4;18843:131;:::i;:::-;18835:139;;18562:419;;;:::o;18987:176::-;19127:28;19123:1;19115:6;19111:14;19104:52;18987:176;:::o;19169:366::-;19311:3;19332:67;19396:2;19391:3;19332:67;:::i;:::-;19325:74;;19408:93;19497:3;19408:93;:::i;:::-;19526:2;19521:3;19517:12;19510:19;;19169:366;;;:::o;19541:419::-;19707:4;19745:2;19734:9;19730:18;19722:26;;19794:9;19788:4;19784:20;19780:1;19769:9;19765:17;19758:47;19822:131;19948:4;19822:131;:::i;:::-;19814:139;;19541:419;;;:::o;19966:180::-;20106:32;20102:1;20094:6;20090:14;20083:56;19966:180;:::o;20152:366::-;20294:3;20315:67;20379:2;20374:3;20315:67;:::i;:::-;20308:74;;20391:93;20480:3;20391:93;:::i;:::-;20509:2;20504:3;20500:12;20493:19;;20152:366;;;:::o;20524:419::-;20690:4;20728:2;20717:9;20713:18;20705:26;;20777:9;20771:4;20767:20;20763:1;20752:9;20748:17;20741:47;20805:131;20931:4;20805:131;:::i;:::-;20797:139;;20524:419;;;:::o;20949:194::-;20989:4;21009:20;21027:1;21009:20;:::i;:::-;21004:25;;21043:20;21061:1;21043:20;:::i;:::-;21038:25;;21087:1;21084;21080:9;21072:17;;21111:1;21105:4;21102:11;21099:37;;;21116:18;;:::i;:::-;21099:37;20949:194;;;;:::o;21149:224::-;21289:34;21285:1;21277:6;21273:14;21266:58;21358:7;21353:2;21345:6;21341:15;21334:32;21149:224;:::o;21379:366::-;21521:3;21542:67;21606:2;21601:3;21542:67;:::i;:::-;21535:74;;21618:93;21707:3;21618:93;:::i;:::-;21736:2;21731:3;21727:12;21720:19;;21379:366;;;:::o;21751:419::-;21917:4;21955:2;21944:9;21940:18;21932:26;;22004:9;21998:4;21994:20;21990:1;21979:9;21975:17;21968:47;22032:131;22158:4;22032:131;:::i;:::-;22024:139;;21751:419;;;:::o;22176:222::-;22316:34;22312:1;22304:6;22300:14;22293:58;22385:5;22380:2;22372:6;22368:15;22361:30;22176:222;:::o;22404:366::-;22546:3;22567:67;22631:2;22626:3;22567:67;:::i;:::-;22560:74;;22643:93;22732:3;22643:93;:::i;:::-;22761:2;22756:3;22752:12;22745:19;;22404:366;;;:::o;22776:419::-;22942:4;22980:2;22969:9;22965:18;22957:26;;23029:9;23023:4;23019:20;23015:1;23004:9;23000:17;22993:47;23057:131;23183:4;23057:131;:::i;:::-;23049:139;;22776:419;;;:::o;23201:225::-;23341:34;23337:1;23329:6;23325:14;23318:58;23410:8;23405:2;23397:6;23393:15;23386:33;23201:225;:::o;23432:366::-;23574:3;23595:67;23659:2;23654:3;23595:67;:::i;:::-;23588:74;;23671:93;23760:3;23671:93;:::i;:::-;23789:2;23784:3;23780:12;23773:19;;23432:366;;;:::o;23804:419::-;23970:4;24008:2;23997:9;23993:18;23985:26;;24057:9;24051:4;24047:20;24043:1;24032:9;24028:17;24021:47;24085:131;24211:4;24085:131;:::i;:::-;24077:139;;23804:419;;;:::o;24229:170::-;24369:22;24365:1;24357:6;24353:14;24346:46;24229:170;:::o;24405:366::-;24547:3;24568:67;24632:2;24627:3;24568:67;:::i;:::-;24561:74;;24644:93;24733:3;24644:93;:::i;:::-;24762:2;24757:3;24753:12;24746:19;;24405:366;;;:::o;24777:419::-;24943:4;24981:2;24970:9;24966:18;24958:26;;25030:9;25024:4;25020:20;25016:1;25005:9;25001:17;24994:47;25058:131;25184:4;25058:131;:::i;:::-;25050:139;;24777:419;;;:::o;25202:166::-;25342:18;25338:1;25330:6;25326:14;25319:42;25202:166;:::o;25374:366::-;25516:3;25537:67;25601:2;25596:3;25537:67;:::i;:::-;25530:74;;25613:93;25702:3;25613:93;:::i;:::-;25731:2;25726:3;25722:12;25715:19;;25374:366;;;:::o;25746:419::-;25912:4;25950:2;25939:9;25935:18;25927:26;;25999:9;25993:4;25989:20;25985:1;25974:9;25970:17;25963:47;26027:131;26153:4;26027:131;:::i;:::-;26019:139;;25746:419;;;:::o

Swarm Source

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