ETH Price: $3,342.82 (-0.72%)
Gas: 5 Gwei

Token

PixChars (PXC)
 

Overview

Max Total Supply

222 PXC

Holders

221

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PXC
0x904b51bb63581043e498d8637b6c28738b89bfa4
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:
NFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : NFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

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

    Counters.Counter private _tokenIdCounter;

    uint256 public MAX_SUPPLY;
    uint256 public MAX_MINT_PER_WALLET;
    bool public isPublicMitEnabled;
    string internal baseTokenUri;

    constructor() payable ERC721("PixChars", "PXC") {
        MAX_SUPPLY = 222;
        MAX_MINT_PER_WALLET = 1;
        _tokenIdCounter.increment();
    }

    function setIsPublicMintEnabled(bool _isPublicMitEnabled) external onlyOwner {
        isPublicMitEnabled = _isPublicMitEnabled;
    }

    function setBaseTokenUri(string calldata _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), 'Token does not exist!');
        return string(abi.encodePacked(baseTokenUri, Strings.toString(_tokenId),'.json'));
    }

    function totalSupply() external  view returns (uint256) {
      return MAX_SUPPLY;
    }

    function freeMint() public payable {
        require(isPublicMitEnabled, 'Minting is not enabled');
        require(balanceOf(msg.sender) < MAX_MINT_PER_WALLET, "Max Mint per wallet reached");
        require(_tokenIdCounter.current() <= MAX_SUPPLY , "I'm sorry we reached the cap");

        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenId);
    }
}

File 2 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 3 of 13 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 4 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 5 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 6 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 7 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 8 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 9 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 10 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 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":"payable","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":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"},{"inputs":[],"name":"MAX_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"freeMint","outputs":[],"stateMutability":"payable","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":"isPublicMitEnabled","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":"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":"bool","name":"_isPublicMitEnabled","type":"bool"}],"name":"setIsPublicMintEnabled","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040526040518060400160405280600881526020017f50697843686172730000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5058430000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000088929190620001d5565b508060019080519060200190620000a1929190620001d5565b505050620000c4620000b8620000f160201b60201c565b620000f960201b60201c565b60de6008819055506001600981905550620000eb6007620001bf60201b62000e5b1760201c565b620002ea565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b828054620001e390620002b4565b90600052602060002090601f01602090048101928262000207576000855562000253565b82601f106200022257805160ff191683800117855562000253565b8280016001018555821562000253579182015b828111156200025257825182559160200191906001019062000235565b5b50905062000262919062000266565b5090565b5b808211156200028157600081600090555060010162000267565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002cd57607f821691505b60208210811415620002e457620002e362000285565b5b50919050565b61300580620002fa6000396000f3fe6080604052600436106101405760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb46514610429578063b19960e614610452578063b88d4fde1461047d578063c87b56dd146104a6578063e985e9c5146104e3578063f2fde38b1461052057610140565b80636352211e1461031957806370a0823114610356578063715018a6146103935780638da5cb5b146103aa57806395652cfa146103d557806395d89b41146103fe57610140565b806318160ddd1161010857806318160ddd1461023e5780632373ac221461026957806323b872dd1461029257806332cb6b0c146102bb57806342842e0e146102e65780635b70ea9f1461030f57610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea5780630f98426d14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190611cf1565b610549565b6040516101799190611d39565b60405180910390f35b34801561018e57600080fd5b5061019761062b565b6040516101a49190611ded565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190611e45565b6106bd565b6040516101e19190611eb3565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190611efa565b610703565b005b34801561021f57600080fd5b5061022861081b565b6040516102359190611d39565b60405180910390f35b34801561024a57600080fd5b5061025361082e565b6040516102609190611f49565b60405180910390f35b34801561027557600080fd5b50610290600480360381019061028b9190611f90565b610838565b005b34801561029e57600080fd5b506102b960048036038101906102b49190611fbd565b61085d565b005b3480156102c757600080fd5b506102d06108bd565b6040516102dd9190611f49565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190611fbd565b6108c3565b005b6103176108e3565b005b34801561032557600080fd5b50610340600480360381019061033b9190611e45565b6109f1565b60405161034d9190611eb3565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190612010565b610aa3565b60405161038a9190611f49565b60405180910390f35b34801561039f57600080fd5b506103a8610b5b565b005b3480156103b657600080fd5b506103bf610b6f565b6040516103cc9190611eb3565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f791906120a2565b610b99565b005b34801561040a57600080fd5b50610413610bb7565b6040516104209190611ded565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b91906120ef565b610c49565b005b34801561045e57600080fd5b50610467610c5f565b6040516104749190611f49565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f919061225f565b610c65565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190611e45565b610cc7565b6040516104da9190611ded565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906122e2565b610d43565b6040516105179190611d39565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190612010565b610dd7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610624575061062382610e71565b5b9050919050565b60606000805461063a90612351565b80601f016020809104026020016040519081016040528092919081815260200182805461066690612351565b80156106b35780601f10610688576101008083540402835291602001916106b3565b820191906000526020600020905b81548152906001019060200180831161069657829003601f168201915b5050505050905090565b60006106c882610edb565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070e826109f1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561077f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610776906123f5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661079e610f26565b73ffffffffffffffffffffffffffffffffffffffff1614806107cd57506107cc816107c7610f26565b610d43565b5b61080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390612487565b60405180910390fd5b6108168383610f2e565b505050565b600a60009054906101000a900460ff1681565b6000600854905090565b610840610fe7565b80600a60006101000a81548160ff02191690831515021790555050565b61086e610868610f26565b82611065565b6108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a490612519565b60405180910390fd5b6108b88383836110fa565b505050565b60085481565b6108de83838360405180602001604052806000815250610c65565b505050565b600a60009054906101000a900460ff16610932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092990612585565b60405180910390fd5b60095461093e33610aa3565b1061097e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610975906125f1565b60405180910390fd5b60085461098b6007611361565b11156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c39061265d565b60405180910390fd5b60006109d86007611361565b90506109e46007610e5b565b6109ee338261136f565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a91906126c9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b9061275b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b63610fe7565b610b6d600061138d565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ba1610fe7565b8181600b9190610bb2929190611be2565b505050565b606060018054610bc690612351565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf290612351565b8015610c3f5780601f10610c1457610100808354040283529160200191610c3f565b820191906000526020600020905b815481529060010190602001808311610c2257829003601f168201915b5050505050905090565b610c5b610c54610f26565b8383611453565b5050565b60095481565b610c76610c70610f26565b83611065565b610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90612519565b60405180910390fd5b610cc1848484846115c0565b50505050565b6060610cd28261161c565b610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d08906127c7565b60405180910390fd5b600b610d1c83611688565b604051602001610d2d929190612903565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ddf610fe7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e46906129a4565b60405180910390fd5b610e588161138d565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610ee48161161c565b610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a906126c9565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610fa1836109f1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610fef610f26565b73ffffffffffffffffffffffffffffffffffffffff1661100d610b6f565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90612a10565b60405180910390fd5b565b600080611071836109f1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806110b357506110b28185610d43565b5b806110f157508373ffffffffffffffffffffffffffffffffffffffff166110d9846106bd565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661111a826109f1565b73ffffffffffffffffffffffffffffffffffffffff1614611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790612aa2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790612b34565b60405180910390fd5b6111eb8383836117e9565b6111f6600082610f2e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112469190612b83565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461129d9190612bb7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461135c8383836117ee565b505050565b600081600001549050919050565b6113898282604051806020016040528060008152506117f3565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990612c59565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b39190611d39565b60405180910390a3505050565b6115cb8484846110fa565b6115d78484848461184e565b611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d90612ceb565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060008214156116d0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506117e4565b600082905060005b600082146117025780806116eb90612d0b565b915050600a826116fb9190612d83565b91506116d8565b60008167ffffffffffffffff81111561171e5761171d612134565b5b6040519080825280601f01601f1916602001820160405280156117505781602001600182028036833780820191505090505b5090505b600085146117dd576001826117699190612b83565b9150600a856117789190612db4565b60306117849190612bb7565b60f81b81838151811061179a57611799612de5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856117d69190612d83565b9450611754565b8093505050505b919050565b505050565b505050565b6117fd83836119e5565b61180a600084848461184e565b611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184090612ceb565b60405180910390fd5b505050565b600061186f8473ffffffffffffffffffffffffffffffffffffffff16611bbf565b156119d8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611898610f26565b8786866040518563ffffffff1660e01b81526004016118ba9493929190612e69565b602060405180830381600087803b1580156118d457600080fd5b505af192505050801561190557506040513d601f19601f820116820180604052508101906119029190612eca565b60015b611988573d8060008114611935576040519150601f19603f3d011682016040523d82523d6000602084013e61193a565b606091505b50600081511415611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790612ceb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506119dd565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90612f43565b60405180910390fd5b611a5e8161161c565b15611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9590612faf565b60405180910390fd5b611aaa600083836117e9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611afa9190612bb7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bbb600083836117ee565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611bee90612351565b90600052602060002090601f016020900481019282611c105760008555611c57565b82601f10611c2957803560ff1916838001178555611c57565b82800160010185558215611c57579182015b82811115611c56578235825591602001919060010190611c3b565b5b509050611c649190611c68565b5090565b5b80821115611c81576000816000905550600101611c69565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611cce81611c99565b8114611cd957600080fd5b50565b600081359050611ceb81611cc5565b92915050565b600060208284031215611d0757611d06611c8f565b5b6000611d1584828501611cdc565b91505092915050565b60008115159050919050565b611d3381611d1e565b82525050565b6000602082019050611d4e6000830184611d2a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d8e578082015181840152602081019050611d73565b83811115611d9d576000848401525b50505050565b6000601f19601f8301169050919050565b6000611dbf82611d54565b611dc98185611d5f565b9350611dd9818560208601611d70565b611de281611da3565b840191505092915050565b60006020820190508181036000830152611e078184611db4565b905092915050565b6000819050919050565b611e2281611e0f565b8114611e2d57600080fd5b50565b600081359050611e3f81611e19565b92915050565b600060208284031215611e5b57611e5a611c8f565b5b6000611e6984828501611e30565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e9d82611e72565b9050919050565b611ead81611e92565b82525050565b6000602082019050611ec86000830184611ea4565b92915050565b611ed781611e92565b8114611ee257600080fd5b50565b600081359050611ef481611ece565b92915050565b60008060408385031215611f1157611f10611c8f565b5b6000611f1f85828601611ee5565b9250506020611f3085828601611e30565b9150509250929050565b611f4381611e0f565b82525050565b6000602082019050611f5e6000830184611f3a565b92915050565b611f6d81611d1e565b8114611f7857600080fd5b50565b600081359050611f8a81611f64565b92915050565b600060208284031215611fa657611fa5611c8f565b5b6000611fb484828501611f7b565b91505092915050565b600080600060608486031215611fd657611fd5611c8f565b5b6000611fe486828701611ee5565b9350506020611ff586828701611ee5565b925050604061200686828701611e30565b9150509250925092565b60006020828403121561202657612025611c8f565b5b600061203484828501611ee5565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126120625761206161203d565b5b8235905067ffffffffffffffff81111561207f5761207e612042565b5b60208301915083600182028301111561209b5761209a612047565b5b9250929050565b600080602083850312156120b9576120b8611c8f565b5b600083013567ffffffffffffffff8111156120d7576120d6611c94565b5b6120e38582860161204c565b92509250509250929050565b6000806040838503121561210657612105611c8f565b5b600061211485828601611ee5565b925050602061212585828601611f7b565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61216c82611da3565b810181811067ffffffffffffffff8211171561218b5761218a612134565b5b80604052505050565b600061219e611c85565b90506121aa8282612163565b919050565b600067ffffffffffffffff8211156121ca576121c9612134565b5b6121d382611da3565b9050602081019050919050565b82818337600083830152505050565b60006122026121fd846121af565b612194565b90508281526020810184848401111561221e5761221d61212f565b5b6122298482856121e0565b509392505050565b600082601f8301126122465761224561203d565b5b81356122568482602086016121ef565b91505092915050565b6000806000806080858703121561227957612278611c8f565b5b600061228787828801611ee5565b945050602061229887828801611ee5565b93505060406122a987828801611e30565b925050606085013567ffffffffffffffff8111156122ca576122c9611c94565b5b6122d687828801612231565b91505092959194509250565b600080604083850312156122f9576122f8611c8f565b5b600061230785828601611ee5565b925050602061231885828601611ee5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061236957607f821691505b6020821081141561237d5761237c612322565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006123df602183611d5f565b91506123ea82612383565b604082019050919050565b6000602082019050818103600083015261240e816123d2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612471603e83611d5f565b915061247c82612415565b604082019050919050565b600060208201905081810360008301526124a081612464565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612503602e83611d5f565b915061250e826124a7565b604082019050919050565b60006020820190508181036000830152612532816124f6565b9050919050565b7f4d696e74696e67206973206e6f7420656e61626c656400000000000000000000600082015250565b600061256f601683611d5f565b915061257a82612539565b602082019050919050565b6000602082019050818103600083015261259e81612562565b9050919050565b7f4d6178204d696e74207065722077616c6c657420726561636865640000000000600082015250565b60006125db601b83611d5f565b91506125e6826125a5565b602082019050919050565b6000602082019050818103600083015261260a816125ce565b9050919050565b7f49276d20736f7272792077652072656163686564207468652063617000000000600082015250565b6000612647601c83611d5f565b915061265282612611565b602082019050919050565b600060208201905081810360008301526126768161263a565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006126b3601883611d5f565b91506126be8261267d565b602082019050919050565b600060208201905081810360008301526126e2816126a6565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612745602983611d5f565b9150612750826126e9565b604082019050919050565b6000602082019050818103600083015261277481612738565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b60006127b1601583611d5f565b91506127bc8261277b565b602082019050919050565b600060208201905081810360008301526127e0816127a4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461281481612351565b61281e81866127e7565b94506001821660008114612839576001811461284a5761287d565b60ff1983168652818601935061287d565b612853856127f2565b60005b8381101561287557815481890152600182019150602081019050612856565b838801955050505b50505092915050565b600061289182611d54565b61289b81856127e7565b93506128ab818560208601611d70565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006128ed6005836127e7565b91506128f8826128b7565b600582019050919050565b600061290f8285612807565b915061291b8284612886565b9150612926826128e0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061298e602683611d5f565b915061299982612932565b604082019050919050565b600060208201905081810360008301526129bd81612981565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129fa602083611d5f565b9150612a05826129c4565b602082019050919050565b60006020820190508181036000830152612a29816129ed565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612a8c602583611d5f565b9150612a9782612a30565b604082019050919050565b60006020820190508181036000830152612abb81612a7f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b1e602483611d5f565b9150612b2982612ac2565b604082019050919050565b60006020820190508181036000830152612b4d81612b11565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b8e82611e0f565b9150612b9983611e0f565b925082821015612bac57612bab612b54565b5b828203905092915050565b6000612bc282611e0f565b9150612bcd83611e0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c0257612c01612b54565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612c43601983611d5f565b9150612c4e82612c0d565b602082019050919050565b60006020820190508181036000830152612c7281612c36565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612cd5603283611d5f565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b6000612d1682611e0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d4957612d48612b54565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d8e82611e0f565b9150612d9983611e0f565b925082612da957612da8612d54565b5b828204905092915050565b6000612dbf82611e0f565b9150612dca83611e0f565b925082612dda57612dd9612d54565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612e3b82612e14565b612e458185612e1f565b9350612e55818560208601611d70565b612e5e81611da3565b840191505092915050565b6000608082019050612e7e6000830187611ea4565b612e8b6020830186611ea4565b612e986040830185611f3a565b8181036060830152612eaa8184612e30565b905095945050505050565b600081519050612ec481611cc5565b92915050565b600060208284031215612ee057612edf611c8f565b5b6000612eee84828501612eb5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612f2d602083611d5f565b9150612f3882612ef7565b602082019050919050565b60006020820190508181036000830152612f5c81612f20565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612f99601c83611d5f565b9150612fa482612f63565b602082019050919050565b60006020820190508181036000830152612fc881612f8c565b905091905056fea2646970667358221220d69c0f1932a724286c20b7773833d20ef24b6796f86f99e2ce905511f643575e64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101405760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb46514610429578063b19960e614610452578063b88d4fde1461047d578063c87b56dd146104a6578063e985e9c5146104e3578063f2fde38b1461052057610140565b80636352211e1461031957806370a0823114610356578063715018a6146103935780638da5cb5b146103aa57806395652cfa146103d557806395d89b41146103fe57610140565b806318160ddd1161010857806318160ddd1461023e5780632373ac221461026957806323b872dd1461029257806332cb6b0c146102bb57806342842e0e146102e65780635b70ea9f1461030f57610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea5780630f98426d14610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190611cf1565b610549565b6040516101799190611d39565b60405180910390f35b34801561018e57600080fd5b5061019761062b565b6040516101a49190611ded565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf9190611e45565b6106bd565b6040516101e19190611eb3565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190611efa565b610703565b005b34801561021f57600080fd5b5061022861081b565b6040516102359190611d39565b60405180910390f35b34801561024a57600080fd5b5061025361082e565b6040516102609190611f49565b60405180910390f35b34801561027557600080fd5b50610290600480360381019061028b9190611f90565b610838565b005b34801561029e57600080fd5b506102b960048036038101906102b49190611fbd565b61085d565b005b3480156102c757600080fd5b506102d06108bd565b6040516102dd9190611f49565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190611fbd565b6108c3565b005b6103176108e3565b005b34801561032557600080fd5b50610340600480360381019061033b9190611e45565b6109f1565b60405161034d9190611eb3565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190612010565b610aa3565b60405161038a9190611f49565b60405180910390f35b34801561039f57600080fd5b506103a8610b5b565b005b3480156103b657600080fd5b506103bf610b6f565b6040516103cc9190611eb3565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f791906120a2565b610b99565b005b34801561040a57600080fd5b50610413610bb7565b6040516104209190611ded565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b91906120ef565b610c49565b005b34801561045e57600080fd5b50610467610c5f565b6040516104749190611f49565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f919061225f565b610c65565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190611e45565b610cc7565b6040516104da9190611ded565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906122e2565b610d43565b6040516105179190611d39565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190612010565b610dd7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610624575061062382610e71565b5b9050919050565b60606000805461063a90612351565b80601f016020809104026020016040519081016040528092919081815260200182805461066690612351565b80156106b35780601f10610688576101008083540402835291602001916106b3565b820191906000526020600020905b81548152906001019060200180831161069657829003601f168201915b5050505050905090565b60006106c882610edb565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070e826109f1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561077f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610776906123f5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661079e610f26565b73ffffffffffffffffffffffffffffffffffffffff1614806107cd57506107cc816107c7610f26565b610d43565b5b61080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390612487565b60405180910390fd5b6108168383610f2e565b505050565b600a60009054906101000a900460ff1681565b6000600854905090565b610840610fe7565b80600a60006101000a81548160ff02191690831515021790555050565b61086e610868610f26565b82611065565b6108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a490612519565b60405180910390fd5b6108b88383836110fa565b505050565b60085481565b6108de83838360405180602001604052806000815250610c65565b505050565b600a60009054906101000a900460ff16610932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092990612585565b60405180910390fd5b60095461093e33610aa3565b1061097e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610975906125f1565b60405180910390fd5b60085461098b6007611361565b11156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c39061265d565b60405180910390fd5b60006109d86007611361565b90506109e46007610e5b565b6109ee338261136f565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a91906126c9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b9061275b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b63610fe7565b610b6d600061138d565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ba1610fe7565b8181600b9190610bb2929190611be2565b505050565b606060018054610bc690612351565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf290612351565b8015610c3f5780601f10610c1457610100808354040283529160200191610c3f565b820191906000526020600020905b815481529060010190602001808311610c2257829003601f168201915b5050505050905090565b610c5b610c54610f26565b8383611453565b5050565b60095481565b610c76610c70610f26565b83611065565b610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90612519565b60405180910390fd5b610cc1848484846115c0565b50505050565b6060610cd28261161c565b610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d08906127c7565b60405180910390fd5b600b610d1c83611688565b604051602001610d2d929190612903565b6040516020818303038152906040529050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ddf610fe7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e46906129a4565b60405180910390fd5b610e588161138d565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610ee48161161c565b610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a906126c9565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610fa1836109f1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610fef610f26565b73ffffffffffffffffffffffffffffffffffffffff1661100d610b6f565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90612a10565b60405180910390fd5b565b600080611071836109f1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806110b357506110b28185610d43565b5b806110f157508373ffffffffffffffffffffffffffffffffffffffff166110d9846106bd565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661111a826109f1565b73ffffffffffffffffffffffffffffffffffffffff1614611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790612aa2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790612b34565b60405180910390fd5b6111eb8383836117e9565b6111f6600082610f2e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112469190612b83565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461129d9190612bb7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461135c8383836117ee565b505050565b600081600001549050919050565b6113898282604051806020016040528060008152506117f3565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990612c59565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b39190611d39565b60405180910390a3505050565b6115cb8484846110fa565b6115d78484848461184e565b611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d90612ceb565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060008214156116d0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506117e4565b600082905060005b600082146117025780806116eb90612d0b565b915050600a826116fb9190612d83565b91506116d8565b60008167ffffffffffffffff81111561171e5761171d612134565b5b6040519080825280601f01601f1916602001820160405280156117505781602001600182028036833780820191505090505b5090505b600085146117dd576001826117699190612b83565b9150600a856117789190612db4565b60306117849190612bb7565b60f81b81838151811061179a57611799612de5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856117d69190612d83565b9450611754565b8093505050505b919050565b505050565b505050565b6117fd83836119e5565b61180a600084848461184e565b611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184090612ceb565b60405180910390fd5b505050565b600061186f8473ffffffffffffffffffffffffffffffffffffffff16611bbf565b156119d8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611898610f26565b8786866040518563ffffffff1660e01b81526004016118ba9493929190612e69565b602060405180830381600087803b1580156118d457600080fd5b505af192505050801561190557506040513d601f19601f820116820180604052508101906119029190612eca565b60015b611988573d8060008114611935576040519150601f19603f3d011682016040523d82523d6000602084013e61193a565b606091505b50600081511415611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790612ceb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506119dd565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90612f43565b60405180910390fd5b611a5e8161161c565b15611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9590612faf565b60405180910390fd5b611aaa600083836117e9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611afa9190612bb7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bbb600083836117ee565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611bee90612351565b90600052602060002090601f016020900481019282611c105760008555611c57565b82601f10611c2957803560ff1916838001178555611c57565b82800160010185558215611c57579182015b82811115611c56578235825591602001919060010190611c3b565b5b509050611c649190611c68565b5090565b5b80821115611c81576000816000905550600101611c69565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611cce81611c99565b8114611cd957600080fd5b50565b600081359050611ceb81611cc5565b92915050565b600060208284031215611d0757611d06611c8f565b5b6000611d1584828501611cdc565b91505092915050565b60008115159050919050565b611d3381611d1e565b82525050565b6000602082019050611d4e6000830184611d2a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d8e578082015181840152602081019050611d73565b83811115611d9d576000848401525b50505050565b6000601f19601f8301169050919050565b6000611dbf82611d54565b611dc98185611d5f565b9350611dd9818560208601611d70565b611de281611da3565b840191505092915050565b60006020820190508181036000830152611e078184611db4565b905092915050565b6000819050919050565b611e2281611e0f565b8114611e2d57600080fd5b50565b600081359050611e3f81611e19565b92915050565b600060208284031215611e5b57611e5a611c8f565b5b6000611e6984828501611e30565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e9d82611e72565b9050919050565b611ead81611e92565b82525050565b6000602082019050611ec86000830184611ea4565b92915050565b611ed781611e92565b8114611ee257600080fd5b50565b600081359050611ef481611ece565b92915050565b60008060408385031215611f1157611f10611c8f565b5b6000611f1f85828601611ee5565b9250506020611f3085828601611e30565b9150509250929050565b611f4381611e0f565b82525050565b6000602082019050611f5e6000830184611f3a565b92915050565b611f6d81611d1e565b8114611f7857600080fd5b50565b600081359050611f8a81611f64565b92915050565b600060208284031215611fa657611fa5611c8f565b5b6000611fb484828501611f7b565b91505092915050565b600080600060608486031215611fd657611fd5611c8f565b5b6000611fe486828701611ee5565b9350506020611ff586828701611ee5565b925050604061200686828701611e30565b9150509250925092565b60006020828403121561202657612025611c8f565b5b600061203484828501611ee5565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126120625761206161203d565b5b8235905067ffffffffffffffff81111561207f5761207e612042565b5b60208301915083600182028301111561209b5761209a612047565b5b9250929050565b600080602083850312156120b9576120b8611c8f565b5b600083013567ffffffffffffffff8111156120d7576120d6611c94565b5b6120e38582860161204c565b92509250509250929050565b6000806040838503121561210657612105611c8f565b5b600061211485828601611ee5565b925050602061212585828601611f7b565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61216c82611da3565b810181811067ffffffffffffffff8211171561218b5761218a612134565b5b80604052505050565b600061219e611c85565b90506121aa8282612163565b919050565b600067ffffffffffffffff8211156121ca576121c9612134565b5b6121d382611da3565b9050602081019050919050565b82818337600083830152505050565b60006122026121fd846121af565b612194565b90508281526020810184848401111561221e5761221d61212f565b5b6122298482856121e0565b509392505050565b600082601f8301126122465761224561203d565b5b81356122568482602086016121ef565b91505092915050565b6000806000806080858703121561227957612278611c8f565b5b600061228787828801611ee5565b945050602061229887828801611ee5565b93505060406122a987828801611e30565b925050606085013567ffffffffffffffff8111156122ca576122c9611c94565b5b6122d687828801612231565b91505092959194509250565b600080604083850312156122f9576122f8611c8f565b5b600061230785828601611ee5565b925050602061231885828601611ee5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061236957607f821691505b6020821081141561237d5761237c612322565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006123df602183611d5f565b91506123ea82612383565b604082019050919050565b6000602082019050818103600083015261240e816123d2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612471603e83611d5f565b915061247c82612415565b604082019050919050565b600060208201905081810360008301526124a081612464565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612503602e83611d5f565b915061250e826124a7565b604082019050919050565b60006020820190508181036000830152612532816124f6565b9050919050565b7f4d696e74696e67206973206e6f7420656e61626c656400000000000000000000600082015250565b600061256f601683611d5f565b915061257a82612539565b602082019050919050565b6000602082019050818103600083015261259e81612562565b9050919050565b7f4d6178204d696e74207065722077616c6c657420726561636865640000000000600082015250565b60006125db601b83611d5f565b91506125e6826125a5565b602082019050919050565b6000602082019050818103600083015261260a816125ce565b9050919050565b7f49276d20736f7272792077652072656163686564207468652063617000000000600082015250565b6000612647601c83611d5f565b915061265282612611565b602082019050919050565b600060208201905081810360008301526126768161263a565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006126b3601883611d5f565b91506126be8261267d565b602082019050919050565b600060208201905081810360008301526126e2816126a6565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612745602983611d5f565b9150612750826126e9565b604082019050919050565b6000602082019050818103600083015261277481612738565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b60006127b1601583611d5f565b91506127bc8261277b565b602082019050919050565b600060208201905081810360008301526127e0816127a4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461281481612351565b61281e81866127e7565b94506001821660008114612839576001811461284a5761287d565b60ff1983168652818601935061287d565b612853856127f2565b60005b8381101561287557815481890152600182019150602081019050612856565b838801955050505b50505092915050565b600061289182611d54565b61289b81856127e7565b93506128ab818560208601611d70565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006128ed6005836127e7565b91506128f8826128b7565b600582019050919050565b600061290f8285612807565b915061291b8284612886565b9150612926826128e0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061298e602683611d5f565b915061299982612932565b604082019050919050565b600060208201905081810360008301526129bd81612981565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129fa602083611d5f565b9150612a05826129c4565b602082019050919050565b60006020820190508181036000830152612a29816129ed565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612a8c602583611d5f565b9150612a9782612a30565b604082019050919050565b60006020820190508181036000830152612abb81612a7f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b1e602483611d5f565b9150612b2982612ac2565b604082019050919050565b60006020820190508181036000830152612b4d81612b11565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b8e82611e0f565b9150612b9983611e0f565b925082821015612bac57612bab612b54565b5b828203905092915050565b6000612bc282611e0f565b9150612bcd83611e0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c0257612c01612b54565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612c43601983611d5f565b9150612c4e82612c0d565b602082019050919050565b60006020820190508181036000830152612c7281612c36565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612cd5603283611d5f565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b6000612d1682611e0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d4957612d48612b54565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d8e82611e0f565b9150612d9983611e0f565b925082612da957612da8612d54565b5b828204905092915050565b6000612dbf82611e0f565b9150612dca83611e0f565b925082612dda57612dd9612d54565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612e3b82612e14565b612e458185612e1f565b9350612e55818560208601611d70565b612e5e81611da3565b840191505092915050565b6000608082019050612e7e6000830187611ea4565b612e8b6020830186611ea4565b612e986040830185611f3a565b8181036060830152612eaa8184612e30565b905095945050505050565b600081519050612ec481611cc5565b92915050565b600060208284031215612ee057612edf611c8f565b5b6000612eee84828501612eb5565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612f2d602083611d5f565b9150612f3882612ef7565b602082019050919050565b60006020820190508181036000830152612f5c81612f20565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612f99601c83611d5f565b9150612fa482612f63565b602082019050919050565b60006020820190508181036000830152612fc881612f8c565b905091905056fea2646970667358221220d69c0f1932a724286c20b7773833d20ef24b6796f86f99e2ce905511f643575e64736f6c63430008090033

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.