ETH Price: $3,334.02 (-1.28%)

Token

GOMINT (GOMINT)
 

Overview

Max Total Supply

0 GOMINT

Holders

23

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
natxwang.eth
Balance
1 GOMINT
0x45b5612ef785a5f01dcf102b300a3f80a4131c5f
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:
GOMINT

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : GOMINT.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

contract GOMINT is Ownable, Pausable, ERC721 {
    using Counters for Counters.Counter;

    uint256 public price;
    uint256 public maxSupply;
    string public baseTokenURI;
    Counters.Counter private tokenId;
    mapping(address => bool) public minters;

    constructor() ERC721("GOMINT", "GOMINT") {
        _pause();
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function togglePause() external onlyOwner  {
        if (paused()) {
            _unpause();
        } else {
            _pause();
        }
    }

    function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function _baseURI() internal view override returns (string memory) {
        return baseTokenURI;
    }

    function mint() external payable whenNotPaused {
        require(msg.value >= price, "Not enough funds");
        require(balanceOf(msg.sender) == 0, "Cannot have more than one");
        require(maxSupply >= tokenId.current() + 1, "Out of supply");

        tokenId.increment();
        minters[msg.sender] = true;
        _safeMint(msg.sender, tokenId.current());
    }

    function teamMint(uint256 _amount) external onlyOwner {
        for (uint256 i; i < _amount; i++) {
            tokenId.increment();
            _safeMint(msg.sender, tokenId.current());
        }
    }

    function withdraw(address _receiver, uint256 _amount) external onlyOwner {
        payable(_receiver).transfer(_amount);
    }
}

File 2 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 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 4 of 13 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @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 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) 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.
     * - `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 tokenId
    ) internal virtual {}
}

File 6 of 13 : 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;
    }
}

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f474f4d494e5400000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f474f4d494e5400000000000000000000000000000000000000000000000000008152506200009e62000092620000f460201b60201c565b620000fc60201b60201c565b60008060146101000a81548160ff0219169083151502179055508160019081620000c991906200051a565b508060029081620000db91906200051a565b505050620000ee620001c060201b60201c565b620006e6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001d06200023560201b60201c565b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200021c620000f460201b60201c565b6040516200022b919062000646565b60405180910390a1565b620002456200028a60201b60201c565b1562000288576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027f90620006c4565b60405180910390fd5b565b60008060149054906101000a900460ff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032257607f821691505b602082108103620003385762000337620002da565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003a27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000363565b620003ae868362000363565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003fb620003f5620003ef84620003c6565b620003d0565b620003c6565b9050919050565b6000819050919050565b6200041783620003da565b6200042f620004268262000402565b84845462000370565b825550505050565b600090565b6200044662000437565b620004538184846200040c565b505050565b5b818110156200047b576200046f6000826200043c565b60018101905062000459565b5050565b601f821115620004ca5762000494816200033e565b6200049f8462000353565b81016020851015620004af578190505b620004c7620004be8562000353565b83018262000458565b50505b505050565b600082821c905092915050565b6000620004ef60001984600802620004cf565b1980831691505092915050565b60006200050a8383620004dc565b9150826002028217905092915050565b6200052582620002a0565b67ffffffffffffffff811115620005415762000540620002ab565b5b6200054d825462000309565b6200055a8282856200047f565b600060209050601f8311600181146200059257600084156200057d578287015190505b620005898582620004fc565b865550620005f9565b601f198416620005a2866200033e565b60005b82811015620005cc57848901518255600182019150602085019450602081019050620005a5565b86831015620005ec5784890151620005e8601f891682620004dc565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200062e8262000601565b9050919050565b620006408162000621565b82525050565b60006020820190506200065d600083018462000635565b92915050565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620006ac60108362000663565b9150620006b98262000674565b602082019050919050565b60006020820190508181036000830152620006df816200069d565b9050919050565b61363580620006f66000396000f3fe6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146105c3578063f2fde38b14610600578063f3fef3a314610629578063f46eccc414610652576101b7565b8063c87b56dd14610530578063d547cfb71461056d578063d5abeb0114610598576101b7565b8063a035b1fe116100c6578063a035b1fe1461049c578063a22cb465146104c7578063b88d4fde146104f0578063c4ae316814610519576101b7565b80638da5cb5b1461041d57806391b7f5ed1461044857806395d89b4114610471576101b7565b806330176e13116101595780636352211e116101335780636352211e146103635780636f8b44b0146103a057806370a08231146103c9578063715018a614610406576101b7565b806330176e13146102e657806342842e0e1461030f5780635c975abb14610338576101b7565b8063095ea7b311610195578063095ea7b3146102615780631249c58b1461028a57806323b872dd146102945780632fbba115146102bd576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612114565b61068f565b6040516101f0919061215c565b60405180910390f35b34801561020557600080fd5b5061020e610771565b60405161021b9190612210565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612268565b610803565b60405161025891906122d6565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061231d565b610849565b005b610292610960565b005b3480156102a057600080fd5b506102bb60048036038101906102b6919061235d565b610ac9565b005b3480156102c957600080fd5b506102e460048036038101906102df9190612268565b610b29565b005b3480156102f257600080fd5b5061030d600480360381019061030891906124e5565b610b70565b005b34801561031b57600080fd5b506103366004803603810190610331919061235d565b610b8b565b005b34801561034457600080fd5b5061034d610bab565b60405161035a919061215c565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190612268565b610bc1565b60405161039791906122d6565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612268565b610c72565b005b3480156103d557600080fd5b506103f060048036038101906103eb919061252e565b610c84565b6040516103fd919061256a565b60405180910390f35b34801561041257600080fd5b5061041b610d3b565b005b34801561042957600080fd5b50610432610d4f565b60405161043f91906122d6565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190612268565b610d78565b005b34801561047d57600080fd5b50610486610d8a565b6040516104939190612210565b60405180910390f35b3480156104a857600080fd5b506104b1610e1c565b6040516104be919061256a565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e991906125b1565b610e22565b005b3480156104fc57600080fd5b5061051760048036038101906105129190612692565b610e38565b005b34801561052557600080fd5b5061052e610e9a565b005b34801561053c57600080fd5b5061055760048036038101906105529190612268565b610ec7565b6040516105649190612210565b60405180910390f35b34801561057957600080fd5b50610582610f2f565b60405161058f9190612210565b60405180910390f35b3480156105a457600080fd5b506105ad610fbd565b6040516105ba919061256a565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190612715565b610fc3565b6040516105f7919061215c565b60405180910390f35b34801561060c57600080fd5b506106276004803603810190610622919061252e565b611057565b005b34801561063557600080fd5b50610650600480360381019061064b919061231d565b6110da565b005b34801561065e57600080fd5b506106796004803603810190610674919061252e565b61112d565b604051610686919061215c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076a57506107698261114d565b5b9050919050565b60606001805461078090612784565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90612784565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b600061080e826111b7565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085482610bc1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb90612827565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e3611202565b73ffffffffffffffffffffffffffffffffffffffff16148061091257506109118161090c611202565b610fc3565b5b610951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610948906128b9565b60405180910390fd5b61095b838361120a565b505050565b6109686112c3565b6007543410156109ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a490612925565b60405180910390fd5b60006109b833610c84565b146109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef90612991565b60405180910390fd5b6001610a04600a61130d565b610a0e91906129e0565b6008541015610a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4990612a82565b60405180910390fd5b610a5c600a61131b565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ac733610ac2600a61130d565b611331565b565b610ada610ad4611202565b8261134f565b610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1090612b14565b60405180910390fd5b610b248383836113e4565b505050565b610b3161164a565b60005b81811015610b6c57610b46600a61131b565b610b5933610b54600a61130d565b611331565b8080610b6490612b34565b915050610b34565b5050565b610b7861164a565b8060099081610b879190612d28565b5050565b610ba683838360405180602001604052806000815250610e38565b505050565b60008060149054906101000a900460ff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090612e46565b60405180910390fd5b80915050919050565b610c7a61164a565b8060088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90612ed8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d4361164a565b610d4d60006116c8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d8061164a565b8060078190555050565b606060028054610d9990612784565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc590612784565b8015610e125780601f10610de757610100808354040283529160200191610e12565b820191906000526020600020905b815481529060010190602001808311610df557829003601f168201915b5050505050905090565b60075481565b610e34610e2d611202565b838361178c565b5050565b610e49610e43611202565b8361134f565b610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90612b14565b60405180910390fd5b610e94848484846118f8565b50505050565b610ea261164a565b610eaa610bab565b15610ebc57610eb7611954565b610ec5565b610ec46119b6565b5b565b6060610ed2826111b7565b6000610edc611a19565b90506000815111610efc5760405180602001604052806000815250610f27565b80610f0684611aab565b604051602001610f17929190612f34565b6040516020818303038152906040525b915050919050565b60098054610f3c90612784565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6890612784565b8015610fb55780601f10610f8a57610100808354040283529160200191610fb5565b820191906000526020600020905b815481529060010190602001808311610f9857829003601f168201915b505050505081565b60085481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61105f61164a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c590612fca565b60405180910390fd5b6110d7816116c8565b50565b6110e261164a565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611128573d6000803e3d6000fd5b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6111c081611c0b565b6111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690612e46565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661127d83610bc1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6112cb610bab565b1561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613036565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b61134b828260405180602001604052806000815250611c77565b5050565b60008061135b83610bc1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061139d575061139c8185610fc3565b5b806113db57508373ffffffffffffffffffffffffffffffffffffffff166113c384610803565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661140482610bc1565b73ffffffffffffffffffffffffffffffffffffffff161461145a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611451906130c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c09061315a565b60405180910390fd5b6114d4838383611cd2565b6114df60008261120a565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461152f919061317a565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158691906129e0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611645838383611cd7565b505050565b611652611202565b73ffffffffffffffffffffffffffffffffffffffff16611670610d4f565b73ffffffffffffffffffffffffffffffffffffffff16146116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd906131fa565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190613266565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118eb919061215c565b60405180910390a3505050565b6119038484846113e4565b61190f84848484611cdc565b61194e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611945906132f8565b60405180910390fd5b50505050565b61195c611e63565b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61199f611202565b6040516119ac91906122d6565b60405180910390a1565b6119be6112c3565b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a02611202565b604051611a0f91906122d6565b60405180910390a1565b606060098054611a2890612784565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5490612784565b8015611aa15780601f10611a7657610100808354040283529160200191611aa1565b820191906000526020600020905b815481529060010190602001808311611a8457829003601f168201915b5050505050905090565b606060008203611af2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c06565b600082905060005b60008214611b24578080611b0d90612b34565b915050600a82611b1d9190613347565b9150611afa565b60008167ffffffffffffffff811115611b4057611b3f6123ba565b5b6040519080825280601f01601f191660200182016040528015611b725781602001600182028036833780820191505090505b5090505b60008514611bff57600182611b8b919061317a565b9150600a85611b9a9190613378565b6030611ba691906129e0565b60f81b818381518110611bbc57611bbb6133a9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611bf89190613347565b9450611b76565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611c818383611eac565b611c8e6000848484611cdc565b611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc4906132f8565b60405180910390fd5b505050565b505050565b505050565b6000611cfd8473ffffffffffffffffffffffffffffffffffffffff16612085565b15611e56578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d26611202565b8786866040518563ffffffff1660e01b8152600401611d48949392919061342d565b6020604051808303816000875af1925050508015611d8457506040513d601f19601f82011682018060405250810190611d81919061348e565b60015b611e06573d8060008114611db4576040519150601f19603f3d011682016040523d82523d6000602084013e611db9565b606091505b506000815103611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df5906132f8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e5b565b600190505b949350505050565b611e6b610bab565b611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190613507565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1290613573565b60405180910390fd5b611f2481611c0b565b15611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b906135df565b60405180910390fd5b611f7060008383611cd2565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fc091906129e0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461208160008383611cd7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120f1816120bc565b81146120fc57600080fd5b50565b60008135905061210e816120e8565b92915050565b60006020828403121561212a576121296120b2565b5b6000612138848285016120ff565b91505092915050565b60008115159050919050565b61215681612141565b82525050565b6000602082019050612171600083018461214d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121b1578082015181840152602081019050612196565b838111156121c0576000848401525b50505050565b6000601f19601f8301169050919050565b60006121e282612177565b6121ec8185612182565b93506121fc818560208601612193565b612205816121c6565b840191505092915050565b6000602082019050818103600083015261222a81846121d7565b905092915050565b6000819050919050565b61224581612232565b811461225057600080fd5b50565b6000813590506122628161223c565b92915050565b60006020828403121561227e5761227d6120b2565b5b600061228c84828501612253565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122c082612295565b9050919050565b6122d0816122b5565b82525050565b60006020820190506122eb60008301846122c7565b92915050565b6122fa816122b5565b811461230557600080fd5b50565b600081359050612317816122f1565b92915050565b60008060408385031215612334576123336120b2565b5b600061234285828601612308565b925050602061235385828601612253565b9150509250929050565b600080600060608486031215612376576123756120b2565b5b600061238486828701612308565b935050602061239586828701612308565b92505060406123a686828701612253565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6123f2826121c6565b810181811067ffffffffffffffff82111715612411576124106123ba565b5b80604052505050565b60006124246120a8565b905061243082826123e9565b919050565b600067ffffffffffffffff8211156124505761244f6123ba565b5b612459826121c6565b9050602081019050919050565b82818337600083830152505050565b600061248861248384612435565b61241a565b9050828152602081018484840111156124a4576124a36123b5565b5b6124af848285612466565b509392505050565b600082601f8301126124cc576124cb6123b0565b5b81356124dc848260208601612475565b91505092915050565b6000602082840312156124fb576124fa6120b2565b5b600082013567ffffffffffffffff811115612519576125186120b7565b5b612525848285016124b7565b91505092915050565b600060208284031215612544576125436120b2565b5b600061255284828501612308565b91505092915050565b61256481612232565b82525050565b600060208201905061257f600083018461255b565b92915050565b61258e81612141565b811461259957600080fd5b50565b6000813590506125ab81612585565b92915050565b600080604083850312156125c8576125c76120b2565b5b60006125d685828601612308565b92505060206125e78582860161259c565b9150509250929050565b600067ffffffffffffffff82111561260c5761260b6123ba565b5b612615826121c6565b9050602081019050919050565b6000612635612630846125f1565b61241a565b905082815260208101848484011115612651576126506123b5565b5b61265c848285612466565b509392505050565b600082601f830112612679576126786123b0565b5b8135612689848260208601612622565b91505092915050565b600080600080608085870312156126ac576126ab6120b2565b5b60006126ba87828801612308565b94505060206126cb87828801612308565b93505060406126dc87828801612253565b925050606085013567ffffffffffffffff8111156126fd576126fc6120b7565b5b61270987828801612664565b91505092959194509250565b6000806040838503121561272c5761272b6120b2565b5b600061273a85828601612308565b925050602061274b85828601612308565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061279c57607f821691505b6020821081036127af576127ae612755565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612811602183612182565b915061281c826127b5565b604082019050919050565b6000602082019050818103600083015261284081612804565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006128a3603e83612182565b91506128ae82612847565b604082019050919050565b600060208201905081810360008301526128d281612896565b9050919050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b600061290f601083612182565b915061291a826128d9565b602082019050919050565b6000602082019050818103600083015261293e81612902565b9050919050565b7f43616e6e6f742068617665206d6f7265207468616e206f6e6500000000000000600082015250565b600061297b601983612182565b915061298682612945565b602082019050919050565b600060208201905081810360008301526129aa8161296e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129eb82612232565b91506129f683612232565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a2b57612a2a6129b1565b5b828201905092915050565b7f4f7574206f6620737570706c7900000000000000000000000000000000000000600082015250565b6000612a6c600d83612182565b9150612a7782612a36565b602082019050919050565b60006020820190508181036000830152612a9b81612a5f565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612afe602e83612182565b9150612b0982612aa2565b604082019050919050565b60006020820190508181036000830152612b2d81612af1565b9050919050565b6000612b3f82612232565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b7157612b706129b1565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612bde7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612ba1565b612be88683612ba1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c25612c20612c1b84612232565b612c00565b612232565b9050919050565b6000819050919050565b612c3f83612c0a565b612c53612c4b82612c2c565b848454612bae565b825550505050565b600090565b612c68612c5b565b612c73818484612c36565b505050565b5b81811015612c9757612c8c600082612c60565b600181019050612c79565b5050565b601f821115612cdc57612cad81612b7c565b612cb684612b91565b81016020851015612cc5578190505b612cd9612cd185612b91565b830182612c78565b50505b505050565b600082821c905092915050565b6000612cff60001984600802612ce1565b1980831691505092915050565b6000612d188383612cee565b9150826002028217905092915050565b612d3182612177565b67ffffffffffffffff811115612d4a57612d496123ba565b5b612d548254612784565b612d5f828285612c9b565b600060209050601f831160018114612d925760008415612d80578287015190505b612d8a8582612d0c565b865550612df2565b601f198416612da086612b7c565b60005b82811015612dc857848901518255600182019150602085019450602081019050612da3565b86831015612de55784890151612de1601f891682612cee565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612e30601883612182565b9150612e3b82612dfa565b602082019050919050565b60006020820190508181036000830152612e5f81612e23565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612ec2602983612182565b9150612ecd82612e66565b604082019050919050565b60006020820190508181036000830152612ef181612eb5565b9050919050565b600081905092915050565b6000612f0e82612177565b612f188185612ef8565b9350612f28818560208601612193565b80840191505092915050565b6000612f408285612f03565b9150612f4c8284612f03565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fb4602683612182565b9150612fbf82612f58565b604082019050919050565b60006020820190508181036000830152612fe381612fa7565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613020601083612182565b915061302b82612fea565b602082019050919050565b6000602082019050818103600083015261304f81613013565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006130b2602583612182565b91506130bd82613056565b604082019050919050565b600060208201905081810360008301526130e1816130a5565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613144602483612182565b915061314f826130e8565b604082019050919050565b6000602082019050818103600083015261317381613137565b9050919050565b600061318582612232565b915061319083612232565b9250828210156131a3576131a26129b1565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131e4602083612182565b91506131ef826131ae565b602082019050919050565b60006020820190508181036000830152613213816131d7565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613250601983612182565b915061325b8261321a565b602082019050919050565b6000602082019050818103600083015261327f81613243565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006132e2603283612182565b91506132ed82613286565b604082019050919050565b60006020820190508181036000830152613311816132d5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061335282612232565b915061335d83612232565b92508261336d5761336c613318565b5b828204905092915050565b600061338382612232565b915061338e83612232565b92508261339e5761339d613318565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006133ff826133d8565b61340981856133e3565b9350613419818560208601612193565b613422816121c6565b840191505092915050565b600060808201905061344260008301876122c7565b61344f60208301866122c7565b61345c604083018561255b565b818103606083015261346e81846133f4565b905095945050505050565b600081519050613488816120e8565b92915050565b6000602082840312156134a4576134a36120b2565b5b60006134b284828501613479565b91505092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006134f1601483612182565b91506134fc826134bb565b602082019050919050565b60006020820190508181036000830152613520816134e4565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061355d602083612182565b915061356882613527565b602082019050919050565b6000602082019050818103600083015261358c81613550565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006135c9601c83612182565b91506135d482613593565b602082019050919050565b600060208201905081810360008301526135f8816135bc565b905091905056fea2646970667358221220b35869f99e8c543acb83eecf7091a6326a2355e811828fb71c2c033abf1bfbbf64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146105c3578063f2fde38b14610600578063f3fef3a314610629578063f46eccc414610652576101b7565b8063c87b56dd14610530578063d547cfb71461056d578063d5abeb0114610598576101b7565b8063a035b1fe116100c6578063a035b1fe1461049c578063a22cb465146104c7578063b88d4fde146104f0578063c4ae316814610519576101b7565b80638da5cb5b1461041d57806391b7f5ed1461044857806395d89b4114610471576101b7565b806330176e13116101595780636352211e116101335780636352211e146103635780636f8b44b0146103a057806370a08231146103c9578063715018a614610406576101b7565b806330176e13146102e657806342842e0e1461030f5780635c975abb14610338576101b7565b8063095ea7b311610195578063095ea7b3146102615780631249c58b1461028a57806323b872dd146102945780632fbba115146102bd576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612114565b61068f565b6040516101f0919061215c565b60405180910390f35b34801561020557600080fd5b5061020e610771565b60405161021b9190612210565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612268565b610803565b60405161025891906122d6565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061231d565b610849565b005b610292610960565b005b3480156102a057600080fd5b506102bb60048036038101906102b6919061235d565b610ac9565b005b3480156102c957600080fd5b506102e460048036038101906102df9190612268565b610b29565b005b3480156102f257600080fd5b5061030d600480360381019061030891906124e5565b610b70565b005b34801561031b57600080fd5b506103366004803603810190610331919061235d565b610b8b565b005b34801561034457600080fd5b5061034d610bab565b60405161035a919061215c565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190612268565b610bc1565b60405161039791906122d6565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612268565b610c72565b005b3480156103d557600080fd5b506103f060048036038101906103eb919061252e565b610c84565b6040516103fd919061256a565b60405180910390f35b34801561041257600080fd5b5061041b610d3b565b005b34801561042957600080fd5b50610432610d4f565b60405161043f91906122d6565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190612268565b610d78565b005b34801561047d57600080fd5b50610486610d8a565b6040516104939190612210565b60405180910390f35b3480156104a857600080fd5b506104b1610e1c565b6040516104be919061256a565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e991906125b1565b610e22565b005b3480156104fc57600080fd5b5061051760048036038101906105129190612692565b610e38565b005b34801561052557600080fd5b5061052e610e9a565b005b34801561053c57600080fd5b5061055760048036038101906105529190612268565b610ec7565b6040516105649190612210565b60405180910390f35b34801561057957600080fd5b50610582610f2f565b60405161058f9190612210565b60405180910390f35b3480156105a457600080fd5b506105ad610fbd565b6040516105ba919061256a565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190612715565b610fc3565b6040516105f7919061215c565b60405180910390f35b34801561060c57600080fd5b506106276004803603810190610622919061252e565b611057565b005b34801561063557600080fd5b50610650600480360381019061064b919061231d565b6110da565b005b34801561065e57600080fd5b506106796004803603810190610674919061252e565b61112d565b604051610686919061215c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061076a57506107698261114d565b5b9050919050565b60606001805461078090612784565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90612784565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b600061080e826111b7565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085482610bc1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb90612827565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e3611202565b73ffffffffffffffffffffffffffffffffffffffff16148061091257506109118161090c611202565b610fc3565b5b610951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610948906128b9565b60405180910390fd5b61095b838361120a565b505050565b6109686112c3565b6007543410156109ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a490612925565b60405180910390fd5b60006109b833610c84565b146109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef90612991565b60405180910390fd5b6001610a04600a61130d565b610a0e91906129e0565b6008541015610a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4990612a82565b60405180910390fd5b610a5c600a61131b565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ac733610ac2600a61130d565b611331565b565b610ada610ad4611202565b8261134f565b610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1090612b14565b60405180910390fd5b610b248383836113e4565b505050565b610b3161164a565b60005b81811015610b6c57610b46600a61131b565b610b5933610b54600a61130d565b611331565b8080610b6490612b34565b915050610b34565b5050565b610b7861164a565b8060099081610b879190612d28565b5050565b610ba683838360405180602001604052806000815250610e38565b505050565b60008060149054906101000a900460ff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090612e46565b60405180910390fd5b80915050919050565b610c7a61164a565b8060088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90612ed8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d4361164a565b610d4d60006116c8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d8061164a565b8060078190555050565b606060028054610d9990612784565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc590612784565b8015610e125780601f10610de757610100808354040283529160200191610e12565b820191906000526020600020905b815481529060010190602001808311610df557829003601f168201915b5050505050905090565b60075481565b610e34610e2d611202565b838361178c565b5050565b610e49610e43611202565b8361134f565b610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90612b14565b60405180910390fd5b610e94848484846118f8565b50505050565b610ea261164a565b610eaa610bab565b15610ebc57610eb7611954565b610ec5565b610ec46119b6565b5b565b6060610ed2826111b7565b6000610edc611a19565b90506000815111610efc5760405180602001604052806000815250610f27565b80610f0684611aab565b604051602001610f17929190612f34565b6040516020818303038152906040525b915050919050565b60098054610f3c90612784565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6890612784565b8015610fb55780601f10610f8a57610100808354040283529160200191610fb5565b820191906000526020600020905b815481529060010190602001808311610f9857829003601f168201915b505050505081565b60085481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61105f61164a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c590612fca565b60405180910390fd5b6110d7816116c8565b50565b6110e261164a565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611128573d6000803e3d6000fd5b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6111c081611c0b565b6111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690612e46565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661127d83610bc1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6112cb610bab565b1561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613036565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b61134b828260405180602001604052806000815250611c77565b5050565b60008061135b83610bc1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061139d575061139c8185610fc3565b5b806113db57508373ffffffffffffffffffffffffffffffffffffffff166113c384610803565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661140482610bc1565b73ffffffffffffffffffffffffffffffffffffffff161461145a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611451906130c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c09061315a565b60405180910390fd5b6114d4838383611cd2565b6114df60008261120a565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461152f919061317a565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158691906129e0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611645838383611cd7565b505050565b611652611202565b73ffffffffffffffffffffffffffffffffffffffff16611670610d4f565b73ffffffffffffffffffffffffffffffffffffffff16146116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd906131fa565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190613266565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118eb919061215c565b60405180910390a3505050565b6119038484846113e4565b61190f84848484611cdc565b61194e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611945906132f8565b60405180910390fd5b50505050565b61195c611e63565b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61199f611202565b6040516119ac91906122d6565b60405180910390a1565b6119be6112c3565b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a02611202565b604051611a0f91906122d6565b60405180910390a1565b606060098054611a2890612784565b80601f0160208091040260200160405190810160405280929190818152602001828054611a5490612784565b8015611aa15780601f10611a7657610100808354040283529160200191611aa1565b820191906000526020600020905b815481529060010190602001808311611a8457829003601f168201915b5050505050905090565b606060008203611af2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c06565b600082905060005b60008214611b24578080611b0d90612b34565b915050600a82611b1d9190613347565b9150611afa565b60008167ffffffffffffffff811115611b4057611b3f6123ba565b5b6040519080825280601f01601f191660200182016040528015611b725781602001600182028036833780820191505090505b5090505b60008514611bff57600182611b8b919061317a565b9150600a85611b9a9190613378565b6030611ba691906129e0565b60f81b818381518110611bbc57611bbb6133a9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611bf89190613347565b9450611b76565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611c818383611eac565b611c8e6000848484611cdc565b611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc4906132f8565b60405180910390fd5b505050565b505050565b505050565b6000611cfd8473ffffffffffffffffffffffffffffffffffffffff16612085565b15611e56578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d26611202565b8786866040518563ffffffff1660e01b8152600401611d48949392919061342d565b6020604051808303816000875af1925050508015611d8457506040513d601f19601f82011682018060405250810190611d81919061348e565b60015b611e06573d8060008114611db4576040519150601f19603f3d011682016040523d82523d6000602084013e611db9565b606091505b506000815103611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df5906132f8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e5b565b600190505b949350505050565b611e6b610bab565b611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea190613507565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1290613573565b60405180910390fd5b611f2481611c0b565b15611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b906135df565b60405180910390fd5b611f7060008383611cd2565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fc091906129e0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461208160008383611cd7565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120f1816120bc565b81146120fc57600080fd5b50565b60008135905061210e816120e8565b92915050565b60006020828403121561212a576121296120b2565b5b6000612138848285016120ff565b91505092915050565b60008115159050919050565b61215681612141565b82525050565b6000602082019050612171600083018461214d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121b1578082015181840152602081019050612196565b838111156121c0576000848401525b50505050565b6000601f19601f8301169050919050565b60006121e282612177565b6121ec8185612182565b93506121fc818560208601612193565b612205816121c6565b840191505092915050565b6000602082019050818103600083015261222a81846121d7565b905092915050565b6000819050919050565b61224581612232565b811461225057600080fd5b50565b6000813590506122628161223c565b92915050565b60006020828403121561227e5761227d6120b2565b5b600061228c84828501612253565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122c082612295565b9050919050565b6122d0816122b5565b82525050565b60006020820190506122eb60008301846122c7565b92915050565b6122fa816122b5565b811461230557600080fd5b50565b600081359050612317816122f1565b92915050565b60008060408385031215612334576123336120b2565b5b600061234285828601612308565b925050602061235385828601612253565b9150509250929050565b600080600060608486031215612376576123756120b2565b5b600061238486828701612308565b935050602061239586828701612308565b92505060406123a686828701612253565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6123f2826121c6565b810181811067ffffffffffffffff82111715612411576124106123ba565b5b80604052505050565b60006124246120a8565b905061243082826123e9565b919050565b600067ffffffffffffffff8211156124505761244f6123ba565b5b612459826121c6565b9050602081019050919050565b82818337600083830152505050565b600061248861248384612435565b61241a565b9050828152602081018484840111156124a4576124a36123b5565b5b6124af848285612466565b509392505050565b600082601f8301126124cc576124cb6123b0565b5b81356124dc848260208601612475565b91505092915050565b6000602082840312156124fb576124fa6120b2565b5b600082013567ffffffffffffffff811115612519576125186120b7565b5b612525848285016124b7565b91505092915050565b600060208284031215612544576125436120b2565b5b600061255284828501612308565b91505092915050565b61256481612232565b82525050565b600060208201905061257f600083018461255b565b92915050565b61258e81612141565b811461259957600080fd5b50565b6000813590506125ab81612585565b92915050565b600080604083850312156125c8576125c76120b2565b5b60006125d685828601612308565b92505060206125e78582860161259c565b9150509250929050565b600067ffffffffffffffff82111561260c5761260b6123ba565b5b612615826121c6565b9050602081019050919050565b6000612635612630846125f1565b61241a565b905082815260208101848484011115612651576126506123b5565b5b61265c848285612466565b509392505050565b600082601f830112612679576126786123b0565b5b8135612689848260208601612622565b91505092915050565b600080600080608085870312156126ac576126ab6120b2565b5b60006126ba87828801612308565b94505060206126cb87828801612308565b93505060406126dc87828801612253565b925050606085013567ffffffffffffffff8111156126fd576126fc6120b7565b5b61270987828801612664565b91505092959194509250565b6000806040838503121561272c5761272b6120b2565b5b600061273a85828601612308565b925050602061274b85828601612308565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061279c57607f821691505b6020821081036127af576127ae612755565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612811602183612182565b915061281c826127b5565b604082019050919050565b6000602082019050818103600083015261284081612804565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006128a3603e83612182565b91506128ae82612847565b604082019050919050565b600060208201905081810360008301526128d281612896565b9050919050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b600061290f601083612182565b915061291a826128d9565b602082019050919050565b6000602082019050818103600083015261293e81612902565b9050919050565b7f43616e6e6f742068617665206d6f7265207468616e206f6e6500000000000000600082015250565b600061297b601983612182565b915061298682612945565b602082019050919050565b600060208201905081810360008301526129aa8161296e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129eb82612232565b91506129f683612232565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a2b57612a2a6129b1565b5b828201905092915050565b7f4f7574206f6620737570706c7900000000000000000000000000000000000000600082015250565b6000612a6c600d83612182565b9150612a7782612a36565b602082019050919050565b60006020820190508181036000830152612a9b81612a5f565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612afe602e83612182565b9150612b0982612aa2565b604082019050919050565b60006020820190508181036000830152612b2d81612af1565b9050919050565b6000612b3f82612232565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b7157612b706129b1565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612bde7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612ba1565b612be88683612ba1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c25612c20612c1b84612232565b612c00565b612232565b9050919050565b6000819050919050565b612c3f83612c0a565b612c53612c4b82612c2c565b848454612bae565b825550505050565b600090565b612c68612c5b565b612c73818484612c36565b505050565b5b81811015612c9757612c8c600082612c60565b600181019050612c79565b5050565b601f821115612cdc57612cad81612b7c565b612cb684612b91565b81016020851015612cc5578190505b612cd9612cd185612b91565b830182612c78565b50505b505050565b600082821c905092915050565b6000612cff60001984600802612ce1565b1980831691505092915050565b6000612d188383612cee565b9150826002028217905092915050565b612d3182612177565b67ffffffffffffffff811115612d4a57612d496123ba565b5b612d548254612784565b612d5f828285612c9b565b600060209050601f831160018114612d925760008415612d80578287015190505b612d8a8582612d0c565b865550612df2565b601f198416612da086612b7c565b60005b82811015612dc857848901518255600182019150602085019450602081019050612da3565b86831015612de55784890151612de1601f891682612cee565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612e30601883612182565b9150612e3b82612dfa565b602082019050919050565b60006020820190508181036000830152612e5f81612e23565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612ec2602983612182565b9150612ecd82612e66565b604082019050919050565b60006020820190508181036000830152612ef181612eb5565b9050919050565b600081905092915050565b6000612f0e82612177565b612f188185612ef8565b9350612f28818560208601612193565b80840191505092915050565b6000612f408285612f03565b9150612f4c8284612f03565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fb4602683612182565b9150612fbf82612f58565b604082019050919050565b60006020820190508181036000830152612fe381612fa7565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613020601083612182565b915061302b82612fea565b602082019050919050565b6000602082019050818103600083015261304f81613013565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006130b2602583612182565b91506130bd82613056565b604082019050919050565b600060208201905081810360008301526130e1816130a5565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613144602483612182565b915061314f826130e8565b604082019050919050565b6000602082019050818103600083015261317381613137565b9050919050565b600061318582612232565b915061319083612232565b9250828210156131a3576131a26129b1565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131e4602083612182565b91506131ef826131ae565b602082019050919050565b60006020820190508181036000830152613213816131d7565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613250601983612182565b915061325b8261321a565b602082019050919050565b6000602082019050818103600083015261327f81613243565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006132e2603283612182565b91506132ed82613286565b604082019050919050565b60006020820190508181036000830152613311816132d5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061335282612232565b915061335d83612232565b92508261336d5761336c613318565b5b828204905092915050565b600061338382612232565b915061338e83612232565b92508261339e5761339d613318565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006133ff826133d8565b61340981856133e3565b9350613419818560208601612193565b613422816121c6565b840191505092915050565b600060808201905061344260008301876122c7565b61344f60208301866122c7565b61345c604083018561255b565b818103606083015261346e81846133f4565b905095945050505050565b600081519050613488816120e8565b92915050565b6000602082840312156134a4576134a36120b2565b5b60006134b284828501613479565b91505092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006134f1601483612182565b91506134fc826134bb565b602082019050919050565b60006020820190508181036000830152613520816134e4565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061355d602083612182565b915061356882613527565b602082019050919050565b6000602082019050818103600083015261358c81613550565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006135c9601c83612182565b91506135d482613593565b602082019050919050565b600060208201905081810360008301526135f8816135bc565b905091905056fea2646970667358221220b35869f99e8c543acb83eecf7091a6326a2355e811828fb71c2c033abf1bfbbf64736f6c634300080f0033

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.