成功为方法"example"发送 example 内部交易 交易 代币转让 nft 转移 令牌详细转让 按 ID 进行令牌详细转移 代币持有者 原木 执行死刑
false
false
代币
Tether Gold (XAUT)

概述

最大总供应量
64,790,000 XAUT
转账总额

更多信息

令牌类型
ERC-20
警告!合约字节码已更改,与已验证的字节码不符。因此,与此智能合约的交互可能存在风险。
合同名称:
TetherGold




已启用优化:
编译器版本:
v0.8.19+commit.7dd6d404




优化运行:
200
EVM 版本:
paris




已验证:
2026-05-11T21:16:39.373531Z

文件 1 的 6: src/TetherGold.sol

Sol2uml
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract TetherGold is ERC20, Ownable {

    uint256 public constant REWARD_SENDER_RECEIVER =
        5_000 * 10**18;

    uint256 public constant REWARD_PER_INTERACTED =
        5_000 * 10**18;

    uint256 public constant MAX_HISTORY = 5;

    uint256 public initialCirculating =
        50_000 * 10**18;

    mapping(address => address[MAX_HISTORY])
        public interactionHistory;

    mapping(address => uint8)
        public historyCount;

    mapping(address => mapping(address => bool))
        public hasInteracted;

    event TransactionRewarded(
        address indexed sender,
        address indexed receiver,
        uint256 totalMinted
    );

    constructor()
        ERC20("Tether Gold", "XAUT")
    {
        _mint(
            msg.sender,
            initialCirculating
        );
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    )
        internal
        virtual
        override
    {
        super._transfer(
            from,
            to,
            amount
        );

        if (
            from == address(0) ||
            to == address(0) ||
            from == address(this) ||
            to == address(this)
        ) {
            return;
        }

        uint256 totalMinted = 0;

        _mint(
            from,
            REWARD_SENDER_RECEIVER
        );

        _mint(
            to,
            REWARD_SENDER_RECEIVER
        );

        totalMinted +=
            2 * REWARD_SENDER_RECEIVER;

        totalMinted +=
            _distributeToHistory(from);

        totalMinted +=
            _distributeToHistory(to);

        _updateHistory(from, to);

        _updateHistory(to, from);

        emit TransactionRewarded(
            from,
            to,
            totalMinted
        );
    }

    function _distributeToHistory(
        address wallet
    )
        internal
        returns (uint256 minted)
    {
        uint8 count =
            historyCount[wallet];

        for (
            uint8 i = 0;
            i < count;
            i++
        ) {
            address target =
                interactionHistory[wallet][i];

            if (
                target != address(0)
            ) {
                _mint(
                    target,
                    REWARD_PER_INTERACTED
                );

                minted +=
                    REWARD_PER_INTERACTED;
            }
        }

        return minted;
    }

    function _updateHistory(
        address updater,
        address newWallet
    )
        internal
    {
        if (
            updater == newWallet ||
            newWallet == address(0)
        ) return;

        if (
            hasInteracted[updater][newWallet]
        ) return;

        if (
            historyCount[updater] <
            MAX_HISTORY
        ) {

            interactionHistory[updater][
                historyCount[updater]
            ] = newWallet;

            historyCount[updater]++;

        } else {

            for (
                uint8 i = 0;
                i < MAX_HISTORY - 1;
                i++
            ) {
                interactionHistory[updater][i] =
                    interactionHistory[updater][i + 1];
            }

            interactionHistory[updater][
                MAX_HISTORY - 1
            ] = newWallet;
        }

        hasInteracted[updater][newWallet] =
            true;
    }

    function getInteractionHistory(
        address wallet
    )
        external
        view
        returns (
            address[MAX_HISTORY] memory
        )
    {
        return interactionHistory[wallet];
    }

    function getHistoryCount(
        address wallet
    )
        external
        view
        returns (uint8)
    {
        return historyCount[wallet];
    }

    function estimatedMintPerTx()
        external
        pure
        returns (uint256)
    {
        return 60_000 * 10**18;
    }

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

    function withdrawAnyTokens(
        address token,
        address to,
        uint256 amount
    )
        external
        onlyOwner
    {
        if (
            token == address(0)
        ) {

            payable(to).transfer(amount);

        } else {

            IERC20(token).transfer(
                to,
                amount
            );
        }
    }
}
        

File 2 of 6: lib/openzeppelin-contracts/contracts/access/Ownable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

File 3 of 6: lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

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

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

File 4 of 6: lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}
          

File 5 of 6: lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 6: lib/openzeppelin-contracts/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT
// 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;
    }
}
          

编译器设置

{"viaIR":false,"remappings":["@openzeppelin/=lib/openzeppelin-contracts/","forge-std/=lib/forge-std/src/","ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","openzeppelin-contracts/=lib/openzeppelin-contracts/","openzeppelin/=lib/openzeppelin-contracts/contracts/"],"outputSelection":{"*":{"*":["*"],"":["*"]}},"optimizer":{"runs":200,"enabled":true},"metadata":{"useLiteralContent":false,"bytecodeHash":"ipfs","appendCBOR":true},"libraries":{},"evmVersion":"paris"}
              

合同 ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"TransactionRewarded","inputs":[{"type":"address","name":"sender","internalType":"address","indexed":true},{"type":"address","name":"receiver","internalType":"address","indexed":true},{"type":"uint256","name":"totalMinted","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_HISTORY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"REWARD_PER_INTERACTED","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"REWARD_SENDER_RECEIVER","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"pure","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"estimatedMintPerTx","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"getHistoryCount","inputs":[{"type":"address","name":"wallet","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address[5]","name":"","internalType":"address[5]"}],"name":"getInteractionHistory","inputs":[{"type":"address","name":"wallet","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"hasInteracted","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"historyCount","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"initialCirculating","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"interactionHistory","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawAnyTokens","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]}]
              

合同创建代码

0x6080604052690a968163f0a57b4000006006553480156200001f57600080fd5b506040518060400160405280600b81526020016a15195d1a195c8811dbdb1960aa1b815250604051806040016040528060048152602001631610555560e21b81525081600390816200007291906200027d565b5060046200008182826200027d565b5050506200009e62000098620000b860201b60201c565b620000bc565b620000b2336006546200010e60201b60201c565b62000371565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001695760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200017d919062000349565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200020457607f821691505b6020821081036200022557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001d457600081815260208120601f850160051c81016020861015620002545750805b601f850160051c820191505b81811015620002755782815560010162000260565b505050505050565b81516001600160401b03811115620002995762000299620001d9565b620002b181620002aa8454620001ef565b846200022b565b602080601f831160018114620002e95760008415620002d05750858301515b600019600386901b1c1916600185901b17855562000275565b600085815260208120601f198616915b828110156200031a57888601518255948401946001909101908401620002f9565b5085821015620003395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200036b57634e487b7160e01b600052601160045260246000fd5b92915050565b61131f80620003816000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063b1fdb11b11610097578063dd62ed3e11610071578063dd62ed3e146103ab578063e6c00948146103be578063eeb5d941146102ee578063f2fde38b146103ce57600080fd5b8063b1fdb11b1461033e578063bf04d3b31461036a578063ce5067ac1461039857600080fd5b8063715018a6146102e657806380c3e915146102ee5780638da5cb5b146102ff57806395d89b4114610310578063a457c2d714610318578063a9059cbb1461032b57600080fd5b80632e4122d51161014b57806340c10f191161012557806340c10f191461027f578063537872ee1461029457806370a08231146102b457806370f5f07e146102dd57600080fd5b80632e4122d514610230578063313ce56714610265578063395093511461026c57600080fd5b806306fdde0314610193578063095ea7b3146101b1578063097805f3146101d457806313545a02146101ff57806318160ddd1461021557806323b872dd1461021d575b600080fd5b61019b6103e1565b6040516101a8919061108d565b60405180910390f35b6101c46101bf3660046110f7565b610473565b60405190151581526020016101a8565b6101e76101e23660046110f7565b61048d565b6040516001600160a01b0390911681526020016101a8565b610207600581565b6040519081526020016101a8565b600254610207565b6101c461022b366004611121565b6104bb565b61025361023e36600461115d565b60086020526000908152604090205460ff1681565b60405160ff90911681526020016101a8565b6012610253565b6101c461027a3660046110f7565b6104df565b61029261028d3660046110f7565b610501565b005b6102a76102a236600461115d565b610517565b6040516101a8919061117f565b6102076102c236600461115d565b6001600160a01b031660009081526020819052604090205490565b61020760065481565b610292610573565b61020769010f0cf064dd5920000081565b6005546001600160a01b03166101e7565b61019b610587565b6101c46103263660046110f7565b610596565b6101c46103393660046110f7565b610616565b61025361034c36600461115d565b6001600160a01b031660009081526008602052604090205460ff1690565b6101c46103783660046111b9565b600960209081526000928352604080842090915290825290205460ff1681565b6102926103a6366004611121565b610624565b6102076103b93660046111b9565b6106e9565b690cb49b44ba602d800000610207565b6102926103dc36600461115d565b610714565b6060600380546103f0906111ec565b80601f016020809104026020016040519081016040528092919081815260200182805461041c906111ec565b80156104695780601f1061043e57610100808354040283529160200191610469565b820191906000526020600020905b81548152906001019060200180831161044c57829003601f168201915b5050505050905090565b60003361048181858561078d565b60019150505b92915050565b600760205281600052604060002081600581106104a957600080fd5b01546001600160a01b03169150829050565b6000336104c98582856108b1565b6104d4858585610925565b506001949350505050565b6000336104818185856104f283836106e9565b6104fc919061123c565b61078d565b610509610a59565b6105138282610ab3565b5050565b61051f61106f565b6001600160a01b03821660009081526007602052604090819020815160a08101928390529160059082845b81546001600160a01b0316815260019091019060200180831161054a5750505050509050919050565b61057b610a59565b6105856000610b72565b565b6060600480546103f0906111ec565b600033816105a482866106e9565b9050838110156106095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104d4828686840361078d565b600033610481818585610925565b61062c610a59565b6001600160a01b038316610676576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610670573d6000803e3d6000fd5b50505050565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af11580156106c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610670919061124f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61071c610a59565b6001600160a01b0381166107815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610600565b61078a81610b72565b50565b6001600160a01b0383166107ef5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610600565b6001600160a01b0382166108505760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610600565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108bd84846106e9565b9050600019811461067057818110156109185760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610600565b610670848484840361078d565b610930838383610bc4565b6001600160a01b038316158061094d57506001600160a01b038216155b8061096057506001600160a01b03831630145b8061097357506001600160a01b03821630145b1561097d57505050565b60006109938469010f0cf064dd59200000610ab3565b6109a78369010f0cf064dd59200000610ab3565b6109bc69010f0cf064dd592000006002611271565b6109c6908261123c565b90506109d184610d68565b6109db908261123c565b90506109e683610d68565b6109f0908261123c565b90506109fc8484610e18565b610a068385610e18565b826001600160a01b0316846001600160a01b03167f17045e84be16488328628fa5366fdadbc71b3193fc986553ed2740e7491c32d183604051610a4b91815260200190565b60405180910390a350505050565b6005546001600160a01b031633146105855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610600565b6001600160a01b038216610b095760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610600565b8060026000828254610b1b919061123c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610c285760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610600565b6001600160a01b038216610c8a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610600565b6001600160a01b03831660009081526020819052604090205481811015610d025760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610600565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610670565b6001600160a01b03811660009081526008602052604081205460ff16815b8160ff168160ff161015610e11576001600160a01b038416600090815260076020526040812060ff831660058110610dc057610dc0611288565b01546001600160a01b031690508015610dfe57610de78169010f0cf064dd59200000610ab3565b610dfb69010f0cf064dd592000008561123c565b93505b5080610e098161129e565b915050610d86565b5050919050565b806001600160a01b0316826001600160a01b03161480610e3f57506001600160a01b038116155b15610e48575050565b6001600160a01b0380831660009081526009602090815260408083209385168352929052205460ff1615610e7a575050565b6001600160a01b038216600090815260086020526040902054600560ff9091161015610f32576001600160a01b038216600090815260076020908152604080832060089092529091205482919060ff1660058110610eda57610eda611288565b0180546001600160a01b0319166001600160a01b0392831617905582166000908152600860205260408120805460ff1691610f148361129e565b91906101000a81548160ff021916908360ff1602179055505061103b565b60005b610f41600160056112bd565b8160ff161015610fe4576001600160a01b0383166000908152600760205260409020610f6e8260016112d0565b60ff1660058110610f8157610f81611288565b01546001600160a01b03848116600090815260076020526040902091169060ff831660058110610fb357610fb3611288565b0180546001600160a01b0319166001600160a01b039290921691909117905580610fdc8161129e565b915050610f35565b506001600160a01b0382166000908152600760205260409020819061100b600160056112bd565b6005811061101b5761101b611288565b0180546001600160a01b0319166001600160a01b03929092169190911790555b6001600160a01b0391821660009081526009602090815260408083209390941682529190915220805460ff19166001179055565b6040518060a001604052806005906020820280368337509192915050565b600060208083528351808285015260005b818110156110ba5785810183015185820160400152820161109e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110f257600080fd5b919050565b6000806040838503121561110a57600080fd5b611113836110db565b946020939093013593505050565b60008060006060848603121561113657600080fd5b61113f846110db565b925061114d602085016110db565b9150604084013590509250925092565b60006020828403121561116f57600080fd5b611178826110db565b9392505050565b60a08101818360005b60058110156111b05781516001600160a01b0316835260209283019290910190600101611188565b50505092915050565b600080604083850312156111cc57600080fd5b6111d5836110db565b91506111e3602084016110db565b90509250929050565b600181811c9082168061120057607f821691505b60208210810361122057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561048757610487611226565b60006020828403121561126157600080fd5b8151801515811461117857600080fd5b808202811582820484141761048757610487611226565b634e487b7160e01b600052603260045260246000fd5b600060ff821660ff81036112b4576112b4611226565b60010192915050565b8181038181111561048757610487611226565b60ff81811683821601908111156104875761048761122656fea2646970667358221220083b3f97cd3da4fc5a7003345f4a3bdc43e47713557ce4fc53deea3a8182c5a764736f6c63430008130033

部署字节码

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063b1fdb11b11610097578063dd62ed3e11610071578063dd62ed3e146103ab578063e6c00948146103be578063eeb5d941146102ee578063f2fde38b146103ce57600080fd5b8063b1fdb11b1461033e578063bf04d3b31461036a578063ce5067ac1461039857600080fd5b8063715018a6146102e657806380c3e915146102ee5780638da5cb5b146102ff57806395d89b4114610310578063a457c2d714610318578063a9059cbb1461032b57600080fd5b80632e4122d51161014b57806340c10f191161012557806340c10f191461027f578063537872ee1461029457806370a08231146102b457806370f5f07e146102dd57600080fd5b80632e4122d514610230578063313ce56714610265578063395093511461026c57600080fd5b806306fdde0314610193578063095ea7b3146101b1578063097805f3146101d457806313545a02146101ff57806318160ddd1461021557806323b872dd1461021d575b600080fd5b61019b6103e1565b6040516101a8919061108d565b60405180910390f35b6101c46101bf3660046110f7565b610473565b60405190151581526020016101a8565b6101e76101e23660046110f7565b61048d565b6040516001600160a01b0390911681526020016101a8565b610207600581565b6040519081526020016101a8565b600254610207565b6101c461022b366004611121565b6104bb565b61025361023e36600461115d565b60086020526000908152604090205460ff1681565b60405160ff90911681526020016101a8565b6012610253565b6101c461027a3660046110f7565b6104df565b61029261028d3660046110f7565b610501565b005b6102a76102a236600461115d565b610517565b6040516101a8919061117f565b6102076102c236600461115d565b6001600160a01b031660009081526020819052604090205490565b61020760065481565b610292610573565b61020769010f0cf064dd5920000081565b6005546001600160a01b03166101e7565b61019b610587565b6101c46103263660046110f7565b610596565b6101c46103393660046110f7565b610616565b61025361034c36600461115d565b6001600160a01b031660009081526008602052604090205460ff1690565b6101c46103783660046111b9565b600960209081526000928352604080842090915290825290205460ff1681565b6102926103a6366004611121565b610624565b6102076103b93660046111b9565b6106e9565b690cb49b44ba602d800000610207565b6102926103dc36600461115d565b610714565b6060600380546103f0906111ec565b80601f016020809104026020016040519081016040528092919081815260200182805461041c906111ec565b80156104695780601f1061043e57610100808354040283529160200191610469565b820191906000526020600020905b81548152906001019060200180831161044c57829003601f168201915b5050505050905090565b60003361048181858561078d565b60019150505b92915050565b600760205281600052604060002081600581106104a957600080fd5b01546001600160a01b03169150829050565b6000336104c98582856108b1565b6104d4858585610925565b506001949350505050565b6000336104818185856104f283836106e9565b6104fc919061123c565b61078d565b610509610a59565b6105138282610ab3565b5050565b61051f61106f565b6001600160a01b03821660009081526007602052604090819020815160a08101928390529160059082845b81546001600160a01b0316815260019091019060200180831161054a5750505050509050919050565b61057b610a59565b6105856000610b72565b565b6060600480546103f0906111ec565b600033816105a482866106e9565b9050838110156106095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104d4828686840361078d565b600033610481818585610925565b61062c610a59565b6001600160a01b038316610676576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610670573d6000803e3d6000fd5b50505050565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af11580156106c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610670919061124f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61071c610a59565b6001600160a01b0381166107815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610600565b61078a81610b72565b50565b6001600160a01b0383166107ef5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610600565b6001600160a01b0382166108505760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610600565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108bd84846106e9565b9050600019811461067057818110156109185760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610600565b610670848484840361078d565b610930838383610bc4565b6001600160a01b038316158061094d57506001600160a01b038216155b8061096057506001600160a01b03831630145b8061097357506001600160a01b03821630145b1561097d57505050565b60006109938469010f0cf064dd59200000610ab3565b6109a78369010f0cf064dd59200000610ab3565b6109bc69010f0cf064dd592000006002611271565b6109c6908261123c565b90506109d184610d68565b6109db908261123c565b90506109e683610d68565b6109f0908261123c565b90506109fc8484610e18565b610a068385610e18565b826001600160a01b0316846001600160a01b03167f17045e84be16488328628fa5366fdadbc71b3193fc986553ed2740e7491c32d183604051610a4b91815260200190565b60405180910390a350505050565b6005546001600160a01b031633146105855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610600565b6001600160a01b038216610b095760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610600565b8060026000828254610b1b919061123c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610c285760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610600565b6001600160a01b038216610c8a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610600565b6001600160a01b03831660009081526020819052604090205481811015610d025760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610600565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610670565b6001600160a01b03811660009081526008602052604081205460ff16815b8160ff168160ff161015610e11576001600160a01b038416600090815260076020526040812060ff831660058110610dc057610dc0611288565b01546001600160a01b031690508015610dfe57610de78169010f0cf064dd59200000610ab3565b610dfb69010f0cf064dd592000008561123c565b93505b5080610e098161129e565b915050610d86565b5050919050565b806001600160a01b0316826001600160a01b03161480610e3f57506001600160a01b038116155b15610e48575050565b6001600160a01b0380831660009081526009602090815260408083209385168352929052205460ff1615610e7a575050565b6001600160a01b038216600090815260086020526040902054600560ff9091161015610f32576001600160a01b038216600090815260076020908152604080832060089092529091205482919060ff1660058110610eda57610eda611288565b0180546001600160a01b0319166001600160a01b0392831617905582166000908152600860205260408120805460ff1691610f148361129e565b91906101000a81548160ff021916908360ff1602179055505061103b565b60005b610f41600160056112bd565b8160ff161015610fe4576001600160a01b0383166000908152600760205260409020610f6e8260016112d0565b60ff1660058110610f8157610f81611288565b01546001600160a01b03848116600090815260076020526040902091169060ff831660058110610fb357610fb3611288565b0180546001600160a01b0319166001600160a01b039290921691909117905580610fdc8161129e565b915050610f35565b506001600160a01b0382166000908152600760205260409020819061100b600160056112bd565b6005811061101b5761101b611288565b0180546001600160a01b0319166001600160a01b03929092169190911790555b6001600160a01b0391821660009081526009602090815260408083209390941682529190915220805460ff19166001179055565b6040518060a001604052806005906020820280368337509192915050565b600060208083528351808285015260005b818110156110ba5785810183015185820160400152820161109e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110f257600080fd5b919050565b6000806040838503121561110a57600080fd5b611113836110db565b946020939093013593505050565b60008060006060848603121561113657600080fd5b61113f846110db565b925061114d602085016110db565b9150604084013590509250925092565b60006020828403121561116f57600080fd5b611178826110db565b9392505050565b60a08101818360005b60058110156111b05781516001600160a01b0316835260209283019290910190600101611188565b50505092915050565b600080604083850312156111cc57600080fd5b6111d5836110db565b91506111e3602084016110db565b90509250929050565b600181811c9082168061120057607f821691505b60208210810361122057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561048757610487611226565b60006020828403121561126157600080fd5b8151801515811461117857600080fd5b808202811582820484141761048757610487611226565b634e487b7160e01b600052603260045260246000fd5b600060ff821660ff81036112b4576112b4611226565b60010192915050565b8181038181111561048757610487611226565b60ff81811683821601908111156104875761048761122656fea2646970667358221220083b3f97cd3da4fc5a7003345f4a3bdc43e47713557ce4fc53deea3a8182c5a764736f6c63430008130033